

/*Блок с бесплатными днями*/

.freedays-content {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.freedays-img {
    height: clamp(180px, 30vw, 310px)
}

.freedays-img-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30vw;
}

.freedays-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    /*width: 60vw;*/
    color: var(--color-txt);
    font: var(--txt-in-container);
}

@media (max-width: 760px) {
    .freedays-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .freedays-txt {
        align-items: center;
        text-align: center;
        width: 100%;
    }
}
/*Блок чем платный ВПН лучше бесплатного*/

.question-vpn {
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.question-vpn-img {
    height: clamp(180px, 30vw, 310px)
}

.question-vpn-content {
    display: flex;
    justify-content: center;
    align-items: center;
    /*width: 30vw;*/
}

.question-vpn-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    /*width: 60vw;*/
    color: var(--color-txt);
    font: var(--txt-in-container);
}

@media (max-width: 760px) {
    .question-vpn  {
        flex-direction: column-reverse;
        gap: 24px;
        align-items: center;
    }

    .question-vpn-txt {
        align-items: center;
        text-align: center;
        /*width: 100%;*/
    }
}