@charset "UTF-8";

/*Обнуление*/

:root {
  --font-family: "Montserrat", sans-serif;
  --third-family: "Aeroport", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -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%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: var(--third-family);
}

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;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: var(--third-family), sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
  background: #f4f4f4;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #373737;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #373737;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all 300ms ease-in-out;
  border-radius: 10px;
  padding: 9px 32px;
  width: 193px;
  height: 43px;
  box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
  cursor: pointer;
}

.button:hover {
  background: #434b53;
  color: #fff;
  transition: all 300ms ease-in-out;
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  padding-bottom: 30px;
  font-weight: 700;
  font-size: 32px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #373737;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 100px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  max-width: 1248px;
  padding: 0px 20px;
}

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header__container {
  border-radius: 10px;
  box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 10px 20px;
}
.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.header__link {
  transition: all 300ms ease-in-out;
  border: 1px solid #ef341d;
  border-radius: 10px;
  padding: 8px 19px;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #ef341d;
  display: flex;
  gap: 8px;
}
.header__link:hover {
  border-color: #373737;
  color: #373737;

}
.header__link img{
  transition: all 300ms ease-in-out;
}
.header__link:hover img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(44%) saturate(0%) hue-rotate(137deg) brightness(98%) contrast(83%);
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 20px;
  height: 14px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 20px;
  position: relative;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 2px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: #434b53;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 100%;
}

.header__menu-button span {
  top: 50%;
  width: 100%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}



.menu._active {
  left: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 16px;
}

.popup__content {
  background-color: #fff;
  max-width: 620px;
  padding: 60px 40px 30px;
  position: relative;
  width: 100%;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.close-popup {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 25px;
  right: 40px;
  cursor: pointer;
}


@media (max-width: 1024px) {
  .page {
    padding: 50px 0px 0 0px;
  }

  .page_one {
    padding: 50px 0px 36px 0px;
  }

  .header__menu-button{
    display: block;
  }
  .section {
    padding: 80px 0px;
  }

}

@media (max-width: 992px) {

  .section-bg {
    padding: 16px 0;
  }

  .header {
    padding: 24px 0px;
  }

  .header__container {
    padding: 0px 24px;
  }

  .header__items {
    gap: 16px;
  }


}

@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 24px;
      padding-bottom: 20px;
    }
  .section {
    padding: 40px 0px;
  }

}

@media (max-width: 600px) {
  .header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  column-gap: 60px;
}
.header__menu a:hover {
  color: #ef341d;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
  font-size: 25px;
  font-weight: 600;
  color: #5F5B5B;
}
.header__button:hover{
  color: #5F5B5B;
}
.header__logo img {
  width: 133px;
}
.header__menu a {
  font-weight: 500;
  font-size: 15px;
  line-height: 143%;
  letter-spacing: -0.01em;
  text-align: right;
  color: #373737;
}
div.header__button {
  padding: 0;
}

@media (max-width: 1445px) {
  .header__button {
    font-size: 20px;
  }
}
@media (max-width: 1371px) {
  .header__link {
    padding: 15px 15px;
  }
  .header__button {
    padding: 15px 15px;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 150px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 97px;
  }
  .preheader .preheader__item:first-child{
    display: none;
  }
  .preheader__phone {
    display: none;
  }
  .preheader__item {
    width: 100%;
  }

  .preheader__btn.button {
    width: 100%;
    z-index: 12;
  }
  .header {
    padding-top: 20px;
  }
  .header__tel {
    height: 24px;
  }
  header__link img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(44%) saturate(0%) hue-rotate(137deg) brightness(98%) contrast(83%);
  }
  .header__logo {
    display: flex;
  }
  .header__content {
    gap: 20px;
    justify-content: end;
    width: 100%;
  }
  .header__body{
    gap: 40px;
  }
  .header__menu-button._active {
    z-index: 10;
    flex: 0 0 30px;
  }
  .header__logo {
    z-index: 12;
  }
  .header__menu {
    align-items: baseline;
    flex-direction: column;
    gap: 10px;
  }
  ._active .header__body:before {
    border-bottom: 1px solid #434b53;
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -15px;
    z-index: 111;
  }
}
.preheader__row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}
.preheader__link {
  font-weight: 400;
  font-size: 15px;
  line-height: 143%;
  letter-spacing: -0.01em;
  color: #434b53;
}
.preheader__link--active {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.preheader__links {
  display: flex;
  gap: 70px;
}
.preheader__phone {
  font-weight: 500;
  font-size: 15px;
  line-height: 143%;
  letter-spacing: -0.01em;
  color: #ef341d;
}
.preheader__item {
  display: flex;
  gap: 50px;
  align-items: center;
}
.header__mobiles{
  display: none;
}
@media (max-width: 1300px) {
  .container {
    width: calc(100% - 30px);
    padding: 0;
  }
  .header__container{
    padding: 10px 20px;
  }
}
@media (max-width: 1024px) {
  .header__mobiles{
    display: block;
    z-index: 10;
  }
  .header__link {
    padding: 0;
    border: 0;
  }
  .header__link span{
    display: none;
  }
  .header__link img {
    width: 25px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(44%) saturate(0%) hue-rotate(137deg) brightness(98%) contrast(83%);
  }
  .header__items {
    z-index: 10;
  }
  .menu._active nav.header__nav {
    margin-left: 30px;
  }
  .header__menu a {
    font-size: 22px;
  }
  .preheader__row {
    padding-bottom: 0;
  }
}
.banner__img-mobile {
  display: none;
}
.banner__container {
  border-radius: 10px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  margin-top: 20px;
  padding: 30px 40px;
}
.banner__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 114%;
  letter-spacing: 0em;
  color: #373737;
}
.banner__name {
  font-weight: 700;
  font-size: 50px;
  line-height: 114%;
  letter-spacing: 0em;
  color: #ef341d;
  padding-top: 10px;
}
.banner__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 143%;
  letter-spacing: -0.01em;
  color: #373737;
  max-width: 465px;
  padding-top: 30px;
}
.banner__buttons {
  display: flex;
  gap: 20px;
  padding-top: 30px;
  margin-top: auto;
}
.banner__button {
  border-radius: 10px;
  padding: 9px 29px;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #eef1f5;
  transition: all 300ms ease-in-out;
}
.banner__button--green {
  background: #25b054;
  border: 1px solid rgb(37 176 84);
}
.banner__button--blue{
  background: #1e9fc9;
  border: 1px solid rgb(30 159 201);
}
.banner__button--red{
  background: #ef341d;
  border: 1px solid rgb(239 52 29);
}
.banner__button--green:hover {
  box-shadow: 0 5px 14px 0 rgb(37 176 84 / 25%);
  background: #fff;
  color: #25b054;
  border: 1px solid rgb(37 176 84);
}
.banner__button--blue:hover {
  box-shadow: 0 5px 14px 0 rgb(30 159 201 / 25%);
  background: #fff;
  color: #1e9fc9;
  border: 1px solid rgb(30 159 201);
}
.banner__button--red:hover {
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #fff;
  color: #ef341d;
  border: 1px solid rgb(239 52 29);
}
.banner__row {
  display: flex;
}
.banner__item {
  display: flex;
  flex-direction: column;
}
.banner__img {
  width: 100%;
}
.banner__button--red-mobile{
  display: none;
}
@media (max-width: 1040px) {
  .banner__item:first-child {
    width: 100%;
    max-width: 518px;
  }
}
@media (max-width: 900px) {
  .banner__row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .banner__item--img {
    display: none;
  }
  .banner__title {
    font-size: 26px;
    line-height: 100%;
  }
  .banner__name {
    font-size: 26px;
  }
  .banner__titles {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
  .banner__img-mobile {
    width: calc(50% - 30px);
    display: block;
  }
  .banner__text {
    font-size: 16px;
    padding-top: 12px;
    max-width: 315px;
  }
  .banner__infotmations {
    border-radius: 10px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    padding: 11px 16px;
  }
  .banner__container {
    box-shadow: none;
    padding: 0;
    margin-top: 16px;
    background: #ffffff08;
  }
  .banner__buttons {
    border-radius: 10px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    margin-top: 20px;
    padding: 11px;
    gap: 5px;
    justify-content: space-between;
  }
  .banner__button {
    padding: 6px 15px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  .banner__button--red-mobile{
    display: block;
  }
  .banner__button--red-dc{
    display: none;
  }
  .banner__item:first-child{
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .banner__img-mobile {
    display: block;
    width: 1000%;
  }
  .banner__titles {
    gap: 0;
    flex-direction: column;
  }
  .banner__img-mobile {
    width: 100%;
    max-width: 100%;
  }
}

.watch-channels__title {
  display: flex;
  align-items: center;
  gap: 23px;
  padding-top: 50px;
  padding-left: 20px;
}
.watch-channels__item .watch-channels__infotmation{
  border-radius: 10px;
  box-shadow: 0 14px 26px 0 rgba(0, 0, 0, 0.25);
  padding: 23px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 282px;
}
.watch-channels__item--white .watch-channels__infotmation{
  background: #fff;
}
.watch-channels__item--blue .watch-channels__infotmation{
  background: #1e9fc9;
}
.watch-channels__item--black .watch-channels__infotmation{
  background: #434b53;
}
.watch-channels__item--red .watch-channels__infotmation{
  background: #ef341d;
}
.watch-channels__plashka {
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 9px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  width: 100%;
}
.watch-channels__price {
  font-weight: 500;
  font-size: 24px;
  line-height: 114%;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.watch-channels__mouth {
  font-weight: 400;
  font-size: 16px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #fff;
}
.watch-channels__button {
  transition: all 300ms ease-in-out;
  border-radius: 10px;
  padding: 9px 32px;
  box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
  cursor: pointer;
  border: 1px solid #fff;
}
.watch-channels__item--white .watch-channels__name, .watch-channels__item--white .watch-channels__price, .watch-channels__item--white .watch-channels__mouth {
  color: #434b53;
}
.watch-channels__item--white .watch-channels__plashka {
  border: 2px solid #434b53;
  color: #434b53;
}
.watch-channels__item--white .watch-channels__button {
  background: #434b53;
  color: #fff;
  border: 1px solid #434b53;
}
.watch-channels__item {
  padding-bottom: 41px;
  padding-left: 27px;
  position: relative;
  height: auto!important;
  width: 309px !important;
}
.watch-channels__prices {
  margin-top: auto;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}
.watch-channels__populayr {
  position: absolute;
  right: -14px;
  top: -14px;
}
.watch-channels__wrapper {
  padding-top: 20px;
}
.watch-channels__row {
  margin-left: -30px!important;
}
.watch-channels__row.swiper {
  width: calc(100% + 54px)!important;
}
.watch-channels__button:hover {
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #ffffff00;
  color: #fff;
  border: 1px solid #fff;
}
.watch-channels__item--white .watch-channels__button:hover {
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #ffffff00;
  color: #434b53;
  border: 1px solid #434b53;
}
.watch-channels__name {
  font-weight: 700;
  font-size: 28px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.watch-channels__item--white .watch-channels__name {

  color: #434b53;
}
.watch-channels__text{
  font-weight: 500;
  font-size: 20px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #434b53;
  padding-left: 50px;
}
.watch-channels__text span {
  color: #ef341d;
  margin-top: -8px;
  position: absolute;
  margin-left: -10px;
}
@media (max-width: 1240px) {
  .watch-channels__row {
    padding-right: 24px !important;
  }
}
@media (max-width: 767px) {
  .watch-channels__name {
    font-size: 20px;
  }
  .watch-channels__item .watch-channels__infotmation {
    padding: 18px;
    width: 264px;
  }
  .watch-channels__item {

    width: 293px !important;
  }
  .watch-channels__populayr {
    right: -11px;
    top: -13px;
  }
  .watch-channels__title {
    padding-left: 0;
    align-items: start;
    gap: 10px;
  }
  .watch-channels__title img{
    max-width: 40px;
  }
  .watch-channels__text {
    font-size: 12px;
    padding-left: 10px;
    margin-top: -14px;
  }
  .watch-channels__text span {
    margin-top: -5px;
    margin-left: -8px;
  }
  .watch-channels__price{
    font-size: 22px;
    width: 100%;
    min-width: 70px;
  }
}
@media (max-width: 500px) {
  .watch-channels__text {
    max-width: 342px;
  }
}
.advantages__container {
  border-radius: 10px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  margin-top: 50px;
  padding: 30px 40px;
}
.advantages__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #fff;
}
.advantages__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #fff;
}
.advantages__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 15px;
  position: relative;
}
.advantages__item {
  border-radius: 10px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1), 0 7px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: relative;
  min-height: 175px;
}
.advantages__item--1 {
  background: #25B054;
  background-image: url(../img/advantages__item-1-1.jpg);
  background-position-x: right;
  background-repeat: no-repeat;
}
.advantages__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.advantages__item--2 {
  background: #1E9FC9;
  background-image: url(../img/advantages__item-2.jpg);
  background-position-x: right;
  background-repeat: no-repeat;
}
.advantages__item--3 {
  background: #EF341D;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
  background-image: url(../img/advantages__item-3.jpg);
  background-position-x: right;
  background-repeat: no-repeat;
}
.advantages__text span{
  display: block;
}
.advantages__all{
  display: none;
}
@media (max-width: 1100px) {
  .advantages__text span {
    display: inline;
  }
}
@media (max-width: 960px) {
  .advantages__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .advantages__item--3 {
    grid-row-start: 3;
    grid-row-end: 3;
    grid-column-start: 1;
  }
}
@media (max-width: 767px) {
  .advantages__container {
    padding: 11px 16px;
    margin-top: 40px;
  }
  .advantages__item {
    background-image: none;
    position: relative;
  }
  .advantages__name {
    font-size: 20px;
  }
  .advantages__text p {
    font-size: 15px;
  }
  .advantages--overflow {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .advantages__all{
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 9px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    display: block;
    margin-top: 15px;
  }
.advantages__none{
  display: none;
}
  .advantages__item:before {
    content: '';
    background-image: linear-gradient(180deg, rgba(36, 55, 45, 0) 0%, rgb(36 55 45 / 47%) 100%);
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 15px;
  }
  .advantages__name, .advantages--overflow, .advantages__all {
    position: relative;
  }
}
.algorithm__number{
  border-radius: 47px;
  padding: 4px 10px;
  width: 93px;
  height: 93px;
  background: #fff;
  font-weight: 400;
  font-size: 40px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.algorithm__line{
  border: 2px solid #25b054;
  width: 294px;
  height: 0px;
}
.algorithm_info{
  font-weight: 500;
  font-size: 20px;
  line-height: 114%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #434b53;
}
.algorithm_info a{
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.algorithm__number--mobile{
  display: none;
}
.algorithm__container {
  padding: 50px 40px 0;
}
.algorithm__numbers {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.algorithm__item:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 20px;
  max-width: 1120px;
  margin: auto;
}
.algorithm__row {
  padding-top: 20px;
}
.algorithm__advantages {
  max-width: 278px;
}
@media (max-width: 1200px) {
  .algorithm__numbers {
    display: none;
  }
  .algorithm__number--mobile {
    display: flex;
    margin: auto;
    margin-bottom: 20px;
  }
  .algorithm__item:last-child {
    align-items: baseline;
  }
  .algorithm__advantages {
    width: 33%;
    display: flex;
    flex-direction: column;
  }
  .algorithm_info {
    font-size: 15px;
  }
  .algorithm__number {
    border-radius: 47px;
    padding: 4px 10px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .algorithm__container {
    padding: 40px 16px 0;
  }
  .algorithm__item:last-child {
    padding-top: 0;
    flex-direction: column;
  }
  .algorithm__advantages {
    width: 100%;
    flex-direction: row;
    max-width: 100%;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }
  .algorithm__number {
    min-width: 60px;
    min-height: 60px;
    margin-bottom: 0;
    margin: 0;
  }
  .algorithm__row {
    padding-top: 0;
  }
  .algorithm__title {
    text-align: center;
  }
  .algorithm_info a {
    display: inline;
  }
}
@media (max-width: 500px) {
  .algorithm_info a {
    display: block;
  }
  .algorithm__advantages:nth-child(2) .algorithm_info {
    max-width: 204px;
    margin: auto;
  }
}

.star-rating{
  font-size: 0;
}
.star-rating__wrap{
  display: flex;
  font-size: 1rem;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 56px;
  padding-top: 20px;
}
.star-rating__wrap:after{
  content: "";
  display: table;
  clear: both;
}
.star-rating__ico{
  float: right;
  padding-left: 2px;
  cursor: pointer;
  color: #FFB300;
}
.star-rating__ico:last-child{
  padding-left: 0;
}
.star-rating__input{
  display: none;
}
.fa-star-o:before {
  content: "\f005";
  color:rgba(0, 0, 0, 0.13);
}
.star-rating__ico:hover:before,
.star-rating__ico:hover ~ .star-rating__ico:before,
.star-rating__input:checked ~ .star-rating__ico:before
{
  content: "\f005";
  background: linear-gradient(160deg, #efd028 0%, #f4b335 100%);
  -webkit-text-fill-color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}
.fa-lg {
  font-size: 80px;
}
.reviews__container {
  border-radius: 10px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  margin-top: 50px;
  padding: 30px 40px;
}
.reviews_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 143%;
  text-align: center;
  color: #2e363e;
  max-width: 783px;
  margin: auto;
  padding-bottom: 30px;
}
.reviews__button {
  border-radius: 10px;
  padding: 10px 38px;
  background: #ef341d;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #eef1f5;
  display: flex;
  margin: auto;
  margin-top: 38px;
  border: 1px solid rgb(239 52 29);
  transition: all 300ms ease-in-out;
}
.reviews__button:hover {
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #fff;
  color: #ef341d;
  border: 1px solid rgb(239 52 29);
}
.reviews__title {
  text-align: center;
}
@media (max-width: 680px) {

}
@media (max-width: 767px) {
  .reviews__container{
    padding: 11px 16px;
    margin-top: 40px;
  }
  .reviews_text {
    font-size: 15px;
    padding-bottom: 12px;
  }
  .reviews__title {
    padding-bottom: 12px;
  }
  .fa-lg {
    font-size: 43px;
  }

  .star-rating__wrap {
    display: flex;

    gap: 15px;
    padding-top: 12px;
  }
  .star-rating__wrap:after {
    content: "";
    display: none;
  }
  .reviews__button {
    margin-top: 20px;
    padding: 8px 18px;
  }
}
.documents__container {
  border-radius: 10px;
  margin-top: 50px;
  padding: 30px 40px;
  border: 2px solid #dedede;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
}
.documents__href {
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
}
.documents__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.documents__lists {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.documents__button {
  display: none;
}
.documents__close{
  display: none;
}
@media (max-width: 1024px) {
.documents__item:first-child{
  ow-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end:5;
}
  .documents__row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .documents__container{
    padding: 11px 16px;
    margin-top: 40px;
  }
  .documents__all {
    display: none;
  }
  .documents__button {
    display: flex;
    border-radius: 10px;
    padding: 9px 15px;
    background: #434b53;
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    color: #fff;
    justify-content: center;
    width: fit-content;
    margin: auto;
  }
  .documents__row {
    grid-template-columns: 1fr;
  }
  .documents__item:first-child {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 1;
    position: relative;
  }
  .documents__row {
    grid-template-columns: 1fr;
    width: 90%;
    margin: auto;
    border-radius: 10px;
    padding: 30px 16px;
    background: #f4f4f4;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .documents__close{
    display: block;
    position: absolute;
    top: -16px;
    right: 0;
  }
  .documents__all {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 20;
    background: rgba(48, 50, 58, 0.75);
  }
  .documents__all--active{
    display: block;
  }
}
.algorithm__line--red{
  border: 2px solid #EF341D;
  width: 271px;
}
.algorithm__row--two .algorithm__advantages {
  max-width: 296px;
}
.algorithm__row--two .algorithm__advantages:nth-child(2){
  margin-left: -27px;
}
.algorithm__row--two .algorithm__item:last-child {
  gap: 152px;
  justify-content: normal;
}
@media (max-width: 1200px) {

  .algorithm__row--two .algorithm__item:last-child {
    gap: 20px;
    justify-content: space-between;
  }
  .algorithm__row--two .algorithm__advantages:nth-child(2){
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .algorithm__row--two .algorithm__item:last-child {
    gap: 20px;
    justify-content: normal;
  }
  .algorithm__row--two .algorithm__advantages {
    max-width: 100%;
  }
  .algorithm__row--two .algorithm_info {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .algorithm__row--two .algorithm_info {
    width: 100%;
    text-align: center;
  }
  .algorithm_info strong {
    font-weight: 500;
    display: block;
  }
  .algorithm__row--one .algorithm__advantages:first-child .algorithm_info{
    max-width: 200px;
    margin: auto;
  }
}
.feedback {
  background: #434B53;
  margin-top: 124px;
  padding: 90px 0 150px;
}
.feedback__title {
  color: #fff;
}
.feedback__texts {
  font-weight: 500;
  font-size: 20px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #fff;
  padding-bottom: 30px;
}
.feedback__texts span{
  display: block;
}
.feedback__blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#feedback__texts {
  border-radius: 10px;
  padding: 9px 27px;
  height: 124px;
  max-width: 701px;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
  resize: vertical;
}
.feedback__text {
  border-radius: 10px;
  padding: 9px 27px;
  height: 43px;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
}
.feedback__text::placeholder{
  color: #434b53;
}
.feedback__block {
  display: flex;
  gap: 21px;
}
.feedback__button {
  background: #ef341d;
  color: #fff;
  border: 1px solid rgb(239 52 29);
  min-width: 198px;
}
.feedback__button:hover{
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #fff;
  color: #ef341d;
  border: 1px solid rgb(239 52 29);
}
.feedback__agree {
  font-weight: 400;
  font-size: 11px;
  line-height: 130%;
  color: #eee;
  display: flex;
  padding-top: 16px;
  gap: 12px;
}
.feedback__agree a{
  display: inline;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #eee;
}
.feedback__row {
  display: flex;
  max-width: 1101px;
  margin: auto;
  justify-content: space-between;
  align-items: end;
}
.feedback__form--success {
  display: none;
}
.feedback__contact {
  font-weight: 500;
  font-size: 20px;
  line-height: 114%;
  letter-spacing: -0.01em;
  text-align: right;
  color: #fff;
}
.feedback__contact a{
  font-weight: 700;
  color: #fff;
}
.feedback__informations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 35px;
}
.feedback__logo {
  padding-top: 35px;
}
.feedback__item--info:before {
  border: 1px solid #fff;
  height: 360px;
  width: 0px;
  content: '';
  position: absolute;
  top: -151px;
  left: -70px;
}
.feedback__item--info {
  position: relative;
}
input[type="checkbox"]:checked {
  accent-color: #4a94ff;
}
@media (max-width: 1100px) {
  .feedback__item--info:before{
    display: none;
  }
  .feedback {
    background: #434B53;
    margin-top: 124px;
    padding: 50px 0;
  }
  .feedback__informations {
    padding: 0;
  }
  .feedback__informations {
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .feedback__logo {
    margin: auto;
  }
  .feedback__row {
    flex-direction: column;
    align-items: baseline;
  }
}

@media (max-width: 767px) {
  .feedback {
    background: #434b5300;
    margin-top: 40px;
    padding: 0;
  }
  .feedback__item {
    background: #434B53;
    border-radius: 10px;
    padding: 11px 16px;
  }
  .feedback__row {
    gap: 40px;
    align-items: normal;
  }
  .feedback__informations {
    gap: 30px;
  }
  .feedback__contact {
    font-size: 24px;
  }
  .feedback__contact a{
    font-size: 20px;
  }
  .feedback__logo {
    max-width: 160px;
    margin: 0;
    padding: 0;
  }
  .feedback {
    margin-bottom: 40px;
  }
  .feedback__block {
    flex-direction: column;
  }
  .feedback__button {
    width: 100%;
  }
  .feedback__texts {
    font-size: 15px;
    padding-bottom: 12px;
  }
  .feedback__blocks {
    gap: 12px;
  }
  .feedback__block {
    gap: 12px;
  }
}
@media (max-width: 500px) {
  .feedback__texts span {
    max-width: 280px;
  }
}
.plug__forms {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
}


.plug__text, input {
  border-radius: 10px;
  padding: 9px 27px;
  background: #f4f4f4;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
  width: 100%;
}

.plug__agree input {
  width: auto;
}

.plug__text::placeholder, .js-AddressField::placeholder {
  color: #434b53;
}
.plug__block {
  display: flex;
  gap: 38px;
}
.js-AddressField {
  border-radius: 10px;
  padding: 9px 27px;
  background: #f4f4f4;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
  width: 100%;
}
.plug__agree {
  font-weight: 400;
  font-size: 11px;
  line-height: 130%;
  color: #a7a8a9;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.plug__agree a{
  color: #a7a8a9;
}
.plug__button {
  background: #ef341d;
  color: #f4f4f4;
  min-width: 198px;
  border: 1px solid rgb(239 52 29);
}
.plug__button:hover{
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #fff;
  color: #ef341d;
  border: 1px solid rgb(239 52 29);
}
.plug__blocks:last-child {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
input#agree-2 {
  width: 12px;
  margin-top: 2px;
}
.plug__agree label {
  font-weight: 400;
  font-size: 11px;
  line-height: 130%;
  color: #a7a8a9;
}
.plug__agree label a{
  display: inline;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}


.u-AhunterSuggestions
{
  border: 1px solid #AAAAAA;
  background: #f4f4f4;
  overflow: auto;
  border-radius: 2px;
}
.u-AhunterSuggestion
{
  padding: 5px;
  white-space: nowrap;
  overflow: hidden;
  color: #373737;
}
.u-AhunterEmptySuggestion
{
  padding: 5px;
  font-style: italic;
  color: #373737;
}
.u-AhunterSelectedSuggestion
{
  background: #c3c0c0;
  cursor: pointer;
}
.plug-success__title{
  color: #25b054;
}
.plug-success__text{
  font-weight: 300;
  font-size: 20px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: #434b53;
}
.plug-notsuccess__title{
  color: #ef341d;
}
.plug-notsuccess__text{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.plug-success__text:last-child{
  padding-bottom: 30px;
}
.plug-notsuccess__button {
  border-radius: 10px;
  padding: 9px 42px;
  background: #434b53;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
  width: auto;
  transition: all 300ms ease-in-out;
  border: 1px solid #434b53;
}
.plug-notsuccess__button:hover{
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #ffffff00;
  color: #434b53;
  border: 1px solid #434b53;
}
@media (max-width: 767px) {
  .plug-success__text {
    font-size: 15px;
  }
  .plug-notsuccess__button {
    padding: 9px 20px;
    width: 100%;
  }
  .plug__block {
    flex-direction: column;
    gap: 10px;
  }

  .popup__content {
    padding:  20px;
  }
  .popup__body{
    padding: 20px 16px
  }
  .plug__forms {
    gap: 10px;
    max-width: 100%;
  }
  .plug__blocks:last-child {
    gap: 10px;
    flex-direction: column;
  }
  .plug__button {
    width: 100%;
  }
  .close-popup {
    top: 20px;
    right: 16px;
  }
  .plug__agree {
    align-items: center;
  }
  .plug__agree label {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .popup__content {
    padding: 40px 16px 20px;
  }
}
.balance__text {
  max-width: 434px;
}
.balance__button {
  padding: 9px 27px;
  background: #ef341d;
  color: #f4f4f4;
  border: 1px solid rgb(239 52 29);
}
.balance__button:hover{
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #fff;
  color: #ef341d;
  border: 1px solid rgb(239 52 29);
}
.balance__price{
  font-weight: 700;
  font-size: 32px;
  line-height: 114%;
  letter-spacing: -0.01em;
  display: flex;
  gap: 5px;
}
.balance__price span{
  font-weight: 400;
}
.balance__price--green{
  color: #25b054
}
.balance__price--red{
  color: #ef341d;
}
.balance_error {
  color: #373737;
}

.balance__button-add{
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #ef341d;
  border: 1px solid #ef341d;
  border-radius: 10px;
  padding: 9px 27px;
  width: 198px;
  height: 42px;
}
.balance__button-add:hover{
  background: #ef341d;
  color: #f4f4f4;
}
.balance__item {
  display: flex;
  gap: 30px;
}
.balance .popup__content, .balance-look .popup__content {
  max-width: 664px;
}
.balance__forms {
  max-width: 100%;
}
.balance__buttons {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .balance__price {
    font-size: 20px;
  }
  .balance__item {
    align-items: center;
  }
  .balance__buttons {
    flex-direction: column;
    gap: 20px;
  }
  .balance__button, .balance__button-add {
    width: 100%;
  }
}
.popup__content--kanals {
  max-width: 1200px;
}
.kanals__title{
  max-width: 584px;
}
.kanals__name {
  font-weight: 500;
  font-size: 12px;
  line-height: 114%;
  letter-spacing: -0.02em;
  color: #434b53;
  max-width: 131px;
}
.kanals__item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.kanals__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1024px) {
  .kanals__row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
  }
}
@media (max-width: 767px) {
  .kanals__name {
    display: none;
  }
  .kanals__row {

    gap: 15px;
    justify-content: center;
  }
}
.cookie {
  display: none;
  position: fixed;
  max-width: 100%;
  z-index: 3;
  bottom: 40px;
  right: 40px;
}
.cookie.active {
  display: flex;
}
.cookie__contanier {
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  max-width: 995px;
  flex-wrap: wrap;
  display: flex;
  gap: 20px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
}
.cookie__p {
  font-weight: 300;
  font-size: 15px;
  line-height: 143%;
  color: #434b53;
}
.cookie__p a{
  display: inline;
}
.cookie__button {
  border-radius: 10px;
  padding: 9px 27px;
  min-width: 198px;
  height: 42px;
  background: #ef341d;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #f4f4f4;
  border: 1px solid rgb(239 52 29);
}
.cookie__button:hover{
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #fff;
  color: #ef341d;
  border: 1px solid rgb(239 52 29);
}
.cookie__p span {
  display: block;
}
#cookie-necessary {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .cookie__contanier {
    align-items: end;
    gap: 10px;
  }
  .cookie {
    right: 20px;
    left: 20px;
  }
  .cookie__p {
    font-size: 12px;
  }
  .cookie__button {
    width: 100%;
    font-size: 13px;
  }
}
.popup__content--estimation{
  max-width: 914px;
}
.popup__content--estimation .feedback__text{
  background: #f4f4f4;
}
.estimation__text{
  font-weight: 400;
  font-size: 20px;
  line-height: 143%;
  text-align: center;
  color: #2e363e;
  padding-bottom: 30px;
}
.estimation__text span{
  display: block;
  text-align: center;
}
.estimation__title {
  text-align: center;
}
.estimation__forms{
  max-width: 701px;
  margin: auto;
}
.feedback__agree input {
  width: auto;
}
.estimation__forms .feedback__agree, .estimation__forms .feedback__agree a{

  color: #a7a8a9;
}
.estimation__name {
  font-weight: 400;
  font-size: 20px;
  line-height: 143%;
  text-align: center;
  color: #2e363e;
}
.estimation__hrefs {
  display: flex;
  gap: 60px;
  justify-content: center;
}
.estimation__href {
  display: flex;
  flex-direction: column;
}
a.estimation__href img {
  width: 164px;
}
@media (max-width: 767px) {
  .estimation__text {
    font-size: 15px;
    padding-bottom: 12px;
  }
  .estimation__href img {
    max-width: 104px;
    width: 100%;
  }
  .estimation__name {
    font-size: 15px;
  }
}
@media (max-width: 680px) {

}
@media (max-width: 680px) {

}
@media (max-width: 680px) {

}
@media (max-width: 680px) {

}

.feedback__button.dont-click {
  pointer-events: none;
  opacity: 0.5;
}

.reviews__button.dont-click {
  pointer-events: none;
  opacity: 0.5;
}


.site-login {
  color: rgb(55, 55, 55);
  margin-top: 30px;
}

.site-login .row {
  margin-top: 30px;
}

.site-login input {
  border-radius: 10px;
  padding: 9px 9px;
  background: #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
  color: #434b53;
  width: 100%;
  margin-top: 7px;
}


.site-login .mb-3 {
  margin-bottom: 15px;
}

.site-login .site-login_content {
  margin: 0 30px;
}

.site-login .feedback__button {
  margin-top: 30px;
}



.products .product__category {
  text-transform: uppercase;
}

.city--subtitle--modal {
  text-align: center;
  padding-bottom: 0;
}

.city__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.city__button {
  padding: 9px 27px;
  background: #ef341d;
  color: #f4f4f4;
  border: 1px solid rgb(239 52 29);
}
.city__button:hover{
  box-shadow: 0 5px 14px 0 rgb(239 52 29 / 25%);
  background: #fff;
  color: #ef341d;
  border: 1px solid rgb(239 52 29);
}

.content-politics {
  color: #373737;
}

@media (max-width: 767px) {
  .content-politics .content__text {
    font-size: 14px;
    line-height: 130%;
  }

  .content-politics .title {
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    padding-bottom: 47px;
  }
}

.content-politics .content__text {
  color: #373737;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-politics .title {
  color: #373737;
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  padding-bottom: 33px;
}

.content-politics .table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #373737;
  border-collapse: collapse;
}

.content-politics .table th {
  font-weight: bold;
  padding: 5px;
  border: 1px solid #373737;
}

.content-politics .table td {
  border: 1px solid #373737;
  padding: 5px;
}



@media (max-width: 767px) {
  /*.advantages__row .advantages_no_background {*/
  /*  background-image:none !important;*/
  /*  background-size: cover;*/
  /*}*/

  .advantages__row .advantages__item {
    background-position: 100% 100%;
  }
}

.site-error  {
  color: #373737;
  font-size: 18px;
}

.content-error {
  text-align: center;
}

.site-error .title {
  color: #373737;
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  padding-bottom: 33px;
}

.site-error  a{
  text-decoration: underline;
  font-size: 18px;
  opacity: 0.8;
  line-height: 2.0;
}