.adjust {
    height: 112px;
}

.hero {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../image/index-hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 25dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card {
    width: 100%;
    border-radius: 6px;
    height: 100%;
    border: 1px solid lightgray;
}

.blog-card-img {
    width: 100%;
    object-fit: cover !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.sub-header {
    font-weight: 600;
}

.blog-card-anchor {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    border: none;
    padding: 8px 30px;
    background: var(--color-2);
    color: white;
    font-weight: 500;
    letter-spacing: 3px;
}

.blog-card-anchor:hover {
    background: var(--color-3);
}

.content {
    width: 100%;
    background: white;
}

.enroll-anchor{
    text-decoration: none;
    background: var(--color-2);
    color: white;
    letter-spacing: 3px;
    padding: 12px 40px;
    border: none;
    font-weight: 600;

    &:hover{
        background: var(--color-3);
        color: black;
    }
}

@media (max-width:992px) {
    .adjust {
        height: 70px;
    }
}