/**/ /**/ /**/
/**/ /**/ /**/
/**/ /*Navigation*/ /**/
/**/ /**/ /**/
/**/ /**/ /**/



nav.scrolled {
    background-color: white;
}


.bg-faded {
    background-color: transparent;
    transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 768px) {
    .bg-faded {
        background: #333;
    }
}

.navbar-brand img {
    width: 150px;
}

.navbar-light .navbar-nav .nav-link {
    color: #190418;
    font-size: 13px;
    font-weight: 600;
    padding: 0 15px;
    text-transform: capitalize;
}

.services-item{
    position: relative;
}
.services-item a {
    cursor:pointer;
}
.services-sub-links{
    top: 219%;
    position: absolute;
    display: flex;
    flex-direction: column;
    background: #E2E2E2;
    padding: 15px 18px;
    border-radius: 4px;
    gap: 10px;
}
.nav-sub-link:hover{
    color: #f92cb1;
}
.nav-sub-link{
    color: #190418;
    font-family: "Ubuntu",sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 99%;
}
.sub-links-hidden{
    display: none;
}
@media (max-width: 767px) {
    .navbar .container{
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto; /* two rows: top and bottom */
        grid-template-areas:
        "top1 top2"
        "bottom bottom";
    }
    .navbar .container > :nth-child(1) {
        grid-area: top1;
    }

    .navbar .container > :nth-child(2) {
        grid-area: top2;
        justify-self: end;
    }

    .navbar .container > :nth-child(3) {
        grid-column: 1 / -1; /* puts it on a new row */
        justify-self: center; /* centers the element itself */
        width: fit-content;     }

    .services-sub-links{
        position: relative;
        gap: 16px;
        background: #FFFFFF;
        padding: 5px 0 15px;
        margin-left: 10px;
    }
    .nav-item{
        text-align: left;
    }
}

@media only screen and (max-width: 480px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 8px 0;
    }
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #F92CB1 !important;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .open > .nav-link {
    color: #F92CB1 !important;
}

.navbar-light .navbar-toggler {
    border-color: #fff;
    border-radius: 0;
}

.navbar-light .navbar-toggler {
    float: right;
    margin: 14px;
    cursor: pointer;
    background-color: #F92CB1;
    border-color: #F92CB1;
    border-radius: 0;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox=\'0 0 32 32\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath stroke=\'rgba(0, 0, 0, 0.5)\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 8h24M4 16h24M4 24h24\'/%3E%3C/svg%3E");
}

.navbar-light .navbar-toggler i {
    color: #666 !important;
}

.site-navigation {
    border-radius: 0;
}

@media only screen and (max-width: 480px) {
    .collapse.show {
        display: block;
        padding: 0 !important;
    }
}

.navbar-fixed {
    z-index: 99999;
    position: fixed;
    width: 100%;
    padding: 10px 0;
    top: 0;
    -webkit-animation: fadeInDown 800ms;
    animation: fadeInDown 800ms;
    -webkit-backface-visibility: hidden;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    .navbar-fixed {
        background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
    }
}

.navbar-fixed.navbar-light .navbar-nav .nav-link {
    color: #333;
}

@media only screen and (max-width: 768px) {
    .navbar-fixed.navbar-light .navbar-nav .nav-link {
        color: #333;
    }
}


/* Standard-Styling für die Navbar */
.navbar {
    padding: 10px 20px;
    background-color: transparent; /* Falls du einen transparenten Hintergrund möchtest */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Logo, das oben sichtbar ist */
.logo-top {
    display: block; /* Sichtbar, wenn die Seite oben ist */
}

/* Normales Logo, das versteckt wird */
.logo-normal {
    display: none; /* Versteckt am Anfang */
}

/* Wenn der Benutzer gescrollt hat */
.scrolled .logo-top {
    display: none; /* Das obere Logo wird ausgeblendet */
}

.scrolled .logo-normal {
    display: block; /* Das normale Logo wird angezeigt */
}

/* Optional: Anpassungen für die Navbar-Toggler, um das Logo gut zu positionieren */
.navbar-toggler {
    color: white;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    margin-right: auto;
}

.navbar-toggler {
    margin-left: auto;
    align-self: center;
}



/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
/**/ /*Course Detail Header*/ /**/
/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
.course-detail-4grands-wrapper{
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.course-detail-4grands-header{
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
}
.course-detail-4grands-course-meta{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.course-detail-4grands-course-thumbnail{
    width: 178px;
    height: 31px;
}
.course-detail-4grands-course-id{
    font-family: "Oxygen",sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 127%;
    text-transform: capitalize;
}

.course-detail-4grands-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.course-detail-4grands-content-wrapper{
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
}
.course-detail-4grands-intro{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.course-detail-4grands-course-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 127%;
    text-transform: capitalize;
    margin: 0;
}
.course-detail-4grands-target-audience{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 127%;
    text-transform: capitalize;
}
.course-detail-4grands-btn-enroll{
    background-color: #8969F6;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 127%;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    max-width: 355px;
    padding: 23px;
    border-radius: 105px;
    border: none;
    outline: none!important;
    cursor: pointer;
}

.course-detail-4grands-link-free-advice{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 127%;
    text-transform: capitalize;
    text-decoration: underline!important;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    color: #FFFFFF;
}
.course-detail-4grands-decorative-image{
    position: relative;
}
.course-detail-4grands-circles-svg{
    position: absolute;
    right: 15%;
    top: 0;
}

.course-detail-4grands-course-highlights{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 2.5px solid #666666;
    width: 100%;
    border-radius: 10px;
    padding: 48px;
    background: #211E24;
    z-index: 1;

}
.course-detail-4grands-highlight{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.course-detail-4grands-highlight-icon{

}
.course-detail-4grands-highlight-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 127%;
}
.course-detail-4grands-highlight-text span{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 127%;
}


/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
/**/ /*Course Detail Outcomes*/ /**/
/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
.course-detail-4grands-outcomes{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.course-detail-4grands-outcomes-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    margin: 0;
}
.course-detail-4grands-outcomes-list{
    list-style-type: none;
    display: flex;
    gap: 20px;
    flex-direction: column;

}
.course-detail-4grands-outcome-item{
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 121%;
    display: flex;
    align-items: center;
    gap: 20px;
}


/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
/**/ /*Course Detail Learning Section*/ /**/
/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
.course-detail-4grands-learning-section{
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    min-height: 528px;
    height: 100%;
}

.course-detail-4grands-learning-wrapper{
    display: flex;
    flex-direction: column;
    background: #F8EBFE;
    position: relative;
    border-radius: 6px;
    color: #161616;
    padding: 30px 50px;
    gap: 30px;
    z-index: 4;
    overflow: hidden;
}
.course-detail-4grands-learning-title{
    margin: 0;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    color: #161616;
}
.course-detail-4grands-module-list{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.course-detail-4grands-module{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.course-detail-4grands-module-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    color: #161616;
}
.course-detail-4grands-module-title span {
    font-weight: 700;
}
.course-detail-4grands-module-description{
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
}
.course-detail-4grands-module-decor{
    position: absolute;
    bottom: 0;
    right: 0;
}




.course-detail-4grands-contact-enroll{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.course-detail-4grands-course-dates{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #F8EBFE;
    color: #161616;
    padding: 30px 60px;
    border-radius: 6px;
    max-height: 218px;
}
.course-detail-4grands-course-dates-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;

}
.course-detail-4grands-course-dates-range{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
}
.course-detail-4grands-btn-enroll-secondary-wrapper{
    display: flex;
}
.course-detail-4grands-btn-enroll-secondary{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 127%;
    text-align: center;
    text-transform: capitalize;
    background: #8969F6;
    color: #fff;
    outline: none!important;
    border: none;
    border-radius: 105px;
    padding: 21px 42px;
    cursor: pointer;
}


.course-detail-4grands-contact-person{
    position: relative;
    background: #F8EBFE;
    border-radius: 6px;
    color: #161616;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px 20px 90px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.course-detail-4grands-contact-person-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
}
.course-detail-4grands-contact-person-info{
    display: flex;
    align-items: center;
    gap: 10px;
}
.course-detail-4grands-contact-person-photo{
    max-height: 40px;
    max-width: 40px;
    border-radius: 50%;
}
.course-detail-4grands-contact-person-name{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
}
.course-detail-4grands-contact-person-background, .course-detail-4grands-contact-person-email, .course-detail-4grands-contact-person-note{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 143%;
    text-transform: capitalize;
}
.course-detail-4grands-contact-decor{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}



/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
/**/ /* Certificates and promotional banners */ /**/
/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/

.course-detail-4grands-expertise-section{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.course-detail-4grands-expertise-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
}
.course-detail-4grands-expertise-cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    color: #161616;
}

.course-detail-4grands-expertise-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #F8EBFE;
    border-radius: 6px;
    max-width: 339px;
    max-height: 552px;
}

.course-detail-4grands-explore-courses-card{
    background: #DBCCE0;
}



.course-detail-4grands-expertise-card-header{
    padding: 30px 30px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.course-detail-4grands-card-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    color: #161616;

}
.course-detail-4grands-card-description{
    display: flex;
    flex-direction: column;
}
.course-detail-4grands-card-label{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 127%;
    text-transform: capitalize;
}
.course-detail-4grands-card-label{

}
.course-detail-4grands-card-text{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 130%;
    text-transform: capitalize;
}

.course-detail-4grands-card-image-wrapper{
    margin-top: 20px;
    position: relative;
}

.course-detail-4grands-qualification-card .course-detail-4grands-card-image-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url("../../assets/img-opt/course-detail/round.svg") no-repeat center / cover;
}

.course-detail-4grands-card-image-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.course-detail-4grands-card-image{
    object-fit: cover;
    z-index: 2;
}

.course-detail-4grands-card-link{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    text-decoration: underline!important;
    text-decoration-style: solid;
}


/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
/**/ /* Career Prospects Section */ /**/
/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/

.course-detail-4grands-career-section{
    display: grid;
    grid-template-columns: 3fr 1fr;
    background: linear-gradient(90deg, #3F102E 0%, #2C224A 51.54%, #16131F 100%);
    border-radius: 18px;
    padding: 40px 50px 70px;
    position: relative;
    overflow: hidden;
}
.course-detail-4grands-career-content{
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 4;
}
.course-detail-4grands-career-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 29px;
    line-height: 145%;
    text-transform: capitalize;
}
.course-detail-4grands-career-list{
    padding-left: 20px;
}
.course-detail-4grands-career-item{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 166%;
}
.course-detail-4grands-career-circle{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.course-detail-4grands-career-illustration {
    position: absolute;
    bottom: -8%;
    right: -60.7%;
    width: 100%;
    height: 100%;
    object-fit: contain; /* makes the image fill the container and crop if necessary */
    z-index: 3;
}



/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
/**/ /* Entry Requirements & Form */ /**/
/**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**//**/ /**/ /**/ /**/ /**/ /**/
.course-detail-4grands-enrollment-section{
    display: grid;
    grid-template-columns: 6fr 5fr;
    background: #F8EBFE;
    color: #161616;
    border-radius: 6px;
}
.course-detail-4grands-entry-requirements{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    /*border-right: 1.5px solid #C5C5C5;*/
    position: relative;
}

.course-detail-4grands-entry-requirements::after {
    content: '';
    position: absolute;
    right: 0; /* border on the right */
    top: 8%; /* start a bit down */
    height: 86%; /* only 60% of the container */
    border-right: 1.5px solid #C5C5C5;
}
.course-detail-4grands-entry-title, .course-detail-4grands-form-title{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    color: #1E1E1E;
}
.course-detail-4grands-entry-details{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.course-detail-4grands-entry-subtitle{
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 109.00000000000001%;
    text-transform: capitalize;
    color: #1E1E1E;
}
.course-detail-4grands-entry-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.course-detail-4grands-entry-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.course-detail-4grands-entry-text{
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 132%;
}

.course-detail-4grands-form-section{
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 30px;

}
.course-detail-4grands-form-wrapper{

}
.course-detail-4grands-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.course-detail-4grands-form-group{
    display: flex;
    flex-direction: column;
}
.course-detail-4grands-form-label{
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 121%;
}
.course-detail-4grands-form-input, .course-detail-4grands-form-textarea{
    padding: 10px 12px;
    outline: none;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 121%;
    border: 0.6px solid #ADADAD;
    background: #FEFEFE;
}
.course-detail-4grands-form-btn-wrapper{
    display: flex;
    justify-content: flex-end;
}
.course-detail-4grands-form-btn{
    background: #8969F6;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 127%;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    outline: none!important;
    border: none;
    border-radius: 105px;
    padding: 10px 36px;
    cursor: pointer;
}
.course-detail-4grands-form-textarea{
    resize: none;
    height: 130px;
}

/* ================= ================= ================= */
/* ================= ================= ================= */
/* ================= Respnosive Design ================= */
/* ================= ================= ================= */
/* ================= ================= ================= */

@media (max-width: 1199px) {
    .course-detail-4grands-expertise-cards{
        grid-template-columns: 1fr;
    }
    /*.course-detail-4grands-expertise-cards > :nth-child(3) {*/
    /*    grid-column: 1 / -1; !* span both columns *!*/
    /*    width: 100%;          !* make it take the full width of the container *!*/
    /*    max-width: 502px;     !* optional: match the width of top elements if they have a fixed width *!*/
    /*    justify-self: center; !* center it if you use max-width *!*/
    /*}*/
    .course-detail-4grands-expertise-card{
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-height: 300px;
        height: 100%;
    }
    .course-detail-4grands-career-illustration{
        bottom: -27%;
        right: -53.7%;
    }
    .course-detail-4grands-card-image-wrapper{
        margin-top: 0;
    }
    .course-detail-4grands-card-image{
        padding: 20px!important;
    }
    .course-detail-4grands-enrollment-section{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .course-detail-4grands-content-wrapper{
        display: flex;
        flex-direction: column;
    }
    .course-detail-4grands-decorative-image{
        display: none;
    }
    .course-detail-4grands-course-highlights{
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .course-detail-4grands-highlight {
        gap: 30px;
    }
    .course-detail-4grands-highlight-text{
        flex-direction: row;
        align-items: center;
    }
    .course-detail-4grands-learning-section{
        grid-template-columns: 1fr;
    }
    .course-detail-4grands-contact-enroll{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .course-detail-4grands-course-dates{
        height: 100%;
    }
    .course-detail-4grands-career-section{
        display: flex;
    }
    .course-detail-4grands-career-illustration{
        display: none;
    }
    .course-detail-4grands-intro{
        z-index: 10;
    }
    .course-detail-4grands-circles-svg{
        right: 0;
    }
    .course-detail-4grands-highlight{
        align-items: center;
    }
}

@media (max-width: 767px) {
    .course-detail-4grands-contact-enroll{
        grid-template-columns: 1fr;
    }
    .course-detail-4grands-card-image {
        padding: 40px!important;
    }
}

@media (max-width: 575px) {
    .course-detail-4grands-btn-enroll {
        max-width: 274px;
        padding: 12px;
    }
    .course-detail-4grands-module-decor{
        right: -13%;
        display: none;
    }
    .course-detail-4grands-card-image-wrapper{
        display: none;
    }
    .course-detail-4grands-expertise-card{
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }
}
@media (max-width: 425px) {
    .course-detail-4grands-btn-enroll-secondary{
        padding: 12px 24px;
    }
    .course-detail-4grands-highlight-text {
        gap: 5px;
    }
    .course-detail-4grands-course-highlights{
        padding: 20px;
    }
    .course-detail-4grands-highlight{
        gap: 10px;
    }
    .course-detail-4grands-highlight-icon{
        height: 24px;
        width: 24px;
    }
}





/* ------------------------------
   FONT-SIZE RESPONSIVE ADJUSTMENTS
------------------------------ */

/* For screens ≤ 1024px (small laptops, tablets landscape) */
@media (max-width: 1024px) {
    .course-detail-4grands-course-id { font-size: 18px; }
    .course-detail-4grands-course-title { font-size: 34px; }
    .course-detail-4grands-target-audience { font-size: 22px; }
    .course-detail-4grands-btn-enroll { font-size: 25px; }
    .course-detail-4grands-link-free-advice { font-size: 18px; }
    .course-detail-4grands-highlight-text { font-size: 22px; }
    .course-detail-4grands-highlight-text span { font-size: 20px; }
    .course-detail-4grands-outcomes-title { font-size: 29px; }
    .course-detail-4grands-outcome-item { font-size: 20px; }
    .course-detail-4grands-learning-title { font-size: 29px; }
    .course-detail-4grands-module-title { font-size: 19px; }
    .course-detail-4grands-module-description { font-size: 16px; }
    .course-detail-4grands-course-dates-title,
    .course-detail-4grands-course-dates-range { font-size: 21px; }
    .course-detail-4grands-btn-enroll-secondary { font-size: 20px; }
    .course-detail-4grands-contact-person-title,
    .course-detail-4grands-contact-person-name { font-size: 21px; }
    .course-detail-4grands-contact-person-background,
    .course-detail-4grands-contact-person-email,
    .course-detail-4grands-contact-person-note { font-size: 16px; }
    .course-detail-4grands-expertise-title { font-size: 29px; }
    .course-detail-4grands-card-title { font-size: 26px; }
    .course-detail-4grands-card-label,
    .course-detail-4grands-card-text,
    .course-detail-4grands-card-link { font-size: 21px; }
    .course-detail-4grands-career-title { font-size: 26px; }
    .course-detail-4grands-career-item { font-size: 17px; }
    .course-detail-4grands-entry-title,
    .course-detail-4grands-form-title { font-size: 29px; }
    .course-detail-4grands-entry-subtitle { font-size: 21px; }
    .course-detail-4grands-entry-text { font-size: 16px; }
    .course-detail-4grands-form-label,
    .course-detail-4grands-form-input,
    .course-detail-4grands-form-textarea { font-size: 12px; }
    .course-detail-4grands-form-btn { font-size: 16px; }
}

/* For screens ≤ 768px (tablets portrait) */
@media (max-width: 768px) {
    .course-detail-4grands-course-id { font-size: 16px; }
    .course-detail-4grands-course-title { font-size: 30px; }
    .course-detail-4grands-target-audience { font-size: 19px; }
    .course-detail-4grands-btn-enroll { font-size: 22px; }
    .course-detail-4grands-link-free-advice { font-size: 16px; }
    .course-detail-4grands-highlight-text { font-size: 19px; }
    .course-detail-4grands-highlight-text span { font-size: 18px; }
    .course-detail-4grands-outcomes-title { font-size: 26px; }
    .course-detail-4grands-outcome-item { font-size: 18px; }
    .course-detail-4grands-learning-title { font-size: 26px; }
    .course-detail-4grands-module-title { font-size: 17px; }
    .course-detail-4grands-module-description { font-size: 15px; }
    .course-detail-4grands-course-dates-title,
    .course-detail-4grands-course-dates-range { font-size: 18px; }
    .course-detail-4grands-btn-enroll-secondary { font-size: 18px; }
    .course-detail-4grands-contact-person-title,
    .course-detail-4grands-contact-person-name { font-size: 19px; }
    .course-detail-4grands-contact-person-background,
    .course-detail-4grands-contact-person-email,
    .course-detail-4grands-contact-person-note { font-size: 15px; }
    .course-detail-4grands-expertise-title { font-size: 26px; }
    .course-detail-4grands-card-title { font-size: 23px; }
    .course-detail-4grands-card-label,
    .course-detail-4grands-card-text,
    .course-detail-4grands-card-link { font-size: 19px; }
    .course-detail-4grands-career-title { font-size: 23px; }
    .course-detail-4grands-career-item { font-size: 15px; }
    .course-detail-4grands-entry-title,
    .course-detail-4grands-form-title { font-size: 26px; }
    .course-detail-4grands-entry-subtitle { font-size: 19px; }
    .course-detail-4grands-entry-text { font-size: 15px; }
    .course-detail-4grands-form-label,
    .course-detail-4grands-form-input,
    .course-detail-4grands-form-textarea { font-size: 11px; }
    .course-detail-4grands-form-btn { font-size: 15px; }
}

/* For screens ≤ 425px (mobile) */
@media (max-width: 425px) {
    .course-detail-4grands-course-id { font-size: 13px; }
    .course-detail-4grands-course-title { font-size: 25px; }
    .course-detail-4grands-target-audience { font-size: 16px; }
    .course-detail-4grands-btn-enroll { font-size: 18px; }
    .course-detail-4grands-link-free-advice { font-size: 13px; }
    .course-detail-4grands-highlight-text { font-size: 16px; }
    .course-detail-4grands-highlight-text span { font-size: 15px; }
    .course-detail-4grands-outcomes-title { font-size: 21px; }
    .course-detail-4grands-outcome-item { font-size: 15px; }
    .course-detail-4grands-learning-title { font-size: 21px; }
    .course-detail-4grands-module-title { font-size: 15px; }
    .course-detail-4grands-module-description { font-size: 13px; }
    .course-detail-4grands-course-dates-title,
    .course-detail-4grands-course-dates-range { font-size: 15px; }
    .course-detail-4grands-btn-enroll-secondary { font-size: 15px; }
    .course-detail-4grands-contact-person-title,
    .course-detail-4grands-contact-person-name { font-size: 15px; }
    .course-detail-4grands-contact-person-background,
    .course-detail-4grands-contact-person-email,
    .course-detail-4grands-contact-person-note { font-size: 13px; }
    .course-detail-4grands-expertise-title { font-size: 21px; }
    .course-detail-4grands-card-title { font-size: 19px; }
    .course-detail-4grands-card-label,
    .course-detail-4grands-card-text,
    .course-detail-4grands-card-link { font-size: 15px; }
    .course-detail-4grands-career-title { font-size: 19px; }
    .course-detail-4grands-career-item { font-size: 13px; }
    .course-detail-4grands-entry-title,
    .course-detail-4grands-form-title { font-size: 21px; }
    .course-detail-4grands-entry-subtitle { font-size: 15px; }
    .course-detail-4grands-entry-text { font-size: 13px; }
    .course-detail-4grands-form-label,
    .course-detail-4grands-form-input,
    .course-detail-4grands-form-textarea { font-size: 10px; }
    .course-detail-4grands-form-btn { font-size: 13px; }
}

a:visited,
a:active,
a:focus {
    color: inherit;     /* Keeps the same color as before */
}

