@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --dark: #000;
  --color-brand: #cba672;
  --font-main: "Montserrat", sans-serif;
}

/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: #fff;
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
  font: 400 16px/1.5 var(--font-main);
  color: #282828;
}

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

a {
  text-decoration: none;
  transition: all 0.3s;
  color: var(--color-brand);
}
a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 24px;
}
p:last-child {
  margin-bottom: 0;
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

input, textarea {
  background: #f5f2f0;
  border: none;
  outline: none;
  color: #282828;
  padding-left: 36px;
  padding-right: 36px;
}

input {
  border-radius: 35px;
  height: 60px;
}

textarea {
  resize: vertical;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 15px;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

input:-ms-input-placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  color: #282828;
}

::-moz-placeholder {
  color: #282828;
}

:-ms-input-placeholder {
  color: #282828;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading-2 {
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.19;
}

h2, .heading-2 {
  font-size: 36px;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* COMMON */
.text-up {
  text-transform: uppercase;
}

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

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

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

.text-underline {
  text-decoration: underline;
}

.nowrap {
  white-space: nowrap;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.content-page {
  flex: 1 0 auto;
  min-height: 1px;
}

.container {
  width: 100%;
  max-width: 980px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50px;
  background-color: var(--color-brand);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 21px 37px;
  border: none;
  outline: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.button:hover {
  text-decoration: none;
}
.button:hover:before {
  top: 0;
  right: 0;
  width: 200%;
  height: 200%;
  border-radius: 0px;
}
.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background-color: #d9b787;
  top: 19px;
  right: -12px;
  transition: all 0.3s;
}
.button_fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* SECTION */
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section_bg {
  background-color: #f5f2f0;
}
.section_dark {
  background-color: var(--dark);
  color: #fff;
}
.section__header {
  text-align: center;
  padding-bottom: 31px;
  position: relative;
  margin-bottom: 34px;
}
.section__header:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 204px;
  height: 2px;
  background-color: var(--color-brand);
}
.section__header-title {
  margin-bottom: 0;
}
.section__header-info {
  margin-top: 13px;
  font-size: 18px;
  line-height: 1.33;
  width: 100%;
  max-width: 83%;
  margin-left: auto;
  margin-right: auto;
}
.section__header-info.size-lg {
  max-width: 95%;
}
.section__row:not(:last-child) {
  margin-bottom: 45px;
}

/* TITLE */
.title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.38;
  margin-bottom: 25px;
}

/* INTRO */
.intro {
  background-color: #000;
  color: #fff;
  padding-top: 34px;
  padding-bottom: 55px;
  overflow: hidden;
}
.intro__grid {
  display: grid;
}
.intro__grid-item {
  grid-column-start: 1;
  grid-row-start: 1;
}
.intro-main {
  position: relative;
}
.intro-aside {
  margin-left: -25px;
  margin-right: -25px;
  align-self: center;
}
.intro__header {
  margin-bottom: 31px;
}
.intro__caption {
  text-transform: uppercase;
  font-size: 25px;
  max-width: 520px;
}
.intro__caption-item {
  font-weight: 700;
  font-size: 28px;
  color: var(--color-brand);
}
.intro__title {
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.39;
  margin-bottom: 13px;
  max-width: 600px;
}
.intro__title-item {
  font-weight: 900;
  line-height: 1.18;
  font-size: 1.528em;
  display: block;
}
.intro__content {
  max-width: 51%;
}
.intro__content:not(:last-child) {
  margin-bottom: 30px;
}
.intro__line {
  font-size: 20px;
  margin-bottom: 10px;
}
.intro__footer {
  margin-top: 13px;
}
.intro__img {
  max-width: 480px;
  margin-left: auto;
}

/* ABOUT */
.about-grid {
  display: grid;
}
.about-grid__item {
  grid-column-start: 1;
  grid-row-start: 1;
}

.about-main {
  padding-bottom: 28px;
  position: relative;
  z-index: 5;
}

.about-aside {
  align-self: end;
}

.about-img {
  width: 100%;
  max-width: 311px;
  margin-left: auto;
  margin-right: -90px;
  position: relative;
  z-index: 0;
}
.about-img:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background-color: #f5f2f0;
  top: 29px;
  left: -67px;
}

.about-info {
  font-size: 18px;
  line-height: 1.33;
}
.about-info:not(:last-child) {
  margin-bottom: 26px;
}
.about-info_w {
  max-width: 65%;
}
.about-info__title {
  font-size: 28px;
  margin-bottom: 5px;
}

.about-line {
  background-color: var(--color-brand);
  color: #fff;
  padding: 24px 0 35px;
}
.about-line__grid {
  display: flex;
  gap: 35px;
  justify-content: space-around;
}
.about-line__val {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}
.about-line__caption {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
}
.about-line .sm {
  margin-left: 9px;
  font-size: 0.6em;
}

/* QUOTE */
.quote {
  --offset: 38px;
  margin: 0;
  padding: var(--offset) 0 0 17px;
  background: url("../img/icons/quote.svg") no-repeat 0 0;
  position: relative;
  font-weight: 500;
  font-style: italic;
}
.quote:before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - var(--offset));
  background-color: var(--color-brand);
  left: 0;
  bottom: 0;
}
.quote_w {
  max-width: 50%;
}
.quote_v1 {
  font-size: 18px;
  line-height: 1.33;
  font-weight: 400;
  text-align: center;
  padding-left: 0;
  background-position: 50% 0;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.quote_v1:before {
  display: none;
}

/* WORRY */
.worry-img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: -25px;
}
.worry-img img {
  display: block;
}

.worry-box {
  border-radius: 35px;
  background-color: #000;
  color: #fff;
  padding: 50px 20px 60px;
}

.worry-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-left: -17px;
  margin-right: -17px;
}
.worry-grid__item {
  width: 50%;
  padding: 0 17px;
}

.worry {
  text-align: center;
}
.worry__icon {
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  margin: 0 auto 12px;
}
.worry__icon img {
  max-height: 100%;
}
.worry__content {
  font-weight: 500;
}

/* IMG-WRAP */
.img-wrap {
  margin-left: -25px;
  margin-right: -25px;
}

/* BOX */
.box-wrap {
  width: 92%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.box {
  display: flex;
  align-items: center;
  gap: 18px;
}
.box:not(:last-child) {
  margin-bottom: 30px;
}
.box__icon {
  width: 61px;
  height: 66px;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}

/* STEP */
.step {
  width: 100%;
  max-width: 600px;
  counter-reset: num;
  margin-left: auto;
  margin-right: auto;
}
.step__item {
  display: flex;
  gap: 17px;
}
.step__item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}
.step__item:nth-child(even) .step__title {
  margin-left: auto;
}
.step__item:nth-child(1) .step__body, .step__item:nth-child(2) .step__body, .step__item:nth-child(6) .step__body {
  max-width: 70%;
}
.step__item:nth-child(1) {
  min-height: 140px;
  background: url("../img/step-arrows/arrow-1.svg") no-repeat left 98% top 15px;
}
.step__item:nth-child(2) {
  min-height: 96px;
  background: url("../img/step-arrows/arrow-2.svg") no-repeat left 10px top 15px;
}
.step__item:nth-child(3) {
  min-height: 112px;
  background: url("../img/step-arrows/arrow-3.svg") no-repeat left 95% top 15px;
}
.step__item:nth-child(4) {
  min-height: 160px;
  background: url("../img/step-arrows/arrow-4.svg") no-repeat 0 0;
}
.step__item:nth-child(5) {
  min-height: 232px;
  background: url("../img/step-arrows/arrow-5.svg") no-repeat left 100% top 20px;
}
.step__item:before {
  counter-increment: num;
  content: counter(num);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed var(--color-brand);
  flex-shrink: 0;
  background-color: #f5f2f0;
  display: grid;
  place-content: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin-top: -10px;
}
.step__item:not(:last-child) {
  padding-bottom: 45px;
}
.step__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
  color: var(--color-brand);
  max-width: 80%;
  margin-bottom: 3px;
}

/* SUIT */
.suit {
  border-radius: 35px;
  box-shadow: 0 4px 6px 0 #e8e4e2;
  background-color: #fff;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 5px 35px 5px 80px;
  line-height: 1.25;
  position: relative;
}
.suit-wrap {
  width: 85%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.suit:not(:last-child) {
  margin-bottom: 21px;
}
.suit:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-brand) url("../img/icons/check-white.svg") no-repeat 50% 50%;
}

/* RESULT */
.result {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}
.result-wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.result:not(:last-child) {
  margin-bottom: 24px;
}
.result:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}
.result__media {
  aspect-ratio: 196/157;
  border-radius: 35px;
  border: 2px solid var(--color-brand);
  padding: 4px;
}
.result__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 34px;
}

/* FEATURE */
.feature-section {
  position: relative;
  z-index: 0;
}
.feature-img {
  position: absolute;
  z-index: -1;
  top: -60px;
  right: -33px;
  width: 100%;
  max-width: 513px;
}
.feature-img:before {
  content: "";
  width: 100%;
  height: 402px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.feature:first-child {
  max-width: 63%;
}
.feature-heading {
  max-width: 80%;
}
.feature:not(:last-child) {
  margin-bottom: 33px;
}
.feature__title {
  color: var(--color-brand);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
.feature__title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/icons/check.svg) no-repeat 0 0/contain;
}

/* REVIEWS CAROUSEL */
.reviews-carousel-wrap {
  width: 100%;
  max-width: 430px;
  padding: 0 31px;
  margin: 40px auto 0;
  position: relative;
}

.img-rounded {
  border-radius: 35px;
}

.swiper-pagination {
  position: static;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-brand);
  width: 12px;
  height: 12px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 27px;
  color: var(--color-brand);
  font-weight: bold;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

/* LIST-COUNTER */
.list-counter {
  counter-reset: counter;
}
.list-counter__item {
  display: flex;
  gap: 28px;
}
.list-counter__item:not(:last-child) {
  margin-bottom: 33px;
}
.list-counter__item:before {
  counter-increment: counter;
  content: counter(counter);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-brand);
  display: grid;
  place-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}
.list-counter__content {
  align-self: center;
}

/* MESSAGE */
.message {
  border: 2px solid var(--color-brand);
  border-radius: 35px;
  text-align: center;
  font-size: 18px;
  line-height: 1.67;
  padding: 27px 35px 38px;
}
.message__span {
  text-transform: uppercase;
  font-weight: bold;
}

/* LIST-CHECK */
.list-check {
  --size: 2.111em;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.67;
}
.list-check-wrap {
  max-width: 90%;
  margin: 0 auto;
}
.list-check li {
  min-height: var(--size);
  position: relative;
  padding-left: 3em;
}
.list-check li:not(:last-child) {
  margin-bottom: 30px;
}
.list-check li:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.67em - var(--size)) / 2);
  width: var(--size);
  height: var(--size);
  background: url("../img/icons/check.svg") no-repeat 0 0/contain;
}
.list-check_v1 {
  font-size: 16px;
  line-height: 1.5;
}
.list-check_sm {
  --size: 1em;
  font-size: 16px;
  line-height: 1.5;
}
.list-check_sm li {
  padding-left: 24px;
}
.list-check_sm li:not(:last-child) {
  margin-bottom: 25px;
}
.list-check_sm li:before {
  width: 1em;
  height: 1em;
}

.vb {
  margin-top: 20px;
  display: block;
}

/* ACTION-BOX */
.action-box {
  background-color: #fff;
  border-radius: 35px;
  padding: 37px 10px 50px;
  text-align: center;
  font-size: 18px;
  line-height: 1.67;
}
.action-box__header {
  margin-bottom: 16px;
}
.action-box__caption {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 19px;
}

/* CONTACT-LINE */
.contact-line-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 23px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.contact-line-wrap:not(:last-child) {
  margin-bottom: 35px;
}
.contact-line {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 0 15px;
}
.contact-line:hover {
  text-decoration: none;
}
.contact-line_tel {
  font-size: 32px;
  line-height: 1;
  color: #fff;
}
.contact-line__icon {
  flex-shrink: 0;
}
.contact-line__icon img, .contact-line__icon svg {
  display: block;
}

/* SOCIAL-LIST */
.social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 27px;
}
.social-list__item {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background-color: var(--color-brand);
}
.social-list__item:hover {
  background-color: #c38835;
}

/* FOOTER */
.footer {
  flex: 0 0 auto;
  padding-bottom: 100px;
  color: #fff;
  background-color: var(--dark);
  padding: 60px 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.67;
}
.footer__contacts {
  margin-bottom: 52px;
}
.footer__contacts-title {
  margin-bottom: 15px;
}
.footer__row {
  margin-bottom: 38px;
}
.footer__info {
  color: #959595;
  font-size: 14px;
  line-height: 1.7;
}
.footer__info:not(:last-child) {
  margin-bottom: 47px;
}

/* FORM */
.form:not(:last-child) {
  margin-bottom: 20px;
}
.form__row:not(:last-child) {
  margin-bottom: 19px;
}

.note {
  display: flex;
  gap: 5px;
  font-size: 12px;
  line-height: 1.67;
  max-width: 235px;
  margin-left: auto;
  margin-right: auto;
}

/* MODAL */
.modal-window {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal-window.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-window.is-show .modal {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal-window__bg {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
}
.modal__close {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 20px;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #dcd9df;
  transition: all 0.3s;
}
.modal__close:hover {
  color: var(--color-brand);
}
.modal {
  background-color: #fff;
  border-radius: 35px;
  width: 90%;
  max-width: 500px;
  max-height: 100%;
  padding: 70px 40px 60px;
  overflow: auto;
  position: relative;
  z-index: 10;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
.modal__inner {
  overflow: hidden;
}
.modal__header {
  text-align: center;
  margin-bottom: 36px;
}
.modal__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
  text-transform: uppercase;
}

.ger {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* HELPERS */
.color-txt {
  color: var(--color-brand);
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ov-hidden {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.tha {
  padding-top: 50px;
}

.tha img {
  display: block;
  max-width: 90px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.tha h1, .tha p {
  color: #000;
  font-size: 24px;
  text-align: center;
}

.t {
  padding-top: 30px;
  padding-bottom: 30px;
}

.t h2 {
  font-size: 26px;
}

.t p {
  color: #000;
  font-size: 18px;
  text-align: left;
}

.rt {
  margin-top: 20px;
}

.et {
  font-size: 13px;
  margin-top: 20px;
}

.fh {
  margin-top: 30px;
  margin-bottom: 20px;
}

.dw {
  margin-top: 25px;
}

.dw ol {
  text-align: left;
}

.bn {
  margin-top: 25px;
  margin-bottom: 20px;
}