@font-face {
  font-family: 'Bona Nova SC';
  src: url('../fonts/BonaNovaSC-Regular.woff2') format('woff2'),
    url('../fonts/BonaNovaSC-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bona Nova SC';
  src: url('../fonts/BonaNovaSC-Italic.woff2') format('woff2'),
    url('../fonts/BonaNovaSC-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
    url('../fonts/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
    url('../fonts/Inter-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter 18pt';
  src: url('../fonts/Inter18pt-ExtraLightItalic.woff2') format('woff2'),
    url('../fonts/Inter18pt-ExtraLightItalic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea {
  outline: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

select {
  outline: none;
}

table,
tbody,
tfoot,
thead,
td,
th,
tr {
  border-collapse: collapse;
  border-spacing: 0;
  padding: 0;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter';
  background-color: #F6F0E8;
  font-size: 1.25vw;
  font-weight: 300;
  line-height: 1.5;
  color: #312828;
  -webkit-tap-highlight-color: transparent;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 81.25vw;
  margin: 0 auto;
}

h1 {
  font-family: 'Bona Nova SC';
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  font-size: 5vw;
  margin: 0;
}

h2 {
  font-family: 'Bona Nova SC';
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.2589vw;
  font-size: 3.3333vw;
  margin: 0;
  text-align: center;
}

h3 {
  font-family: 'Bona Nova SC';
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.1563vw;
  margin: 0;
}

.header_pc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #312828;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.0417vw 4.6875vw;
  background-color: #F6F0E8;
  z-index: 999;
}

.logo_box {
  display: flex;
  align-items: center;
  gap: 2.0833vw;
}

.logo {
  line-height: 0;
}

.logo img {
  width: 2.8125vw;
}

.logo_text {
  font-family: 'Bona Nova SC';
  font-size: 1.25vw;
}

.main_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.7708vw;
  font-family: 'Bona Nova SC';
  font-size: .7292vw;
  text-transform: uppercase;
}

.main_menu a {
  position: relative;
}

.main_menu a::after {
  content: '';
  position: absolute;
  bottom: -0.5208vw;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #312828;
  transform: scale(0);
  transition: 0.3s;
}

.main_menu a:hover::after {
  transform: scale(1);
  transition: 0.3s;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 2.6042vw;
}

.socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.0417vw;
}

.social_item a {
  line-height: 0;
  display: block;
}

.social_item img {
  width: 1.3542vw;
  position: relative;
  bottom: 0;
  transition: 0.2s;
}

.social_item a:hover img {
  bottom: .1563vw;
  transition: 0.2s;
}

.lang_switcher {
  list-style: none;
  margin: 0;
  padding: 0;
}

.current-lang {
  display: none;
}

.lang-item a {
  font-size: .9375vw;
  position: relative;
}

.lang-item a::after {
  content: '';
  position: absolute;
  right: -0.5208vw;
  left: -0.5208vw;
  bottom: -.625vw;
  height: 1px;
  background-color: #312828;
  transform: scale(1);
  transition: 0.3s;
}

.lang-item a:hover::after {
  transform: scale(0);
  transition: 0.3s;
}

.main_screen {
  margin-top: 4.0625vw;
  display: flex;
}

.main_screen>div {
  width: 50%;
}

.main_screen_img {
  line-height: 0;
  position: relative;
}

.main_screen_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_screen_content {
  padding: 5.2083vw 7.2917vw;
}

.main_screen_text {
  font-size: 1.6667vw;
  text-transform: uppercase;
  letter-spacing: -0.1042vw;
  font-weight: 200;
  line-height: 1;
}

.main_screen_text p em {
  font-size: .8333vw;
  text-transform: none;
  letter-spacing: 0.23px;
  display: block;
}

a.main_screen_btn {
  margin-top: 2.5vw;
  display: block;
  width: fit-content;
  padding: 1.0417vw 2.5vw;
  letter-spacing: .1563vw;
  font-size: .8333vw;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  border: 1px solid #312828;
  transition: 0.2s;
}

a.main_screen_btn:hover {
  background-color: #5D7F5E;
  border-color: transparent;
  color: #fff;
  transition: 0.2s;
}

.about {
  padding-top: 4.6875vw;
}

.about h2 em,
.strategies h2 em {
  text-transform: none;
}

.about_list {
  list-style: none;
  padding: 0;
  margin: 4.6875vw 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8.3333vw;
}

.about_item {
  width: calc(50% - 4.17vw);
  padding: 1.25vw;
  border-bottom: 1px solid #312828;
  display: flex;
  align-items: center;
}

.about_item:nth-child(1),
.about_item:nth-child(2) {
  border-top: 1px solid #312828;
}

.strategies {
  margin-top: 9.375vw;
}

.strategies h2 em {
  display: block;
}

.strategies_descr {
  margin-top: 1.5625vw;
  text-align: center;
}

.strategies_text {
  text-align: center;
  display: block;
  font-family: 'Bona Nova SC';
}

.strategies_logo {
  text-align: center;
  margin-top: 2.6042vw;
  line-height: 0;
}

.strategies_logo img {
  width: 8.125vw;
}

.gallery_list {
  margin-top: 2.6042vw;
}

ul.swiper-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
}

li.gallery_item {
  line-height: 0;
}

li.gallery_item img {
  width: 100%;
  height: 26.0417vw;
  object-fit: cover;
}

.benefit {
  margin-top: 4.6875vw;
}

.benefit_list {
  list-style: none;
  padding: 0;
  margin: 3.6458vw 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25vw 8.3333vw;
}

.benefit_item {
  width: calc(50% - 4.17vw);
}

.benefit_item h3 {
  text-transform: none;
  font-style: italic;
}

.benefit_item_descr {
  margin-top: 1.5625vw;
}

a.all_btn {
  font-size: .8333vw;
  font-weight: 400;
  line-height: 1.2;
  padding: 1.0417vw 2.5vw;
  letter-spacing: .1563vw;
  background-color: #5D7F5E;
  color: #fff;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}

a.all_btn:hover {
  background-color: #81A482;
  transition: 0.3s;
}

.benefit_btn {
  margin-top: 3.6458vw;
}

.format {
  margin-top: 5.9375vw;
  padding-top: 4.6875vw;
  border-top: 1px solid #312828;
}

.format_list {
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}

.format_list>h3 {
  text-align: center;
  margin-top: 2.5vw;
  color: #5D7F5E;
  font-style: italic;
  text-transform: none;
}

.format_box_list {
  list-style: none;
  padding: 0;
  margin: 1.25vw 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10.4167vw;
}

.format_item {
  width: calc(33.33333% - 6.95vw);
}

.format_item_img {
  line-height: 0;
}

.format_item_img img {
  width: 100%;
  height: 15.1563vw;
  object-fit: cover;
}

.format_item h3 {
  font-family: 'Inter';
  font-size: 1.5625vw;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.25vw;
}

.format_item_descr {
  font-size: 1.0938vw;
  line-height: 1.2;
  margin-top: 1.25vw;
  text-align: center;
}

.manifestation {
  margin-top: 7.1875vw;
}

.manifestation h2 {
  font-size: 2.5vw;
}

.manifestation_descr {
  text-align: center;
  margin-top: 1.5625vw;
}

.manifestation_content {
  margin-top: 4.6875vw;
  padding: 9.375vw 0;
  position: relative;
  z-index: 5;
}

.manifestation_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifestation_text {
  position: relative;
  text-align: center;
  font-size: 2.5vw;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: -0.1563vw;
  color: #F5F4EE;
}

.contacts {
  padding: 5.6771vw 0;
  position: relative;
}

.contacts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #312828;
}

.contacts_box {
  display: flex;
  gap: 13.5417vw;
}

.contacts_img {
  width: 50%;
  position: relative;
  line-height: 0;
}

.contacts_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts_content {
  width: 50%;
  margin-bottom: 5.2083vw;
}

.contacts_content h2 {
  text-align: left;
  font-size: 2.0313vw;
  font-style: italic;
  letter-spacing: -0.1563vw;
}

.contacts_descr {
  margin-top: 1.25vw;
}

.fields_box {
  margin-top: 2.5vw;
  display: flex;
  flex-direction: column;
  gap: 1.0417vw;
}

.fields_box label {
  display: flex;
  flex-direction: column;
  font-size: .7292vw;
}

.fields_box input {
  width: 100%;
  height: 1.4063vw;
  background-color: transparent;
  border-bottom: 1px solid #312828;
}

.fields_box textarea {
  width: 100%;
  height: 5.2083vw;
  background-color: transparent;
  border-bottom: 1px solid #312828;
  resize: none;
}

.submit_box {
  margin-top: 2.5vw;
  display: flex;
  align-items: center;
}

.submit_box input {
  background-color: #5D7F5E;
  color: #fff;
  font-size: .8333vw;
  text-transform: uppercase;
  letter-spacing: .1563vw;
  padding: 1.0417vw 2.5vw;
  cursor: pointer;
  transition: 0.3s;
}

.submit_box input:hover {
  background-color: #81A482;
  transition: 0.3s;
}

.wpcf7-spinner {
  width: 1.25vw;
  height: 1.25vw;
  margin: 0 1.25vw;
}

.wpcf7-spinner::before {
  top: .2083vw;
  left: .2083vw;
  width: .3125vw;
  height: .3125vw;
  transform-origin: .4167vw .4167vw;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  margin: 2.5vw 0 0;
  padding: 0;
  border: 0;
  color: #5D7F5E;
  font-family: 'Bona Nova SC';
}

.main_footer {
  background-color: #E3D8CA;
  padding-top: 2.5vw;
  border-top: 1px solid #312828;
}

.main_footer .logo_box {
  flex-direction: column;
  gap: 1.25vw;
}

.main_footer .logo img {
  width: 7.6042vw;
}

.main_footer .socials {
  justify-content: center;
  margin-top: 3.125vw;
}

.copyright {
  font-size: .625vw;
  padding: .5208vw 0;
  border-top: 1px solid #312828;
  text-align: center;
  margin-top: 1.8229vw;
  font-weight: 400;
}

.header_mob,
.main_menu_mob_popup {
  display: none;
}

.no_scroll {
  overflow: hidden;
}

.wpcf7-form.sent .submit_box input {
  pointer-events: none;
}

@media(max-width:768px) {
  body {
    font-size: 4.6154vw;
    line-height: 1.3;
  }

  .container {
    max-width: 100%;
    padding: 0 4.1026vw;
  }

  .header_pc {
    display: none;
  }

  .header_mob {
    display: block;
    background-color: #F6F0E8;
    border-bottom: 1px solid #312828;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .header_mob_box {
    padding: 3.3333vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img {
    width: 13.8462vw;
  }

  .burger {
    line-height: 0;
    position: relative;
    width: 6.9231vw;
    height: 6.9231vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .burger img {
    position: absolute;
    transition: 0.3s;
  }

  .burger img:first-child {
    width: 6.1538vw;
    visibility: visible;
    opacity: 1;
  }

  .burger img:last-child {
    width: 6.9231vw;
    visibility: hidden;
    opacity: 0;
  }

  .burger.active img:first-child {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }

  .burger.active img:last-child {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
  }

  .main_menu_mob_popup {
    display: none;
    position: fixed;
    top: 16.1538vw;
    left: 0;
    width: 100%;
    height: calc(100% - 16.1538vw);
    background-color: #F6F0E8;
    padding-top: 12.8205vw;
    overflow-y: auto;
    z-index: 998;
  }

  .main_menu_mob ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12.3077vw;
    font-family: 'Bona Nova SC';
    font-weight: 400;
    text-transform: uppercase;
    font-size: 6.1538vw;
  }

  .main_menu_mob_bottom {
    margin-top: 12.8205vw;
  }

  .lang-item a {
    font-size: 4.6154vw;
  }

  .lang_switcher {
    display: flex;
    justify-content: center;
  }

  .lang-item a::after {
    right: -2.5641vw;
    bottom: -2.5641vw;
    left: -2.5641vw;
  }

  .main_menu_mob_bottom .socials {
    margin-top: 17.9487vw;
  }

  .socials {
    justify-content: center;
    gap: 7.6923vw;
  }

  .social_item img {
    width: 8.7179vw;
  }

  a.all_btn {
    width: 100%;
    padding: 5.1282vw 0;
    font-size: 4.1026vw;
    letter-spacing: .7692vw;
    text-align: center;
  }

  .main_menu_mob_btn {
    margin-top: 17.9487vw;
  }

  .main_screen {
    margin-top: 24.8718vw;
    flex-direction: column;
    gap: 8.9744vw;
    padding: 0 4.1026vw;
  }

  .main_screen>div {
    width: 100%;
  }

  .main_screen_img img {
    position: unset;
    height: auto;
    object-fit: unset;
  }

  .main_screen_content {
    padding: 0;
  }

  .main_screen_text {
    font-size: 5.3846vw;
    letter-spacing: -.5128vw;
  }

  h1,
  h2 {
    font-size: 12.3077vw;
  }

  h2 {
    letter-spacing: -1.2744vw;
    line-height: 1;
  }

  h3 {
    font-size: 9.2308vw;
    letter-spacing: -0.7692vw;
  }

  .main_screen_text p em {
    font-size: 4.1026vw;
  }

  .main_screen_text p em br {
    display: none;
  }

  a.main_screen_btn {
    margin-top: 9.2308vw;
    width: 100%;
    padding: 5.1282vw 0;
    letter-spacing: .7692vw;
    font-size: 4.1026vw;
    text-align: center;
  }

  .about {
    padding-top: 21.5385vw;
  }

  .about_list {
    margin-top: 9.2308vw;
  }

  .about_item {
    width: 100%;
    padding: 3.0769vw 6.1538vw;
  }

  .about_item:nth-child(2) {
    border-top: 0;
  }

  .strategies {
    margin-top: 23.0769vw;
  }

  .strategies_descr {
    margin-top: 7.6923vw;
  }

  .strategies_text {
    font-size: 6.1538vw;
  }

  .strategies_logo {
    margin-top: 7.6923vw;
  }

  .strategies_logo img {
    width: 24.1026vw;
  }

  .gallery_list {
    margin-top: 12.3077vw;
  }

  li.gallery_item img {
    height: 96.1538vw;
  }

  .benefit {
    margin-top: 23.0769vw;
  }

  .benefit_list {
    margin-top: 12.3077vw;
    gap: 6.1538vw;
  }

  .benefit_item {
    width: 100%;
  }

  .benefit_item_descr {
    margin-top: 3.0769vw;
  }

  .benefit_btn {
    margin-top: 12.3077vw;
  }

  .format {
    margin-top: 17.9487vw;
    padding-top: 17.9487vw;
  }

  .format_list>h3 {
    margin-top: 6.1538vw;
  }

  .format_list {
    gap: 6.1538vw;
  }

  .format_box_list {
    margin-top: 6.1538vw;
    gap: 12.3077vw;
  }

  .format_item {
    width: 100%;
  }

  .format_item_img img {
    height: 64.1026vw;
  }

  .format_item h3 {
    font-size: 7.6923vw;
    margin-top: 6.1538vw;
  }

  .format_item_descr {
    font-size: 5.3846vw;
    margin-top: 6.1538vw;
  }

  .manifestation {
    margin-top: 24.6154vw;
  }

  .manifestation h2 {
    font-size: 9.2308vw;
  }

  .manifestation_descr {
    margin-top: 7.6923vw;
  }

  .manifestation_content {
    margin-top: 12.3077vw;
    padding: 19.2308vw 0;
    display: flex;
    align-items: flex-end;
    min-height: 124.1026vw;
  }

  .manifestation_img {
    object-position: left;
  }

  .manifestation_text {
    font-size: 6.1538vw;
    letter-spacing: -1px;
  }

  .manifestation_text br {
    display: none;
  }

  .contacts {
    padding-top: 17.9487vw;
  }

  .contacts::before {
    display: none;
  }

  .contacts_box {
    flex-direction: column;
    gap: 12.3077vw;
  }

  .contacts_box>div {
    width: 100%;
  }

  .contacts_img img {
    position: unset;
    height: auto;
    object-fit: unset;
  }

  .contacts_content {
    margin-bottom: 0;
  }

  .contacts_content h2 {
    font-size: 12.3077vw;
    letter-spacing: -0.7692vw;
  }

  .contacts_descr {
    margin-top: 6.1538vw;
  }

  .contacts_descr br {
    display: none;
  }

  .fields_box {
    margin-top: 12.3077vw;
    gap: 5.1282vw;
  }

  .fields_box label {
    font-size: 3.5897vw;
  }

  .fields_box input {
    height: 6.9231vw;
  }

  .fields_box textarea {
    height: 25.641vw;
  }

  .submit_box {
    margin-top: 12.3077vw;
    position: relative;
  }

  .submit_box input {
    font-size: 4.1026vw;
    letter-spacing: .7692vw;
    width: 100%;
    padding: 5.1282vw 0;
  }

  .wpcf7-spinner {
    width: 6.1538vw;
    height: 6.1538vw;
    margin: 0 6.1538vw;
    position: absolute;
    right: 0;
  }

  .wpcf7-spinner::before {
    top: 1.0256vw;
    left: 1.0256vw;
    width: 1.5385vw;
    height: 1.5385vw;
    transform-origin: 2.0513vw 2.0513vw;
  }

  .wpcf7 form.sent .wpcf7-response-output {
    margin-top: 5.1282vw;
  }

  .main_footer {
    margin-top: 12.3077vw;
    border-top: 0;
    padding-top: 12.3077vw;
  }

  .main_footer .logo_box {
    gap: 6.1538vw;
  }

  .main_footer .logo img {
    width: 22.5641vw;
  }

  .logo_text {
    font-size: 6.1538vw;
  }

  .main_footer .socials {
    margin-top: 12.3077vw;
  }

  .copyright {
    margin-top: 12.3077vw;
    font-size: 3.0769vw;
    padding: 2.5641vw 4.1026vw;
  }


}