@charset "utf-8";
/* Large desktops and laptops */

@media (min-width: 1441px) {
    .textHuge {
        font-size: 105px;
    }
    .textRegular {
        font-size: 20px;
    }
    .lineHeight {
        line-height: 8rem;
    }
    .img-background {
        height: 501px;
    }
}

@media (max-width: 1440px) {
    .textHuge {
        font-size: 81px;
    }
    .textRegular {
        font-size: 20px;
    }
    .lineHeight {
        line-height: 6.5rem;
    }
    .img-background {
        height: 441px;
    }
}

@media (max-width: 1200px) {
    .textHuge {
        font-size: 80px;
    }
    .textRegular {
        font-size: 17px;
    }
    .lineHeight {
        line-height: 6.3rem;
    }
    .img-background {
        height: 421px;
    }
}

@media (max-width: 992px) {
    .textHuge {
        font-size: 67px;
    }
    .textRegular {
        font-size: 18px;
    }
    .lineHeight {
        line-height: 5.3rem;
    }
    .img-background {
        height: 381px;
    }
}

@media (max-width: 768px) {
    .textHuge {
        font-size: 47px;
    }
    .textRegular {
        font-size: 16px;
    }
    .lineHeight {
        line-height: 4.2rem;
    }
    .img-background {
        height: 351px;
    }
}

@media (max-width: 576px) {
    .textHuge {
        font-size: 32px;
    }
    .textRegular {
        font-size: 14px;
    }
    .lineHeight {
        line-height: 3rem;
    }
    .img-background {
        height: 331px;
    }
}

/* font style */
.font-oblique {
    font-style: oblique !important;
}
.font-italic {
    font-style: italic !important;
}
.font-normal {
    font-style: normal !important;
}

/* font decoration */
.text-line-through {
    text-decoration: line-through;
}
.text-overline {
    text-decoration: overline;
}
.text-underline {
    text-decoration: underline;
}
