/* GENERAL START */
.login__content {
    width: 100%;
}

.page {
    width: 100%;
    max-width: 900px;
    padding: 3px 0;
    font-family: "Montserrat", "Arial", sans-serif;
}

/* BREADCRUMBS START */
.breadcrumbs{margin:0 0 45px; padding:0 0 17px; position:relative; font-size:22px; line-height:36px; font-weight:bold;}
.breadcrumbs:after{content:""; width:90px; height:3px; position:absolute; bottom:0; left:0; background:#ffa724;}
.breadcrumbs__item{padding:0 32px 0 0; display:inline; position:relative;}
.breadcrumbs__item_back{padding:0 6px 0 0; display:inline; position:relative;}
.breadcrumbs__item:after{content:"\e901"; position:absolute; bottom:-5px; right:8px; font:20px/36px 'icons';}
.breadcrumbs__item:last-child{padding:0;}
.breadcrumbs__item:last-child:after{display:none;}
.breadcrumbs__item span{font-size:18px;}
.breadcrumbs__item_back span{font-size:18px;}
.breadcrumbs__link{color:#0456a2;}
.desktop .breadcrumbs__link:hover{color:#086bc8;}
.breadcrumbs__item a {
	color:#0456a2;
}
.breadtopmenu {
	margin-bottom:25px;
}
/* BREADCRUMBS END */

/* TITLE START */
.title {
    position: relative;
    max-width: 594px;
    padding-bottom: 12px;
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}

.title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 3px;
    background: #FFA724;
    border-radius: 5px;
}

.title--center {
    text-align: center;
}

.title--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.title--big {
    font-size: 24px;
    line-height: 36px;
    max-width: none;
    width: 100%;
}
/* TITLE END */

/* BUTTONS START */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 97px;
    width: fit-content;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    background: #1CA4FB;
    transition: background 0.3s ease 0s, box-shadow 0.3s ease 0s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.button:hover {
    box-shadow: 0 5px 20px rgba(0, 70, 136, 0.45);
    background: #29a9fc;
}

.button--dark {
    background: #004688;
}

.button--dark:hover {
    box-shadow: 0 5px 20px rgba(0, 70, 136, 0.45);
    background: #0456a2;
}

.button--medium {
    min-width: 153px;
    padding: 15px 19px 14px 19px;
    font-size: 16px;
    font-weight: 600;
}

.button--large {
    min-width: 274px;
    padding: 15px 30px 14px 30px;
    font-size: 16px;
    font-weight: 600;
}
/* BUTTONS END */
/* GENERAL END */


/* CONNECTION START */
.connection {
    padding: 41px 59px 29px 43px;
    border-radius: 10px;
    border: 1px solid #004688;
    margin: 67px 0 56px 0;
}

.connection__row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0 24px;
}

.connection__left {
    display: flex;
    align-items: center;
    gap: 0 19px;
    margin-left: 7px;
}

.connection__right {
    padding: 14px 14px 5px 8px;
    border-radius: 6px;
    border: 1px solid #E8ECF1;
    background: #F7FAFF;
    margin-top: -4px;
}

.connection__title {
    max-width: 230px;
    line-height: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #004688;
}

.connection__img {
    height: 75px;
    width: 75px;
}

.connection__includes {
    margin-top: 22px;
}

.connection__includes-title {
    line-height: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}

/* price */
.price {
    display: flex;
    align-items: center;
}

.price__img {
    margin: -20px 6px 0 0;
}

.price__price {
    flex-shrink: 0;
    margin-right: 24px;
}

.price__discount {
    display: flex;
    align-items: center;
    gap: 0 6px;
}

.price__discount span {
    text-transform: uppercase;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 800;
    color: #F1AEAE;
    margin: 1px 0 0 3px;
}

.price__cost {
    text-transform: uppercase;
    line-height: 24px;
    font-size: 20px;
    font-weight: 700;
    color: #060C3C;
}

.price__time {
    line-height: 20px;
    font-size: 11px;
    color: #060C3C;
    margin-top: -2px;
}

.price__button {
    margin-top: -6px;
}

/* discount */
.discount {
    padding: 1px 3px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border-radius: 5px 5px 0 5px;
    background: linear-gradient(-90deg, #FF5790 0%, #F81140 100%);
}

@media (max-width: 1200px) {
    .connection {
        padding: 41px 23px 27px 23px;
    }

    .connection__row {
        flex-direction: column;
        gap: 23px 0;
    }

    .connection__left {
        gap: 0 16px;
        margin-left: 10px;
    }

    .connection__img {
        height: 59px;
        width: 59px;
    }

    .connection__title {
        color: #000;
    }

    .price__price {
        margin-right: 23px;
    }

    .connection__includes-title {
        margin-bottom: 13px;
    }
}

@media (max-width: 576px) {
    .connection {
        margin: 20px 0 37px 0;
    }
}

@media (max-width: 389px) {
    .connection {
        padding: 16px;
    }

    .connection__right {
        padding: 8px;
    }

    .price__price {
        margin-right: 16px;
    }

    .price__button {
        margin-left: auto;
    }

    .price__img {
        margin: -20px 0 0 0;
    }
}
/* CONNECTION END */

/* PLANS START */
.plans {
    position: relative;
    margin-bottom: 51px;
}

.plans__controls {
    display: none;
}

.plans__row {
    display: grid;
    grid-template-columns: 38% 1fr 1fr;
}

.plans__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
    padding: 9px 0 10px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #454545;
}

.plans__cell--header {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 20px 0;
    min-height: 290px;
    padding-top: 40px;
    border-bottom: none;
}

.plans__cell--header .button {
    margin-top: auto;
}

.plans__cell--header span {
    line-height: 130%;
}

.plans__row:not(:nth-child(1)) .plans__cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 153px;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 auto;
}

.plans__row:not(:nth-child(1)) .plans__cell:nth-child(1):after {
    max-width: 100%;
}

.plans__row .plans__cell:not(:nth-child(1)) > * {
    max-width: 175px;
}

.plans__row:first-child .plans__cell:nth-child(1),
.plans__row:not(:first-child) .plans__cell:nth-child(1) {
    align-items: start;
    text-align: start;
    font-weight: 400;
}

.plans__row.plans__section-title .plans__cell {
    padding-top: 57px;
    padding-bottom: 0;
    line-height: 22px;
    font-size: 15px;
    font-weight: 600 !important;
    color: #38373E;
}

.plans__row.plans__section-title .plans__cell::after {
    display: none;
}

.plans__row .plans__cell {
    margin: 0 14px;
}

.plans__row .plans__cell:nth-child(1) {
    padding-left: 1px;
    margin-left: 0;
    margin-right: 20px;
}

.plans__row .plans__cell:not(:nth-child(1)) {
    margin-right: 0;
}

.plans__row .plans__cell:nth-child(2) {
    border-left: 1px solid #C8C8C8;
    border-right: 1px solid #C8C8C8;
}

.plans .plans__row:first-child .plans__cell:nth-child(2) {
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #C8C8C8;
}

.plans .plans__row:last-child .plans__cell:nth-child(2) {
    padding-bottom: 92px;
    border-radius: 0 0 5px 5px;
    border-bottom: 1px solid #C8C8C8;
}

.plans__row .plans__cell:nth-child(3) {
    border-left: 1px solid #004688;
    border-right: 1px solid #004688;
}

.plans .plans__row:first-child .plans__cell:nth-child(3) {
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #004688;
}

.plans .plans__row:last-child .plans__cell:nth-child(3) {
    padding-bottom: 92px;
    border-radius: 0 0 5px 5px;
    border-bottom: 1px solid #004688;
}

.plans .plans__row:last-child .plans__cell::after {
    display: none;
}

.plans__text-black {
    line-height: 17px;
    color: #000;
}

.plans__title {
    line-height: 36px;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: -8px 0 -6px 0;
}

.plans__column-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.plans__desc {
    line-height: 22px;
    font-size: 15px;
    font-weight: 500;
    color: #38373E;
}

.plans__price {
    min-height: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #008000;
}

.plans__price--big {
    font-size: 22px;
}

.plans__price--big span {
    font-size: 16px;
    color: #7C7C7C;
}

.plans__icon-check {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: url('/img/pages/check3.svg') no-repeat center / contain;
}

/* адаптив */
.plans--narrow {
    margin-bottom: 32px;
}

.plans--narrow .plans__table {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 80px);
    padding: 0 40px;
    margin: 0 0 0 -40px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.plans--narrow .plans__table::-webkit-scrollbar {
    display: none;
}

.plans--narrow .plans__row {
    grid-template-columns: min(90%, 322px) 1fr 1fr minmax(0, auto);
}

.plans--narrow .plans__row::after {
    content: '';
    display: block;
    width: 40px;
}

.plans--narrow .plans__cell {
    min-width: 200px;
}

.plans--narrow .plans__cell--header {
    padding-bottom: 0;
}

.plans--narrow .plans__row .plans__cell:nth-child(1) {
    margin-right: 0;
}

.plans--narrow .plans__row .plans__cell:not(:nth-child(1)) > * {
    max-width: 164px;
}

.plans--narrow .plans__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
}

.plans--narrow .plans__dot {
    width: 82px;
    height: 4px;
    border-radius: 111px;
    background: #D9D9D9;
    cursor: pointer;
}

.plans--narrow .plans__dot--active {
    background: #1CA4FB;
}

@media (max-width: 992px) {
    /* обязательно, только для .plans__table */
    .login__container {
        overflow: hidden;
    }
}
/* PLANS END */

/* TARIFFS START */
.tariffs {
    padding: 30px 68px 89px 55px;
    border-radius: 20px;
    border: 1px solid rgb(0 70 136 / 50%);
}

.tariffs__title {
    margin: -7px 0 0 -10px;
}

.tariffs__title-second {
    line-height: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #444444;
    margin: 19px 0;
}

.tariffs__about {
    display: flex;
    gap: 45px;
    margin: 61px 0 57px 0;
}

.tariffs__img {
    height: 179px;
    width: 179px;
    margin-left: 8px;
}

.tariffs__desc {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    line-height: 24px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: -6px;
}

.tariffs__list {
    margin-left: 21px;
}

@media (max-width: 992px) {
    .tariffs {
        padding: 30px 24px;
    }

    .tariffs__title {
        margin: 0;
    }

    .tariffs__about {
        flex-direction: column;
        margin: 45px 0;
    }

    .tariffs__list {
        margin-left: 0;
    }

    .tariffs__img {
        height: 126px;
        width: 126px;
    }
}

@media (max-width: 576px) {
    .tariffs__title {
        padding: 0;
        text-align: center;
        line-height: 20px;
        font-size: 24px;
        font-weight: 700;
        color: #444444;
    }

    .tariffs__title::after {
        display: none;
    }

    .tariffs__img {
        margin: 0 auto;
    }
}

@media (max-width: 390px) {
    .tariffs__about {
        gap: 14px;
        margin: 31px 0 35px 0;
    }

    .tariffs__desc {
        margin: 0;
        gap: 24px 0;
    }

    .tariffs__title-second {
        margin: 24px 0;
    }
}

@media (max-width: 350px) {
    .tariffs__title {
        font-size: 20px;
    }
}
/* TARIFFS END */

/* LISTS START */
.list {
    display: flex;
    flex-direction: column;
    gap: 3px 0;
}

.list__item {
    position: relative;
    padding-left: 32px;
    list-style-type: none;
    line-height: 18px;
    font-size: 14px;
    color: #000;
}

.list__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6px;
    width: 16px;
    height: 16px;
    background-image: url('/img/pages/check.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

@media (max-width: 576px) {
    .list {
        display: flex;
        flex-direction: column;
        gap: 20px 0;
    }

    .list__item {
        padding-left: 27px;
    }

    .list__item::before {
        top: -1px;
        bottom: 0;
        left: -4px;
        margin: auto 0;
    }
}

/* list2 */
.list2 {
    display: flex;
    flex-direction: column;
    gap: 9px 0;
    padding: 31px 31px 26px 31px;
    border-radius: 20px;
    background: #F7FAFF;
}

.list2__item {
    position: relative;
    padding-left: 23px;
    list-style-type: none;
    line-height: 24px;
    font-size: 15px;
    font-weight: 500;
    color: #38373E;
}

.list2__item::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url('/img/pages/check2.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 576px) {
    .list2 {
        gap: 20px 0;
        padding: 32px 13px;
    }
}
/* LISTS END */

.register-button {
    display: block;
    margin: 82px auto 20px auto;
}