* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font: 400 14px 'Montserrat', sans-serif;
    color: #fff;
}

a {
    cursor: pointer;
}

h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    color: #202124;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 130px 0 90px;
    margin: 0 auto;
}

.is-mobile {
    display: none;
}

.underline {
    position: relative;
    cursor: pointer;
}

.underline:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(153, 9, 227, .5);
    transition: .2s ease-in-out;
}

.underline:hover:after {
    background-color: transparent;
}

.overflow-hidden {
    overflow: hidden;
}

#cookie-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 28px;
    z-index: 5;
}

#cookie-box p {
    max-width: calc(100% - 118px - 25px);
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000;
}

#cookie-box p a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: rgba(153, 9, 227, .5);
    transition: background-color .2s ease-in-out;
    cursor: pointer;
}

#cookie-box p a:hover {
    text-decoration-color: transparent;
}

.cookie-box__button {
    width: 118px;
    height: 36px;
    background-color: #9909e3;
    border-radius: 3px;
    line-height: 36px;
    text-align: center;
    margin-left: 25px;
    cursor: pointer;
    transition: background-color .2s ease-in-out;
}

.cookie-box__button:hover {
    background-color: #8101c2;
}

.popup-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(41, 21, 54, 0.9);
    overflow: auto;
    z-index: 5;
    transition: opacity .25s ease-in-out;
    opacity: 0;
    display: none;
}

.popup-container {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 466px;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 60px 52px;
}

.popup-container h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.02em;
    color: #202124;
}

.popup-container hr {
    width: 100%;
    height: 1px;
    background-color: #e7e8eb;
    margin: 35px 0 30px;
    border: none;
    outline: none;
}

.popup-container > p,
.popup-container ol{
    font-size: 15px;
    line-height: 22px;
    color: #000;
}

ol {
    list-style: none;
    counter-reset: li;
    position: relative;
}

ol li {
    padding-left: 40px;
    margin: 10px 0;
    position: relative;
}

ol li:before {
    position: absolute;
    text-align: right;
    right: calc(100% - 30px);
    counter-increment: li;
    content: counters(li,".") ". ";
}

.call-order-popup__form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    position: relative;
}

.call-order-popup__form:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #9909e3;
    transition: width 1.5s ease-in-out;
}

.call-order-popup__form.check-form__loading:after {
    width: 100%;
}

.input-block {
    position: relative;
}

.input-block input {
    width: 100%;
    height: 52px;
    background-color: #fff;
    border-radius: 3px;
    padding: 20px 13px 5px 13px;
    color: #000;
    font-size: 16px;
    border: 1px solid #e4eaec;
    outline: none;
}

.input-block label {
    position: absolute;
    color: #979797;
    font-size: 13px;
    line-height: 13px;
    top: calc((100% - 13px) / 2);
    left: 13px;
    transition: top .2s ease-in-out;
}

.input-block input:focus ~ label, .input-block input:valid ~ label {
    font-weight: 500;
    font-size: 11px;
    line-height: 11px;
    color: #9909e3;
    top: 10px;
}

.call-order-popup__form-call {
    background-color: #9909e3;
    border-radius: 3px;
    height: 52px;
    width: 100%;
    line-height: 52px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color .2s ease-in-out;
}

.call-order-popup__form-call:hover {
    background-color: #8101c2;
}

.popup-close {
    width: 55px;
    height: 55px;
    background-color: #9909e3;
    border-radius: 3px;
    transition: background-color .2s ease-in-out;
    cursor: pointer;
    position: absolute;
    left: -26px;
    top: 105px;
}

.popup-close:hover {
    background-color: #8101c2;
}

.popup-close span {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 2px;
    background-color: #fff;
}

.main-menu ul {
    display: flex;
    gap: 20px;
}
.main-menu ul a {
    color: #104167;
    font-size: 16px;
}
.popup-close span:first-child {
    top: 15px;
    left: 12px;
    transform: rotate(45deg);
}

.popup-close span:last-child {
    top: -2px;
    left: 12px;
    transform: rotate(-45deg);
}

.dropdown-menu__burger {
    position: relative;
    width: 100%;
    height: 9px;
    cursor: pointer;
    z-index: 1;
}

.dropdown-menu__close {
    position: absolute;
    right: 30px;
    top: 15px;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.dropdown-menu__burger.dropdown-menu__burger_open {
    height: 100%;
}

.dropdown-menu__burger span,
.dropdown-menu__close span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #9909e3;
    left: 0;
    transition: .2s linear;
}

.dropdown-menu__burger span:first-child {
    top: -1px;
}

.dropdown-menu__burger.dropdown-menu__burger_open span:first-child,
.dropdown-menu__close span:first-child {
    top: 17px;
    transform: rotate(45deg);
}

.dropdown-menu__burger span:last-child {
    bottom: 0;
}

.dropdown-menu__burger.dropdown-menu__burger_open span:last-child,
.dropdown-menu__close span:last-child {
    bottom: 17px;
    transform: rotate(-45deg);
}

.dropdown-menu__wrapper {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(41, 21, 54, 0.9);
    overflow: auto;
    z-index: 5;
    transition: opacity .25s ease-in-out;
    opacity: 0;
    display: none;
}

.dropdown-menu__list {
    background-color: #eff1f2;
    max-width: 400px;
    width: 100vw;
    min-height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    padding: 60px 30px 30px;
}

.dropdown-menu__list > .lang-switcher {
    height: 36px;
    display: none;
    align-items: center;
    margin: 0 36px 20px 0;
}

.dropdown-menu__list .lang-switcher__item {
    color: #b5b7be;
}

.dropdown-menu__list .lang-switcher_active {
    color: #351b46;
}

.dropdown-menu__list ul li {
    margin-bottom: 20px;
}

.dropdown-menu__list ul li:last-child {
    margin: 0;
}

.dropdown-menu__list ul li .menu__link {
    align-items: baseline;
    font-size: 20px;
    line-height: 24px;
    color: #202124;
    font-weight: 400;
}

.dropdown-menu__list ul li .menu__link:hover .underline:after {
    background-color: transparent;
}

.dropdown-menu__list .social {
    margin: 40px 0;
}

.dropdown-menu__list p {
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #202124;
}

.dropdown-menu__list p a {
    display: inline-block;
    font-size: 22px;
    line-height: 26px;
    color: #202124;
    margin-top: 3px;
}

.dropdown-menu__list hr {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    outline: none;
    border: none;
    margin: 17px 0;
}

.dropdown-menu__list .call-order {
    border: 0;
    height: auto;
    width: auto;
    display: inline-block;
    color: #202124;
    margin: 6px 0 25px 0;
}

.animation-open {
    display: block;
    animation: opacity-on .25s ease-in-out;
    opacity: 1;
}

@keyframes opacity-on {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animation-close {
    animation: opacity-off .25s ease-in-out;
    opacity: 1;
}

@keyframes opacity-off {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 68px;
    padding: 15px 30px 15px 25px;
    background-color: #fff;
    z-index: 2;
}

.header__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logotype {
    max-width: 144px;
    margin-right: 50px;
}

.logotype img {
    max-width: 45px;
}


.phone {
    
}

.phone__link {
    display: flex;
    align-items: center;
}

.phone__icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url("../img/icon__phone.svg") no-repeat center;
    margin-right: 8px;
}

.phone__text {
    display: inline-block;
  font-size: 22px;
  line-height: 22px;
  color: #ffd66d;
  vertical-align: top;
  font-weight: bold;
}

.call-order {
    width: 174px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 60px;
}

.call-order:hover .underline:after {
    background-color: transparent;
}

.lang-switcher {
    display: flex;
    margin: auto 0;
}

.lang-switcher__item {
    color: #685376;
    font-size: 14px;
    margin-right: 15px;
    cursor: pointer;
}

.lang-switcher__item.lang-switcher_active.underline:after {
    content: none;
}

.lang-switcher__item:last-child {
    margin: 0;
}

.lang-switcher_active {
    color: #fff;
    pointer-events: none;
}

.dropdown-menu {
    display: none;
}

main {
    overflow-x: hidden;
}

section {
    max-width: 1920px;
    margin: 0 auto;
}

.welcome {
    max-width: 100vw;
    padding: 125px 70px 65px;
    /*background-color: #351b46;*/
    /*background-color: #1F2A5B;*/
    background-color: #010d57;
    display: flex;
}

.welcome__container {
    width: 100%;
    max-width: 1145px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.welcome__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.welcome__content {
    max-width: 575px;
}

.welcome__content h1 {
    color: #ffd66d;
    font-size: 57px;
    line-height: 67px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.title-price {
    display: inline-block;
    background-color: #ffd66d;
    color: #010d57;
    border-radius: 3px;
    padding: 0 5px;
}

.break-line {
    display: block;
}

.welcome__content > p {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 90px;
}

.check-form {
    max-width: 540px;
}

.check-form__top {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 17px;
}

.check-form__top p:last-child {
    display: none;
}

.check-form__step-one {
    display: block;
    position: relative;
}

.check-form__step-one:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #9909e3;
    transition: width 1.5s ease-in-out;
}

.check-form__step-one.check-form__loading:after {
    width: 100%;
}

.check-form__step-two {
    display: none;
}

.check-form__block {
    position: relative;
}

.check-form__block input {
    width: 100%;
    height: 55px;
    background-color: #fff;
    border-radius: 3px;
    padding: 22px 190px 0 13px;
    color: #000;
    font-size: 16px;
    border: 0;
    outline: none;
}

.check-form__block label {
    position: absolute;
    color: #7e8082;
    font-size: 16px;
    line-height: 16px;
    top: calc((100% - 16px) / 2);
    left: 13px;
    transition: top .2s ease-in-out;
}

.check-form__block input:focus ~ label,
.check-form__block input:valid ~ label {
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    color: #9909e3;
    top: 10px;
}

.check-form__step-one.check-form__loading .check-form__block input:valid ~ label,
.check-form__step-one.check-form__loading .check-form__block input {
    color: #cdcdcd !important;
}

input.error ~ label {
    color: #ff3939;
}

.check-form__button-check,
.check-form__button {
    position: absolute;
    right: -1px;
    top: 0;
    width: 177px;
    height: 55px;
    background: #9909e3 url('../img/icon__search.svg') no-repeat center right;
    border-radius: 3px;
    padding: 0 55px 0 0;
    line-height: 55px;
    text-align: center;
    transition: background .2s ease-in-out;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    font-size: 14px;
}

.check-form__button-check span {
    display: none;
}

.check-form__button-check:hover,
.check-form__button:hover {
    background: #8101c2 url("../img/icon__search.svg") no-repeat center right;
}

.check-form__step-one.check-form__loading .check-form__button-check {
    background: #8101c2;
    color: transparent;
    user-select: none;
    pointer-events: none;
    cursor: not-allowed;
}

.check-form__step-one.check-form__loading .check-form__button-check:hover {
    background: #8101c2;
}

.check-form__step-one.check-form__loading .check-form__button-check:after {
    content: '';
    position: absolute;
    width: 29px;
    height: 29px;
    top: 13px;
    right: 13px;
    background: #8002c2 url('../img/icon__loader.svg') no-repeat center right;
    animation: rotate 3s infinite ease-in-out;
}

.check-form__error {
    display: none;
    font-size: 12px;
    line-height: 13px;
    color: #ff3939;
    margin-top: 9px;
    text-align: left;
}

.check-form__error_active {
    display: block;
}

.check-form__checkbox {
    width: 100%;
    height: 23px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

.check-form__checkbox input {
    position: absolute;
    width: 23px;
    height: 23px;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.check-form__checkbox-icon {
    width: 23px;
    height: 23px;
    border: 1px solid #9909e3;
    border-radius: 2px;
    background: transparent;
}

.check-form__checkbox input:checked + .check-form__checkbox-icon {
    background: #9909e3 url("../img/icon__checkbox.svg") no-repeat center;
}

.check-form__checkbox-icon_error {
    border-color: #ff3939;
}

.check-form__checkbox label {
    font-size: 12px;
    line-height: 13px;
    margin-left: 10px;
    transition: .2s ease-in-out;
}

.check-form__checkbox label a {
    color: #fff;
    text-decoration: underline;
    transition: .2s ease-in-out;
}

.check-form__checkbox-label_error,
.check-form__checkbox-label_error a {
    color: #ff3939 !important;
}

.check-form__checkbox label a:hover {
    text-decoration-color: transparent;
}

.check-form__loader {
    display: none;
    width: 100%;
    height: 55px;
    background-color: #9909e3;
    border-radius: 3px;
    padding: 13px;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.check-form__loader.check-form__loader_active {
    display: flex;
}

.check-form__loader:after {
    position: relative;
    content: '';
    width: 29px;
    height: 29px;
    background: url("../img/icon__loader.svg") no-repeat center;
    animation: rotate 3s infinite ease-in-out;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.welcome__image {
    max-width: 640px;
    margin-top: 14px;
}

.welcome__image img {
    max-width: 100%;
}

.welcome__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto 0 0 0;
    position: relative;
}

.welcome__bottom .phone {
    display: none;
}

.rating {
    max-width: 380px;
    line-height: 21px;
}

.rating__icon {
    display: inline-block;
    width: 101px;
    height: 17px;
    background: url("../img/icon__rating.svg") no-repeat center;
    margin-right: 10px;
    vertical-align: text-top;
}

.scroll-down {
    display: block;
    position: absolute;
    left: calc((100% - 18px) / 2);
    width: 18px;
    height: 41px;
    background: url("../img/icon__scroll-down.svg") no-repeat center;
}

.stock {
    text-align: right;
}

.stock a {
    color: #b547ed;
}

.advantage {
    padding: 100px 70px 40px;
}

.advantage__list {
    max-width: 1145px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.advantage__list li {
    max-width: 510px;
    width: calc((100% - 20px) / 2);
    display: flex;
    margin: 0 20px 60px 0;
}

.advantage__list li:nth-child(2n) {
    margin: 0 0 60px auto;
}

.advantage__image {
    width: 80px;
    height: 80px;
    border: 2px solid #e8edf0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grey-block {
    background-color: #7e8082;
}

.advantage__image img {
    max-width: 50%;
    max-height: 50%;
}

.advantage__text {
    width: calc(100% - 80px - 16px);
    color: #000;
    margin-left: 16px;
}

.advantage__text h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
}

.advantage__text p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 16px;
}

.house-rates {
    padding: 0 70px 70px;
    background-color: #eff1f2;
}

.house-rates__list {
    max-width: 1145px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.house-rates__item {
    max-width: 270px;
    width: calc((100% - 60px) / 4);
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #f4f4f4;
    padding: 30px 18px;
    margin-bottom: 20px;
}

.house-rates__item_hit {
    position: relative;
    border: 2px solid #a7d365;
    box-shadow: 0 10px 25px rgba(53, 27, 70, 0.1);
}

.house-rates__item_hit .hit__box {
    position: absolute;
    right: -12px;
    top: 31px;
    min-width: 47px;
    height: 19px;
    background-color: #010d57;
    border-radius: 3px 3px 0 0;
    font-weight: 500;
    font-size: 10px;
    line-height: 19px;
    color: #fff;
    text-align: center;
}

.house-rates__item_hit .hit__box:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #351b46 transparent transparent transparent;
}

.house-rates__item h3 {
    font-weight: 500;
    font-size: 18px;
    color: #202124;
    margin-bottom: 20px;
}

.house-rates__setting {
    position: relative;
    padding: 21px 0;
    margin: 0 4px 25px;
    border-top: 1px solid #e7e8eb;
    border-bottom: 1px solid #e7e8eb;
}

.house-rates__setting > div {
    display: flex;
    margin-bottom: 13px;
}

.house-rates__setting > div:last-child {
    margin: 0;
}

.house-rates__icon {
    width: 31px;
    display: inline-block;
    margin-right: 13px;
}

.house-rates__icon_internet {
    background: url("../img/icon__rates-internet.svg") no-repeat center;
}

.house-rates__icon_television {
    background: url("../img/icon__rates-television.svg") no-repeat center;
}

.house-rates__text {
    color: #202124;
    line-height: 18px;
    font-size: 14px;
}

.house-rates__text p:first-child {
    font-weight: 700;
}

.house-rates__info {
    position: absolute;
    top: 25px;
    right: 0;
}

.house-rates__info-icon {
    width: 23px;
    height: 23px;
    background: rgba(154, 167, 183, 0.18) url("../img/icon__info.svg") no-repeat center;
    border-radius: 3px;
    cursor: pointer;
}

.house-rates__info-text {
    width: 262px;
    position: absolute;
    left: -120px;
    bottom: 35px;
    padding: 12px;
    background-color: #3c3e51;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease-in-out;
    z-index: 1;
    border-radius: 5px;
}

.house-rates__info-text:after {
    content: '';
    position: absolute;
    left: calc((100% - 16px) / 2);
    bottom: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 8px 0 8px;
    border-color: #3c3e51 transparent transparent transparent;
}

.house-rates__info:hover .house-rates__info-text {
    opacity: 1;
    pointer-events: auto;
}

.house-rates__info-text p {
    margin-bottom: 15px;
}

.house-rates__info-text p:last-child {
    margin: 0;
}

.house-rates__price {
    margin: 0 4px 13px;
}

.house-rates__price-old {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    height: 23px;
}

.house-rates__price-old .house-rates__info {
    top: 0;
}

.house-rates__stock-price {
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #aaa;
}

.house-rates__stock-price:after {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    height: 1px;
    background-color: #eb3323;
    transform: rotate(-20deg);
}

.house-rates__stock {
    position: relative;
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    color: #202124;
    background-color: #ffd66d;
    padding: 2px 7px 2px 2px;
    border-radius: 0 3px 3px 0;
    margin-left: 20px;
}

.house-rates__stock:before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 12px 9px 0;
    border-color: transparent #ffd66d transparent transparent;
}

.house-rates__price-new {
    display: flex;
    align-items: center;
}

.house-rates__price-new span {
    font-weight: 500;
    font-size: 46px;
    line-height: 56px;
    color: #202124;
    margin-right: 7px;
}

.house-rates__price-new div {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #585d67;
}

.house-rates__price-new div hr {
    width: 100%;
    height: 1px;
    background-color: #d0d1d3;
    outline: none;
    border: none;
}

.house-rates__button {
    display: block;
    height: 40px;
    background-color: #010d57;
    border-radius: 3px;
    font-weight: 500;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    transition: .2s ease-in-out;
    margin: 0 4px;
}

.house-rates__button:hover {
    background-color: #8101c2;
}

.house-rates > p {
    font-size: 15px;
    line-height: 20px;
    color: #202124;
    text-align: center;
    margin-top: 35px;
}

.warranty {
    padding: 0 70px;
}

.warranty__list {
    max-width: 1145px;
    margin: 0 auto;
}

.warranty__list li {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.warranty__list li:last-child {
    margin: 0;
}

.warranty__image {
    width: 559px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.warranty__image img {
    max-width: 100%;
}

.warranty__list li:nth-child(2n) .warranty__image {
    order: 2;
    margin-right: 0;
    margin-left: 25px;
}

.warranty__text {
    max-width: 480px;
    color: #202124;
}

.warranty__list li:nth-child(2n) .warranty__text {
    order: 1;
    margin: 0 auto 0 0;
}

.warranty__text h3 {
    font-weight: 500;
    font-size: 46px;
    line-height: 52px;
    letter-spacing: -0.02em;
}

.warranty__text p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 20px;
    color: #000;
}

.warranty__text h3 span {
    display: block;
}

.advantage-hd {
    padding: 0 70px 120px;
    background-color: #eff1f2;
}

.advantage-hd__list {
    max-width: 1145px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.advantage-hd__list li {
    width: calc(100% / 4);
    margin-bottom: 70px;
    padding-left: 18px;
    padding-right: 30px;
    border-left: 2px solid #dbe4e9;
    color: #000;
}

.advantage-hd__list li:nth-child(4n + 1) {
    padding-left: 0;
    border-left: 0;
}

.advantage-hd__list li:nth-child(4n) {
    padding-right: 0;
}

.advantage-hd__image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 5px;
}

.advantage-hd__image img {
    max-width: 50%;
    max-height: 50%;
}

.advantage-hd__list li h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    margin-top: 30px;
}

.advantage-hd__list li p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
}

.check-coverage {
    padding: 100px 70px 0;
}

.check-coverage__container {
    max-width: 1145px;
    margin: 0 auto;
    padding: 0 28px 80px;
    background: #351b46;
    border-radius: 5px;
}

.check-coverage h2 {
    color: #ffd66d;
    padding-bottom: 30px;
}

.check-coverage__container > p:nth-child(2) {
    max-width: 492px;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    margin: 0 auto 30px;
}

.check-coverage__container .check-form {
    max-width: 590px;
    margin: 0 auto 40px;
}

.check-coverage__container .check-form__top {
    align-items: center;
}

.mobile-550 {
    display: none;
}

.check-coverage .rating {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-coverage .rating__icon {
    margin-right: 16px;
}

.faq {
    padding: 0 70px 100px;
    background-color: #EFF1F2;
}

.faq dl {
    max-width: 1145px;
    margin: 0 auto;
    color: #000;
}

.faq dl dt {
    display: inline-block;
    position: relative;
    margin-left: 35px;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    cursor: pointer;
    margin-top: 30px;
    transition: .2s ease-in-out;
}

.faq dl dt span {
    border-bottom: 1px solid #9909e3;
    transition: .2s ease-in-out;
}

.faq dl dt:hover span {
    border-color: transparent;
}

.faq dl dt:first-child {
    margin: 0 0 0 35px;
}

.faq dl dt:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: calc((100% - 20px) / 2);
    left: -35px;
    background: url("../img/icon__plus.svg") no-repeat center;
}

.faq dl dt.active:before {
    background: url("../img/icon__minus.svg") no-repeat center;
}

.faq dl dd {
    font-size: 15px;
    line-height: 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-top: 15px;
    padding-left: 35px;
}

.about {
    padding: 0 70px 100px;
}

.about h2 {
    max-width: 1145px;
}

.about__list {
    display: flex;
    justify-content: space-between;
}

.about__list li {
    width: calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000;
}

.about__image {
    width: 135px;
    height: 135px;
}

.about__image img {
    max-width: 100%;
}

.about__list li h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    margin-top: 30px;
}

.about__list li p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
}

.thanks-page {
    height: calc(100vh - 70px);
    padding: 170px 70px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #202124;
}

.thanks-page h1 {
    font-size: 70px;
    line-height: 55px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 45px;
}

.thanks-page h3 {
    max-width: 460px;
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 45px;
    font-weight: 400;
}

.thanks-page p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 10px;
}

.thanks-page > .phone {
    display: block;
    margin: 0 auto;
}

.thanks-page .phone__text {
    color: #000;
}

.thanks-page__link {
    font-size: 18px;
    line-height: 27px;
    color: #000;
    margin: auto 0 0 0;
}

.channel-content {
    padding-top: 70px;
}

.tv-channel {
    padding: 0 70px 90px;
    color: #202124;
}

.tv-channel__menu {
    margin-bottom: 25px;
}

.tv-channel__menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-channel__menu-list li a {
    display: block;
    color: #202124;
    font-size: 15px;
    padding: 10px 20px;
    border-left: none;
    background-color: transparent;
    transition: background-color .2s ease-in-out;
    cursor: pointer;
}

.tv-channel__menu-list li a.active {
    background-color: #f4f4f4;
}

.tv-channel__menu-list li a.active .underline:after {
    background-color: transparent;
}

.tv-channel__switch {
    display: flex;
    justify-content: center;
}

.tv-channel__switch-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 20px;
}

.tv-channel__switch-item img {

}

.tv-channel__switch-item p {
    margin: 0 15px;
    font-weight: 700;
}

.on-off__switch input {
    display: none;
}

.on-off__switch label {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 30px;
    width: 56px;
    padding: 0;
    line-height: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    background-color: #8c97a3;
    -webkit-transition: background-color .3s ease-in;
    transition: background-color .3s ease-in;
    margin-bottom: 0;
}

.on-off__switch input:checked + label {
    background-color: #351b46;
}

.on-off__switch label:before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 28px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0 3px 6px rgba(39, 55, 71, .3);
    box-shadow: 0 3px 6px rgba(39, 55, 71, .3);
    -webkit-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
}

.on-off__switch input:checked + label:before {
    right: 2px;
    -webkit-box-shadow: 0 3px 6px rgba(39, 55, 71, .3);
    box-shadow: 0 3px 6px rgba(39, 55, 71, .3);
}

.on-off__switch input:checked + label:after {
    content: "";
    background: url('../img/icon__tick.png') no-repeat;
    right: 34px;
    width: 14px;
    top: 10px;
    height: 14px;
    position: absolute;
    background-size: contain;
}

.tv-channel__content {
    position: relative;
    overflow: hidden;
    transition: max-height .2s ease-in-out;
}

.tv-channel__content:after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 160px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 70.83%);
}

.tv-channel__content.tv-channel__content_active:after {
    content: unset;
}

.tv-channel__content-more {
    max-width: 288px;
    width: 100%;
    height: 55px;
    border: 2px solid #9909e3;
    border-radius: 3px;
    background-color: transparent;
    transition: background-color .2s ease-in-out;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    line-height: 55px;
    font-weight: 500;
    color: #351b46;
}

.tv-channel__content-more:hover {
    background-color: #9909e3;
    color: #fff;
}

.tv-channel__content-item {
    column-count: 4;
    column-gap: 25px;
    position: relative;
    min-height: 550px;
}

.tv-channel__column {
    border: 1px solid #f4f4f4;
    border-radius: 15px;
    padding: 30px 18px;
    width: 100%;
    margin-bottom: 25px;
    page-break-inside: avoid;
    break-inside: avoid;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.tv-channel__column h3 {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #e7e8eb;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

.tv-channel__column-item {
    display: flex;
    align-items: center;
    padding: 6px 15px;
}

.tv-channel__column-image {
    width: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-channel__column-image img {
    max-width: 100%;
    max-height: 25px;
}

.tv-channel__column-name {
    display: flex;
    width: calc(100% - 13% - 5%);
    margin-left: 5%;
    align-items: center;
}

.tv-channel__column-name p {
    line-height: 20px;
}

.channel-hd-icon-holder {
    margin-left: 10px;
}

.channel-hd-icon-holder img {
    max-width: 100%;
}

#tabs-1BALT,
#tabs-BIG,
#tabs-TEM1 {
    padding: 15px;
    column-count: 3;
}

#tabs-TV3 {
    padding: 15px;
    column-count: 2;
}

#tabs-1BALT:before,
#tabs-BIG:before,
#tabs-TEM1:before,
#tabs-TV3:before {
    content: "";
    background-color: #f5f5f5;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 15px;
}

#tabs-1BALT .tv-channel__column,
#tabs-BIG .tv-channel__column,
#tabs-TEM1 .tv-channel__column,
#tabs-TV3 .tv-channel__column {
    border: 1px solid #fff;
    background-color: #fff;
}

.channel-column-price {
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.channel-block-total-out {
    background-color: #e5e8ef;
    border-radius: 115px 0 53px;
    padding-top: 8px;
}

.channel-block-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 365px;
    background-color: #351b46;
    padding: 15px 15px 15px 25px;
    border-radius: 300px 0 40px;
}

.all-packnew {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
}

.in-new-priceblock {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #fff;
    font-weight: 700;
}

.in-new-priceblock .new_price {
    font-size: 40px;
}

.in-new-priceblock .dv-price {
    font-size: 25px;
}

.tv-channel__block {
    background-color: #351b46;
    padding: 7px 15px 7px 50px;
    border-radius: 300px 0 53px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #fff;
    font-weight: 600;
    margin: 0 -15px -30px auto;
}

.tv-channel__block .new_price {
    font-size: 30px;
}

.tv-channel__block .dv-price {
    font-size: 18px;
}

.extra-text {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #202124;
}

.extra-text-price {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: -100%;
    text-align: right;
}

footer {
    width: 100%;
    /*padding: 0 70px 0 calc(147px + 70px);*/
    padding: 0 70px;
    background-color: #291536;
}

.footer__container {
    max-width: 1920px;
    margin: 0 auto;
}

.footer-bottom {
    padding: 22px 0 17px;
    border-top: 1px solid #442657;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    display: flex;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #62556b;
}

.footer-bottom p a {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #62556b;
    margin-left: 20px;
}

.footer-bottom a {
    display: block;
}

.icon__scroll-up {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../img/icon__scroll-up.svg") no-repeat center;
}

.footer__is-mobile, .footer-mobile-550 {
    display: none;
}
