/* `xxxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1579.98px) {

}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}
/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {


}
@media(min-width: 1024.98px) and (max-width: 1199.98px) {

}
/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 1024.98px) {

}
@media(min-width: 767.98px) and (max-width: 991.98px) {
    .landing .text-content {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .landing .text-content .intro {
        margin: 0 0 1rem 0;
        max-width: 100%;
    }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 768.98px) {
    .landing .text-content {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .landing .text-content .intro {
        margin: 0 0 1rem 0;
        max-width: 100%;
    }
    .landing .text-content .intro p {
        font-size: 13px;
    }

}
/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

}
