:root {
  --font-family: "Helvetica Neue", sans-serif;
  --second-family: "Ivy Mode", sans-serif;
  --third-family: "Herr Von Muellerhoff", sans-serif; }

* {
  box-sizing: border-box; }

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%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul,
li {
  list-style: none;
  margin-left: 0;
  padding-left: 0; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  color: inherit;
  text-decoration: none; }

.btn {
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
  letter-spacing: -0.03em;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 10000px;
  height: 53px;
  width: 246px;
  transition: background-color 0.3s ease; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .btn {
      height: calc(100vw * (53 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .btn {
      height: 53px; } }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .btn {
      width: calc(100vw * (246 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .btn {
      width: 246px; } }
  @media screen and (max-width: 1000px) {
    .btn {
      font-size: 16px; } }
  .btn .btn_wrap {
    width: fit-content; }
  .btn.accent {
    background-color: #00b0ae;
    color: white; }
    .btn.accent:hover {
      background-color: #03807e; }
  .btn.glass {
    color: white;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.16); }
    .btn.glass::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 35%, rgba(255, 255, 255, 0.01) 100%); }
    .btn.glass:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.24);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 10px 28px rgba(0, 0, 0, 0.2); }
  .btn.whith_arrow {
    justify-content: flex-end;
    padding-right: 8px;
    padding-left: 40px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .btn.whith_arrow {
        padding-right: calc(100vw * (8 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .btn.whith_arrow {
        padding-right: 8px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .btn.whith_arrow {
        padding-left: calc(100vw * (40 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .btn.whith_arrow {
        padding-left: 40px; } }
    .btn.whith_arrow img {
      width: 39px;
      height: 39px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .btn.whith_arrow img {
          width: calc(100vw * (39 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .btn.whith_arrow img {
          width: 39px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .btn.whith_arrow img {
          height: calc(100vw * (39 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .btn.whith_arrow img {
          height: 39px; } }
    .btn.whith_arrow p {
      width: 100%;
      text-align: center; }

header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center; }
  header.invert_header {
    position: static;
    background-color: #00b0ae;
    margin-bottom: 80px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header.invert_header {
        margin-bottom: calc(100vw * (80 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header.invert_header {
        margin-bottom: 80px; } }
    header.invert_header .wrap_header {
      height: 60px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        header.invert_header .wrap_header {
          height: calc(100vw * (60 / 1920)); } }
      @media screen and (max-width: 1000px) {
        header.invert_header .wrap_header {
          height: 60px; } }
      header.invert_header .wrap_header .btn.accent {
        background-color: white;
        color: #2b2c33;
        transition: all 0.3s ease; }
        header.invert_header .wrap_header .btn.accent:hover {
          opacity: 0.7; }
      @media screen and (max-width: 1000px) {
        header.invert_header .wrap_header {
          height: 70px;
          width: 90%; } }
  header .wrap_header {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    color: white;
    height: 106px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header .wrap_header {
        height: calc(100vw * (106 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header .wrap_header {
        height: 106px; } }
    @media screen and (max-width: 1000px) {
      header .wrap_header {
        height: 70px;
        width: 90%; } }
  header .logo {
    width: 199px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header .logo {
        width: calc(100vw * (199 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header .logo {
        width: 199px; } }
    @media screen and (max-width: 1000px) {
      header .logo {
        width: 145px; } }
    header .logo img {
      width: 100%; }
  header .btn {
    height: 40px;
    width: 176px;
    font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px); }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header .btn {
        height: calc(100vw * (40 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header .btn {
        height: 40px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header .btn {
        width: calc(100vw * (176 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header .btn {
        width: 176px; } }
  header .main_menu ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 30px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header .main_menu ul {
        gap: calc(100vw * (30 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header .main_menu ul {
        gap: 30px; } }
    header .main_menu ul li a {
      font-weight: 700;
      font-size: clamp(7px, calc( 7px + (13 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 13px);
      line-height: 108%;
      color: #fff;
      text-transform: uppercase;
      transition: color 0.3s ease; }
      header .main_menu ul li a:hover {
        color: #00b0ae; }
  header .language_block {
    position: absolute;
    right: 300px;
    display: flex;
    flex-flow: row nowrap;
    gap: 15px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header .language_block {
        right: calc(100vw * (300 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header .language_block {
        right: 300px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      header .language_block {
        gap: calc(100vw * (15 / 1920)); } }
    @media screen and (max-width: 1000px) {
      header .language_block {
        gap: 15px; } }
    @media screen and (max-width: 1000px) {
      header .language_block {
        position: static; } }
    header .language_block li {
      opacity: 0.5;
      font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px); }
      @media screen and (max-width: 1000px) {
        header .language_block li {
          font-size: 16px; } }
      header .language_block li.current-lang {
        text-decoration: underline;
        opacity: 1; }
      header .language_block li:hover {
        opacity: 1;
        text-decoration: underline; }
  header .burger_btn_block button {
    background-color: transparent;
    border-radius: 300px;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.16); }
    header .burger_btn_block button::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 35%, rgba(255, 255, 255, 0.01) 100%); }
    header .burger_btn_block button:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.24);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 10px 28px rgba(0, 0, 0, 0.2); }

.menu_mobile_block {
  position: fixed;
  z-index: 100;
  top: -120%;
  width: 100%;
  height: 100vh;
  background-color: white;
  transition: all 0.3s ease; }
  .menu_mobile_block.active {
    top: 0; }
  .menu_mobile_block .wrap_menu {
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    height: 100%; }
  .menu_mobile_block .header_block {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center; }
    .menu_mobile_block .header_block .logo img {
      width: 213px; }
    .menu_mobile_block .header_block button {
      background-color: transparent;
      border: none;
      cursor: pointer; }
      .menu_mobile_block .header_block button svg {
        width: 23px;
        height: 23px; }
  .menu_mobile_block .mobile_menu {
    display: flex;
    flex-flow: column nowrap;
    align-items: center; }
    .menu_mobile_block .mobile_menu a {
      font-size: 20px;
      text-align: center;
      display: block;
      width: 100%;
      text-align: center;
      padding-top: 16px;
      padding-bottom: 16px;
      color: #404d63; }
  .menu_mobile_block .socials_block ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px; }

.popUp {
  display: none; }
  @media screen and (max-width: 1000px) {
    .popUp {
      position: relative; } }
  .popUp.active {
    display: block; }
  .popUp .wrap_popUp {
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1660px;
    height: 840px;
    display: flex;
    flex-flow: row nowrap;
    background-color: white;
    border-radius: 20px;
    overflow: clip; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .popUp .wrap_popUp {
        width: calc(100vw * (1660 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .popUp .wrap_popUp {
        width: 1660px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .popUp .wrap_popUp {
        height: calc(100vw * (840 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .popUp .wrap_popUp {
        height: 840px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .popUp .wrap_popUp {
        border-radius: calc(100vw * (20 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .popUp .wrap_popUp {
        border-radius: 20px; } }
    @media screen and (max-width: 1000px) {
      .popUp .wrap_popUp {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        inset: 0;
        transform: none;
        border-radius: 0; } }
  .popUp .col_img {
    width: 70%; }
    .popUp .col_img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media screen and (max-width: 1000px) {
      .popUp .col_img {
        width: 100%;
        height: 35vh; } }
  .popUp .col_form {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    padding-top: 24px;
    padding-right: 58px;
    padding-left: 58px;
    padding-bottom: 47px;
    width: 30%; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .popUp .col_form {
        padding-top: calc(100vw * (24 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .popUp .col_form {
        padding-top: 24px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .popUp .col_form {
        padding-right: calc(100vw * (58 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .popUp .col_form {
        padding-right: 58px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .popUp .col_form {
        padding-left: calc(100vw * (58 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .popUp .col_form {
        padding-left: 58px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .popUp .col_form {
        padding-bottom: calc(100vw * (47 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .popUp .col_form {
        padding-bottom: 47px; } }
    @media screen and (max-width: 1000px) {
      .popUp .col_form {
        width: 100%;
        height: 65vh;
        padding: 90px 30px 41px 30px; } }
    .popUp .col_form .btn_row {
      margin-left: auto;
      margin-right: -34px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .popUp .col_form .btn_row {
          margin-right: calc(100vw * (-34 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .popUp .col_form .btn_row {
          margin-right: -34px; } }
      .popUp .col_form .btn_row button {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer; }
        .popUp .col_form .btn_row button img {
          width: 34px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .popUp .col_form .btn_row button img {
              width: calc(100vw * (34 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .popUp .col_form .btn_row button img {
              width: 34px; } }
      @media screen and (max-width: 1000px) {
        .popUp .col_form .btn_row {
          position: absolute;
          top: 10px;
          right: 10px;
          margin-right: 0;
          border-radius: 50%;
          background-color: white;
          width: 34px;
          height: 34px;
          padding: 0;
          display: flex;
          flex-flow: row nowrap;
          justify-content: center;
          align-items: center; }
          .popUp .col_form .btn_row img {
            width: 34px;
            height: 34px; } }
    .popUp .col_form .form_row {
      margin-top: 40px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .popUp .col_form .form_row {
          margin-top: calc(100vw * (40 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .popUp .col_form .form_row {
          margin-top: 40px; } }
      @media screen and (max-width: 1000px) {
        .popUp .col_form .form_row {
          margin-top: 0; } }
      .popUp .col_form .form_row h2 {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: clamp(20px, calc( 20px + (40 - 20) * ((100vw - 1000px) / (1920 - 1000)) ), 40px);
        line-height: 98%;
        letter-spacing: -0.03em;
        color: #545454;
        margin-bottom: 81px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row h2 {
            margin-bottom: calc(100vw * (81 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row h2 {
            margin-bottom: 81px; } }
        .popUp .col_form .form_row h2 span.line_two {
          color: #aaafbb; }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row h2 {
            font-size: 40px;
            margin-top: 0;
            margin-bottom: 74px; } }
        @media screen and (max-width: 380px) {
          .popUp .col_form .form_row h2 {
            font-size: 32px; } }
      .popUp .col_form .form_row form {
        display: flex;
        flex-flow: column nowrap;
        gap: 8px;
        margin-bottom: 17px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row form {
            gap: calc(100vw * (8 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row form {
            gap: 8px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row form {
            margin-bottom: calc(100vw * (17 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row form {
            margin-bottom: 17px; } }
      .popUp .col_form .form_row .wrap_input {
        background: #f6f6f6;
        border-radius: 1000px;
        padding-left: 30px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row .wrap_input {
            padding-left: calc(100vw * (30 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row .wrap_input {
            padding-left: 30px; } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row .wrap_input {
            padding-left: 30px; } }
      .popUp .col_form .form_row .message_send_status {
        text-align: center;
        height: 0;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
        color: #2b2c33; }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row .message_send_status {
            font-size: 14px; } }
      .popUp .col_form .form_row input {
        border-radius: 1000px;
        padding-top: 18px;
        padding-bottom: 18px;
        border: none;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: clamp(9px, calc( 9px + (18 - 9) * ((100vw - 1000px) / (1920 - 1000)) ), 18px);
        color: #545454;
        background: transparent;
        outline: none;
        width: 100%; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row input {
            padding-top: calc(100vw * (18 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row input {
            padding-top: 18px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row input {
            padding-bottom: calc(100vw * (18 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row input {
            padding-bottom: 18px; } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row input {
            font-size: 18px; } }
        .popUp .col_form .form_row input[type="tel"] {
          display: flex;
          flex-flow: row nowrap;
          align-items: center; }
        .popUp .col_form .form_row input[type="submit"] {
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          justify-content: center;
          background: #00b0ae;
          font-family: var(--font-family);
          font-weight: 500;
          font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
          letter-spacing: -0.03em;
          color: #fff;
          border: none;
          cursor: pointer;
          transition: all 0.3s ease; }
          @media screen and (max-width: 1000px) {
            .popUp .col_form .form_row input[type="submit"] {
              font-size: 16px; } }
          .popUp .col_form .form_row input[type="submit"]:hover {
            background-color: #03807e; }
      .popUp .col_form .form_row .pivacy_block {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: clamp(6px, calc( 6px + (12 - 6) * ((100vw - 1000px) / (1920 - 1000)) ), 12px);
        line-height: 133%;
        letter-spacing: -0.03em;
        color: rgba(99, 99, 99, 0.7); }
        .popUp .col_form .form_row .pivacy_block p {
          text-align: center; }
        .popUp .col_form .form_row .pivacy_block a {
          text-decoration: underline;
          text-decoration-skip-ink: none; }
          .popUp .col_form .form_row .pivacy_block a:hover {
            text-decoration: none; }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row .pivacy_block {
            font-size: 12px; } }
      .popUp .col_form .form_row .iti--separate-dial-code .iti__selected-flag {
        background-color: transparent; }
      .popUp .col_form .form_row .iti--separate-dial-code .iti__flag.iti__nl {
        width: 20px;
        height: 14px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row .iti--separate-dial-code .iti__flag.iti__nl {
            width: calc(100vw * (20 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row .iti--separate-dial-code .iti__flag.iti__nl {
            width: 20px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .form_row .iti--separate-dial-code .iti__flag.iti__nl {
            height: calc(100vw * (14 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row .iti--separate-dial-code .iti__flag.iti__nl {
            height: 14px; } }
      .popUp .col_form .form_row .iti__selected-dial-code {
        font-size: clamp(9px, calc( 9px + (18 - 9) * ((100vw - 1000px) / (1920 - 1000)) ), 18px); }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .form_row .iti__selected-dial-code {
            font-size: 18px; } }
    .popUp .col_form .row_social ul {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-around; }
      .popUp .col_form .row_social ul a {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 8px;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: clamp(13px, calc( 13px + (25 - 13) * ((100vw - 1000px) / (1920 - 1000)) ), 25px);
        color: #141414; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .popUp .col_form .row_social ul a {
            gap: calc(100vw * (8 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .popUp .col_form .row_social ul a {
            gap: 8px; } }
        .popUp .col_form .row_social ul a img {
          width: 21px;
          height: 21px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .popUp .col_form .row_social ul a img {
              width: calc(100vw * (21 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .popUp .col_form .row_social ul a img {
              width: 21px; } }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .popUp .col_form .row_social ul a img {
              height: calc(100vw * (21 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .popUp .col_form .row_social ul a img {
              height: 21px; } }
        .popUp .col_form .row_social ul a:hover {
          text-decoration: underline; }
      @media screen and (max-width: 1000px) {
        .popUp .col_form .row_social ul a {
          font-size: 25px; }
          .popUp .col_form .row_social ul a img {
            width: 21px;
            height: 21px; } }
  .popUp .overlay {
    position: fixed;
    inset: 0;
    z-index: 98;
    backdrop-filter: blur(5px); }
    @media screen and (max-width: 1000px) {
      .popUp .overlay {
        display: none; } }

html {
  scroll-behavior: smooth; }

div,
p,
a,
ul,
li,
section {
  font-family: "HelveticaNeueCyr", Arial, sans-serif; }

h1,
h2,
h3,
h4,
h5 {
  font-family: "Ivy Mode", Arial, sans-serif; }

.liquid-glass {
  border-radius: 32px;
  backdrop-filter: url(#liquid-glass-filter);
  -webkit-backdrop-filter: url(#liquid-glass-filter); }

.liquid-glass-fallback {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important; }

@supports (backdrop-filter: url(#liquid-glass-filter)) {
  .liquid-glass-auto {
    border-radius: 32px;
    backdrop-filter: url(#liquid-glass-filter);
    -webkit-backdrop-filter: url(#liquid-glass-filter); } }
@supports not (backdrop-filter: url(#liquid-glass-filter)) {
  .liquid-glass-auto {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3921568627), 0 8px 32px rgba(0, 0, 0, 0.1); } }
.video_background {
  width: 100%;
  height: 100%;
  object-fit: cover; }

@media screen and (max-width: 1000px) {
  .desktop {
    display: none; } }

.mobile {
  display: none; }
  @media screen and (max-width: 1000px) {
    .mobile {
      display: block; } }

.hero_section {
  height: 100vh;
  overflow: clip; }
  .hero_section .wrap_section {
    height: 100%;
    position: relative; }
  .hero_section .logo_block {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column;
    align-items: center;
    font-weight: 500;
    font-size: clamp(13px, calc( 13px + (25 - 13) * ((100vw - 1000px) / (1920 - 1000)) ), 25px);
    color: #fff;
    gap: 35px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .hero_section .logo_block {
        gap: calc(100vw * (35 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .hero_section .logo_block {
        gap: 35px; } }
    .hero_section .logo_block .logo_description {
      width: 656px;
      font-weight: 500;
      font-size: clamp(13px, calc( 13px + (25 - 13) * ((100vw - 1000px) / (1920 - 1000)) ), 25px);
      line-height: 145%;
      text-align: center;
      color: #fff; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .hero_section .logo_block .logo_description {
          width: calc(100vw * (656 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .hero_section .logo_block .logo_description {
          width: 656px; } }
    .hero_section .logo_block img {
      width: 597px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .hero_section .logo_block img {
          width: calc(100vw * (597 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .hero_section .logo_block img {
          width: 597px; } }
    @media screen and (max-width: 1000px) {
      .hero_section .logo_block {
        display: none; } }
  .hero_section .price_block {
    position: absolute;
    bottom: 172px;
    left: 53px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .hero_section .price_block {
        bottom: calc(100vw * (172 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .hero_section .price_block {
        bottom: 172px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .hero_section .price_block {
        left: calc(100vw * (53 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .hero_section .price_block {
        left: 53px; } }
    @media screen and (max-width: 1000px) {
      .hero_section .price_block {
        position: static; } }
    .hero_section .price_block .label {
      font-weight: 300;
      font-size: clamp(13px, calc( 13px + (25 - 13) * ((100vw - 1000px) / (1920 - 1000)) ), 25px);
      line-height: 120%;
      color: #fff; }
      @media screen and (max-width: 1000px) {
        .hero_section .price_block .label {
          text-align: center;
          font-size: 14px; } }
    .hero_section .price_block .price {
      font-weight: 500;
      font-size: clamp(18px, calc( 18px + (36 - 18) * ((100vw - 1000px) / (1920 - 1000)) ), 36px);
      line-height: 120%;
      color: #fff;
      margin-top: 10px;
      margin-top: 10px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .hero_section .price_block .price {
          margin-top: calc(100vw * (10 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .hero_section .price_block .price {
          margin-top: 10px; } }
      @media screen and (max-width: 1000px) {
        .hero_section .price_block .price {
          text-align: center;
          font-size: 25px; } }
  .hero_section .content_block {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end; }
    .hero_section .content_block .wrap_content_block {
      width: 100%;
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      margin-bottom: 35px;
      margin-left: 40px;
      margin-right: 20px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .hero_section .content_block .wrap_content_block {
          margin-bottom: calc(100vw * (35 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .hero_section .content_block .wrap_content_block {
          margin-bottom: 35px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .hero_section .content_block .wrap_content_block {
          margin-left: calc(100vw * (40 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .hero_section .content_block .wrap_content_block {
          margin-left: 40px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .hero_section .content_block .wrap_content_block {
          margin-right: calc(100vw * (20 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .hero_section .content_block .wrap_content_block {
          margin-right: 20px; } }
      @media screen and (max-width: 1000px) {
        .hero_section .content_block .wrap_content_block {
          flex-direction: column-reverse;
          align-items: center;
          gap: 5vh;
          margin-left: 28px;
          margin-right: 28px;
          margin-bottom: 28px; } }
      .hero_section .content_block .wrap_content_block .col_logo_block {
        display: none; }
        @media screen and (max-width: 1000px) {
          .hero_section .content_block .wrap_content_block .col_logo_block {
            display: flex;
            flex-flow: column;
            align-items: center;
            gap: 25px; }
            .hero_section .content_block .wrap_content_block .col_logo_block img {
              width: 276px; }
            .hero_section .content_block .wrap_content_block .col_logo_block .logo_description {
              font-weight: 500;
              font-size: 16px;
              color: #fff;
              text-align: center; } }
      .hero_section .content_block .wrap_content_block .btn_block {
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-end;
        gap: 20px;
        gap: 20px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .hero_section .content_block .wrap_content_block .btn_block {
            gap: calc(100vw * (20 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .hero_section .content_block .wrap_content_block .btn_block {
            gap: 20px; } }
        @media screen and (max-width: 1000px) {
          .hero_section .content_block .wrap_content_block .btn_block {
            flex-direction: column;
            width: 100%;
            gap: 16px; }
            .hero_section .content_block .wrap_content_block .btn_block a {
              width: 100%; } }
      .hero_section .content_block .wrap_content_block .qr_block img {
        width: 112px;
        height: 112px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .hero_section .content_block .wrap_content_block .qr_block img {
            width: calc(100vw * (112 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .hero_section .content_block .wrap_content_block .qr_block img {
            width: 112px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .hero_section .content_block .wrap_content_block .qr_block img {
            height: calc(100vw * (112 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .hero_section .content_block .wrap_content_block .qr_block img {
            height: 112px; } }
        @media screen and (max-width: 1000px) {
          .hero_section .content_block .wrap_content_block .qr_block img {
            width: 110px;
            height: 110px; } }
      @media screen and (max-width: 1000px) {
        .hero_section .content_block .wrap_content_block .qr_block {
          margin-bottom: 2vh; } }
  .hero_section .glass_line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
    right: 130px;
    width: 549px;
    height: 1871px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .hero_section .glass_line {
        right: calc(100vw * (130 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .hero_section .glass_line {
        right: 130px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .hero_section .glass_line {
        width: calc(100vw * (549 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .hero_section .glass_line {
        width: 549px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .hero_section .glass_line {
        height: calc(100vw * (1871 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .hero_section .glass_line {
        height: 1871px; } }
    @media screen and (max-width: 1000px) {
      .hero_section .glass_line {
        display: none; } }

.about_section {
  margin-top: 167px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .about_section {
      margin-top: calc(100vw * (167 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .about_section {
      margin-top: 167px; } }
  @media screen and (max-width: 1000px) {
    .about_section {
      margin-top: 67px; } }
  .about_section .wrap_section {
    padding: 0;
    padding-left: 75px;
    padding-right: 75px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .about_section .wrap_section {
        padding-left: calc(100vw * (75 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .about_section .wrap_section {
        padding-left: 75px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .about_section .wrap_section {
        padding-right: calc(100vw * (75 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .about_section .wrap_section {
        padding-right: 75px; } }
    @media screen and (max-width: 1000px) {
      .about_section .wrap_section {
        padding-left: 0;
        padding-right: 0; } }
  .about_section .header_block {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 150px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .about_section .header_block {
        gap: calc(100vw * (150 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .about_section .header_block {
        gap: 150px; } }
    @media screen and (max-width: 1000px) {
      .about_section .header_block {
        flex-flow: row wrap;
        gap: 44px;
        padding-left: 28px;
        padding-right: 28px; } }
    .about_section .header_block .col.col_title {
      width: 920px;
      flex-shrink: 0; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .about_section .header_block .col.col_title {
          width: calc(100vw * (920 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .about_section .header_block .col.col_title {
          width: 920px; } }
      @media screen and (max-width: 1000px) {
        .about_section .header_block .col.col_title {
          width: 100%; } }
    .about_section .header_block .col.col_post-title {
      font-family: var(--font-family);
      font-weight: 500;
      font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
      line-height: 179%;
      color: rgba(43, 44, 51, 0.6); }
      @media screen and (max-width: 1000px) {
        .about_section .header_block .col.col_post-title {
          font-size: 14px;
          line-height: 179%; } }
      .about_section .header_block .col.col_post-title p {
        width: 620px;
        margin-top: 30px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .about_section .header_block .col.col_post-title p {
            width: calc(100vw * (620 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .about_section .header_block .col.col_post-title p {
            width: 620px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .about_section .header_block .col.col_post-title p {
            margin-top: calc(100vw * (30 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .about_section .header_block .col.col_post-title p {
            margin-top: 30px; } }
        @media screen and (max-width: 1000px) {
          .about_section .header_block .col.col_post-title p {
            width: 100%;
            margin-top: 0; } }
    .about_section .header_block h2 {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: clamp(72.5px, calc( 72.5px + (145 - 72.5) * ((100vw - 1000px) / (1920 - 1000)) ), 145px);
      color: #2b2c33;
      white-space: nowrap; }
      @media screen and (max-width: 1000px) {
        .about_section .header_block h2 {
          font-size: 85px;
          white-space: wrap; } }
  .about_section .content_block {
    display: flex;
    flex-flow: row nowrap;
    margin-top: 83px;
    gap: 165px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .about_section .content_block {
        margin-top: calc(100vw * (83 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .about_section .content_block {
        margin-top: 83px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .about_section .content_block {
        gap: calc(100vw * (165 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .about_section .content_block {
        gap: 165px; } }
    @media screen and (max-width: 1000px) {
      .about_section .content_block {
        flex-direction: column;
        margin-top: 63px;
        gap: 62px; } }
    .about_section .content_block .col.col_gallery {
      width: 920px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .about_section .content_block .col.col_gallery {
          width: calc(100vw * (920 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .about_section .content_block .col.col_gallery {
          width: 920px; } }
      @media screen and (max-width: 1000px) {
        .about_section .content_block .col.col_gallery {
          width: 100%; } }
      .about_section .content_block .col.col_gallery .swiper {
        width: 100%; }
        .about_section .content_block .col.col_gallery .swiper.gallery {
          height: 500px;
          margin-bottom: 22px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .about_section .content_block .col.col_gallery .swiper.gallery {
              height: calc(100vw * (500 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .about_section .content_block .col.col_gallery .swiper.gallery {
              height: 500px; } }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .about_section .content_block .col.col_gallery .swiper.gallery {
              margin-bottom: calc(100vw * (22 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .about_section .content_block .col.col_gallery .swiper.gallery {
              margin-bottom: 22px; } }
          @media screen and (max-width: 1000px) {
            .about_section .content_block .col.col_gallery .swiper.gallery {
              height: 500px;
              margin-bottom: 5px; } }
          @media screen and (max-width: 560px) {
            .about_section .content_block .col.col_gallery .swiper.gallery {
              height: 263px; } }
          .about_section .content_block .col.col_gallery .swiper.gallery .btn_block_navigation {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            z-index: 5;
            flex-flow: row nowrap;
            justify-content: space-between;
            padding-left: 14px;
            padding-right: 14px;
            transform: translateY(-50%);
            display: none; }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .about_section .content_block .col.col_gallery .swiper.gallery .btn_block_navigation {
                padding-left: calc(100vw * (14 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .about_section .content_block .col.col_gallery .swiper.gallery .btn_block_navigation {
                padding-left: 14px; } }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .about_section .content_block .col.col_gallery .swiper.gallery .btn_block_navigation {
                padding-right: calc(100vw * (14 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .about_section .content_block .col.col_gallery .swiper.gallery .btn_block_navigation {
                padding-right: 14px; } }
            .about_section .content_block .col.col_gallery .swiper.gallery .btn_block_navigation > div {
              cursor: pointer; }
            @media screen and (max-width: 1000px) {
              .about_section .content_block .col.col_gallery .swiper.gallery .btn_block_navigation {
                display: flex; } }
        .about_section .content_block .col.col_gallery .swiper.thumb_slider {
          height: 190px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .about_section .content_block .col.col_gallery .swiper.thumb_slider {
              height: calc(100vw * (190 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .about_section .content_block .col.col_gallery .swiper.thumb_slider {
              height: 190px; } }
          @media screen and (max-width: 1000px) {
            .about_section .content_block .col.col_gallery .swiper.thumb_slider {
              height: 170px; } }
          @media screen and (max-width: 560px) {
            .about_section .content_block .col.col_gallery .swiper.thumb_slider {
              height: 86px; } }
          .about_section .content_block .col.col_gallery .swiper.thumb_slider .swiper-slide {
            cursor: pointer; }
        .about_section .content_block .col.col_gallery .swiper .swiper-slide img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .about_section .content_block .col.col_description {
      display: flex;
      justify-content: flex-end;
      flex-flow: column nowrap;
      width: 100%;
      gap: 65px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .about_section .content_block .col.col_description {
          gap: calc(100vw * (65 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .about_section .content_block .col.col_description {
          gap: 65px; } }
      .about_section .content_block .col.col_description ul {
        display: flex;
        flex-flow: column nowrap; }
        .about_section .content_block .col.col_description ul li {
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          justify-content: space-between;
          height: 73pxpx;
          font-family: var(--second-family);
          font-weight: 300;
          font-size: clamp(15px, calc( 15px + (30 - 15) * ((100vw - 1000px) / (1920 - 1000)) ), 30px);
          line-height: 230%;
          color: #2b2c33;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .about_section .content_block .col.col_description ul li {
              height: calc(100vw * (73px / 1920)); } }
          @media screen and (max-width: 1000px) {
            .about_section .content_block .col.col_description ul li {
              height: 73pxpx; } }
          .about_section .content_block .col.col_description ul li:last-child {
            border: none; }
          .about_section .content_block .col.col_description ul li .value .wrap_value {
            width: 200px;
            margin-left: auto; }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .about_section .content_block .col.col_description ul li .value .wrap_value {
                width: calc(100vw * (200 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .about_section .content_block .col.col_description ul li .value .wrap_value {
                width: 200px; } }
      @media screen and (max-width: 1000px) {
        .about_section .content_block .col.col_description {
          width: 90%;
          margin-left: auto;
          margin-right: auto;
          gap: 33px; }
          .about_section .content_block .col.col_description .btn_block {
            padding-left: 5px;
            padding-right: 5px; }
            .about_section .content_block .col.col_description .btn_block a {
              width: 100%; }
          .about_section .content_block .col.col_description ul li {
            font-weight: 300;
            font-size: 18px;
            height: 73px; }
            .about_section .content_block .col.col_description ul li > div {
              flex: 1;
              justify-content: space-between; }
            .about_section .content_block .col.col_description ul li .label {
              margin-left: 5px; }
            .about_section .content_block .col.col_description ul li .value .wrap_value {
              width: 120px;
              margin-left: auto; } }

.gallery_section {
  margin-top: 285px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .gallery_section {
      margin-top: calc(100vw * (285 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .gallery_section {
      margin-top: 285px; } }
  @media screen and (max-width: 1000px) {
    .gallery_section {
      margin-top: 94px; } }
  .gallery_section .header_block {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between; }
    @media screen and (max-width: 1000px) {
      .gallery_section .header_block {
        flex-direction: column;
        gap: 52px; } }
    .gallery_section .header_block h2 {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: 250px;
      font-size: clamp(125px, calc( 125px + (250 - 125) * ((100vw - 1000px) / (1920 - 1000)) ), 250px);
      color: #2b2c33; }
      @media screen and (max-width: 1000px) {
        .gallery_section .header_block h2 {
          font-size: 85px; } }
    .gallery_section .header_block .col.col_description {
      width: 300px;
      display: flex;
      flex-flow: column nowrap;
      gap: 20px;
      margin-top: 80px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .gallery_section .header_block .col.col_description {
          width: calc(100vw * (300 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .gallery_section .header_block .col.col_description {
          width: 300px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .gallery_section .header_block .col.col_description {
          gap: calc(100vw * (20 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .gallery_section .header_block .col.col_description {
          gap: 20px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .gallery_section .header_block .col.col_description {
          margin-top: calc(100vw * (80 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .gallery_section .header_block .col.col_description {
          margin-top: 80px; } }
      .gallery_section .header_block .col.col_description h3 {
        font-family: var(--second-family);
        font-weight: 400;
        font-size: clamp(25px, calc( 25px + (50 - 25) * ((100vw - 1000px) / (1920 - 1000)) ), 50px);
        line-height: 84%;
        color: #2b2c33; }
      .gallery_section .header_block .col.col_description p {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
        line-height: 143%;
        color: #2b2c33;
        width: 80%; }
      @media screen and (max-width: 1000px) {
        .gallery_section .header_block .col.col_description {
          margin-top: 0;
          max-width: 180px;
          margin-left: 5px;
          gap: 20px; }
          .gallery_section .header_block .col.col_description h3 {
            font-size: 25px; }
          .gallery_section .header_block .col.col_description p {
            font-size: 12px;
            line-height: 167%;
            color: rgba(43, 44, 51, 0.6);
            width: 100%; } }
  .gallery_section .gallery_block {
    margin-top: 40px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .gallery_section .gallery_block {
        margin-top: calc(100vw * (40 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .gallery_section .gallery_block {
        margin-top: 40px; } }
    @media screen and (max-width: 1000px) {
      .gallery_section .gallery_block {
        margin-top: 53px;
        width: 95%;
        margin-left: auto;
        margin-right: auto; } }
    .gallery_section .gallery_block .gallery_section_slider {
      width: 100%;
      height: 891px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .gallery_section .gallery_block .gallery_section_slider {
          height: calc(100vw * (891 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .gallery_section .gallery_block .gallery_section_slider {
          height: 891px; } }
      @media screen and (max-width: 1000px) {
        .gallery_section .gallery_block .gallery_section_slider {
          height: 572px; } }
      @media screen and (max-width: 560px) {
        .gallery_section .gallery_block .gallery_section_slider {
          height: 286px; } }
      .gallery_section .gallery_block .gallery_section_slider .swiper-slide {
        border-radius: 15px;
        overflow: clip; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .gallery_section .gallery_block .gallery_section_slider .swiper-slide {
            border-radius: calc(100vw * (15 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .gallery_section .gallery_block .gallery_section_slider .swiper-slide {
            border-radius: 15px; } }
        @media screen and (max-width: 1000px) {
          .gallery_section .gallery_block .gallery_section_slider .swiper-slide {
            border-radius: 7px; } }
        .gallery_section .gallery_block .gallery_section_slider .swiper-slide img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation {
        display: flex;
        position: absolute;
        width: 100%;
        top: 50%;
        left: 0;
        right: 0;
        z-index: 5;
        flex-flow: row nowrap;
        justify-content: space-between;
        padding-left: 78px;
        padding-right: 95px;
        transform: translateY(-50%); }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation {
            padding-left: calc(100vw * (78 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation {
            padding-left: 78px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation {
            padding-right: calc(100vw * (95 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation {
            padding-right: 95px; } }
        .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation img {
          width: 122px;
          height: 122px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation img {
              width: calc(100vw * (122 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation img {
              width: 122px; } }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation img {
              height: calc(100vw * (122 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation img {
              height: 122px; } }
        .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation > div {
          cursor: pointer; }
        @media screen and (max-width: 1000px) {
          .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation {
            padding-left: 14px;
            padding-right: 14px; }
            .gallery_section .gallery_block .gallery_section_slider .btn_block_navigation img {
              width: 36px;
              height: 36px; } }

.floor-plans_section {
  margin-top: 158px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .floor-plans_section {
      margin-top: calc(100vw * (158 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .floor-plans_section {
      margin-top: 158px; } }
  @media screen and (max-width: 1000px) {
    .floor-plans_section {
      margin-top: 82px; } }
  .floor-plans_section .header_block {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: space-between; }
    @media screen and (max-width: 1000px) {
      .floor-plans_section .header_block {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px; } }
    .floor-plans_section .header_block h2 {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: clamp(60px, calc( 60px + (120 - 60) * ((100vw - 1000px) / (1920 - 1000)) ), 120px);
      line-height: 72%;
      color: #2b2c33; }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block h2 {
          font-size: 65px; } }
    .floor-plans_section .header_block .col.col_filter-btns ul {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: flex-end;
      gap: 10px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .floor-plans_section .header_block .col.col_filter-btns ul {
          gap: calc(100vw * (10 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns ul {
          gap: 10px; } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns ul {
          flex-flow: row wrap;
          justify-content: flex-start;
          gap: 5px; } }
    .floor-plans_section .header_block .col.col_filter-btns button {
      background-color: transparent;
      border: 1px solid #2b2c33;
      border-radius: 10000px;
      font-family: var(--font-family);
      font-weight: 500;
      font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
      color: #2b2c33;
      cursor: pointer;
      transition: all 0.2s ease;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-right: 27px;
      padding-left: 27px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-top: calc(100vw * (10 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-top: 10px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-bottom: calc(100vw * (10 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-bottom: 10px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-right: calc(100vw * (27 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-right: 27px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-left: calc(100vw * (27 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding-left: 27px; } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          padding: 6px 15px; } }
      .floor-plans_section .header_block .col.col_filter-btns button:hover {
        background: #00b0ae;
        color: white;
        border-color: #00b0ae; }
      .floor-plans_section .header_block .col.col_filter-btns button.active_btn {
        background: #00b0ae;
        font-family: var(--font-family);
        font-weight: 700;
        font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
        color: #fff;
        border: none; }
        .floor-plans_section .header_block .col.col_filter-btns button.active_btn:hover {
          background: #03807e; }
        @media screen and (max-width: 1000px) {
          .floor-plans_section .header_block .col.col_filter-btns button.active_btn {
            font-size: 12px; } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .header_block .col.col_filter-btns button {
          font-size: 12px; } }
  .floor-plans_section .content_block {
    margin-top: 55px;
    width: 97%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: column nowrap;
    gap: 36px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .floor-plans_section .content_block {
        margin-top: calc(100vw * (55 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .floor-plans_section .content_block {
        margin-top: 55px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .floor-plans_section .content_block {
        gap: calc(100vw * (36 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .floor-plans_section .content_block {
        gap: 36px; } }
    @media screen and (max-width: 1000px) {
      .floor-plans_section .content_block {
        gap: 118px;
        margin-top: 30px; } }
    .floor-plans_section .content_block .content_card {
      border-radius: 15px;
      border: 1px solid rgba(29, 29, 29, 0.1);
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
      opacity: 1;
      transform: scaleY(1);
      overflow: hidden; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .floor-plans_section .content_block .content_card {
          border-radius: calc(100vw * (15 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .content_block .content_card {
          border-radius: 15px; } }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .content_block .content_card {
          border-radius: 7px; } }
      .floor-plans_section .content_block .content_card.is-hiding {
        opacity: 0;
        transform: scaleY(0.8);
        max-height: 0;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0; }
      @media screen and (max-width: 1000px) {
        .floor-plans_section .content_block .content_card {
          flex-direction: column;
          border: none;
          gap: 65px; } }
      .floor-plans_section .content_block .content_card .col.col_description {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 58px;
        width: 100%; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .floor-plans_section .content_block .content_card .col.col_description {
            padding-top: calc(100vw * (40 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .floor-plans_section .content_block .content_card .col.col_description {
            padding-top: 40px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .floor-plans_section .content_block .content_card .col.col_description {
            padding-bottom: calc(100vw * (40 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .floor-plans_section .content_block .content_card .col.col_description {
            padding-bottom: 40px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .floor-plans_section .content_block .content_card .col.col_description {
            padding-left: calc(100vw * (58 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .floor-plans_section .content_block .content_card .col.col_description {
            padding-left: 58px; } }
        @media screen and (max-width: 1000px) {
          .floor-plans_section .content_block .content_card .col.col_description {
            flex-direction: column;
            padding: 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
            gap: 60px; } }
        .floor-plans_section .content_block .content_card .col.col_description .wrap_img {
          width: 427px;
          height: 289px;
          border-radius: 10px;
          overflow: hidden; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .floor-plans_section .content_block .content_card .col.col_description .wrap_img {
              width: calc(100vw * (427 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .floor-plans_section .content_block .content_card .col.col_description .wrap_img {
              width: 427px; } }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .floor-plans_section .content_block .content_card .col.col_description .wrap_img {
              height: calc(100vw * (289 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .floor-plans_section .content_block .content_card .col.col_description .wrap_img {
              height: 289px; } }
          .floor-plans_section .content_block .content_card .col.col_description .wrap_img a,
          .floor-plans_section .content_block .content_card .col.col_description .wrap_img .card_slider,
          .floor-plans_section .content_block .content_card .col.col_description .wrap_img .swiper-wrapper {
            width: 100%;
            height: 100%; }
          .floor-plans_section .content_block .content_card .col.col_description .wrap_img img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
          @media screen and (max-width: 1000px) {
            .floor-plans_section .content_block .content_card .col.col_description .wrap_img {
              width: 100%;
              height: unset; } }
        .floor-plans_section .content_block .content_card .col.col_description .info_block {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%; }
          @media screen and (max-width: 1000px) {
            .floor-plans_section .content_block .content_card .col.col_description .info_block {
              text-align: center; } }
          .floor-plans_section .content_block .content_card .col.col_description .info_block .wrap_info_block {
            width: 390px;
            display: flex;
            flex-direction: column;
            gap: 22px; }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .wrap_info_block {
                width: calc(100vw * (390 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .wrap_info_block {
                width: 390px; } }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .wrap_info_block {
                gap: calc(100vw * (22 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .wrap_info_block {
                gap: 22px; } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .wrap_info_block {
                width: 100%;
                gap: 26px; } }
          .floor-plans_section .content_block .content_card .col.col_description .info_block h3 {
            font-family: var(--second-family);
            font-weight: 300;
            font-size: clamp(25px, calc( 25px + (50 - 25) * ((100vw - 1000px) / (1920 - 1000)) ), 50px);
            color: #2b2c33;
            margin-left: -8px; }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block h3 {
                margin-left: calc(100vw * (-8 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block h3 {
                margin-left: -8px; } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block h3 {
                margin-left: 0;
                font-size: 50px; } }
          .floor-plans_section .content_block .content_card .col.col_description .info_block .post_title {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: clamp(9px, calc( 9px + (18 - 9) * ((100vw - 1000px) / (1920 - 1000)) ), 18px);
            color: #2b2c33; }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .post_title {
                font-size: 18px; } }
          .floor-plans_section .content_block .content_card .col.col_description .info_block .descr {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
            line-height: 157%;
            color: rgba(43, 44, 51, 0.35);
            margin-top: 10px; }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .descr {
                margin-top: calc(100vw * (10 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .descr {
                margin-top: 10px; } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_description .info_block .descr {
                font-weight: 500;
                font-size: 14px;
                line-height: 157%;
                text-align: center;
                color: rgba(43, 44, 51, 0.35);
                margin-top: 5px;
                margin-bottom: 70px;
                width: 90%;
                margin-left: auto;
                margin-right: auto; } }
      .floor-plans_section .content_block .content_card .col.col_price {
        width: 424px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .floor-plans_section .content_block .content_card .col.col_price {
            width: calc(100vw * (424 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .floor-plans_section .content_block .content_card .col.col_price {
            width: 424px; } }
        @media screen and (max-width: 1000px) {
          .floor-plans_section .content_block .content_card .col.col_price {
            width: 100%;
            text-align: center;
            padding-bottom: 70px;
            border-left: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15); } }
        .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price {
          display: flex;
          flex-direction: column;
          gap: 20px;
          width: 260px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price {
              gap: calc(100vw * (20 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price {
              gap: 20px; } }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price {
              width: calc(100vw * (260 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price {
              width: 260px; } }
          @media screen and (max-width: 1000px) {
            .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price {
              width: 100%; } }
          .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .price {
            font-family: var(--second-family);
            font-weight: 300;
            font-size: 40px;
            font-size: clamp(20px, calc( 20px + (40 - 20) * ((100vw - 1000px) / (1920 - 1000)) ), 40px);
            color: #2b2c33; }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .price {
                font-size: 40px; } }
          .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .post_title {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: clamp(9px, calc( 9px + (18 - 9) * ((100vw - 1000px) / (1920 - 1000)) ), 18px);
            color: #2b2c33; }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .post_title {
                font-size: 18px; } }
          .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .btn_block {
            margin-top: 20px; }
            @media screen and (min-width: 1001px) and (max-width: 1920px) {
              .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .btn_block {
                margin-top: calc(100vw * (20 / 1920)); } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .btn_block {
                margin-top: 20px; } }
            @media screen and (max-width: 1000px) {
              .floor-plans_section .content_block .content_card .col.col_price .wrap_col_price .btn_block {
                width: 100%;
                display: flex;
                flex-flow: row nowrap;
                justify-content: center; } }

.payment_plan_section {
  margin-top: 51px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .payment_plan_section {
      margin-top: calc(100vw * (51 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .payment_plan_section {
      margin-top: 51px; } }
  .payment_plan_section .wrap_section {
    width: 97%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(29, 29, 29, 0.1);
    border-radius: 15px;
    padding-top: 103px;
    padding-left: 90px;
    padding-bottom: 112px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 150px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .payment_plan_section .wrap_section {
        border-radius: calc(100vw * (15 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .wrap_section {
        border-radius: 15px; } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .wrap_section {
        border-radius: 7px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .payment_plan_section .wrap_section {
        padding-top: calc(100vw * (103 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .wrap_section {
        padding-top: 103px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .payment_plan_section .wrap_section {
        padding-left: calc(100vw * (90 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .wrap_section {
        padding-left: 90px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .payment_plan_section .wrap_section {
        padding-bottom: calc(100vw * (112 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .wrap_section {
        padding-bottom: 112px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .payment_plan_section .wrap_section {
        gap: calc(100vw * (150 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .wrap_section {
        gap: 150px; } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .wrap_section {
        flex-direction: column;
        padding: 0;
        border: none;
        gap: 80px;
        width: 90%; } }
  .payment_plan_section .col.col_header {
    display: flex;
    flex-flow: column;
    gap: 30px;
    justify-content: center; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .payment_plan_section .col.col_header {
        gap: calc(100vw * (30 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .col.col_header {
        gap: 30px; } }
    .payment_plan_section .col.col_header h2 {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: clamp(60px, calc( 60px + (120 - 60) * ((100vw - 1000px) / (1920 - 1000)) ), 120px);
      color: #2b2c33;
      margin-bottom: 20px;
      white-space: nowrap; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .payment_plan_section .col.col_header h2 {
          margin-bottom: calc(100vw * (20 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .payment_plan_section .col.col_header h2 {
          margin-bottom: 20px; } }
      @media screen and (max-width: 1000px) {
        .payment_plan_section .col.col_header h2 {
          white-space: wrap;
          margin-bottom: 0; } }
    .payment_plan_section .col.col_header .post_title {
      font-family: var(--font-family);
      font-weight: 500;
      font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
      line-height: 157%;
      color: rgba(43, 44, 51, 0.35);
      width: 387px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .payment_plan_section .col.col_header .post_title {
          width: calc(100vw * (387 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .payment_plan_section .col.col_header .post_title {
          width: 387px; } }
      @media screen and (max-width: 1000px) {
        .payment_plan_section .col.col_header .post_title {
          display: none; } }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .col.col_header .btn_block {
        display: none; } }
  .payment_plan_section .col.col_plan-info {
    width: 100%;
    display: flex;
    flex-flow: row nowrap; }
    .payment_plan_section .col.col_plan-info .vertical_line {
      width: 1px;
      background-color: rgba(0, 0, 0, 0.1);
      transform: translate(6px, -6px);
      z-index: -1; }
    .payment_plan_section .col.col_plan-info ul {
      display: flex;
      flex-flow: column nowrap;
      width: 100%;
      gap: 30px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .payment_plan_section .col.col_plan-info ul {
          gap: calc(100vw * (30 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .payment_plan_section .col.col_plan-info ul {
          gap: 30px; } }
      @media screen and (max-width: 1000px) {
        .payment_plan_section .col.col_plan-info ul {
          gap: 40px; } }
      .payment_plan_section .col.col_plan-info ul li {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        width: 100%;
        font-weight: 500;
        font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
        font-family: var(--font-family);
        color: #2b2c33; }
        @media screen and (max-width: 1000px) {
          .payment_plan_section .col.col_plan-info ul li {
            font-size: 14px; } }
        .payment_plan_section .col.col_plan-info ul li::before {
          content: url(../images/icons/list_circl_gray.svg);
          width: 11px;
          height: 11px;
          padding-right: 40px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .payment_plan_section .col.col_plan-info ul li::before {
              width: calc(100vw * (11 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li::before {
              width: 11px; } }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .payment_plan_section .col.col_plan-info ul li::before {
              height: calc(100vw * (11 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li::before {
              height: 11px; } }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .payment_plan_section .col.col_plan-info ul li::before {
              padding-right: calc(100vw * (40 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li::before {
              padding-right: 40px; } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li::before {
              padding-right: 20px; } }
        .payment_plan_section .col.col_plan-info ul li:first-child::before {
          content: url(../images/icons/list_circl.svg); }
        .payment_plan_section .col.col_plan-info ul li .price {
          width: 250px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .payment_plan_section .col.col_plan-info ul li .price {
              width: calc(100vw * (250 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li .price {
              width: 250px; } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li .price {
              width: unset; } }
        .payment_plan_section .col.col_plan-info ul li .title {
          width: 430px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            .payment_plan_section .col.col_plan-info ul li .title {
              width: calc(100vw * (430 / 1920)); } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li .title {
              width: 430px; } }
          @media screen and (max-width: 1000px) {
            .payment_plan_section .col.col_plan-info ul li .title {
              width: 200px;
              margin-left: auto; } }
        @media screen and (max-width: 1000px) {
          .payment_plan_section .col.col_plan-info ul li .istallment {
            display: none; } }
  .payment_plan_section .btn_block_mobile {
    display: none; }
    @media screen and (max-width: 1000px) {
      .payment_plan_section .btn_block_mobile {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-top: -20px; }
        .payment_plan_section .btn_block_mobile a {
          width: 100%; } }

.virtual_tour_section {
  margin-top: 19px;
  height: 840px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .virtual_tour_section {
      margin-top: calc(100vw * (19 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .virtual_tour_section {
      margin-top: 19px; } }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .virtual_tour_section {
      height: calc(100vw * (840 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .virtual_tour_section {
      height: 840px; } }
  @media screen and (max-width: 1000px) {
    .virtual_tour_section {
      margin-top: 92px;
      height: auto; } }
  .virtual_tour_section .wrap_section {
    height: 100%;
    width: 97%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: row nowrap;
    border-radius: 15px;
    overflow: clip; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .virtual_tour_section .wrap_section {
        border-radius: calc(100vw * (15 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .wrap_section {
        border-radius: 15px; } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .wrap_section {
        border-radius: 7px; } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .wrap_section {
        flex-direction: column-reverse;
        width: 95%; } }
  .virtual_tour_section .col.col_title {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    width: 43%;
    background-color: #00b0ae;
    color: white;
    padding-left: 54px;
    padding-bottom: 73px;
    padding-right: 30px;
    gap: 30px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .virtual_tour_section .col.col_title {
        padding-left: calc(100vw * (54 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .col.col_title {
        padding-left: 54px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .virtual_tour_section .col.col_title {
        padding-bottom: calc(100vw * (73 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .col.col_title {
        padding-bottom: 73px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .virtual_tour_section .col.col_title {
        padding-right: calc(100vw * (30 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .col.col_title {
        padding-right: 30px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .virtual_tour_section .col.col_title {
        gap: calc(100vw * (30 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .col.col_title {
        gap: 30px; } }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .col.col_title {
        width: 100%;
        gap: 30px;
        padding: 15px;
        padding-top: 37px;
        padding-bottom: 44px; } }
    .virtual_tour_section .col.col_title .pre_title {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: clamp(23px, calc( 23px + (45 - 23) * ((100vw - 1000px) / (1920 - 1000)) ), 45px);
      color: #fff;
      margin-bottom: -25px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .virtual_tour_section .col.col_title .pre_title {
          margin-bottom: calc(100vw * (-25 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title .pre_title {
          margin-bottom: -25px; } }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title .pre_title {
          margin-bottom: -11px;
          font-size: 30px; } }
    .virtual_tour_section .col.col_title h2 {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: clamp(70px, calc( 70px + (140 - 70) * ((100vw - 1000px) / (1920 - 1000)) ), 140px);
      color: #fff; }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title h2 {
          font-size: 65px; } }
    .virtual_tour_section .col.col_title .post_title {
      font-family: var(--font-family);
      font-weight: 500;
      font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
      line-height: 143%;
      color: #fff;
      width: 340px;
      margin-left: 19px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .virtual_tour_section .col.col_title .post_title {
          width: calc(100vw * (340 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title .post_title {
          width: 340px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .virtual_tour_section .col.col_title .post_title {
          margin-left: calc(100vw * (19 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title .post_title {
          margin-left: 19px; } }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title .post_title {
          font-size: 14px;
          margin-left: 0;
          width: 98%;
          margin-left: auto;
          margin-right: auto; } }
    .virtual_tour_section .col.col_title .btn_block {
      margin-left: 19px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .virtual_tour_section .col.col_title .btn_block {
          margin-left: calc(100vw * (19 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title .btn_block {
          margin-left: 19px; } }
      @media screen and (max-width: 1000px) {
        .virtual_tour_section .col.col_title .btn_block {
          margin-left: 0;
          margin-top: 10px; } }
      .virtual_tour_section .col.col_title .btn_block a {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
        color: #00b0ae; }
        @media screen and (max-width: 1000px) {
          .virtual_tour_section .col.col_title .btn_block a {
            font-size: 16px;
            width: 100%; } }
  .virtual_tour_section .col.col_image {
    width: 57%; }
    .virtual_tour_section .col.col_image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .virtual_tour_section .col.col_image .cover_bg {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media screen and (max-width: 1000px) {
      .virtual_tour_section .col.col_image {
        width: 100%;
        height: 600px; } }
    @media screen and (max-width: 560px) {
      .virtual_tour_section .col.col_image {
        width: 100%;
        height: 419px; } }

.comfort_section {
  margin-top: 190px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .comfort_section {
      margin-top: calc(100vw * (190 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .comfort_section {
      margin-top: 190px; } }
  @media screen and (max-width: 1000px) {
    .comfort_section {
      margin-top: 120px; } }
  .comfort_section .wrap_section {
    width: 97%;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 1000px) {
      .comfort_section .wrap_section {
        width: 90%; } }
  .comfort_section .header_comfort_section h2 {
    font-family: var(--second-family);
    font-weight: 300;
    font-size: clamp(45px, calc( 45px + (90 - 45) * ((100vw - 1000px) / (1920 - 1000)) ), 90px);
    line-height: 120%;
    color: #2b2c33;
    width: 1490px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .comfort_section .header_comfort_section h2 {
        width: calc(100vw * (1490 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .comfort_section .header_comfort_section h2 {
        width: 1490px; } }
    @media screen and (max-width: 1000px) {
      .comfort_section .header_comfort_section h2 {
        width: 100%; }
        .comfort_section .header_comfort_section h2 br {
          display: none; } }
  .comfort_section .content_block {
    margin-top: 87px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 80px;
    column-gap: 40px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .comfort_section .content_block {
        margin-top: calc(100vw * (87 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .comfort_section .content_block {
        margin-top: 87px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .comfort_section .content_block {
        row-gap: calc(100vw * (80 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .comfort_section .content_block {
        row-gap: 80px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .comfort_section .content_block {
        column-gap: calc(100vw * (40 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .comfort_section .content_block {
        column-gap: 40px; } }
    @media screen and (max-width: 1000px) {
      .comfort_section .content_block {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        margin-top: 45px;
        gap: 50px 30px; } }
    .comfort_section .content_block .card_comfort .img_wrap {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .comfort_section .content_block .card_comfort .img_wrap {
          border-radius: calc(100vw * (15 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .comfort_section .content_block .card_comfort .img_wrap {
          border-radius: 15px; } }
      .comfort_section .content_block .card_comfort .img_wrap:hover img {
        transform: scale(1.1); }
      @media screen and (max-width: 1000px) {
        .comfort_section .content_block .card_comfort .img_wrap {
          border-radius: 10px; } }
      .comfort_section .content_block .card_comfort .img_wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease; }
    .comfort_section .content_block .card_comfort .description {
      margin-top: 39px;
      font-family: var(--second-family);
      font-weight: 300;
      font-size: clamp(19px, calc( 19px + (38 - 19) * ((100vw - 1000px) / (1920 - 1000)) ), 38px);
      line-height: 120%;
      text-align: center;
      color: #2b2c33; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .comfort_section .content_block .card_comfort .description {
          margin-top: calc(100vw * (39 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .comfort_section .content_block .card_comfort .description {
          margin-top: 39px; } }
      @media screen and (max-width: 1000px) {
        .comfort_section .content_block .card_comfort .description {
          font-size: 26px;
          margin-top: 20px;
          text-align: left;
          padding-left: 15px; } }

.map_section {
  margin-top: 85px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .map_section {
      margin-top: calc(100vw * (85 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .map_section {
      margin-top: 85px; } }
  @media screen and (max-width: 1000px) {
    .map_section {
      margin-top: 80px; } }
  .map_section .wrap_section {
    position: relative;
    width: 97%;
    border-radius: 15px;
    overflow: clip;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .map_section .wrap_section {
        border-radius: calc(100vw * (15 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .map_section .wrap_section {
        border-radius: 15px; } }
    .map_section .wrap_section .map_filters {
      position: absolute;
      top: 30px;
      left: 70px;
      z-index: 2;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      gap: 10px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .map_section .wrap_section .map_filters {
          top: calc(100vw * (30 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .map_section .wrap_section .map_filters {
          top: 30px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .map_section .wrap_section .map_filters {
          left: calc(100vw * (70 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .map_section .wrap_section .map_filters {
          left: 70px; } }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .map_section .wrap_section .map_filters {
          gap: calc(100vw * (10 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .map_section .wrap_section .map_filters {
          gap: 10px; } }
      @media screen and (max-width: 1000px) {
        .map_section .wrap_section .map_filters {
          gap: 8px;
          flex-flow: row wrap;
          justify-content: flex-start;
          left: 30px; } }
      .map_section .wrap_section .map_filters button {
        background: white;
        height: 44px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        border: 1px solid rgba(29, 29, 29, 0.1);
        outline: none;
        transition: all 0.3s ease;
        cursor: pointer; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .map_section .wrap_section .map_filters button {
            height: calc(100vw * (44 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .map_section .wrap_section .map_filters button {
            height: 44px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .map_section .wrap_section .map_filters button {
            padding-left: calc(100vw * (20 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .map_section .wrap_section .map_filters button {
            padding-left: 20px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .map_section .wrap_section .map_filters button {
            padding-right: calc(100vw * (20 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .map_section .wrap_section .map_filters button {
            padding-right: 20px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .map_section .wrap_section .map_filters button {
            border-radius: calc(100vw * (100 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .map_section .wrap_section .map_filters button {
            border-radius: 100px; } }
        .map_section .wrap_section .map_filters button:hover {
          background-color: #2b2c33;
          color: white; }
        .map_section .wrap_section .map_filters button.active {
          background-color: #2b2c33;
          color: white; }
        @media screen and (max-width: 1000px) {
          .map_section .wrap_section .map_filters button {
            height: 30px;
            padding-left: 10px;
            padding-right: 10px;
            font-size: 14px; } }
    .map_section .wrap_section img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media screen and (max-width: 1000px) {
      .map_section .wrap_section {
        border-radius: 0;
        width: 100%; } }
  .map_section #map {
    position: relative;
    height: 726px;
    width: 100%;
    overflow: hidden; }
    .map_section #map .overlay_map {
      position: absolute;
      inset: 0;
      z-index: 10;
      display: none;
      justify-content: center;
      align-items: center;
      background-color: rgba(255, 255, 255, 0.3);
      cursor: pointer; }
      .map_section #map .overlay_map.active {
        display: flex; }
      .map_section #map .overlay_map .overlay_notation {
        position: relative;
        z-index: 11;
        opacity: 0.8;
        font-size: clamp(6px, calc( 6px + (12 - 6) * ((100vw - 1000px) / (1920 - 1000)) ), 12px); }
        @media screen and (max-width: 1000px) {
          .map_section #map .overlay_map .overlay_notation {
            font-size: 12px; } }
    @media screen and (max-width: 1000px) {
      .map_section #map {
        height: 520px; } }
  .map_section .project_map_controls {
    position: absolute;
    right: 18px;
    top: 600px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); }
    @media screen and (max-width: 1000px) {
      .map_section .project_map_controls {
        top: 400px; } }
  .map_section .project_map_zoom {
    width: 40px;
    height: 40px;
    border: 0;
    border-bottom: 1px solid rgba(29, 29, 29, 0.12);
    background: #fff;
    color: #2b2c33;
    font-size: 24px;
    line-height: 1;
    cursor: pointer; }
    .map_section .project_map_zoom:last-child {
      border-bottom: 0; }
    .map_section .project_map_zoom:hover {
      background: #f3f3f3; }
  .map_section .project_map_marker {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #d8d8d8;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25); }
    .map_section .project_map_marker span {
      display: block;
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover; }
  .map_section .project_map_infrastructure_marker {
    position: relative;
    width: 30px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
    display: flex; }
    .map_section .project_map_infrastructure_marker::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #000;
      transform: translateX(-50%); }
    .map_section .project_map_infrastructure_marker::after {
      content: "";
      position: absolute;
      top: 25px;
      left: 50%;
      width: 2px;
      height: 10px;
      border-radius: 99px;
      background: #000;
      transform: translateX(-50%); }
    .map_section .project_map_infrastructure_marker .project_map_infrastructure_marker__icon {
      position: relative;
      z-index: 1;
      width: 16px;
      height: 16px;
      margin: 5px auto 0;
      display: flex;
      align-items: center;
      justify-content: center; }
    .map_section .project_map_infrastructure_marker svg {
      width: 100%;
      height: 100%;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round; }
  .map_section .project_map_popup .mapboxgl-popup-content {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16); }
  .map_section .project_map_popup .mapboxgl-popup-close-button {
    width: 28px;
    height: 28px;
    font-size: 20px;
    color: #2b2c33;
    z-index: 2; }
  .map_section .project_map_card {
    width: 340px;
    background: #fff; }
    .map_section .project_map_card .project_map_card__image {
      height: 150px;
      background-position: center;
      background-size: cover; }
    .map_section .project_map_card .project_map_card__body {
      padding: 22px; }
    .map_section .project_map_card h3 {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: 28px;
      line-height: 110%;
      color: #2b2c33;
      margin-bottom: 10px; }
    .map_section .project_map_card p {
      font-weight: 500;
      font-size: 14px;
      line-height: 150%;
      color: rgba(43, 44, 51, 0.7);
      margin-bottom: 16px; }
    .map_section .project_map_card dl {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 18px; }
      .map_section .project_map_card dl div {
        display: flex;
        justify-content: space-between;
        gap: 18px; }
    .map_section .project_map_card dt,
    .map_section .project_map_card dd {
      font-size: 13px;
      line-height: 140%; }
    .map_section .project_map_card dt {
      color: rgba(43, 44, 51, 0.55); }
    .map_section .project_map_card dd {
      color: #2b2c33;
      font-weight: 700;
      text-align: right; }
    .map_section .project_map_card .project_map_card__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 42px;
      padding: 0 18px;
      border-radius: 100px;
      background: #2b2c33;
      color: #fff;
      font-weight: 500;
      font-size: 14px;
      text-decoration: none; }
  .map_section .project_map_popup_table {
    width: 250px;
    padding: 18px;
    background: #fff; }
    .map_section .project_map_popup_table div {
      display: grid;
      grid-template-columns: 95px 1fr;
      gap: 12px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(43, 44, 51, 0.1); }
      .map_section .project_map_popup_table div:last-child {
        border-bottom: 0; }
    .map_section .project_map_popup_table span,
    .map_section .project_map_popup_table strong,
    .map_section .project_map_popup_table a {
      font-size: 13px;
      line-height: 145%; }
    .map_section .project_map_popup_table span {
      color: rgba(43, 44, 51, 0.55); }
    .map_section .project_map_popup_table strong {
      color: #2b2c33;
      font-weight: 700; }
    .map_section .project_map_popup_table a {
      color: #2b2c33;
      font-weight: 700;
      text-decoration: underline; }
  .map_section .features_block {
    margin-top: 80px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .map_section .features_block {
        margin-top: calc(100vw * (80 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .map_section .features_block {
        margin-top: 80px; } }
    .map_section .features_block ul {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-around; }
      @media screen and (max-width: 1000px) {
        .map_section .features_block ul {
          flex-direction: column;
          gap: 60px; } }
      .map_section .features_block ul li {
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        gap: 25px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .map_section .features_block ul li {
            gap: calc(100vw * (25 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .map_section .features_block ul li {
            gap: 25px; } }
        @media screen and (max-width: 1000px) {
          .map_section .features_block ul li {
            gap: 25px; } }
        .map_section .features_block ul li .title {
          font-size: clamp(15px, calc( 15px + (30 - 15) * ((100vw - 1000px) / (1920 - 1000)) ), 30px);
          text-transform: uppercase;
          color: #2b2c33c0;
          font-size: 30px;
          text-align: center; }
        .map_section .features_block ul li .description {
          font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
          line-height: 120%;
          text-align: center;
          color: rgba(43, 44, 51, 0.5); }
          @media screen and (max-width: 1000px) {
            .map_section .features_block ul li .description {
              font-size: 16px; } }
  @media screen and (max-width: 1000px) {
    .map_section .project_map_marker {
      width: 54px;
      height: 54px; }
    .map_section .project_map_card {
      width: 290px; }
      .map_section .project_map_card .project_map_card__image {
        height: 120px; }
      .map_section .project_map_card .project_map_card__body {
        padding: 18px; }
      .map_section .project_map_card h3 {
        font-size: 24px; } }

footer {
  position: relative;
  margin-top: 150px;
  z-index: 5; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    footer {
      margin-top: calc(100vw * (150 / 1920)); } }
  @media screen and (max-width: 1000px) {
    footer {
      margin-top: 150px; } }
  @media screen and (max-width: 1000px) {
    footer {
      margin-top: 80px; } }
  footer .wrap_footer {
    background-color: white;
    width: 97%;
    margin-left: auto;
    margin-right: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 66px;
    padding-right: 66px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .wrap_footer {
        border-top-left-radius: calc(100vw * (20 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .wrap_footer {
        border-top-left-radius: 20px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .wrap_footer {
        border-top-right-radius: calc(100vw * (20 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .wrap_footer {
        border-top-right-radius: 20px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .wrap_footer {
        padding-top: calc(100vw * (50 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .wrap_footer {
        padding-top: 50px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .wrap_footer {
        padding-bottom: calc(100vw * (50 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .wrap_footer {
        padding-bottom: 50px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .wrap_footer {
        padding-left: calc(100vw * (66 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .wrap_footer {
        padding-left: 66px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .wrap_footer {
        padding-right: calc(100vw * (66 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .wrap_footer {
        padding-right: 66px; } }
    @media screen and (max-width: 1000px) {
      footer .wrap_footer {
        display: flex;
        flex-flow: column nowrap;
        padding: 36px;
        width: 100%; } }
  footer .privacy_block {
    display: flex;
    flex-flow: row nowrap;
    gap: 30px;
    margin-left: auto;
    width: fit-content;
    align-items: center; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .privacy_block {
        gap: calc(100vw * (30 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .privacy_block {
        gap: 30px; } }
    @media screen and (max-width: 1000px) {
      footer .privacy_block {
        order: 2;
        margin-left: unset;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid #000;
        padding-bottom: 23px; } }
    footer .privacy_block .yer {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: clamp(10px, calc( 10px + (20 - 10) * ((100vw - 1000px) / (1920 - 1000)) ), 20px);
      color: #000;
      padding-bottom: 5px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        footer .privacy_block .yer {
          padding-bottom: calc(100vw * (5 / 1920)); } }
      @media screen and (max-width: 1000px) {
        footer .privacy_block .yer {
          padding-bottom: 5px; } }
      @media screen and (max-width: 1000px) {
        footer .privacy_block .yer {
          font-size: 14px; } }
    footer .privacy_block a {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
      color: #acacac;
      padding-bottom: 8px;
      border-bottom: 1px solid #acacac; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        footer .privacy_block a {
          padding-bottom: calc(100vw * (8 / 1920)); } }
      @media screen and (max-width: 1000px) {
        footer .privacy_block a {
          padding-bottom: 8px; } }
      footer .privacy_block a:hover {
        border-bottom: 1px solid transparent; }
      @media screen and (max-width: 1000px) {
        footer .privacy_block a {
          font-size: 16px;
          padding-bottom: 0;
          border: none; }
          footer .privacy_block a:hover {
            border-bottom: none; } }
  footer .header_block {
    margin-top: 45px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 155px;
    border-bottom: 1px solid #000; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .header_block {
        margin-top: calc(100vw * (45 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .header_block {
        margin-top: 45px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .header_block {
        padding-bottom: calc(100vw * (155 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .header_block {
        padding-bottom: 155px; } }
    @media screen and (max-width: 1000px) {
      footer .header_block {
        order: 1;
        margin-top: 0;
        padding-bottom: 60px;
        border: none; } }
    footer .header_block .footer_menu {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: clamp(38px, calc( 38px + (75 - 38) * ((100vw - 1000px) / (1920 - 1000)) ), 75px);
      line-height: 100%;
      color: #141414;
      text-transform: lowercase; }
      footer .header_block .footer_menu a:hover {
        color: #545454; }
      @media screen and (max-width: 1000px) {
        footer .header_block .footer_menu {
          font-family: var(--font-family);
          font-weight: 400;
          font-size: 40px;
          line-height: 108%; } }
    footer .header_block .btn_block a:hover {
      opacity: 0.8; }
    footer .header_block .btn_block img {
      width: 61px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        footer .header_block .btn_block img {
          width: calc(100vw * (61 / 1920)); } }
      @media screen and (max-width: 1000px) {
        footer .header_block .btn_block img {
          width: 61px; } }
    @media screen and (max-width: 1000px) {
      footer .header_block .btn_block {
        display: none; } }
  footer .contact_block {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-top: 39px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .contact_block {
        margin-top: calc(100vw * (39 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .contact_block {
        margin-top: 39px; } }
    @media screen and (max-width: 1000px) {
      footer .contact_block {
        flex-direction: column-reverse; } }
    @media screen and (max-width: 1000px) {
      footer .contact_block {
        order: 3; } }
  footer .col.col_btn a {
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: clamp(13px, calc( 13px + (25 - 13) * ((100vw - 1000px) / (1920 - 1000)) ), 25px);
    line-height: 64%;
    color: #141414; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .col.col_btn a {
        gap: calc(100vw * (12 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .col.col_btn a {
        gap: 12px; } }
    footer .col.col_btn a:hover {
      text-decoration: underline; }
    footer .col.col_btn a img {
      width: 28px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        footer .col.col_btn a img {
          width: calc(100vw * (28 / 1920)); } }
      @media screen and (max-width: 1000px) {
        footer .col.col_btn a img {
          width: 28px; } }
    @media screen and (max-width: 1000px) {
      footer .col.col_btn a {
        justify-content: center;
        font-size: 22px;
        gap: 14px;
        margin-top: 61px; }
        footer .col.col_btn a img {
          width: 22px; } }
  @media screen and (max-width: 1000px) {
    footer .col.col_info {
      border-bottom: 1px solid #000;
      padding-bottom: 40px; } }
  footer .col.col_info ul {
    display: flex;
    flex-flow: column nowrap;
    gap: 33px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .col.col_info ul {
        gap: calc(100vw * (33 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .col.col_info ul {
        gap: 33px; } }
    @media screen and (max-width: 1000px) {
      footer .col.col_info ul {
        gap: 41px; } }
    footer .col.col_info ul li {
      display: flex;
      flex-direction: column;
      gap: 11px;
      align-items: flex-end; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        footer .col.col_info ul li {
          gap: calc(100vw * (11 / 1920)); } }
      @media screen and (max-width: 1000px) {
        footer .col.col_info ul li {
          gap: 11px; } }
      @media screen and (max-width: 1000px) {
        footer .col.col_info ul li {
          align-items: flex-start;
          gap: 16px; } }
      footer .col.col_info ul li .label {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: clamp(10px, calc( 10px + (20 - 10) * ((100vw - 1000px) / (1920 - 1000)) ), 20px);
        line-height: 140%;
        color: #141414;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 20px;
        width: fit-content; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          footer .col.col_info ul li .label {
            gap: calc(100vw * (20 / 1920)); } }
        @media screen and (max-width: 1000px) {
          footer .col.col_info ul li .label {
            gap: 20px; } }
        footer .col.col_info ul li .label img {
          width: 19px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            footer .col.col_info ul li .label img {
              width: calc(100vw * (19 / 1920)); } }
          @media screen and (max-width: 1000px) {
            footer .col.col_info ul li .label img {
              width: 19px; } }
        @media screen and (max-width: 1000px) {
          footer .col.col_info ul li .label {
            font-size: 14px;
            gap: 10px; }
            footer .col.col_info ul li .label img {
              width: 13px; } }
      footer .col.col_info ul li .info {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: clamp(18px, calc( 18px + (35 - 18) * ((100vw - 1000px) / (1920 - 1000)) ), 35px);
        line-height: 109%;
        text-align: right;
        color: #141414;
        width: 500px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          footer .col.col_info ul li .info {
            width: calc(100vw * (500 / 1920)); } }
        @media screen and (max-width: 1000px) {
          footer .col.col_info ul li .info {
            width: 500px; } }
        @media screen and (max-width: 1000px) {
          footer .col.col_info ul li .info {
            width: 100%;
            text-align: left;
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 22px;
            line-height: 127%; } }
        footer .col.col_info ul li .info a:hover {
          text-decoration: underline; }
  footer .bottom_block {
    margin-top: 95px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      footer .bottom_block {
        margin-top: calc(100vw * (95 / 1920)); } }
    @media screen and (max-width: 1000px) {
      footer .bottom_block {
        margin-top: 95px; } }
    @media screen and (max-width: 1000px) {
      footer .bottom_block {
        order: 4;
        margin-top: 127px; } }
    footer .bottom_block .col.col_log {
      display: flex;
      flex-flow: column nowrap;
      gap: 7px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        footer .bottom_block .col.col_log {
          gap: calc(100vw * (7 / 1920)); } }
      @media screen and (max-width: 1000px) {
        footer .bottom_block .col.col_log {
          gap: 7px; } }
      footer .bottom_block .col.col_log .row_title {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
        line-height: 88%;
        color: #141414;
        gap: 5px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          footer .bottom_block .col.col_log .row_title {
            gap: calc(100vw * (5 / 1920)); } }
        @media screen and (max-width: 1000px) {
          footer .bottom_block .col.col_log .row_title {
            gap: 5px; } }
        @media screen and (max-width: 1000px) {
          footer .bottom_block .col.col_log .row_title {
            font-size: 16px; } }
        footer .bottom_block .col.col_log .row_title img {
          width: 57px; }
          @media screen and (min-width: 1001px) and (max-width: 1920px) {
            footer .bottom_block .col.col_log .row_title img {
              width: calc(100vw * (57 / 1920)); } }
          @media screen and (max-width: 1000px) {
            footer .bottom_block .col.col_log .row_title img {
              width: 57px; } }
          @media screen and (max-width: 1000px) {
            footer .bottom_block .col.col_log .row_title img {
              width: 57px; } }
      footer .bottom_block .col.col_log .row_post_title {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: clamp(7px, calc( 7px + (14 - 7) * ((100vw - 1000px) / (1920 - 1000)) ), 14px);
        color: #959595; }
        @media screen and (max-width: 1000px) {
          footer .bottom_block .col.col_log .row_post_title {
            font-size: 14px; } }
    footer .bottom_block .col.col_socials ul {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      gap: 50px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        footer .bottom_block .col.col_socials ul {
          gap: calc(100vw * (50 / 1920)); } }
      @media screen and (max-width: 1000px) {
        footer .bottom_block .col.col_socials ul {
          gap: 50px; } }
      footer .bottom_block .col.col_socials ul li a {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 9px;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: clamp(13px, calc( 13px + (25 - 13) * ((100vw - 1000px) / (1920 - 1000)) ), 25px);
        color: #141414; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          footer .bottom_block .col.col_socials ul li a {
            gap: calc(100vw * (9 / 1920)); } }
        @media screen and (max-width: 1000px) {
          footer .bottom_block .col.col_socials ul li a {
            gap: 9px; } }
        footer .bottom_block .col.col_socials ul li a:hover {
          text-decoration: underline; }
    @media screen and (max-width: 1000px) {
      footer .bottom_block .col.col_socials {
        display: none; } }
    footer .bottom_block .col.btn_block_mobile {
      display: none; }
      @media screen and (max-width: 1000px) {
        footer .bottom_block .col.btn_block_mobile {
          display: block;
          width: 61px;
          height: 61px; } }

.default_page_section {
  padding-top: 100px;
  padding-bottom: 100px; }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .default_page_section {
      padding-top: calc(100vw * (100 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .default_page_section {
      padding-top: 100px; } }
  @media screen and (min-width: 1001px) and (max-width: 1920px) {
    .default_page_section {
      padding-bottom: calc(100vw * (100 / 1920)); } }
  @media screen and (max-width: 1000px) {
    .default_page_section {
      padding-bottom: 100px; } }
  @media screen and (max-width: 1000px) {
    .default_page_section {
      padding-top: 30px;
      padding-bottom: 60px; } }
  .default_page_section .wrap_section {
    width: 1200px;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section .wrap_section {
        width: calc(100vw * (1200 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section .wrap_section {
        width: 1200px; } }
    @media screen and (max-width: 1000px) {
      .default_page_section .wrap_section {
        width: 90%; } }
  .default_page_section h1 {
    font-family: var(--second-family);
    font-weight: 150;
    font-size: clamp(60px, calc( 60px + (120 - 60) * ((100vw - 1000px) / (1920 - 1000)) ), 120px);
    line-height: 90%;
    color: #2b2c33;
    margin-bottom: 40px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section h1 {
        margin-bottom: calc(100vw * (40 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section h1 {
        margin-bottom: 40px; } }
    @media screen and (max-width: 1000px) {
      .default_page_section h1 {
        font-size: 60px;
        margin-bottom: 50px; } }
  .default_page_section article {
    margin-top: 80px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section article {
        margin-top: calc(100vw * (80 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section article {
        margin-top: 80px; } }
    @media screen and (max-width: 1000px) {
      .default_page_section article {
        margin-bottom: 50px; } }
    .default_page_section article:last-child {
      margin-bottom: 0; }
  .default_page_section h2 {
    font-family: var(--font-family);
    font-weight: 150;
    font-size: clamp(25px, calc( 25px + (50 - 25) * ((100vw - 1000px) / (1920 - 1000)) ), 50px);
    color: #2b2c33;
    margin-bottom: 30px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section h2 {
        margin-bottom: calc(100vw * (30 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section h2 {
        margin-bottom: 30px; } }
    @media screen and (max-width: 1000px) {
      .default_page_section h2 {
        font-size: 32px;
        margin-bottom: 20px; } }
  .default_page_section p,
  .default_page_section li,
  .default_page_section address {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(8px, calc( 8px + (16 - 8) * ((100vw - 1000px) / (1920 - 1000)) ), 16px);
    line-height: 180%;
    color: rgba(43, 44, 51, 0.75); }
    @media screen and (max-width: 1000px) {
      .default_page_section p,
      .default_page_section li,
      .default_page_section address {
        font-size: 14px;
        line-height: 180%; } }
  .default_page_section p {
    margin-bottom: 20px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section p {
        margin-bottom: calc(100vw * (20 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section p {
        margin-bottom: 20px; } }
    .default_page_section p:last-child {
      margin-bottom: 0; }
  .default_page_section ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px; }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section ul {
        gap: calc(100vw * (16 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section ul {
        gap: 16px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section ul {
        margin-top: calc(100vw * (20 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section ul {
        margin-top: 20px; } }
    @media screen and (min-width: 1001px) and (max-width: 1920px) {
      .default_page_section ul {
        margin-bottom: calc(100vw * (20 / 1920)); } }
    @media screen and (max-width: 1000px) {
      .default_page_section ul {
        margin-bottom: 20px; } }
    @media screen and (max-width: 1000px) {
      .default_page_section ul {
        gap: 12px;
        margin-top: 15px;
        margin-bottom: 15px; } }
    .default_page_section ul li {
      position: relative;
      padding-left: 30px; }
      @media screen and (min-width: 1001px) and (max-width: 1920px) {
        .default_page_section ul li {
          padding-left: calc(100vw * (30 / 1920)); } }
      @media screen and (max-width: 1000px) {
        .default_page_section ul li {
          padding-left: 30px; } }
      @media screen and (max-width: 1000px) {
        .default_page_section ul li {
          padding-left: 22px; } }
      .default_page_section ul li::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #00b0ae;
        left: 0;
        top: 12px; }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .default_page_section ul li::before {
            width: calc(100vw * (8 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .default_page_section ul li::before {
            width: 8px; } }
        @media screen and (min-width: 1001px) and (max-width: 1920px) {
          .default_page_section ul li::before {
            height: calc(100vw * (8 / 1920)); } }
        @media screen and (max-width: 1000px) {
          .default_page_section ul li::before {
            height: 8px; } }
        @media screen and (max-width: 1000px) {
          .default_page_section ul li::before {
            width: 6px;
            height: 6px;
            top: 10px; } }
  .default_page_section strong {
    font-weight: 700;
    color: #2b2c33; }
  .default_page_section a {
    color: #00b0ae;
    text-decoration: underline; }
    .default_page_section a:hover {
      text-decoration: none; }
  .default_page_section address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 10px; }

/*# sourceMappingURL=styles.css.map */
