:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(0);
  transition: visibility 0.3s ease, opacity 0.3s ease, backdrop-filter 0.3s ease, transform 0.3s ease;
}
.modal--open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  backdrop-filter: blur(16px);
}
.modal--open .modal__body {
  transform: scale(1);
}
.modal__body {
  position: relative;
  width: 60%;
  height: 80%;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}
.modal__close::before, .modal__close::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #fff;
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(-45deg);
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.back-button {
  font-family: "Gilroy", sans-serif;
  font-size: min(4.2666666667vw, 18px);
  font-weight: 500;
  line-height: 120%;
  color: #f9f4f2;
}
@media screen and (width >= 768px) {
  .back-button {
    font-size: 18px;
  }
}
@media screen and (width >= 1025px) {
  .back-button {
    font-size: max(0.9375vw, 16px);
  }
}
.back-button {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 20px 10px 10px;
  color: #ff601e;
  border: 1px solid #ff601e;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}
@media screen and (width >= 1025px) {
  .back-button {
    gap: 0.2604166667vw;
    padding: 0.5208333333vw 1.0416666667vw 0.5208333333vw 0.5208333333vw;
    border-radius: 0.5208333333vw;
  }
}
@media (hover: hover) {
  .back-button:hover {
    background-color: rgba(255, 96, 30, 0.1);
  }
}
.back-button:active {
  background-color: rgba(255, 96, 30, 0.18);
}
.back-button__icon {
  width: 20px;
  height: 20px;
}
@media screen and (width >= 1025px) {
  .back-button__icon {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.primary-button {
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  color: #f9f4f2;
}
@media screen and (width >= 1025px) {
  .primary-button {
    font-size: max(1.0416666667vw, 16px);
  }
}
.primary-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, filter 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 1025px) {
  .primary-button {
    padding: 1.5625vw;
    border-radius: 0.78125vw;
  }
}
.primary-button::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
@media (hover: hover) {
  .primary-button:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
  }
  .primary-button:hover::after {
    animation: shine-streak 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.primary-button:active {
  filter: brightness(0.95);
  transform: scale(0.95);
}
.primary-button--transparent {
  border: 2px solid #f9f4f2;
}
.primary-button--transparent::after {
  display: none;
}
@media (hover: hover) {
  .primary-button--transparent:hover {
    background-color: rgba(249, 244, 242, 0.12);
    filter: none;
  }
}
.primary-button--transparent:active {
  background-color: rgba(249, 244, 242, 0.2);
  filter: none;
}
.primary-button--color-70 {
  background: linear-gradient(85deg, #ff601e 3.7%, #ff896f 110.51%);
}
.primary-button__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@media screen and (width >= 1025px) {
  .primary-button__icon {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
    margin-right: 0.5208333333vw;
  }
}
.primary-button__icon svg {
  width: 100%;
  height: 100%;
}
.primary-button span {
  text-wrap: nowrap;
}

@keyframes shine-streak {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.square-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, filter 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 1025px) {
  .square-button {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
    border-radius: 0.78125vw;
  }
}
.square-button::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
@media (hover: hover) {
  .square-button:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
  }
  .square-button:hover::after {
    animation: shine-streak 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.square-button:active {
  filter: brightness(0.95);
  transform: scale(0.95);
}
.square-button:disabled, .square-button.swiper-button-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.35;
  filter: none;
  transform: none;
}
.square-button:disabled::after, .square-button.swiper-button-disabled::after {
  display: none;
}
.square-button--transparent {
  border: 1px solid #ff601e;
}
.square-button--transparent::after {
  display: none;
}
@media (hover: hover) {
  .square-button--transparent:hover {
    background-color: rgba(255, 96, 30, 0.1);
    filter: none;
  }
}
.square-button--transparent:active {
  background-color: rgba(255, 96, 30, 0.18);
  filter: none;
}
.square-button--color-70 {
  background: linear-gradient(85deg, #ff601e 3.7%, #ff896f 110.51%);
}
.square-button__icon {
  width: 25px;
  height: 25px;
}
@media screen and (width >= 1025px) {
  .square-button__icon {
    width: 1.3020833333vw;
    height: 1.3020833333vw;
  }
}
.square-button__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes shine-streak {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.feedback-form {
  position: relative;
}
.feedback-form__input-wrapper {
  position: relative;
}
.feedback-form__input {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .feedback-form__input {
    font-size: max(0.8333333333vw, 12px);
  }
}
.feedback-form__input {
  width: 100%;
  padding: 30px;
  color: #fff;
  background-color: #403d38;
  border: none;
  border-radius: 20px;
}
@media screen and (width >= 768px) {
  .feedback-form__input {
    width: 100%;
  }
}
@media screen and (width >= 1025px) {
  .feedback-form__input {
    width: 28.4895833333vw;
    padding: 1.5625vw;
    border-radius: 1.0416666667vw;
  }
}
.feedback-form__input::-moz-placeholder {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
.feedback-form__input::placeholder {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .feedback-form__input::-moz-placeholder {
    font-size: max(0.8333333333vw, 12px);
  }
  .feedback-form__input::placeholder {
    font-size: max(0.8333333333vw, 12px);
  }
}
.feedback-form__input::-moz-placeholder {
  color: #cdc5ba;
}
.feedback-form__input::placeholder {
  color: #cdc5ba;
}
.feedback-form__input--white {
  color: #292825;
  background-color: #fff;
}
.feedback-form__input--white::-moz-placeholder {
  color: #cdc5ba;
}
.feedback-form__input--white::placeholder {
  color: #cdc5ba;
}
.feedback-form__input--white.feedback-form__tel-input--typed {
  color: #292825;
}
.feedback-form__tel-input {
  margin-top: 10px;
  color: #cdc5ba;
}
@media screen and (width >= 1025px) {
  .feedback-form__tel-input {
    margin-top: 0.5208333333vw;
  }
}
.feedback-form__tel-input ::-moz-placeholder {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
.feedback-form__tel-input ::placeholder {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .feedback-form__tel-input ::-moz-placeholder {
    font-size: max(0.8333333333vw, 12px);
  }
  .feedback-form__tel-input ::placeholder {
    font-size: max(0.8333333333vw, 12px);
  }
}
.feedback-form__tel-input ::-moz-placeholder {
  color: #cdc5ba;
}
.feedback-form__tel-input ::placeholder {
  color: #cdc5ba;
}
.feedback-form__tel-input--typed {
  color: #fff;
}
.feedback-form__error-message {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .feedback-form__error-message {
    font-size: max(0.8333333333vw, 12px);
  }
}
.feedback-form__error-message {
  position: absolute;
  bottom: 14px;
  left: 30px;
  font-size: 14px;
  color: rgb(255, 132, 132);
}
@media screen and (width >= 1025px) {
  .feedback-form__error-message {
    bottom: 0.7291666667vw;
    left: 1.5625vw;
    font-size: max(0.7291666667vw, 12px);
  }
}
.feedback-form__button {
  width: 100%;
  margin-top: 10px;
  margin-right: auto;
}
@media screen and (width >= 768px) {
  .feedback-form__button {
    width: 100%;
  }
}
@media screen and (width >= 1025px) {
  .feedback-form__button {
    width: 28.4895833333vw;
    margin-top: 0.5208333333vw;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.feedback-modal .modal__body {
  width: min(89.3333333333vw, 500px);
  height: min(133.3333333333vw, 600px);
  overflow: hidden;
  background-color: var(--color-20, #f9f4f2);
  border-radius: 30px;
}
@media screen and (width >= 768px) {
  .feedback-modal .modal__body {
    width: 600px;
    height: 600px;
  }
}
@media screen and (width >= 1025px) {
  .feedback-modal .modal__body {
    width: auto;
    height: auto;
    border-radius: 1.5625vw;
  }
}
.feedback-modal .modal__close {
  display: none;
  pointer-events: none;
}
.feedback-modal.modal--open {
  background-color: rgba(41, 40, 37, 0.25);
}
.feedback-modal__decor {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 100%;
  height: 100%;
  rotate: 50deg;
}
@media screen and (width >= 768px) {
  .feedback-modal__decor {
    top: -57%;
    right: -57%;
    rotate: -120deg;
  }
}
.feedback-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #f9f4f2;
  border-radius: 30px;
}
@media screen and (width >= 768px) {
  .feedback-modal__content {
    padding: 30px;
  }
}
@media screen and (width >= 1025px) {
  .feedback-modal__content {
    gap: 1.0416666667vw;
    padding: 1.5625vw;
    border-radius: 1.5625vw;
  }
}
.feedback-modal__title {
  font-family: "Gilroy", sans-serif;
  font-size: min(7.4666666667vw, 45px);
  font-weight: 500;
  line-height: 100%;
  color: #292825;
  letter-spacing: -0.05em;
}
@media screen and (width >= 768px) {
  .feedback-modal__title {
    font-size: 45px;
  }
}
@media screen and (width >= 1025px) {
  .feedback-modal__title {
    font-size: max(2.34375vw, 28px);
  }
}
.feedback-modal__title {
  position: relative;
  width: 100%;
}
@media screen and (width >= 768px) {
  .feedback-modal__title {
    width: 405px;
  }
}
@media screen and (width >= 1025px) {
  .feedback-modal__title {
    width: 21.09375vw;
  }
}
.feedback-modal__description {
  font-family: "Gilroy", sans-serif;
  font-size: min(4.2666666667vw, 18px);
  font-weight: 500;
  line-height: 120%;
  color: #f9f4f2;
}
@media screen and (width >= 768px) {
  .feedback-modal__description {
    font-size: 18px;
  }
}
@media screen and (width >= 1025px) {
  .feedback-modal__description {
    font-size: max(0.9375vw, 16px);
  }
}
.feedback-modal__description {
  position: relative;
  width: 100%;
  color: #292825;
}
@media screen and (width >= 768px) {
  .feedback-modal__description {
    width: 405px;
  }
}
@media screen and (width >= 1025px) {
  .feedback-modal__description {
    width: 21.09375vw;
  }
}
.feedback-modal__form {
  position: relative;
  margin-top: auto;
}
.feedback-modal__later {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .feedback-modal__later {
    font-size: max(0.8333333333vw, 12px);
  }
}
.feedback-modal__later {
  position: relative;
  margin: 0 auto;
  color: #292825;
  text-align: center;
  cursor: pointer;
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.footer {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  row-gap: 60px;
  width: calc(100% - 20px);
  padding: 20px;
  margin: 0 10px;
  overflow: hidden;
  background-color: #292825;
  border-radius: 30px;
}
@media screen and (width >= 768px) {
  .footer {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    row-gap: 7.8125vw;
    width: calc(100% - 40px);
    padding: 3.90625vw;
    margin: 0 20px;
  }
}
@media screen and (width >= 1025px) {
  .footer {
    grid-template-rows: 1fr auto;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 20.8333333333vw;
         column-gap: 20.8333333333vw;
    width: calc(100% - 2.0833333333vw);
    padding: 5.2083333333vw 5.2083333333vw 2.0833333333vw;
    margin: 0 1.0416666667vw;
    border-radius: 1.5625vw;
  }
}
.footer__decor {
  position: absolute;
  right: -35%;
  bottom: -38%;
  display: none;
  width: 100%;
  height: 100%;
  rotate: -25deg;
}
@media screen and (width >= 768px) {
  .footer__decor {
    display: block;
  }
}
@media screen and (width >= 1025px) {
  .footer__decor {
    bottom: 2%;
    width: 80%;
    height: 80%;
    rotate: -35deg;
  }
}
.footer__decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-form {
  position: relative;
}
.footer .footer-form::before {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--color-100, #403d38);
}
@media screen and (width >= 768px) {
  .footer .footer-form::before {
    bottom: -7.8125vw;
  }
}
@media screen and (width >= 1025px) {
  .footer .footer-form::before {
    right: -10.4166666667vw;
    bottom: 0;
    width: 1px;
    height: 100%;
  }
}
.footer .footer-form__title {
  font-family: "Gilroy", sans-serif;
  font-size: min(7.4666666667vw, 45px);
  font-weight: 500;
  line-height: 100%;
  color: #292825;
  letter-spacing: -0.05em;
}
@media screen and (width >= 768px) {
  .footer .footer-form__title {
    font-size: 45px;
  }
}
@media screen and (width >= 1025px) {
  .footer .footer-form__title {
    font-size: max(2.34375vw, 28px);
  }
}
.footer .footer-form__title {
  width: 100%;
  color: #fff;
}
@media screen and (width >= 768px) {
  .footer .footer-form__title {
    width: 52.734375vw;
  }
}
@media screen and (width >= 1025px) {
  .footer .footer-form__title {
    width: 21.09375vw;
  }
}
.footer .footer-form__subtitle {
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  color: #f9f4f2;
}
@media screen and (width >= 1025px) {
  .footer .footer-form__subtitle {
    font-size: max(1.0416666667vw, 16px);
  }
}
.footer .footer-form__subtitle {
  width: 100%;
  margin-top: 20px;
}
@media screen and (width >= 768px) {
  .footer .footer-form__subtitle {
    width: 52.734375vw;
  }
}
@media screen and (width >= 1025px) {
  .footer .footer-form__subtitle {
    width: 21.09375vw;
    margin-top: 1.0416666667vw;
  }
}
.footer .footer-form__form {
  margin-top: 40px;
}
@media screen and (width >= 1025px) {
  .footer .footer-form__form {
    margin-top: 2.0833333333vw;
  }
}
.footer .contacts {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (width >= 768px) {
  .footer .contacts {
    margin-top: 7.8125vw;
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts {
    flex-direction: column;
    gap: 3.125vw;
    margin-top: 0;
  }
}
@media screen and (width >= 768px) {
  .footer .contacts > :nth-child(1) {
    flex: 1 1 100%;
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts > :nth-child(1) {
    flex: inherit;
  }
}
@media screen and (width >= 768px) {
  .footer .contacts > :nth-child(2) {
    flex: 0 1 calc(50% - 20px);
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts > :nth-child(2) {
    flex: inherit;
  }
}
@media screen and (width >= 768px) {
  .footer .contacts > :nth-child(3) {
    flex: 0 1 calc(50% - 20px);
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts > :nth-child(3) {
    flex: inherit;
  }
}
.footer .contacts > :nth-child(4) {
  flex-direction: column;
  align-items: start;
  width: 100%;
}
@media screen and (width >= 768px) {
  .footer .contacts > :nth-child(4) {
    flex: 1 1 100%;
    flex-direction: row;
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts > :nth-child(4) {
    flex: inherit;
    flex-direction: column;
    align-items: inherit;
    justify-content: inherit;
  }
}
@media screen and (width >= 768px) {
  .footer .contacts > :nth-child(4) .contacts__label {
    flex: 0 1 50%;
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts > :nth-child(4) .contacts__label {
    flex: inherit;
  }
}
.footer .contacts__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (width >= 768px) {
  .footer .contacts__block {
    width: inherit;
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts__block {
    gap: 1.0416666667vw;
  }
}
.footer .contacts__block--secondary {
  gap: 10px;
}
@media screen and (width >= 1025px) {
  .footer .contacts__block--secondary {
    gap: 0.5208333333vw;
  }
}
.footer .contacts__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: start;
}
@media screen and (width >= 1025px) {
  .footer .contacts__row {
    gap: 1.0416666667vw;
  }
}
.footer .contacts__label {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .footer .contacts__label {
    font-size: max(0.8333333333vw, 12px);
  }
}
.footer .contacts__label {
  color: #cdc5ba;
}
.footer .contacts__phone {
  font-family: "Gilroy", sans-serif;
  font-size: min(7.4666666667vw, 45px);
  font-weight: 500;
  line-height: 100%;
  color: #292825;
  letter-spacing: -0.05em;
}
@media screen and (width >= 768px) {
  .footer .contacts__phone {
    font-size: 45px;
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts__phone {
    font-size: max(2.34375vw, 28px);
  }
}
.footer .contacts__phone {
  color: #fff;
}
.footer .contacts__link {
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  color: #f9f4f2;
}
@media screen and (width >= 1025px) {
  .footer .contacts__link {
    font-size: max(1.0416666667vw, 16px);
  }
}
.footer .contacts__link {
  color: #fff;
}
.footer .contacts__button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (width >= 768px) {
  .footer .contacts__button-container {
    flex-wrap: nowrap;
  }
}
@media screen and (width >= 1025px) {
  .footer .contacts__button-container {
    gap: 0.5208333333vw;
  }
}
.footer .contacts__button {
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  color: #f9f4f2;
}
@media screen and (width >= 1025px) {
  .footer .contacts__button {
    font-size: max(1.0416666667vw, 16px);
  }
}
.footer .contacts__button {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  border: 2px solid var(--color-20, #f9f4f2);
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 1025px) {
  .footer .contacts__button {
    gap: 0.5208333333vw;
    padding: 1.0416666667vw;
    border-radius: 1.0416666667vw;
  }
}
@media (hover: hover) {
  .footer .contacts__button:hover {
    background-color: rgba(249, 244, 242, 0.12);
    transform: scale(1.02);
  }
}
.footer .contacts__button:active {
  background-color: rgba(249, 244, 242, 0.2);
  transform: scale(0.95);
}
.footer .contacts__button svg {
  width: 20px;
  height: 20px;
}
@media screen and (width >= 1025px) {
  .footer .contacts__button svg {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
  }
}
.footer .contacts__button span {
  color: #fff;
  text-wrap: nowrap;
}
.footer .terms {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (width >= 1025px) {
  .footer .terms {
    grid-column: 1/3;
  }
}
.footer .terms__text {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (width >= 1025px) {
  .footer .terms__text {
    gap: 0.4166666667vw;
  }
}
.footer .terms__text span {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .footer .terms__text span {
    font-size: max(0.8333333333vw, 12px);
  }
}
.footer .terms__text span {
  font-weight: 400;
  color: #fff;
}
.footer .terms__logo {
  width: 36px;
  height: 40px;
}
@media screen and (width >= 1025px) {
  .footer .terms__logo {
    width: 1.875vw;
    height: 2.0833333333vw;
  }
}
.footer .terms__logo svg {
  width: 100%;
  height: 100%;
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.header {
  --header-top: 20px;
  position: fixed;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px - var(--scrollbar-comp, 0px));
  min-height: min(100px, 18.6666666667vw);
  padding: 10px;
  margin: 20px 20px 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: background-color 0.3s ease, margin-top 0.3s ease, width 0.3s ease, margin 0.3s ease;
}
@media screen and (width >= 768px) {
  .header {
    --header-top: 40px;
    width: calc(100% - 80px - var(--scrollbar-comp, 0px));
    min-height: 100px;
    padding: 10px;
    margin: 40px 40px 0;
    border-radius: min(30px, 2.6041666667vw);
  }
}
@media screen and (width >= 1025px) {
  .header {
    flex-wrap: nowrap;
    -moz-column-gap: 1.0416666667vw;
         column-gap: 1.0416666667vw;
    width: calc(100% - 4.1666666667vw - var(--scrollbar-comp, 0px));
    height: auto;
    min-height: auto;
    padding: 0.5208333333vw 0.5208333333vw 0.5208333333vw 1.5625vw;
    margin: 2.0833333333vw 2.0833333333vw 0;
    border-radius: 1.5625vw;
    backdrop-filter: blur(30px);
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (width >= 1025px) {
  .header__nav {
    gap: 3.125vw;
    margin: 0.5208333333vw 0;
  }
}
@media screen and (width <= 1200px) {
  .header__nav {
    gap: 1.5625vw;
  }
}
.header__logo {
  width: min(180px, 32vw);
  height: min(60px, 10.6666666667vw);
  margin-left: 10px;
}
@media screen and (width >= 768px) {
  .header__logo {
    width: 180px;
    height: 60px;
    margin-left: 20px;
  }
}
@media screen and (width >= 1025px) {
  .header__logo {
    width: 9.375vw;
    height: 3.125vw;
    margin-left: 1.0416666667vw;
  }
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
.header__item {
  display: none;
  gap: 10px;
  align-items: center;
  color: #f9f4f2;
}
@media screen and (width >= 1025px) {
  .header__item {
    display: flex;
    gap: 0.5208333333vw;
  }
}
.header__item--mobile {
  display: flex;
  justify-content: center;
}
@media screen and (width <= 1600px) {
  .header__item--phone {
    display: none;
  }
}
.header__item-icon {
  width: 20px;
  height: 20px;
}
@media screen and (width >= 1025px) {
  .header__item-icon {
    width: 1.0416666667vw;
    height: 1.0416666667vw;
  }
}
.header__item-text {
  font-family: "Gilroy", sans-serif;
  font-size: min(4.2666666667vw, 18px);
  font-weight: 500;
  line-height: 120%;
  color: #f9f4f2;
}
@media screen and (width >= 768px) {
  .header__item-text {
    font-size: 18px;
  }
}
@media screen and (width >= 1025px) {
  .header__item-text {
    font-size: max(0.9375vw, 16px);
  }
}
.header__item-text {
  text-wrap: nowrap;
}
.header__social-list {
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (width >= 1025px) {
  .header__social-list {
    display: flex;
    gap: 0.5208333333vw;
  }
}
.header__social-list--mobile {
  display: flex;
  margin-bottom: auto;
}
.header__social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 1025px) {
  .header__social-icon {
    width: 1.875vw;
    height: 1.875vw;
  }
}
.header__social-icon::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(85deg, #ff601e 3.7%, #ff896f 110.51%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__social-icon:hover {
    transform: scale(1.12);
  }
  .header__social-icon:hover::before {
    opacity: 1;
  }
}
.header__social-icon:active {
  transform: scale(0.92);
}
.header__social-icon:active::before {
  opacity: 1;
}
.header__social-icon svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
}
@media screen and (width >= 1025px) {
  .header__social-icon svg {
    width: max(0.7291666667vw, 10px);
    height: max(0.7291666667vw, 10px);
  }
}
.header__social-icon--phone {
  display: none;
}
@media screen and (width <= 1600px) {
  .header__social-icon--phone {
    display: flex;
  }
}
.header__buttons {
  display: flex;
  gap: 10px;
}
@media screen and (width >= 1025px) {
  .header__buttons {
    gap: 0.5208333333vw;
  }
}
.header__buttons--mobile {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header__call {
  display: none;
  text-wrap: nowrap;
}
@media screen and (width >= 1025px) {
  .header__call {
    display: flex;
  }
}
.header__call--mobile {
  display: flex;
  width: 100%;
}
.header__apartments {
  display: none;
  text-wrap: nowrap;
}
@media screen and (width >= 768px) {
  .header__apartments {
    display: flex;
  }
}
.header__apartments--mobile {
  display: flex;
  width: 100%;
}
@media screen and (width >= 768px) {
  .header__apartments--mobile {
    display: none;
  }
}
.header__dropdown {
  display: flex;
  visibility: hidden;
  flex: 0 0 100%;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: flex-start;
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.45, 0, 0.55, 1), visibility 0s 0.5s;
}
@media screen and (width >= 1025px) {
  .header__dropdown {
    display: none;
  }
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.header .menu {
  display: grid;
  place-items: center;
  padding: min(30px, 4.8vw);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 768px) {
  .header .menu {
    padding: 30px;
  }
}
@media screen and (width >= 1025px) {
  .header .menu {
    display: none;
  }
}
@media (hover: hover) {
  .header .menu:hover {
    background-color: rgba(255, 255, 255, 0.45);
  }
}
.header .menu:active {
  background-color: rgba(255, 255, 255, 0.45);
  transform: scale(0.92);
}
.header .menu__icon {
  grid-area: 1/1;
  width: min(20px, 3.2vw);
  height: min(20px, 3.2vw);
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (width >= 768px) {
  .header .menu__icon {
    width: 20px;
    height: 20px;
  }
}
.header .menu__icon--menu {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.header--active .menu__icon--menu {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}
.header--active .menu__icon--cross {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.header--scrolled, .header--dark {
  --header-top: 10px;
  width: calc(100% - 20px - var(--scrollbar-comp, 0px));
  margin: 10px 10px 0;
  background-color: #292825;
}
@media screen and (width >= 768px) {
  .header--scrolled, .header--dark {
    width: calc(100% - 40px - var(--scrollbar-comp, 0px));
    margin: 20px 20px 0;
  }
}
@media screen and (width >= 1025px) {
  .header--scrolled, .header--dark {
    width: calc(100% - 4.1666666667vw - var(--scrollbar-comp, 0px));
    margin: 2.0833333333vw 2.0833333333vw 0;
  }
}
.header--fixed {
  --header-top: 10px;
  margin-top: 10px;
}
.header--active {
  background-color: #292825;
}
.header--active .header__dropdown {
  visibility: visible;
  height: calc(100vh - 2 * var(--header-top) - min(100px, 18.6666666667vw));
  height: calc(100dvh - 2 * var(--header-top) - min(100px, 18.6666666667vw));
  transition: height 0.7s cubic-bezier(0.45, 0, 0.55, 1), visibility 0s;
}
@media screen and (width >= 768px) {
  .header--active .header__dropdown {
    height: 669px;
  }
}
@media screen and (width >= 1025px) {
  .header--active .header__dropdown {
    height: 0;
    transition: none;
  }
}

.header-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.header-overlay--visible {
  visibility: visible;
  opacity: 1;
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.more-news {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media screen and (width >= 1025px) {
  .more-news {
    gap: 2.0833333333vw;
  }
}
.more-news__header {
  display: flex;
  align-items: end;
  width: 100%;
}
.more-news__title {
  font-family: "Gilroy", sans-serif;
  font-size: min(8.5333333333vw, 60px);
  font-weight: 500;
  line-height: 100%;
  color: #292825;
  letter-spacing: -0.05em;
}
@media screen and (width >= 768px) {
  .more-news__title {
    font-size: min(7.03125vw, 60px);
  }
}
@media screen and (width >= 1025px) {
  .more-news__title {
    font-size: max(3.125vw, 32px);
  }
}
.more-news__title {
  width: 100%;
}
@media screen and (width >= 1025px) {
  .more-news__title {
    width: 829px;
  }
}
.more-news__nav {
  display: none;
  gap: 0.5208333333vw;
  align-items: center;
  margin-left: auto;
}
@media screen and (width >= 1025px) {
  .more-news__nav {
    display: flex;
  }
}
.more-news__prev, .more-news__next {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  color: #ff601e;
}
.more-news__next {
  rotate: 180deg;
}
.more-news__list {
  width: 100%;
  height: min(80vw, 600px);
}
@media screen and (width >= 768px) {
  .more-news__list {
    height: 600px;
  }
}
@media screen and (width >= 1025px) {
  .more-news__list {
    height: 31.25vw;
  }
}
.more-news__card {
  height: 100%;
}
.more-news__button {
  width: 100%;
}
.more-news__footer {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: -30px;
}
@media screen and (width >= 768px) {
  .more-news__footer {
    margin-top: 0;
  }
}
@media screen and (width >= 1025px) {
  .more-news__footer {
    display: none;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.news-card {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: auto;
  height: min(80vw, 600px);
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 30px;
}
@media screen and (width >= 768px) {
  .news-card {
    width: 547px;
    height: 600px;
    padding: 30px;
  }
}
@media screen and (width >= 1025px) {
  .news-card {
    width: 28.4895833333vw;
    height: 31.25vw;
    padding: 1.5625vw;
    border-radius: 1.5625vw;
  }
}
@media (hover: hover) {
  .news-card :hover img {
    transform: scale(1.1);
  }
}
.news-card__bg {
  position: absolute;
  inset: 0;
}
.news-card__bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 53.8%);
}
.news-card__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
.news-card__date {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #292825;
}
@media screen and (width >= 1025px) {
  .news-card__date {
    font-size: max(0.8333333333vw, 12px);
  }
}
.news-card__date {
  position: relative;
  z-index: 2;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(15px);
}
@media screen and (width >= 1025px) {
  .news-card__date {
    padding: 0.5208333333vw;
    border-radius: 0.5208333333vw;
  }
}
.news-card__title {
  font-family: "Gilroy", sans-serif;
  font-size: min(5.8666666667vw, 32px);
  font-weight: 600;
  line-height: 100%;
  color: #fff;
}
@media screen and (width >= 768px) {
  .news-card__title {
    font-size: 32px;
  }
}
@media screen and (width >= 1025px) {
  .news-card__title {
    font-size: max(1.6666666667vw, 22px);
  }
}
.news-card__title {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media screen and (width >= 768px) {
  .news-card__title {
    width: 62.5vw;
  }
}
@media screen and (width >= 1025px) {
  .news-card__title {
    width: 100%;
  }
}
.news-card.swiper-slide {
  display: flex;
  height: min(80vw, 600px);
}
@media screen and (width >= 768px) {
  .news-card.swiper-slide {
    height: 600px;
  }
}
@media screen and (width >= 1025px) {
  .news-card.swiper-slide {
    height: 31.25vw;
  }
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pagination__utility {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 343px;
}
@media screen and (width >= 768px) {
  .pagination__utility {
    gap: 32px;
  }
}
@media screen and (width >= 1025px) {
  .pagination__utility {
    gap: 2.5vw;
  }
}
.pagination__input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 86px;
  padding: 4px 28px;
  pointer-events: none;
  border-radius: 100px;
}
.pagination__more {
  margin-top: 16px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (width >= 768px) {
  .pagination__more {
    margin-top: 32px;
  }
}
@media screen and (width >= 1025px) {
  .pagination__more {
    margin-top: 40px;
  }
}
.pagination .pagination-count {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pagination .pagination-count__current {
  padding: 12px 24px;
  border-radius: 100px;
}
@media screen and (width >= 768px) {
  .pagination .pagination-count__current {
    padding: 22px 48px;
  }
}
.pagination .pagination-count__max {
  text-wrap: nowrap;
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

.thanks-modal .modal__body {
  width: min(89.3333333333vw, 500px);
  height: min(133.3333333333vw, 600px);
  overflow: hidden;
  background-color: #f9f4f2;
  border-radius: 30px;
}
@media screen and (width >= 768px) {
  .thanks-modal .modal__body {
    width: 600px;
    height: 600px;
  }
}
@media screen and (width >= 1025px) {
  .thanks-modal .modal__body {
    width: 31.25vw;
    height: 31.25vw;
    border-radius: 1.5625vw;
  }
}
.thanks-modal .modal__close {
  display: none;
  pointer-events: none;
}
.thanks-modal.modal--open {
  background-color: rgba(41, 40, 37, 0.25);
}
.thanks-modal__decor {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 100%;
  height: 100%;
  rotate: 50deg;
}
@media screen and (width >= 768px) {
  .thanks-modal__decor {
    top: -57%;
    right: -57%;
    rotate: -120deg;
  }
}
.thanks-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #f9f4f2;
  border-radius: 30px;
}
@media screen and (width >= 768px) {
  .thanks-modal__content {
    padding: 30px;
  }
}
@media screen and (width >= 1025px) {
  .thanks-modal__content {
    gap: 1.0416666667vw;
    padding: 1.5625vw;
    border-radius: 1.5625vw;
  }
}
.thanks-modal__title {
  font-family: "Gilroy", sans-serif;
  font-size: min(7.4666666667vw, 45px);
  font-weight: 500;
  line-height: 100%;
  color: #292825;
  letter-spacing: -0.05em;
}
@media screen and (width >= 768px) {
  .thanks-modal__title {
    font-size: 45px;
  }
}
@media screen and (width >= 1025px) {
  .thanks-modal__title {
    font-size: max(2.34375vw, 28px);
  }
}
.thanks-modal__title {
  position: relative;
  width: 100%;
}
@media screen and (width >= 768px) {
  .thanks-modal__title {
    width: 405px;
  }
}
@media screen and (width >= 1025px) {
  .thanks-modal__title {
    width: 21.09375vw;
  }
}
.thanks-modal__description {
  font-family: "Gilroy", sans-serif;
  font-size: min(4.2666666667vw, 18px);
  font-weight: 500;
  line-height: 120%;
  color: #f9f4f2;
}
@media screen and (width >= 768px) {
  .thanks-modal__description {
    font-size: 18px;
  }
}
@media screen and (width >= 1025px) {
  .thanks-modal__description {
    font-size: max(0.9375vw, 16px);
  }
}
.thanks-modal__description {
  position: relative;
  width: 100%;
  color: #292825;
}
@media screen and (width >= 768px) {
  .thanks-modal__description {
    width: 405px;
  }
}
@media screen and (width >= 1025px) {
  .thanks-modal__description {
    width: 21.09375vw;
  }
}
.thanks-modal__button {
  margin-top: auto;
}:root {
  --container-size: 10px;
}
@media (width >= 768px) {
  :root {
    --container-size: 20px;
  }
}
@media (width >= 1025px) {
  :root {
    --container-size: 6.25vw;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th,
td {
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
}

q,
blockquote {
  quotes: none;
}

q::before,
q::after,
blockquote::before,
blockquote::after {
  content: "";
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*::after,
*::before {
  box-sizing: border-box;
  line-height: 1;
  outline: none;
  border: none;
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

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

.debug {
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100vh;
}
.debug > div {
  height: inherit;
  max-width: 1920px;
  margin: 0 auto;
  padding-right: 60px;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .debug > div {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.debug > div > div {
  height: inherit;
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.debug > div > div > div {
  box-sizing: border-box;
  overflow-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(4.1666666667% - 20px);
  height: inherit;
  outline: 1px solid #ff0;
  background: rgba(0, 0, 0, 0.5);
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 14px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden !important;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

body input,
body textarea {
  outline: none;
  border: #666 1px solid;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 20px;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

:placeholder {
  color: #ccc;
}

::input-placeholder {
  color: #ccc;
}

:input-placeholder {
  color: #ccc;
}

::input-placeholder {
  color: #ccc;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  border-color: red;
}

body input:required:valid,
body textarea:required:valid {
  border-color: green;
}

img {
  display: block;
  width: 100%;
}

body *:focus {
  outline: none;
}

body.focus-tab--enable *:focus {
  outline: #4d90fe auto 7px;
  outline-offset: -2px;
}

button {
  padding: 0;
  margin: 0;
  background: none;
  border: navajowhite;
}

button:hover,
a:hover,
select:hover {
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .intl-tel-input.allow-dropdown .flag-container,
  .intl-tel-input.separate-dial-code .flag-container {
    left: 5%;
  }
}

@media screen and (max-width: 1200px) {
  .intl-tel-input.allow-dropdown input,
  .intl-tel-input.allow-dropdown input[type=tel],
  .intl-tel-input.allow-dropdown input[type=text],
  .intl-tel-input.separate-dial-code input,
  .intl-tel-input.separate-dial-code input[type=tel],
  .intl-tel-input.separate-dial-code input[type=text] {
    padding-left: 95px;
  }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

.container--full-screen {
  width: 100%;
  height: 100vh;
  max-height: none;
  padding: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.thumbs__item {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: 4px;
  opacity: 1;
  transform-origin: center;
  transition: width 0.25s ease-out;
}
.thumbs__item[class*=active] {
  width: 16px;
  background-color: var(--color-blue);
}
.thumbs > :nth-child(n+2) {
  margin-left: 8px;
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/Gilroy-Thin.eot");
  src: local("Gilroy Thin"), local("Gilroy-Thin"), url("../fonts/Gilroy-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Thin.woff2") format("woff2"), url("../fonts/Gilroy-Thin.woff") format("woff"), url("../fonts/Gilroy-Thin.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 100;
  src: url("../fonts/Gilroy-ThinItalic.eot");
  src: local("Gilroy Thin Italic"), local("Gilroy-ThinItalic"), url("../fonts/Gilroy-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ThinItalic.woff2") format("woff2"), url("../fonts/Gilroy-ThinItalic.woff") format("woff"), url("../fonts/Gilroy-ThinItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/Gilroy-UltraLight.eot");
  src: local("Gilroy UltraLight"), local("Gilroy-UltraLight"), url("../fonts/Gilroy-UltraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-UltraLight.woff2") format("woff2"), url("../fonts/Gilroy-UltraLight.woff") format("woff"), url("../fonts/Gilroy-UltraLight.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 200;
  src: url("../fonts/Gilroy-UltraLightItalic.eot");
  src: local("Gilroy UltraLight Italic"), local("Gilroy-UltraLightItalic"), url("../fonts/Gilroy-UltraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-UltraLightItalic.woff2") format("woff2"), url("../fonts/Gilroy-UltraLightItalic.woff") format("woff"), url("../fonts/Gilroy-UltraLightItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Gilroy-Light.eot");
  src: local("Gilroy Light"), local("Gilroy-Light"), url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/Gilroy-LightItalic.eot");
  src: local("Gilroy Light Italic"), local("Gilroy-LightItalic"), url("../fonts/Gilroy-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-LightItalic.woff2") format("woff2"), url("../fonts/Gilroy-LightItalic.woff") format("woff"), url("../fonts/Gilroy-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: normal;
  src: url("../fonts/Gilroy-RegularItalic.eot");
  src: local("Gilroy Regular Italic"), local("Gilroy-RegularItalic"), url("../fonts/Gilroy-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-RegularItalic.woff2") format("woff2"), url("../fonts/Gilroy-RegularItalic.woff") format("woff"), url("../fonts/Gilroy-RegularItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/Gilroy-MediumItalic.eot");
  src: local("Gilroy Medium Italic"), local("Gilroy-MediumItalic"), url("../fonts/Gilroy-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-MediumItalic.woff2") format("woff2"), url("../fonts/Gilroy-MediumItalic.woff") format("woff"), url("../fonts/Gilroy-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Gilroy-Semibold.eot");
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("../fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff"), url("../fonts/Gilroy-Semibold.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/Gilroy-SemiboldItalic.eot");
  src: local("Gilroy Semibold Italic"), local("Gilroy-SemiboldItalic"), url("../fonts/Gilroy-SemiboldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-SemiboldItalic.woff2") format("woff2"), url("../fonts/Gilroy-SemiboldItalic.woff") format("woff"), url("../fonts/Gilroy-SemiboldItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Gilroy-Bold.eot");
  src: local("Gilroy Bold"), local("Gilroy-Bold"), url("../fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: bold;
  src: url("../fonts/Gilroy-BoldItalic.eot");
  src: local("Gilroy Bold Italic"), local("Gilroy-BoldItalic"), url("../fonts/Gilroy-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-BoldItalic.woff2") format("woff2"), url("../fonts/Gilroy-BoldItalic.woff") format("woff"), url("../fonts/Gilroy-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Gilroy-Extrabold.eot");
  src: local("Gilroy Extrabold"), local("Gilroy-Extrabold"), url("../fonts/Gilroy-Extrabold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Extrabold.woff2") format("woff2"), url("../fonts/Gilroy-Extrabold.woff") format("woff"), url("../fonts/Gilroy-Extrabold.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/Gilroy-ExtraboldItalic.eot");
  src: local("Gilroy Extrabold Italic"), local("Gilroy-ExtraboldItalic"), url("../fonts/Gilroy-ExtraboldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraboldItalic.woff2") format("woff2"), url("../fonts/Gilroy-ExtraboldItalic.woff") format("woff"), url("../fonts/Gilroy-ExtraboldItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Gilroy-Heavy.eot");
  src: local("Gilroy Heavy"), local("Gilroy-Heavy"), url("../fonts/Gilroy-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Heavy.woff2") format("woff2"), url("../fonts/Gilroy-Heavy.woff") format("woff"), url("../fonts/Gilroy-Heavy.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/Gilroy-HeavyItalic.eot");
  src: local("Gilroy Heavy Italic"), local("Gilroy-HeavyItalic"), url("../fonts/Gilroy-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-HeavyItalic.woff2") format("woff2"), url("../fonts/Gilroy-HeavyItalic.woff") format("woff"), url("../fonts/Gilroy-HeavyItalic.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Gilroy-Black.eot");
  src: local("Gilroy Black"), local("Gilroy-Black"), url("../fonts/Gilroy-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff"), url("../fonts/Gilroy-Black.ttf") format("truetype");
}
@font-face {
  font-family: Gilroy;
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/Gilroy-BlackItalic.eot");
  src: local("Gilroy Black Italic"), local("Gilroy-BlackItalic"), url("../fonts/Gilroy-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-BlackItalic.woff2") format("woff2"), url("../fonts/Gilroy-BlackItalic.woff") format("woff"), url("../fonts/Gilroy-BlackItalic.ttf") format("truetype");
}
html {
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100%;
  padding-bottom: 10px;
}
@media screen and (width >= 768px) {
  body {
    padding-bottom: 20px;
  }
}
@media screen and (width >= 1025px) {
  body {
    padding-bottom: 1.0416666667vw;
  }
}

.link-underline {
  position: relative;
}
.link-underline::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background-color: currentcolor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .link-underline:hover::after {
    transform: scaleX(1);
  }
}

.container {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (width >= 768px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (width >= 1025px) {
  .container {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}
@media screen and (width >= 1920px) {
  .container {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}

/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}
