:root {
    --txt-title-boxes: 700 clamp(16px, 1.5vw, 22px)/clamp(20px, 1.5vw, 30px) 'Inter', sans-serif;
    --title-banner: 700 clamp(26px, 3vw, 36px)/clamp(32px, 1.5vw,43px) 'Inter', sans-serif;
    --p-banner: 350 clamp(14px, 3vw, 16px)/clamp(16px, 1.5vw, 24px) 'Inter', sans-serif;
    --txt-title-vpn: 700 clamp(23px, 3vw, 29px)/clamp(30px, 1.5vw, 38px) 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden;
}

.bottom-bckg-gradient {
    position: relative;
    width: 100%;
}

.bottom-bckg-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--footer-gradient);
    z-index: -1;
    width: 120vw;
    height: calc(35vw + 5%);
    left: -11vw;
}
@media (max-width: 1275px) {
    .bottom-bckg-gradient::before {
        height: calc(35vw + 30%);
    }

}
@media (max-width: 1020px) {
    .bottom-bckg-gradient::before {
        height: calc(35vw + 50%);
    }

}
@media (max-width: 790px) {
    .bottom-bckg-gradient::before {
        height: calc(35vw + 80%);
    }

}


.banner-content {
    display: flex;
    justify-content: space-between;
    color: var(--color-txt);
}

.banner-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45vw;
    gap: 24px;
}


.banner-content-box p {
    font: var(--p-banner);
}
.banner-vpn {
    display: flex;
    align-items: center;
}

.banner {
     width: 35vw;
     max-width: 480px;
 }

.txt-banner {
    font: var(--title-banner);
}
.btn-countries {
    color: var(--color-txt);
    font: var(--bnt-txt);
    padding: 12px 36px;
    border-radius: 36px;
    border: none;
    width: fit-content;
    white-space: nowrap;
    cursor: pointer;
}

@media (max-width: 760px) {
    .banner-content {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
    }
    .banner-content-box {
        display: flex;
        width: 100%;
        align-items: center;
    }
    .banner-vpn {
        justify-content: center;
    }
    .banner {
        width: 240px;
    }
    .btn-countries {
        width: 100%;
    }
}

/*Контейнер ПОЧЕМУ НУЖНО ИСПОЛЬЗОВАТЬ ВПН*/


.vpn-block{
    display: flex;
    gap: 24px;
    justify-content: space-between;
}
.vpn-block {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.vpn-block-subtitle h2 {
    color: var(--color-txt);
    font: var(--txt-title-vpn);
}

.vpn-block-items-pc {
    display: flex;
    flex-direction: column;
}

.vpn-block-btns {
    display: flex;
    gap: 43px;
    justify-content: space-between;
    width: 100%;
}

.vpn-block-button {
    width: 25vw;
    padding: 24px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow:
            4px 4px 12px 4px #0C50CF3C,
            inset 1px 6px 4px -4px #FFFFFF80;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.img-button {
    width: clamp(30px, 3vw, 50px);
}
.vpn-block-txt-title {
    color: var(--color-txt);
    font: var(--txt-title-boxes);
}
.vpn-block-txt {
    color: var(--color-txt);
    font: 300 clamp(12px, 2vw, 14px)/clamp(16px, 1.5vw, 24px) 'Inter', sans-serif;;
}

@media (max-width: 960px) {
    .vpn-block-items-pc {
        display: none;
    }
}

/*Те же самые блоки только мобильные*/

.vpn-block-content-mobile {
    display: flex;
    gap: 36px;
}

.vpn-block-button-mobile {
    display: none;
}

.vpn-mobile-title {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.img-button {
    width: auto;
}

.vpn-block-title-mob {
    color: var(--color-txt);
    font: 700 18px/22px 'Inter', sans-serif;
    text-align: center;
}

.vpn-block-txt-mob {
    color: var(--color-txt);
    font: var(--p-banner);
}

.custom-label1 {
    padding: 24px 24px 0;
}

.vpn-block-button-mobile input {
    display: none;
}

.vpn-block-button-mobile label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 1;
}

.arrow-icon {
    width: 25px;
    margin-top: 24px;
    transition: transform 0.3s ease;
}

.vpn-block-button-mobile input:checked + .custom-label1 .arrow-icon {
    transform: rotate(180deg);
}

.hidden-content {
    max-height: 0;
    transition: max-height 0.6s ease;
    display: flex;
    justify-content: center;
}
.hidden-items {
    width: 80%;
    margin: 10px;
}

.vpn-hidden-txt {
    font: 400 12px/20px 'Inter', sans-serif;
    color: var(--color-txt);
    text-align: center;
}

.vpn-block-button-mobile input:checked ~ .hidden-content {
    max-height: 300px;
}

@media (max-width: 960px) {
    .hidden-items {
        width: 80%;
    }
    .vpn-block-button-mobile {
        width: 225px;
        height: fit-content;
        background-color: #040e2b;
        border: 1px solid #FFFFFF4D;
        border-radius: 24px;
        position: relative;
        overflow: hidden;
        box-shadow:
                4px 4px 12px 4px #0C50CF3C,
                inset 1px 6px 4px -4px #FFFFFF80;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        gap: 24px;
    }
}

@media (max-width: 860px) {
    .vpn-block-content-mobile {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .mobile-block {
        display: flex;
    }
}

/*Что дает ВПН сервер*/


.features-country-subtitle {
    color: var(--color-txt);
    font: 700 clamp(16px, 2vw, 20px)/24px 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 64px;
}
.features-country-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

}
.features-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;

}
.features-country-titile {
    color: var(--color-txt);
    font: 700 clamp(16px, 2vw, 20px)/clamp(18px, 1.5vw, 24px) 'Inter', sans-serif;
    margin-bottom: 24px;
}

.features-img {
    width: 16px;
}
.features-country-txt {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

@media (max-width: 760px) {
    .features-country-items {
        grid-template-columns: 1fr;
    }
    .features-country-titile {
        margin-bottom: 12px;
    }
    .features-country-subtitle {
        margin-bottom: 32px;
    }
}

