@import url("https://fonts.googleapis.com/css2?family=Krona+One&family=Manrope:wght@400;600&family=Montserrat:wght@300;400;500;700&display=swap");
:root {
  --custom-color: #3db6db;
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #2e2f2e;
  font-size: 16px;
  background: #f1f6f0;
}
body.overflow {
  overflow: hidden;
}

div, p, form, input, a, span, button, ul, li, aside, article, section, h1, h2, h3, h4, nav, textarea, ol {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 300;
}

h2 {
  font-size: 40px;
  margin-bottom: 40px;
  text-align: center;
}

a, a:hover, a:active {
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

p {
  margin: 0;
}

input, button, a {
  outline: none;
}

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

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

.container-big {
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}

.df {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn {
  border-radius: 30px;
  background-color: var(--custom-color);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 35px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  height: 44px;
  font-size: 16px;
}
.btn:hover {
  background-color: #1e6a8a;
}

section {
  margin: 80px 0;
}
section:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  section {
    margin: 60px 0;
  }
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  section {
    margin: 50px 0;
  }
  body {
    font-size: 14px;
  }
  h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .container {
    padding: 0 30px;
  }
  .container-big {
    padding: 0 15px;
  }
  .btn {
    padding: 0 30px;
    height: 34px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.header {
  padding: 20px 0;
}
.header__wrapp {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  align-items: center;
}
.header__logo img {
  max-width: 80px;
  margin-right: 15px;
}
.header__logo div {
  font-weight: 500;
}
.header__logo div p {
  font-size: 18px;
  color: #512d6d;
}
.header__logo div span {
  font-size: 15px;
}
.header__hum {
  display: none;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav ul li {
  display: block;
  margin-right: 30px;
}
.header__nav ul li:last-child {
  margin-right: 0;
}
.header__nav ul li a {
  color: #2e2f2e;
  font-size: 15px;
  font-weight: 500;
}
.header__nav ul li a:hover {
  color: var(--custom-color);
}
@media (max-width: 1250px) {
  .header {
    /*background-color: #fff;*/
    padding: 20px 0;
  }
  .header__wrapp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__logo img {
    max-width: 70px;
    margin-right: 13px;
  }
  .header__logo div p {
    font-size: 16px;
  }
  .header__logo div span {
    font-size: 14px;
  }
  .header__hum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    padding: 25px 20px 30px;
    right: 0;
    top: 0px;
    background: var(--custom-color);
    height: 100vh;
    width: 40vw;
    margin-right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    padding-bottom: 70px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 1000;
  }
  .header__nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-shadow: 0 0 15px rgba(45, 41, 41, 0.9411764706);
            box-shadow: 0 0 15px rgba(45, 41, 41, 0.9411764706);
  }
  .header__nav.transform-tr {
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }
  .header__nav ul li a {
    color: #fff;
  }
  .header__nav ul li a:hover {
    color: #b1c985;
  }
  .header__nav .header__hum {
    margin-left: auto;
    width: 20px;
    height: 14px;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    margin-bottom: 30px;
  }
  .header__nav .header__hum-btn {
    position: relative;
    background: #fff;
    width: 24px;
    height: 2px;
  }
  .header__nav .header__hum-btn:after, .header__nav .header__hum-btn:before {
    width: 20px;
    height: 2px;
    background: #fff;
  }
  .header__nav .header__hum-btn:before {
    content: "";
    position: absolute;
    left: 0;
  }
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
  .header__menu a {
    font-size: 30px;
    padding: 0;
  }
  .header__menu li:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 40px;
  }
  .header__hum {
    width: 20px;
    height: 14px;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .header__hum-btn {
    position: relative;
    background: var(--custom-color);
    width: 24px;
    height: 2px;
  }
  .header__hum-btn:after, .header__hum-btn:before {
    width: 20px;
    height: 2px;
  }
  .header__hum-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    background: var(--custom-color);
    -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__hum-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background: var(--custom-color);
    -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__hum-btn.animate {
    background: rgba(255, 255, 255, 0);
  }
  .header__hum-btn.animate:before {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__hum-btn.animate:after {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media (max-width: 768px) {
  .header {
    background-color: #fff;
    padding: 20px 0;
  }
  .header__wrapp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__logo img {
    /*display: none;*/
  }
  .header__logo div p {
    font-size: 15px;
  }
  .header__logo div span {
    font-size: 13px;
  }
  .header__hum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav {
    padding: 25px 20px 30px;
    width: 50vw;
    padding-bottom: 40px;
  }
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__menu a {
    font-size: 25px;
  }
  .header__menu li {
    display: block;
  }
  .header__menu li:not(:last-child) {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .header {
    padding: 15px 0;
  }
  .header__nav {
    padding: 20px 15px 25px;
    width: 85vw;
  }
  .header__logo img {
    width: 55px;
  }
}

.footer {
  background: var(--custom-color);
  padding: 25px 0;
  color: #fff;
}
.footer__wrapp {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  .footer {
    padding: 20px 0;
  }
}

.offer {
  padding: 170px 0 120px;
  background-size: cover;
  background-position: 50% 40%;
  position: relative;
  color: #fff;
  margin-top: 0;
}
/*.offer:before {*/
/*  content: "";*/
/*  background: hsla(201, 37%, 15%, 0.57);*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  top: 0;*/
/*  left: 0;*/
/*  z-index: 0;*/
/*}*/
.offer__wrapp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.offer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-weight: 300;
  font-size: 45px;
  margin-bottom: 75px;
}
.offer__subtitle {
  margin-top: 15px;
  font-size: 65px;
  margin-bottom: 20px;
  color: #ffd700;
}
.offer__date {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.offer__btn {
  -webkit-box-shadow: 8px 6px 25px #161515;
          box-shadow: 8px 6px 25px #161515;
}
@media (max-width: 992px) {
  .offer {
    padding: 70px 0 40px;
  }
  .offer__title {
    font-size: 27px;
    margin-bottom: 40px;
  }
  .offer__subtitle {
    font-size: 40px;
  }
  .offer__date {
    font-size: 25px;
    text-align: center;
  }
}

.beckon {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.beckon__wrapp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
.beckon__title {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
}
.beckon__description {
  margin-bottom: 30px;
}
.beckon__description strong {
  margin-top: 15px;
  display: inline-block;
}
@media (max-width: 992px) {
  .beckon {
    padding: 40px 0;
  }
  .beckon__title {
    font-size: 30px;
    margin-bottom: 22px;
  }
  .beckon__description {
    margin-bottom: 25px;
  }
  .beckon__description strong {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .beckon {
    padding: 35px 0;
  }
  .beckon__title {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .beckon__description {
    margin-bottom: 20px;
  }
}

.about__wrapp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about__title {
  font-size: 35px;
  margin-bottom: 15px;
}
.about__proffesion {
  font-size: 23px;
  margin-bottom: 17px;
  font-weight: 300;
}
.about__quote {
  background: var(--custom-color);
  padding: 20px 20px 20px 50px;
  color: #fff;
  font-weight: 300;
  left: -100px;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.55;
  border-radius: 10px;
  width: calc(100% + 100px);
}
.about__quote:before {
  content: "";
  width: 1px;
  height: calc(100% - 35px);
  top: 50%;
  background: #fff;
  margin-right: 5px;
  display: block;
  position: absolute;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about__item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about__item:not(:last-child) {
  margin-bottom: 50px;
}
.about__img {
  width: 35%;
}
.about__img img {
  border-radius: 20px;
}
.about__description {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__description li, .about__description p {
  line-height: 1.35;
}
.about__description li:not(:last-child), .about__description p:not(:last-child) {
  margin-bottom: 23px;
}
@media (max-width: 992px) {
  .about__title {
    font-size: 28px;
  }
  .about__proffesion {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .about__quote {
    padding: 17px 17px 17px 30px;
    left: -80px;
    margin-bottom: 17px;
    width: calc(100% + 80px);
  }
  .about__quote:before {
    left: 20px;
  }
  .about__item:not(:last-child) {
    margin-bottom: 45px;
  }
  .about__img {
    width: 45%;
  }
  .about__description {
    width: 50%;
  }
  .about__description li, .about__description p {
    line-height: 1.3;
  }
  .about__description li:not(:last-child), .about__description p:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .about__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .about__proffesion {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .about__quote {
    padding: 12px 12px 12px 20px;
    left: -120px;
    margin-bottom: 15px;
    width: calc(100% + 120px);
  }
  .about__quote:before {
    left: 15px;
  }
  .about__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .about__img {
    width: 45%;
  }
  .about__description {
    width: 50%;
  }
  .about__description li, .about__description p {
    line-height: 1.3;
  }
  .about__description li:not(:last-child), .about__description p:not(:last-child) {
    margin-bottom: 13px;
  }
}
@media (max-width: 575px) {
  .about__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .about__proffesion {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .about__quote {
    padding: 15px 15px 15px 30px;
    left: 0px;
    margin-bottom: 15px;
    width: 100%;
  }
  .about__quote:before {
    left: 15px;
  }
  .about__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__img {
    width: 100%;
    margin-bottom: 20px;
  }
  .about__description {
    width: 100%;
  }
  .about__description li, .about__description p {
    line-height: 1.3;
  }
  .about__description li:not(:last-child), .about__description p:not(:last-child) {
    margin-bottom: 17px;
  }
}

.what-do__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 45px;
}

.what-do__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.what-do__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.what-do__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.what-do__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.what-do__item:not(:last-child) {
  margin-bottom: 0;
}
.what-do__item-img {
  width: 100%;
  height: 220px;
  margin-bottom: 15px;
}
.what-do__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.what-do__item-title {
  color: var(--custom-color);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 992px) {
  .what-do__list {
    grid-gap: 25px;
  }
  .what-do__item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .what-do__list {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .what-do__item-img {
    height: 180px;
  }
  .what-do__item-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .what-do__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .what-do__item-img {
    height: auto;
  }
  .what-do__item-title {
    margin-bottom: 10px;
  }
}

.program__item-content {
  display: none;
  padding: 10px 30px 30px;
}
.program__item-content p {
  font-weight: 500;
}
.program__item-content p:not(:last-child) {
  margin-bottom: 10px;
}
.program__item:not(:last-child) {
  margin-bottom: 10px;
}
.program__item-title {
  border-radius: 3px;
  cursor: pointer;
  padding: 20px 15px;
  background: var(--custom-color);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.program__item-title.active .program__item-cross span:nth-child(2) {
  opacity: 0;
}
.program__item-cross {
  position: relative;
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.program__item-cross span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}
.program__item-cross span:nth-child(2) {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 992px) {
  .program__item-content {
    padding: 10px 20px 20px;
  }
  .program__item-title {
    font-size: 14px;
    padding: 15px 13px;
  }
  .program__item-cross {
    width: 13px;
    height: 13px;
    margin-right: 15px;
  }
}

.costs__wrapp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.costs__image {
  width: 45%;
}
.costs__content {
  width: 50%;
}
.costs__list {
  padding-left: 20px;
}
.costs__title {
  font-size: 25px;
  margin-bottom: 30px;
}
.costs__item {
  font-size: 16px;
  line-height: 1.4;
  list-style: circle;
}
.costs__item:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .costs__image {
    width: 40%;
  }
  .costs__content {
    width: 57%;
  }
  .costs__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .costs__item {
    font-size: 15px;
    line-height: 1.35;
  }
  .costs__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .costs__wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .costs__image {
    width: 100%;
  }
  .costs__content {
    width: 100%;
    margin-bottom: 20px;
  }
  .costs__title {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .costs__item {
    font-size: 14px;
    line-height: 1.35;
  }
  .costs__item:not(:last-child) {
    margin-bottom: 15px;
  }
}

.price__wrapp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.price__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.price__item {
  color: #fff;
  width: 48%;
  background: var(--custom-color);
  -webkit-box-shadow: -3px 1px 5px 0px rgba(109, 130, 136, 0.5);
          box-shadow: -3px 1px 5px 0px rgba(109, 130, 136, 0.5);
  padding: 40px 20px;
  border-radius: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price__item:not(:last-child) {
  margin-right: 4%;
}
.price__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.price__item-title {
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
  font-size: 32px;
}
.price__item-price {
  font-size: 42px;
  text-align: center;
  margin: 0 auto 30px;
}
.price__item-list {
  padding-left: 25px;
}
.price__item-list-text:not(:last-child) {
  margin-bottom: 7px;
}
.price__item-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffd700;
  font-size: 18px;
  text-align: center;
  margin-top: 25px;
}
.price__item-sale strong {
  margin-top: 7px;
  color: #fff;
  font-size: 47px;
  font-weight: 600;
}
.price__item-btn {
  font-weight: 500;
  margin: 0 auto;
  color: var(--custom-color);
  background: #ffd700;
}
.price__item-btn:hover {
  background: #ffc035;
}
@media (max-width: 768px) {
  .price__item {
    width: 48%;
    padding: 30px 10px;
  }
  .price__item:not(:last-child) {
    margin-right: 4%;
  }
  .price__item-top {
    margin-bottom: 18px;
  }
  .price__item-title {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .price__item-price {
    font-size: 28px;
    margin: 0 auto 15px;
  }
  .price__item-list-text:not(:last-child) {
    margin-bottom: 5px;
  }
  .price__item-sale {
    font-size: 16px;
    margin-top: 15px;
  }
  .price__item-sale strong {
    font-size: 33px;
  }
}
@media (max-width: 575px) {
  .price__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .price__item {
    width: 100%;
    padding: 20px 10px;
  }
  .price__item:not(:last-child) {
    margin-right: 0%;
    margin-bottom: 20px;
  }
  .price__item-top {
    margin-bottom: 18px;
  }
  .price__item-title {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .price__item-price {
    font-size: 22px;
    margin: 0 auto 5px;
  }
  .price__item-list-text:not(:last-child) {
    margin-bottom: 4px;
  }
  .price__item-sale {
    font-size: 15px;
    margin-top: 10px;
  }
  .price__item-sale strong {
    font-size: 30px;
  }
}

.location__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 20px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.location__content > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.location__content > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.location__content > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.location__content > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.location__content > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.location__content > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.location__content > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.location__content > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.location__content .div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 1/1/3/3;
}
.location__content .div2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/2/4;
}
.location__content .div3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 1/4/2/5;
}
.location__content .div4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/3/4;
}
.location__content .div5 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 2/4/3/5;
}
.location__content .div6 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 1/5/6/6;
}
.location__content img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .location__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .location__content > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .location__content > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .location__content > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .location__content > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .location__content > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .location__content > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .location__content > *:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .location__content > *:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .location__content .div1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/3/3;
  }
  .location__content .div2 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3/1/4/2;
  }
  .location__content .div3 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3;
  }
  .location__content .div4 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4/1/5/2;
  }
  .location__content .div5 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4/2/5/3;
  }
}

.how__item-num {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--custom-color);
  font-size: 18px;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  color: var(--custom-color);
  position: relative;
}
.how__item-content {
  width: calc(100% - 30px - 20px);
}
.how__item-content h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}
.how__item:not(:last-child) {
  margin-bottom: 35px;
}
.how__item:not(:last-child) .how__item-num:after {
  content: "";
  width: 1px;
  height: 35px;
  bottom: -10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: block;
  background: var(--custom-color);
}
@media (max-width: 768px) {
  .how__item-num {
    font-size: 16px;
    margin-right: 15px;
    width: 25px;
    height: 25px;
    margin-top: 5px;
  }
  .how__item-content {
    width: calc(100% - 25px - 15px);
  }
  .how__item-content h4 {
    font-size: 17px;
  }
  .how__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .how__item:not(:last-child) .how__item-num:after {
    height: 40px;
  }
}

.feedback__title {
  font-size: 35px;
  margin-bottom: 15px;
}
.feedback__wrapp {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.feedback__wrapp > div {
  width: 49%;
}
.feedback__map iframe {
  width: 100% !important;
  height: 100% !important;
}
.feedback__content {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 30px;
  background: #fff;
}
.feedback__content input {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid #000;
  padding: 5px 5px 10px 15px;
  margin-bottom: 10px;
}
.feedback__content .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}
.feedback__content label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feedback__content .wpcf7-form-control.wpcf7-radio {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feedback__content .wpcf7-form-control.wpcf7-radio > span input {
  width: 16px;
}
.feedback__content .wpcf7-form-control.wpcf7-radio > span {
  margin-right: 10px;
  cursor: pointer;
  display: flex;
}
.feedback__content .wpcf7-form-control.wpcf7-radio span {
  margin-left: 0;
}
.feedback__content .wpcf7-spinner {
  display: none;
}
.feedback__btn {
  padding: 0 !important;
  padding-top: 4px !important;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .feedback__title {
    font-size: 30px;
    margin-bottom: 13px;
  }
  .feedback__content {
    padding: 25px;
  }
  .feedback__content input {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .feedback__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .feedback__content {
    padding: 20px;
  }
  .feedback__content input {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .feedback__map {
    height: 300px;
  }
  .feedback__wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .feedback__wrapp > div {
    width: 100%;
  }
  .feedback__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .feedback__content {
    margin-bottom: 20px;
    padding: 20px;
  }
  .feedback__content input {
    font-size: 15px;
  }
}

.contacts {
  background: var(--custom-color);
  padding: 35px 0;
}
.contacts__wrapp {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.contacts__title {
  text-align: left;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}
.contacts__subtitle {
  color: #d3d2d2;
}
.contacts__center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__name {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #fff;
}
.contacts__proffesion {
  color: #D0D0D0;
  font-size: 20px;
  margin-bottom: 30px;
}
.contacts__instagram {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 20px;
}
.contacts__instagram svg {
  margin-right: 5px;
  fill: #E29BB7;
}
.contacts__right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__phone {
  font-weight: 300;
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
}
.contacts__social {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__social a:not(:last-child) {
  margin-right: 10px;
}
.contacts__social svg {
  fill: #fff;
  width: 25px;
  height: 25px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.contacts__social svg:hover {
  fill: #E29BB7;
}
@media (max-width: 992px) {
  .contacts {
    background: var(--custom-color);
    padding: 30px 0;
  }
  .contacts__wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contacts__title {
    text-align: center;
    font-size: 29px;
    margin-bottom: 5px;
  }
  .contacts__left {
    margin-bottom: 20px;
  }
  .contacts__name {
    font-size: 20px;
  }
  .contacts__proffesion {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .contacts__instagram {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .contacts__phone {
    font-size: 23px;
  }
  .contacts__social svg {
    width: 23px;
    height: 23px;
  }
}

.gallery__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.gallery__content > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.gallery__content > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.gallery__content > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.gallery__content > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.gallery__content > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.gallery__item {
  max-height: 220px;
}
.gallery__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .gallery__content {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery__item {
    max-height: 200px;
  }
}
@media (max-width: 768px) {
  .gallery__content {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__item {
    max-height: 180px;
  }
}
@media (max-width: 575px) {
  .gallery__content {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .gallery__item {
    max-height: 160px;
  }
}

.reviews__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.reviews__content > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.reviews__content > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.reviews__item-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.reviews__item-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.reviews__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__item-name {
  font-size: 20px;
  font-weight: 500;
}
.reviews__item-instagram {
  font-size: 14px;
  color: var(--custom-color);
}
.reviews__item-text {
  position: relative;
}
.reviews__item-text p {
  font-style: italic;
  font-size: 15px;
}
.reviews__item-text p:not(:last-child) {
  margin-bottom: 15px;
}
.reviews__item-text svg {
  width: 100%;
  height: auto;
}
.reviews__item-text span {
  display: block;
  position: absolute;
  top: 0;
  right: 40px;
  width: 40px;
  margin-left: auto;
}
@media (max-width: 992px) {
  .reviews__content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 30px;
  }
  .reviews__item-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  .reviews__item-name {
    font-size: 18px;
  }
  .reviews__item-text p {
    font-size: 14px;
  }
  .reviews__item-text p:not(:last-child) {
    margin-bottom: 10px;
  }
  .reviews__item-text span {
    width: 30px;
    height: 40px;
    margin-right: 30px;
  }
}

.quote {
  padding: 150px 0 120px;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
}
.quote:before {
  content: "";
  background: hsla(201, 37%, 15%, 0.57);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.quote__wrapp {
  position: relative;
  z-index: 10;
}
.quote__content {
  width: 55%;
  color: #fff;
  margin: 0 auto;
}
.quote__content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.quote__content .quote__author {
  margin-left: auto;
  text-align: right;
  font-size: 15px;
  margin-top: 50px;
  font-weight: 300;
}
@media (max-width: 992px) {
  .quote {
    padding: 130px 0 90px;
  }
  .quote__content {
    width: 65%;
  }
  .quote__content p {
    font-size: 19px;
  }
  .quote__content .quote__author {
    font-size: 15px;
    margin-top: 45px;
  }
}
@media (max-width: 768px) {
  .quote {
    padding: 110px 0 60px;
  }
  .quote__content {
    width: 75%;
  }
  .quote__content p {
    font-size: 18px;
  }
  .quote__content .quote__author {
    font-size: 14px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .quote {
    padding: 80px 0 60px;
  }
  .quote__content {
    width: 85%;
  }
  .quote__content p {
    font-size: 16px;
  }
  .quote__content .quote__author {
    font-size: 14px;
    margin-top: 25px;
  }
}
/*# sourceMappingURL=style.css.map */