@charset "UTF-8";/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

: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-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.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-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



: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;
  }
  svg {
    width: 100%;
    height: 100%;
    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;
  .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 {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .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;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .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;
    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;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

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


.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.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1580px;
  margin-inline: auto;
  padding-inline: 20px;
}

.logo {
  max-width: 175px;
}
.logo:hover {
  opacity: 0.7;
}
.logo img {
  width: 100%;
}

.button {
  display: block;
  border-radius: 60px;
  background: #D51600;
  font-weight: 700;
  font-size: 18px;
  color: white;
  padding: 15px;
  min-width: 240px;
  text-align: center;
}
.button:hover {
  opacity: 0.7;
}

.title__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
@media (max-width: 1199px) {
  .title__wrapper {
    flex-direction: column;
    align-items: start;
  }
}

body.no-scroll {
  overflow: hidden;
}

.solid {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.solid::after {
  display: block;
  content: "";
  width: 200px;
  height: 3px;
  background: #D51600;
}

.lang-switcher {
  flex-shrink: 0;
}
.lang-switcher span a {
  font-size: 20px;
  cursor: pointer;
}
.lang-switcher span a:hover {
  color: #E6AD00;
}
.lang-switcher span a.active {
  color: #E6AD00;
  pointer-events: none;
  font-weight: 800;
  font-size: 22px;
}
.lang-switcher .separator {
  pointer-events: none;
  font-size: 20px;
}

@keyframes arrowPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
* {
  transition: 0.4s;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: "OpenSans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

header {
  flex: 0 0 auto;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: 0.2s;
}

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

.header {
  position: absolute;
  width: 100%;
  z-index: 4;
  color: white;
}
.header__inner {
  display: flex;
  align-items: end;
  gap: 40px;
  padding-block: 30px;
}
@media (max-width: 1399px) {
  .header__inner {
    align-items: center;
  }
}
@media (max-width: 1199px) {
  .header__inner {
    justify-content: space-between;
  }
}
@media (max-width: 1199px) {
  .header__nav {
    display: none;
  }
}
.header__list {
  display: flex;
  gap: 10px 45px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.header__list .submenu {
  position: absolute;
  top: calc(100% + 20px); /* Добавляем 20px отступа сверху */
  left: 0;
  min-width: 280px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: 0s; /* Убираем задержку при скрытии */
  z-index: 1000;
  pointer-events: none; /* Отключаем взаимодействие когда скрыто */
  color: black;
}
.header__list .submenu li a {
  display: block;
  padding: 17px 12px;
  font-size: 16px;
}
.header__list .submenu li a:hover {
  color: #E6AD00;
}
.header__li.has-submenu {
  position: relative;
}
.header__li.has-submenu span {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.header__li.has-submenu span::after {
  content: url('data:image/svg+xml,<svg width="11" height="7" viewBox="0 0 11 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.353516 0.353516L5.35352 5.35352L10.3535 0.353516" stroke="%23E6AD00"/></svg>');
}
.header__li.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px; /* Такой же отступ как у submenu */
  background: transparent;
}
.header__li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto; /* Включаем взаимодействие когда видимо */
  transition-delay: 0.1s; /* Небольшая задержка при появлении */
}
.header__link {
  font-size: 18px;
}
.header__link.active {
  border-bottom: 1px solid;
  color: #E6AD00;
  font-weight: 600;
}
.header__link:hover {
  color: #E6AD00;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-left: auto;
  padding-bottom: 10px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .header__right {
    display: none;
  }
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  font-size: 20px;
}
.header__phone::before {
  content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.38567 1.0415H6.5115C6.63863 1.0415 6.76274 1.08027 6.86726 1.15263C6.97178 1.225 7.05176 1.32751 7.0965 1.4465L8.30984 4.6715C8.34983 4.77815 8.35991 4.89371 8.339 5.00567L7.73067 8.26567C8.47817 10.0223 9.71234 11.2032 11.7582 12.2623L14.979 11.6373C15.0935 11.6153 15.2118 11.6257 15.3207 11.6673L18.5557 12.9007C18.6739 12.9457 18.7757 13.0256 18.8476 13.1298C18.9195 13.2339 18.958 13.3575 18.9582 13.484V16.4707C18.9582 17.8257 17.7648 18.9248 16.3682 18.6207C13.824 18.0673 9.10984 16.6598 5.80817 13.3582C2.64484 10.1957 1.58484 5.82734 1.229 3.4665C1.02484 2.11817 2.10567 1.0415 3.38567 1.0415Z" fill="%23E6AD00"/></svg>');
  height: 20px;
  flex-shrink: 0;
}
.header__phone:hover {
  color: #E6AD00;
}
.header__mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
  overflow-y: auto;
  color: black;
  padding: 60px 20px;
}
.header__mobile-li.has-submenu span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__mobile-li.has-submenu span::after {
  transition: 0.4s;
  content: url('data:image/svg+xml,<svg width="11" height="7" viewBox="0 0 11 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.353516 0.353516L5.35352 5.35352L10.3535 0.353516" stroke="%23E6AD00"/></svg>');
}
.header__mobile-li.has-submenu.active span::after {
  rotate: 180deg;
  margin-bottom: -5px;
}
.header__mobile-li.has-submenu .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}
.header__mobile-li.has-submenu .sub-menu.active {
  max-height: 500px;
}
.header__mobile-li.has-submenu .sub-menu li {
  margin-bottom: 10px;
}
.header__mobile-li.has-submenu .sub-menu li:first-child {
  margin-top: 20px;
}
.header__mobile-nav {
  margin-bottom: 50px;
}
.header__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.header__mobile-link {
  font-size: 18px;
}
.header__mobile.active {
  transform: translateX(0);
}
.header__mobile-burger {
  display: none;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .header__mobile-burger {
    display: block;
  }
}
.header__mobile-burger .line {
  width: 38px;
  height: 4px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}
.header__mobile-burger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 2px);
}
.header__mobile-burger.active .line:nth-child(2) {
  opacity: 0;
}
.header__mobile-burger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -10px);
}
.header__mobile-row {
  display: flex;
  align-items: center;
  gap: 20px 80px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.header__mobile-socials {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.header__mobile-socials a {
  width: 40px;
  height: 40px;
}
.header__mobile-socials a img {
  width: 100%;
}
.header__mobile-phone, .header__mobile-address {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 19px;
  margin-bottom: 35px;
}
.header__mobile-phone::before {
  flex-shrink: 0;
  content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.38567 1.0415H6.5115C6.63863 1.0415 6.76274 1.08027 6.86726 1.15263C6.97178 1.225 7.05176 1.32751 7.0965 1.4465L8.30984 4.6715C8.34983 4.77815 8.35991 4.89371 8.339 5.00567L7.73067 8.26567C8.47817 10.0223 9.71234 11.2032 11.7582 12.2623L14.979 11.6373C15.0935 11.6153 15.2118 11.6257 15.3207 11.6673L18.5557 12.9007C18.6739 12.9457 18.7757 13.0256 18.8476 13.1298C18.9195 13.2339 18.958 13.3575 18.9582 13.484V16.4707C18.9582 17.8257 17.7648 18.9248 16.3682 18.6207C13.824 18.0673 9.10984 16.6598 5.80817 13.3582C2.64484 10.1957 1.58484 5.82734 1.229 3.4665C1.02484 2.11817 2.10567 1.0415 3.38567 1.0415Z" fill="%23E6AD00"/></svg>');
  height: 20px;
}
@media (max-width: 479px) {
  .header__mobile-address {
    font-size: 16px;
  }
}
.header__mobile-address::before {
  flex-shrink: 0;
  content: url('data:image/svg+xml,<svg width="18" height="24" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.73438 5.0625C7.97106 5.0625 7.22489 5.29755 6.59022 5.73794C5.95555 6.17832 5.46088 6.80426 5.16878 7.53659C4.87667 8.26892 4.80024 9.07476 4.94916 9.8522C5.09807 10.6296 5.46564 11.3438 6.00538 11.9043C6.54513 12.4648 7.2328 12.8465 7.98145 13.0011C8.73009 13.1558 9.50609 13.0764 10.2113 12.773C10.9165 12.4697 11.5193 11.956 11.9433 11.2969C12.3674 10.6379 12.5938 9.86298 12.5938 9.07031C12.5938 8.00737 12.1871 6.98797 11.4634 6.23636C10.7396 5.48475 9.75795 5.0625 8.73438 5.0625ZM8.73438 11.8125C8.21211 11.8125 7.70157 11.6517 7.26732 11.3504C6.83307 11.049 6.49462 10.6208 6.29476 10.1197C6.09489 9.61863 6.0426 9.06727 6.14449 8.53534C6.24638 8.00341 6.49787 7.5148 6.86717 7.13129C7.23647 6.74779 7.70698 6.48662 8.21921 6.38082C8.73145 6.27501 9.26239 6.32931 9.7449 6.53686C10.2274 6.74441 10.6398 7.09588 10.93 7.54683C11.2201 7.99779 11.375 8.52796 11.375 9.07031C11.375 9.79759 11.0968 10.4951 10.6016 11.0093C10.1064 11.5236 9.43471 11.8125 8.73438 11.8125ZM8.73438 0C6.4187 0.00279134 4.19864 0.959307 2.56121 2.65972C0.923777 4.36012 0.00268796 6.66557 0 9.07031C0 12.3304 1.45641 15.7929 4.2118 19.0835C5.45543 20.576 6.85511 21.9202 8.385 23.0913C8.48741 23.1657 8.60938 23.2057 8.73438 23.2057C8.85937 23.2057 8.98134 23.1657 9.08375 23.0913C10.6136 21.9202 12.0133 20.576 13.257 19.0835C16.0123 15.7929 17.4688 12.3335 17.4688 9.07031C17.4661 6.66557 16.545 4.36012 14.9075 2.65972C13.2701 0.959307 11.0501 0.00279134 8.73438 0ZM8.73438 21.7804C7.21094 20.559 1.21875 15.3584 1.21875 9.07031C1.21875 7.00038 2.01057 5.01523 3.42003 3.55157C4.82948 2.0879 6.74111 1.26562 8.73438 1.26562C10.7276 1.26562 12.6393 2.0879 14.0487 3.55157C15.4582 5.01523 16.25 7.00038 16.25 9.07031C16.25 15.3584 10.2578 20.559 8.73438 21.7804Z" fill="%23FA9200"/></svg>');
  height: 20px;
}
.header__mobile .header__close {
  position: absolute;
  right: 40px;
  top: 40px;
}

.footer {
  background: #000000;
  color: white;
}
.footer__inner {
  display: flex;
  align-items: end;
  gap: 70px;
  padding-block: 50px 70px;
}
@media (max-width: 1199px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    padding-block: 45px 90px;
  }
}
.footer__list {
  display: flex;
  gap: 45px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .footer__list {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.footer__link:hover {
  color: #E6AD00;
}
.footer__right {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-left: auto;
  padding-bottom: 10px;
}
@media (max-width: 1199px) {
  .footer__right {
    display: none;
  }
}
.footer__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  font-size: 20px;
}
.footer__phone::before {
  content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.38567 1.0415H6.5115C6.63863 1.0415 6.76274 1.08027 6.86726 1.15263C6.97178 1.225 7.05176 1.32751 7.0965 1.4465L8.30984 4.6715C8.34983 4.77815 8.35991 4.89371 8.339 5.00567L7.73067 8.26567C8.47817 10.0223 9.71234 11.2032 11.7582 12.2623L14.979 11.6373C15.0935 11.6153 15.2118 11.6257 15.3207 11.6673L18.5557 12.9007C18.6739 12.9457 18.7757 13.0256 18.8476 13.1298C18.9195 13.2339 18.958 13.3575 18.9582 13.484V16.4707C18.9582 17.8257 17.7648 18.9248 16.3682 18.6207C13.824 18.0673 9.10984 16.6598 5.80817 13.3582C2.64484 10.1957 1.58484 5.82734 1.229 3.4665C1.02484 2.11817 2.10567 1.0415 3.38567 1.0415Z" fill="%23E6AD00"/></svg>');
  height: 20px;
  flex-shrink: 0;
}
.footer__phone:hover {
  color: #E6AD00;
}

.hero {
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 3;
  padding-block: 200px;
}
.hero__wrapper h1 {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: white;
  max-width: 880px;
}
@media (max-width: 599px) {
  .hero__wrapper h1 {
    font-size: 26px;
  }
}
.hero__wrapper p {
  font-size: 20px;
  color: #E6AD00;
  max-width: 750px;
  text-align: center;
  margin-block: 15px;
}
@media (max-width: 599px) {
  .hero__wrapper p {
    font-size: 16px;
  }
}
.hero__image {
  position: absolute;
  top: 0;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__arrow {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 50%; /* центрирование по горизонтали */
  transform: translateX(-50%);
}
.hero__arrow svg {
  animation: arrowPulse 1.25s ease-in-out infinite;
  animation-delay: 0.5s; /* задержка перед началом */
}
.hero__socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  position: absolute;
  right: 50px;
  bottom: 30%;
}
@media (max-width: 1199px) {
  .hero__socials {
    display: none;
  }
}
.hero__socials-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__socials-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__socials-item {
  width: 40px;
  height: 40px;
}
.hero__socials-item:hover {
  opacity: 0.7;
}
.hero__socials-item img, .hero__socials-item svg {
  width: 100%;
}

.projects {
  margin-block: 80px 105px;
}
.projects__title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}
.projects__text {
  max-width: 700px;
}
.projects__text p {
  color: #939393;
  font-size: 14px;
}
.projects .title__wrapper {
  margin-bottom: 45px;
}
.projects__swiper-slide {
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .projects__swiper-slide {
    height: 430px;
  }
}
.projects__swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects__swiper-pagination {
  position: static;
  margin-top: 20px;
}
.projects__swiper-pagination .swiper-pagination-bullet {
  width: 23px;
  height: 9px;
  border-radius: 40px;
}
.projects__swiper-pagination .swiper-pagination-bullet-active {
  width: 59px;
  background: #D51600;
}

.project {
  padding-block: 70px;
}
.project__wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .project__wrapper {
    flex-direction: column;
    gap: 35px;
  }
}
.project-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1023px;
}
@media (max-width: 1199px) {
  .project-gallery {
    max-width: 100%;
  }
}
.project-gallery .main-slider {
  width: 100%;
}
.project-gallery .main-slider .swiper-slide {
  width: 100%;
  height: 530px;
}
@media (max-width: 479px) {
  .project-gallery .main-slider .swiper-slide {
    height: 400px;
  }
}
.project-gallery .main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.project-content {
  flex: 1;
}
.project-content .content-block {
  display: none;
  animation: fadeIn 0.4s ease;
  flex-direction: column;
  gap: 45px;
}
@media (max-width: 599px) {
  .project-content .content-block {
    gap: 30px;
  }
}
.project-content .content-block.active {
  display: flex;
}
.project .main-slider .swiper-button-prev, .project .main-slider .swiper-button-next {
  color: #D51600;
}
@media (max-width: 599px) {
  .project .main-slider .swiper-button-prev, .project .main-slider .swiper-button-next {
    display: none;
  }
}
.project .thumbs-slider {
  width: 100%;
}
.project .thumb-slide {
  height: 200px;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .project .thumb-slide {
    height: 150px;
  }
}
.project .thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project .swiper-slide-thumb-active {
  border: 2px solid #D51600;
}
.project__title {
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 599px) {
  .project__title {
    font-size: 26px;
  }
}
.project__points {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.project__point {
  display: flex;
  gap: 7px;
}
.project__point-ico svg {
  flex-shrink: 0;
}
.project__point-title {
  font-weight: 600;
  font-size: 14px;
}
.project__point-text {
  max-width: 126px;
  color: #848484;
  font-size: 10px;
}
.project__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project__text p {
  font-weight: 300;
}

.contacts {
  padding-block: 90px 110px;
}
@media (max-width: 1199px) {
  .contacts {
    padding-block: 90px 0;
  }
}
@media (max-width: 599px) {
  .contacts {
    padding-block: 40px 0;
  }
}
.contacts__wrapper {
  display: grid;
  grid-template-columns: 440px auto;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1199px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-inline: 0;
  }
}
.contacts__body h2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 45px;
}
@media (max-width: 1199px) {
  .contacts__body {
    padding-inline: 20px;
  }
}
.contacts__items {
  display: grid;
  gap: 30px;
}
.contacts__item-title {
  font-weight: 600;
  margin-bottom: 13px;
  color: rgba(0, 0, 0, 0.7098039216);
}
.contacts__item-value {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 19px;
}
.contacts__item-value img, .contacts__item-value svg {
  flex-shrink: 0;
}
.contacts__item a:hover {
  color: #E6AD00;
}
.contacts__map {
  overflow: hidden;
  border-radius: 12px;
  min-height: 585px;
  height: 100%;
}
@media (max-width: 599px) {
  .contacts__map {
    min-height: 725px;
  }
}

.geo {
  margin-block: 90px 180px;
}
@media (max-width: 1199px) {
  .geo {
    margin-block: 70px;
  }
}
.geo__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1199px) {
  .geo__content {
    align-items: start;
    flex-direction: column;
    gap: 80px;
  }
}
.geo__text {
  max-width: 760px;
}
.geo__text h2 {
  font-weight: 700;
  max-width: 650px;
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .geo__text h2 {
    font-size: 26px;
  }
}
.geo__image {
  max-width: 305px;
}
.geo__image img {
  width: 100%;
}
.geo__tabs {
  margin-top: 125px;
}
.geo__tabs-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 20px;
  margin-bottom: 100px;
  border-bottom: 1px solid #CACACA;
}
@media (max-width: 599px) {
  .geo__tabs-buttons {
    grid-template-columns: 1fr;
    gap: 0;
    border: 0;
  }
}
.geo__tab {
  display: none;
  animation: fadeIn 0.3s ease;
}
.geo__tab.active {
  display: block;
}
.geo__tab-button {
  cursor: pointer;
  font-size: 26px;
  color: #787878;
  text-align: center;
}
@media (max-width: 599px) {
  .geo__tab-button {
    padding-block: 50px;
    border-top: 1px solid #CACACA;
  }
}
@media (max-width: 599px) {
  .geo__tab-button:last-child {
    border-bottom: 1px solid #CACACA;
  }
}
.geo__tab-button.active {
  font-weight: 700;
  color: #D51600;
}
.geo__countries {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-inline: auto;
  gap: 50px 400px;
}
@media (max-width: 1366px) {
  .geo__countries {
    gap: 50px;
  }
}
@media (max-width: 599px) {
  .geo__countries {
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}
.geo__countries-item {
  display: flex;
  gap: 50px;
  align-items: center;
  font-size: 20px;
}
.geo__countries-item img {
  width: 50px;
  flex-shrink: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.info__wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin-block: 60px 180px;
}
@media (max-width: 1199px) {
  .info__wrapper {
    flex-direction: column;
    align-items: start;
    margin-block: 80px 120px;
  }
}
.info__text {
  max-width: 540px;
}
.info__text h2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  .info__text h2 {
    font-size: 26px;
  }
}
.info__text p {
  color: #939393;
  font-size: 14px;
  margin-block: 14px;
}
.info__image {
  max-width: 890px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .info__image {
    max-width: 100%;
  }
}
@media (max-width: 599px) {
  .info__image {
    height: 400px;
  }
}
.info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  margin-block: 180px 160px;
}
@media (max-width: 1199px) {
  .cards {
    margin-block: 120px;
  }
}
.cards__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .cards__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 599px) {
  .cards__wrapper {
    grid-template-columns: 1fr;
  }
}
.cards__item {
  display: flex;
  flex-direction: column;
}
.cards__item:nth-child(even) {
  flex-direction: column-reverse;
}
@media (max-width: 599px) {
  .cards__item:nth-child(even) {
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .cards__item {
    gap: 30px;
  }
}
.cards__item-image {
  height: 330px;
  filter: brightness(0.7);
}
.cards__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards__item-text {
  display: flex;
  align-items: center;
  padding-inline: 35px;
  justify-content: center;
  min-height: 330px;
  font-size: 14px;
  color: #939393;
}
@media (max-width: 1199px) {
  .cards__item-text {
    min-height: auto;
    padding-inline: 0;
  }
}

.guaranty {
  margin-block: 160px 25px;
}
@media (max-width: 599px) {
  .guaranty {
    margin-block: 120px 85px;
  }
}
.guaranty__title {
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 599px) {
  .guaranty__title {
    font-size: 26px;
  }
}
.guaranty__subtitle {
  font-weight: 300;
  font-size: 22px;
}
@media (max-width: 599px) {
  .guaranty__subtitle {
    font-size: 18px;
    margin-top: 24px;
  }
}
.guaranty__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .guaranty__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .guaranty__items {
    margin-top: 60px;
  }
}
.guaranty__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-bottom: 32px;
}
@media (max-width: 1199px) {
  .guaranty__item {
    padding-bottom: 40px;
  }
}
.guaranty__item:first-child::after {
  content: none;
}
@media (max-width: 1199px) {
  .guaranty__item:first-child::before {
    content: "";
    width: 150px;
    height: 3px;
    background: #D51600;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 1199px) {
  .guaranty__item:nth-child(2)::after {
    bottom: 40px;
  }
  .guaranty__item:nth-child(2)::before {
    content: "";
    width: 150px;
    height: 3px;
    background: #D51600;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 1199px) {
  .guaranty__item:nth-child(3)::after {
    content: none;
  }
  .guaranty__item:nth-child(3) {
    padding-top: 40px;
  }
}
@media (max-width: 1199px) {
  .guaranty__item:nth-child(4) {
    padding-top: 40px;
  }
  .guaranty__item:nth-child(4)::after {
    top: 40px;
    bottom: 0;
  }
}
.guaranty__item::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 114px;
  background: #D51600;
  left: 0;
  bottom: 0;
}
.guaranty__text {
  font-size: 18px;
  text-align: center;
  padding-inline: 10px;
}
@media (max-width: 479px) {
  .guaranty__text {
    font-size: 16px;
    padding-inline: 5px;
  }
}
@media (max-width: 374px) {
  .guaranty__text {
    font-size: 14px;
    padding-inline: 0;
  }
}

.services {
  padding-block: 145px 75px;
}
@media (max-width: 599px) {
  .services {
    padding-block: 70px 120px;
  }
}
.services__item {
  display: block;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.services__item:hover .services__item-image {
  filter: brightness(1);
}
.services__item:hover .services__item-title {
  opacity: 0;
}
.services__item-image {
  height: 390px;
  filter: brightness(0.6);
}
.services__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__item-title {
  position: absolute;
  padding-inline: 15px;
  bottom: 30px;
  font-weight: 700;
  font-size: 22px;
  color: white;
}
.services__swiper {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .services__swiper {
    margin-top: 40px;
  }
}
.services__swiper-pagination {
  position: static;
  margin-top: 50px;
}
.services__swiper-pagination .swiper-pagination-bullet {
  width: 23px;
  height: 9px;
  border-radius: 40px;
}
.services__swiper-pagination .swiper-pagination-bullet-active {
  width: 59px;
  background: #D51600;
}
.services__swiper-nav {
  display: flex;
  gap: 35px;
  align-items: center;
}
.services__swiper-nav .swiper-button-disabled {
  pointer-events: none;
}
.services__swiper-nav .swiper-button-disabled svg {
  opacity: 0.25;
}
@media (max-width: 1199px) {
  .services__swiper-nav {
    display: none;
  }
}
.services__swiper-nav div {
  cursor: pointer;
}
.services__swiper-button-prev {
  rotate: 180deg;
}
.services__banner {
  display: flex;
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .services__banner {
    min-height: 700px;
  }
}
.services__banner-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .services__banner-wrapper {
    justify-content: space-between;
    padding-bottom: 80px;
  }
}
.services__banner-wrapper .banner__content {
  color: white;
}
.services__banner-wrapper .banner__content h2 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 12px;
}
.services__banner-wrapper .banner__content h2:after {
  display: block;
  content: "";
  height: 3px;
  width: 120px;
  background: #E6AD00;
}
.services__banner-wrapper .banner__content span {
  color: #D51600;
}
.services__banner-title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.services__banner-text {
  background: #E6AD00;
  border-radius: 0 0 46px 46px;
  padding: 35px 45px 45px;
  max-width: 450px;
  margin-left: auto;
}
.services__banner-text p {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
}
.services__banner-img {
  position: absolute;
  top: 0;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
}
.services__banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-page .services {
  padding-block: 180px 160px;
}
@media (max-width: 1199px) {
  .main-page .services {
    padding-block: 110px 140px;
  }
}
@media (max-width: 599px) {
  .main-page .services {
    padding-block: 80px 100px;
  }
}
.main-page .services__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1199px) {
  .main-page .services__wrapper {
    flex-direction: column;
    gap: 70px;
    align-items: start;
  }
}
.main-page .services__text {
  max-width: 380px;
}
.main-page .services__text h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .main-page .services__text h2 {
    font-size: 26px;
  }
}
.main-page .services__text p {
  font-size: 14px;
  color: #939393;
}
.main-page .services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
}
@media (max-width: 1199px) {
  .main-page .services__items {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .main-page .services__items {
    grid-template-columns: 1fr;
  }
}
.main-page .services__item {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.main-page .services__item:hover .services__item-image {
  filter: brightness(1);
}
.main-page .services__item:hover .services__item-count,
.main-page .services__item:hover .services__item-title {
  opacity: 0;
}
.main-page .services__item-count {
  position: absolute;
  padding-inline: 15px;
  top: 30px;
  font-weight: 300;
  font-size: 32px;
  color: white;
  z-index: 2;
}
.main-page .services__item-count::after {
  display: block;
  content: " ";
  width: 57px;
  height: 1px;
  background: #D51600;
}
.main-page .services__item-image {
  height: 290px;
  filter: brightness(0.6);
}
.main-page .services__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-page .services__item-title {
  position: absolute;
  padding-inline: 15px;
  bottom: 30px;
  font-weight: 700;
  font-size: 22px;
  color: white;
}
.main-page .banner {
  display: flex;
  position: relative;
  min-height: 940px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .main-page .banner {
    min-height: 780px;
  }
}
.main-page .banner__logo {
  max-width: 175px;
  margin-inline: auto;
}
.main-page .banner__logo img {
  width: 100%;
}
.main-page .banner__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-block: 40px 170px;
}
@media (max-width: 599px) {
  .main-page .banner__wrapper {
    padding-block: 20px 150px;
  }
}
.main-page .banner__content {
  color: white;
  max-width: 650px;
  width: 100%;
  margin-top: 85px;
}
.main-page .banner__content h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  .main-page .banner__content h2 {
    font-size: 26px;
  }
}
.main-page .banner__content h2:after {
  display: block;
  content: "";
  height: 3px;
  width: 250px;
  background: #E6AD00;
}
.main-page .banner__content span {
  font-weight: 700;
  color: #E6AD00;
}
.main-page .banner__content p {
  max-width: 510px;
  margin-block: 1rem;
}
.main-page .banner__content.right {
  margin-left: auto;
}
@media (max-width: 599px) {
  .main-page .banner__content.right {
    margin-left: 0;
  }
}
.main-page .banner__countries {
  display: flex;
  gap: 5px 30px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 24px;
  color: #E6AD00;
}
@media (max-width: 599px) {
  .main-page .banner__countries {
    font-size: 16px;
    gap: 5px 20px;
  }
}
.main-page .banner__advantages {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .main-page .banner__advantages {
    gap: 30px;
  }
}
.main-page .banner__advantages-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
}
.main-page .banner__advantages-number {
  font-size: 44px;
  text-align: center;
}
@media (max-width: 599px) {
  .main-page .banner__advantages-number {
    font-size: 34px;
  }
}
.main-page .banner__advantages-number span {
  color: #D51600;
}
.main-page .banner__advantages-title {
  font-size: 18px;
}
@media (max-width: 599px) {
  .main-page .banner__advantages-title {
    font-size: 14px;
  }
}
.main-page .banner__img {
  position: absolute;
  top: 0;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
}
.main-page .banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}