.about-abouthead h3 span {
    font-weight: var(--fw-xxl);
}

@media screen and (min-width: 1140px) {

    .about-banner {
        height: 95vh;
        width: 100%;
        position: relative;
    }

    .about-bannerdiv {
        width: 95%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: grid;
        grid-template-columns: 45% 45%;
        align-items: center;
        justify-content: space-between;
        margin: auto;
        padding: 75px 0px;
    }

    .about-bannerleft h1 {
        width: 80%;
        color: var(--text-primary);
        font-size: 50px;
        font-weight: var(--fw-xxl);
        margin-bottom: 20px;
    }

    .about-bannerleft h6 {
        width: 80%;
        color: var(--text-secondary);
        font-size: 18px;
        font-weight: var(--fw-md);
        line-height: 30px;
        margin-bottom: 30px;
    }

    /* Service */
    .service {
        width: 95%;
        margin: auto;
        padding-top: 50px;
    }
    
    .service-head h3 {
        /* width: 400px; */
        color: var(--text-primary);
        font-size: 30px;
        font-weight: var(--fw-xxl);
        margin-bottom: 10px;
    }
    
    .service-head h6 {
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: var(--fw-md);
        margin-bottom: 30px;
    }

    /* Service Cards */
    .cardmain {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        justify-content: space-between;
    }

}

@media screen and (min-width: 767px) and (max-width: 1140px) {

    .about-banner {
        height: 90vh;
        width: 100%;
        position: relative;
    }

    .about-bannerdiv {
        width: 95%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: grid;
        grid-template-columns: 48% 48%;
        align-items: center;
        justify-content: space-between;
        margin: auto;
    }

    .about-bannerleft h1 {
        width: 90%;
        color: var(--text-primary);
        font-size: 40px;
        font-weight: var(--fw-xxl);
        margin-bottom: 15px;
    }

    .about-bannerleft h6 {
        width: 85%;
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: var(--fw-md);
        line-height: 25px;
        margin-bottom: 25px;
    }

    /* Service */
    .service {
        width: 95%;
        margin: auto;
        padding-top: 50px;
    }
    
    .service-head h3 {
        /* width: 400px; */
        color: var(--text-primary);
        font-size: 25px;
        font-weight: var(--fw-xxl);
        margin-bottom: 10px;
    }
    
    .service-head h6 {
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: var(--fw-md);
        margin-bottom: 30px;
    }

    /* Service Cards */
    .cardmain {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-content: space-between;
    }
    
}

@media screen and (max-width: 767px) {

    .about-banner {
        height: 90vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-bannerdiv {
        width: 95%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: auto;
        gap: 30px;
    }

    .about-bannerleft {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* gap: 10px; */
    }

    .about-bannerleft h1 {
        color: var(--text-primary);
        font-size: 40px;
        font-weight: var(--fw-xxl);
        margin-bottom: 15px;
        text-align: center;
    }

    .about-bannerleft h6 {
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: var(--fw-md);
        line-height: 25px;
        margin-bottom: 25px;
        text-align: center;
    }

    /* Service */
    .service {
        width: 95%;
        margin: auto;
        padding-top: 50px;
    }
    
    .service-head h3 {
        /* width: 400px; */
        color: var(--text-primary);
        font-size: 25px;
        font-weight: var(--fw-xxl);
        margin-bottom: 10px;
    }
    
    .service-head h6 {
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: var(--fw-md);
        margin-bottom: 30px;
    }

    /* Service Cards */
    .cardmain {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: space-between;
    }

}

@media screen and (max-width: 370px) {

    .about-banner {
        height: 100vh;
        width: 100%;
        background: linear-gradient(to bottom, #abbaab, #ffffff);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-bannerright .about-bannerrightdiv .svg-wrapper {
        height: 325px;
        width: 320px;
    }

}