/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

#submit-loading {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, .4);
  margin: 0;
  padding: 0;
  z-index: 9999;    
}

#submit-loading div {
  opacity: 25%;
}

p:empty {
  height: 0!important;
  padding: 0!important;
  margin: 0!important;
  width: 0!important;
}
/* ------------------- */
/*        setup        */
/* ------------------- */
:root{
    --light-green: #A2E784;
    --green: #5AB035;
    --light-blue: #6CD6FF;
    --light-blue-2: #DCF1F9;
    --blue: #2397C4;
    --black: #181D27;
    --grey: #929292;
    --txt-color: #535862;
    --dark-teal: #395C6B;
    --century-old: century-old-style-std, serif;
    --roboto: "Roboto", sans-serif;
}
body{
    background-color: var(--milk);
}
body *{
    font-family: var(--roboto);
}
body a{
    text-decoration: none;
}
.mw-280{
    max-width: 280px;
}
.mw-480{
    max-width: 480px;
}
.mw-576{
    max-width: 576px;
}
.mw-lg-576{
    width: 100%;;
}
.mw-668{
    max-width: 688px;
}
.mw-768{
    max-width: 768px;
}
.mw-lg-768{
    width: 100%;
}
.mw-991{
    width: 100%;
    max-width: 991px;
}
.mw-1024{
    width: 100%;
    max-width: 1024px;
}
.row-gap-64{
    row-gap: 64px;
}
h1,h2,h3,h4,h5{
    margin-bottom: 0;
}
.section-p{
    padding-top: 64px;
    padding-bottom: 64px;
}
.single-p{
    padding-bottom: 64px;
}
.bg-teal{
    background-color: var(--dark-teal);
}
.bg-light-blue-2{
    background-color: var(--light-blue-2);
}
.fc-white{
    color: #ffffff !important;
}

/* section titles */
.section-title h2{
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 24px;
}
/* section titles */
.rich-text h2{
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 18px;
}
.section-title p,
.section-title ul,
.section-content p,
.section-content ul,
.rich-text p,
.rich-text ul{
    color: var(--txt-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.section-title .section-link,
.section-content .section-link,
.rich-text .section-link{
    color: var(--primary);
}
.section-title p a,
.section-content p a,
.rich-text p a{
    text-decoration: underline 2px transparent;
    transition: text-decoration-color 0.2s ease;
}
.section-title p a:hover,
.section-content p a:hover,
.rich-text p a:hover{
    text-decoration: underline 2px var(--dark-teal);
}

/* large image container */
.large-img-container {
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.large-img-container img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
}

/* small image container */
.small-img-container {
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    position: relative;
}
.small-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* full width image */
.full-width-img{
    width: 100%;
    max-width: 1216px;
    height: 100%;
    max-height: 200px;
}
.full-width-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    overflow: hidden;
}
.full-width-img figcaption{
    color: var(--dark-teal);
    font-size: 16px;
    font-weight: 700;
    margin-left: 16px;
    margin-top: 12px;
}

/* Skip to main content */
.skip-to-main-content {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1em;
    background-color: black;
    color: #fff;
    opacity: 0;
}
.skip-to-main-content:focus {
    left: 50%;
    top: 1%;
    transform: translateX(-50%);
    opacity: 1;
    border: 1px solid red;
}

/* buttons */
.jhk-btn-green{
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--light-green);
    background-color: var(--green);
    color: var(--black);
    font-weight: 600;
    white-space: nowrap;
}
.btn:first-child:active,
.jhk-btn-green:hover,
.jhk-btn-green:focus-visible{
    border: 1px solid var(--green);
    background-color: var(--light-green);
}
.jhk-btn-teal{
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--blue);
    background-color: var(--dark-teal);
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}
.jhk-btn-teal:hover,
.jhk-btn-teal:focus-visible{
    border: 1px solid var(--blue);
    background-color: var(--light-blue);
    color: var(--black);
}

.section-divider{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-divider div{
    height: 1px;
    background-color: #E9EAEB;
    width: 100%;
    max-width: 1300px;
    padding: 0px 32px;
    align-self: center;
}


/* navigation bar */
.navbar-brand{
    display: flex;
    flex-direction: row;
    column-gap: 8px;
}
.navbar-brand span{
    display: block;
    font-family: var(--century-old);
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}
.navbar-brand small{
    font-size: 12px;
    font-weight: 400;
    font-family: var(--century-old);
    color: #ffffff;
}
.navbar-brand img{
    width: 72px;
    object-fit: contain;
}
.jhk-nav .navbar{
    background-color: var(--dark-teal);
    padding: 18px 0;
}
.jhk-nav .offcanvas{
    background-color: var(--dark-teal);
}
.jhk-nav .navbar-nav{
    column-gap: 8px;
}
.jhk-nav .nav-link{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    opacity: 1;
    -webkit-box-shadow: inset 0px 0px 0px 0px #fff;
    box-shadow: inset 0px 0px 0px 0px #fff;
    transition: box-shadow 0.2s ease;
}
.navbar-nav .nav-link.active,
.jhk-nav .nav-link:hover{
    -webkit-box-shadow: inset 0px -4px 0px -1px #fff;
    box-shadow: inset 0px -4px 0px -1px #fff;
}
.jhk-nav .nav-link:focus-visible{
    outline: var(--light-blue-2) auto 1px
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show{
    color: #ffffff;
}
.dropdown-item.active,
.dropdown-item:active{
    background-color: var(--dark-teal);
}
.jhk-nav .navbar-toggler{
    color: #ffffff;
    padding: 10px;
    border-color: #ffffff;
}
/* lang switch */
.lang-toggle{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
}
.lang-toggle span{
    color: #ffffff;
}
.lang-switch {
    display: flex;
    flex-direction: row;
    column-gap: 1px;
    background-color: var(--light-green);
    border-radius: 8px;
    justify-content: center;
    border: 1px solid var(--light-green);
}
.lang-switch a {
    background-color: var(--light-green);
    padding: 5px 8px;
    color: var(--primary);
    font-weight: 400;
    font-size: 12px;
    transition: background-color 0.2s ease;
}
.lang-switch a:hover,
.lang-switch:focus-visible {
    background-color: var(--green);
    color: var(--black);
}
.lang-switch a.active {
    background-color: var(--green);
    color: var(--black);
    font-weight: 700;
}
.lang-switch a:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.lang-switch a:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.offcanvas-header .btn-close{
    background-image: none;
    color: #ffffff;
    font-size: 18px;
    opacity: 1;
}
.offcanvas.show .nav-item .dropdown-menu{
    background-color: transparent;
    border: none;
}
.offcanvas.show .nav-item .dropdown-menu .dropdown-item{
    color: #fff;
}

/* -------------- */
/*    homepage    */
/* -------------- */
.home-banner{
    background-color: var(--light-blue-2);
    padding-top: 78px;
    display: flex;
    flex-direction: column;
}
/*.home-banner > div:first-child{*/
/*    padding: 48px 0;*/
/*}*/
.home-banner img{
    max-height: 400;
    width: 100%;
    object-fit: cover;
}
.home-banner h1{
    font-size: 36px;
    line-height: 44px;
    font-weight: 900;
    margin-bottom: 16px;
}
.home-banner p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 32px;
}
.foundation-numbers{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.foundation-numbers div{
    width: 100%;
    max-width: 280px;
    text-align: center;
}
.foundation-numbers img{
    width: 100%;
    object-fit: contain;
}
.foundation-numbers h3{
    color: var(--blue);
    font-size: 56px;
    font-weight: 900;
    line-height: 64px;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}
.foundation-numbers span{
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}
.foundation-numbers p{
    color: var(--txt-color);
    font-size: 16px;
    line-height: 24px;
}

.home-quick-link{
    background-color: var(--light-green);
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    border-radius: 24px;
    transition: background-color 0.2s ease;
    padding: 16px;
    margin-left: auto;
    margin-right: auto;
}
.home-quick-link:hover,
.home-quick-link:focus-visible{
    background-color: var(--light-blue);
}
.home-quick-link img{
    width: 100%;
    /* height: 440px; */
    height: 340px;
    border-radius: 16px;
    object-fit: cover;
}
.home-quick-link h3{
    color: var(--black);
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}
/* CTA */
.txt-cta{
    /* align-items: center; */
    background-color: var(--light-blue-2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
    /* text-align: center; */
    width: 100%;
}

/* -------------- */
/*     footer     */
/* -------------- */
footer{
    padding-top: 64px;
    padding-bottom: 48px;
}
.footer-logo{
    width: 100%;
    max-width: 280px;
    display: block;
}
.footer-logo img{
    width: 100%;
    object-fit: contain;
}
footer h5{
    color: var(--light-green);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
}
footer .footer-nav-item ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
footer .footer-nav-item li a{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.footer-end{
    margin-top: 32px;
}
.footer-end *{
    color: #ffffff;
}
.footer-end p{
    font-family: var(--century-old);
    font-size: 20px;
    font-weight: 700;
}
.footer-end > div div{
    font-size: 16px;
    font-weight: 400;
}

/* -------------- */
/* subpage banner */
/* -------------- */
.subpage-banner{
    padding-top: 142px;
    background-color: var(--light-blue-2);
    padding-bottom: 64px;
}
.subpage-banner h1{
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
}

/* about us board of governors */
.user-info{
    gap: 24px;
}
.user-info img{
    width: 240px;
    height: 240px;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
}
.user-info h2{
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.user-info span{
    color: var(--dark-teal);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.user-info .bio-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    align-self: stretch;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--txt-color);
    margin-top: 12px;
}
.user-info .read-more-btn{
    color: var(--dark-teal);
    font-weight: 700;
    text-decoration: underline 2px transparent;
    transition: text-decoration-color 0.2s ease;
    margin-top: 12px;
}
.user-info .read-more-btn:hover,
.user-info .read-more-btn:focus-visible{
    text-decoration: underline 2px var(--dark-teal);
}
.user-info .read-more-btn i{
    display: inline;
}
.user-modal .modal-header{
    background-color: var(--dark-teal);
}
.user-modal .btn-close{
    color: #ffffff;
    background-image: none;
    transition: opacity 0.2s ease;
}
.user-modal h5{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}
.user-modal small{
    font-size: 16px;
    color: var(--dark-teal);
    line-height: 24px;
}
.user-modal .modal-body div{
    padding-top: 16px;
    color: var(--txt-color);
    font-size: 16px;
    line-height: 24px;
}
.highlighted-title h2{
    color: var(--dark-teal);
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.96px;
}

/* ---------------- */
/*    recipients    */
/* ---------------- */
.recipient-table{
    display: flex;
    flex-direction: column;
}
.recipient-table .head{
    background-color: var(--dark-teal);
    text-align: center;
    padding: 16px 24px;
}
.recipient-table .head h2{
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
}
.recipient-table .body {
    display: grid;
    gap: 0;
    /* border: 1px solid #dee2e6; */
}
.recipient-item {
    padding: 15px;
    border: 0.5px solid #dee2e6;
    font-size: 16px;
    color: var(--black);
    transition: background-color 0.2s ease;
}
.recipient-table .recipient-item:hover{
    background-color: var(--light-blue-2);
}
.recipient-table .body {
    grid-template-columns: repeat(1, 1fr);
}
.recipient-item:nth-child(odd) {
    background-color: #f8f9fa;
}

/* ------------------- */
/*  application pages  */
/* ------------------- */
.application-info-item{
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 480px;
}
.application-info-item .number{
    width: 48px;
    height: 48px;
    align-content: center;
    border-radius: 28px;
    border: 4px solid rgba(108, 214, 255, 0.20);
    background: rgba(108, 214, 255, 0.70);
    -webkit-box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    font-weight: 700;
    font-size: 18px;
}
.application-info-item h3{
    color: var(--black);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.application-info-item p{
    font-size: 16px;
    line-height: 24px;
    color: var(--txt-color);
}
.application-info-item p a{
    text-decoration: underline;
    color: var(--txt-color);
    font-weight: 600;
}
/* ---------------- */
.choice-screen h2{
    color: var(--dark-teal);
    font-size: 24px;
    line-height: 32px;
}
.choice-screen div{
    margin-top: 24px;
}
.bursary-award-form p{
    color: var(--txt-color);
}
.form-label{
    color: #344054;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
input.form-control{
    padding: 10px 14px;
}
input.form-control:focus,
textarea.form-control:focus,
.form-select:focus{
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--light-blue-2);
}
.btn-link{
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration-color: transparent;
    transition: text-decoration 0.2s ease;
    text-decoration-thickness: 2px;
}
.btn-link:hover{
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration-color: var(--dark-teal);
}
.bursary-award-form h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--dark-teal);
}

/* ---------------- */
/*     faq page     */
/* ---------------- */
.faq-section .accordion{
    border: none;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.faq-section .accordion-item{
    border: none;
}
.faq-section .accordion-item:not(:first-child){
    border-top: 1px solid #EAECF0;
}
.faq-section .accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    border-radius: 12px;
}
.faq-section .accordion-item h2 button{
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    border-radius: 12px;
    margin-top: 12px;
    display: flex;
    column-gap: 16px;
}
.faq-section .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
}
.faq-section .accordion-body{
    color: var(--txt-color);
    font-size: 18px;
    line-height: 28px;
}
.faq-section .accordion-body a{
    color: var(--txt-color);
    text-decoration: underline;
    font-weight: 600;
}
.faq-section .accordion-button.collapsed:hover{
    background-color: var(--light-blue-2);
}
.faq-section .accordion-button:focus{
    box-shadow: 0 0 0 4px var(--light-blue-2);
}

/* ---------------- */
/*   contact page   */
/* ---------------- */
.contact-item{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.contact-item .icon{
    width: 48px;
    height: 48px;
    align-content: center;
    border-radius: 28px;
    border: 4px solid rgba(108, 214, 255, 0.20);
    background: rgba(108, 214, 255, 0.70);
    -webkit-box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    font-weight: 700;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
}
.contact-item h2{
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
}
.contact-item .content{
    color: var(--txt-color);
}
.contact-item .content a{
    color: var(--txt-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}
.contact-item .content a:hover{
    color: var(--blue);
}
.contact-item .content ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.form-label{
    margin-bottom: 6px;
}
.form-label span{
    color: red;
    display: inline-block;
}
textarea.form-control{
    height: 135px;
    resize: none;
}


.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

/* cookie banner */
.cookie-banner{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background-color: var(--dark-teal);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}
.cookie-banner-visible{
    transform: translateY(0);
}
.cookie-banner-hidden{
    transform: translateY(100%);
}
.cookie-banner-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}
.cookie-banner-text{
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}
.cookie-banner-actions{
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-banner-btn{
    padding: 10px 20px;
    font-size: 0.9rem;
}
@media (max-width: 767px){
    .cookie-banner-inner{
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions{
        width: 100%;
        justify-content: center;
    }
}

/* home banner updates */
.home-banner{
    padding-top: 155px;
    padding-bottom: 64px;
    img{
        max-height: 520px;
        margin-top: 64px;
        border-radius: 16px;
    }
}
@media screen and (min-width: 375px) {

}
/* Phablet */
@media screen and (min-width: 425px) {
    /* large image container */
    .large-img-container {
        height: 320px;
    }
    /* small image container */
    .small-img-container {
        height: 320px;
    }
    /* full width image */
    .full-width-img{
        max-height: 320px;
    }
}
@media screen and (max-width: 575px) {
}
@media screen and (min-width: 576px) {
    .home-quick-link{
        padding: 24px;
    }
    /* small image container */
    .small-img-container {
        height: 400px;
    }
}

/* Tablet */
@media screen and (min-width: 768px) {
    .section-p{
        padding-top: 96px;
        padding-bottom: 96px;
    }
    .section-p h2{
        font-size: 36px;
        line-height: 44px;
    }
    .single-p{
        padding-bottom: 96px;
    }
    .section-title h2{
        font-size: 36px;
        line-height: 44px;
    }
    .rich-text h2{
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 24px;
    }
    .section-title p,
    .section-title ul,
    .section-content p,
    .section-content ul,
    .rich-text p,
    .rich-text ul{
        font-size: 18px;
        line-height: 28px;
    }

    .section-title h2{
        font-size: 36px;
        line-height: 44px;
    }
    .section-title p,
    .section-title ul,
    .section-content p,
    .section-content ul,
    .rich-text p{
        font-size: 18px;
        line-height: 28px;
    }

    /* large image container */
    .large-img-container {
        height: 400px;
    }

    /* CTA */
    .txt-cta{
        padding: 64px;
    }

    /* subpage banner */
    .subpage-banner h1{
        font-size: 48px;
        line-height: 60px;
    }

    /* full width image */
    .full-width-img{
        max-height: 380px;
    }

    /* user info bio */
    .user-info h2{
        font-size: 18px;
        line-height: 28px;
    }

    /* scholarship */
    .highlighted-title h2{
        font-size: 36px;
        line-height: 44px;
    }

    /* all recipients */
    .recipient-table .body {
        grid-template-columns: repeat(2, 1fr);
    }
    .recipient-item:nth-child(even), .recipient-item:nth-child(odd) {
        background: transparent;
    }
    .recipient-item:nth-child(4n),
    .recipient-item:nth-child(4n-1) {
        background-color: #f8f9fa;
    }

    /* application pages */
    .choice-screen h2{
        color: var(--dark-teal);
        font-size: 32px;
        line-height: 40px;
    }

    /* faq page */
    .faq-section .accordion-item h2 button{
        font-size: 24px;
        line-height: 38px;
    }

    .contact-item h2{
        font-size: 18px;
        line-height: 28px;
    }
}


/* Laptop */
@media screen and (min-width: 992px) {
    .mw-lg-576{
        max-width: 576px;
    }
    .mw-lg-768{
        max-width: 768px;
    }

    /* homepage */

    .home-quick-link{
        padding: 16px;
    }

    /* large image container */
    .large-img-container {
        height: 654px;
    }

    /* subpage banner */
    .subpage-banner{
        padding-top: 172px;
        padding-bottom: 96px;
    }

    /* full width image */
    .full-width-img{
        max-height: 480px;
    }

    /* all recipients */
    .recipient-table .body{
        grid-template-columns: repeat(3, 1fr);
    }
    .recipient-item:nth-child(odd), .recipient-item:nth-child(even){
        background: transparent;
    }
    .recipient-item:nth-child(6n),
    .recipient-item:nth-child(6n-1),
    .recipient-item:nth-child(6n-2){
        background-color: #f8f9fa;
    }
}

/* Small screen */
@media screen and (min-width: 1200px) {

    .home-banner h1{
        font-size: 56px;
        line-height: 64px;
    }
    .home-quick-link{
        padding: 24px;
    }
    .home-quick-link img{
        height: 440px;
    }

    /* full width image */
    .full-width-img{
        max-height: 560px;
    }

    /* scholarship */
    .highlighted-title h2{
        font-size: 48px;
        line-height: 60px;
    }

    /* all recipients */
    .recipient-table .body{
        grid-template-columns: repeat(4, 1fr);
    }
    .recipient-item:nth-child(n){
        background: transparent;
    }
    .recipient-item:nth-child(8n),
    .recipient-item:nth-child(8n-1),
    .recipient-item:nth-child(8n-2),
    .recipient-item:nth-child(8n-3){
        background-color: #f8f9fa;
    }
}

/* Large screen */
@media screen and (min-width: 1400px) {
    .home-quick-link h3{
        font-size: 24px;
        line-height: 32px;
    }
}
/* ultra large */
@media screen and (min-width:1536px) {
}
