/* About */
.about {
    width: 100%;
    background-color: var(--secondary);
    padding: 30px 0px;
}

.about-div {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 60% 35%;
    align-items: center;
    justify-content: space-between;
}

.about-left h3 {
    color: var(--text-primary);
    font-weight: var(--fw-xl);
    margin-bottom: 20px;
}

.about-left h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    margin-bottom: 15px;
}

/* Service Cards */
.sv-cards {
    width: 100%;
    padding: 30px 0px;
}

.sv-cards-div {
    width: 90%;
    margin: auto;
}

.sv-cards-div .sv-card-1 {
    display: grid;
    justify-content: space-between;
    margin-top: 40px;
}

.sv-cards-div .sv-card-2 {
    display: grid;
    justify-content: space-between;
}

.sv-cards-div .card-cntnt {
    background-color: var(--light);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    transition: var(--transition);
}

.sv-cards-div .card-cntnt:hover {
    background-color: var(--text-primary);
}

.sv-cards-div .card-cntnt:hover h5,
.sv-cards-div .card-cntnt:hover h6 {
    color: var(--secondary);
}

.sv-cards-div .card-cntnt:hover .sv-card-img {
    background-color: var(--secondary);
}

.card-cntnt .sv-card-img {
    height: 60px;
    width: 60px;
    background-color: #E4E4E7;
    border-radius: 50%;
    border: 2px solid #00000008;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.sv-card-cntnt h5 {
    font-weight: var(--fw-xl);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.sv-card-cntnt h6 {
    font-weight: var(--fw-sm);
    color: var(--text-secondary);
    margin-bottom: 0px;
}

/* Advertise */
.advertise {
    width: 100%;
    background-color: var(--secondary);
    padding: 30px 0px;
}

.advertise-div {
    background-color: var(--secondary);
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 48%);
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: sticky;
    top: 9%;
    padding: 20px 0px 0px 0px;
}

/* .advertise-div:nth-child(1) {
    position: sticky;
    top: 9%;
}

.advertise-div:nth-child(2) {
    position: sticky;
    top: 24%;
}

.advertise-div:nth-child(3) {
    position: sticky;
    top: 42%;
}

.advertise-div:nth-child(4) {
    position: sticky;
    top: 62%;
} */

.advertise-div h3 {
    font-family: var(--secondary-font);
    color: var(--text-primary);
    font-weight: var(--fw-xl);
    margin-bottom: 20px;
}

.advertise-div h5 {
    color: var(--text-secondary);
    font-weight: var(--fw-lg);
    margin-bottom: 10px;
}

.advertise-div h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    margin-bottom: 10px;
}

.advertise-div li {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    list-style-type: disc;
    margin-bottom: 5px;
}

@media screen and (min-width: 1098px) {

    /* About */
    .about-div {
        grid-template-columns: 60% 35%;
    }

    .about-left h3 {
        font-size: 30px;
    }

    .about-left h6 {
        width: 80%;
        font-size: 16px;
        line-height: 25px;
    }

    /* Service Cards */
    .sv-cards-div .sv-card-1 {
        grid-template-columns: repeat(3, 32.5%);
    }

    .sv-cards-div .sv-card-2 {
        grid-template-columns: repeat(2, 49%);
    }

    .sv-card-cntnt h5 {
        font-size: 18px;
    }

    .sv-card-cntnt h6 {
        font-size: 15px;
        line-height: 25px;
    }

    /* Advertise */
    .advertise-div {
        grid-template-columns: repeat(2, 48%);
    }

    .advertise-div h3 {
        font-size: 30px;
    }

    .advertise-div h5 {
        font-size: 18px;
    }

    .advertise-div h6,
    .advertise-div li {
        width: 85%;
        font-size: 14px;
        line-height: 25px;
    }

}

@media screen and (min-width: 767px) and (max-width: 1098px) {

    /* About */
    .about-div {
        grid-template-columns: 60% 35%;
    }

    .about-left h3 {
        font-size: 25px;
    }

    .about-left h6 {
        width: 85%;
        font-size: 16px;
        line-height: 25px;
    }

    /* Service Cards */
    .sv-cards-div .sv-card-1 {
        grid-template-columns: repeat(3, 32.5%);
    }

    .sv-cards-div .sv-card-2 {
        grid-template-columns: repeat(2, 49%);
    }

    .sv-card-cntnt h5 {
        font-size: 16px;
    }

    .sv-card-cntnt h6 {
        font-size: 14px;
        line-height: 22px;
    }
    
    /* Advertise */
    .advertise-div {
        grid-template-columns: repeat(2, 48%);
    }

    .advertise-div h3 {
        font-size: 30px;
    }

    .advertise-div h5 {
        font-size: 18px;
    }

    .advertise-div h6,
    .advertise-div li {
        width: 85%;
        font-size: 14px;
        line-height: 25px;
    }

}

@media screen and (max-width: 767px) {

    /* About */
    .about-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-left h3 {
        font-size: 30px;
        text-align: justify;
    }

    .about-left h6 {
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
    }

    /* Service Cards */
    .sv-cards-div .sv-card-1,
    .sv-cards-div .sv-card-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sv-card-cntnt h5 {
        font-size: 16px;
    }

    .sv-card-cntnt h6 {
        font-size: 12px;
        line-height: 20px;
    }
    
    /* Advertise */
    .advertise-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .advertise-div h3 {
        font-size: 25px;
    }

    .advertise-div h5 {
        font-size: 16px;
    }

    .advertise-div h6,
    .advertise-div li {
        width: 85%;
        font-size: 12px;
        line-height: 22px;
    }

}