@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

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

:focus, :active {
  outline: none; }

a:focus, a:active {
  outline: none; }

nav, footer, header, aside {
  display: block; }

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit; }

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

button {
  cursor: pointer; }

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

a, a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

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

body {
  font-family: 'Ubuntu';
  font-size: 24px;
  line-height: normal;
}
.wrapper {
  /* overflow: hidden; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%; }

.container {
  max-width: none;
  margin: 0 auto;
  padding: 0 70px; 
}

.main {
}

/*--------------------*/

.header {
  background: rgba(0, 0, 0, 0.90);
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: 500;
  /* position: sticky;
  top: 0px;
  z-index: 100; */
}
.header_body {
  display: flex;
  align-items: center;
}
.header_logo {
  flex: 0 0 10%;
  margin-right: 25px;
  z-index: 51;
}
.header_menu {
  display: flex;
  flex: 1 0 auto;
  margin-right: 50px;
}
.menu_item {
  flex: 1 1 auto;
}
.menu_item:not(:last-child) {
  margin-right: 15px;
}
.menu_link {
  color: #FFF;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu_link::after {
  position: absolute;
  content: "";
  height: 40px;
  width: 100%;
  bottom: -40px;
  z-index: 20;
  cursor: default;
}
.menu_link:hover {
  border-radius: 60px;
  background: #E13C52;
}
.menu_item-child {
  display: none;
  position: absolute;
  z-index: 10;
  border-radius: 13px;
  background: #232229;
  padding: 15px 20px 15px 20px;
  max-width: 300px;
  top: 150%;
  cursor: default;
}
.menu_item-child a,
.mobile-menu_body li a {
  transition: all ease 0.5s 0s;
}
.menu_item-child a:hover,
.mobile-menu_body li a:hover {
  color: #644b10;
}
.menu_item a {
  color: white;
  text-decoration: none;
  display: block;
}
.menu_item a:not(:last-child) {
  position: relative;
  margin-bottom: 20px;
}
.menu_item a:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -10px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.09);
}
.header_buttons {
  display: flex;
  flex: 1 0 auto;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}
.header_button {
  color: #FFF;
  position: relative;
  cursor: pointer;
}
.header_button:first-child {
  margin-right: 50px;
}
.header_button:first-child::before {
  position: absolute;
  content: '';
  background-image: url('../img/akar-icons_search.svg');
  width: 24px;
  height: 24px;
  left: -30px;
  top: 2px;
}
.header_button:not(:first-child)::before {
  position: absolute;
  content: '';
  background-image: url('../img/carbon_user-avatar.svg');
  width: 24px;
  height: 24px;
  left: -30px;
  top: 2px;
}
.header_mobile-menu {
  display: none;
  color: #FFF;
  text-align: left;
  width: 100%;
  position: absolute;
  z-index: 50;
  top: 0;
  opacity: 0.9;
  background: #000;
  backdrop-filter: blur(34px);
  left: 0;
  padding: 10px 20px 0 20px;
}
.mobile-menu_icon {
  text-align: right;
  padding-top: 15px;
}
.mobile-menu_icon::before {
  position: absolute;
  content: '';
  background-image: url('../img/menu\ icon.svg');
  width: 40px;
  height: 30px;
}
.mobile-menu_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mobile-menu_icon-close {
  position: relative;
  display: none;
}
.mobile-menu_icon-close::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 5px;
  transform: rotate(45deg);
  border-radius: 13px;
  background: #FFF;
  right: 0;
}
.mobile-menu_icon-close::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 5px;
  transform: rotate(135deg);
  flex-shrink: 0;
  border-radius: 13px;
  background: #FFF;
  right: 0;
}
form {
  display: none;
  margin-right: 70px;
  position: relative;
}
input {
  background-color: #000;
  height: 50px;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  padding-left: 40px;
}
form::before {
  position: absolute;
  content: '';
  background-image: url('../img/akar-icons_search.svg');
  width: 24px;
  height: 24px;
  top: 14px;
  left: 12px;
}
input:focus, textarea:focus, select:focus {
  outline: none !important;
}
.mobile-menu_body {
  display: none;
  padding-bottom: 15%
}
.mobile-menu_body a {
  color: #FFF;
  font-size: 20px;
}
.mobile-menu_body li:not(:last-child) {
  margin-bottom: 35px;
}
.mobile_form {
  display: block;
  margin-bottom: 25px;
}
.mobile_input {
  border-radius: 13px;
  background: #232229;  
}

/*--------------------*/

.promo {
  color: #FFF;
  min-height: 100vh;
}
.promo1,
.promo4 {
  background: url('../img/onair-slide-1\ 1.png') lightgray 0px 0px / cover no-repeat;
}
.promo2 {
  background: url('../img/inception.png') lightgray 0px 0px / cover no-repeat;
}
.promo3 {
  background: url('../img/friends.png') lightgray 0px 0px / cover no-repeat;
}
.promo_title,
.promo_title-mb  {
  font-size: 48px;
  font-weight: 300;
  max-width: 500px;
  padding-top: 20%;
  margin-bottom: 60px;
}
.promo_title span {
  font-weight: 700;
}
.promo_button {
  cursor: pointer;
}
.promo_button,
.promo_button-mb {
  font-weight: 500;
  border-radius: 60px;
  background: #E13C52;
  padding: 10px 35px;
  display: inline;
}
.promo-body {
  display: none;
  color: #FFF;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
}

/*--------------------*/

.all {
  background: rgb(36,25,12);
  background: linear-gradient(90deg, rgba(36,25,12,1) 13%, rgba(71,52,24,1) 59%, rgba(14,11,7,1) 96%);
}
.all_body {
  color: #FFF;
  padding-bottom: 30px;
}
.games {
}
.games_top,
.popular-movies_top {
  margin-bottom: 45px;
  padding-top: 100px;
}
.games_title {
}
.games_link {
}
.games_list {
  display: flex;
  flex-wrap: wrap;
}
.games_game {
  transition: all linear 1s 0s;
}
.games_game:hover {
  transform: rotate(360deg);
}
.games_game,
.games_game img,
.new-channels_channel,
.new-channels_channel img,
.popular-channels_channel,
.popular-channels_channel img {
  border-radius: 10%;
}
.games_game:not(:last-child) {
  margin-right: 30px;
}
.games_game,
.popular-movies_movie,
.new-movies_movie,
.new-channels_channel,
.popular-channels_channel {
  flex: 1 1 10%;
}
.games_game img,
.popular-movies_movie img,
.new-movies_movie img,
.new-channels_channel img,
.popular-channels_channel img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.popular-movies {
}
.popular-movies_title {
}
.popular-movies_link {
}
.popular-movies_list,
.new-movies_list,
.new-channels_list,
.popular-channels_list {
  display: flex;
  flex-wrap: wrap;
}
.popular-movies_movie:not(:last-child),
.new-movies_movie:not(:last-child) {
  margin-right: 20px;
}
.new-movies {
}
.new-movies_top,
.new-channels_top,
.popular-channels_top {
  margin-bottom: 35px;
  padding-top: 80px;
}
.new-movies_title {
}
.new-movies_link {
}
.new-movies_list {
}
.popular-movies_movie:hover,
.new-movies_movie:hover {
  border: 3px yellow solid;
}
.new-channels {
}
.new-channels_top {
}
.new-channels_title {
}
.new-channels_link {
}
.new-channels_list {
}
.new-channels_channel {
}
.new-channels_channel:not(:last-child),
.popular-channels_channel:not(:last-child) {
  margin-right: 30px;
}
.popular-channels {
}
.popular-channels_top {
}
.popular-channels_title {
}
.popular-channels_link {
}
.popular-channels_list {
}
.popular-channels_channel,
.new-channels_channel,
.popular-movies_movie,
.new-movies_movie {
  transition: all ease 0.5s 0s;
}
.hover {
  transform: scale(1.75);
  -webkit-user-select: none;
  -webkit-touch-callout: none;  
}
#channel.ch::before,
#channel.ch::before {
  top: 78%;
  width: 30%;
  height: 15%;
  font-size: 20px;
}
#channel.ch::after,
#channel.ch::after {
  width: 30%;
  height: 32%;
  top: 61%
}

/*--------------------*/

.footer {
  background: #191919;
  padding-top: 60px;
  padding-bottom: 30px;
}
.footer_body {
  display: flex;
}
.footer_left {
}
.footer_logo {
}
.footer_info {
  color: #8D8D8D;
  max-width: 300px;
  margin-top: 95px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 140%; /* 22.4px */
}
.footer_buttons {
  margin-bottom: 30px;
}
.footer_button {
}
.footer_button:first-child {
  margin-right: 20px;
}
.footer_social {
  display: flex;
  margin-bottom: 55px;
  justify-content: space-between;
}
.footer_icon {
  flex: 1 1 auto;
}
.footer_icon img:hover {
  background-color: #02b19f;
  border-radius: 50%;
  transition: all ease 0.2s 0s;
}
.footer_bot {
  display: flex;
  margin-bottom: 15px;
}
.bot_info {
  flex: 1 1 auto;
}
.footer_link {
  color: #616161;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}
.footer_copy {
  color: #616161;
  font-size: 16px;
  line-height: 140%; /* 22.4px */
}
.footer_menu {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.footer_column {
  flex: 0 1 30%;
}
.footer_column:not(:last-child) {
  margin-right: 15px;
}
.footer_item {
}
.footer_item:not(:last-child),
.footer_item:not(:first-child) {
  margin-bottom: 10px;
}
.footer_item:first-child {
  margin-bottom: 20px;
}
.footer_link span {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%; /* 33.6px */
  transition: all ease 0.5s 0s;
}
.footer_link span:hover {
  color: #644b10;
}

/*--------------------*/

.main_sign {
  background: url('../img/back.png') 0 0/cover no-repeat;
  padding: 0 15px;
}
.signIn {
  height: 100vh;
}
.signIn_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3%;
}
.signIn_logo {
  margin-bottom: 50px;
}
.signIn_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.signIn_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 23px;
  background: rgba(0, 0, 0, 0.60);
  padding: 0 75px;
  padding-top: 25px;
  margin-bottom: 20px;
  margin-left: 50px;
}
.signIn_form::before {
  display: none;
}
.signIn_title {
  color: #FFF;
  text-align: center;
  margin-bottom: 20px;
}
.signIn_input {
  display: block;
  border-radius: 8px;
  background: rgba(49, 49, 49, 0.90);
  padding-left: 20px;
  padding-right: 100px;
  font-size: 16px;
}
.ft-inp {
  margin-bottom: 10px;
}
.signIn_button {
  margin-top: 35px;
  border-radius: 60px;
  background: #E13C52;
  padding: 10px 35px;
  color: #FFF;
  font-weight: 500;
  display: flex;
  margin-bottom: 25px;
}
.signIn_forgot {
  color: #838199;
  font-size: 16px;
  margin-bottom: 30px;
}
.signIn_forgot:hover {
  text-decoration: underline;
}
.signIn_back {
  color: #FFF;
  font-weight: 500;
}

/*--------------------*/

.title {
  color: #FFF;
  font-size: 32px;
}
.link {
  color: #FFF;
  font-size: 16px;
  text-decoration-line: underline;
  position: absolute;
  left: 350px;
} 
.link::after {
  position: absolute;
  content: ">";
  top: -2px;
  right: -20px;
  font-size: 20px;
}
.top {
  display: flex;
  align-items: center;
}
.fx,
.bravo,
.abc,
.foxnews,
.tru,
.tbs,
.fox,
.nbc,
.espn,
.usa {
  position: relative;
}
.fx::after,
.bravo::after,
.abc::after,
.foxnews::after,
.tru::after,
.tbs::after,
.fox::after,
.nbc::after,
.espn::after,
.usa::after {
  position: absolute;
  content: "";
  width: 56%;
  height: 50%;
  right: 0;
  top: 30%;
  border-radius: 18px 0px 0px 18px;
  z-index: 0;
}
.fx::after {
  background: url("../img/image\ 16.svg") lightgray 0 0 /contain no-repeat;
}
.bravo::after {
  background: url("../img/image\ 17.svg") lightgray 0 0 /contain no-repeat;
}
.abc::after {
  background: url("../img/image\ 18.svg") lightgray 65% 18% /65% no-repeat;
}
.foxnews::after {
  background: url("../img/image\ 19.svg") lightgray 55% 5% /90% no-repeat;
}
.tru::after {
  background: url("../img/image\ 15.svg") lightgray 0 10% /contain no-repeat;
}
.tbs::after {
  background: url("../img/image\ 14.svg") lightgray 0 0 /contain no-repeat;
}
.fox::after {
  background: url("../img/image\ 51.svg") lightgray 52% 25% /65% no-repeat;
}
.nbc::after {
  background: url("../img/image\ 52.svg") lightgray 55% 10% /80% no-repeat;
}
.espn::after {
  background: url("../img/image\ 53.svg") lightgray 40% 20% /90% no-repeat;
}
.usa::after {
  background: url("../img/image\ 54.svg") lightgray 40% 20% /80% no-repeat;
}

.fx::before,
.bravo::before,
.abc::before,
.foxnews::before,
.tru::before,
.tbs::before,
.fox::before,
.nbc::before,
.espn::before,
.usa::before {
  position: absolute;
  width: 57%;
  height: 21%;
  right: 0;
  top: 63%;
  border-radius: 18px 0px 0px 18px;
  background: #515151;
  z-index: 5;
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fx::before {
  content: "234";
}
.bravo::before {
  content: "112";
}
.abc::before {
  content: "122";
}
.foxnews::before {
  content: "114";
}
.tru::before {
  content: "212";
}
.tbs::before {
  content: "119";
}
.fox::before {
  content: "212";
}
.nbc::before {
  content: "123";
}
.espn::before {
  content: "35";
}
.usa::before {
  content: "87";
}
.sign {
  position: relative;
  margin-left: 30px;
  display: inline-flex;
}
.sign2,
.sign3 {
  margin-left: 30px;
  position: relative;
}
.sign::before,
.sign2::before,
.sign3::before {
  position: absolute;
  content: "";
  background-image: url('../img/carbon_user-avatar.svg');
  width: 24px;
  height: 24px;
  left: -32px;
  top: 5px;
  transition: all ease 0.5s 0s;
}
.sign3::before {
  top: 0px;
}
.sign:hover::before,
.sign2:hover::before,
.sign3:hover::before {
  background-color: #644b10;
  border-radius: 50%;
}
.enjoy {
  position: absolute;
  background: rgba(0, 0, 0, 0.80);
  bottom: 0px;
  display: none;
  border-radius: 0 0 10% 10%;
  padding-bottom: 10px;
}
.enjoy_text {
  color: #FFF;
  font-size: 8px;
  font-weight: 500;
  max-width: 67%;
  margin-left: 7px;
  margin-top: 10px;
}
.enjoy_button {
  border-radius: 60px;
  background: #E13C52;
  color: #FFF;
  font-weight: 500;
  display: inline-flex;
  margin-top: 6%;
  font-size: 10px;
  padding: 3px 6px;
  max-width: 80%;
}
.showing_now,
.showing_now-two {
  position: absolute;
  font-size: 9px;
  font-weight: 500;
  line-height: 146%;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.47);
  top: 2%;
  left: 4%;
}
.showing_now-two {
  top: 35px;
}
.showing_now p:first-child,
.showing_now-two p:first-child {
  color: #FFF;
  padding: 0 5px;
}
.showing_now p:last-child,
.showing_now-two p:last-child {
  color: #000;
  border-radius: 24px;
  background: #FFF;
  padding: 0 5px;
}
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 25px;
  --swiper-navigation-top-offset: 90%;
  --swiper-navigation-sides-offset: 37.5%;
  --swiper-navigation-color: #FFF;
  border-radius: 50%;
  border: 1px #FFF solid;
  padding: 20px;
}
.swiper-pagination {
  --swiper-pagination-color: #D9D9D9;
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 44px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 40px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-inactive-color: #D9D9D9;
  --swiper-pagination-bullet-inactive-opacity: 0.3;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  display: flex;
  justify-content: center;
}
.footer_menu-mb {
  display: none;
}
.one {
}
.menu-mb_spoiler {
  position: relative;
}
.menu-mb_spoiler::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -10px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.09);
}
.menu-mb_spoiler:first-child::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: -10px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.09);
}
.menu-mb_title {
  color: #FFF;
  font-size: 20px;
  line-height: 140%; /* 28px */
  margin-bottom: 5px;
  position: relative;
  text-align: left;
}
.menu-mb_title::after {
  position: absolute;
  content: "+";
  color: #FFF;
  right: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 1px 6px;
}
.menu-mb_links {
  display: none;
}
.menu-mb_item {
  text-align: left;
}
.menu-mb_title:hover {
  color: #644b10;
}
.menu-mb_item:not(:last-child) {
  margin-bottom: 5px;
}
.menu-mb_spoiler:not(:last-child) {
  margin-bottom: 25px;
}
.active {
  transform: scale(1.3);
  z-index: 30;
}
.white {
  color:#FFF;
}

@media (pointer: fine) {
  .new-channels_channel:hover,
  .popular-channels_channel:hover {
    transform: scale(1.75);
  }
  #channel:hover::before,
  #channel:hover::before {
    top: 78%;
    width: 30%;
    height: 15%;
    font-size: 20px;
  }
  #channel:hover::after,
  #channel:hover::after {
    width: 30%;
    height: 32%;
    top: 61%
  }
}

/*--------------------*/

/* 4K */
@media (min-width: 1700px) {
  .promo_title {
    max-width: 700px;
    font-size: 60px;
  }
  .promo_button {
    font-size: 30px;
  }
  .title {
    font-size: 45px;
  }
  .link {
    font-size: 30px;
    left: 500px;
  }
  .link::after {
    font-size: 34px;
    right: -30px;
  }
  .fx::before,
  .bravo::before,
  .abc::before,
  .foxnews::before,
  .tru::before,
  .tbs::before,
  .fox::before,
  .nbc::before,
  .espn::before,
  .usa::before {
    font-size: 45px;
  }
  .enjoy_text {
    font-size: 20px;
  }
  .enjoy_button {
    font-size: 20px;
  }
  .showing_now,
  .showing_now-two {
    font-size: 16px;
  }
  .showing_now-two {
    top: 70px;
  }
  .popular-channels_channel:hover::before,
  .new-channels_channel:hover::before {
    font-size: 35px;
  }
  .header,
  input {
    font-size: 32px;
  }
  .promo_title {
    font-size: 80px;
  }
  .promo-body {
    font-size: 35px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    padding: 33px;
  }
  .swiper-pagination {
    --swiper-pagination-bullet-width: 60px;
    --swiper-pagination-bullet-height: 6px;
  }
  .footer_link,
  .footer_info,
  .footer_copy {
    font-size: 32px;
  }
  .footer_link span {
    font-size: 36px;
  }
  .footer_button img {
    width: 40%;
  }
  .footer_icon img {
    width: 40%;
  }
  .sign::before {
    width: 24px;
    height: 24px;
    top: 12px;
  }
  .header_button:first-child::before {
    top: 8px;
  }
  .header_button:not(:first-child)::before {
    top: 8px;
  }
}

@media (max-width: 1200px) {
  .fx::before,
  .bravo::before,
  .abc::before,
  .foxnews::before,
  .tru::before,
  .tbs::before,
  .fox::before,
  .nbc::before,
  .espn::before,
  .usa::before {
  font-size: 25px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 35%;
  }
}

/* PC */
@media (max-width: 1057px) {
  .container {
    padding: 0 50px; 
  }
  .promo_title {
    padding-top: 200px;
  }
  .games_game {
    flex: 0 1 20%;
  }
  .games_list,
  .popular-movies_list,
  .new-movies_list {
    justify-content: center;
    gap: 15px;
  }
  .games_game:not(:last-child),
  .popular-movies_movie:not(:last-child),
  .new-movies_movie:not(:last-child),
  .new-channels_channel:not(:last-child),
  .popular-channels_channel:not(:last-child) {
    margin-right: 0;
  }
  .link {
    left: 330px;
  }
  .games_top {
    margin-bottom: 40px;
    padding-top: 90px;
  }
  .new-movies_top, 
  .popular-movies_top,
  .new-channels_top,
  .popular-channels_top {
    margin-bottom: 30px;
    padding-top: 70px;
  }
  .new-channels_list,
  .popular-channels_list {
    gap: 20px;
    justify-content: center;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 32%;
  }
}

/* TABLET */
@media (max-width: 991.98px) {
  .container {
    padding: 0 40px; 
  }
  .header_menu,
  .header_buttons {
    display: none;
  }
  .header_mobile-menu {
    display: block;
  }
  .header_body {
    justify-content: space-between;
  }
  .link {
    left: 350px;
  }
  .games_top,
  .popular-movies_top,
  .new-channels_top,
  .popular-channels_top {
    margin-bottom: 35px;
    padding-top: 80px;
  }
  .popular-movies_movie,
  .new-movies_movie,
  .new-channels_channel,
  .popular-channels_channel {
    flex: 0 1 20%;
  }
  .fx::before,
  .bravo::before,
  .abc::before,
  .foxnews::before,
  .tru::before,
  .tbs::before,
  .fox::before,
  .nbc::before,
  .espn::before,
  .usa::before {
  font-size: 29px;
  }
  .footer_menu {
    display: none;
  }
  .footer_body {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .footer_info {
    max-width: 600px;
  }
  .footer_info {
    margin-top: 50px;
  }
  .footer_logo img {
    width: 40%;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 30%;
  }
  .footer_menu-mb {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    width: 100%;
    margin-bottom: 70px;
  }
  .logo_mobile {
    display: none;
  }
  #channel {
    user-select: none;
  }
}

/* MOBILE */
@media (max-width: 767.98px) {
  .container {
    padding: 0 30px; 
  }
  .promo1,
  .promo4 {
    background: url('../img/onair-slide-1\ 2.png') lightgray 50% / cover no-repeat;
  }
  .promo2 {
    background: url('../img/inception2.png') lightgray 50% / cover no-repeat;
  }
  .promo3 {
    background: url('../img/friends2.png') lightgray 50% / cover no-repeat;
  }
  .promo_title,
  .promo_button {
    display: none;
  }
  .promo-body {
    display: block;
    text-align: center;
    padding-bottom: 100px;
  }
  .promo_title-mb {
    max-width: none;
    padding-top: 30px;
    margin-bottom: 45px;
  }
  .games_top,
  .popular-movies_top {
    margin-bottom: 20px;
  }
  .popular-movies_movie,
  .new-movies_movie,
  .new-channels_channel,
  .popular-channels_channel {
    flex: 0 1 30%;
  }
  .new-movies_top, 
  .popular-movies_top,
  .new-channels_top,
  .popular-channels_top {
    padding-top: 60px;
  }
  .new-channels_list,
  .popular-channels_list {
    gap: 10px;
  }
  .fx::before,
  .bravo::before,
  .abc::before,
  .foxnews::before,
  .tru::before,
  .tbs::before,
  .fox::before,
  .nbc::before,
  .espn::before,
  .usa::before {
  font-size: 32px;
  }
  .footer_info {
    margin-top: 40px;
  }
  .bot_info:not(:last-child) {
    margin-right: 10px;
  }
  .swiper-pagination {
    --swiper-pagination-bullet-width: 32px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-top-offset: 95%;
    --swiper-navigation-sides-offset: 25%;
  }
  .mobile-menu_body {
    padding-bottom: 25%
  }
  .hover {
    transform: scale(1.5);
  }
}

/* MOBILE SMALL */
@media (max-width: 576px) {
  .container {
    padding: 0 20px; 
  }
  .promo-body {
    padding-bottom: 100px;
  }
  .promo_title-mb {
    padding-top: 20px;
    margin-bottom: 35px;
  }
  .games_game {
    flex: 0 1 25%;
  }
  .games_list {
    gap: 10px;
  }
  .new-channels_list,
  .popular-channels_list {
    gap: 5px;
  }
  .games_list,
  .popular-movies_list,
  .new-movies_list {
    gap: 10px;
  }
  .fx::before,
  .bravo::before,
  .abc::before,
  .foxnews::before,
  .tru::before,
  .tbs::before,
  .fox::before,
  .nbc::before,
  .espn::before,
  .usa::before {
  font-size: 25px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 15%;
  }
  .mobile-menu_body {
    padding-bottom: 30%
  }
  #channel.ch::before,
  #channel.ch::before {
    top: 17%;
    font-size: 18px;
  }
  #channel.ch::after,
  #channel.ch::after {
    top: 0%
  }
  .enjoy_text {
    max-width: 100%;
    padding-right: 2px;
  }
  .showing_now-two {
    top: 33px;
  }
  .signIn_form {
    margin-left: 0;
  }
}

@media (max-width: 450px) {
  .link {
    position: relative;
    left: 0;
  }
  .top {
    flex-direction: column;
    align-items: flex-start;
  }
  .title {
    margin-bottom: 10px;
  }
  .fx::before,
  .bravo::before,
  .abc::before,
  .foxnews::before,
  .tru::before,
  .tbs::before,
  .fox::before,
  .nbc::before,
  .espn::before,
  .usa::before {
  font-size: 21px;
  }
  .promo_title {
    font-size: 40px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 12%;
  }
  .enjoy_text {
    font-size: 0;
  }
  .enjoy {
    width: 100%;
  }
  .enjoy_button {
    font-size: 8px;
  }
  .showing_now,
  .showing_now-two {
    font-size: 7px;
  }
  .showing_now-two {
    top: 30%;
  }
  .popular-channels_channel:hover::before,
  .new-channels_channel:hover::before {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .fx::before,
  .bravo::before,
  .abc::before,
  .foxnews::before,
  .tru::before,
  .tbs::before,
  .fox::before,
  .nbc::before,
  .espn::before,
  .usa::before {
  font-size: 17px;
  }
  .footer_button:not(:last-child) {
    margin-right: 0;
    padding-bottom: 15px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 10%;
  }
  .mobile_input {
    border-radius: 13px;
    background: #232229;  
    width: 70%;
  }
  .enjoy_button {
    font-size: 7px;
  }
  .popular-channels_channel:hover::before,
  .new-channels_channel:hover::before {
    font-size: 11px;
  }
}

