@use "../../../../styles/abstracts/variables";
@use "../../../../styles/abstracts/mixins";  

.page_intro{
    margin-bottom: 1rem;
    @media only screen and (max-width: 1000px) {
        margin-bottom: 0rem !important;
    }
    h3{
        font-weight: 500 !important;
        font-size: 1rem !important;
        color: variables.$col-white !important;
        @media only screen and (max-width: 1000px) {
            font-size: 1.1rem !important;
            font-weight: 500 !important;
            color: variables.$col-white !important;
        }
    }
    p{
        font-size: .88rem !important;
        font-weight: 400 !important;
        opacity: .85;
        padding-top: .1rem;
        color: variables.$col-white !important;
        padding-bottom: 0;
        @media only screen and (max-width: 1000px) {
            font-size: .9rem !important;
            padding-bottom: 1rem;
            font-weight: 500;
            opacity: .8;
            line-height: 1.7;
        }
    }
}