/* reset */
/* main variables */
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");
:root {
  --text: #404040;
  --main: #D7AD8E;
  --main-h: #CC966F;
  --main-l: #FBEFCF;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Gilroy", sans-serif;
  background-color: #FFF;
  height: 100%;
  line-height: 1.4;
  position: relative;
  font-size: 13px !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
}

.ftitle, .ftitle * {
  font-family: "Cormorant", sans-serif;
}

.ital, .ital * {
  font-family: "Ouvality", sans-serif;
}

/*MAIN*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-width: 0px;
  padding: 0px;
  margin: 0px;
}

html {
  height: 100%;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

input,
textarea {
  color: #333;
  font-family: "Gilroy", sans-serif;
  outline: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}

input[type=button],
input[type=submit],
button {
  cursor: pointer;
}

td {
  margin: 0px;
  padding: 0px;
}

form {
  padding: 0px;
  margin: 0px;
}

a {
  color: #100da9;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button, input {
  font-family: "Gilroy", sans-serif;
}

a,
span,
div,
button {
  outline: none !important;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.delay {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.delay2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay10 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media (max-width: 768px) {
  .delay,
.delay10,
.delay2,
.delay4,
.delay6,
.delay8 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
}
.animate_fade_in,
.animate_fade_left,
.animate_fade_right {
  opacity: 0;
}

@-webkit-keyframes slide-up-in {
  0% {
    -webkit-transform: translate(0, 30px) rotate(1deg);
            transform: translate(0, 30px) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-up-in {
  0% {
    -webkit-transform: translate(0, 30px) rotate(1deg);
            transform: translate(0, 30px) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_in {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-up-in;
  animation-name: slide-up-in;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translate(50px, 0) rotate(1deg);
            transform: translate(50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translate(50px, 0) rotate(1deg);
            transform: translate(50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_left {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-left;
  animation-name: slide-left;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translate(-50px, 0) rotate(1deg);
            transform: translate(-50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translate(-50px, 0) rotate(1deg);
            transform: translate(-50px, 0) rotate(1deg);
    opacity: 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
.fade_right {
  opacity: 1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slide-right;
  animation-name: slide-right;
}

body, html {
  font-size: 10px !important;
}

@media (max-width: 767px) {
  body, html {
    font-size: 2.667vw !important;
  }
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.eot");
  src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.eot");
  src: url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.eot");
  src: url("../fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-SemiBold.woff") format("woff"), url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.eot");
  src: url("../fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.eot");
  src: url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff") format("woff"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Ouvality";
  src: url("../fonts/Ouvality.eot");
  src: url("../fonts/Ouvality.eot?#iefix") format("embedded-opentype"), url("../fonts/Ouvality.woff2") format("woff2"), url("../fonts/Ouvality.woff") format("woff"), url("../fonts/Ouvality.ttf") format("truetype"), url("../fonts/Ouvality.svg#Ouvality") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*@import "components/_fancybox";
@import "components/_slick";
@import "components/_mCustomScrollbar";*/
/*
================================================================================
|                                     HEADER                                   |
================================================================================
*/
header {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-order: 1;
}

/*
================================================================================
|                                     FOOTER                                   |
================================================================================
*/
footer {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-order: 3;
}

.main-wrapper {
  padding: 0 0 0 0;
  min-width: 290px;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.wrapper {
  max-width: 37.5rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  margin: 0 auto;
  position: relative;
}

/* titles */
/*p{	
	@include font($base-font-size,$base-line-height,$text-color);
	font-weight: 400;	
}
h1{	
	@include font($font-size-h1,$line-height-h1,$title-color);
	font-family: $title-font-family;
	font-weight: 400;	
}
h2{
	@include font($font-size-h2,$line-height-h2,$title-color);
	font-family: $title-font-family;
	font-weight: 400;	
}
h3{
	@include font($font-size-h3,$line-height-h3,$title-color);
	font-family: $title-font-family;
	font-weight: 400;
}*/
/* text position */
.text-left {
  text-align: left !important;
}

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

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

.nowrap {
  white-space: nowrap !important;
}

/* loader */
/*.loaded .main-wrapper{visibility:hidden;}
.icon-load{background:url(../img/loader.gif) no-repeat left top;width:40px;height:40px;position:fixed;left:50%;top:50%;margin-left:-20px;margin-left:-20px;display:none;}
.loaded .icon-load{display:block;}*/
/*
================================================================================
|                                     CONTENT                                 |
================================================================================
*/
.content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-order: 2;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content {
  width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 5rem 0 6rem;
  position: relative;
  background: #fbfbfb;
  overflow: hidden;
  border-radius: 0 0 3rem 3rem;
}
.hero__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .wrapper {
  z-index: 2;
}
.hero__title {
  text-align: center;
}
.hero__title span {
  background: -webkit-gradient(linear, left top, left bottom, from(#e2c2ab), to(#a86f45));
  background: -o-linear-gradient(top, #e2c2ab 0%, #a86f45 100%);
  background: linear-gradient(180deg, #e2c2ab 0%, #a86f45 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}
.hero__subtitle {
  margin-top: 1.6rem;
  margin-bottom: 3rem;
  text-align: center;
}
.hero__subtitle span {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--text);
}
.hero__image {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: 36rem;
  overflow: hidden;
  border-radius: 2.4rem;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__text {
  margin-top: 2.4rem;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  color: var(--text);
  text-align: center;
}
.hero__btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__button {
  position: relative;
  padding: 1.8rem 4rem 1.8rem;
  border: 0;
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  border-radius: 1.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero__button:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.hero__button span:first-child {
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  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;
  left: 50%;
  top: 0;
  border: 2px solid #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.hero__button span:first-child img {
  display: block;
  width: 30%;
}
.hero__button span:last-child {
  font-size: 1.5rem;
  color: #fff;
}

.ifbox {
  padding: 6rem 0;
}
.ifbox__title {
  text-align: center;
}
.ifbox__title span {
  font-size: 5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e2c2ab), to(#a86f45));
  background: -o-linear-gradient(top, #e2c2ab 0%, #a86f45 100%);
  background: linear-gradient(180deg, #e2c2ab 0%, #a86f45 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1;
}
.ifbox__subtitle {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.ifbox__subtitle span {
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
  font-weight: 500;
}
.ifbox__listitem {
  margin-top: 2rem;
  padding: 2rem 4rem;
  padding-top: 3rem;
  border-radius: 1.2rem;
  border: 1px solid var(--main);
  position: relative;
}
.ifbox__listitem p {
  font-size: 1.6rem;
  text-align: center;
}
.ifbox__icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  width: 6rem;
  height: 2.4rem;
  border-radius: 5rem;
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  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;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.ifbox__icon img {
  display: block;
  height: 70%;
  width: auto;
}
.ifbox__answer {
  margin-top: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}
.ifbox__answer span {
  display: inline-block;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0.06rem;
}
.ifbox__text2 {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 1.6rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.ifbox__text2:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  width: 10rem;
  background: var(--main);
}
.ifbox__text3 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.author {
  padding: 5rem 0 6rem;
  position: relative;
  background: #fbfbfb;
  overflow: hidden;
  border-radius: 0 0 3rem 3rem;
}
.author__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.author__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author .wrapper {
  z-index: 2;
}
.author__title {
  margin-bottom: 3rem;
  text-align: center;
}
.author__title span {
  font-size: 4.4rem;
  text-transform: uppercase;
}
.author__image {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 36rem;
  border-radius: 0.8rem;
  position: relative;
  overflow: hidden;
}
.author__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author__info {
  position: relative;
  margin-bottom: 3rem;
}
.author__info img {
  width: 3rem;
  position: absolute;
  left: 0;
  top: 0;
}
.author__info p {
  padding-left: 5rem;
  font-size: 1.5rem;
}
.author__info p span {
  font-size: 3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e2c2ab), to(#a86f45));
  background: -o-linear-gradient(top, #e2c2ab 0%, #a86f45 100%);
  background: linear-gradient(180deg, #e2c2ab 0%, #a86f45 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.author__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.author__number {
  width: 48%;
  text-align: center;
  padding: 2rem;
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  border-radius: 1.6rem;
}
.author__number.grey {
  background: -o-linear-gradient(293deg, #cdcdcd 0%, #f6f6f6 32.29%, #f6f6f6 68.23%, #ddd 100%);
  background: linear-gradient(157deg, #cdcdcd 0%, #f6f6f6 32.29%, #f6f6f6 68.23%, #ddd 100%);
}
.author__number.grey span {
  color: var(--text);
}
.author__number.grey p {
  color: var(--text);
}
.author__number span {
  font-size: 4rem;
  color: #fff;
}
.author__number p {
  font-size: 1.6rem;
  color: #fff;
}
.author__text2 {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 2rem;
}
.author__list {
  margin-top: 2rem;
  padding-left: 0.5rem;
  margin-bottom: 2rem;
}
.author__listitem {
  padding: 0.5rem 0;
}
.author__listitem p {
  font-size: 1.6rem;
  position: relative;
  padding-left: 2.4rem;
}
.author__listitem p:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: var(--main);
  position: absolute;
  left: 0;
  top: 0.6rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.how {
  padding: 5rem 0;
}
.how__title {
  text-align: center;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.how__subtitle {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 4rem;
}
.how__item {
  padding: 2rem;
  border-radius: 1.6rem;
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  background: var(--main);
  margin-bottom: 1.6rem;
}
.how__icon {
  width: 3rem;
  height: 3rem;
  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: 0.6rem;
  background: #fff;
}
.how__icon img {
  width: 50%;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.how__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.how__head p {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.how__info {
  margin-top: 1.2rem;
}
.how__info p {
  font-size: 1.4rem;
}

.advas {
  padding: 5rem 0 3rem;
  position: relative;
  background: #fbfbfb;
  overflow: hidden;
  border-radius: 0 0 3rem 3rem;
}
.advas__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.advas__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.advas .wrapper {
  z-index: 2;
}
.advas__title {
  text-align: center;
}
.advas__title span {
  text-transform: uppercase;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.advas__item {
  padding: 3rem 0;
  position: relative;
}
.advas__item:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 20rem;
  bottom: 0;
  height: 1px;
  background: var(--main);
  opacity: 0.5;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.advas__item:last-child:before {
  content: none;
}
.advas__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  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;
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.advas__icon img {
  width: 50%;
}
.advas__head {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.2rem;
}
.advas__info {
  text-align: center;
  font-size: 1.6rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact {
  padding: 5rem 0;
}
.contact__title {
  text-align: center;
  margin-bottom: 1.2rem;
}
.contact__title span {
  font-size: 5rem;
  padding: 0.5rem 1.2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e2c2ab), to(#a86f45));
  background: -o-linear-gradient(top, #e2c2ab 0%, #a86f45 100%);
  background: linear-gradient(180deg, #e2c2ab 0%, #a86f45 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact__subtitle {
  text-align: center;
  margin-bottom: 3rem;
}
.contact__subtitle span {
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
}
.contact__text {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.4rem;
}
.contact__form {
  display: block;
  border-radius: 2.4rem;
  background: -o-linear-gradient(105deg, #f7f5f2, #d0c4bb);
  background: linear-gradient(345deg, #f7f5f2, #d0c4bb);
  padding: 3rem;
}
.contact__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.contact__label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact__radio {
  width: 6rem;
  height: 4rem;
}
.contact__radio input {
  display: none;
}
.contact__radio label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f3f3f3;
  border-radius: 0.8rem;
}
.contact__radio label img {
  display: block;
  width: 30%;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.contact__radio input:checked + label {
  background: var(--main);
}
.contact__radio input:checked + label img {
  -webkit-filter: none;
          filter: none;
}
.contact__input {
  margin-bottom: 1.6rem;
}
.contact__input input {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  padding: 1.4rem 2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.8rem;
}
.contact__input input:focus {
  border-color: var(--main);
  padding-left: 2.5rem;
}
.contact__btn {
  position: relative;
  padding: 1.8rem 4rem 1.8rem;
  border: 0;
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  border-radius: 1.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: block;
  width: 100%;
}
.contact__or {
  font-size: 20px;
  font-weight: 700;
  margin: 2rem 0;
  text-align: center;
}
.contact__socs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__soc {
  width: 32%;
  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;
  height: 3.8rem;
  background: -o-linear-gradient(229deg, #cd9871 0%, #dfc0a9 100%);
  background: linear-gradient(221deg, #cd9871 0%, #dfc0a9 100%);
  background: var(--main);
  border-radius: 0.8rem;
}
.contact__soc img {
  height: 50%;
  width: auto;
}
.contact__soc.half {
  width: 48%;
}
.contact__mail {
  text-align: center;
  margin: 2rem 0;
}
.contact__mail a {
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 700;
}
.contact__dol {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.6rem;
}

.contact__media{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.contact__mediatext{
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  text-align: center;
  margin-top: 2rem;
}
.contact__linkspec{
  width: 4rem;
  height: 4rem;
  border-radius: 0.8rem;
  background: var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__linkspec img{
  width: 50%;
}

.thanks__box {
  min-height: 100vh;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thanks__title {
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 2rem;
}
.thanks__subtitle {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (max-width: 767px) {
  .content {
    width: 100%;
  }
  .wrapper {
    max-width: 100%;
  }
}