/* =========================================================
   IICEA COURSES PAGE
========================================================= */

.iicea-courses-page {

    width: 100%;
    margin: 0;
    padding: 0;

    background: #ffffff;

    font-family: 'Acme', sans-serif;

    overflow: hidden;

}


/* =========================================================
   CONTAINER
========================================================= */

.iicea-courses-container {

    width: 100%;

    max-width: 1550px;

    margin: 0 auto;

    padding-left: 5%;
    padding-right: 5%;

    box-sizing: border-box;

}


/* =========================================================
   PAGE HEADING
========================================================= */

.iicea-courses-header {

    width: 100%;

    padding: 65px 0 45px;

    background: #ffffff;

}


.iicea-courses-heading {

    text-align: center;

}


.iicea-courses-heading h1 {

    margin: 0;
    padding: 0;

    color: #080808;

    font-family: 'Acme', sans-serif;

    font-size: clamp(48px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: 0;

}


.iicea-courses-heading h1 span {

    color: #0786f7;

}


.iicea-courses-heading-line {

    width: 190px;

    height: 4px;

    margin: 16px auto 22px;

    background: #1dc4e8;

}


.iicea-courses-heading p {

    max-width: 800px;

    margin: 0 auto;

    padding: 0;

    color: #555555;

    font-family: 'Acme', sans-serif;

    font-size: 22px;

    font-weight: 400;

    line-height: 1.45;

}


/* =========================================================
   COURSES SECTION
========================================================= */

.iicea-courses-section {

    width: 100%;

    padding: 10px 0 80px;

    background: #ffffff;

}


/* =========================================================
   4 × 2 GRID
========================================================= */

.iicea-courses-grid {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    column-gap: 32px;

    row-gap: 32px;

}


/* =========================================================
   COURSE CARD
========================================================= */

.iicea-course-card {

    position: relative;

    width: 100%;

    min-height: 415px;

    padding: 0 25px 30px;

    box-sizing: border-box;

    text-align: center;

    background: #ffffff;

    border-top: 4px solid #0786f7;

    border-radius: 4px;

    overflow: hidden;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.09);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


/* =========================================================
   CARD HOVER
========================================================= */

.iicea-course-card:hover {

    transform: translateY(-7px);

    border-top-color: #ffd800;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);

}


/* =========================================================
   COURSE IMAGE
========================================================= */

.iicea-course-image {

    width: calc(100% + 50px);

    height: 165px;

    margin-left: -25px;

    margin-top: 0;

    margin-bottom: 25px;

    overflow: hidden;

    background: #eaf7ff;

}


/* =========================================================
   IMAGE
========================================================= */

.iicea-course-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;

}


/* =========================================================
   IMAGE HOVER
========================================================= */

.iicea-course-card:hover
.iicea-course-image img {

    transform: scale(1.07);

}


/* =========================================================
   COURSE TITLE
========================================================= */

.iicea-course-card h2 {

    min-height: 58px;

    margin: 0;

    padding: 0;

    color: #222222;

    font-family: 'Acme', sans-serif;

    font-size: 26px;

    font-weight: 400;

    line-height: 1.18;

    letter-spacing: 0;

}


/* =========================================================
   SMALL CYAN LINE
========================================================= */

.iicea-course-small-line {

    width: 65px;

    height: 3px;

    margin: 13px auto 16px;

    background: #1dc4e8;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.iicea-course-card p {

    min-height: 70px;

    max-width: 295px;

    margin: 0 auto 22px;

    padding: 0;

    color: #5a5a5a;

    font-family: 'Acme', sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.45;

    letter-spacing: 0;

}


/* =========================================================
   VIEW COURSE BUTTON
========================================================= */

.iicea-course-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 145px;

    height: 43px;

    padding: 0 18px;

    box-sizing: border-box;

    color: #ffffff;

    background: #0786f7;

    border-radius: 3px;

    text-decoration: none;

    font-family: 'Acme', sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;

}


.iicea-course-button i {

    font-size: 13px;

}


.iicea-course-button:hover {

    color: #111111;

    background: #ffd800;

    transform: translateY(-2px);

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.iicea-courses-cta {

    width: 100%;

    padding: 55px 0;

    background:
        linear-gradient(
            110deg,
            #0786f7 0%,
            #087bd3 48%,
            #11b9d0 100%
        );

}


.iicea-courses-cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


.iicea-courses-cta-text span {

    display: block;

    margin-bottom: 8px;

    color: #ffd800;

    font-family: 'Acme', sans-serif;

    font-size: 16px;

    letter-spacing: 1.5px;

}


.iicea-courses-cta-text h2 {

    margin: 0;

    padding: 0;

    color: #ffffff;

    font-family: 'Acme', sans-serif;

    font-size: clamp(30px, 3vw, 44px);

    font-weight: 400;

    line-height: 1.15;

}


.iicea-courses-cta-text h2 strong {

    color: #ffd800;

    font-weight: 400;

}


/* =========================================================
   CTA BUTTON
========================================================= */

.iicea-courses-cta-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-width: 190px;

    height: 55px;

    padding: 0 25px;

    box-sizing: border-box;

    color: #111111;

    background: #ffffff;

    border-radius: 3px;

    text-decoration: none;

    font-family: 'Acme', sans-serif;

    font-size: 19px;

    font-weight: 400;

    transition: .25s ease;

}


.iicea-courses-cta-button:hover {

    color: #ffffff;

    background: #050d4d;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

    .iicea-courses-grid {

        grid-template-columns: repeat(2, 1fr);

        column-gap: 25px;

        row-gap: 25px;

    }


    .iicea-course-card {

        min-height: 410px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .iicea-courses-container {

        padding-left: 20px;

        padding-right: 20px;

    }


    .iicea-courses-header {

        padding: 50px 0 35px;

    }


    .iicea-courses-heading h1 {

        font-size: 46px;

    }


    .iicea-courses-heading p {

        font-size: 18px;

        line-height: 1.4;

    }


    .iicea-courses-section {

        padding-bottom: 55px;

    }


    .iicea-courses-grid {

        grid-template-columns: 1fr;

        gap: 24px;

    }


    .iicea-course-card {

        min-height: auto;

        padding: 0 20px 30px;

    }


    .iicea-course-image {

        width: calc(100% + 40px);

        height: 180px;

        margin-left: -20px;

        margin-bottom: 24px;

    }


    .iicea-course-card h2 {

        min-height: auto;

        font-size: 25px;

    }


    .iicea-course-card p {

        min-height: auto;

        font-size: 16px;

    }


    .iicea-courses-cta {

        padding: 45px 0;

    }


    .iicea-courses-cta-box {

        flex-direction: column;

        text-align: center;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .iicea-courses-heading h1 {

        font-size: 40px;

    }


    .iicea-courses-heading p {

        font-size: 17px;

    }


    .iicea-course-image {

        height: 165px;

    }


    .iicea-course-card h2 {

        font-size: 24px;

    }


    .iicea-courses-cta-text h2 {

        font-size: 31px;

    }

}

