.img-top-container {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.img-top {
    max-width: 1512px;
    margin: auto;
    width: 100%;
    height: 426px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 70px;
}

.img-top > h1 {
    font-family: 'Campus 700';
    font-feature-settings: "case" on;
    font-size: 36px;
    line-height: 54px;
    text-transform: capitalize;
    color: #ffffff;
    margin: 0px;
}

.programs-container {
    max-width: 1512px;
    margin: auto;
    display: grid;
    padding: 80px 70px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px 19px;
}
.programs-container > a {
    text-decoration: none;
    color: inherit;
}
.program {
    background: #f1f1f1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 270px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease-out;
}

.program::before {
    content: "";
    /* background: linear-gradient(137.43deg, #ffd101 36.01%, #24b24c 111.7%); */
    background: #ffd101;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 8px;
}

.program:hover {
    background: transparent;
}

.program-yellow {
    background: #ffd101;
}

.program h2 {
    font-family: "Campus 600";
    font-feature-settings: "case" on;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 28px;
    margin: 0px;
}




/* R E S P O N S I V E */

@media screen and (max-width: 1199px) {
    .img-top {
        padding: 60px 45px 60px;
        height: 400px;
    }

    .programs-container {
        padding: 24px 45px;
        gap: 8px;
    }

}
/* 
@media screen and (max-width: 1024px) {
    .programs-container {
      grid-template-columns: 1fr 1fr 1fr;
    }
} */

@media screen and (max-width: 938px) {
    .programs-container {
      grid-template-columns: 1fr 1fr !important;
    }
}

@media screen and (max-width: 768px) {
    .img-top {
        padding: 15px;
        height: 150px;
    }

    .img-top > h1 {
        font-size: 20px;
        line-height: 30px;
    }

    .programs-container {
        padding: 15px !important;
        grid-template-columns: 1fr !important;
    }

    .program {
        padding: 24px 15px;
        height: min-content;
    }

    .program h2 {
        font-size: 18px;
    }
}