﻿.section {
    width: 100%;
    height: auto;
}

    .section .title {
        font-family: var(--primary-font-family);
        font-size: 1.5vw;
        font-weight: 600;
        line-height: 3vw;
        color: var(--header-font-color);
    }

    .section .text {
        font-family: var(--secondary-font-family);
        font-size: 1.15vw;
        line-height: 1.6vw;
        color: var(--text-font-color);
    }

::deep ul li {
    padding: 0 0 0.5vw 0;
}

::deep .list-style-none {
    list-style-type: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .section .title {
        font-size: 1.8vw;
        line-height: 3.5vw;
        padding: 0 0 1vw 0;
    }

    .section .text {
        font-size: 1.4vw;
        line-height: 1.8vw;
        padding: 0 0 1vw 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section .title {
        font-size: 2.3vw;
        line-height: 3.5vw;
        padding: 0 0 1vw 0;
    }

    .section .text {
        font-size: 1.5vw;
        line-height: 1.8vw;
        padding: 0 0 1vw 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .section .title {
        font-size: 24px;
        line-height: 32px;
        padding: 0 0 20px 0;
    }

    .section .text {
        font-size: 16px;
        line-height: 22px;
    }

    ::deep ul li {
        padding: 0 0 10px 0;
    }
}

@media (max-width: 575px) {
    .section .title {
        font-size: 24px;
        line-height: 32px;
        padding: 0 0 20px 0;
    }

    .section .text {
        font-size: 16px;
        line-height: 22px;
    }

    ::deep ul li {
        padding: 0 0 10px 0;
    }
}
