﻿/* ====================== INTRO LAYOUT ========================= */
.about-intro-section {
    width: 100%;
    background: var(--np-grey-hot-bg);
    text-align: center;
    padding-top: 10px !important;
}
/* ====================== END INTRO LAYOUT ========================= */



/* ====================== INTRO DIVIDER ========================= */
.intro-divider {
    width: 120px;
    height: 4px;
    background: var(--np-accent1);
    border-radius: 10px;
    margin: 80px auto 0;
}
/* ====================== END INTRO DIVIDER ========================= */



/* ====================== INTRO TITLE ========================= */
.intro-title {
    position: relative;
    display: inline-block;
    font-size: var(--fs-6xl);
    font-family: var(--font-logo);
    color: var(--np-accent1);
    font-weight: 100;
    margin-bottom: 20px;
}

    /* LEFT paw */
    .intro-title::before {
        content: "";
        display: inline-block;
        width: 110px;
        height: 110px;
        background-image: url("/images/newDesign/aboutPage/intro/powLeft.svg");
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 12px;
        vertical-align: middle;
    }

    /* RIGHT paw */
    .intro-title::after {
        content: "";
        display: inline-block;
        width: 110px;
        height: 110px;
        background-image: url("/images/newDesign/aboutPage/intro/powRight.svg");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 12px;
        vertical-align: middle;
    }
/* ====================== END INTRO TITLE ========================= */



/* ====================== INTRO SUBTITLE ========================= */
.intro-subtitle {
    font-size: var(--fs-xxl);
    font-family: var(--font-body);
    color: var(--np-dark);
    max-width: 1000px;
    margin: 3rem auto;
    line-height: 1.6;
}
/* ====================== END INTRO SUBTITLE ========================= */



/* ====================== INTRO RESPONSIVE ========================= */
@media (max-width: 768px) {
    .intro-title {
        font-size: 2.2rem;
    }

    .intro-subtitle {
        font-size: 1.1rem;
    }
}
/* ====================== END INTRO RESPONSIVE ========================= */
