* {
  line-height: 120%;
}

body {
  font-family: 'Helvetica Roman';
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--c-text);
  background-color: var(--c-body);
  scrollbar-face-color: transparent;
  scrollbar-track-color: transparent;
  touch-action: pan-x pan-y;
}
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
body::-webkit-scrollbar-thumb {
  background: rgba(63, 159, 255, .4);
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(63, 159, 255, 1);
}
body::-webkit-scrollbar-track {
  background: rgba(63, 159, 255, .2);
}

.container-fluid {
  max-width: var(--w-container);
}

a {
  display: inline-block;
}

h1,
h2,
header,
footer {
  font-family: 'Helvetica Bold';
}

.hidden {
  overflow: hidden;
}

/* slider */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  height: auto;
}

.modal {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  font-size: x-large;
}
.modal_center .modal-dialog {
  margin-top: 30vh;
}
.modal-content {
  padding: 25px;
  border-radius: 16px;
  /* background-color: var(--c-body); */
  background-color: rgba(0, 0, 0, .8);
}
.modal-footer {
  border-top: none;
  display: none;
}
.btn-secondary {
  --bs-btn-bg: #2768D4;
  border: none;
  border-radius: 16px;
}

/* header */

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: var(--ptb-header) 0;
  z-index: 999;
}

.header__menu__list {
  display: flex;
  align-items: center;
  gap: 0 12px;
}

.header__link_active {
  color: var(--c);
}

.header__logo__link {
  margin-right: 5px;
}

.logo {
  width: 273px;
}

.header___social__container {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.header___social__container.active {
  opacity: 1;
  pointer-events: auto;
}

.header___social___content {
  position: relative;
  padding: 50px;
  padding-top: calc(var(--ptb-header) + 60px / 2 - 40px / 2);
  padding-right: calc((100vw - var(--w-container)) / 2 + 12px);
  background-color: rgba(0, 0, 0, .8);
}

.header___social___content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: -1;
}

.header__social__item__container {
  display: flex;
  justify-content: flex-end;
}

.header__social__list {
  padding-top: 50px;
  padding-right: 50px;
}

.header__social__item:not(:last-child) {
  margin-bottom: 10px;
}

/* hero */

.hero {
  height: 100vh;
}

.hero__video__title,
.hero__video__tag,
.hero__video__descr {
  font-family: var(--bs-body-font-family);
}

/* social */

.social__item {
  height: 42vh;
  width: 100%;
  padding: 3vh;
  background-color: var(--c-body);
  box-shadow: 0px 0px 8px 1px rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  opacity: .5;
  transition: opacity .2s ease;
}

.social__item img {
  width: 100px;
  height: 100px;
}

.social__item_tg {
  opacity: 1;
  overflow-y: scroll;
  scrollbar-face-color: transparent;
  scrollbar-track-color: transparent;
  touch-action: pan-x pan-y;
}
.social__item_tg::-webkit-scrollbar-thumb,
.social__item_tg::-webkit-scrollbar-thumb:hover,
.social__item_tg::-webkit-scrollbar-track {
  background: transparent;
}
.social__item_tg::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.arrow-down {
  position: absolute;
  display: block;
  bottom: 10%;
  left: 35px;
  transition: opacity .3s ease-in-out;
}

.arrow-down span {
  display: block;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  margin: -9px;
  animation: arrow-down 2.5s infinite;
}
.arrow-down span:nth-child(2){
  animation-delay: -0.2s;
}
.arrow-down span:nth-child(3){
  animation-delay: -0.4s;
}
@keyframes arrow-down {
  0%{
      opacity: 0;
      transform: rotate(45deg) translate(-10px,-10px);
  }
  50%{
      opacity: 1;
  }
  100%{
      opacity: 0;
      transform: rotate(45deg) translate(15px,15px);
  }
}

.section {
  margin-bottom: var(--mb-section);
}

.hero {
  position: relative;
  overflow: hidden;
}

.page_main .hero {
  display: flex;
  justify-content: flex-end;
}

.header__signature { /*recheck !!!*/
  opacity: .2;
  right: -30px;
  transform: rotate(-18deg);
}
.hero__sound__btn {
  z-index: 1000000; /*recheck*/
}

@media (min-width: 769px) {
  .hero__video__container {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: 80vw;
    height: 100%;
    /* max-height: calc(68vw / 16 * 9); */
  }
  /* .hero {
    max-height: calc(68vw / 16 * 9);
  } */
  .hero__video__decor {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero__video {
    width: 100%;
  }
  .hero::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 161px;
    /* background: linear-gradient(180deg, var(--c-body) 0%, rgba(1, 2, 33, 0) 100%); */
    transform: rotate(180deg);
    z-index: 0;
  }

  .tg_intgr {
    height: 80vh;
  }
}
.tg_intgr {
  overflow-x: hidden;
}

.tg_intgr::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.tg_intgr::-webkit-scrollbar-thumb {
  background: rgba(63, 159, 255, .4);
}

.tg_intgr::-webkit-scrollbar-thumb:hover {
  background: rgba(63, 159, 255, 1);
}

.tg_intgr::-webkit-scrollbar-track {
  background: rgba(63, 159, 255, .2);
}

.hero__decor {
  position: absolute;
}
.hero__decor_1 {
  width: 604px;
  height: 604px;
  top: 0;
  left: -78px;
}
.hero__decor_2 {
  width: 839px;
  height: 839px;
  top: 45px;
  left: calc(32% - 839px);
}
.hero__decor_3 {
  width: 772px;
  height: 772px;
  bottom: -117px;
  left: -78px;
}

.page_video .header {
  position: static;
}

.linklink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px; /*18*/
  padding: 8px 10px;
  font-size: 24px;
  text-transform: uppercase;
  background: linear-gradient(85.75deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 139, 236, 0.5) 100%);
}
.header__signature {
  position: absolute;
  top: 100%;
  right: 30px;
}
.hero__video__descr {
  max-width: 30vw;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  /* bottom: var(--swiper-pagination-bottom, 8px); */
  /* top: var(--swiper-pagination-top, auto); */
  /* left: 0; */
  top: auto;
  right: calc((100vw - var(--w-container)) / 2);
  bottom: 30px;
  left: auto;
  width: auto;
}
.swiper-pagination-bullet {
  width: 70px;
  height: 8px;
  border-radius: 0;
  overflow: hidden;
  background: #4B4B4B;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--c);
}


.hero__sound__btn {
  position: absolute;
  right: 100px;
  bottom: 70px;
  z-index: 1;
}
/* Тень-рамка для видео */
.video__item {
  position: relative;
  width: 100%;
  /* box-shadow: 0px 0px 8px 1px rgba(255, 255, 255, 0.2); */
  border-radius: 16px;
  overflow: hidden;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 91%), url(smart_crop_516x290.jpg);
  border: 3px solid #5F5F5F;
  box-shadow: 0px 0px 17px 3px rgba(255, 255, 255, 0.25);
}
.video__item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 91.3%);
  z-index: 1;
}
.video__item__text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2vw;
  z-index: 2;
}
.video__item h3 {
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video__item p {
  font-size: 20px;
  color: var(--c);
}

/* hero video text */
.hero__video__info {
  position: absolute;
  left: calc((100vw - var(--w-container)) / 2 + 12px);
  bottom: 80px;
  z-index: 12;
}
.hero__video__title {
  font-size: 64px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 1px black;
}
.hero__video__tag {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 100%;
  margin-bottom: 20px;
  color: var(--c-tag-green);
}
.hero__video__descr {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 140%;
}
.hero__video__link {
  padding: 18px 24px;
  font-size: 20px;
  text-transform: uppercase;
  background: linear-gradient(85.75deg, #2557C8 0%, #2A8BEC 100%);
}

/* clean */

/* hero */

/* hero slider */
.hero__slide {
  background-color: var(--c-body);
}

/* hero video shadow */
.hero__video__container {
  position: relative;
  padding-top: 50px; /* recheck */
}
.hero__video__container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(61.24% 58.32% at 50% 50%, rgba(1, 2, 33, 0) 77.43%, var(--c-body) 100%);
}
.hero__video__container__decor {
  position: absolute;
}
.hero__video__container__decor_top,
.hero__video__container__decor_bottom {
  right: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, var(--c-body) 22.5%, rgba(1, 2, 33, 0) 100%);
}
.hero__video__container__decor_right,
.hero__video__container__decor_left {
  top: 0;
  bottom: 0;
  width: 16%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-body) 22.5%, rgba(1, 2, 33, 0) 100%);
  z-index: 1;
}
.hero__video__container__decor_top {
  top: -1px;
}
.hero__video__container__decor_right {
  right: -1px;
  transform: rotate(-180deg);
}
.hero__video__container__decor_bottom {
  bottom: -1px;
  transform: rotate(-180deg);
}
.hero__video__container__decor_left {
  left: -1px;
}

/* /clean */


/* new */
.header__signature {
  display: none;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 769px) {
  .afisha__link {
    opacity: .7;
    transition: opacity .2s ease;
  }
  .afisha__link:hover {
    opacity: 1;
  }
  .header__signature {
    display: block;
  }
}
.new .swiper-wrapper,
.popular .swiper-wrapper {
  padding: 20px 0; /* не видно тень вокруг слайда - брезается */
}

.new .swiper-slide,
.popular .swiper-slide,
.new .video__item,
.popular .video__item,
.new .video__item *,
.popular .video__item * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.new .video__item::selection,
.popular .video__item::selection,
.new .video__item *::selection,
.popular .video__item *::selection {
  background: transparent;
  color: inherit;
}

@media (min-width: 769px) {
  .newSlider,
  .popularSlider {
    position: relative;
    padding-left: 56px;
    padding-right: 56px;
  }

  .new .swiper-button-next,
  .new .swiper-button-prev,
  .popular .swiper-button-next,
  .popular .swiper-button-prev {
    --swiper-navigation-size: 20px;
    --swiper-navigation-color: #fff;
    top: 50%;
    z-index: 10;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border-radius: 50%;
    background: rgba(1, 2, 33, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  }

  .new .swiper-button-next:hover,
  .new .swiper-button-prev:hover,
  .popular .swiper-button-next:hover,
  .popular .swiper-button-prev:hover {
    background: rgba(63, 159, 255, 0.22);
    border-color: rgba(63, 159, 255, 0.45);
  }

  .new .swiper-button-prev,
  .popular .swiper-button-prev {
    left: 0;
  }

  .new .swiper-button-next,
  .popular .swiper-button-next {
    right: 0;
  }

  .new .swiper-button-next::after,
  .new .swiper-button-prev::after,
  .popular .swiper-button-next::after,
  .popular .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
  }

  .new .swiper-button-disabled,
  .popular .swiper-button-disabled {
    opacity: 0.45;
    pointer-events: auto;
    cursor: default;
    transform: none;
  }
}

.footer {
  padding-bottom: 180px;
}
.footer__social__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  margin-bottom: 60px;
}
.footer__descr {
  margin-bottom: 34px;
} 

.video__item {
  height: 100%;
}

.video__item img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  
  .page_video header,
  .page_main header {
    margin-bottom: 40px !important;
  } 

  .linklink a:nth-child(2n) {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #21bf61;
  }
  .linklink a:nth-child(3n) {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #2298d6;
  }

  .linklink a svg {
    width: 20px;
    height: auto;
  }

  .linklink a:nth-child(3n) svg {
    margin: 2px 3px 0 0;
  }

  .header__signature {
    display: block !important;
    opacity: .8;
  }
}

#new .row {
  row-gap: 1.5rem!important
}

.hero__video__tag {
  display: none;
}

.videoplayer {
  background: var(--c-body) !important;
}

h2,
p {
  max-width: 700px;
}

/* media */

@media (max-width: 768px) {
  .video__item {
    border-radius: 8px;
    border: 1px solid #5F5F5F;
    box-shadow: 0px 0px 17px 2px rgba(255, 255, 255, 0.25);
  }
}