/*-----------------------------------*\
  #style.css
\*-----------------------------------*/
.preload.hide {
  display: none;
}

.preload-logo {
  background: url('../images/logo.svg') left top no-repeat;
  background-size: cover;
}
.preload-logo img {
	visibility: hidden;
}
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * COLORS
   */

  /** Background colors */
  --bg-white: hsla(0,0%,97%,1);
  --bg-beige: hsla(28, 25%, 80%, 1);
  --bg-btn-white:hsla(0, 0%, 100%, 1);
  --bg-btn-black:hsla(255, 5%, 15%, 1);
  --bg-navbar: hsla(270, 5%, 15%, 0.85);
  --bg-black: hsla(254,5%,15%,1);


  /** Text colors */
  --text-nav: hsla(0, 0%, 96%, 1);
  --text-hero-white:hsla(0, 0%, 95%, 1);
  --text-main:hsla(255, 5%, 15%, 1);
  --text-white:hsla(0, 0%, 96%, 1);
  --text-black: hsla(0, 0%, 0%, 1);
  --text-footer:hsla(222, 87%, 97%, 1);
  --text-btn-white:hsla(0, 0%, 96%, 1);
  --text-btn-black:hsla(0, 0%, 20%, 1);
  --text-arrow-blue:hsla(214, 75%, 22%, 1);


  /** Gradient colors */
  --gradient-1: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%);


  /** Border colors */
  --border-wild-blue-yonder: hsla(216, 33%, 68%, 1);


  /** Default colors */
  --white: hsl(0, 0%, 100%, 1);
  --black: hsl(0, 0%, 0%, 1);

  /**
   * TYPOGRAPHY
   */

  /** Font family */
  --fontFamily-Montserrat: "Montserrat", sans-serif;

  /** Font size */
  --fontSize-1: 1rem;


  /** Font weight */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semiBold: 600;
  --weight-bold: 700;
  --weight-extraBold: 800;

  /** Line height */
  --lineHeight-1: 1.25rem;

  /**
   * BOX SHADOW
   */
  --shadow-1: 0 8px 20px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0px 3px 20px hsla(180, 90%, 43%, 0.2);

  /**
   * BORDER RADIUS
   */
  --radius-circle: 50%;


  /**
   * SPACING
   */
  --section-padding: 70px;

  /**
   * TRANSITION
   */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;


}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/


.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: hsla(0,0%,1%,0.65);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
  transition: var(--transition-2);
}

.back-top-btn {

}

.back-top-btn img {
  width: 20px;
  height: 20px;
}

.back-top-btn:is(:hover, :focus-visible) {
  background:hsla(0,0%,1%, 0.85);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}



/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
input,
button { display: block; 
color: #fff;}

a {
  color: inherit;
  text-decoration: none;
}

img { 
  height: auto; 
  max-width: 100%;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

address { font-style: normal; }

html {
  font-size: 16px;
  height: 100%;
}

body {
  background-color: var(--bg-white);
  color: var(--text-main);
  font-family: var(--fontFamily-Montserrat);
  font-size: 1rem;
  line-height: var(--lineHeight-1);
  overflow: overlay;
  min-width: 320px;
  height: 100%;
}
.site {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

body.nav-active { overflow: hidden; }


::-webkit-scrollbar-track {
  background: transparent;
 }






/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.text-center {
  text-align: center;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin-inline: auto;
  padding: 0 16px;
}

.btn {
  border-radius: 50px;
  padding: 21px 30px 22px;
  line-height: 100%;
  display: inline-flex;
  max-width: max-content;
  text-transform: uppercase;
}

.btn-black {
  background-color: hsla(254,5%,15%,1);
  color: hsla(0,0%,97%,1);
  transition: var(--transition-2);
}

.btn-black:hover {
  background-color: hsla(254,5%,15%, 0.8);
}

.btn-white {
  background: hsla(0,0%,101%,1);
  color: rgb(38, 37, 41);
  transition: var(--transition-2);
}
.btn-white:hover {
  background: hsla(0,0%,101%,0.7);
  color: rgb(38, 37, 41);
  transition: var(--transition-2);
}

.btn-beige {
  background: hsla(0,0%,101%,1);
  transition: var(--transition-2);
}
.btn-beige:hover {
  background-color: hsla(0,0%,101%,0.7);
}

.visible-lg {
  display: none;
}
.select-wrapper {
  width: 100%;
}
.form-body select {
  border-radius: 0;
  border: 1px solid rgb(255, 255, 255);
  width: 100%;
  padding: 5px;

}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }



.header.active {
  padding-block: 8px;
  box-shadow: var(--shadow-1);
  border-block-end: 1px solid var(--bg-prussian-blue);
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}






/*-----------------------------------*\
  #HERO
\*-----------------------------------*/
.hero {
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: #fff;
  background: url('../images/hero-bg.jpg') center center;
  background-attachment: fixed;
  background-size: cover;
  justify-content: space-between;
  padding-bottom: 87px;
  align-items: center;
}

.hero-content {
  display: flex;
  font-size: 1.5rem;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero-title {
  color: rgb(242, 242, 242);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 500;
  line-height: 103%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 43px;
  padding: 0 35px;
}
.block-count-list {
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
}
.count-item_num {
  font-size: 40px;
  font-weight: 500;
  line-height: 67.5px;
}
.count-item_title {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}

.btn-beige {
  color: var(--text-main);
}



.block-black {
  background: rgb(38, 37, 41);
  color: rgb(245, 245, 245);
}

.block-black .item-tile {
  color: rgb(245, 245, 245);
}




.footer {
  background-color: var(--bg-black);
}

.footer a {
  color: var(--text-footer);
}

.not-found {
  background-color: var(--bg-black);
  color: var(--text-white);
  width: 100%;
  min-height: 100lvh;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 50px;
  text-align: center;
}
.not-found_title {
  font-size: 48px;
  line-height: 150%;
}










@media (max-width: 960px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-navbar);
    z-index: 4;
    padding: 7px 0 6px;
  }
  .callback-d {
    display: none;
  }

  hr {
    border: 1px solid rgb(127, 125, 126);
    margin-bottom: 9px;
  }

  
.nav-open-btn,
.nav-close-btn {
  font-size: 0.5rem;
  width: 35px;
  height: 35px;
}
.nav-open-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-circle);
  background: linear-gradient(146.98deg, rgb(208, 177, 122) 6.794%,rgb(255, 239, 191) 49.806%,rgb(175, 131, 63) 92.819%);
}

.navbar {
  position: absolute;
  top: 0;
  right: -228px;
  max-width: 228px;
  width: 100%;
  height: 100vh;
  background-color:var(--bg-beige);
  padding: 33px 30px 0 40px;
  z-index: 2;
  overflow-y: auto;
  visibility: hidden;
  transition: var(--transition-1);

}

.navbar.active {
  visibility: visible;
  transform: translateX(-228px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-1);
}

.navbar-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-block-end: 15px;
  margin-block-end: 15px;
  border-block-end: 1px solid var(--border-prussian-blue);
}

.navbar-list { border-block-end: 1px solid var(--border-white-alpha-15); }

.navbar-link {
  color: var(--text-alice-blue);
  font-weight: var(--weight-medium);
  padding-block: 10px;
}

.navbar-bottom {
  padding: 0;
  margin: 0;
}

.navbar .profile-card { margin-block-end: 0; }

.navbar .profile-card .card-title {
  color: var(--text-columbia-blue);
  font-size: var(--fontSize-6);
  font-weight: var(--weight-semiBold);
}

.navbar .profile-card .card-subtitle { font-size: var(--fontSize-7); }

.navbar .link-list {
  columns: 2;
  -webkit-columns: 2;
}

.navbar-bottom-link {
  color: var(--text-alice-blue);
  font-size: var(--fontSize-6);
  padding-block: 6px;
}

.block-pagenav .current_page_item a {
  background: rgb(38, 37, 41);
  color: rgb(245, 245, 245);
}

.person-text {
  border-radius: 15px;
  background-color: hsla(190,2%,53%,1);
  padding: 7px 9px 8px 8px;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -4.5%;
  position: relative;
  margin-bottom: 20px;
  color: rgb(38, 38, 41);
}
.person-text::after {
  content: ''; 
  position: absolute;
  right: 50%; bottom: -25px;
  border: 8px solid transparent; 
  border-top: 30px solid hsla(190,2%,53%,1); 
  transform: rotate(-45deg);
}

.copyright-text {
  color: var(--text-alice-blue);
  font-size: var(--fontSize-8);
}
.navbar-list {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}
.navbar-list .menu-item a {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0%;
}

  .block {
    padding: 71px 16px 117px;
  }
  .block-beige {
    background: url('../images/beige-bg-mob.png') center -23px no-repeat var(--bg-beige);
  }
  .block-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 59px;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
  }
  .block-description {
    margin-block-start: 21px;
    margin-block-end: 46px;
  }
  .block-content {
  }
  .items-list {
    margin-block-start: 54px;
    display: flex;
    flex-direction: column;
    row-gap: 82px;
  }
  .item {
  }
  .item-tile {
    color: rgb(38, 37, 41);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
    margin-block-end: 24px;
  }
  .item-tile > span {
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0%;
    text-align: left;
  }
  .item-body {

  }


  .services-description {
    margin-block-start: 21px;
    margin-block-end: 71px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0%;
  }
  .services-image {
    margin-block-end: 58px;
  }
  .services-list {
    margin-block-end: 75px;
  }

  .services {
  }
  .services-item {
    margin-block-end: 55px;
  }

  .services-tile {
    color: rgb(38, 37, 41);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0%;
    margin-bottom: 8px;
  }
  .services-tile > span {
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0%;
    text-align: left;
  }
  .services-body {
    font-size: 16px;
    line-height: 20px;
  }
  .services-more {
    margin-block-start: 16px;
  }
  .services-btn {
    margin-block-start: 15px;
    text-align: center;
  }


  .packet-title {
    color: rgb(38, 37, 41);
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    margin-block-start: 77px;
  }
  .packet-slider {
    margin-block-start: 77px;
  }
  .packet-item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .item-iner {
    padding: 29px 44px 16px;
    border-radius: 35px;
    background: rgb(217, 203, 191);
    max-width: 100%;
    flex: 1 0 auto;
    margin-block-end: 40px;
  }
  .packet-item__title {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0%;
    text-align: center;
  }
  .packet-item__body {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: left;
    margin-block-start: 42px;
    margin-block-end: 40px;
    max-width: 100%;
  }
  .packet-item__price {
    color: rgb(0, 0, 0);
    font-size: 36px;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: 0%;
    text-align: left;
  }
  .packet-item__price > span {
    font-size: 1rem;
  }





  .blog-description {
    color: rgb(38, 37, 41);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0%;
    text-align: left;
    margin-block-start: 16px;
    margin-block-end: 46px;
  }
  .blog-list {
  }
  .blog-item {
    text-align: center;
    margin-bottom: 64px;
  }
  .blog-item-tile {
    margin-top: 30px;
    margin-bottom: 10px;
    color: rgb(38, 37, 41);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
  }
  .blog-item-date {
    display: flex;
    column-gap: 8px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: justify;
  }
  .blog-item-body {
    color: rgb(38, 37, 41);

  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: justify;
  margin-bottom: 22px;
  }
  .btn-allnews {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 93.5%;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
    column-gap: 17px;
    width: 100%;
    max-width: 100%;

  }

  .about-logo {
    margin-top: 28px;
    margin-bottom: 70px;
    display: flex;
    justify-content: center;
  }
  .about-title {
    text-align: center;
    color: rgb(245, 245, 245);
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .about-wrapper {
    margin-bottom: 100px;
  }
  .block-about > .block-content {
    margin-bottom: 100px;
  }


  .block-contacts {
    padding-bottom: 0;
  }
  .block {
  }
  .block-contacts > .block-title {
    text-align: center;
    margin-bottom: 60px;
    color: rgb(38, 37, 41);
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .contacts-list {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    margin-bottom: 56px;
  }
  .contacts-item {
    display: flex;

    column-gap: 17px;
  }
  .contacts-tile {
    font-size: 24px;
    line-height: 100%;
  }
  .contacts-body {
  font-size: 20px;
  line-height: 100%;
  }



  .contacts-form {
    padding: 41px 13px 95px;
    background: rgb(38, 37, 41);
    color: #fff;
  }
  .form-title {
    font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: center;
  }
  .form-body {
    margin-top: 63px;
    display: flex;
    flex-direction: column;
    row-gap: 57px;
    align-items: center;
  }
  .form-body input {
    border-bottom: 1px solid rgb(255, 255, 255);
  }

  .contacts-person {
    margin-inline: auto;
    max-width: 217px;
    margin-top: 17px;
    width: 100%;
  }





  .footer {
    padding-top: 10px;
  }
  .footer-nav {
    margin-top: 70px;
    margin-bottom: 60px;
  }
  .footer-social > .navbar-list {
    display: flex;
    column-gap: 20px;
  } 






  .page-single .block {
    padding: 83px 20px 40px;
  }
  .single-block-title {
    text-align: center;
  }
  .single-block-title h1, .entry-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0%;
    
  }
  .single-date {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    margin-top: 11px;
    
  }
  .page-body {
    max-width: 797px;
    margin-inline: auto;
    margin-bottom: 75px;
  }
  .page-body img {
    margin-bottom: 43px;
  }
  .blog-link {
    margin-bottom: 75px;
    display: flex;
    justify-content: flex-end;
  }

  .block-pagenav {
    margin-bottom: 50px;
  }
  .block-pagenav ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 14px;
    row-gap: 15px;
  }
  .block-pagenav a {
    padding: 2px 10px 3px;
    border: 1px solid rgb(38, 37, 41);
    border-radius: 50px;
    text-transform: uppercase;
    text-align: center;
  }


  .entry-title {
    margin-bottom: 20px;
  }
  .content-page h2 {
    margin: 10px 0 20px;
  }





  .page-thankyou {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-thankyou h1 {
    color: rgb(0, 0, 0);
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: left;
    margin-inline: auto;
    max-width: 60%;
    margin-top: 40px;
  }

  .thankyou-row {
   
  }
  .thankyou-text {
    margin-bottom: 47px;
    text-align: left;
    max-width: 60%;
    margin-inline: auto;
  }

  .text-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

.page-thankyou .blog-link {
  margin-bottom: 0;
}
.thankyou-img {
  display: flex;
  justify-content: center;
}



.hero {
  background: url('../images/hero-bg.jpg') center center;
}


}














@media (min-width: 961px) {

  .header a, .header a:visited {
    color: #fff;
  }


  .header {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 16px;
    top: 16px;
    border-radius: 25px;
    background: hsla(0,0%,1%,0.65);
    z-index: 4;
    width: 95%;
    max-width: 1140px;
    margin-inline: auto;
    padding: 8px 53px 7px;
  }
  .header.active {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    max-width: 100%;
  }
  .header .container {
    align-items: center;
    padding: 0;
  }
  .header .logo > img{
    width: 93px;
    height: 60px;
  }
  .callback {
    display: none;
  }
  .callback-d {
    display: flex;
    color: #fff;
    column-gap: 7px;
  } 
  .nav-open-btn,
  .nav-close-btn,
  .navbar-top {
    display: none;
  }
  .navbar {
    color: #fff;
  }

  .navbar.active {
    transform: translateX(-228px);
    visibility: visible;
    display: block;
    transition: var(--transition-1);
  }
  .navbar {
    flex: 1 1 auto;
  }
  .navbar-list {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    column-gap: 20px;
  }
  .navbar-bottom {
    display: none;
  }






  .hero {
    padding-bottom: 60px;
  }
  .hero-content {
  }
  .hero-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 103%;
    margin-bottom: 109px;
    max-width: 1140px;
  }
  .block-count-list {
    justify-content: center;
    column-gap: 100px;
  }
  .count-list_item {
  }
  .count-item_num {
    font-size: 64px;
    font-weight: 500;
    line-height: 67.5px;
  }
  .number {
  }
  .viz {
  }
  .count-item_title {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
  .btn {
  }
  .btn-beige {
    background: rgb(255, 255, 255);
  }



  .block {
    padding: 183px 20px 147px;
    max-width: 1140px;
    margin-inline: auto;
    width: 100%;
  }
  .block-content {
    margin-block-start:98px;
  }
  .block-beige {
    background: url('../images/beige-bg-mob.png') center -23px no-repeat var(--bg-beige);
  }
  .block-title {
    font-size: 96px;
    font-weight: 500;
    line-height: 88px;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .block-description {
    margin-block-start: 21px;
    margin-block-end: 46px;
  }
  .block-content {
  }
  .items-list {
    margin-block-start: 119px;
    display: flex;
    flex-direction: row;
    row-gap: 82px;
    column-gap: 36px;
  }
  .item {
  }
  .item-tile {
    color: rgb(38, 37, 41);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
    margin-block-end: 47px;
  }
  .item-tile > span {
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0%;
    text-align: left;
  }


.two-colls {
  display: flex;
  
}
.services-list {
  order: 1;
  flex: 0 1 60%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 75px;
}
.services-item {
 padding-right: 46px;
 flex: 0 0 50%;
}
.services-item > hr {
  margin-bottom: 9px;
  border: none;
  position: relative;
  height: 1px;
}
.services-item > hr::after{
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(127, 125, 126);;
}
.services-btn {
  margin-top: 121px;
}
.services-content {
  order: 2;
  display: flex;
  flex-direction: column;
  flex: 0 1 40%;
}
.services-description {
  order: 2;
  margin-top: 20px;
}
.services-tile {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0%;
}
.services-tile > span {
  font-size: 32px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0%;
}
.services-body {
  color: rgb(0, 0, 0);
font-size: 16px;
font-weight: 400;
line-height: 20px;
margin-top: 13px;
margin-bottom: 17px;
}





  .packet-title {
    color: rgb(38, 37, 41);
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    margin-block-start: 77px;
  }
  .packet-slider {
    margin-block-start: 77px;
  }
  .packet-item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .item-iner {
    padding: 29px 44px 16px;
    border-radius: 35px;
    background: rgb(217, 203, 191);
    max-width: 100%;
    flex: 1 0 auto;
    margin-block-end: 40px;
  }
  .packet-item__title {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0%;
    text-align: center;
  }
  .packet-item__body {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: left;
    margin-block-start: 42px;
    margin-block-end: 40px;
    max-width: 100%;
  }
  .packet-item__price {
    color: rgb(0, 0, 0);
    font-size: 36px;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: 0%;
    text-align: left;
    text-align: center;
  }
  .packet-item__price > span {
    font-size: 1rem;
  }

  .blog-list {
    margin-top: 149px;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
  }
  .blog-header .block-title, .blog-item-image {
    flex: 0 0 460px;
  }
  .blog-item,
  .blog-header {
    display: flex;
    column-gap: 32px;
  }
  .blog-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .blog-item-tile {
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0%;
    margin-bottom: 10px;
  }
  .blog-item-date {
    font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  display: flex;
  column-gap: 8px;
  }
  .btn-allnews {
    align-self: flex-end;
    display: flex;
    column-gap: 19px;
  }

  .block-about {
    
  }


  .visible-lg {
    display: block;
  }
  .visible-sm {
    display: none;
  }
  .about-wrapper {
    display: flex;
  }
  .about-wrapper > div {
    flex: 0 0 50%;
  }
  .about-title {
    display: flex;
    margin-bottom: 30px;
  }
  .about-title > div {
    flex: 0 0 50%
  }
  .about-wrapper > .block-content,
  .about-wrapper .items-list {
    margin-block-start: 0;
    display: flex;
    flex-direction: column;
  }
  .about-wrapper .items-list .item-tile {
    margin-block-end: 8px;
  }
  .about-logo img {
    margin-bottom: 140px;
  }




  .block-contacts {
    padding: 183px 20px 0;
  }
  .block-contacts .block-content {
    display: flex;
    flex-wrap: wrap;
    margin-block-start: 10px;
  }
  .block-contacts .block-content > div {
   
  }
  .block-contacts .contacts-person {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .block-contacts .contacts-list {
    flex: 0 1 25%;
    display: flex;
    flex-direction: column;
    row-gap: 59px;
  }
  .block-contacts .contacts-person {
    flex: 0 0 40%;
  }
  .block-contacts .contacts-form {
    order: 3;
    flex: 0 0 35%;
  }

  .contacts-list, 
  .contacts-form {
    margin-top: 65px;
  }

  .footer {
    padding-top: 33px;
    padding-bottom: 42px;
  }

  .footer-wrapper {
    display: flex;
    justify-content: space-between;
  }


  .contacts-form {
    padding: 27px 23px 45px;
    background: rgb(38, 37, 41);
    color: #fff;
    height: max-content;
  }
  .form-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0%;
  }
  .form-body {
    margin-top: 63px;
    display: flex;
    flex-direction: column;
    row-gap: 57px;
    align-items: center;
  }
  .form-body input {
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  
  .contacts-person {
    margin-inline: auto;
    
    margin-top: 17px;
    width: 100%;
  }

  .contacts-item {
    display: flex;
    column-gap: 17px;
  }
  .contacts-tile {
    font-size: 24px;
    font-weight: 400;

  }
  .contacts-body {
    font-size: 20px;
    font-weight: 400;
    margin-top: 5px;
  }




  .block-pagenav {
    margin-bottom: 64px;
  }
  .block-pagenav ul {
    display: flex;
    justify-content: space-between;
  }
  .block-pagenav a {
    padding: 12px 30px 13px;
    border: 1px solid rgb(38, 37, 41);
    border-radius: 50px;
    text-transform: uppercase;
  }
  .block-pagenav .current_page_item a {
    border-radius: 50px;
    background: rgb(38, 37, 41);
    color: rgb(245, 245, 245);
  }


  .page-template {

  }
  .content-page {
    display: flex;
    column-gap: 30px;
    margin-block-start: 64px;
  }
  .content-page h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 49px;
    margin-bottom: 52px;
  }
  .entry-title-page {
    font-size: 85px;
    font-weight: 500;
    line-height: 88px;
  }
  .content-page .contacts-form {
    margin-top: 0;
  }
  .content-page .page-body {
    flex: 0 0 60%;
  }

  .page-single .block {
    padding: 183px 20px 40px;
  }
  .single-block-title {
    text-align: center;
  }
  .single-block-title h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0%;
    
  }
  .single-date {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    margin-top: 11px;
    
  }
  .page-body {
    max-width: 797px;
    margin-inline: auto;
    margin-bottom: 125px;
  }
  .page-body img {
    margin-bottom: 43px;
  }
  .blog-link {
    margin-bottom: 125px;
    display: flex;
    justify-content: flex-end;
  }

  .page-thankyou {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-thankyou h1 {
    color: rgb(0, 0, 0);
    margin-bottom: 50px;
    font-size: 48px;
    font-weight: 400;
    line-height: 59px;
    letter-spacing: 0%;
    text-align: left;
    display: block;
  }

  .thankyou-row {
    display: flex;
    column-gap: 128px;
  }
  .thankyou-text {
    margin-bottom: 67px;
  }

  .text-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .page-thankyou .blog-link {
    margin-top: 33px;

  }

}

.block-services .services-tile {
  text-transform: uppercase;
}

.preload-logo {
  max-width: 60%;
}