.rowSection{
    gap: 40px;
    animation: fadeIn .4s linear;
    border-bottom: 1px solid var(--blackOp4);
    padding: 20px;
    background-color: var(--bgClr);
    border-radius: 7px;
}
.rowImage{
    aspect-ratio: 1/.6;
    border-radius: 7px;
}
.rowInfoDiv{
    gap: 10px;
}
.listTitle{
    background-color: var(--bgClr);
    padding: 10px 15px;
    margin-top: 20px;
    border-radius: 7px;
}
.seeLink{
    margin-left: auto;
    margin-top: 10px;
    color: var(--blueClr1);
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    background-image: url("/src/rightArrow.svg");
    padding-top: 2px;
    transition: padding-right .4s;
}
.seeLink:hover{
    padding-right: 30px;
}
/* serviceItemSection */
.serviceItemSection{
    background-color: var(--bgClr);
    border-radius: 7px;
    padding: 15px;
    margin-top: 20px;
}
.coverImage{
    aspect-ratio: 1/.5;
    border-radius: 7px;
}
@media screen and (min-width:769px) {
    .rowSection{
        grid-template-columns: auto auto;
        border-bottom: none;
        justify-content: space-around;
        gap: 80px;
        padding: 40px 20px;
    }
    .rightRow > .rowImage{
        order: 2;
    }
    .rowImage{
        max-width: 450px;
    }
    .rowInfoDiv{
        max-width: 600px;
    }
    .coverImage{
        max-height: 500px;
    }
}