/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Убирает стрелочки в Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Подключение шрифтов */
/* @font-face {
  font-family: "AvantGarde";
  src: url("../fonts/avantgardectt.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */
@font-face {
	font-family: 'AvantGarde';
	src: url('../fonts/avantgarde.eot'); /* IE 9 Compatibility Mode */
	src: url('../fonts/avantgarde.eot?#iefix') format('embedded-opentype'), /* IE < 9 */
		url('../fonts/avantgarde.woff2') format('woff2'), /* Super Modern Browsers */
		url('../fonts/avantgarde.woff') format('woff'), /* Firefox >= 3.6, any other modern browser */
		url('../fonts/avantgarde.ttf') format('truetype'), /* Safari, Android, iOS */
		url('../fonts/avantgarde.svg#avantgarde') format('svg'); /* Chrome < 4, Legacy iOS */
}
@font-face {
  font-family: "SnellRoundhand";
  src: url("../fonts/snellroundhand.eot"); /* IE 9 Compatibility Mode */
  src: url("../fonts/snellroundhand.eot?#iefix") format("embedded-opentype"), url("../fonts/snellroundhand.woff2") format("woff2"), url("../fonts/snellroundhand.woff") format("woff"), url("../fonts/snellroundhand.ttf") format("truetype"), url("../fonts/snellroundhand.svg#snellroundhand") format("svg"); /* Chrome < 4, Legacy iOS */
}
/* Основные стили */
:root {
  --font-family: "AvantGarde", sans-serif;
  --second-family: "SnellRoundhand", sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-family);
  background: #131313;
  color: #a1a1aa;
  min-width: 390px;
  font-weight: 400;
  overflow-x: hidden !important;
  overflow-anchor: none !important;
}

.bg {
  background-image: url("../images/light.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

body.stop-scroll {
  overflow-y: hidden !important;
}

/* Стили контейнера готовы. Их не трогаем ни на каком разрешении */
.container {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 1160px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 680px) {
  .container {
    padding: 0 24px;
  }
}
a {
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  font-family: var(--font-family);
}

.mail {
  cursor: pointer;
}

.first-screen {
  position: relative;
  height: 100vh;
  width: 100%;
  padding-top: 48px;
}
.first-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 22, 20, 0.1)), color-stop(93.27%, #131313));
  background: -o-linear-gradient(top, rgba(22, 22, 20, 0.1) 0%, #131313 93.27%);
  background: linear-gradient(180deg, rgba(22, 22, 20, 0.1) 0%, #131313 93.27%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.first__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc((100% - 1400px) / 2);
  z-index: 3;
  pointer-events: none;
}
.first__content-top {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 64px;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transform: translateY(35%);
      -ms-transform: translateY(35%);
          transform: translateY(35%);
  pointer-events: none;
}
.first__content-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 134px;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}
.first__content-text {
  padding-top: 40px;
  font-weight: 400;
  font-size: 48px;
  line-height: 102%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  max-width: 1095px;
  pointer-events: none;
}
.first__content-text span {
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}
.first__content-link {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  gap: 16px;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.07em;
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  pointer-events: all;
}

.header {
  position: relative;
  z-index: 5;
}
.header .container {
  position: relative;
}
.header-close {
  display: none;
}
.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
          gap: 75px;
}
.header__links {
  display: none;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  position: relative;
}
.header__nav::after {
  content: "";
  display: block;
  width: 110%;
  height: 2px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 50%;
  bottom: -16px;
  -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.header__nav-link {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.07em;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__nav-link:hover {
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__contacts {
  /* position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__contacts-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.header__contacts-phone {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.07em;
  color: #fff;
}
.header__contacts-phone:hover {
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__contacts-mail {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.07em;
  color: #fff;
}
.header__contacts-mail:hover {
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__contacts-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header__contacts-bot a:hover {
  scale: 1.05;
}
.header-burger {
  display: none;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination {
  position: absolute;
  left: 50% !important;
  bottom: 24px !important;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
.pagination .swiper-pagination-bullet {
  border-radius: 100%;
  border: 1px solid #848484;
  background: transparent;
  height: 16px;
  width: 16px;
}
.pagination .swiper-pagination-bullet-active {
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  border: none;
}

@media (max-width: 1480px) {
  .first-screen {
    padding-top: 53px;
  }
  .first__content {
    left: 40px;
  }
  .first__content-top {
    font-size: 40px;
  }
  .first__content-title {
    font-size: 80px;
  }
  .first__content-text {
    padding-top: 32px;
    font-size: 40px;
    max-width: 915px;
  }
  .first__content-link {
    margin-top: 40px;
    font-size: 20px;
  }
  .header__nav {
    gap: 22px;
  }
  .header__nav-link {
    font-size: 16px;
  }
  .header__contacts {
    gap: 32px;
  }
  .pagination {
    bottom: 16px !important;
  }
  .pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }
}
@media (max-width: 1080px) {
  .first-screen {
    padding-top: 40px;
  }
  .first__content {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
    text-align: center;
    left: 0;
  }
  .first__content-top {
    font-size: 28px;
    -webkit-transform: translateY(15%);
        -ms-transform: translateY(15%);
            transform: translateY(15%);
  }
  .first__content-title {
    font-size: 40px;
  }
  .first__content-text {
    padding-top: 40px;
    font-size: 24px;
  }
  .first__content-link {
    margin: 56px auto 0 auto;
  }
  .header .container {
    position: static;
  }
  .header-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    background: #131313;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateX(-150%);
        -ms-transform: translateX(-150%);
            transform: translateX(-150%);
    background-image: url(../images/menubg-bur.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .header-wrap.open {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .header__nav {
    gap: 27px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__nav::after {
    content: none;
  }
  .header__nav-link {
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 27px;
  }
  .header__nav-link::after {
    content: "";
    display: block;
    width: 186px;
    height: 2px;
    background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  }
  /* .header__nav-link:last-child::after {
    content: none;
  } */
  .header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__links-item {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.07em;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: rgba(255, 255, 255, 0.7);
  }
  .header__contacts {
    padding-top: 56px;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    position: static;
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__contacts-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin-top: 10px;
  }
  .header-close {
    display: block;
    position: absolute;
    top: 40px;
    right: 24px;
  }
  .header-burger {
    display: block;
    width: 32px;
    height: 3px;
    background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
    background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  }
  .header-burger::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
    background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
    -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .header-burger::after {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
    background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
  }
  .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .slider img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pagination {
    bottom: 16px !important;
  }
  .pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }
}
.text {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-align: center;
  color: #a1a1aa;
  padding-top: 160px;
}

.title {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-top: 160px;
  padding-bottom: 64px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.title::after {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
}
.title::before {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
}

.teams {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 56px;
}
.teams-item {
  text-align: center;
}
.teams-title {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.07em;
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.teams-text {
  padding-top: 16px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-align: center;
  color: #a1a1aa;
}
.teams-text::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 16px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
}

.rep {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.rep-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.rep-more {
  cursor: pointer;
  display: none;
}
.rep-ul.hidden {
  display: none;
}
.rep-li {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #a1a1aa;
  text-align: center;
}
.rep-li span {
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.gal__top {
  aspect-ratio: 1.988/1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 24px 7fr;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
}
.gal__top-video {
  cursor: pointer;
  position: relative;
}
.gal__top-video:hover svg {
  scale: 1.05;
}
.gal__top-video:hover img {
  -webkit-filter: none;
          filter: none;
}
.gal__top-video video {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.gal__top-video img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gal__top-video svg {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gal__top-video.playing svg, .gal__top-video.playing img {
  display: none;
}
.gal__top-img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 24px 3fr;
  grid-template-columns: 4fr 3fr;
  gap: 24px;
}
.gal__top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gal__top-img-box:last-child {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.gal__top-img img:hover {
  -webkit-filter: none;
          filter: none;
}
.gal__bot {
  padding-top: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.gal__bot-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.gal__bot-img svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.gal__bot-img:hover svg{
  scale: 1.05;
}
.gal__bot-img.hidden {
  display: none;
}
.gal__bot img {
  height: 100%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.gal__bot img:hover {
  -webkit-filter: none;
          filter: none;
}
.gal-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 40px auto 0 auto;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.07em;
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  left: 50%;
  position: absolute;
  bottom: -40px;
  transform: translateX(-50%);
}
.gal-more:hover {
  gap: 20px;
}

@media (max-width: 1480px) {
  .text {
    font-size: 15px;
    padding-top: 104px;
  }
  .title {
    padding-top: 120px;
    padding-bottom: 56px;
    font-size: 32px;
    gap: 20px;
  }
  .teams {
    row-gap: 40px;
  }
  .teams-title {
    font-size: 16px;
  }
  .teams-text {
    padding-top: 8px;
    font-size: 15px;
  }
  .rep {
    gap: 37px;
  }
  .rep-li {
    font-size: 15px;
  }
  .gal__top {
    aspect-ratio: 1.988/1;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5fr 24px 7fr;
    grid-template-columns: 5fr 7fr;
    gap: 24px;
  }
  .gal-more {
    margin: 32px auto 0 auto;
    font-size: 15px;
  }
}
@media (max-width: 1080px) {
    .gal__bot-img img {
      height: auto;
      width: 100%;
    }
    .gal__bot-img:nth-child(4n+2) img {
        max-width: none;
        width: auto;
        height: 100%;
    }
    .gal__bot-img:nth-child(4n+3) img {
        max-width: none;
        width: auto;
        height: 100%;
    }
  .rep-more {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
    background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
    background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .text {
    font-size: 14px;
    padding-top: 56px;
  }
  .title {
    padding-top: 80px;
    padding-bottom: 48px;
    font-size: 24px;
    gap: 16px;
  }
  .title::after {
    width: 61px;
  }
  .title::before {
    width: 61px;
  }
  .teams {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
  .teams-text {
    padding-top: 16px;
    font-size: 14px;
  }
  .teams-text::after {
    margin-top: 12px;
  }
  .rep {
    gap: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .rep-ul {
    gap: 8px;
  }
  .rep-li {
    font-size: 14px;
  }
  .rep-li span {
    display: none;
  }
  .gal__top {
    aspect-ratio: 1.65/1;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gal__top-video {
    cursor: pointer;
    position: relative;
  }
  .gal__top-video video {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .gal__top-img {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  /* .gal__top-img img {
    height: auto;
  } */
  .gal__top-img-box:last-child {
    display: none;
  }
  .gal__bot {
    padding-top: 8px;
    gap: 8px;
    -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
    grid-template-columns: repeat(8, 1fr);
  }
  .gal__bot-img:nth-child(4n+1) {
    -ms-grid-column-span: 5;
    grid-column-end: span 5;
    aspect-ratio: 1.78/1;
  }
  .gal__bot-img:nth-child(4n+4) {
    -ms-grid-column-span: 5;
    grid-column-end: span 5;
    aspect-ratio: 1.78/1;
  }
  .gal__bot-img:nth-child(4n+2) {
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
    aspect-ratio: 1.059/1;
  }
  .gal__bot-img:nth-child(4n+3) {
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
    aspect-ratio: 1.059/1;
  }
  .gal-more {
    margin: 24px auto 0 auto;
    font-size: 14px;
    gap: 8px;
  }
  .gal-more:hover {
    gap: 12px;
  }
}
.form-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 32px;
}
.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.form-item label {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.07em;
  color: #a1a1aa;
}
.form-item input {
  width: 100%;
  padding: 24px;
  border: 1px solid #695A00;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.07em;
  color: #a1a1aa;
}
.form-item input::-webkit-input-placeholder {
  color: #515151;
}
.form-item input::-moz-placeholder {
  color: #515151;
}
.form-item input:-ms-input-placeholder {
  color: #515151;
}
.form-item input::-ms-input-placeholder {
  color: #515151;
}
.form-item input::placeholder {
  color: #515151;
}
.form-com {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding-top: 32px;
}
.form-com-title {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.07em;
  color: #a1a1aa;
}
.form-com-inp {
  resize: none;
  width: 100%;
  height: 230px;
  padding: 24px;
  border: 1px solid #695A00;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.07em;
  color: #a1a1aa;
}
.form-com-inp::-webkit-input-placeholder {
  color: #515151;
}
.form-com-inp::-moz-placeholder {
  color: #515151;
}
.form-com-inp:-ms-input-placeholder {
  color: #515151;
}
.form-com-inp::-ms-input-placeholder {
  color: #515151;
}
.form-com-inp::placeholder {
  color: #515151;
}
.form-btn {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.07em;
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column-align: right;
      justify-self: right;
  gap: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 40px;
}
.form-btn:hover {
  gap: 20px;
}

input[type=date]::-webkit-calendar-picker-indicator {
  display: none !important;
}

.title.mob {
  display: none;
}

@media (max-width: 1480px) {
  .form-box {
    gap: 24px;
  }
  .form-item {
    gap: 19px;
  }
  .form-item label {
    font-size: 16px;
  }
  .form-item input {
    font-size: 16px;
  }
  .form-com {
    gap: 16px;
    padding-top: 24px;
  }
  .form-com-title {
    font-size: 16px;
  }
  .form-com-inp {
    font-size: 16px;
  }
  .form-btn {
    font-size: 20px;
    margin-top: 32px;
  }
}
@media (max-width: 1080px) {
  .title.desck {
    display: none;
  }
  .title.mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .form-box {
    gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .form-item {
    gap: 8px;
  }
  .form-item label {
    font-size: 14px;
  }
  .form-item input {
    font-size: 14px;
    padding: 16px;
  }
  .form-com {
    gap: 8px;
    padding-top: 16px;
  }
  .form-com-title {
    font-size: 14px;
  }
  .form-com-inp {
    font-size: 14px;
    padding: 16px;
    height: 182px;
  }
  .form-btn {
    font-size: 16px;
    margin-top: 24px;
    -ms-grid-column-align: center;
        justify-self: center;
    gap: 8px;
  }
  .form-btn:hover {
    gap: 12px;
  }
}
.title.end {
  width: 100%;
}
.title.end span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.title.end::after {
  width: 100vw;
  max-width: 480px;
}
.title.end::before {
  width: 100vw;
  max-width: 480px;
}

.footer-descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #737373;
  max-width: 945px;
  margin: 0 auto;
  -ms-grid-column-align: center;
      justify-self: center;
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding-top: 40px;
}
.footer-links a {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.07em;
  background: -o-linear-gradient(19deg, #bc9000 0%, #dfd16b 100%);
  background: linear-gradient(71deg, #bc9000 0%, #dfd16b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid #bc9000;
}
.footer__contacts {
  padding-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.footer__contacts-phone {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.07em;
  color: #737373;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.footer__contacts-phone:hover {
  color: #bc9000;
}
.footer__contacts-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__contacts-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  font-weight: 400;
  font-size: 8px;
  line-height: 262%;
  text-align: center;
  color: #737373;
}
.footer__contacts-mail {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.07em;
  color: #737373;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.footer__contacts-mail:hover {
  color: #bc9000;
}
.footer-copy {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 64px;
  padding-bottom: 35px;
  gap: 40px;
}
.footer-copy::after {
  content: "";
  display: block;
  width: 100vw;
  max-width: 480px;
  height: 2px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
}
.footer-copy::before {
  content: "";
  display: block;
  width: 100vw;
  max-width: 480px;
  height: 2px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
}
.footer-copy-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #737373;
}

@media (max-width: 1080px) {
  .footer-descr {
    font-size: 12px;
  }
  .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding-top: 32px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .footer__contacts {
    padding-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__contacts-phone {
    font-size: 12px;
  }
  .footer__contacts-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .footer__contacts-box a {
    gap: 2px;
  }
  .footer__contacts-mail {
    font-size: 12px;
  }
  .footer-copy {
    padding-top: 48px;
    padding-bottom: 15px;
    gap: 13px;
  }
  .footer-copy-text {
    gap: 3px;
    font-size: 12px;
  }
}
.thanks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 120;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thanks-wrap {
  background: #161513;
  width: 926px;
  height: 395px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #bc9000;
}
.thanks-wrap span {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.thanks-wrap span::after {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
}
.thanks-wrap span::before {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background: -o-linear-gradient(40deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 0%, #bc9000 37.02%, #dfd16b 66.35%, rgba(255, 255, 255, 0) 100%);
}
.thanks-wrap svg {
  position: absolute;
  top: 72px;
  right: 72px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thanks-wrap svg:hover {
  scale: 1.05;
}

.thanks.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 120;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gal-modal video {
  width: 80vw;
  height: auto;
  max-height: 80vh;
}
.gal-modal svg {
  position: absolute;
  top: 72px;
  right: 72px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;  
}
.gal-modal svg:hover {
  scale: 1.05;
}
.gal-modal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1480px) {
  .thanks-wrap {
    width: 857px;
    height: 343px;
  }
  .thanks-wrap span {
    font-size: 32px;
    gap: 24px;
  }
  .thanks-wrap svg {
    top: 48px;
    right: 48px;
  }
  .gal-modal svg {
    top: 48px;
    right: 48px;
  }
}
@media (max-width: 1080px) {
  .thanks-wrap {
    width: 344px;
    height: 206px;
  }
  .thanks-wrap span {
    font-size: 24px;
    gap: 16px;
  }
  .thanks-wrap span::after {
    width: 42px;
  }
  .thanks-wrap span::before {
    width: 42px;
  }
  .thanks-wrap svg {
    top: 24px;
    right: 24px;
  }
  .gal-modal svg {
    top: 24px;
    right: 24px;
  }
}
.just-validate-error-field {
  border-color: rgb(151, 26, 10) !important;
}

/* Стили модального окна */
.modal {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  padding: 0;
  width: 90%;
  max-width: 80vw;
  max-height: 90vh;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column-align: center;
      justify-self: center;
  margin: 0 auto;
}

.modal-image-container {
  position: relative;
  width: 100%;
}

#modal-image {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  margin: 0 auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
  z-index: 1001;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.close:hover,
.close:focus {
  scale: 1.05;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1001;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.prev {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-thumbs {
  display: none;
}

.modal-content .prev.hidden,
.modal-content .next.hidden {
  display: none;
}
.img {
  cursor: pointer;
}
@media (max-width: 1080px) {
  .modal-content {
    width: 100%;
    max-width: 100vw;
  }
  .prev {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .next {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.slider-slide img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-animation: none;
          animation: none;
}

.slider-slide img.zoom-out-animation {
  -webkit-animation: scaleDownToNormal 4000ms forwards ease-out;
          animation: scaleDownToNormal 4000ms forwards ease-out;
}


@-webkit-keyframes scaleDownToNormal {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


@keyframes scaleDownToNormal {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* Класс для увеличения при активации (не используем его напрямую в JS для анимации) */
.slider-slide.swiper-slide-active img {
  /* Этот класс просто указывает, что слайд активен */
  /* Увеличение будет устанавливаться JS */
}



.gal__slider {
  height: 360px;
  position: relative;
}
.gal__slider-slide {
  width: auto;
  cursor: pointer;
}
.gal__slider-slide img {
  height: 100%!important;
  width: 100%!important;
  object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.gal__slider-slide img:hover {
  -webkit-filter: none;
          filter: none;
}
.gal__slider-nav {
  padding-top: 20px;
  display: none;
  align-items: center;
  justify-content: right;
  gap: 18px;
}
.gal__slider-prev, .gal__slider-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(58, 58, 58, 0.7);
  cursor: pointer;
}
.gal__slider-prev:hover, .gal__slider-next:hover {
  border: 1px solid #695A00;
}
.gal__slider-prev {
  transform: rotate(90deg);
}
.gal__slider-next {
  transform: rotate(-90deg);
}
.gal__slider-next.swiper-button-disabled, .gal__slider-prev.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
@media (max-width: 1080px) {
  .gal__slider-nav {
    display: flex;
  }
  .gal__slider {
    height: 240px;
  }
}