:root {
    /* FONT SIZES  */
    --font-48: 48px;
    /* COLORS  */
    --color-gray: #525252;
}

.font-48 {
    font-size: var(--font-48) !important;
}

.color-gray {
    color: var(--color-gray) !important;
}

.terms-policy-sections a {
    transition: all .4s ease-in-out;
}

.terms-policy-sections a:hover {
    color: var(--blue) !important;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    :root {
        --font-48: 43px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --font-48: 30px;
    }
}

@media (max-width: 376px) {
    :root {
        --font-48: 24px;
        --font-3xl: 23px;
    }
}