@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-Font.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  font-family: "Geologica", sans-serif;
  margin: 0;
  font-variant-numeric: lining-nums;
  -moz-osx-font-smoothing: grayscale; /* Firefox */
  -webkit-font-smoothing: antialiased; /* WebKit  */
  font-synthesis: none !important;
  -webkit-text-size-adjust: 100%;
  text-decoration: none;
}

html {
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
  background: #00000A;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: none;
}
body.lock {
  overflow: hidden;
}
body:has(#bx-panel) .header {
  position: sticky;
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #C9C9C9 !important;
}

img, video {
  max-width: 100%;
}

img[parse-svg] {
  opacity: 0;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 0.8333333333vw;
}
@media screen and (max-width: 992px) {
  .container {
    padding: 0 3.2vw;
  }
}

.page {
  min-height: 60vh;
  padding-top: 6.1111111111vw;
}
@media screen and (max-width: 992px) {
  .page {
    padding-top: 23.4666666667vw;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #00000A;
  height: 5.5555555556vw;
  padding: 1.1111111111vw 0.8333333333vw;
  border-radius: 0;
  transition: all 0.2s ease;
}
.header.scroll {
  background: #2A2A2A;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3215686275);
}
.header.hidden {
  transform: translate(0, -110%);
}
@media screen and (max-width: 992px) {
  .header {
    height: 21.3333333333vw;
    padding: 6.4vw 3.2vw;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  padding-left: 0.8333333333vw;
}
@media screen and (max-width: 992px) {
  .header-menu {
    overflow: auto;
    position: absolute;
    z-index: 5;
    top: -110vh;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #2A2A2A;
    width: 100%;
    padding: 6.4vw 3.2vw;
    transition: all 0.4s ease;
    max-height: 100vh;
  }
  .header-menu.active {
    top: 0;
  }
}
.header-menu-top {
  display: none;
}
@media screen and (max-width: 992px) {
  .header-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.header-menu-close {
  color: #C9C9C9;
  background: transparent;
  width: 6.4vw;
  height: 6.4vw;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.header-menu-close svg {
  width: 6.4vw;
  height: 6.4vw;
}
.header-nav {
  margin: 0 6.9444444444vw 0 0;
}
@media screen and (max-width: 992px) {
  .header-nav {
    margin: 12.8vw 0 0 0;
  }
}
.header-contacts {
  position: relative;
}
.header-contacts-btn {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0.1388888889vw 0;
  transition: all 0.2s ease;
  position: relative;
}
.header-contacts-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .header-contacts-btn:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
.header-contacts-btn span {
  margin-top: 0.1388888889vw;
  display: inline-block;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.8333333333vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .header-contacts-btn span {
    font-size: 2.9333333333vw;
  }
}
.header-contacts-btn span {
  line-height: 90%;
}
@media (hover: hover) {
  .header-contacts-btn:hover span {
    color: #ffffff;
  }
  .header-contacts-btn:hover svg {
    color: #ffffff;
    transform: rotate(270deg);
  }
}
@media screen and (max-width: 992px) {
  .header-contacts-btn {
    display: none;
  }
}
.header-contacts-btn svg {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  color: #C9C9C9;
  transition: all 0.3s ease;
}
.header-contacts-drop {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0, 100%);
  display: flex;
  align-items: center;
  gap: 1.6666666667vw;
  background: rgba(0, 0, 0, 0.3215686275);
  padding: 1.6666666667vw;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.3215686275);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .header-contacts-drop {
    position: static;
    transform: translate(0, 0);
    opacity: 1;
    background: transparent;
    pointer-events: all;
    margin-top: 12.8vw;
    box-shadow: none;
  }
}
.header-contacts-drop.active {
  bottom: -1.1111111111vw;
  opacity: 1;
  pointer-events: all;
}
.header-contacts-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.1111111111vw;
}
@media screen and (max-width: 992px) {
  .header-contacts-links {
    align-items: center;
    gap: 4.2666666667vw;
  }
}
.header-contacts-links a {
  font-size: 1.1111111111vw;
  line-height: 120%;
  color: #C9C9C9;
  text-transform: uppercase;
  text-align: end;
  transition: all 0.2s ease;
  position: relative;
}
.header-contacts-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .header-contacts-links a:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .header-contacts-links a:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .header-contacts-links a {
    font-size: 4.2666666667vw;
    text-align: center;
  }
}
.header-contacts-close {
  color: #C9C9C9;
  background: transparent;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .header-contacts-close:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .header-contacts-close {
    display: none;
  }
}
.header-contacts-close svg {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
.header-btn {
  display: none;
  background: transparent;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
  padding: 0;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .header-btn {
    display: block;
  }
}
.header-btn svg {
  color: #C9C9C9;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
}
.header-background {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .header-background {
    display: block;
  }
}
.header-background.active {
  opacity: 1;
  pointer-events: all;
}

.logo {
  color: #C9C9C9;
  display: block;
  width: 5.6944444444vw;
  height: 1.7361111111vw;
}
@media screen and (max-width: 992px) {
  .logo {
    width: 25.6vw;
    height: 7.7333333333vw;
  }
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav {
  display: flex;
}
.nav ul {
  display: flex;
  gap: 2.5vw;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 9.6vw;
  }
}
.nav ul li {
  list-style: none;
}
.nav ul li a {
  text-transform: uppercase;
  padding: 0.1388888889vw 0;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.9722222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .nav ul li a {
    font-size: 6.4vw;
  }
}
.nav ul li a {
  position: relative;
}
.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .nav ul li a:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .nav ul li a:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .nav ul li a {
    padding: 0.5333333333vw 0;
  }
}

.main-banner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 46.0416666667vw;
  padding: 3.3333333333vw 2.5vw;
}
@media screen and (max-width: 992px) {
  .main-banner-wrapper {
    min-height: 123.4666666667vw;
    padding: 12.8vw 4.2666666667vw;
  }
}
.main-banner-wrapper h1 {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  margin-bottom: 3.3333333333vw;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: 110%;
}
@media screen and (max-width: 992px) {
  .main-banner-wrapper h1 {
    font-size: 12.8vw;
  }
}
@media screen and (max-width: 992px) {
  .main-banner-wrapper h1 {
    font-size: 7.4666666667vw;
    margin-bottom: 12.8vw;
  }
}
.main-banner-wrapper h1 {
  font-weight: 300;
}
.main-banner-wrapper h1 span {
  font-weight: 600;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .main-banner-wrapper h1 span {
    font-size: 7.4666666667vw;
    margin-top: 4.2666666667vw;
  }
}
.main-banner-wrapper p {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  margin-top: auto;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .main-banner-wrapper p {
    font-size: 3.7333333333vw;
  }
}
.main-banner-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.main-banner-bg:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(42, 42, 42, 0.7);
}
.main-banner-bg img, .main-banner-bg video, .main-banner-bg iframe {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section-catalog {
  margin-top: 4.4444444444vw;
}
@media screen and (max-width: 992px) {
  .section-catalog {
    margin-top: 10.6666666667vw;
  }
}
.section-catalog-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .section-catalog-items {
    grid-template-columns: 1fr;
    gap: 6.4vw;
  }
}

.section-more {
  margin-top: 11.1111111111vw;
}
@media screen and (max-width: 992px) {
  .section-more {
    margin-top: 21.3333333333vw;
  }
}
.section-more h1, .section-more h2, .section-more h3 {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: 110%;
}
@media screen and (max-width: 992px) {
  .section-more h1, .section-more h2, .section-more h3 {
    font-size: 12.8vw;
  }
}
.section-more-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6666666667vw;
  margin-top: 3.3333333333vw;
}
@media screen and (max-width: 992px) {
  .section-more-items {
    grid-template-columns: 1fr;
    gap: 6.4vw;
    margin-top: 8.5333333333vw;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 1.6666666667vw 0;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(201, 201, 201, 0.2);
  height: 1px;
  width: 100%;
}
@media (hover: hover) {
  .card:hover .card-img::before {
    opacity: 1;
  }
  .card:hover .card-info h3 {
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .card {
    padding: 0 0 6.4vw 0;
  }
}
.card-big {
  grid-column: 1/2 span;
  flex-direction: row;
  padding: 0;
}
.card-big::before {
  left: unset;
  right: 0;
  width: calc(100% - 69.1666666667vw);
}
@media screen and (max-width: 992px) {
  .card-big {
    grid-column: 1/1 span;
    flex-direction: column;
    padding: 0 0 6.4vw 0;
  }
  .card-big::before {
    left: 0;
    width: 100%;
  }
}
.card-big .card-img {
  width: 67.5vw;
  height: 37.5694444444vw;
}
@media screen and (max-width: 992px) {
  .card-big .card-img {
    width: 100%;
    height: 50.4vw;
  }
}
.card-big .card-info {
  position: relative;
  padding-bottom: 2.7777777778vw;
  margin-left: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .card-big .card-info {
    padding-bottom: 0;
    margin-left: 0;
  }
}
.card-big .card-info-block p {
  position: absolute;
  left: 0;
  bottom: 0.5555555556vw;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .card-big .card-info-block p {
    position: static;
    margin-left: 4.2666666667vw;
  }
}
.card-link {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.card-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 27.2222222222vw;
  transform: translateZ(0);
}
@media screen and (max-width: 992px) {
  .card-img {
    height: 50.4vw;
  }
}
.card-img::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-img img, .card-img video, .card-img iframe {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.card-info {
  margin-top: 0.5555555556vw;
}
@media screen and (max-width: 992px) {
  .card-info {
    margin-top: 4.8vw;
  }
}
.card-info-block {
  display: flex;
  justify-content: space-between;
}
.card-info-block p {
  margin-left: 1.6666666667vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 0.8333333333vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .card-info-block p {
    font-size: 2.9333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .card-info-block p {
    margin-left: 4.2666666667vw;
  }
}
.card-info h3 {
  text-transform: uppercase;
  margin: 0.5555555556vw 0 0 0;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.3888888889vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .card-info h3 {
    font-size: 5.8666666667vw;
  }
}
@media screen and (max-width: 992px) {
  .card-info h3 {
    margin-top: 2.6666666667vw;
  }
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
}
.card-tags span {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 0.8333333333vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .card-tags span {
    font-size: 2.9333333333vw;
  }
}
.card-tags span::before {
  content: "-";
  margin: 0 0.4166666667vw;
}
@media screen and (max-width: 992px) {
  .card-tags span::before {
    margin: 0 1.0666666667vw;
  }
}
.card-tags span:first-child::before {
  display: none;
}
.card-2 {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(42, 42, 42, 0.7);
  padding: 1.1111111111vw;
  transition: background 0.3s ease;
}
@media (hover: hover) {
  .card-2:hover {
    background: #2A2A2A;
  }
  .card-2:hover .card-2-content a {
    color: #2A2A2A;
    border: 1px solid #ffffff;
  }
  .card-2:hover .card-2-content a::before {
    transform: skew(30deg);
  }
}
@media screen and (max-width: 992px) {
  .card-2 {
    padding: 4.2666666667vw;
  }
}
.card-2 img {
  width: 16.6666666667vw;
  height: 2.7777777778vw;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 992px) {
  .card-2 img {
    width: 64vw;
    height: 10.6666666667vw;
  }
}
.card-2-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin-top: 2.3611111111vw;
}
@media screen and (max-width: 992px) {
  .card-2-content {
    margin-top: 6.4vw;
  }
}
.card-2-content p {
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 3.6111111111vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.9722222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .card-2-content p {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .card-2-content p {
    margin-bottom: 6.4vw;
  }
}
.card-2-content a {
  margin-top: auto;
}
.card-2-link {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.section-about {
  margin-top: 8.3333333333vw;
}
@media screen and (max-width: 992px) {
  .section-about {
    margin-top: 10.6666666667vw;
  }
}
.section-about-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .section-about-wrapper {
    flex-direction: column;
  }
}
.section-about-left h2 {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: 110%;
}
@media screen and (max-width: 992px) {
  .section-about-left h2 {
    font-size: 12.8vw;
  }
}
.section-about-left p {
  text-transform: uppercase;
  max-width: 23.3333333333vw;
  margin: 1.1111111111vw 0 0 0;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-about-left p {
    font-size: 3.7333333333vw;
  }
}
.section-about-left p {
  line-height: 160%;
}
@media screen and (max-width: 992px) {
  .section-about-left p {
    max-width: 100%;
    margin: 4.2666666667vw 0 0 0;
  }
}
.section-about-right {
  width: 48.3333333333vw;
  margin-left: 2.7777777778vw;
  padding-top: 5.5555555556vw;
}
@media screen and (max-width: 992px) {
  .section-about-right {
    width: 100%;
    margin-left: 0;
    margin-top: 10.6666666667vw;
    padding-top: 0;
  }
}
.section-about-right p {
  max-width: 31.6666666667vw;
  margin: 1.1111111111vw 0 0 0;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-about-right p {
    font-size: 3.7333333333vw;
  }
}
.section-about-right p {
  line-height: 160%;
}
@media screen and (max-width: 992px) {
  .section-about-right p {
    max-width: 100%;
    margin: 4.2666666667vw 0 0 0;
  }
}
.section-about-right p:first-child {
  margin: 0;
}
.section-about-right a, .section-about-right button {
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 992px) {
  .section-about-right a, .section-about-right button {
    margin-top: 10.6666666667vw;
  }
}

.section-media {
  margin-top: 5.5555555556vw;
}
@media screen and (max-width: 992px) {
  .section-media {
    margin-top: 10.6666666667vw;
  }
}
.section-media img, .section-media video, .section-media iframe {
  width: 100%;
  min-height: 43.4027777778vw;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 992px) {
  .section-media img, .section-media video, .section-media iframe {
    min-height: 103.4666666667vw;
  }
}

.section-clients {
  margin-top: 8.3333333333vw;
}
@media screen and (max-width: 992px) {
  .section-clients {
    margin-top: 10.6666666667vw;
  }
}
.section-clients-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 992px) {
  .section-clients-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-clients-top h2 {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: 110%;
}
@media screen and (max-width: 992px) {
  .section-clients-top h2 {
    font-size: 12.8vw;
  }
}
.section-clients-top a {
  margin: 0 0 0 1.6666666667vw;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-clients-top a {
    font-size: 3.7333333333vw;
  }
}
.section-clients-top a {
  position: relative;
}
.section-clients-top a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .section-clients-top a:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .section-clients-top a:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .section-clients-top a {
    margin: 4.2666666667vw 0 0 0;
  }
}
.section-clients-top a span {
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 0.8333333333vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-clients-top a span {
    font-size: 2.9333333333vw;
  }
}
.section-clients-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6666666667vw;
  margin-top: 3.3333333333vw;
}
@media screen and (max-width: 992px) {
  .section-clients-items {
    touch-action: pan-x;
    overflow: scroll hidden;
    display: flex;
    gap: 2.1333333333vw;
    width: 100vw;
    margin: 6.4vw 0 0 -3.2vw;
    padding: 0 3.2vw;
  }
}
@media screen and (max-width: 992px) {
  .section-clients-items .card-2 {
    flex-shrink: 0;
    width: 85.3333333333vw;
  }
}

.section-gallery {
  margin-top: 8.3333333333vw;
}
@media screen and (max-width: 992px) {
  .section-gallery {
    margin-top: 10.6666666667vw;
  }
}
.section-gallery-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .section-gallery-items {
    gap: 3.2vw;
  }
}
.section-gallery-items img, .section-gallery-items video, .section-gallery-items iframe {
  flex-grow: 1;
  height: 22.2222222222vw;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 992px) {
  .section-gallery-items img, .section-gallery-items video, .section-gallery-items iframe {
    flex-grow: 1;
    height: 34.6666666667vw;
  }
  .section-gallery-items img:nth-child(2n), .section-gallery-items img:nth-child(3n), .section-gallery-items img:nth-child(4n+2), .section-gallery-items img:nth-child(4n+3), .section-gallery-items video:nth-child(2n), .section-gallery-items video:nth-child(3n), .section-gallery-items video:nth-child(4n+2), .section-gallery-items video:nth-child(4n+3), .section-gallery-items iframe:nth-child(2n), .section-gallery-items iframe:nth-child(3n), .section-gallery-items iframe:nth-child(4n+2), .section-gallery-items iframe:nth-child(4n+3) {
    width: 57.6vw;
  }
  .section-gallery-items img:first-child, .section-gallery-items img:nth-child(4n), .section-gallery-items img:nth-child(4n+1), .section-gallery-items video:first-child, .section-gallery-items video:nth-child(4n), .section-gallery-items video:nth-child(4n+1), .section-gallery-items iframe:first-child, .section-gallery-items iframe:nth-child(4n), .section-gallery-items iframe:nth-child(4n+1) {
    width: 27.2vw;
  }
}

.footer {
  background: rgba(42, 42, 42, 0.7);
  margin-top: 4.4444444444vw;
  padding: 4.4444444444vw 0 2.2222222222vw 0;
}
@media screen and (max-width: 992px) {
  .footer {
    margin-top: 10.6666666667vw;
    padding: 14.4vw 0 14.4vw 0;
  }
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1.6666666667vw;
  margin-bottom: 16.6666666667vw;
}
@media screen and (max-width: 992px) {
  .footer-top {
    display: none;
  }
}
.footer-top-left {
  width: 50%;
}
.footer-top-left span {
  text-transform: uppercase;
  display: inline-block;
  max-width: 32.5694444444vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.6666666667vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .footer-top-left span {
    font-size: 5.3333333333vw;
  }
}
.footer-top-right {
  display: flex;
  justify-content: space-between;
  width: 50%;
  padding: 0 4.1666666667vw 0 0;
}
.footer-top-column {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
}
.footer-top-title span {
  text-transform: uppercase;
  display: inline-block;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .footer-top-title span {
    font-size: 3.7333333333vw;
  }
}
.footer-top-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5555555556vw;
  padding: 0;
}
.footer-top-links li {
  list-style: none;
}
.footer-top-links a {
  text-transform: uppercase;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .footer-top-links a {
    font-size: 3.7333333333vw;
  }
}
.footer-top-links a {
  position: relative;
}
.footer-top-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .footer-top-links a:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .footer-top-links a:hover {
    color: #ffffff;
  }
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1.6666666667vw;
  padding-top: 1.1111111111vw;
  border-top: 1px solid rgba(201, 201, 201, 0.2);
}
@media screen and (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    gap: 5.3333333333vw;
    padding-top: 10.6666666667vw;
  }
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 992px) {
  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.footer-bottom-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 992px) {
  .footer-bottom-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.footer-copy {
  text-transform: uppercase;
  margin-left: 0.5555555556vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 0.6944444444vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .footer-copy {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 992px) {
  .footer-copy {
    margin-top: 2.1333333333vw;
    margin-left: 0;
  }
}
.footer-dev {
  text-transform: uppercase;
  margin-left: auto;
  margin-right: 3.4722222222vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 0.6944444444vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .footer-dev {
    font-size: 2.6666666667vw;
  }
}
.footer-dev {
  position: relative;
}
.footer-dev::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .footer-dev:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .footer-dev:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .footer-dev {
    margin-left: 0;
    margin-right: 0;
    margin-top: 6.4vw;
    color: #C9C9C9;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 1.1111111111vw;
    line-height: 120%;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .footer-dev {
    font-size: 3.7333333333vw;
  }
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .footer-socials {
    gap: 6.4vw;
  }
}
.footer-socials a {
  text-transform: uppercase;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .footer-socials a {
    font-size: 3.7333333333vw;
  }
}
.footer-socials a {
  position: relative;
}
.footer-socials a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .footer-socials a:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .footer-socials a:hover {
    color: #ffffff;
  }
}
.footer-up {
  margin-left: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .footer-up {
    margin-left: 0;
    margin-top: 4.2666666667vw;
  }
}
.footer-up a {
  text-transform: uppercase;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .footer-up a {
    font-size: 3.7333333333vw;
  }
}
.footer-up a {
  position: relative;
}
.footer-up a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .footer-up a:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .footer-up a:hover {
    color: #ffffff;
  }
}

.contacts h1 {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: 110%;
}
@media screen and (max-width: 992px) {
  .contacts h1 {
    font-size: 12.8vw;
  }
}
.contacts-wrapper {
  display: flex;
  gap: 1.6666666667vw;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 992px) {
  .contacts-wrapper {
    flex-direction: column;
    gap: 10.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
.contacts-left {
  width: 50%;
}
@media screen and (max-width: 992px) {
  .contacts-left {
    width: 100%;
  }
}
.contacts-right {
  width: 50%;
}
@media screen and (max-width: 992px) {
  .contacts-right {
    width: 100%;
  }
}
.contacts-parapraph {
  text-transform: uppercase;
  max-width: 23.3333333333vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .contacts-parapraph {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .contacts-parapraph {
    max-width: 100%;
  }
}
.contacts-block {
  display: flex;
  flex-wrap: wrap;
  gap: 5.5555555556vw;
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 992px) {
  .contacts-block {
    gap: 10.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
.contacts-column p {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .contacts-column p {
    font-size: 3.7333333333vw;
  }
}
.contacts-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5555555556vw;
  margin-top: 1.1111111111vw;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .contacts-column ul {
    gap: 2.1333333333vw;
    margin-top: 4.2666666667vw;
  }
}
.contacts-column ul li {
  list-style: none;
}
.contacts-column ul li a {
  text-transform: uppercase;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .contacts-column ul li a {
    font-size: 3.7333333333vw;
  }
}
.contacts-column ul li a {
  position: relative;
}
.contacts-column ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .contacts-column ul li a:hover::after {
    background: #ffffff;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
@media (hover: hover) {
  .contacts-column ul li a:hover {
    color: #ffffff;
  }
}
.contacts-map {
  width: 100%;
  height: 25vw;
}
@media screen and (max-width: 992px) {
  .contacts-map {
    height: 112vw;
  }
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.25vw 0;
  border-bottom: 1px solid rgba(201, 201, 201, 0.2);
}
@media screen and (max-width: 992px) {
  .catalog-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 4.2666666667vw 0;
  }
}
.catalog-top h1 {
  display: flex;
  align-items: flex-start;
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: 110%;
}
@media screen and (max-width: 992px) {
  .catalog-top h1 {
    font-size: 12.8vw;
  }
}
.catalog-top h1 span {
  padding-left: 0.2777777778vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .catalog-top h1 span {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .catalog-top h1 span {
    padding-left: 1.0666666667vw;
  }
}
.catalog-tabs {
  margin-left: 2.7777777778vw;
}
@media screen and (max-width: 992px) {
  .catalog-tabs {
    margin-left: 0;
    margin-top: 3.2vw;
  }
}
.catalog-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6666666667vw;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 992px) {
  .catalog-items {
    grid-template-columns: 1fr;
    gap: 6.4vw;
    margin-top: 10.6666666667vw;
  }
}
.catalog-items-small {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 992px) {
  .catalog-items-small {
    grid-template-columns: 1fr;
    gap: 4.2666666667vw;
  }
}

.about h1, .about h2, .about h3 {
  width: 49.0972222222vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 2.2222222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .about h1, .about h2, .about h3 {
    font-size: 7.4666666667vw;
  }
}
@media screen and (max-width: 992px) {
  .about h1, .about h2, .about h3 {
    width: 100%;
  }
}
.about p {
  width: 31.9444444444vw;
  margin: 2.0833333333vw 0 0 50vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.6666666667vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .about p {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .about p {
    width: 100%;
    margin: 6.4vw 0 0 0;
  }
}
.about img {
  width: 100%;
  margin-top: 2.2222222222vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 992px) {
  .about img {
    margin-top: 6.4vw;
  }
}

.section-advantages {
  margin-top: 8.3333333333vw;
}
@media screen and (max-width: 992px) {
  .section-advantages {
    margin-top: 17.0666666667vw;
  }
}
.section-advantages-items {
  display: grid;
  grid-template-columns: repeat(2, 21.9444444444vw);
  gap: 9.7222222222vw;
  padding: 0 16.5277777778vw 0 28.2638888889vw;
}
@media screen and (max-width: 992px) {
  .section-advantages-items {
    grid-template-columns: 1fr;
    gap: 6.4vw;
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  .section-advantages-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .section-advantages-item:nth-child(2n) {
    align-items: flex-start;
  }
  .section-advantages-item:nth-child(2n) span, .section-advantages-item:nth-child(2n) h3, .section-advantages-item:nth-child(2n) p {
    text-align: start;
  }
}
.section-advantages-item span {
  font-size: 10.1388888889vw;
  font-weight: 200;
  line-height: 80%;
  text-align: end;
  color: #C9C9C9;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .section-advantages-item span {
    font-size: 21.3333333333vw;
  }
}
.section-advantages-item h3 {
  text-align: end;
  margin-top: 1.6666666667vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 3.3333333333vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-advantages-item h3 {
    font-size: 9.6vw;
  }
}
@media screen and (max-width: 992px) {
  .section-advantages-item h3 {
    margin-top: 4.2666666667vw;
  }
}
.section-advantages-item p {
  text-align: end;
  margin-top: 1.1111111111vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-advantages-item p {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .section-advantages-item p {
    max-width: 70%;
    margin-top: 3.2vw;
  }
}

.section-client {
  margin-bottom: 4.4444444444vw;
}
@media screen and (max-width: 992px) {
  .section-client {
    margin-bottom: 10.6666666667vw;
  }
}
.section-client h1, .section-client h2, .section-client h3 {
  display: flex;
  align-items: flex-start;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 4.4444444444vw;
  line-height: 110%;
}
@media screen and (max-width: 992px) {
  .section-client h1, .section-client h2, .section-client h3 {
    font-size: 12.8vw;
  }
}
.section-client h1 span, .section-client h2 span, .section-client h3 span {
  padding-left: 0.2777777778vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-client h1 span, .section-client h2 span, .section-client h3 span {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .section-client h1 span, .section-client h2 span, .section-client h3 span {
    padding-left: 1.0666666667vw;
  }
}
.section-client-block {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  margin-top: 2.2222222222vw;
  padding-left: calc(50% + 0.8333333333vw);
}
@media screen and (max-width: 992px) {
  .section-client-block {
    gap: 4.2666666667vw;
    margin-top: 8.5333333333vw;
    padding-left: 0;
  }
}
.section-client-block span {
  display: inline-block;
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.3888888889vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-client-block span {
    font-size: 5.8666666667vw;
  }
}
.section-client-block p {
  max-width: 38.8888888889vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.9722222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .section-client-block p {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .section-client-block p {
    max-width: 100%;
  }
}

.detail-top h1 {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 3.3333333333vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-top h1 {
    font-size: 9.6vw;
  }
}
.detail-top-block {
  position: relative;
  display: flex;
  gap: 1.6666666667vw;
  margin-top: 2.2222222222vw;
}
@media screen and (max-width: 992px) {
  .detail-top-block {
    flex-direction: column;
    gap: 10.6666666667vw;
    margin-top: 3.2vw;
  }
}
.detail-top-left, .detail-top-right {
  display: flex;
  width: 50%;
}
@media screen and (max-width: 992px) {
  .detail-top-left, .detail-top-right {
    width: 100%;
  }
}
.detail-top-right {
  justify-content: space-between;
}
.detail-top-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 19.7916666667vw;
}
@media screen and (max-width: 992px) {
  .detail-top-counter {
    width: 55.2vw;
  }
}
.detail-top-counter span {
  display: inline-block;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.9722222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-top-counter span {
    font-size: 3.7333333333vw;
  }
}
.detail-top-counter div {
  width: 7.4305555556vw;
  height: 1px;
  background: #C9C9C9;
}
@media screen and (max-width: 992px) {
  .detail-top-counter div {
    width: 28.5333333333vw;
  }
}
.detail-top-description {
  max-width: 31.3888888889vw;
}
@media screen and (max-width: 992px) {
  .detail-top-description {
    max-width: 100%;
  }
}
.detail-top-description p {
  text-transform: uppercase;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.9722222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-top-description p {
    font-size: 3.7333333333vw;
  }
}
.detail-top-date {
  display: inline-block;
  margin: 0 0 0 1.3888888889vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.9722222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-top-date {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .detail-top-date {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}
.detail-content {
  position: relative;
  margin-top: 8.3333333333vw;
}
@media screen and (max-width: 992px) {
  .detail-content {
    margin-top: 10.6666666667vw;
  }
}
.detail-content-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6666666667vw;
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 992px) {
  .detail-content-media {
    grid-template-columns: 1fr;
    gap: 2.1333333333vw;
    margin-top: 8.5333333333vw;
  }
}
.detail-content-media img {
  margin-top: 0 !important;
}
.detail-content-media img + img {
  margin-top: 0 !important;
}
.detail-content img, .detail-content video, .detail-content iframe {
  width: 100%;
  margin-top: 4.1666666667vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 992px) {
  .detail-content img, .detail-content video, .detail-content iframe {
    margin-top: 8.5333333333vw;
  }
}
.detail-content img:first-child, .detail-content video:first-child, .detail-content iframe:first-child {
  margin-top: 0;
}
.detail-content img + video, .detail-content video + video, .detail-content iframe + video {
  margin-top: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .detail-content img + video, .detail-content video + video, .detail-content iframe + video {
    margin-top: 2.1333333333vw;
  }
}
.detail-content img + img, .detail-content video + img, .detail-content iframe + img {
  margin-top: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .detail-content img + img, .detail-content video + img, .detail-content iframe + img {
    margin-top: 2.1333333333vw;
  }
}
.detail-content img + .detail-content-media, .detail-content video + .detail-content-media, .detail-content iframe + .detail-content-media {
  margin-top: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .detail-content img + .detail-content-media, .detail-content video + .detail-content-media, .detail-content iframe + .detail-content-media {
    margin-top: 2.1333333333vw;
  }
}
.detail-content-media + video {
  margin-top: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .detail-content-media + video {
    margin-top: 2.1333333333vw;
  }
}
.detail-content-media + img {
  margin-top: 1.6666666667vw;
}
@media screen and (max-width: 992px) {
  .detail-content-media + img {
    margin-top: 2.1333333333vw;
  }
}
.detail-content-subtitle {
  position: absolute;
  left: 0;
  margin-top: 4.1666666667vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.6666666667vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content-subtitle {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .detail-content-subtitle {
    position: static;
    font-size: 8.5333333333vw;
    margin-top: 8.5333333333vw;
  }
}
.detail-content-subtitle:first-child {
  margin-top: 0;
}
.detail-content-subtitle:first-child + p {
  margin-top: 0;
}
.detail-content p, .detail-content span {
  width: 31.6666666667vw;
  margin: 4.1666666667vw 0 0 50vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content p, .detail-content span {
    font-size: 3.7333333333vw;
  }
}
.detail-content p + p, .detail-content span + p {
  width: 31.6666666667vw;
  margin: 1.1111111111vw 0 0 50vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content p + p, .detail-content span + p {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .detail-content p, .detail-content span {
    width: 100%;
    margin: 6.4vw 0 0 0;
  }
  .detail-content p + p, .detail-content span + p {
    width: 100%;
    margin: 4.2666666667vw 0 0 0;
    color: #C9C9C9;
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 1.1111111111vw;
    line-height: 120%;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .detail-content p + p, .detail-content span + p {
    font-size: 3.7333333333vw;
  }
}
.detail-content-big {
  margin-top: 4.1666666667vw;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 2.7777777778vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content-big {
    font-size: 8.5333333333vw;
  }
}
@media screen and (max-width: 992px) {
  .detail-content-big {
    margin-top: 8.5333333333vw;
  }
}
.detail-content-big:first-child {
  margin-top: 0;
}
.detail-content-table {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 992px) {
  .detail-content-table {
    margin-top: 2.2222222222vw;
  }
}
.detail-content-table:first-child {
  margin-top: 0;
}
.detail-content-table h3 {
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 2.2222222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content-table h3 {
    font-size: 7.4666666667vw;
  }
}
.detail-content-table-block {
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 992px) {
  .detail-content-table-block {
    overflow: auto hidden;
    width: 100vw;
    margin-left: -4.2666666667vw;
    padding: 0 4.2666666667vw;
  }
}
.detail-content-table table {
  width: 100%;
  border-spacing: 0;
}
.detail-content-table table td, .detail-content-table table th {
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content-table table td, .detail-content-table table th {
    font-size: 3.7333333333vw;
  }
}
.detail-content-table table td, .detail-content-table table th {
  padding: 0.5555555556vw 1.1111111111vw;
  text-align: start;
  background: rgba(42, 42, 42, 0.7);
  height: 4.0277777778vw;
}
@media screen and (max-width: 992px) {
  .detail-content-table table td, .detail-content-table table th {
    height: 13.8666666667vw;
    font-size: 3.7333333333vw;
    padding: 2.1333333333vw 4.2666666667vw;
  }
}
.detail-content-table table td strong, .detail-content-table table td b, .detail-content-table table th strong, .detail-content-table table th b {
  font-weight: 600;
}
.detail-content-table table td svg, .detail-content-table table td img, .detail-content-table table th svg, .detail-content-table table th img {
  width: 2.2222222222vw;
  height: 2.2222222222vw;
}
@media screen and (max-width: 992px) {
  .detail-content-table table td svg, .detail-content-table table td img, .detail-content-table table th svg, .detail-content-table table th img {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.detail-content-table table tr:first-child td {
  border-top: none;
  padding: 0.5555555556vw 1.1111111111vw;
  background: #2A2A2A;
}
@media screen and (max-width: 992px) {
  .detail-content-table table tr:first-child td {
    padding: 2.1333333333vw 4.2666666667vw;
  }
}
.detail-content-table table tr td {
  border-bottom: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content-table table tr td {
    font-size: 3.7333333333vw;
  }
}
.detail-content-table table tr td strong, .detail-content-table table tr td b {
  font-weight: 600;
}
.detail-content-table table tr td a {
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .detail-content-table table tr td a {
    font-size: 3.7333333333vw;
  }
}
.detail-content-table table tr td a {
  position: relative;
}
.detail-content-table table tr td a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #C9C9C9;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}
@media (hover: hover) {
  .detail-content-table table tr td a:hover::after {
    background: #C9C9C9;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
.detail-content-table table tr td:first-child {
  border-left: none;
}
.detail-content-table table tr td:last-child {
  border-right: none;
}
.detail-content-table table tr:last-child td {
  border-bottom: none;
  border-right: 1px solid #E0E0E0 !important;
}
.detail-content-table table tr:last-child td:last-child {
  border-right: none !important;
}
.detail-content-table table tr:first-child th:first-child {
  border-top-left-radius: 0.8333333333vw;
}
.detail-content-table table tr:first-child th:last-child {
  border-top-right-radius: 0.8333333333vw;
}
.detail-content-table table tr:first-child td:first-child {
  border-top-left-radius: 0.8333333333vw;
}
.detail-content-table table tr:first-child td:last-child {
  border-top-right-radius: 0.8333333333vw;
}
.detail-content-table table tr:last-child td:first-child {
  border-bottom-left-radius: 0.8333333333vw;
}
.detail-content-table table tr:last-child td:last-child {
  border-bottom-right-radius: 0.8333333333vw;
}
@media screen and (max-width: 992px) {
  .detail-content-table table tr:first-child th:first-child {
    border-top-left-radius: 3.2vw;
  }
  .detail-content-table table tr:first-child th:last-child {
    border-top-right-radius: 3.2vw;
  }
  .detail-content-table table tr:first-child td:first-child {
    border-top-left-radius: 3.2vw;
  }
  .detail-content-table table tr:first-child td:last-child {
    border-top-right-radius: 3.2vw;
  }
  .detail-content-table table tr:last-child td:first-child {
    border-bottom-left-radius: 3.2vw;
  }
  .detail-content-table table tr:last-child td:last-child {
    border-bottom-right-radius: 3.2vw;
  }
}

.button {
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0.2777777778vw 1.1111111111vw;
  border-radius: 1.6666666667vw;
  border: 1px solid #C9C9C9;
  color: #2A2A2A;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.8333333333vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .button {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 992px) {
  .button {
    padding: 1.0666666667vw 4.2666666667vw;
    border-radius: 6.4vw;
  }
}
.button span {
  position: relative;
  z-index: 2;
}
.button-primary {
  color: #2A2A2A;
  border: 1px solid #2A2A2A;
}
.button-secondary {
  color: #C9C9C9;
  border: 1px solid #C9C9C9;
  transition: color 0.3s ease, border 0.2s ease;
}
.button-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 120%;
  height: 100%;
  left: -10%;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (hover: hover) {
  .button-secondary:hover {
    color: #2A2A2A;
    border: 1px solid #ffffff;
  }
  .button-secondary:hover::before {
    transform: skew(30deg);
  }
}

.tabs {
  display: flex;
  gap: 0.2777777778vw;
  padding: 0.2777777778vw;
  border-radius: 1.6666666667vw;
  border: 1px solid #C9C9C9;
}
@media screen and (max-width: 992px) {
  .tabs {
    gap: 1.0666666667vw;
    padding: 1.0666666667vw 1.0666666667vw;
    border-radius: 6.4vw;
  }
}

.tab {
  position: relative;
  overflow: hidden;
  padding: 0.2777777778vw 1.1111111111vw;
  border-radius: 1.6666666667vw;
  transition: all 0.2s ease;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 0.9722222222vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .tab {
    font-size: 3.7333333333vw;
  }
}
.tab span {
  position: relative;
  z-index: 2;
}
.tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 120%;
  height: 100%;
  left: -10%;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (hover: hover) {
  .tab:hover {
    color: #2A2A2A;
  }
  .tab:hover::before {
    transform: skew(30deg);
  }
}
@media screen and (max-width: 992px) {
  .tab {
    padding: 1.0666666667vw 4.2666666667vw;
    border-radius: 6.4vw;
  }
}
.tab.active {
  color: #2A2A2A;
  background: #ffffff;
}
.tab.active::before {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 4.4444444444vw 0;
}
.pagination-list {
  display: flex;
  gap: 0.2777777778vw;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .pagination-list {
    gap: 1.0666666667vw;
  }
}
.pagination li {
  overflow: hidden;
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
}
@media screen and (max-width: 992px) {
  .pagination li {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
}
.pagination li a {
  overflow: hidden;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .pagination li a {
    font-size: 3.7333333333vw;
  }
}
.pagination li a:focus-visible {
  margin: 2px;
  height: calc(100% - 4px);
}
.pagination li a span {
  position: relative;
  z-index: 3;
}
.pagination li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 120%;
  height: 100%;
  left: -10%;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
@media (hover: hover) {
  .pagination li a:hover {
    color: #2A2A2A;
  }
  .pagination li a:hover::before {
    transform: skew(30deg);
  }
}
.pagination li:first-child {
  border-radius: 0.4166666667vw 0 0 0.4166666667vw;
}
@media screen and (max-width: 992px) {
  .pagination li:first-child {
    border-radius: 1.6vw 0 0 1.6vw;
  }
}
.pagination li:last-child {
  border-radius: 0 0.4166666667vw 0.4166666667vw 0;
}
@media screen and (max-width: 992px) {
  .pagination li:last-child {
    border-radius: 0 1.6vw 1.6vw 0;
  }
}
.pagination li.active a {
  color: #ffffff;
  background: #2A2A2A;
}
.pagination li.active a::before {
  display: none;
}
.pagination li.disabled {
  pointer-events: none;
}
.pagination li.disabled span {
  color: #C9C9C9;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .pagination li.disabled span {
    font-size: 3.7333333333vw;
  }
}
.pagination li.prev {
  margin-right: 0.5555555556vw;
  border-radius: 0.4166666667vw;
}
@media screen and (max-width: 992px) {
  .pagination li.prev {
    margin-right: 2.1333333333vw;
    border-radius: 1.6vw;
  }
}
.pagination li.prev svg, .pagination li.prev span {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
}
@media screen and (max-width: 992px) {
  .pagination li.prev svg, .pagination li.prev span {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.pagination li.next {
  margin-left: 0.5555555556vw;
  border-radius: 0.4166666667vw;
}
@media screen and (max-width: 992px) {
  .pagination li.next {
    margin-left: 2.1333333333vw;
    border-radius: 1.6vw;
  }
}
.pagination li.next svg, .pagination li.next span {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
}
@media screen and (max-width: 992px) {
  .pagination li.next svg, .pagination li.next span {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.pagination:has(li.prev) li:nth-child(2) {
  border-radius: 0.4166666667vw 0 0 0.4166666667vw;
}
@media screen and (max-width: 992px) {
  .pagination:has(li.prev) li:nth-child(2) {
    border-radius: 1.6vw 0 0 1.6vw;
  }
}
.pagination:has(li.next) li:nth-last-child(2) {
  border-radius: 0 0.4166666667vw 0.4166666667vw 0;
}
@media screen and (max-width: 992px) {
  .pagination:has(li.next) li:nth-last-child(2) {
    border-radius: 0 1.6vw 1.6vw 0;
  }
}