@charset "UTF-8";
@import url(../css/base.css);
@import url(../css/fonts.css);
:root {
  --trans: all 0.3s linear;
  --color_black: #101010;
  --color_white: #ffffff;
  --color_light_blue: #dde9f2;
  --color_blue: #7baad0;
  --color_dark_blue: #222a3f;
}

.header-container {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: background 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  padding: 13px 55px;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 63px;
}
.header-container.active {
  background: rgba(144, 144, 255, 0.85);
}
.header-container .header-menu {
  margin-left: auto;
}
.header-container .header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  max-width: 700px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-container .header-link {
  color: #fff;
  font-family: Mariupol;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.header-container .hamburger .line {
  width: 50px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
.header-container .hamburger:hover {
  cursor: pointer;
}
.header-container #hamburger-6.active {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-container #hamburger-6.active .line:nth-child(2) {
  width: 0px;
}
.header-container #hamburger-6.active .line:nth-child(1),
.header-container #hamburger-6.active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.header-container #hamburger-6.active .line:nth-child(1) {
  -webkit-transform: translateY(13px);
  transform: translateY(13px);
}
.header-container #hamburger-6.active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(90deg);
  transform: translateY(-13px) rotate(90deg);
}
.header-container .hamburger {
  display: none;
  border: none;
}

.header-logo_mob {
  display: none;
}

input[type=checkbox]:checked + .slider::before {
  -webkit-transform: translateX(26.26px);
          transform: translateX(26.26px);
}

.hamburger {
  z-index: 101;
  position: relative;
}

.header-mobile-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  background: var(--color_white);
  padding: 23px 21px;
  padding-left: 40px;
  z-index: 99;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  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: start;
}
.header-mobile-container .header-close {
  background: transparent;
  border: none;
  cursor: pointer;
  margin-bottom: 43.88px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.header-mobile-container .header-close svg {
  width: 27.12px;
}
.header-mobile-container .header-menu {
  margin-top: 40px;
  margin-bottom: 63px;
}
.header-mobile-container .header-menu-list {
  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: start;
  gap: 25px;
}
.header-mobile-container .header-menu-list .btn_yellow {
  margin-block: 8px;
}
.header-mobile-container .header-link {
  color: #070738;
  font-family: Mariupol;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color_green2);
}
.header-mobile-container .lang-toggle .lang {
  color: var(--color_green2);
}
.header-mobile-container.active {
  left: 0;
}

footer {
  position: relative;
  background: #fff;
  padding-top: 80px;
  -webkit-box-shadow: 6px -4px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 6px -4px 20px 0 rgba(0, 0, 0, 0.08);
}
footer .bg_icon {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1;
}
footer .container {
  position: relative;
  z-index: 2;
}
footer .grid2 {
  display: grid;
  grid-template-columns: 496px 1fr;
  gap: 160px;
}
footer .left {
  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: start;
  width: 100%;
  padding-bottom: 130px;
}
footer .foot_logo {
  width: 100%;
  margin-bottom: 44px;
}
footer .foot_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin-bottom: 33px;
}
footer .footer-link {
  color: #070738;
  font-family: Mariupol;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
footer .soc_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 43px;
}
footer .right {
  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: start;
  width: 100%;
  padding-top: 25px;
  gap: 18px;
}
footer .right h3 {
  color: #070738;
  font-family: Mariupol;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
footer .right p {
  color: #070738;
  font-family: Mariupol;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 363px;
}
footer .btn__white {
  padding-left: 90px;
  padding-right: 90px;
}

.hero {
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
.hero .container_pd {
  padding: 0;
  width: 100%;
  max-width: unset;
  height: 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;
  position: relative;
}
.hero .video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hero .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  width: 52.58px;
  height: 70.83px;
  cursor: pointer;
  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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.hero .video-play:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}
.hero .video-play svg {
  width: 52.58px;
  height: 70.83px;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.regions-section {
  position: relative;
  padding: 28px 0 24px;
  overflow: hidden;
}
.regions-section__bg {
  position: absolute;
  top: 11px;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.regions-section__bg .mob {
  display: none;
}
.regions-section__bg img {
  width: 100%;
  height: 100%;
}
.regions-section .regions-swiper {
  position: relative;
  z-index: 2;
  padding-right: 70px;
}
.regions-section .regions-swiper .swiper-wrapper {
  gap: 17px;
}
.regions-section .regions-swiper .swiper-slide {
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.regions-section .region-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 712px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 60px 26px 51px 37px;
  min-width: 420px;
  width: 100%;
}
.regions-section .region-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.regions-section .region-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.3019607843);
}
.regions-section .region-card__body {
  position: relative;
  z-index: 2;
}
.regions-section .region-card__title {
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 39px;
  letter-spacing: 0%;
  margin-bottom: 21px;
}
.regions-section .region-card__desc {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 17px;
  letter-spacing: 0%;
  max-width: 360px;
}
.regions-section .region-card__list-item {
  font-family: "Mariupol", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 23px;
  letter-spacing: 0%;
  margin-bottom: 21px;
}
.regions-section .region-card__list-item a {
  color: #fff;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.regions-section .region-card__list-item:hover a {
  color: #9090ff;
}
.regions-section .region-card__region {
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 49px;
  line-height: 47px;
  letter-spacing: 0%;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.regions-section .swiper__controls {
  text-align: center;
}
.regions-section .swiper-button-prev,
.regions-section .swiper-button-next,
.regions-section .pagination__arrow {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.regions-section .swiper-button-prev svg,
.regions-section .swiper-button-next svg,
.regions-section .pagination__arrow svg {
  width: 40.6px;
  height: 18.21px;
}
.regions-section .swiper-button-prev svg path,
.regions-section .swiper-button-next svg path,
.regions-section .pagination__arrow svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.regions-section .swiper-button-prev:hover,
.regions-section .swiper-button-next:hover,
.regions-section .pagination__arrow:hover {
  background-color: #fff;
}
.regions-section .swiper-button-prev:hover svg path,
.regions-section .swiper-button-next:hover svg path,
.regions-section .pagination__arrow:hover svg path {
  stroke: #9090ff;
}
.regions-section .swiper-button-prev::after,
.regions-section .swiper-button-next::after {
  content: none;
}
.regions-section .swiper-button-lock {
  display: none;
}
.regions-section .swiper-pagination {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: static;
  -webkit-transform: none;
          transform: none;
}
.regions-section .swiper-pagination .swiper-pagination-bullet {
  background: none;
  color: #9090ff;
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  width: auto;
  height: auto;
  opacity: 1;
  cursor: pointer;
}
.regions-section .swiper-pagination .swiper-pagination-bullet.active {
  color: #c5c5e7;
}
.regions-section .pagination-dots {
  color: #9090ff;
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
}

.regions-static .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 51px;
}

.regions-static .swiper-slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.regions-static .swiper__controls {
  display: none;
}

.base-detail {
  position: relative;
  padding: 44px 0 66px;
}
.base-detail__inner {
  background: #fff;
  -webkit-box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 25px;
  padding: 104px 52px 104px 30px;
  position: relative;
  overflow: hidden;
}
.base-detail__bg {
  position: absolute;
  z-index: 0;
}
.base-detail__bg img {
  width: 100%;
  height: auto;
}
.base-detail .bg1 {
  left: 0;
  top: 21px;
  height: 660px;
}
.base-detail .bg2 {
  right: 0;
  top: 0;
  height: 625px;
}
.base-detail__title {
  margin-bottom: 32px;
}
.base-detail__name {
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 41px;
  line-height: 39px;
  letter-spacing: 0%;
  margin-bottom: 10px;
  color: #070738;
}
.base-detail__region-label {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #9090ff;
}
.base-detail__gallery {
  margin-bottom: 32px;
}
.base-detail .gallery-swiper,
.base-detail .swiper-wrapper {
  position: static;
  overflow: visible !important;
}
.base-detail .swiper-slide {
  width: 211px;
  height: 211px;
}
.base-detail .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  pointer-events: all;
}
.base-detail .swiper-slide img:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.base-detail .buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  bottom: 121px;
  right: 30px;
}
.base-detail .swiper-button-prev,
.base-detail .swiper-button-next {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.base-detail .swiper-button-prev svg,
.base-detail .swiper-button-next svg {
  width: 40.6px;
  height: 18.21px;
}
.base-detail .swiper-button-prev svg path,
.base-detail .swiper-button-next svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.base-detail .swiper-button-prev:hover,
.base-detail .swiper-button-next:hover {
  background-color: #fff;
}
.base-detail .swiper-button-prev:hover svg path,
.base-detail .swiper-button-next:hover svg path {
  stroke: #9090ff;
}
.base-detail .swiper-button-prev::after,
.base-detail .swiper-button-next::after {
  content: none;
}
.base-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
  padding-right: 16px;
}
.base-detail__desc-wrap {
  position: relative;
  max-width: 890px;
}
.base-detail__desc {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 17px;
  letter-spacing: 0%;
  color: #070738;
  overflow: hidden;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.base-detail .toggle-text {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  background: none;
  border: none;
  color: #b1b1b1;
  cursor: pointer;
  display: none;
}
.base-detail__capacity {
  font-family: "Mariupol", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #9090ff;
  white-space: nowrap;
}
.base-detail .btn__purple {
  padding: 19.5px 30px;
}

.btn__purple {
  padding: 19.5px 18px;
  background-color: #9090ff;
  border: none;
  -webkit-box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 40px;
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.btn__purple:hover {
  background-color: #c5c5e7;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  padding: 110px 0;
  background: #fff;
}
.gallery-lightbox.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery-lightbox__bg {
  position: absolute;
  z-index: 0;
}
.gallery-lightbox__bg img {
  width: 100%;
  height: auto;
}
.gallery-lightbox .bg1 {
  left: 0;
  top: 21px;
  height: 660px;
}
.gallery-lightbox .bg2 {
  right: 0;
  top: 0;
  height: 625px;
}
.gallery-lightbox__inner {
  width: 90%;
  max-width: 1300px;
  position: relative;
  height: 100%;
}
.gallery-lightbox .swiper {
  width: 100%;
  height: 100%;
}
.gallery-lightbox .swiper-wrapper {
  width: 100%;
  margin-bottom: 42px;
  height: calc(100% - 85px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery-lightbox .buttons {
  position: relative;
  z-index: 2;
}
.gallery-lightbox .swiper-button-prev,
.gallery-lightbox .swiper-button-next {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.gallery-lightbox .swiper-button-prev svg,
.gallery-lightbox .swiper-button-next svg {
  width: 40.6px;
  height: 18.21px;
}
.gallery-lightbox .swiper-button-prev svg path,
.gallery-lightbox .swiper-button-next svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.gallery-lightbox .swiper-button-prev:hover,
.gallery-lightbox .swiper-button-next:hover {
  background-color: #fff;
}
.gallery-lightbox .swiper-button-prev:hover svg path,
.gallery-lightbox .swiper-button-next:hover svg path {
  stroke: #9090ff;
}
.gallery-lightbox .swiper-button-prev::after,
.gallery-lightbox .swiper-button-next::after {
  content: none;
}
.gallery-lightbox .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 15px;
  background: none;
  border: none;
  cursor: pointer;
  height: 56px;
  width: 56px;
  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;
}
.lightbox-close svg {
  width: 33.33px;
  height: 27.33px;
}

.shifts-section .container {
  padding-left: 0;
}
.shifts-section .shifts-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 96px 38px;
}
.shifts-section .filters {
  background-color: #fff;
  -webkit-box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
  padding: 84px 25px 45px 70px;
  border-top-right-radius: 25px;
  max-width: 360px;
}
.shifts-section .filters__title {
  font-family: "Mariupol", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 31px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #070738;
}
.shifts-section .filters__hint {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 41px;
  color: #070738;
}
.shifts-section .filters .season-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 41px;
}
.shifts-section .filters .season-tab {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #9090ff;
  border: none;
  border-bottom: none !important;
  background: none;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.shifts-section .filters .season-tab.active {
  font-weight: 600;
  border-bottom: none !important;
  text-decoration: none !important;
}
.shifts-section .filters #filterBtn {
  display: none;
}
.shifts-section .filters .filter-group {
  margin-bottom: 41px;
}

/* make sure base items align nicely */
.shifts-section .filters .base-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.shifts-section .filters .filter-group__label {
  font-family: "Mariupol", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: #070738;
}
.shifts-section .filters .checkbox-item:not(:last-child) {
  margin-bottom: 15px;
}
.shifts-section .filters .badge {
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  padding: 4.5px 0;
  width: 79px;
}
.shifts-section .filters .badge-right {
  margin-left: auto;
}
.shifts-section .filters .badge.purple {
  background-color: #9090ff;
}
.shifts-section .filters .badge.orange {
  background-color: #ffb190;
}
.shifts-section .filters .price-filter {
  margin-bottom: 19px;
}
.shifts-section .filters .btn__white {
  margin-top: 20px;
}
.shifts-section .shifts-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 85px;
}
.shifts-section .shifts-grid {
  margin-bottom: 109px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 55px 27px;
}
.shifts-section .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.shifts-section .pagination__arrow {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.shifts-section .pagination__arrow svg {
  width: 40.6px;
  height: 18.21px;
  cursor: pointer;
}
.shifts-section .pagination__arrow svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.shifts-section .pagination__arrow:hover {
  background-color: #fff;
}
.shifts-section .pagination__arrow:hover svg path {
  stroke: #9090ff;
}
.shifts-section .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shifts-section .pagination__page {
  background: none;
  color: #9090ff;
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  width: auto;
  height: auto;
  opacity: 1;
  cursor: pointer;
  border: none;
}
.shifts-section .pagination__page.active {
  color: #c5c5e7;
}
.shifts-section .pagination__dots {
  color: #9090ff;
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
}

.shift-card {
  max-width: 325px;
}
.shift-card__info {
  background-color: #fff;
  border-radius: 25px;
  margin-bottom: 25px;
  -webkit-box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
  overflow: hidden;
  padding: 33px 16px 0 30px;
}
.shift-card__label {
  font-family: "Mariupol", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #070738;
  margin-bottom: 7px;
}
.shift-card__label span {
  color: #9090ff;
}
.shift-card__date {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 17px;
  color: #9090ff;
}
.shift-card__desc {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 17px;
  letter-spacing: 0%;
  margin-bottom: 17px;
  color: #070738;
}
.shift-card__price {
  font-family: "Mariupol", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 37px;
  letter-spacing: 0%;
  color: #9090ff;
}
.shift-card img {
  width: 294px;
  margin-bottom: -60px;
  display: block;
  margin-left: auto;
}
.shift-card .btn__purple {
  margin-left: auto;
  display: block;
  padding: 19.5px 44px;
}

.checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  cursor: pointer;
}
.checkbox-item .checkbox {
  width: 18.77px;
  height: 18.77px;
  border-radius: 4px;
  background-color: #c5c5e7;
  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;
}
.checkbox-item .checkbox svg {
  display: none;
}
.checkbox-item input[type=checkbox],
.checkbox-item input[type=radio] {
  display: none;
}
.checkbox-item:has(input:checked) .checkbox svg {
  display: block;
}

.selector {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.selector .input-selector {
  position: relative;
  width: 100%;
}
.selector .select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 4px;
  background-color: #c5c5e7;
  padding: 4.5px 8.5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selector .select-box svg {
  width: 5.06px;
  height: 8.91px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.selector .selected {
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #070738;
}
.selector .select-wrapper.active svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.selector .select-wrapper.active .dropdown-list {
  max-height: 220px;
  opacity: 1;
  pointer-events: auto;
}
.selector .dropdown-list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-height: 0;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  z-index: 30;
}
.selector .dropdown-item {
  padding: 5px 9px;
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #070738;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.selector .dropdown-item:hover {
  background-color: #c5c5e7;
}

.price-filter {
  max-width: 206px;
  margin: auto;
}
.price-filter .range-slider {
  position: relative;
  height: 16px;
}
.price-filter input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  z-index: 2;
}
.price-filter input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  background: #9090ff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin-top: -6.5px;
}
.price-filter input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: #9090ff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin-top: -6.5px;
}
.price-filter .slider-track {
  position: absolute;
  height: 3px;
  background: #9090ff;
  z-index: 1;
}
.price-filter .slider-background {
  position: absolute;
  height: 3px;
  background: #c5c5e7;
  width: 100%;
  z-index: 0;
}
.price-filter .price-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price-filter .input {
  width: 66px;
}
.price-filter .input input {
  width: 100%;
  padding-bottom: 3px;
  border: none;
  font-family: "Mariupol", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #070738;
}
.price-filter .dash {
  width: 19px;
  height: 2px;
  background-color: #9090ff;
}
.price-filter #max-input,
.price-filter #max-input-side {
  text-align: end;
}

.btn__white {
  padding: 17.5px 33px;
  background-color: #fff;
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  -webkit-box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 40px;
  border: 2px solid #9090ff;
  color: #9090ff;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.btn__white:hover {
  background-color: #9090ff;
  color: #fff;
}

body:has(.filters__popup.active) {
  overflow: hidden;
}

.contact_page main {
  padding-top: 80px;
}
.contact_page .header-container {
  background: rgba(144, 144, 255, 0.85);
}

.contact_section {
  padding: 90px 0px 90px;
}
.contact_section .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_section .left {
  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: start;
  gap: 37px;
}
.contact_section .left h2 {
  color: #070738;
  font-family: Mariupol;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.contact_section .left p {
  color: #070738;
  font-family: Mariupol;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 526px;
}
.contact_section .left button {
  padding-right: 95px;
  padding-left: 95px;
}
.contact_section .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}
.contact_section .text_con {
  color: #9090ff;
  font-family: Mariupol;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 20px;
}
.contact_section .mob {
  display: none;
}

.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  clip-path: inset(0);
}
.hero__bg {
  position: fixed;
  inset: 0;
  background: url("../img/hero.png") center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.hero .box_btn {
  position: absolute;
  bottom: 77px;
}
.hero a {
  padding-left: 55px;
  padding-right: 55px;
}

.who_us {
  background: url("../img/who_desk.png") center/cover no-repeat;
}
.who_us .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-block: 40px;
}
.who_us .left {
  border-radius: 25px;
  background: #fff;
  max-width: 640px;
  /* Shadow */
  -webkit-box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
  padding: 44px 40px;
  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: start;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.who_us .left h2 {
  color: #070738;
  font-family: Mariupol;
  font-size: 101px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.who_us .left p {
  color: #070738;
  font-family: Mariupol;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 125% */
  margin-top: 32px;
  margin-bottom: 42px;
  max-width: 540px;
}
.who_us .left .btn__purple {
  padding-right: 110px;
  padding-left: 110px;
}
.who_us .right {
  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;
}
.who_us .right img {
  max-width: 640px;
}

.number_section {
  padding-block: 50px;
  position: relative;
  height: 700px;
}
.number_section .number {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.number_section .container {
  height: 100%;
  position: relative;
}
.number_section .counter {
  color: #070738;
  font-family: Mariupol;
  font-size: 101px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
.number_section p {
  color: #070738;
  font-family: Mariupol;
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 230px;
}
.number_section .green {
  width: 440px;
  height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 100px;
  top: 0px;
  left: 0px;
  background: url("../img/green.png") center/cover no-repeat;
}
.number_section .rose {
  width: 424px;
  height: 401px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0px;
  left: 400px;
  background: url("../img/rose.png") center/cover no-repeat;
}
.number_section .yellow {
  width: 431px;
  height: 380px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0px;
  right: 400px;
  background: url("../img/yellow.png") center/cover no-repeat;
}
.number_section .purple {
  width: 573px;
  height: 490px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0px;
  right: 0px;
  background: url("../img/purple.png") center/cover no-repeat;
}

.why_us {
  background: url("../img/why_bg.png") center/contain no-repeat;
}
.why_us .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.why_us .left {
  max-width: 730px;
  position: relative;
}
.why_us .left .left_round {
  position: absolute;
  bottom: 204px;
  left: 20px;
  width: 184.575px;
  height: 162.31px;
  -webkit-animation: slowRotate 20s linear infinite;
          animation: slowRotate 20s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.why_us .left .right_round {
  position: absolute;
  width: 187.169px;
  height: 185.469px;
  bottom: 180px;
  right: 38px;
  -webkit-animation: slowRotate 20s linear infinite;
          animation: slowRotate 20s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@-webkit-keyframes slowRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes slowRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.why_us .right {
  border-radius: 25px;
  background: #fff;
  -webkit-box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 49px;
  -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;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
.why_us .right h2 {
  color: #070738;
  font-family: Mariupol;
  font-size: 101px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why_us .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.why_us .right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.why_us .right li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.why_us .right p {
  color: #070738;
  font-family: Mariupol;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 150% */
  max-width: 401px;
}

.map_section {
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  background: url("../img/map_bg.png") center/contain no-repeat;
  overflow: hidden;
}
.map_section .box {
  height: 640px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  position: relative;
}
.map_section .container {
  position: relative;
}
.map_section h2 {
  color: #070738;
  font-family: Mariupol;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 41px;
}
.map_section p {
  color: #070738;
  font-family: Mariupol;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 150% */
  max-width: 400px;
}
.map_section .btn__white {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.map_section .mob {
  display: none;
}
.map_section .desk {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
}

.when .container {
  position: relative;
}
.when {
  padding-block: 95px;
}
.when .btn__white {
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.when .title {
  color: #070738;
  font-family: Mariupol;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.when .sub {
  color: #070738;
  font-family: Mariupol;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 550px;
  margin-bottom: 100px;
}
.when .when-swiper {
  height: 500px;
  position: static;
}
.when .swiper-slide {
  width: 315px;
}
.when .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  position: absolute;
  top: 10px;
  right: 40px;
}
.when .swiper-button-prev,
.when .swiper-button-next {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.when .swiper-button-prev svg,
.when .swiper-button-next svg {
  width: 40.6px;
  height: 18.21px;
}
.when .swiper-button-prev svg path,
.when .swiper-button-next svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.when .swiper-button-prev:hover,
.when .swiper-button-next:hover {
  background-color: #fff;
}
.when .swiper-button-prev:hover svg path,
.when .swiper-button-next:hover svg path {
  stroke: #9090ff;
}
.when .swiper-button-prev:after,
.when .swiper-button-next:after {
  content: none;
}

.section_swip {
  -webkit-box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
}
.section_swip .image-swiper {
  height: 680px;
  position: relative;
}
.section_swip .mob {
  display: none;
}
.section_swip img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section_swip .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  position: absolute;
  top: 10px;
  right: 40px;
}
.section_swip .swiper-button-prev,
.section_swip .swiper-button-next {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  cursor: pointer;
}
.section_swip .swiper-button-prev svg,
.section_swip .swiper-button-next svg {
  width: 40.6px;
  height: 18.21px;
}
.section_swip .swiper-button-prev svg path,
.section_swip .swiper-button-next svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.section_swip .swiper-button-prev:hover,
.section_swip .swiper-button-next:hover {
  background-color: #fff;
}
.section_swip .swiper-button-prev:hover svg path,
.section_swip .swiper-button-next:hover svg path {
  stroke: #9090ff;
}
.section_swip .swiper-button-prev:after,
.section_swip .swiper-button-next:after {
  content: none;
}
.section_swip .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  background: #fff;
  /* Shadow */
  padding-block: 45px;
}
.section_swip .flex2 p {
  color: #070738;
  font-family: Mariupol;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 535px;
}
.section_swip .flex2 h5 {
  color: #070738;
  text-align: right;
  font-family: Mariupol;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.faq_section {
  background: url("../img/faq_bg.png") center/cover no-repeat;
}
.faq_section .grid2 {
  padding-top: 100px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 20px;
}
.faq_section .faq-item {
  padding: 40px 0 0 0;
}
.faq_section .faq-question {
  width: 100%;
  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;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 10px;
}
.faq_section .faq-title {
  color: #070738;
  font-family: Mariupol;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.faq_section .faq-answer {
  height: 0;
  overflow: hidden;
}
.faq_section .faq-answer-inner {
  padding-top: 16px;
}
.faq_section .faq-answer p {
  color: #070738;
  font-family: Mariupol;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 480px;
}
.faq_section {
  /* ===== ІКОНКА + → - ===== */
}
.faq_section .faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
}
.faq_section .faq-icon::before,
.faq_section .faq-icon::after {
  content: "";
  position: absolute;
  background: #0d0d3b;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq_section .faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq_section .faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.faq_section {
  /* ACTIVE STATE */
}
.faq_section .faq-item.active .faq-icon::after {
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
}

.review {
  padding-top: 100px;
  padding-bottom: 50px;
}
.review .review-swiper {
  position: relative;
  z-index: 2;
}
.review .review-swiper .swiper-wrapper {
  gap: 17px;
}
.review .review-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 452px;
  padding: 33px 30px;
  -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;
  border-radius: 25px;
  background: #fff;
  /* Shadow */
  -webkit-box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 6px 3px 20px 0 rgba(0, 0, 0, 0.08);
}
.review .review-swiper .swiper-slide h4 {
  color: #9090ff;
  font-family: Mariupol;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.review .review-swiper .swiper-slide p {
  color: #070738;
  font-family: Mariupol;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 7px;
  margin-bottom: 17px;
}
.review .review-swiper .swiper-slide span {
  color: #9090ff;
  font-family: Mariupol;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.review .swiper-button-prev,
.review .swiper-button-next,
.review .pagination__arrow {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.review .swiper-button-prev svg,
.review .swiper-button-next svg,
.review .pagination__arrow svg {
  width: 40.6px;
  height: 18.21px;
}
.review .swiper-button-prev svg path,
.review .swiper-button-next svg path,
.review .pagination__arrow svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.review .swiper-button-prev:hover,
.review .swiper-button-next:hover,
.review .pagination__arrow:hover {
  background-color: #fff;
}
.review .swiper-button-prev:hover svg path,
.review .swiper-button-next:hover svg path,
.review .pagination__arrow:hover svg path {
  stroke: #9090ff;
}
.review .swiper-button-prev::after,
.review .swiper-button-next::after {
  content: none;
}

.block1 {
  padding-block: 50px;
}
.block1 .cert-swiper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.block1 .cert-swiper .swiper-slide {
  width: 270px;
}
.block1 .swiper-button-prev,
.block1 .swiper-button-next,
.block1 .pagination__arrow {
  width: 91px;
  height: 43px;
  background: #9090ff;
  border: 2px solid #9090ff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 44px;
  position: static;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.block1 .swiper-button-prev svg,
.block1 .swiper-button-next svg,
.block1 .pagination__arrow svg {
  width: 40.6px;
  height: 18.21px;
}
.block1 .swiper-button-prev svg path,
.block1 .swiper-button-next svg path,
.block1 .pagination__arrow svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.block1 .swiper-button-prev:hover,
.block1 .swiper-button-next:hover,
.block1 .pagination__arrow:hover {
  background-color: #fff;
}
.block1 .swiper-button-prev:hover svg path,
.block1 .swiper-button-next:hover svg path,
.block1 .pagination__arrow:hover svg path {
  stroke: #9090ff;
}
.block1 .swiper-button-prev::after,
.block1 .swiper-button-next::after {
  content: none;
}
.block1 .flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 50px;
}
.block1 .flex img {
  max-width: 580px;
}
.block1 .flex h2 {
  color: #070738;
  text-align: right;
  font-family: Mariupol;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  max-width: 650px;
}
.block1 .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block1 .grid2 .right {
  max-width: 800px;
}
.block1 .grid2 h3 {
  color: #070738;
  font-family: Mariupol;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.block1 .grid2 p {
  color: #070738;
  font-family: Mariupol;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 525px;
}

.form {
  padding-block: 50px;
}
.form .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .left {
  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: start;
  gap: 37px;
}
.form .left h2 {
  color: #070738;
  font-family: Mariupol;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.form .left p {
  color: #070738;
  font-family: Mariupol;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 526px;
}
.form .left button {
  padding-right: 95px;
  padding-left: 95px;
}
.form .right {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.ads {
  padding-block: 50px;
}
.ads .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.ads h2 {
  color: #070738;
  font-family: Mariupol;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.ads p {
  color: #070738;
  font-family: Mariupol;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 525px;
}
.ads a {
  color: #9090FF;
  font-family: Mariupol;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-align: end;
}

@media (min-width: 1920px) {
  .map_section .desk {
    max-width: 1200px;
  }
}
@media (max-width: 1441px) {
  .number_section .rose {
    left: 300px;
  }
}
@media (max-width: 1422px) {
  .number_section .rose {
    bottom: -50px;
  }
  .shifts-section .shifts-grid {
    justify-items: center;
  }
  .why_us {
    padding-top: 20px;
  }
  .why_us .grid2 {
    grid-template-columns: 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .why_us .grid2 .left {
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
@media (max-width: 1250px) {
  .regions-section .regions-swiper {
    padding-right: 0;
  }
  .regions-section .regions-swiper .swiper-wrapper {
    gap: 0;
  }
}
@media (max-width: 1200px) {
  .block1 .grid2 {
    grid-template-columns: 1fr;
  }
  .block1 .grid2 .right {
    max-width: 100%;
  }
  .block1 .grid2 .right {
    min-width: 0;
  }
}
@media (max-width: 1100px) {
  .number_section {
    height: 1200px;
  }
  .number_section .yellow {
    top: 200px;
    right: 100px;
  }
  .number_section .rose {
    left: 100px;
    bottom: 200px;
  }
}
@media (max-width: 1020px) {
  .number_section {
    height: 850px;
  }
  .number_section .container {
    overflow: hidden;
  }
  .number_section .yellow {
    width: 231px;
    height: 204px;
    bottom: auto;
    left: -30px;
    top: 382px;
    padding-left: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .number_section .green {
    width: 204px;
    height: 213px;
    padding-left: 20px;
    top: 94px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .number_section .purple {
    width: 334px;
    height: 285px;
    bottom: 0px;
    right: -40px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding-right: 50px;
  }
  .number_section .rose {
    width: 300px;
    height: 283px;
    top: 200px;
    right: -68px;
    left: auto;
    bottom: auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding-right: 100px;
  }
  .header-container {
    padding: 16px 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-container .header-logo,
  .header-container .header-menu,
  .header-container .header-lang {
    display: none;
  }
  .header-container .hamburger {
    display: block;
  }
  .header-container .header-logo_mob {
    display: block;
  }
  footer .grid2 {
    gap: 100px;
  }
}
@media (max-width: 1100px) {
  .who_us .grid2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
  .who_us .left {
    max-width: 100%;
  }
}
@media (max-width: 950px) {
  .ads a {
    text-align: start;
    font-size: 30px;
  }
  .ads .grid2 {
    grid-template-columns: 1fr;
  }
  .block1 .grid2 {
    grid-template-columns: 1fr;
  }
  .block1 .flex h2 {
    max-width: 100%;
  }
  .block1 .flex {
    grid-template-columns: 1fr;
  }
  .faq_section {
    background: url(../img/faq_bg1.png) top/contain no-repeat;
  }
  .faq_section .grid2 {
    grid-template-columns: 1fr;
  }
  footer .grid2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 70px;
  }
  footer {
    padding-top: 60px;
  }
  footer .bg_icon {
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-top: 0px;
  }
  footer .left {
    padding-bottom: 70px;
  }
  footer .soc_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 23px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 800px) {
  .review {
    padding-top: 50px;
  }
  .block1 .flex h2 {
    font-size: 30px;
  }
  .form .left button {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .form .grid2 {
    gap: 60px;
    grid-template-columns: 1fr;
  }
  .section_swip .flex2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
  .section_swip .flex2 h5 {
    text-align: start;
  }
  .section_swip .desk {
    display: none;
  }
  .section_swip .mob {
    display: block;
  }
  .section_swip .buttons {
    top: auto;
    right: 28%;
    bottom: 0%;
  }
  .when {
    padding-block: 30px;
  }
  .when .title {
    font-size: 42px;
  }
  .when .sub {
    margin-bottom: 50px;
  }
  .when .buttons {
    top: auto;
    bottom: 60px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
  .map_section .box {
    height: 800px;
  }
  .map_section h2 {
    font-size: 42px;
  }
  .map_section p {
    color: #070738;
    font-family: Mariupol;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .map_section .desk {
    display: none;
  }
  .map_section .mob {
    display: block;
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: auto;
  }
  .btn__white {
    margin-block: 80px;
  }
  .why_us .right {
    padding: 36px 30px;
  }
  .why_us .right h2 {
    font-size: 50px;
  }
  .why_us .right h2 p {
    font-size: 18px;
  }
  .why_us .left .left_round {
    width: 93.863px;
    height: 82.54px;
    bottom: 120px;
  }
  .why_us .left .right_round {
    width: 95.182px;
    height: 94.318px;
    bottom: 120px;
  }
  .who_us {
    background: url("../img/who_mob.png") center/cover no-repeat;
  }
  .who_us .left .btn__purple {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    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;
  }
  .who_us .left {
    padding: 45px 30px;
  }
  .who_us .left h2 {
    font-size: 50px;
  }
  .who_us .left p {
    font-size: 18px;
  }
  .hero__bg {
    background: url("../img/hero_mob.png") center/cover no-repeat;
  }
  .box_btn {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    padding-right: 40px;
  }
  .box_btn a {
    margin-right: auto;
    margin-left: auto;
    width: 100% !important;
    display: block;
  }
  .contact_section {
    padding-top: 20px;
  }
  footer .btn__white {
    width: 100%;
  }
  .contact_section .grid2 {
    grid-template-columns: 1fr;
  }
  .contact_section .mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact_section .desk {
    display: none;
  }
  .contact_section button {
    width: 100%;
  }
  .regions-section {
    padding: 40px 0;
  }
  .base-detail {
    padding: 17px 0 41px;
  }
  .base-detail__inner {
    padding: 45px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .base-detail__bg {
    display: none;
  }
  .base-detail__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .base-detail__gallery {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 0;
  }
  .base-detail .swiper-slide {
    width: 264px;
  }
  .base-detail .buttons {
    position: static;
    margin-top: 54px;
    padding-bottom: 14px;
  }
  .base-detail__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 40px;
  }
  .base-detail__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .base-detail .btn__purple {
    margin: 0 auto;
    display: block;
  }
  .base-detail__desc {
    height: 5em;
  }
  .shifts-section .container {
    padding: 0 20px;
  }
  .shifts-section .shifts-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .shifts-section .filters {
    padding: 46px 16px;
    max-width: unset;
    border-radius: 25px;
  }
  .shifts-section .filters__title {
    font-weight: 500;
    font-size: 41px;
    line-height: 39px;
    margin-bottom: 32px;
  }
  .shifts-section .filters__hint {
    margin-bottom: 32px;
    line-height: 22px;
  }
  .shifts-section .filters .season-tabs {
    margin-bottom: 45px;
  }
  .shifts-section .filters #filterBtn {
    display: block;
    margin: 0 auto;
  }
  .shifts-section .filters__popup {
    position: fixed;
    z-index: 900;
    inset: 0;
    padding: 20px;
    background-color: rgba(12, 12, 12, 0.2);
    backdrop-filter: blur(10px);
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-y: scroll;
  }
  .shifts-section .filters__popup-box {
    background-color: #fff;
    border-radius: 25px;
    -webkit-box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
            box-shadow: 6px 3px 20px 0px rgba(0, 0, 0, 0.0784313725);
    padding: 45px 30px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .shifts-section .filters__popup.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .shifts-section .filters .price-filter {
    margin: 0;
  }
  .shifts-section .filters .btn__purple,
  .shifts-section .filters .btn__white {
    width: 197.84px;
    display: block;
  }
  .shifts-section .filters .btn__purple span,
  .shifts-section .filters .btn__white span {
    display: none;
  }
  .shifts-section .shifts-content {
    padding-bottom: 50px;
  }
  .shifts-section .shifts-grid {
    margin-bottom: 33px;
    gap: 33px;
  }
  .shift-card__info {
    margin-bottom: 23px;
  }
  .shift-card img {
    margin-bottom: 0;
  }
  .shift-card .btn__purple {
    margin: 0 auto;
    padding: 19.5px 48px;
  }
}
@media (max-width: 600px) {
  .review .review-swiper .swiper-slide {
    width: 316px;
    height: 450px;
  }
  .review .review-swiper .swiper-slide p {
    font-size: 28px;
  }
  .regions-section__bg .mob {
    display: block;
  }
  .regions-section__bg .desk {
    display: none;
  }
  .regions-section .region-card {
    min-width: 324px;
    padding: 60px 20px 0 16px;
  }
  .regions-section .region-card__title, .regions-section .region-card__list-item {
    margin-bottom: 15px;
  }
  .regions-section .region-card__region {
    position: absolute;
    bottom: 188px;
  }
  .regions-section .region-card__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-height: 252px;
    gap: 0 5px;
    -webkit-box-align: space-between;
        -ms-flex-align: space-between;
            align-items: space-between;
  }
  .regions-section .region-card__list-item {
    max-width: 151px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .regions-section .swiper__controls {
    position: absolute;
    bottom: 64px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    z-index: 3;
  }
  .regions-section .swiper-button-prev,
  .regions-section .swiper-button-next {
    margin: 0;
  }
  .regions-section .swiper-pagination .swiper-pagination-bullet {
    color: #fff;
  }
  .gallery-lightbox .swiper-slide img {
    height: auto;
  }
  .gallery-lightbox .swiper-slide,
  .gallery-lightbox .swiper-wrapper,
  .gallery-lightbox .swiper, .gallery-lightbox__inner {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}


/* ===== CONTACT FORM 7 FIX ===== */

/* Контейнер формы */
.form .left .wpcf7-form {
  display: flex;
  flex-direction: column;
}

/* Текстовые поля (имя, телефон, ник) */
.form .left .wpcf7-form input[type="text"],
.form .left .wpcf7-form input[type="tel"] {
  width: 100%;
  padding: 14px 20px;
  border-radius: 40px;
  border: none;
  font-family: "Mariupol", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  background-color: #f8f8f8;
  box-sizing: border-box;
}

/* Placeholder */
.form .left .wpcf7-form input::placeholder {
  color: #9090ff;
  opacity: 1;
}

/* Кнопка отправки */
.form .left .wpcf7-form input[type="submit"] {
  padding: 19.5px 95px;
  background-color: #9090ff;
  border-radius: 40px;
  border: none;
  font-family: "Mariupol", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  align-self: flex-start;
}

/* Эффект наведения на кнопку */
.form .left .wpcf7-form input[type="submit"]:hover {
  background-color: #7a7ad1;
}

/* Убираем дефолтные маргины и паддинги для textarea, если добавишь */
.form .left .wpcf7-form textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 40px;
  border: none;
  font-family: "Mariupol", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  background-color: #f8f8f8;
  resize: none;
}

/* Сообщения об ошибке и успехе CF7 */
.form .left .wpcf7-form .wpcf7-response-output {
  margin-top: 10px;
  font-family: "Mariupol", sans-serif;
  font-size: 16px;
  color: #e62f1b;
}

/* Сетка и анимация остаются прежними */
.form .grid2 {
  display: flex;
  gap: 50px;
}

.form .right img {
  max-width: 100%;
  height: auto;
}




/* ===== FIX 2: ховати стрілки пагінації за замовчуванням ===== */
#shiftsPaginationArrows {
  display: none !important;
}
/* JS буде знімати display:none через style="" */

/* ===== FIX 3: квадратні фото в галереї бази ===== */
.base-detail .gallery-swiper .swiper-slide,
.gallery-swiper .swiper-slide {
  width: 211px !important;
  height: 211px !important;
  flex-shrink: 0;
  overflow: hidden;
}

.base-detail .gallery-swiper .swiper-slide img,
.gallery-swiper .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}


/* ===== MOBILE FIXES ===== */

@media (max-width: 1100px) {
  /* who_us — фото справа не растягивается */
  .who_us .right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 800px) {

  /* who_us — фото */
  .who_us .right {
    width: 100%;
  }
  .who_us .right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
  }

  /* why_us — main_photo растягивалось */
  .why_us .left {
    width: 100%;
    max-width: 100%;
  }
  .why_us .left .main_photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 25px;
  }

  /* form — исправляем grid2 который переопределён через flex внизу CSS */
  .form .grid2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  /* form — фото справа не растягивается */
  .form .right {
    width: 100%;
    max-width: 100%;
  }
  .form .right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
  }

  /* form — инпуты на всю ширину */
  .form .left .input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    border-radius: 40px;
    border: 1px solid #c5c5e7;
    font-family: "Mariupol", sans-serif;
    font-size: 18px;
    background: #f8f8f8;
  }
}