@font-face {
  font-display: swap;
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.woff2");
}
@font-face {
  font-display: swap;
  font-family: "Steelfish";
  src: url("../fonts/Steelfish-Bold.woff2");
}
:root {
  --black: #231F20;
  --grey: #3A3737;
  --white: #fff;
  --light: #FAF6F2;
  --red: #C4331F;
  --ohra: #BEAC8C;
  --light-ohra: #F3EDE3;
  --light-grey: #939595;
  --medium-grey: #585B5C;
  --dark-grey: #19322E;
  --dark-green: #2F534D;
  --font-family-1: "Inter", Arial, sans-serif;
  --font-family-2: "Steelfish", Arial, sans-serif;
  --radius: 16px;
  --radius40: 40px;
  --common-gap: 20px;
  --padding: 30px;
  --padding40: 40px;
  --block-padding: 100px;
}

@media (max-width: 991px) {
  :root {
    /*--common-gap: 16px;	
    --padding: 24px;
    --block-padding: 80px;*/
  }
}
@media (max-width: 767px) {
  :root {
    --radius40: 16px;
    --common-gap: 16px;
    --padding: 16px;
    --padding40: 16px;
    --block-padding: 48px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1360px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }
  .container .row {
    margin-right: -12px;
    margin-left: -12px;
  }
  .container .row .col-12 {
    padding-right: 12px;
    padding-left: 12px;
  }
}
header, nav, menu, main, section, article, aside, address, footer, noscript {
  display: block;
}

p, ul, ol, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration: underline;
}
a:hover {
  color: inherit;
}
a:active, a:hover, a:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  font-style: normal;
  color: var(--grey);
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .h1 span, .h2 span, .h3 span {
  font-style: italic;
}

h1, .h1 {
  font-family: var(--font-family-2);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 72px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 42px;
  }
}

h2, .h2 {
  font-family: var(--font-family-2);
  text-align: center;
  font-size: 80px;
  font-weight: 700;
  line-height: 88px;
}
h2 span, .h2 span {
  font-style: italic;
}
@media (max-width: 1199px) {
  h2, .h2 {
    font-size: 72px;
  }
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 40px;
    line-height: 120%;
  }
}

h3, .h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}

button,
.btn {
  border: none;
  outline: none;
  display: inline-block;
  color: var(--black);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding: 29px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  text-decoration: none;
  border-radius: 100px;
  background: linear-gradient(90deg, #BEAC8C 0%, #FFD451 77.88%, #BEAC8C 100%);
}
button:focus,
.btn:focus {
  outline: none;
}
@media (max-width: 991px) {
  button,
  .btn {
    font-size: 22px;
    padding: 21px 35px;
  }
}
@media (max-width: 767px) {
  button,
  .btn {
    padding: 20px;
    font-size: 16px;
  }
}

button.type2,
.btn.type2 {
  background: var(--white);
}
.swiper-horizontal {
  position: relative;
  height: 100%;
}

html {
  height: 100%;
  width: 100%;
  /*scroll-behavior: auto !important;	*/
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  height: 100%;
  width: 100%;
  background: var(--grey-bg);
  font-family: var(--font-family-1);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  color: var(--medium-grey);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-synthesis: none !important;
}

body.mm_active {
  overflow: hidden;
}

main > section {
  margin-bottom: var(--block-padding);
}

.common_header {
  margin: 0 auto 40px;
}
@media (max-width: 991px) {
  .common_header {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .common_header {
    margin-bottom: 32px;
  }
}

.common_header_text {
  color: var(--light-grey);
  margin: 24px auto 0;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 991px) {
  .common_header_text {
    font-size: 18px;
    /*margin-top: 16px;*/
  }
}
@media (max-width: 767px) {
  .common_header_text {
    margin-top: 12px;
    font-size: 16px;
  }
}

.common_footer {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .common_footer {
    margin-top: 24px;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal .form_wrapper {
  flex-wrap: wrap;
}

.form_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
@media (max-width: 767px) {
  .form_wrapper {
    flex-direction: column;
  }
}
.form_wrapper label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .form_wrapper label {
    gap: 8px;
  }
}
.form_wrapper label input[type=checkbox] {
  width: 17px;
  height: 17px;
  border-color: var(--white);
  border-radius: 5px;
  margin-top: 2px;
}
.form_wrapper label span {
  color: var(--grey);
  font-size: 14px;
  line-height: 140%;
  text-align: left;
}
@media (max-width: 767px) {
  .form_wrapper label span {
    font-size: 12px;
    line-height: 130%;
  }
}
.form_wrapper label span a {
  color: var(--grey);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.form_wrapper label span a:hover {
  text-decoration: none;
}

.form_row {
  width: 100%;
  position: relative;
}
.form_row_hint {
  position: absolute;
  left: 24px;
  top: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--light-grey);
}
@media (max-width: 991px) {
  .form_row_hint {
    left: 31px;
    top: 1px;
    font-size: 14px;
  }
}

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

textarea,
input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  padding: 35px 18px 16px 24px;
  border: 1px solid var(--medium-grey);
  outline: none;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
}
@media (max-width: 991px) {
  textarea,
  input[type=text],
  input[type=tel],
  input[type=email] {
    padding: 28px 25px 9px 31px;
    font-size: 16px;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  textarea,
  input[type=text],
  input[type=tel],
  input[type=email] {
    padding: 24px 25px 8px 31px;
    font-weight: 600;
  }
}

input[type=submit].btn {
  padding: 29px 25px;
  width: 100%;
}
@media (max-width: 991px) {
  input[type=submit].btn {
    padding: 21px;
  }
}

textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder {
  color: var(--white);
  opacity: 0.6;
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder {
  color: var(--white);
  opacity: 0.6;
}

.new_form_agreement {
  margin-top: 8px;
}

.modal .new_form_agreement {
  margin-top: 12px;
}

label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
label input {
  margin-top: 4px;
}
label span {
  color: var(--light-grey);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 767px) {
  label span {
    font-size: 12px;
  }
}
label span a {
  color: var(--light-grey);
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
  top: auto;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  padding: 0;
  width: 100%;
  gap: 16px;
  position: relative;
}
.swiper-pagination.swiper-pagination-bullets:not(:has(.swiper-pagination-bullet:only-child)) {
  height: 16px;
}
@media (max-width: 1199px) {
  .swiper-pagination {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination {
    gap: 8px;
    height: 12px;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #5E5E5E;
  opacity: 0.3;
  margin: 0;
}
@media (max-width: 767px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  /*background: url('../img/bullet_active.svg') center no-repeat;*/
  background-size: contain;
  width: 16px;
  height: 16px;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  /*opacity: 1;
  position: static;*/
  width: 100px;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 64px;
    height: 64px;
  }
}

.swiper-button-prev {
  left: calc(33.333333% - var(--common-gap) - 8px);
  /*background-image: url('../img/round_arrow_prev.svg');*/
}
@media (max-width: 991px) {
  .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 0;
  }
}

.swiper-button-next {
  right: calc(33.333333% - var(--common-gap) - 8px);
  /*background-image: url('../img/round_arrow_next.svg');*/
}
@media (max-width: 991px) {
  .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: 0;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 767px) {
  .visible-xs {
    display: flex;
  }
}

header {
  position: fixed;
  top: 8px;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1;
}
.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--light);
  padding: 8px;
  border-radius: 40px;
  box-shadow: 0 0 40px 0 rgba(88, 91, 92, 0.25);
}
.hw_logo img {
  width: 178px;
}
@media (max-width: 767px) {
  .hw_logo img {
    width: 160px;
  }
}
.hw_shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mm_close {
  display: none;
}
@media (max-width: 1399px) {
  .mm_close {
    display: block;
    width: 32px;
    height: 32px;
    background: url("../img/close_sign.svg") center no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1399px) {
  .mm_active .hw_menu {
    right: 0;
    opacity: 1;
    pointer-events: all;
  }
}

.hw_menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 1399px) {
  .hw_menu {
    /*display: none;*/
    position: fixed;
    right: -50%;
    top: 0;
    height: 100%;
    width: 50%;
    padding: 24px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.25);
    background: var(--white);
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.2s ease-in-out, right 0.2s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .hw_menu {
    right: -66.666666%;
    top: 0;
    height: 100%;
    width: 66.666666%;
  }
}
.hw_menu ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1399px) {
  .hw_menu ul {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .hw_menu ul {
    gap: 16px;
  }
}
.hw_menu ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}
.hw_menu ul li a {
  color: var(--black);
  text-decoration-line: underline;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .hw_menu ul li a {
    /*color: var(--black);*/
  }
}
.hw_menu ul li a:hover {
  text-decoration: none;
}

.hw_buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 4px;
}
@media (max-width: 767px) {
  .hw_buttons {
    gap: 8px;
  }
}

.mm_trigger {
  display: none;
}
@media (max-width: 1399px) {
  .mm_trigger {
    margin-right: 4px;
    display: flex;
    flex-direction: column;
    width: 32px;
    height: 24px;
    justify-content: space-between;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .mm_trigger {
    width: 28px;
    height: 20px;
  }
}
.mm_trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--grey);
}

.thanks_page .page_wrapper {
  height: 100%;
}

.page_area {
  position: relative;
  z-index: 1;
}

main {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.ap_1 {
  margin-top: 88px;
}

.ap1_wrapper {
  border-radius: var(--radius40);
  padding: var(--padding40);
  background: var(--dark-grey);
}
@media (max-width: 991px) {
  .ap1_wrapper {
    padding: 22px 24px 46px;
  }
}
@media (max-width: 767px) {
  .ap1_wrapper {
    padding: var(--padding);
  }
}

.ap1w_top {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .ap1w_top {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .ap1w_top {
    gap: var(--common-gap);
  }
}

.ap1wt_logo img {
  max-width: 178px;
}
@media (max-width: 767px) {
  .ap1wt_logo img {
    max-width: 150px;
  }
}

.ap1wt_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
@media (max-width: 767px) {
  .ap1wt_data {
    flex-direction: column;
  }
}

.ap1wtd_text {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  padding: 10px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
@media (max-width: 991px) {
  .ap1wtd_text {
    font-size: 14px;
    padding: 10px 8px;
  }
}

@media (max-width: 767px) {
  .ap1wtd_link,
  .ap1wtd_phone {
    width: 100%;
  }
}
.ap1wtd_link a,
.ap1wtd_phone a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
  line-height: 140%;
  border-radius: 60px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .ap1wtd_link a span,
  .ap1wtd_phone a span {
    display: none;
  }
}
@media (max-width: 991px) {
  .ap1wtd_link a,
  .ap1wtd_phone a {
    font-size: 14px;
    padding: 10px 18px;
  }
}
@media (max-width: 767px) {
  .ap1wtd_link a,
  .ap1wtd_phone a {
    padding: 10px;
  }
}
.ap1wtd_link a:after,
.ap1wtd_phone a:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.ap1wtd_link.hidden-lg,
.ap1wtd_phone.hidden-lg {
  display: none;
}
@media (max-width: 1399px) {
  .ap1wtd_link.hidden-lg,
  .ap1wtd_phone.hidden-lg {
    display: block;
  }
  .ap1wtd_link.hidden-lg span,
  .ap1wtd_phone.hidden-lg span {
    display: block;
  }
}

.ap1wtd_link a:after {
  background-image: url("../img/arrow-up-right.svg");
}

.ap1wtd_phone a:after {
  background-image: url("../img/phone-call.svg");
}

.ap1w_header {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .ap1w_header {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .ap1w_header {
    margin-top: 8px;
    margin-bottom: 16px;
  }
}
.ap1w_header h1 {
  color: var(--white);
  text-align: center;
}

.ap1w_text {
  margin: 0 auto 36px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  max-width: 750px;
  color: var(--light-grey);
}
@media (max-width: 991px) {
  .ap1w_text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .ap1w_text {
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 24px;
  }
}

.ap1w_features {
  margin-bottom: 42px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
@media (max-width: 991px) {
  .ap1w_features {
    justify-content: space-between;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .ap1w_features {
    flex-direction: column;
    margin-bottom: 24px;
  }
}

.ap1wf_block {
  width: 24.4%;
  border: 1px solid var(--medium-grey);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.ap1wf_block:nth-child(2) {
  width: 28.9%;
}
@media (max-width: 991px) {
  .ap1wf_block:nth-child(2) {
    width: 33.333333%;
  }
}
@media (max-width: 767px) {
  .ap1wf_block:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .ap1wf_block {
    width: 33.333333%;
  }
}
@media (max-width: 767px) {
  .ap1wf_block {
    width: 100%;
  }
}

.ap1wfb_img img {
  max-height: 32px;
}

.ap1wfb_caption {
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  color: var(--ohra);
}
@media (max-width: 991px) {
  .ap1wfb_caption {
    font-size: 16px;
    line-height: 20px;
  }
}

.ap1wfb_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap1wfb_text {
    font-size: 16px;
    line-height: 22px;
  }
}

.ap1w_buttons {
  display: flex;
  align-items: center;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .ap1w_buttons {
    gap: 8px;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .ap1w_buttons {
    flex-direction: column;
  }
}
.ap1w_buttons > * {
  width: 50%;
}
@media (max-width: 991px) {
  .ap1w_buttons > * {
    width: auto;
    flex-grow: 1;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .ap1w_buttons > * {
    width: 100%;
  }
}

.ap_2 .common_header {
  max-width: 810px;
}

.ap2w_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--common-gap);
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .ap2w_block {
    grid-gap: 16px;
  }
}
@media (max-width: 767px) {
  .ap2w_block {
    grid-template-columns: 1fr;
  }
}

.ap2wb_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--common-gap);
  padding: var(--padding);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
}

.ap2wbbt_img {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .ap2wbbt_img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
}
.ap2wbbt_img img {
  max-width: 48px;
}
@media (max-width: 767px) {
  .ap2wbbt_img img {
    max-width: 32px;
  }
}

.ap2wbbt_caption {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 20px;
  color: var(--grey);
}
@media (max-width: 767px) {
  .ap2wbbt_caption {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.ap2wbbt_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--light-grey);
}
@media (max-width: 991px) {
  .ap2wbbt_text {
    font-size: 16px;
  }
}

.ap2wbb_bottom {
  display: flex;
  gap: 12px;
  border-radius: var(--radius);
  padding: 4px 16px;
  background: var(--light);
}
.ap2wbb_bottom > * {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 991px) {
  .ap2wbb_bottom > * {
    font-size: 16px;
  }
}
.ap2wbb_bottom > *:first-child {
  color: var(--grey);
  flex-shrink: 0;
}
.ap2wbb_bottom > *:last-child {
  color: var(--red);
}

.ap2w_block_2 {
  padding: var(--padding40);
  border-radius: var(--radius);
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ap2wb2_header {
  font-weight: 600;
  font-size: 44px;
  line-height: 120%;
  color: var(--grey);
}
@media (max-width: 991px) {
  .ap2wb2_header {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ap2wb2_header {
    font-size: 20px;
  }
}

.ap2wb2_blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 56px;
}
@media (max-width: 991px) {
  .ap2wb2_blocks {
    grid-gap: 32px;
  }
}
@media (max-width: 767px) {
  .ap2wb2_blocks {
    grid-template-columns: 1fr;
  }
}

.ap2wb2b_box {
  position: relative;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 4px;
}
@media (max-width: 991px) {
  .ap2wb2b_box {
    padding: 16px;
  }
}
.ap2wb2b_box:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: -52px;
}
@media (max-width: 991px) {
  .ap2wb2b_box:after {
    width: 24px;
    height: 24px;
    right: -28px;
  }
}
@media (max-width: 767px) {
  .ap2wb2b_box:after {
    top: auto;
    bottom: -28px;
    transform: translateX(50%);
    right: 50%;
  }
}
.ap2wb2b_box:nth-child(1):after {
  background-image: url("../img/block_2_1.svg");
}
.ap2wb2b_box:nth-child(2):after {
  background-image: url("../img/block_2_2.svg");
}
.ap2wb2b_box:nth-child(3):after {
  background-image: url("../img/block_2_3.svg");
}
.ap2wb2b_box:last-child:after {
  display: none;
}

.ap2wb2bb_caption {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 72px;
  line-height: 80px;
  margin-bottom: 8px;
  color: var(--red);
}
@media (max-width: 991px) {
  .ap2wb2bb_caption {
    font-size: 32px;
    line-height: 40px;
  }
}

.ap2wb2bb_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--grey);
}
@media (max-width: 991px) {
  .ap2wb2bb_text {
    font-size: 16px;
  }
}

.ap2wb2_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
@media (max-width: 1399px) {
  .ap2wb2_data {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.ap2wb2d_box {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--red);
  padding: 0 12px 4px;
  background: var(--white);
  border-radius: var(--radius);
  white-space: nowrap;
}
@media (max-width: 991px) {
  .ap2wb2d_box {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ap2wb2d_box {
    white-space: normal;
    width: 100%;
  }
}
.ap2wb2d_box span {
  font-weight: 900;
}
.ap2wb2d_box:first-child {
  color: var(--grey);
  flex-shrink: 0;
  background: transparent;
  padding: 0;
}
.ap2wb2d_box:last-child {
  display: flex;
  gap: 12px;
}
.ap2wb2d_box:last-child:after {
  content: "";
  display: block;
  width: 79px;
  height: 27px;
  background: url("../img/falling_stars.svg") center no-repeat;
  background-size: contain;
}

.ap2wb2_button > * {
  width: 100%;
}

.ap_3 .common_header h2 {
  color: var(--ohra);
}
.ap_3 .common_header .common_header_text {
  max-width: 780px;
}

.ap3_wrapper {
  padding: var(--padding40);
  border-radius: var(--radius40);
  background: var(--dark-grey);
}

.ap3w_top {
  display: flex;
  justify-content: center;
  gap: 6.95%;
  padding: 95px 0;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .ap3w_top {
    flex-direction: column;
    align-items: center;
    gap: 110px;
  }
}
@media (max-width: 767px) {
  .ap3w_top {
    gap: 32px;
    padding: 24px 0;
  }
}

.ap3wt_box {
  width: 23.6%;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .ap3wt_box {
    width: 100%;
    max-width: 302px;
  }
}
@media (max-width: 767px) {
  .ap3wt_box {
    max-width: 256px;
  }
}
.ap3wt_box > * {
  position: relative;
  z-index: 1;
}
.ap3wt_box:after {
  content: "";
  position: absolute;
  left: -89px;
  top: -89px;
  width: calc(100% + 178px);
  height: calc(100% + 178px);
  border: 1px solid var(--medium-grey);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(47, 83, 77) 0%, rgba(0, 0, 0, 0) 70%);
}
@media (max-width: 767px) {
  .ap3wt_box:after {
    left: -32px;
    top: -32px;
    width: calc(100% + 64px);
    height: calc(100% + 64px);
  }
}

.ap3wtb_img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}
@media (max-width: 767px) {
  .ap3wtb_img {
    padding: 16px;
  }
}
.ap3wtb_img img {
  max-height: 48px;
}
@media (max-width: 767px) {
  .ap3wtb_img img {
    max-height: 32px;
  }
}

.ap3wtb_caption {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--ohra);
}
@media (max-width: 991px) {
  .ap3wtb_caption {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ap3wtb_caption {
    font-size: 18px;
  }
}

.ap3wtb_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap3wtb_text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ap3wtb_text {
    font-size: 14px;
  }
}

.ap3w_bottom {
  margin-bottom: 43px;
  position: relative;
  padding: 38px var(--padding) var(--padding);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ap3wb_elem {
  position: absolute;
  left: var(--padding);
  top: -23px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--ohra);
  padding: 10px 46px;
  border-radius: var(--radius40);
  background: var(--light);
}

.ap3wb_top {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--grey);
}
@media (max-width: 767px) {
  .ap3wb_top {
    font-size: 24px;
  }
}

.ap3wb_center {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media (max-width: 991px) {
  .ap3wb_center {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .ap3wb_center {
    gap: var(--common-gap);
    flex-direction: column;
  }
}
.ap3wb_center > * {
  width: 50%;
}
@media (max-width: 767px) {
  .ap3wb_center > * {
    width: 100%;
  }
}

.ap3wbc_left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ap3wbc_left .ap3wbc_cell:nth-child(1) .ap3wbcc_header {
  color: var(--red);
}
.ap3wbc_left .ap3wbc_cell:nth-child(2) .ap3wbcc_header {
  color: #2E7B6E;
}

.ap3wbcc_header {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .ap3wbcc_header {
    font-size: 18px;
  }
}

.ap3wbcc_data p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--medium-grey);
}

.ap3wbc_right .ap3wbc_cell .ap3wbcc_header {
  color: var(--ohra);
}

.ap3wbccd_list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .ap3wbccd_list ul {
    margin-top: 12px;
  }
}
.ap3wbccd_list ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--medium-grey);
  min-height: 24px;
  padding-left: 34px;
  background: url("../img/bullet_check.svg") left top no-repeat;
  background-repeat: 24px auto;
}

.ap3wbccd_info {
  display: flex;
  gap: 4px;
}
@media (max-width: 991px) {
  .ap3wbccd_info {
    flex-direction: column;
  }
}
.ap3wbccd_info > * {
  width: 50%;
}
@media (max-width: 991px) {
  .ap3wbccd_info > * {
    width: 100%;
  }
}

.ap3wbccdi_box {
  border-radius: var(--radius);
  padding: 16px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ap3wbccdib_caption {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: var(--ohra);
}

.ap3wbccdib_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--ohra);
}

.ap3wbb_block {
  border-left: 4px solid var(--ohra);
  padding: 56px 16px 16px;
  border-radius: var(--radius);
  background: var(--light) url("../img/quote.svg") 16px 16px no-repeat;
  background-size: 24px auto;
}

.ap3wbbb_quote {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--grey);
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .ap3wbbb_quote {
    font-size: 16px;
  }
}

.ap3wbbb_info {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--light-grey);
}
@media (max-width: 991px) {
  .ap3wbbb_info {
    font-size: 14px;
  }
}
.ap3wbbb_info span {
  font-weight: 700;
  color: var(--grey);
}

.ap_4 .common_header {
  margin-bottom: 24px;
}
.ap_4 .common_header h2 {
  text-align: left;
}
.ap_4 .common_header .common_header_text {
  text-align: left;
}
.ap_4 .common_body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ap_4 .common_body ul li {
  min-height: 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  padding-left: 30px;
  background: url("../img/double_check.svg") left top no-repeat;
  background-size: 24px auto;
  color: var(--light-grey);
}
@media (max-width: 767px) {
  .ap_4 .common_body ul li {
    font-size: 16px;
    line-height: 120%;
  }
}
.ap_4 .common_footer {
  margin-top: 24px;
}
.ap_4 .common_footer > * {
  width: 100%;
}

.ap4_wrapper {
  display: flex;
  gap: 38px;
}
@media (max-width: 991px) {
  .ap4_wrapper {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.ap4_wrapper > * {
  width: 50%;
  min-height: 596px;
}
@media (max-width: 991px) {
  .ap4_wrapper > * {
    width: 100%;
    min-height: 1px;
  }
}

.ap4w_right {
  position: relative;
}
.ap4w_right img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--radius40);
}
@media (max-width: 991px) {
  .ap4w_right img {
    position: static;
  }
}

.ap_5 .common_header {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .ap_5 .common_header {
    margin-bottom: 16px;
  }
}

.ap5_wrapper {
  position: relative;
  background: var(--light);
  padding: var(--padding40);
  border-radius: var(--radius);
}
@media (max-width: 767px) {
  .ap5_wrapper {
    padding-top: 48px;
  }
}

.ap5w_element {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -23px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--ohra);
  padding: 10px 20px;
  border-radius: var(--radius40);
  background: #F3EDE3;
}
@media (max-width: 991px) {
  .ap5w_element {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .ap5w_element {
    font-size: 14px;
    white-space: normal;
    width: 95%;
    text-align: center;
  }
}

.ap5w_top {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--grey);
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .ap5w_top {
    font-size: 18px;
  }
}

.ap5w_center {
  display: flex;
  gap: 55px;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 991px) {
  .ap5w_center {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .ap5w_center {
    margin-bottom: 90px;
  }
}
.ap5w_center > * {
  width: 30.46%;
}
@media (max-width: 991px) {
  .ap5w_center > * {
    width: 100%;
    max-width: 480px;
  }
}

.ap5wc_block {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .ap5wc_block {
    margin-bottom: -48px;
  }
}
.ap5wc_block > * {
  position: relative;
  z-index: 1;
}
.ap5wc_block:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--ohra);
  border-radius: 50%;
}
.ap5wc_block:before {
  content: "";
  position: absolute;
  right: -52px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: url("../img/arrow-right.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .ap5wc_block:before {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translate(50%, 0) rotate(90deg);
  }
}
.ap5wc_block:last-child:before {
  display: none;
}

.ap5wcb_img {
  padding: 20px;
  border-radius: 50%;
  background: #F3EDE3;
}
@media (max-width: 767px) {
  .ap5wcb_img {
    padding: var(--padding);
  }
}
.ap5wcb_img img {
  max-width: 48px;
}
@media (max-width: 767px) {
  .ap5wcb_img img {
    max-width: 32px;
  }
}

.ap5wcb_caption {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--ohra);
  max-width: 75%;
}
@media (max-width: 767px) {
  .ap5wcb_caption {
    font-size: 20px;
  }
}

.ap5wcb_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--grey);
  max-width: 75%;
}
@media (max-width: 767px) {
  .ap5wcb_text {
    font-size: 14px;
  }
}

.ap5w_footer {
  display: flex;
  gap: 16px;
  padding: 38px var(--padding) var(--padding);
  border-radius: var(--radius);
  background: var(--dark-grey);
}
@media (max-width: 991px) {
  .ap5w_footer {
    padding: var(--padding);
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .ap5w_footer {
    gap: 24px;
  }
}
.ap5wf_left {
  width: 33.333333%;
}
.ap5wf_left .ap5wf_block {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .ap5wf_left {
    width: 100%;
    align-items: center;
  }
  .ap5wf_left .ap5wfb_tag,
  .ap5wf_left .ap5wfb_name {
    text-align: center;
  }
}

.ap5wf_right {
  width: 66.666666%;
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .ap5wf_right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ap5wf_right {
    gap: 4px;
  }
}

.ap5wf_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
.ap5wf_block:last-child .ap5wfb_header,
.ap5wf_block:last-child .ap5wfbbc_caption {
  color: var(--ohra);
}

@media (max-width: 991px) {
  .ap5wfb_tag {
    margin-bottom: 8px;
  }
}
.ap5wfb_tag span {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  padding: 10px 20px;
  background: var(--dark-green);
  border-radius: var(--radius40);
  color: var(--white);
  display: inline-block;
}
@media (max-width: 767px) {
  .ap5wfb_tag span {
    font-size: 14px;
  }
}

.ap5wfb_name {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap5wfb_name {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (max-width: 767px) {
  .ap5wfb_name {
    font-size: 40px;
    line-height: 120%;
  }
}

.ap5wfb_header {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 8px;
  color: var(--red);
}

.ap5wfb_body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ap5wfbb_cell {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--medium-grey);
  padding: 16px;
}

.ap5wfbbc_caption {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: var(--red);
  margin-bottom: 4px;
}

.ap5wfbbc_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap5wfbbc_text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ap5wfbbc_text {
    font-size: 14px;
  }
}

.ap6_wrapper .common_body {
  display: flex;
}
@media (max-width: 767px) {
  .ap6_wrapper .common_body {
    flex-direction: column;
  }
}
.ap6_wrapper .common_body > * {
  width: 50%;
}
@media (max-width: 767px) {
  .ap6_wrapper .common_body > * {
    width: 100%;
  }
}
.ap6_wrapper .common_footer > * {
  width: 100%;
}

.ap6w_block {
  padding: var(--padding);
  border-radius: var(--radius);
}
.ap6w_block:first-child {
  border: 1px solid var(--light-grey);
}
.ap6w_block:last-child {
  background: var(--light);
}

.ap6wb_header,
.ap7wb_header {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--grey);
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .ap6wb_header,
  .ap7wb_header {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ap6wb_header,
  .ap7wb_header {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.ap6wb_body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ap6wb_body > ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ap6wb_body > ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--grey);
  padding-left: 34px;
  background: url("../img/bullet_check.svg") left top no-repeat;
  background-size: 24px auto;
  min-height: 24px;
}
@media (max-width: 991px) {
  .ap6wb_body > ul li {
    font-size: 16px;
  }
}

.ap6wbb_box,
.ap7wblb_box {
  display: flex;
  gap: 16px;
}

.ap6wbbb_img,
.ap7wblbb_img {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F5EF;
}
@media (max-width: 767px) {
  .ap6wbbb_img,
  .ap7wblbb_img {
    width: 64px;
    height: 64px;
  }
}
.ap6wbbb_img img,
.ap7wblbb_img img {
  width: 48px;
}
@media (max-width: 767px) {
  .ap6wbbb_img img,
  .ap7wblbb_img img {
    width: 32px;
  }
}

.ap6wbbb_data,
.ap7wblbb_data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.ap6wbbbd_caption,
.ap7wblbbd_caption {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  color: var(--ohra);
}
@media (max-width: 991px) {
  .ap6wbbbd_caption,
  .ap7wblbbd_caption {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .ap6wbbbd_caption,
  .ap7wblbbd_caption {
    font-size: 16px;
    line-height: 120%;
  }
}

.ap6wbbbd_text,
.ap7wbbbd_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--grey);
}
@media (max-width: 991px) {
  .ap6wbbbd_text,
  .ap7wbbbd_text {
    font-size: 14px;
    line-height: 20px;
  }
}

.ap_7 .common_header h2 {
  margin: 0 auto;
  max-width: 950px;
}
.ap_7 .common_body {
  display: flex;
  flex-direction: column;
  gap: var(--padding40);
}
.ap_7 .common_footer > * {
  width: 100%;
}

.ap7_wrapper {
  border-radius: var(--radius);
  padding: var(--padding40);
  background: var(--light);
}

.ap7w_block:nth-child(even) .ap7wb_body {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .ap7w_block:nth-child(even) .ap7wb_body {
    flex-direction: column-reverse;
  }
}
.ap7w_block:nth-child(even) .ap7wb_header {
  text-align: right;
}
@media (max-width: 991px) {
  .ap7w_block:nth-child(even) .ap7wb_header {
    text-align: left;
    margin-bottom: 32px;
  }
}
@media (max-width: 991px) {
  .ap7w_block:nth-child(even) .ap7wb_left {
    padding: var(--padding);
  }
}

.ap7wb_body {
  display: flex;
}
@media (max-width: 991px) {
  .ap7wb_body {
    flex-direction: column;
  }
}

.ap7wb_left {
  width: 66.666666%;
  padding: var(--padding);
  border-radius: var(--radius);
  border: 1px solid var(--light-grey);
}
@media (max-width: 991px) {
  .ap7wb_left {
    width: 100%;
    padding: 50px var(--padding);
  }
}
@media (max-width: 767px) {
  .ap7wb_left {
    padding: 16px var(--padding) 40px;
  }
}

.ap7wbl_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100%;
}

.ap7wblbb_img {
  background: #F3EDE3;
}
@media (max-width: 767px) {
  .ap7wblbbd_text {
    font-size: 14px;
    line-height: 120%;
  }
}

.ap7wb_right {
  width: 33.333333%;
  position: relative;
  padding: 38px var(--padding) var(--padding);
  border-radius: var(--radius);
  background: var(--dark-grey);
}
@media (max-width: 991px) {
  .ap7wb_right {
    width: 100%;
  }
}

.ap7wbr_tag {
  position: absolute;
  left: var(--padding);
  top: -23px;
  padding: 10px 20px;
  border-radius: var(--radius40);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
  background: var(--dark-green);
}
@media (max-width: 991px) {
  .ap7wbr_tag {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ap7wbr_tag {
    font-size: 14px;
  }
}

.ap7wbr_data {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ap7wbrd_box {
  border-left: 2px solid var(--dark-green);
  padding-left: 16px;
  border-radius: 8px;
}
.ap7wbrd_box:first-child {
  border-color: var(--red);
}
.ap7wbrd_box:last-child .ap7wbrd_body {
  font-weight: 600;
}

.ap7wbrd_header {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--light-grey);
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .ap7wbrd_header {
    font-size: 14px;
  }
}

.ap7wbrd_body {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap7wbrd_body {
    font-size: 16px;
  }
}

.ap7wbr_footer {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding: 10px 18px;
  border: 1px solid var(--medium-grey);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.ap7wbrf_left {
  padding: 6px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--light-grey);
  background: url("../img/bullet_check.svg") left 32px no-repeat;
  background-size: 24px auto;
}

.ap7wbrfr_header {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: right;
  color: var(--ohra);
  margin-bottom: 4px;
}

.ap7wbrfr_body {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: right;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap7wbrfr_body {
    font-size: 14px;
  }
}

.ap_8 .common_header {
  max-width: 1072px;
}
.ap_8 .common_header h2 {
  color: var(--ohra);
}
.ap_8 .common_body {
  display: flex;
  flex-direction: column;
  gap: var(--padding40);
}

.ap8_wrapper {
  padding: var(--padding40);
  border-radius: var(--radius40);
  background: var(--dark-grey);
}

.ap8w_block_1 {
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .ap8w_block_1 {
    flex-direction: column;
  }
}

.ap8wb1_left {
  width: 58.333333%;
  padding: 24px 18px 24px 24px;
  border: 1px solid var(--medium-grey);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .ap8wb1_left {
    width: 100%;
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .ap8wb1_left {
    flex-direction: column-reverse;
    padding: var(--padding);
  }
}

@media (max-width: 991px) {
  .ap8wb1l_data {
    width: auto;
    flex-grow: 1;
  }
}

.ap8wb1ld_name {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--ohra);
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .ap8wb1ld_name {
    font-size: 28px;
  }
}

.ap8wb1ld_position {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .ap8wb1ld_position {
    font-size: 16px;
  }
}

.ap8wb1ld_list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ap8wb1ld_list ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  padding-left: 30px;
  background: url("../img/double_check.svg") left top no-repeat;
  background-size: 24px auto;
  min-height: 24px;
  color: var(--light-grey);
}
@media (max-width: 991px) {
  .ap8wb1ld_list ul li {
    font-size: 14px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .ap8wb1ld_list ul li {
    font-size: 12px;
    line-height: 16px;
  }
}

.ap8wb1l_person {
  width: 35.39%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
@media (max-width: 991px) {
  .ap8wb1l_person {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 240px;
  }
}
@media (max-width: 767px) {
  .ap8wb1l_person {
    width: 100%;
    /*flex-direction: column;
    align-items: center;*/
  }
}

.ap8wb1lp_photo {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .ap8wb1lp_photo {
    text-align: center;
  }
}
.ap8wb1lp_photo img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767px) {
  .ap8wb1lp_photo img {
    max-width: 200px;
  }
}

.ap8wb1lp_info {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--dark-green);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
@media (max-width: 767px) {
  .ap8wb1lp_info {
    font-size: 14px;
    line-height: 120%;
  }
}
.ap8wb1lp_info span {
  color: var(--light-grey);
}

.ap8wb1_right {
  width: 41.666666%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .ap8wb1_right {
    width: 100%;
  }
}

.ap8wb1r_block {
  border: 1px solid var(--medium-grey);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 16px 18px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
@media (max-width: 767px) {
  .ap8wb1r_block {
    /*align-items: flex-start;
    flex-direction: column-reverse;*/
    padding: var(--padding);
  }
}

.ap8wb1rbd_name {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 4px;
  color: var(--ohra);
}
@media (max-width: 767px) {
  .ap8wb1rbd_name {
    font-size: 16px;
    line-height: 27px;
  }
}

.ap8wb1rbd_position {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
}
@media (max-width: 767px) {
  .ap8wb1rbd_position {
    font-size: 12px;
    line-height: 18px;
  }
}

.ap8wb1rb_img {
  width: 88px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .ap8wb1rb_img {
    margin-bottom: 8px;
  }
}
.ap8wb1rb_img img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.ap8w_block_2 {
  display: flex;
  gap: var(--common-gap);
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .ap8w_block_2 {
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .ap8w_block_2 {
    gap: 24px;
    flex-direction: column;
  }
}

.ap8wb2_left {
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .ap8wb2_left {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .ap8wb2_left {
    flex-direction: column;
    width: 100%;
    gap: var(--common-gap);
  }
}

.ap8wb2l_box {
  width: 32%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 11px;
}
@media (max-width: 991px) {
  .ap8wb2l_box {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    flex-shrink: 1;
  }
}
@media (max-width: 767px) {
  .ap8wb2l_box {
    gap: 0;
  }
}

.ap8wb2l_name {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: var(--ohra);
}
@media (max-width: 991px) {
  .ap8wb2l_name {
    font-size: 64px;
    line-height: 81px;
  }
}
@media (max-width: 767px) {
  .ap8wb2l_name {
    font-size: 48px;
    line-height: 120%;
  }
}

.ap8wb2l_value {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--light-grey);
}
@media (max-width: 991px) {
  .ap8wb2l_value {
    font-size: 14px;
  }
}

.ap8wb2_right {
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .ap8wb2_right {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .ap8wb2_right {
    width: 50%;
  }
}
.ap8wb2_right img {
  width: 100%;
}

.ap8w_block_3 {
  padding: 56px 16px 16px;
  border-left: 4px solid var(--ohra);
  border-radius: var(--radius);
  background: var(--light) url("../img/quote.svg") 16px 16px no-repeat;
  background-size: 24px auto;
}

.ap8wb3_quote {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--grey);
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .ap8wb3_quote {
    font-size: 16px;
  }
}

.ap8wb3_name {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: var(--grey);
}
@media (max-width: 991px) {
  .ap8wb3_name {
    font-size: 14px;
  }
}

.ap_9 .common_footer > * {
  width: 100%;
}

.ap9w_block_1 {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: var(--padding40);
}
@media (max-width: 767px) {
  .ap9w_block_1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4px;
  }
}

.ap9wb1_box {
  width: 25%;
  padding: var(--padding);
  border-radius: var(--radius);
  background: var(--light);
}
@media (max-width: 767px) {
  .ap9wb1_box {
    width: 100%;
  }
}

.ap9wb1b_header {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 72px;
  line-height: 80px;
  color: var(--ohra);
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .ap9wb1b_header {
    font-size: 40px;
    line-height: 1;
  }
}

.ap9wb1b_body {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--grey);
}
@media (max-width: 991px) {
  .ap9wb1b_body {
    font-size: 16px;
  }
}

.ap9w_block_2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 4px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .ap9w_block_2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .ap9w_block_2 {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
  }
}

.ap9wb2_cell {
  height: 135px;
}
@media (max-width: 991px) {
  .ap9wb2_cell {
    height: 100px;
  }
  .ap9wb2_cell:nth-child(9), .ap9wb2_cell:nth-child(10) {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .ap9wb2_cell:nth-child(9), .ap9wb2_cell:nth-child(10) {
    grid-column: span 1;
  }
}
.ap9wb2_cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(147, 149, 149, 0.2);
}

.ap9wb3_header {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--grey);
}
@media (max-width: 991px) {
  .ap9wb3_header {
    font-size: 24px;
  }
}

.ap9wb3_body {
  display: flex;
  gap: var(--padding40);
}
@media (max-width: 991px) {
  .ap9wb3_body {
    flex-direction: column;
  }
}
.ap9wb3_body > * {
  width: 50%;
}
@media (max-width: 991px) {
  .ap9wb3_body > * {
    width: 100%;
  }
}

.ap9wb3_left {
  margin-top: 27px;
}
@media (max-width: 991px) {
  .ap9wb3_left {
    margin-top: 24px;
  }
}
.ap9wb3_left .ap3wbb_block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ap9wb3_right {
  display: flex;
  gap: 16px;
}
.ap9wb3_right > * {
  width: 50%;
}
.ap9wb3_right .ap5wfbb_cell {
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid rgba(147, 149, 149, 0.2);
  padding: 30px;
}
.ap9wb3_right .ap5wfbb_cell .ap5wfbbc_text {
  color: var(--medium-grey);
}

.ap10_wrapper {
  background: var(--light);
  padding: var(--padding40);
  border-radius: var(--radius);
}

.ap10w_block {
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .ap10w_block {
    flex-direction: column;
  }
}
.ap10w_block > * {
  width: 50%;
}
@media (max-width: 991px) {
  .ap10w_block > * {
    width: 100%;
  }
}

.ap10wb_left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ap10wbl_box {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--light-grey);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
@media (max-width: 767px) {
  .ap10wbl_box {
    padding: var(--padding);
    flex-direction: column-reverse;
  }
}

.ap10wblbl_caption {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  color: var(--ohra);
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .ap10wblbl_caption {
    font-size: 16px;
    line-height: 140%;
  }
}

.ap10wblbl_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--grey);
}
@media (max-width: 991px) {
  .ap10wblbl_text {
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 767px) {
  .ap10wblbl_text {
    font-size: 14px;
  }
}

.ap10wblb_right {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #F3EDE3;
}
@media (max-width: 767px) {
  .ap10wblb_right {
    width: 64px;
    height: 64px;
  }
}
.ap10wblb_right img {
  width: 48px;
}
@media (max-width: 767px) {
  .ap10wblb_right img {
    width: 32px;
  }
}

.ap10wb_right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 38px var(--padding) var(--padding);
  border-radius: var(--radius);
  background: var(--dark-grey);
}
@media (max-width: 767px) {
  .ap10wb_right {
    padding: var(--padding);
  }
}

.ap10wbrw_header {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .ap10wbrw_header {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ap10wbrw_header {
    font-size: 20px;
  }
}

.ap10wbrwb_block_1 {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.ap10wbrwb_block_1 > * {
  width: 50%;
}

.ap10wbrwb_block_2 .ap10wbrwbbc_value {
  font-size: 80px;
  line-height: 88px;
}

.ap10wbrwbb_cell {
  padding: 10px 18px;
  border: 1px solid var(--medium-grey);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .ap10wbrwbb_cell {
    padding: 10px 8px;
  }
}

.ap10wbrwbbc_name {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 4px;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap10wbrwbbc_name {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ap10wbrwbbc_name {
    font-size: 14px;
    line-height: 140%;
  }
}

.ap10wbrwbbc_value {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: var(--ohra);
}

.ap10wbrf_block {
  border-left: 2px solid var(--dark-green);
  padding: 0 14px;
  border-radius: 8px;
}

.ap10wbrfb_name {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 4px;
  color: var(--light-grey);
}
@media (max-width: 991px) {
  .ap10wbrfb_name {
    font-size: 14px;
  }
}

.ap10wbrfb_value {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 991px) {
  .ap10wbrfb_value {
    font-size: 16px;
  }
}

.ap_11 {
  margin-bottom: 4px;
}
.ap_11 .common_header {
  margin: 0;
}
.ap_11 .common_header h2 {
  color: var(--ohra);
  text-align: left;
}
@media (max-width: 991px) {
  .ap_11 .common_header h2 {
    text-align: center;
  }
}
.ap_11 .common_header .common_header_text {
  text-align: left;
}
@media (max-width: 991px) {
  .ap_11 .common_header .common_header_text {
    font-size: 16px;
    margin-top: 16px;
    text-align: center;
  }
}

.ap11_wrapper {
  padding: 28px var(--padding40) var(--padding40);
  border-radius: var(--radius40);
  background: var(--dark-grey);
  display: flex;
  gap: var(--padding40);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .ap11_wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.ap11_wrapper:after {
  content: "";
  width: 38%;
  aspect-ratio: 1/1;
  position: absolute;
  left: -2.35%;
  top: -15.88%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(47, 83, 77) 0%, rgba(0, 0, 0, 0) 70%);
}
@media (max-width: 991px) {
  .ap11_wrapper:after {
    width: 75%;
  }
}
.ap11_wrapper > * {
  position: relative;
  z-index: 1;
}

.ap11w_left {
  width: 644px;
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .ap11w_left {
    width: 100%;
  }
}

.ap11w_right {
  flex-grow: 1;
}
.ap11w_right input[type=submit] {
  margin-top: 16px;
}

.ap_12 {
  margin-bottom: 52px;
}
@media (max-width: 991px) {
  .ap_12 {
    margin-bottom: var(--padding40);
  }
}
.ap_12 .common_header {
  margin: 0;
}
.ap_12 .common_header h2 {
  font-family: var(--font-family-1);
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--white);
  text-align: left;
}
.ap_12 .common_header h2 a {
  color: var(--white);
}
.ap_12 .common_header h2 a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .ap_12 .common_header h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ap_12 .common_header h2 {
    font-size: 20px;
  }
}
.ap_12 .common_header .common_header_text {
  font-size: 16px;
  margin-top: 8px;
  text-align: left;
}

.ap12_wrapper {
  padding: var(--padding40);
  border-radius: var(--radius40);
  background: var(--dark-green) url("../img/tg_icon.svg") right 22% bottom 4px no-repeat;
  background-size: auto 100%;
  display: flex;
  gap: var(--padding40);
}
@media (max-width: 1399px) {
  .ap12_wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .ap12_wrapper {
    background-image: none;
  }
}
.ap12w_left {
  width: 644px;
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .ap12w_left {
    width: 100%;
  }
}

.ap12w_right {
  flex-grow: 1;
}

.ap_policy {
  margin-top: 48px;
  margin-bottom: 32px;
}

.app_wrapper {
  margin: 0 auto;
  max-width: 1170px;
}

.appw_block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.appw_block h3 {
  font-family: var(--font-family-2);
  font-size: 40px;
  margin-top: 8px;
  margin-bottom: 2px;
}
.appw_block p {
  line-height: 150%;
}
.appw_block p a {
  color: var(--grey);
}
.appw_block p a:hover {
  color: var(--grey);
  text-decoration: none;
}
.appw_block ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 22px;
}
.appw_block ul li {
  line-height: 150%;
  list-style-type: disc;
}

footer {
  position: relative;
  z-index: 0;
  max-width: 1440px;
  width: 100%;
  border-radius: 16px 16px 0 0;
  padding-top: 486px;
  background: var(--grey);
  margin: -450px auto 0;
}
@media (max-width: 1399px) {
  footer {
    padding-top: 480px;
    margin-top: -480px;
  }
}
footer:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 72px;
  background: var(--dark-grey);
  border-radius: var(--radius40) var(--radius40) 0 0;
}
@media (max-width: 767px) {
  footer:after {
    height: 120px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-top: 520px;
    margin-top: -490px;
  }
}

.fw_top {
  display: flex;
  gap: var(--padding40);
  padding: 0 40px;
  align-items: center;
  margin-bottom: 65px;
}
@media (max-width: 1399px) {
  .fw_top {
    gap: var(--common-gap);
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .fw_top {
    flex-direction: column;
    padding: 0 16px;
    margin-bottom: 32px;
    align-items: flex-start;
    gap: 32px;
  }
}

.fwt_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  width: 644px;
}
@media (max-width: 1399px) {
  .fwt_left {
    gap: 24px;
    width: 50%;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .fwt_left {
    width: 100%;
  }
}

.fwtl_logo img {
  max-width: 230px;
}
@media (max-width: 767px) {
  .fwtl_logo img {
    max-width: 200px;
  }
}

.fwtl_data {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .fwtl_data {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.fwtld_phone a {
  text-decoration: none;
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 72px;
  line-height: 1.1;
  color: var(--ohra);
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .fwtld_phone a {
    font-size: 44px;
  }
}

.fwtld_text {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 1399px) {
  .fwtld_text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .fwtld_text br {
    display: none;
  }
}

.fwt_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1399px) {
  .fwt_right {
    gap: 12px;
  }
}

.fwtr_row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1399px) {
  .fwtr_row {
    gap: 6px;
  }
}
.fwtr_row > * {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 1399px) {
  .fwtr_row > * {
    font-size: 14px;
  }
}

.fwtrr_header {
  color: var(--light-grey);
}

.fwtrr_body {
  color: var(--white);
}
@media (max-width: 1399px) {
  .fwtrr_body br {
    display: none;
  }
}

.fw_bottom {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding40);
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 1399px) {
  .fw_bottom {
    gap: var(--common-gap);
    font-size: 16px;
    line-height: 130%;
    padding: 14px 40px;
  }
}
@media (max-width: 991px) {
  .fw_bottom {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .fw_bottom {
    flex-direction: column;
    padding: 16px;
    align-items: flex-start;
  }
}

.fwb_left {
  width: 644px;
  color: var(--light-grey);
}
@media (max-width: 1399px) {
  .fwb_left {
    width: 50%;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .fwb_left {
    width: 100%;
  }
}

.fwb_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--common-gap);
  flex-grow: 1;
}
@media (max-width: 767px) {
  .fwb_right {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.fwb_right a {
  color: var(--light-grey);
  text-decoration-line: none;
}
.fwb_right a:hover {
  text-decoration-line: underline;
}

.modal-fullscreen .modal-body {
  overflow: unset;
}

.modal-content {
  background: rgba(0, 0, 0, 0.5);
  padding-right: 17px;
}
@media (max-width: 767px) {
  .modal-content {
    padding: 0;
  }
}

.modal-body {
  padding: 32px 0;
  flex: none;
}
@media (min-width: 1400px) {
  .modal-body .container {
    max-width: 1440px;
  }
}
@media (max-width: 1199px) {
  .modal-body {
    padding: 64px 0;
  }
}
@media (max-width: 1199px) {
  .modal-body {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .modal-body {
    padding: 16px 0;
  }
}
@media (max-width: 767px) {
  .modal-body .container {
    padding: 0 16px;
  }
}
.modal_content {
  position: relative;
  z-index: 1;
  padding: 51px 40px 76px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1336px;
  background: var(--dark-grey);
  border-radius: 40px;
}
@media (max-width: 1199px) {
  .modal_content {
    padding: 64px 52px;
  }
}
@media (max-width: 991px) {
  .modal_content {
    padding: 48px 32px 32px;
  }
}
@media (max-width: 767px) {
  .modal_content {
    width: 100%;
    padding: 48px 16px 32px;
  }
}

#thanks .modal_content {
  padding: 144px var(--padding);
}

.mb_close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: url("../img/close_sign.svg") center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 1199px) {
  .mb_close {
    top: 24px;
    right: 24px;
  }
}
@media (max-width: 991px) {
  .mb_close {
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .mb_close {
    width: 24px;
    height: 24px;
  }
}

.mc_title {
  color: var(--ohra);
  text-align: center;
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 80px;
  line-height: 88px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .mc_title {
    font-size: 64px;
    line-height: 72px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .mc_title {
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 12px;
  }
}

.mc_text {
  color: var(--light-grey);
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  margin: 0 auto 40px;
  max-width: 880px;
}
@media (max-width: 991px) {
  .mc_text {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .mc_text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

#thanks .mc_text {
  margin: 0 auto var(--common-gap);
  max-width: 540px;
}/*# sourceMappingURL=styles.css.map */