@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
.my-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  width: 100%;
  padding: 0 15px;
}
.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: #ff3531;
  transition: width 0.3s ease;
}

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

.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: #ff3531;


}
.header-list-item-link--active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ff3531;
  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%;
}
.h-96px {
  height: 96px;
}
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.col-span-2 {
  grid-column: span 2;
}
.border-right-1px {
  border-style: solid;
  border-width: 0;
  border-right-color: rgb(41, 41, 41);
  border-right-width: 1px;
}
.border-color-292929 {
  border-color: rgb(41, 41, 41);
}
.rounded-xl {
  border-radius: 12px;
}
.list-none {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.px-6px {
  padding-left: 6px;
  padding-right: 6px;
}
.justify-end {
  justify-content: flex-end;
}
.no-underline {
  text-decoration: none;
}
.uppercase {
  text-transform: uppercase;
}
.color-191919 {
  color: rgb(25, 25, 25);
}
.text-lg {
  font-size: 18px;
}
.font-bold {
  font-weight: 700;
}
.border-bottom-top-1px {
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-top-width: 1px;
}
.py-6px {
  padding-bottom: 6px;
  padding-top: 6px;
}
.border-transparent {
  border-color: rgba(0, 0, 0, 0);
}
.hover-border-black:hover {
  border-color: rgb(0, 0, 0);
}
.transition {
  transition: all 250ms ease-in-out;
}
.gap-x-12px {
  column-gap: 12px;
}
.size-full {
  height: 100%;
  width: 100%;
}
.grid-cols-1fr-auto-1fr {
  grid-template-columns: 1fr auto 1fr;
}
.h-768px {
  height: 768px;
}
.capitalize {
  text-transform: capitalize;
}
.text-4xl {
  font-size: 36px;
  line-height: 30px;
}
.color-fff {
  color: rgb(255, 255, 255);
}
.h-256px {
  height: 256px;
}
.color-515151 {
  color: rgb(81, 81, 81);
}
.gap-x-36px {
  column-gap: 36px;
}
.object-contain {
  object-fit: contain;
}
.justify-center {
  justify-content: center;
}
.italic {
  font-style: italic;
}
.flex-col {
  flex-direction: column;
}
.text-2xl {
  font-size: 24px;
}
.font-black {
  font-weight: 900;
}
.color-ff3531 {
  color: rgb(255, 53, 49);
}
.bg-eeeeee {
  background-color: rgb(238, 238, 238);
}
.py-24px {
  padding-bottom: 24px;
  padding-top: 24px;
}
.pr-20px {
  padding-right: 20px;
}
.xxx1 {
  border-top-color: rgba(0, 0, 0, 0);
  border-width: 0;
  border-bottom-color: rgba(0, 0, 0, 0);
  border-left-color: rgb(255, 255, 255);
}
.hover-underline:hover {
  text-decoration: underline;
}
.gap-x-24px {
  column-gap: 24px;
}
.hover-color-ff3531:hover {
  color: rgb(255, 53, 49);
}
.pt-32px {
  padding-top: 32px;
}
.text-left {
  text-align: left;
}
.pb-100px {
  padding-bottom: 100px;
}
.px-12px {
  padding-left: 12px;
  padding-right: 12px;
}
.py-72px {
  padding-bottom: 72px;
  padding-top: 72px;
}
.bg-ff3531 {
  background-color: rgb(255, 53, 49);
}
.mb-0 {
  margin-bottom: 0;
}
.px-36px {
  padding-left: 36px;
  padding-right: 36px;
}
.title-effect {
  position: relative;
}
.title-effect:hover {
}
.title-effect::before {
  content: "";
  width: 100%;
  background: linear-gradient(90deg, #ff3531 10%, #00000000 10%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  border: 1px solid gray;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  height: 8px;
}
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* скрыта по умолчанию */
  padding: 10px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #ff3531;

  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;
}
.text-xl {
  font-size: 20px;
}
.py-12px {
  padding-bottom: 12px;
  padding-top: 12px;
}
.mt-30px {
  margin-top: 30px;
}
.w-full {
  width: 100%;
}
.footer {
  background: #000;
  display: flex;
  flex-direction: column;
}
.header_wrapp {
  background: #000;
}
.flex-auto {
  flex: 1 1 auto;
}
.grid {
  display: grid;
}
.grid-cols-3 {
  grid-template-columns: repeat(3,1fr);
}
.gap-y-24px {
  row-gap: 24px;
}
.grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}
.pt-13px {
  padding-top: 13px;
}
.pb-24px {
  padding-bottom: 24px;
}
.px-24px {
  padding-left: 24px;
  padding-right: 24px;
}
.main {
  display: flex;
  flex-direction: column;
}
.mt-20px {
  margin-top: 20px;
}
.inline-flex {
  display: inline-flex;
}
.mt-50px {
  margin-top: 50px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.root {
  cursor: default;
 
  position: relative;
  color: rgb(25, 25, 25);
}
.text-5xl {
  font-size: 48px;
}
.text-right {
  text-align: right;
}
.gap-x-6px {
  column-gap: 6px;
}
.border-2px {
  border-style: solid;
  border-width: 2px;
}
.size-128px {
  width: 128px;
  height: 128px;
}
.shrink-0 {
  flex-shrink: 0;
}
.bg-fff {
  background-color: rgb(255, 255, 255);
}
.row-span-2 {
  grid-row: span 2;
}
.mr-24px {
  margin-right: 24px;
}
.hover-bg-333:hover {
  background-color: rgb(51, 51, 51);
}
.hover-color-999:hover {
  color: rgb(153, 153, 153);
}
.border-color-black {
  border-color: rgb(0, 0, 0);
}
.bg-333 {
  background: #333;
}
.col-span-3 {
  grid-column: span 3;
}
.font-medium {
  font-weight: 500;
}
.border-color-new-1 {
  border-color: rgb(204, 204, 204);
}
.bg-292929 {
  background-color: rgb(41, 41, 41);
}
.pt-75px {
  padding-top: 75px;
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.h-512px {
  height: 512px;
}
.object-cover {
  object-fit: cover;
}
.w-4 {
  width: 4%;
}
.absolute-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.opacity-80per {
  opacity: 0.8;
}
.h-full {
  height: 100%;
}
.left-0 {
  left: 0;
}
.top-0 {
  top: 0;
}
.xxx3 {
  border-width: 0;
  border-top-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
  border-left-color: rgb(255, 255, 255);
}
.opacity-0per {
  opacity: 0;
}
.hover-filter-contrast50:hover {
  filter: contrast(50%);
}
.new-bg-1 {
  background-color: rgba(0, 0, 0, 0.64);
}
.text-center {
  text-align: center;
}
.flex-start {
  align-items: flex-start;
}
.size-64px {
  height: 64px;
  width: 64px;
}
.sticky {
  position: sticky;
  top: 0;
}
.text-sm {
  font-size: 14px;
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.pt-64px {
  padding-top: 64px;
}
.pb-30px {
  padding-bottom: 30px;
}
.bg-lg-transparent-00000099 {
  background: linear-gradient(transparent, #00000099 50%);
}
.py-36px {
  padding-bottom: 36px;
  padding-top: 36px;
}
.text-3xl {
  font-size: 30px;
}
.hover-filter-brightness85 {
}
.hover-filter-brightness85:hover {
  filter: brightness(85%);
}
.py-64px {
  padding-bottom: 64px;
  padding-top: 64px;
}
.border-bottom-1px {
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
}
.border-color-fff {
  border-color: rgb(255, 255, 255);
}
.pb-60px {
  padding-bottom: 60px;
}
.right-0 {
  right: 0;
}
.gap-y-6px {
  row-gap: 6px;
}
.justify-start {
  justify-content: flex-start;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.border-new-color-1 {
  border-color: rgb(97, 97, 97);
}
.invert {
  filter: invert(100%);
}
.h-64px {
  height: 64px;
}
.auto-rows-384px {
  grid-auto-rows: 384px;
}
.auto-rows-256px {
  grid-auto-rows: 256px;
}
.grid-row-2 {
  grid-template-rows: 1fr 1fr;
}
.pt-50px {
  padding-top: 50px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.mt-35px {
  margin-top: 35px;
}
.font-light {
  font-weight: 300;
}
.bottom-0 {
  bottom: 0;
}
.text-base {
  font-size: 16px;
}
.pb-50px {
  padding-bottom: 50px;
}
.gap-y-12px {
  row-gap: 12px;
}
.rounded-2xl {
  border-radius: 16px;
}
.w-20 {
  width: 20%;
}
.xxx4 {
  border-width: 0;
  border-top-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
  border-left-color: rgb(255, 255, 255);
}
.rounded-lg {
  border-radius: 8px;
}
.overflow-hidden {
  overflow: hidden;
}
.pt-100px {
  padding-top: 100px;
}
.shadow-1 {
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
}
.gap-y-36px {
  row-gap: 36px;
}
.size-48px {
  width: 48px;
  height: 48px;
}
.grid-cols-20-16-1fr {
  grid-template-columns: 16% 8% 1fr;
}
.grid-cols-1fr-14-14-14-14-14 {
  grid-template-columns: 1fr 12% 14% 14% 14% 14%;
}
.xxx2 {
  border-top-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
  border-left-color: rgb(255, 255, 255);
}
.hover-filter-invert:hover {
  filter: invert(100%);
}
@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);
    
  }


}