* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: inherit;
}

*::selection {
    --accentColor: #BA2132;
    background-color: var(--accentColor);
    color: white;
}

:root {
    box-sizing: border-box;
    font-size: 62.5%;
    --body-font: '', sans-serif;
    /* Colors */
    /* --primary-color: #000000; */
    --primary-color: #0077C9;
    /* --primary-color: white; */
    /* --secondary-color: #FFFFFF; */
    --secondary-color: #FDB813;
    --accent-color: #4F4F4F;
    --accent-color: #FFFFFF;
    --background-color: #E5E5E5;
    --text-color: #333333;
    --h-color: #2e3135;
    /* Font */
    --font-primary: "", sans-serif;
    --font-secondary: "", sans-serif;
    /* Dimensions */
    --nav-height: 55px;

}


/*------- General ------*/
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Lora', sans-serif;
    font-size: 1.6em;
    line-height: 1.7em;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.container-xl {
    padding-left: 1.3em;
    padding-right: 1.3em;
}

/* a:hover {
    opacity: 0.6;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--h-color);
    line-height: 1.5em;
    /* padding-bottom: 10px; */
    margin-bottom: 0.75em;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: uppercase;
    /* margin-bottom: 0.75em; */

}

h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);

}

main p a {
    color: var(--primary-color);
    opacity: 0.75;
}

main p a:hover {
    opacity: 1;
    text-decoration: underline;
}



/* Section & Section Header  */
section,
article {
    padding: 80px 0;
    /* why overflow hidden */
    overflow: hidden;
}

/* section .container-xl {
    background-color: white;
} */
section:nth-child(odd) {
    background-color: white;
}

/*=============== Header  ===============*/
header {
    background-color: var(--primary-color);
    /* absolute to use z-index to put it over the hero.  */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: var(--nav-height);
    /* color: white; */
    /* padding-right: 10px; */
    /* why???*/
    /* z-index: 997; */
    z-index: 5;
}

header h1 {
    color: white;
}



/*----====== Desktop Navigation  =======----*/
@media(min-width: 1280px) {
    .navbar {
        padding: 0
    }

    .navbar h1 {
        color: white;
    }

    .navbar ul {
        /* cancel bootstrap ul margin-bottom and padding-left  */
        margin: 0;
        padding: 0;
        display: flex;
        list-style-type: none;
        align-items: center;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
    .navbar a:focus {
        /* why focus?  */
        display: flex;
        /* align-items: center; */
        /* justify-content: space-between; */
        /* to make the underline a little wider  */
        padding: 0 3px;
        /* what is font-primary used for? */
        font-family: var(--font-primary);
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        /* white-space: nowrap; */
        transition: .3s;
        /* position relative to position the underline */
        position: relative;
    }

    .navbar>ul>li>a::before {
        content: "";
        position: absolute;
        background-color: var(--secondary-color);
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        /* why this ??? */
        width: 0px;
        /* what is this ? */
        /* why 2 speeds?? what is the second for  */
        transition: all .3s ease-in-out 0s;
        visibility: hidden;
    }

    /* .active??  */
    .navbar ul>li:hover>a::before,
    .navbar ul>li>a:hover::before,
    .navbar .active::before {
        visibility: visible;
        /* why do we need width: 100% here. why width 100% up doesn't work?? */
        width: 100%;
    }

    /* active focus what's for? */
    /* what is focus?? */
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: white;
    }


    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--color-default);
        font-weight: 400;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    /* .navbar .dropdown ul .active:hover, */
    .navbar .dropdown ul li:hover>a {
        color: var(--secondary-color);
        font-weight: 600;
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 1000;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        background: var(--primary-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .mobile-nav-toggle {
        -webkit-user-select: none;
        /* Safari */
        -ms-user-select: none;
        /* IE 10 and IE 11 */
        user-select: none;
        /* Standard syntax */
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #222428;
        border: 1px solid var(--secondary-color);
        background-color: var(--background-color);
        color: var(--text-color)
    }

    .navbar .dropdown ul a {
        color: var(--text-color)
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--secondary-color);
        font-weight: 600;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        position: relative;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9996;
    }
}

/*----------# Hero Section --------------------------------------------------------------*/
#hero {
    /* overflow-x: hidden; */
    /* padding: 0; */
    /* what is this? */
    background: url(../img/DJI_0232.webp) rgba(0, 119, 201, 0.5);
    /* what is this?  */
    background-blend-mode: multiply;
    min-height: 100vh;
    /* padding: 80px; */
    /* margin: 0; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* overflow: hidden; */
    /* z-index: 1; */
    /* inset: 0; */
    color: white;
}

#hero h1,
#hero h2,
#hero h3 {
    color: white;
}


/* .hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    margin: 0;
    position: relative;
} */

/* #hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
} */


/* #hero .info {
    /* position: absolute;
    inset: 0;
    z-index: 2; */
/* height: 100vh; */
/* } */

/* @media (max-width: 768px) {
    #hero.info {
        padding: 0 50px;
    }
} */

#hero.info h2 {
    /* color: #fff; */
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

#hero.info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-secondary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#hero h3 {
    font-size: 4.3rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    user-select: none;
}

@media (max-width: 768px) {
    #hero.info h2 {
        font-size: 3.2rem;
    }

    #hero h3 {
        font-size: 2.4rem;
    }
}

.hero .info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

/* .hero .info .btn-apply {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid var(--color-primary);
} */
.wrap {
    margin-bottom: 40px;
}

.countdown {
    width: 560px;
    margin: 0 auto;
}


.countdown .bloc-time {
    float: left;
    margin-right: 45px;
    text-align: center;
}



.countdown .bloc-time:last-child {
    margin-right: 0;
}

.countdown .count-title {
    display: block;
    margin-bottom: 15px;
    font: normal 0.94em "Lato";
    color: #1a1a1a;
    color: white;
    text-transform: uppercase;
}

.countdown .figure {
    position: relative;
    float: left;
    height: 60px;
    width: 50px;
    margin-right: 5px;
    background-color: #fff;
    /* background-color: rgba(128, 128, 128, 0.9); */
    border-radius: 8px;
    -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
}



.countdown .figure:last-child {
    margin-right: 0;
}

.countdown .figure>span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font: normal 2.94em/57px "Lato";
    font-weight: 700;
    color: #de4848;
    color: white;
    color: var(--primary-color);
}

@media (max-width: 768px) {

    /* #hero h4 {
        font-size: 0.94em;
    } */
    .countdown {
        width: 345px;
    }

    .countdown .bloc-time {
        margin-right: 12px;
    }

    .countdown .figure {
        height: 46px;
        width: 36px;
    }


    .countdown .figure>span {
        font: normal 2.3em/45px "Lato";
    }
}

.countdown .figure .top:after,
.countdown .figure .bottom-back:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.countdown .figure .top {
    z-index: 3;
    background-color: #f7f7f7;
    /* background-color: rgba(128, 128, 128, 0.9); */
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -moz-transform: perspective(200px);
    -ms-transform: perspective(200px);
    -webkit-transform: perspective(200px);
    transform: perspective(200px);
}

.countdown .figure .bottom {
    z-index: 1;
}

.countdown .figure .bottom:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.02);
    background-color: rgba(0, 0, 0, 0.02);
}

.countdown .figure .bottom-back {
    z-index: 2;
    top: 0;
    height: 50%;
    overflow: hidden;
    background-color: #f7f7f7;
    /* background-color: rgba(128, 128, 128, 0.9); */
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}

.countdown .figure .bottom-back span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.countdown .figure .top,
.countdown .figure .top-back {
    height: 50%;
    overflow: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.countdown .figure .top-back {
    z-index: 4;
    bottom: 0;
    background-color: #fff;
    /* background-color: rgba(128, 128, 128, 0.9); */
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -moz-transform: perspective(200px) rotateX(180deg);
    -ms-transform: perspective(200px) rotateX(180deg);
    -webkit-transform: perspective(200px) rotateX(180deg);
    transform: perspective(200px) rotateX(180deg);
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.countdown .figure .top-back span {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    margin: auto;
}

.all-btn-link {
    text-transform: uppercase;
    padding: 15px 30px;
    /* font-size: 1.6rem; */
    /* white-space: nowrap; */
    display: inline-block;
    /* border-radius: 90px; */
    font-size: 2.2rem;

}

.btn-apply {
    background-color: transparent;
    /* border: 2px solid; */
    margin: 10px auto;
    position: relative;
    /* overflow: hidden; */
    z-index: 0;
    padding: 18px 46px;
    font-weight: bold;
    letter-spacing: 6px;
}

.btn-apply:hover {
    color: var(--primary-color);
    font-weight: bold;
}

.btn-apply::before {
    /* transition-duration: 0.5s; */
    box-shadow: inset 0 0 0 3px white;
    /* z-index: 0; */
    font-weight: bold;
}

.btn-apply::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 119, 201, 0.4);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease;
    /* border-radius: 90px; */
    z-index: -1;
}

.btn-apply:hover::before {
    box-shadow: inset 0 0 0 160px white;

}



/* .hero .info .btn-apply:hover {
    background: var(--color-primary);
} */

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

/*--------------------------------------------------------------

/*=============== Main  ===============*/
main {
    flex: 1 1;
}

/* countDown2 */
body {
    background-color: #f2f1ed;
}

/* .wrap {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 310px;
} */

/* a {
    text-decoration: none;
    color: #1a1a1a;
} */

/* h1 {
    margin-bottom: 10px;
    text-align: center;
    font: 300 2.25em "Lato";
    text-transform: uppercase;
} */

h1 strong {
    font-weight: 400;
    color: #ea4c4c;
}

#hero h2 {
    /* margin-bottom: 10px;
    text-align: center; */
    font: 300 1em "Lato";
    /* text-transform: uppercase; */
}

/* 
h2 strong {
    font-weight: 400;
}

h3 {
    margin-bottom: 60px;
    text-align: center;
    font: 300 0.7em "Lato";
    text-transform: uppercase;
}

h3 strong {
    font-weight: 400;
} */

/*======== Invitation Section ==========*/
#invitation {
    background-image: linear-gradient(transparent 10%, #073863 80%), url(../img/un.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#invitation .container-xl {
    background-image: url(../img/kisspng-flag-of-the-united-nations-united-nations-associat-ibm-presentation-5cfbb3542f8d21.3898650815599993161948.png);
    background-position: bottom right;
    background-size: 200px;
    background-repeat: no-repeat;
    filter: drop-shadow(-1px 4px 3px rgba(50, 50, 0, 0.4));
}




.invitation-container {
    background-color: rgba(255, 255, 255, 0.918);
    padding: 50px 35px 150px;
    max-width: 750px;
    width: 90%;
    margin: auto;
    /* margin-bottom: 50px; */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    /* circle(50% at 50% 50px); */
    /* clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); */
    /* circle(100px at 150px 150px); */
    /* -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%) circle(100px at 150px 150px); */
    /* border-radius: 100% 100% 0% 0%; */

}

.invitation-container h2 {
    margin-bottom: 1.75em;
    color: var(--primary-color);
    text-align: center;
}

.invitation-container h3 {
    font-size: 2.4rem;
    margin-bottom: 0.75em;
}

.invitation-container {
    font-size: 2rem;
}

.invitation-container h3 span {
    color: var(--primary-color);
    font-weight: 700;
}

.invitation-container li,
p {
    margin-bottom: 0.75em;
}

#invitation .lycee-logo {
    width: 250px;
    margin: auto;
    margin-top: -60px;
    position: relative;
}

@media (max-width: 768px) {
    #invitation .container-xl {
        background-size: 100px;
    }

    #invitation .container-xl .invitation-container {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    }

    #invitation .invitation-container h2 {
        font-size: 2.4rem;
        /* color: green; */
    }

    #invitation h3 {
        font-size: 2.2rem;
    }

    #invitation .lycee-logo {
        width: 200px;
    }

    #invitation li,
    #invitation p {
        font-size: 1.8rem;
    }
}

.lycee-logo img {
    width: 100%;
}

#invitation::after {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background-color: #BF9000;
    position: absolute;
    bottom: 0;
}

/*======================== Guests Speakers==================== */
#guest h3 {
    font-size: 1.4em;
    font-weight: bold;
    font-style: italic;
}

/*==================== Committees =======================*/
#committees h2 {
    text-align: center;
    padding-bottom: 70px;
}

#committees .card-item {
    border: 1px solid rgb(82 86 94 /.2);
    background-color: white;
    position: relative;
    border-radius: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}





#committees .card-item a:hover {
    color: var(--secondary-color)
}

/* webkit-based browsers (chrome, safari) */
#committees .card-item::-webkit-scrollbar {
    width: 8px;
}

#committees .card-item::-webkit-scrollbar-track {
    /* background-color: var(--primary-color); */
    background-color: var(--background-color);
}

#committees .card-item::-webkit-scrollbar-thumb {
    background-color: #0079c9ad;
    border-radius: 10px;
}

#committees .card-item::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

/* Firefox scrollbar */
#committees .card-item::-moz-scrollbar {
    width: 8px;
}

#committees .card-item::-moz-scrollbar-track {
    /* background-color: var(--primary-color); */
    background-color: var(--background-color);
}

#committees .card-item::-moz-scrollbar-thumb {
    background-color: #0079c9ad;
    border-radius: 10px;
}

#committees .card-item::-moz-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

/* IE and Edge scrollbar */
#committees .card-item::-ms-scrollbar {
    width: 8px;
}

#committees .card-item::-ms-scrollbar-track {
    /* background-color: var(--primary-color); */
    background-color: var(--background-color);
}

#committees .card-item::-ms-scrollbar-thumb {
    background-color: #0079c9ad;
    border-radius: 10px;
}

#committees .card-item::-ms-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

#committees .card-item .row {
    height: 100%;
}

#committees .card-item .card-bg {
    height: 100%;
    min-height: 543px;
    /* max-height: 543px; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#committees .card-item .card-body {
    padding: 30px;
    flex: 1 1 auto;
}

#committees .card-item h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

#committees .card-item p {
    color: var(--color-secondary);
    margin: 0;
    margin-bottom: 0.75em;
}

@media (min-width: 992px) {
    #committees .card-item {
        max-height: 600px;
    }
}

@media (max-width: 1200px) {
    #committees .card-item {
        max-height: none;
    }

    #committees .card-item .card-bg {
        height: auto;
    }
}

.banner {
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner h1 {
    font-size: 4rem;
    color: white;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.7);
}


.banner h1 span {
    display: block;
    font-size: 0.75em;
    line-height: 3;
    text-transform: none;

}

@media(max-width: 990px) {
    .banner h1 {
        font-size: 3.5rem;
    }
}

/* SPC1  */
#spc1 h1 {
    color: #004AAD;
    color: black;
}

#spc1 .banner {
    background-position: center -70px;
    height: 550px;
}

#spc1 .face-button,
#spc1 *::selection {
    --accentColor: #526B6C;
}

@media(max-width: 1120px) {
    #spc1 .banner {
        background-position: center center;
        height: 500px;
    }

}

/*==================== SPC2 =====================*/
#spc2 .face-button,
#spc2 *::selection {
    --accentColor: #6392b6;

}

#spc2 .banner {
    background-position: center -210px;
    height: 550px;
}

@media(max-width: 1621px) {
    #spc2 .banner {
        background-position: center center;
        height: 500px;
    }

}

/* FAQ */
#faq {
    padding-top: 20px;
}

#faq h1 {
    padding-bottom: 10px;
    border-bottom: solid lightgrey 2px;
    margin-bottom: 30px;
    font-size: 30px;
}

#faq a {
    color: #216fff;
    opacity: 0.8
}

#faq a:hover {
    opacity: 1;
}

/* Apply  */
.header-spacer {
    height: var(--nav-height);
}

#apply iframe {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 780px;
    height: 1200px;
}

/* ============== Senegal =============*/
#senegal .frame-container {
    position: relative;
    padding-bottom: 56.25%;
    /* width: 560px; */
    /* height: 315px; */
    /* max-width: 100%; */
    height: 0;
}

#senegal p {
    margin-bottom: 2em;
}

#senegal .frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*========================= HRC ==============================*/
#hrc h2 {
    max-width: 900px;
}

#hrc .face-button,
#hrc *::selection {
    --accentColor: #0080C0;

}

blockquote {
    /* background-color: #f9f9f9; */
    /* border-left: 10px solid #ccc; */
    margin: 0.75em 10px;
    padding: 1em 15px;
    quotes: "\201C" "\201D" "\2018" "\2019";
    position: relative;
}

blockquote p {
    font-size: 1.3em;
    font-style: italic;
    margin: 0;
}

blockquote:before {
    position: absolute;
    top: 15px;
    left: 0;
    color: #aaa9a9;
    content: open-quote;
    font-size: 6em;
    /* line-height: 0.1em; */
    margin-right: 10px;
    /* vertical-align: -0.4em; */
}

blockquote cite {
    display: block;
    text-align: right;
    font-weight: bold;
}

/*============== Guide ==================*/
#guide h1 {
    color: #004AAD;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3)
}

#guide section {
    background-color: inherit;
}

/* .btn-download {
    background-color: #FA7929;
    /* border: 2px solid; */
/* margin: 10px auto; */
/* position: relative; */
/* overflow: hidden; */
/* z-index: 0; */
/* padding: 18px 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
} */

/* .btn-download i {
    font-size: 1.8em;
    vertical-align: middle;
} */
.download-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.face-button {
    --height: 64px;

    --accentColor: #FFCB05;
    /* --accentColor: #BA2132; */
    /* display: inline-block; */
    border: 3px solid var(--accentColor);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    /* text-decoration: none; */
    color: var(--accentColor);
    overflow: hidden;
    width: 203px;
    height: var(--height);
    flex-shrink: 0;
    /* display: flex;
    flex-direction: column; */

}

.face-button:first-child {
    --accentColor: #FA7929;
    /* --accentColor: #e43; */
}

.face-button:last-child {
    --accentColor: #0080C0;
}


.face-button .i {
    margin-right: 6px;
}

.face-button .face-primary,
.face-button .face-secondary {
    display: block;
    /* padding: 0 32px; */
    line-height: var(--height);
    transition: margin .4s;
}

.face-secondary {
    font-size: 0.8em;
}

.face-button .face-primary {
    background-color: var(--accentColor);
    color: #fff;
}

.face-button:hover .face-primary {
    margin-top: calc(-1 * var(--height));
}

#ecosoc .face-button:last-child {
    --accentColor: #BA2132;
}

/* footer */
footer .container-xl {
    min-height: 70px;
    border-top: 1px solid grey;
    font-size: 1.6rem;
    color: grey;
    padding-top: 20px;
    padding-bottom: 20px;
}


footer a {
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
    text-decoration-color: #FA7929;
    color: var(--secondary-color);
}