.splide__pagination{
  position: relative;
  margin-top: 24px;
}
.splide__pagination__page.is-active{
  background: #ffbb35;
}

.root {

  cursor: default;
  background: #000000;

 
  color: rgb(255, 255, 255);
}
.header {
  background: #000000;
}
.header {
  position: relative;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo.logo_top img{
  width: 60px;
  height: 60px;
}
.header-list {
  display: flex;
  grid-gap: 8px;
  align-items: center;
  margin-bottom: 0;
}
.header-list-item-link {
  color: rgb(251, 251, 251);
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 14px;
  padding-right: 14px;
  transition: 0.3s all;
  font-size: 12px;
  text-transform: uppercase;
   position: relative;
   font-weight: 600;
}
.header-list-item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ffc85b;
  transition: width 0.3s ease;
}

.header-list-item-link:hover {
  color: #ffc85b;
}

.header-list-item-link:hover::after {
  width: 100%;
}

.header-list-item-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.header-list-item-link--active{
color: #ffc85b;


}
.header-list-item-link--active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ffc85b;
  transition: width 0.3s ease;
  width: 100%;
}
/* Burger */
.menu-burger {
  width: 30px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  z-index: 100;
  position: relative;
}
.menu-burger::after,
.menu-burger::before {
  content: "";
  position: absolute;
  left: 0;
}
.menu-burger::before {
  top: 0;
  transition: transform 0.3s, top 0.3s 0.3s;
}
.menu-burger::after {
  bottom: 0;
  transition: transform 0.3s, bottom 0.3s 0.3s;
}
.menu-burger__line,
.menu-burger::after,
.menu-burger::before {
  display: block;
  width: 100%;
  border-radius: 10px;
  height: 3px;
  background-color: #f2f2f2;
}
.menu-burger--active .menu-burger__line {
  display: none;
}
.menu-burger--active::before {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transition: top 0.3s, transform 0.3s 0.3s;
}
.menu-burger--active::after {
  transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
  transition: bottom 0.3s, transform 0.3s 0.3s;
}
.menu-burger {
  display: none;
}
.burger_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 8;
}
.burger_overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}
.col-light-gray{
color: #969490;
}
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* скрыта по умолчанию */
  padding: 10px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #ffc85b;
  color: white;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#toTopBtn.show {
  display: block;
  opacity: 0.8;
}

#toTopBtn:active {
  opacity: 1;
}
.main {
  display: flex;
  flex-direction: column;
}
.footer {
  background: #000;
  display: flex;
  flex-direction: column;
}
.my-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  width: 100%;
  padding: 0 15px;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.size-full {
  width: 100%;
  height: 100%;
}
.object-contain {
  object-fit: contain;
}
.object-cover {
  object-fit: cover;
}
.transition {
  transition: all 250ms ease-in-out;
}
.hover-filter-brightness85:hover {
  filter: brightness(85%);
}
.size-64px {
  width: 64px;
  height: 64px;
}
.py-6px {
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-12px {
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-24px {
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-36px {
  padding-top: 36px;
  padding-bottom: 36px;
}
.px-6px {
  padding-left: 6px;
  padding-right: 6px;
}
.px-12px {
  padding-left: 12px;
  padding-right: 12px;
}
.px-24px {
  padding-left: 24px;
  padding-right: 24px;
}
.px-36px {
  padding-left: 36px;
  padding-right: 36px;
}
.list-none {
  list-style: none;
}
.p-0 {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.m-0 {
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}
.gap-6px {
  row-gap: 6px;
  column-gap: 6px;
}
.gap-12px {
  column-gap: 12px;
  row-gap: 12px;
}
.gap-24px {
  row-gap: 24px;
  column-gap: 24px;
}
.gap-36px {
  row-gap: 36px;
  column-gap: 36px;
}
.no-underline {
  text-decoration: none;
}
.color-fff {
  color: rgb(255, 255, 255);
}
.capitalize {
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}
.text-sm {
  font-size: 14px;
}
.text-base {
  font-size: 16px;
}
.text-lg {
  font-size: 18px;
}
.text-xl {
  font-size: 20px;
}
.text-2xl {
  font-size: 24px;
}
.text-3xl {
  font-size: 30px;
}
.text-4xl {
  font-size: 36px;
}
.text-5xl {
  font-size: 48px;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}
.color-ffbb35 {
  color: rgb(255, 187, 53);
}
.hover-color-ffbb35:hover {
  color: rgb(255, 187, 53);
}
.color-959595 {
  color: rgb(149, 149, 149);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.py-72px {
  padding-top: 72px;
  padding-bottom: 72px;
}
.border-bottom-1-solid-959595 {
  border: 1px solid #959595;
  border-left-width: 0;
  border-right-width: 0;
  border-top-width: 0;
}
.size-32px {
  width: 32px;
  height: 32px;
}
.text-center {
  text-align: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.bg-hero {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url("/images/eaaf30fc987ce84757de2e7906690e1f.webp") no-repeat center/cover;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.scale-130 {
  scale: 1.3;
}
.bg-ffbb35 {
  background: #ffbb35;
}
.color-000 {
  color: rgb(0, 0, 0);
}
.rounded-4xl {
  border-radius: 32px;
}
.hover-bg-fff:hover {
  background: #fff;
}
.hover-translateY-5:hover {
  transform: translateY(-5%);
}
.bg-section-1 {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url("/images/93a2ef9d30eed8cd4a93697de02425d2.webp") no-repeat center/cover;
}
.bg-section-2 {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url("/images/2657f3cbfeec5d77d8074f47e5e5e8e4.webp") no-repeat center/cover;
}
.bg-000 {
  background: #000;
}
 .privacy-content {
      background-color: #0c0c0c;
    }

    .privacy-section {
      margin-bottom: 48px;
    }

    .privacy-section h2 {
      color: #ffbb35;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .privacy-section h3 {
      color: #fff;
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 16px;
      margin-top: 24px;
    }

    .privacy-section p {
      color: #959595;
      font-size: 18px;
      margin-bottom: 16px;
      line-height: 1.8;
    }

    .privacy-section ul {
      color: #959595;
      font-size: 18px;
      margin-bottom: 16px;
      padding-left: 24px;
    }

    .privacy-section ul li {
      margin-bottom: 12px;
      line-height: 1.8;
    }

    .privacy-section strong {
      color: #fff;
      font-weight: 600;
    }

    .highlight-box {
      background-color: #1a1a1a;
      border-left: 4px solid #ffbb35;
      padding: 24px;
      margin: 24px 0;
      border-radius: 8px;
    }

    .highlight-box p {
      margin-bottom: 0;
    }
.overflow-hidden {
  overflow: hidden;
}
.rounded-2xl {
  border-radius: 16px;
}
.rounded-lg {
  border-radius: 8px;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.bg-0c0c0c {
  background: #0c0c0c;
}
.bg-2c2c2c {
  background: #2c2c2c;
}
.border-1-solid-959595 {
  border: 1px solid #959595;
}
.hover-bg-ffbb35:hover {
  background: #ffbb35;
}
.hover-bg-3e331f:hover {
  background: #3e331f;
}
.col-span-2 {
  grid-column: span 2;
}
.flex-auto {
  flex: 1 1 auto;
}
.hover-color-fff:hover {
  color: rgb(255, 255, 255);
}
.h-256px {
  height: 256px;
}
.justify-end {
  justify-content: flex-end;
}
.auto-rows-384px {
  grid-auto-rows: 384px;
}
.relutive {
  position: relative;
}
.absolute {
  position: absolute;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.top-0 {
  top: 0;
}
.bg-00000099 {
  background: #00000099;
}
.btn-play {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  border-style: none;
  background: #fff;
  transition: background 250ms ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-play:hover {
  background: #ffbb35;
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.hover-scale-130:hover {
  scale: 1.3;
}
.row-span-2 {
  grid-row: span 2;
}
.h-512px {
  height: 512px;
}
.sticky {
  position: sticky;
  top: 0;
}
.h-768px {
  height: 768px;
}
.w-24 {
  width: 24%;
}
.auto-rows-240px {
  grid-auto-rows: 240px;
}
.grid-cols-1fr-auto-1fr {
  grid-template-columns: 1fr auto 1fr;
}
.w-128px {
  width: 128px;
}
.col-span-full {
  grid-column: 1 / -1;
}
.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.pt-36px {
  padding-top: 36px;
}
@media (max-width: 1386px) {

  .menu-burger {
    display: block;
  }
  .header-nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 24px;
    z-index: 99;
    overflow: scroll;
    width: 250px;

     background:#0c0c0c ;
    flex-direction: column;
    padding-top: 50px;
    height: 100vh;
    padding-bottom: 50px;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;

    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header-list-item-link:not(.header-list-item-link--active){
color:#fff;
  }
  .header-nav-list-mobile {
    align-items: flex-start;
    padding-left: 50px;
    backdrop-filter: blur(19px);
    font-weight: 700;
    transform: translateY(0);
    
  }


}
@media(max-width:390px){
  .res-card{
    flex-direction: column;
  }
}
