.vcImageContainer{
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.vcImageContainer::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #0000009c;
}

.vcImageContainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vcImgContContent{
    position: absolute;
    margin: auto;
    color: var(--colorfff);
    top: 0px;
    left: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vcImgContContent p:first-child{
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.vcImgContContent p:last-child{
    font-size: 2.2rem;
}

.vcHomeCont1{
    background-color: #d7d7d7;
}

.vcHomeDiv1{
    display: flex;
    padding: 20px 0px;
    justify-content: space-evenly;
}

.vcHomeDiv1 .vcHomeDiv1Item .vcNum{
    color: var(--additionalSecondaryColor);
}

.vcHomeDiv1 .vcHomeDiv1Item p:last-child{
    font-size: 1.8rem;
}

.vcSubHeading{
    font-size: 2.0rem;
    width: fit-content;
    margin: auto;
    font-family: var(--vcFontBold);
    position: relative;
    margin-bottom: 30px;
}

.vcSubHeading::after{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    top: 100%;
    margin-top: 8px;
    background-color: var(--primaryColor);
}

.vcAboutUsCont{
    padding: 0px 15%;
    text-align: center;
    line-height: 1.4;
}

.vcTrendingCoursesCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin-top: 40px;
}

.vcTrendCoursDiv{
    max-width: 320px;
    background-color: var(--colorfff);
    box-shadow: 0px 0px 1px 3px #d4d4d486;
    border-radius: 6px;
    overflow: hidden;
}

.vcTcImgCont{
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcTcImgCont img{
    width: 100%;
    max-height: 320px;
    max-width: 320px;
}

.vcTcHeading{
    padding: 10px;
    font-size: 1.8rem;
    text-align: center;
}