@charset "UTF-8";
a[href^=tel] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css propery: value; pairs here */
}

:root {
  --c-white:rgba(255, 255, 255, 1);
  --c-gray-dark:rgba(77, 83, 86, 1);
  --c-gray-light:rgba(200, 201, 202, 1);
  --c-gray-50:rgba(240, 241, 242, 1);
  --c-blue:rgba(60, 170, 225, 1);
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Gotham";
  background: url("../images/bg.png");
  background-size: contain;
  background-color: var(--c-white);
  height: 100%;
}
body.overflowY {
  overflow-y: hidden;
}

h1,
h2,
h3 {
  color: var(--c-gray-700);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 48px;
  line-height: 72px;
}

h2 {
  font-size: 32px;
  line-height: 48px;
}

h3 {
  font-size: 24px;
  line-height: 36px;
}

h4 {
  font-size: 20px;
  line-height: 30px;
}

h5 {
  font-size: 16px;
  line-height: 24px;
}

h6 {
  font-size: 15px;
  line-height: 22.5;
}

a {
  text-decoration: none;
  transition: 200ms ease-in-out;
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
  -webkit-transition: 200ms ease-in-out;
  -moz-transition: 200ms ease-in-out;
  -ms-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  color: var(--c-gray-700);
}

img {
  display: block;
  width: 100%;
  height: auto;
}
img.icon {
  width: 24px;
  height: 24px;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.container {
  width: min(1224px, 100% - 32px);
  margin-inline: auto;
  display: block;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.noScroll {
  overflow-y: hidden;
}

.bold {
  font-weight: 400;
}

.grid {
  width: 100%;
  display: grid;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.btnMain {
  background: var(--c-blue);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: 2px solid var(--c-white);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
}
.btnMain span {
  color: var(--c-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
}
.btn:has(img) {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn:has(img) img {
  width: 24px;
  height: 24px;
}
.btnDark {
  background: var(--c-gray-dark);
  border: 2px solid var(--c-white);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.btnDark span {
  color: var(--c-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
}

.icon {
  width: inherit;
  height: inherit;
}

@media (max-width: 768px) {
  .m-grid-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.graph {
  width: 100%;
  display: block;
}
.graph__wrapper {
  width: 100%;
  display: block;
  aspect-ratio: 1102/640;
  overflow: hidden;
}
.graph__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .graph__wrapper {
    height: 366px;
    aspect-ratio: unset;
  }
  .graph .container {
    padding: 0;
  }
}

.map {
  width: 100%;
  display: block;
}
.map__wrapper {
  width: 100%;
  display: block;
  aspect-ratio: 1920/872;
  overflow: hidden;
}
.map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .map__wrapper {
    height: 351px;
    aspect-ratio: unset;
  }
}

.input {
  width: 100%;
  font-size: 16px;
  font-weight: 325;
  color: var(--c-gray-dark);
  line-height: 19.2px;
  font-family: "gotham";
  padding: 0 16px;
  border: 2px solid var(--c-gray-50);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  outline: none;
}
.input:not(.textarea) {
  height: 48px;
}
.inputButtun {
  width: 100%;
  height: 48px;
  text-align: center;
  background: var(--c-blue);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: none;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 350;
  color: var(--c-white);
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.textarea {
  height: 96px;
  padding: 16px;
}

input[type=checkbox] {
  background: red;
}

.myImages {
  cursor: pointer;
}

.header {
  width: 100%;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
.header__wrapper .open {
  display: none;
}
.header .logo {
  width: 96px;
  height: 123px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header .logo a {
  display: block;
  width: 100%;
  height: inherit;
}
.header .logo a svg {
  width: 96px;
  height: 123px;
}
.header #headerBg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  background: var(--c-blue);
  will-change: transform;
  z-index: 99;
}
.header__mobile {
  display: none;
}
@media (max-width: 768px) {
  .header__wrapper {
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 16px;
  }
  .header__wrapper .nav {
    display: none;
    pointer-events: none;
    visibility: hidden;
  }
  .header .logo {
    width: 48px;
    height: 62px;
  }
  .header .logo a svg {
    width: 48px;
    height: 62px;
  }
  .header .logo a svg use {
    height: inherit;
  }
  .header #headerBg {
    opacity: 1;
    visibility: visible;
    --active:0%;
  }
  .header #headerBg::after {
    content: "";
    position: fixed;
    bottom: 36px;
    width: 167px;
    height: 216px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: url("/assets/images/svg/logo-white.svg");
    background-size: cover;
    opacity: var(--active);
    -webkit-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
  }
  .header .open {
    opacity: 1;
    display: block;
    pointer-events: unset;
    cursor: pointer;
    visibility: visible;
    width: 24px;
    height: 24px;
  }
  .header .open svg {
    width: 24px;
    height: 24px;
  }
  .header__mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99;
    width: 100%;
  }
  .header__mobile .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .header__mobile .nav__header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header__mobile .nav__header a {
    width: 48px;
    height: 62px;
  }
  .header__mobile .nav__header .close {
    width: 24px;
    height: 24px;
  }
  .header__mobile .nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    width: 100%;
    right: -100%;
    padding-left: 0px !important;
  }
  .header__mobile .nav .menu li {
    width: 100%;
    --after-opacity: 0;
    --after-right:24px;
  }
  .header__mobile .nav .menu li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__mobile .nav .menu li a span {
    font-weight: 400;
    color: var(--c-white);
  }
  .header__mobile .nav .menu li a::after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.8' clip-path='url(%23clip0_191_355489)'%3E%3Cpath d='M3.31982 0.487503L8.57262 5.7403C8.71622 5.88365 8.71622 6.11635 8.57262 6.2597L3.31982 11.5125' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_191_355489'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    opacity: var(--after-opacity);
    position: relative;
    right: var(--after-right);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
}

.nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.nav .menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 110px;
     -moz-column-gap: 110px;
          column-gap: 110px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav .menu li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}
.nav .menu li a {
  display: block;
}
.nav .menu li a span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--c-gray-dark);
}

.navLast .menu {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Light.eot");
  src: url("../fonts/Gotham-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Light.woff2") format("woff2"), url("../fonts/Gotham-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Black.eot");
  src: url("../fonts/Gotham-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Black.woff2") format("woff2"), url("../fonts/Gotham-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.eot");
  src: url("../fonts/Gotham-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Book";
  src: url("../fonts/Gotham-BookItalic.eot");
  src: url("../fonts/Gotham-BookItalic.eot?#iefix") format("embedded-opentype"), url("Gotham-BookItalic.woff2") format("woff2"), url("Gotham-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-BoldItalic.eot");
  src: url("../fonts/Gotham-BoldItalic.eot?#iefix") format("embedded-opentype"), url("Gotham-BoldItalic.woff2") format("woff2"), url("Gotham-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-BlackItalic.eot");
  src: url("../fonts/Gotham-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-BlackItalic.woff2") format("woff2"), url("../fonts/Gotham-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-LightItalic.eot");
  src: url("../fonts/Gotham-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-LightItalic.woff2") format("woff2"), url("../fonts/Gotham-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "adelia";
  src: url("../fonts/adelia.eot");
  src: url("../fonts/adelia.eot?#iefix") format("embedded-opentype"), url("../fonts/adelia.woff2") format("woff2"), url("../fonts/adelia.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Book";
  src: url("../fonts/Gotham-Book.eot");
  src: url("../fonts/Gotham-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Medium.eot");
  src: url("../fonts/Gotham-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-ThinItalic.eot");
  src: url("../fonts/Gotham-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-ThinItalic.woff2") format("woff2"), url("../fonts/Gotham-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Extra";
  src: url("../fonts/Gotham-ExtraLightItalic.eot");
  src: url("../fonts/Gotham-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Gotham-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-MediumItalic.eot");
  src: url("../fonts/Gotham-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-MediumItalic.woff2") format("woff2"), url("../fonts/Gotham-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Thin.eot");
  src: url("../fonts/Gotham-Thin.eot?#iefix") format("embedded-opentype"), url("Gotham-Thin.woff2") format("woff2"), url("Gotham-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Extra";
  src: url("../fonts/Gotham-ExtraLight.eot");
  src: url("../fonts/Gotham-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-ExtraLight.woff2") format("woff2"), url("../fonts/Gotham-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Ultra";
  src: url("../fonts/Gotham-UltraItalic.eot");
  src: url("../fonts/Gotham-UltraItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-UltraItalic.woff2") format("woff2"), url("../fonts/Gotham-UltraItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Ultra";
  src: url("../fonts/Gotham-Ultra.eot");
  src: url("../fonts/Gotham-Ultra.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Ultra.woff2") format("woff2"), url("../fonts/Gotham-Ultra.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.video-mask-top,
.video-mask-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2; /* videonun üstüne çıksın */
  pointer-events: none; /* tıklamayı engellemesin */
}

.video-mask-top {
  top: 0;
}

.video-mask-bottom {
  bottom: 0;
}

.slider {
  width: 100%;
  display: block;
}
.slider__wrapper {
  width: 100%;
  display: block;
  position: relative;
}
.slider__box {
  width: 100%;
  display: block;
}
.slider__box .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  z-index: 99;
}
.slider__box .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--c-gray-dark);
  opacity: 40%;
}
.slider__box .swiper-pagination-bullet-active {
  opacity: 1;
}
.slider__item {
  width: 100%;
}
.slider__item img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.slider__item video {
  width: 100%;
  height: calc(100vh - 171px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider__cta {
  position: fixed;
  bottom: 32px;
  right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  z-index: 9;
}
@media (max-width: 768px) {
  .slider__cta {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    bottom: 16px;
    right: 0;
    width: 100%;
  }
  .slider__item {
    height: 408px;
  }
  .slider__item img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 74px;
    position: absolute;
  }
}

.head {
  width: 100%;
  padding: 64px 0 0 0;
}
.head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  overflow-y: hidden;
  padding-top: 2px;
}
.head__title .line {
  width: 100%;
  background: var(--c-gray-light);
  position: relative;
  height: 1px;
}
.head__title .lineBefore {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  width: 224px;
  background: var(--c-blue);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  opacity: 0;
}
.head__title span {
  font-size: 20px;
  line-height: 28.8px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--c-gray-dark);
  opacity: 0;
}
@media (max-width: 768px) {
  .head {
    padding: 32px 0 0 0;
  }
  .head__title .line::before {
    width: 128px;
  }
  .head__title span {
    font-size: 18px;
    line-height: 21.6px;
  }
}

.hero {
  width: 100%;
  display: block;
}
.heroBg img {
  height: 90vh;
}
.hero__wrapper {
  width: 100%;
}
.hero__wrapper .container {
  position: relative;
}
.heroCard {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  background: var(--c-white);
  padding: 51px 64px;
  border-left: 4px solid var(--c-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
.heroCard > a {
  margin-inline: auto;
}
.heroCard .title p {
  letter-spacing: 1.44px;
  font-size: 18px;
  line-height: 30.24px;
  font-weight: 350;
  color: var(--c-blue);
}
.heroCard .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
.heroCard .content p {
  font-size: 14px;
  text-align: justify;
  color: var(--c-gray-dark);
  font-weight: 350;
  line-height: 23.52px;
  letter-spacing: 1.12px;
}
.heroSecond .heroCard {
  padding: 24px;
}
@media (max-width: 768px) {
  .hero {
    padding: 16px 0;
  }
  .heroBg {
    height: 192px;
  }
  .heroBg img {
    height: inherit;
  }
  .heroCard {
    position: unset;
    padding: 24px;
  }
  .heroCard .content {
    z-index: 1;
  }
  .heroCard .content p {
    font-size: 12px;
    line-height: 20.16px;
  }
}

.card {
  padding: 16px 0;
}
.card__wrapper {
  width: 100%;
  gap: 24px;
}
.card__col {
  width: 100%;
}
.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  padding: 0 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--c-white);
}
.card__content .title p {
  font-size: 18px;
  font-weight: 325;
  line-height: 30.24px;
  color: var(--c-blue);
}
.card__content .content p {
  text-align: justify;
  font-size: 14px;
  font-weight: 325;
  line-height: 20.16px;
  color: var(--c-gray-dark);
}
.card__content.orderOne {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.card__img {
  height: 440px;
}
.card__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__img.gridFour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.card__img.gridFour img {
  width: 288px;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cardSecond .card__wrapper {
  display: grid;
  grid-template-columns: 444px 1fr 444px;
}
.card__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
.card__imgs img {
  width: 100%;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__imgs.fullHeight img {
  height: 100% !important;
}
@media (max-width: 768px) {
  .card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .card__img {
    height: 172px;
  }
  .card__img.gridFour {
    height: auto !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .card__img.gridFour img {
    width: 100%;
    height: 172px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card__img img {
    height: inherit;
  }
  .card__content {
    padding: 24px;
  }
  .card__content.orderOne {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
  .cardSecond .card__imgs, .cardSecond .card__img {
    width: calc(50% - 8px);
  }
  .cardSecond .card__imgs {
    row-gap: 16px;
  }
  .cardSecond .card__imgs img {
    height: 78px;
  }
  .cardSecond .card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cardSecond .card__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.contactus {
  width: 100%;
  display: block;
}
.contactus__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contactus__content {
  padding: 40px 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.contactus__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 2px solid var(--c-blue);
}
.contactus__item .icon {
  width: 72px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--c-white);
}
.contactus__item .icon img {
  width: 24px;
  height: 24px;
}
.contactus__item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
.contactus__item .content > span {
  font-size: 16px;
  color: var(--c-gray-dark);
  line-height: 19.2px;
  font-weight: 400;
}
.contactus__item .content p {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 325;
  color: var(--c-gray-dark);
}
.contactus__item .content .info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
}
.contactus__item .content .info em {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 325;
  color: var(--c-gray-dark);
}
.contactus__item .content .info a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 325;
  color: var(--c-gray-dark);
  margin-left: 7px;
}
.contactus__item .content .info a:nth-child(2) {
  margin-left: 0;
}
@media (max-width: 768px) {
  .contactus__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .contactus__item .info__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contactus__item .info__content a {
    margin-left: 0;
  }
}

.footer {
  width: 100%;
  display: block;
  padding: 24px 0 16px 0;
}
.footer__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.footer .logo {
  width: 48px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__copyright {
  width: 100%;
  text-align: center;
}
.footer__copyright span {
  font-size: 10px;
  font-weight: 325;
  line-height: 12px;
  color: var(--c-gray-dark);
}
.footer .footerline {
  width: 100%;
  opacity: 40%;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--c-gray-dark);
}

.brands {
  width: 100%;
  display: block;
  padding: 40px 0;
}
.brands__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 18px;
}
.brands .brand__item {
  opacity: 0;
  width: 120px;
  height: 96px;
  background: var(--c-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brands .brand__item img {
  width: 100%;
  height: auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 768px) {
  .brands__wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(100px, auto)); /* 2 satır oluştur */
    overflow-x: auto;
    display: grid;
    overflow-y: hidden;
    grid-auto-flow: column; /* Satırları sütunlarda düzenler */
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory; /* Daha düzgün kaydırma deneyimi için */
    -webkit-overflow-scrolling: touch; /* Mobilde daha iyi kaydırma */
  }
}

.tab {
  width: 100%;
  padding: 16px 0;
}
.tab__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid var(--c-gray-light);
}
.tab ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
.tab ul .item {
  padding: 28px 0;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.tab ul .item.active {
  border-bottom: 3px solid var(--c-blue);
}
.tab ul .item.active span {
  opacity: 1;
  font-weight: 400;
}
.tab ul .item span {
  font-weight: 325;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3.2px;
  color: var(--c-gray-dark);
  opacity: 80%;
}
.tabContent {
  display: none;
}
.tabContent.active {
  display: block;
}
@media (max-width: 768px) {
  .tab ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    overflow-x: scroll;
    width: 100%;
  }
  .tab ul .item {
    padding: 30.5px 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .tab ul .item span {
    font-size: 16px;
    line-height: 19.2px;
  }
}

.gallery {
  width: 100%;
}
.gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: scroll;
  gap: 24px;
  margin: 48px 0 33px 0;
}
.gallery .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  gap: 24px;
  max-height: 808px;
}
.gallery .item {
  width: 100%;
  height: 392px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 392px;
          flex: 1 1 392px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.gallery .item.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
.gallery .item.grid-1 img {
  height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .item img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.plans {
  width: 100%;
  display: block;
}
.plans__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
.plans .item {
  width: 100%;
  padding: 24px;
  background: var(--c-white);
  aspect-ratio: 1224/716;
}
.plans .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.plans .item:has(p) {
  background: none;
  padding: unset;
  aspect-ratio: unset;
}
.plans .item:has(p) p {
  color: var(--c-gray-dark);
  font-style: italic;
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 325;
  text-align: center;
}

.blocks {
  width: 100%;
  display: block;
}
.blocks__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 56px;
  overflow-x: scroll;
  padding-bottom: 24px;
}
.blocks .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.blocks .item {
  width: 392px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blocks .item__thumbnail {
  max-width: 320px;
}
.blocks .item__thumbnail img {
  width: 100%;
}
.blocks .item span {
  font-size: 14px;
  line-height: 16.8px;
  color: var(--c-gray-dark);
  font-weight: 350;
}
.blocks a.btn {
  padding: 0 16px;
  height: 48px;
  margin-inline: auto;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .plans__wrapper {
    row-gap: 10px;
  }
}
.modal {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}
.modal__overlay {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modal__overlay .bar {
  width: 10vw;
  height: 0;
  background: var(--c-gray-dark);
  opacity: 80%;
}
.modal__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 880px;
  max-height: 90vh;
  background: var(--c-white);
  padding: 48px;
  position: relative;
  display: none;
}
.modal__content img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.modal__close img {
  width: 32px;
  height: 32px;
}
.modalText {
  z-index: 9999999999;
}
.modalText .modal__content {
  width: 808px;
  height: auto;
  padding: 64px;
}
.modalText .modal__content span {
  font-weight: 400;
  font-size: 14px;
  line-height: 23.52px;
  color: var(--c-gray-dark);
}
.modalText .modal__content p {
  color: var(--c-gray-dark);
  font-size: 14px;
  font-weight: 325;
  line-height: 23.52px;
  margin-bottom: 32px;
}
.modalContact {
  display: none;
}
.modalContact .modal__overlay {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modalContact .modal__overlay .bar {
  width: 100%;
  height: 10vh;
  background: var(--c-gray-dark);
  opacity: 80%;
}
.modalContact .modal__wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.modalContact .modal__contact {
  display: none;
  width: 393px;
  height: 100%;
  background: var(--c-white);
  border-radius: 16px 0 0 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0 32px 0;
  overflow-y: auto;
}
.modalContact .modal__contact .logo {
  width: 128px;
}
.modalContact .modal__contact .logo img {
  height: 123px;
}
.modalContact .modal__contact .title {
  width: 100%;
  text-align: center;
  padding: 24px 0 16px 0;
}
.modalContact .modal__contact .title span {
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 350;
  color: var(--c-gray-dark);
}
.modalContact .modal__contact .form {
  width: 100%;
  display: block;
}
.modalContact .modal__contact .form__page {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}
.modalContact .modal__contact .form__item {
  width: 100%;
  display: block;
  padding: 0 16px;
}
.modalContact .modal__contact .form__item:has(.label) {
  margin: 8px 0;
}
.modalContact .modal__contact .form__item .label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-left: 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}
.modalContact .modal__contact .form__item .label p {
  font-size: 14px;
  line-height: 16.8px;
  color: var(--c-gray-dark);
  font-weight: 325;
}
.modalContact .modal__contact .form__item .label p a {
  text-decoration: underline;
}
.modalContact .modal__contact .form__item .label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 2px solid var(--c-gray-50);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}
.modalContact .modal__contact .form__item .label .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.4px 2.4px 0;
  -webkit-transform: rotate(45deg) translateX(20px);
  -ms-transform: rotate(45deg) translateX(20px);
  transform: rotate(45deg) translateX(20px);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.modalContact .modal__contact .form__item .label span span input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.modalContact .modal__contact .form__item .label span span input:checked ~ .checkmark::after {
  display: block;
  -webkit-transform: translateX(0) rotate(45deg);
      -ms-transform: translateX(0) rotate(45deg);
          transform: translateX(0) rotate(45deg);
}
.modalContact .modal__contact .form__item .label span span input:checked ~ .checkmark {
  background: var(--c-blue);
  border-color: var(--c-blue);
}
.modalContact .modal__contact .form__item .label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.modalContact .modal__contact .form__item .label input:checked ~ .checkmark::after {
  display: block;
  -webkit-transform: translateX(0) rotate(45deg);
      -ms-transform: translateX(0) rotate(45deg);
          transform: translateX(0) rotate(45deg);
}
.modalContact .modal__contact .form__item .label input:checked ~ .checkmark {
  background: var(--c-blue);
  border-color: var(--c-blue);
}
.modalContact .modal__contact .form__item button {
  width: 100%;
}
@media (max-width: 768px) {
  .modal__overlay .bar {
    width: 25vw;
  }
  .modal__overlay .bar:nth-child(n+5) {
    display: none;
  }
  .modal__wrapper {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .modal__content {
    width: 100%;
    min-height: 300px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 16px;
    border-radius: 16px 16px 0 0;
  }
  .modalText .modal__content {
    width: 100%;
    min-height: 300px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 16px;
  }
  .modalText .modal__content p {
    font-size: 12px;
    line-height: 20.19px;
    margin-bottom: 16px;
  }
  .modalText .modal__content span {
    font-size: 12px;
    line-height: 20.19px;
  }
  .modal__close {
    position: unset;
    margin-inline: auto;
    margin-bottom: 8px;
  }
  .modalContact .modal__overlay .bar {
    height: 25vh;
  }
  .modalContact .modal__overlay .bar:nth-child(n+5) {
    display: none;
  }
  .modalContact .modal__contact {
    padding: 0;
    width: 100%;
    border-radius: 0;
  }
  .modalContact .modal__contact .logo {
    margin: 80px 0 70.44px;
  }
  .modalContact .modal__contact .title {
    border: 2px solid var(--c-blue);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
  }
  .modalContact .modal__contact .form {
    border: 2px solid var(--c-blue);
    border-top: none;
  }
  .modalContact .modal__contact .form__page {
    row-gap: 12px;
  }
  .modalContact .modal__contact .form__item:has(.label) {
    margin: 4px 0;
  }
  .modalContact .modal__close {
    margin: unset;
    margin-inline: unset;
    position: absolute;
    right: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
        -ms-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}