.sub-title-main {
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
}
.title-section {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
}
.page-header {
    padding: 65px 0 15px;
    background-color: var(--primary);
    background-image: url(../../images/icons/landing-bg.webp);
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 125px;
    width: 100%;
    background-color: #fff;
}
.page-header h1 {
    font-size: 47px;
    font-weight: bold;
    line-height: 1.4;
}
.page-header .page-loc {
    font-size: 22px;
    font-weight: 600;
}
.page-header .img {
    border-radius: 18px;
    overflow: hidden;
    max-width: 395px;
}
/* ====================================== *\
            About Section 
\* ====================================== */
.about-section {
    padding: 60px 0;
    position: relative;
    background-image: url('../../images/icons/about-bg-2.png');
    background-repeat: no-repeat;
    background-position: right 100px top 60px;
}
.about-section img {
    border-radius: 20px;
}
/* ====================================== *\
            Company Section 
\* ====================================== */
.company-section .content {
    background-color: var(--primary);
    padding: 100px 50px;
    border-radius: 10px;
    background-image: url('../../images/icons/company-info-bg-1.webp');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    margin-top: -170px;
}
.company-section h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 36px;
}
.company-section p {
    font-weight: 400;
    line-height: 26px;
}
.company-section img {
    border-radius: 10px;
}
.video-wrap {
    padding: 25px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 7px 8px 41px rgb(78 95 255 / 16%);
}
.video-link {
    position: relative;
    cursor: pointer;
}
.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(255, 0, 0, 0.3);
    height: 120px;
    width: 120px;
    transform: translate(-50%, -50%);
}
.video-btn .icon {
    background-color: #FF0000;
    color: #fff;
    height: 60px;
    width: 60px;
}
.modal-video .close {
    color: #fff;
    opacity: 1;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50px;
    margin: 0;
    padding: 0;
    margin-left: auto;
    height: 30px;
    width: 30px;
    font-size: 20px;
}
.modal-video .modal-dialog {
    max-width: 670px;
}
/* ====================================== *\
            CTA Section 
\* ====================================== */
.cta {
    padding: 100px 0 0;
}
.cta .action {
    background: #5CB73E;
    border-radius: 30px;
    padding: 42px 60px;
    background-image: url(../../images/icons/cta-bg.webp);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(40px);
    position: relative;
    z-index: 1;
}
.cta h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #FFFFFF;
}
.cta h2 span {
    position: relative;
}
.cta h2 span:nth-child(2):after {
    position: absolute;
    content: '';
    background-image: url(../../images/icons/arrow.webp);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    height: 70px;
    width: 70px;
    left: 120%;
    top: -30px;
}
@media screen and (max-width: 1500px) { 
    .cover::before {
        opacity: 0.3;
    }
    .about-section {
        background-image: unset;
    }
}
@media screen and (max-width: 1399px) { 
    .company-section .content {
        margin-top: -150px;
    }
}
@media screen and (max-width: 1199px) {
    .page-header h1 {
        font-size: 37px;
    }
    .company-section .content {
        margin-top: -135px;
    }
    .cta {
        padding: 50px 0 90px;
    }
    .cta .action {
        transform: unset;
        box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    }
}
@media screen and (max-width: 991px) {
    .page-header h1 {
        font-size: 27px;
    }
    .company-section .row div:nth-child(1) {
        order: 1;
    }
    .company-section .content {
        margin-top: 0;
    }
    .company-section .content {
        padding: 60px 50px;
    }
}
@media screen and (max-width: 767px) {
    .about-section {
        padding: 0;
    }

    .cta h2 {
        font-size: 24px;
    }
}
@media screen and (max-width: 575px) {
    .company-section .content {
        padding: 40px 20px;
    }
    .cta .action {
        padding: 22px 20px;
        border-radius: 0;
    }
    .cta {
        padding: 0;
    }
    .cta h2 span:nth-child(2):after {
        content: unset;
    }
    .title-section {
        font-size: 22px;
        line-height: 32px;
    }
}