* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --background-color: #ebeaed;
    --main-color: gray;
    --main-red: #f00;
    --main-orange: #e95a26;
    --main-orange-light: #f59422;
    --bg-orange-dark: #ffd8a3;
    --bg-orange-light: #feecd2;
    --main-orange-gradient: linear-gradient(180deg, #e95a26 0%, #f8ae42 100%);
    --second-color: #575856;
}

@font-face {
    font-family: "lato";
    src: url(./typo/Lato/Lato-Regular.ttf);
    font-display: swap;
}
@font-face {
    font-family: "lato-bold";
    src: url(./typo/Lato/Lato-bold.ttf);
    font-display: swap;
}

::selection {
    color: white;
    background-color: var(--main-orange-light);
}

/* * -------------Settings------------------------------ */

body {
    font-family: "lato", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
    overflow-x: hidden;
}

a,
a:active {
    text-decoration: none;
    color: var(--main-orange);
}

h1 {
    font-size: clamp(30px, 4vw, 50px);
    margin-bottom: 25px;
    color: white;
    font-family: "lato-bold", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
}

h2 {
    font-size: clamp(28px, 3vw, 44px);
    padding-top: 30px;
    text-align: center;
    color: var(--second-color);
    margin: 100px 0px 50px;
    font-family: "lato-bold", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

h3 {
    font-size: clamp(20px, 2.5vw, 34px);
    font-weight: 500;
    color: var(--main-orange);
    font-family: "lato-bold", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
}

p,
li {
    font-size: clamp(16px, 2vw, 18px);
    font-family: "lato", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif, sans-serif;
    text-wrap: pretty;
    color: var(--second-color);
}

#btn1,
input[type="submit"] {
    padding: 18px 30px;
    font-weight: 500;
    font-size: 20px;
    background-color: var(--main-color-blue);
    color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 12px 0px rgba(73, 73, 73, 0.48);
    cursor: pointer;
    transition: 0.15s ease-out;
}

#btn1:hover,
input[type="submit"]:hover {
    opacity: 0.8;
    transform: translateX(5px);
    transition: 0.15s ease-out;
}

#btn1 a {
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: clamp(14px, 2vw, 18px);
}

.orange-btn {
    text-align: center;
    color: white;
    border: 2px solid var(--main-orange);
    background-color: var(--main-orange);
    border-radius: 8px;
    padding: 16px 30px;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.11);
}
.orange-btn:hover {
    color: var(--main-orange);
    border: 2px solid var(--main-orange);
    background-color: white;
}
.orange-btn-border {
    text-align: center;
    color: var(--main-orange);
    border: 2px solid var(--main-orange);
    background-color: white;
    border-radius: 8px;
    padding: 16px 30px;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.11);
}
.orange-btn-border:hover {
    color: white;
    border: 2px solid var(--main-orange);
    background-color: var(--main-orange);
}

.orange {
    background-image: linear-gradient(180deg, #e95a26 0%, #f8ae42 100%);
}

.red {
    color: var(--main-red);
}

@media screen and (max-width: 750px) {
    h2 {
        margin: 50px 0px;
    }
}

/* *------------NAV & Header----------------------------- */

.nav {
    background-color: white;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 10;
}

.nav img {
    height: 90px;
}

.nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 30px;
    font-weight: 500;
}

nav li {
    font-size: clamp(14px, 2vw, 16px);
}

.nav nav a {
    position: relative;
    padding-bottom: 10px;
    transition: color 0.2s ease-out;
    color: var(--second-color);
    font-family: "lato-bold";
}
.nav nav a:hover {
    color: var(--main-orange);
}
.nav nav a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--main-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav nav a:hover::before {
    transform: scaleX(1);
}

header {
    background: url(./img/bg1.webp) center/cover;
    min-height: 70vh;
    padding: 50px 100px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
}

.header-left {
    min-height: 60%;
    max-width: 1150px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding: 50px 50px 150px;
    border-radius: 15px;
}

.header-left p {
    text-align: center;
    font-size: clamp(18px, 3vw, 28px);
    color: white;
    font-weight: 600;
}

.header-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right img {
    width: 90%;
}

@media screen and (max-width: 750px) {
    header {
        /* grid-template-rows: 50% 50%; */
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    h1 {
        text-align: center;
    }

    .header-left p {
        margin: 0 auto;
    }

    .header-right {
        height: 100%;
    }
    .header-right img {
        max-height: 100%;
    }

    .nav img {
        height: 70px;
    }
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* ------------------BAND-------------------------------------------------- */

.band {
    width: 100;
    background-color: var(--main-orange);
}

.band ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 20px;
    padding: 0.5rem 4rem;
}

.band i {
    color: white;
    font-size: 25px;
}
.band li {
    transition: translate 0.2s ease-out;
}
.band li:hover {
    translate: 0px -5px;
}

@media screen and (max-width: 750px) {
    .band ul {
        justify-content: center;
    }
}

/* *------------sign up -------------------------------------------------- */
section {
    width: 80%;
    margin: auto;
}
.sign-up {
    width: 90%;
    max-width: 750px;
    border-radius: 15px;
    margin: -200px auto 80px;
    text-align: center;
    height: 220px;
}

.sign-up h2 {
    color: white;
}

.sign-up a {
    background-color: white;
    padding: 14px 28px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    color: rgba(1, 22, 39, 0.67);
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "lato-bold";
}

@media screen and (max-width: 750px) {
    section {
        width: 100%;
    }
}

/* *------------Partners -------------------------------------------------- */

/* -------------------------- */
/* scroller div */
/* -------------------------- */

.scroller {
    width: 95%;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    height: 140px;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s)
        var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 80s;
}

.scroller img {
    height: 100%;
    width: 100%;
    max-height: 120px;
    max-width: 340px;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

@media screen and (max-width: 750px) {
    .scroller__inner {
        gap: 2rem;
        height: 110px;
    }

    .scroller[data-speed="slow"] {
        --_animation-duration: 60s;
    }
}

/* *--------------------Title band ------------------------------------- */

.title-band {
    width: 100%;
    color: white;
    padding-block: 4rem;
    text-align: center;
    margin-top: 100px;
}

.title-band span {
    font-size: clamp(1.6rem, 3vw, 3vw);
}

/* *--------------------STEP ------------------------------------- */

.pillars-container {
    margin-top: 80px;
}

.pillars-container .is-8 {
    width: 100%;
}

.pillars-container .is-4 {
    padding: 0;
}

.pillars-container .columns {
    flex-direction: column;
    margin-top: 50px;
}

.pillars-container .content {
    margin: 0;
}

.pillars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillars li {
    border: 1px solid #fa7e7e75;
    font-family: "lato", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    margin-left: -34px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: white;
    padding: 10px 50px;
    cursor: pointer;
    background-color: var(--bg-orange-dark);
    border-radius: 25px;
    user-select: none;
    list-style: none;
}

.pillars li:nth-child(1) {
    z-index: 6;
}
.pillars li:nth-child(2) {
    z-index: 5;
}
.pillars li:nth-child(3) {
    z-index: 4;
}
.pillars li:nth-child(4) {
    z-index: 3;
}
.pillars li:nth-child(5) {
    z-index: 2;
}

.pillars li.is-active {
    background-color: var(--main-orange-light);
    color: white;
    user-select: none;
    z-index: 10;
    transform: scale(1.05);
}

.tab-content {
    display: none;
    margin: 40px auto 0px;
    max-width: 950px;
    flex-direction: column;
    background-color: var(--bg-orange-light);
    border: 2px solid var(--main-orange-light);
    padding: 2rem 7rem;
    color: #666666;
    border-radius: 20px;
}
.tab-content.is-active {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-orange-light);
    border: 2px solid var(--main-orange-light);
    padding: 2rem 7rem;
    color: #666666;
    border-radius: 20px;
}
.tab-content img {
    margin: 0 40px 40px 40px;
}

.tab-content span {
    text-align: justify;
    margin-right: 30px;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 35px;
    color: var(--main-orange);
}

.tab-content ul {
    font-size: 22px;
    font-family: "lato-bold";
    margin-top: 15px;
}

.tab-content li {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 32px;
}
.tab-content li:first-child {
    margin-top: 20px;
}

.tab-content li a:hover {
    color: var(--main-orange);
}

.tab-content li a {
    color: var(--second-color);
    font-size: 1rem;
    text-decoration: underline;
    transition: 0.1s;
}

@media screen and (max-width: 750px) {
    .tab-content.is-active,
    .tab-content {
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 2rem 2rem;
    }
    .pillars {
        flex-wrap: wrap;
        justify-content: center;
        transform: translateX(0);
    }
    .pillars li {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 25px;
        padding: 15px;
        margin: 10px;
    }
    .pillars li {
        border-radius: 12px;
    }
}

/* *-------------- ABOUT US --------------------------------------- */

.about-us {
    max-width: 1250px;
    margin: auto;
    padding-inline: 2rem;
}

.process {
    margin: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    color: var(--main-color-green-dark);
}

.process h3 {
    margin-bottom: 30px;
}

.process img {
    width: 100%;
}

.about-us-section {
    margin: 0 auto;
}

span.info {
    font-size: 10px;
}

.about-us-container {
    flex: 0;
}

.about-us-container-left {
    min-height: 700px;
    padding-top: 80px;
    display: grid;
    align-items: center;
    grid-template-rows: 20% 20% 25% 1fr;
}

.about-us-container-right {
    min-height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.card-about-us:nth-child(even) {
    transform: translateY(20%);
}

.card-about-us:nth-child(2),
.card-about-us:nth-child(4) {
    background-color: #c9e2654a;
}

.card-about-us:nth-child(4) {
    gap: 5px;
    justify-content: space-around;
}
.card-about-us:nth-child(4) img {
    border-radius: 5px;
}
.card-about-us:nth-child(4) span.info {
    font-size: 10px;
}

.card-about-us {
    padding: 15px;
    width: 20%;
    min-width: 220px;
    /* min-height: 20vh;
  height: 40vh; */
    border: 1px solid rgb(182, 182, 182);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
}

.card-about-us img {
    width: 50%;
    border-radius: 15px;
}

.card-about-us h3 {
    font-size: 20px;
}
.card-about-us p {
    font-size: 14px;
}

@media screen and (max-width: 1190px) {
    .about-us-container {
        display: flex;
        flex-direction: column;
    }

    .about-us-container-left {
        padding-top: 0px;
        min-height: 400px;
        grid-template-rows: 15% 25% 40% 20%;
        justify-items: center;
    }

    .card-about-us:nth-child(even) {
        transform: translateY(0%);
    }
}
@media screen and (max-width: 750px) {
    .process {
        flex-direction: column;
    }
    .about-us-container {
        align-items: center;
    }
}

/* ----------------------STUDENT CARD PROFILE------------------------------------- */
.students {
    overflow-x: hidden;
}
.students img {
    margin-top: 80px;
}

.student-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
}

.student-card-img {
    width: 250px;
    height: 250px;
    border-radius: 50rem;
    position: relative;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.student-card-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    border-radius: 50rem;
    width: 220px;
    height: 220px;
}

.student-card-container:nth-child(odd) .student-card-txt {
    text-align: end;
}

.student-card-txt {
    flex: 1;
    color: var(--second-color);
}

@media screen and (max-width: 750px) {
    .student-card-container {
        flex-direction: column;
    }

    .student-card-container:nth-child(odd) .student-card-txt {
        order: 2;
        text-align: left;
    }
}

/* ----------------------Project impact------------------------------------- */

.card.project-impact {
    border: 1px solid var(--bg-orange-dark);
    max-width: 280px;
    padding: 2rem;
    height: 100%;
    border-radius: 14px;
}

.card.project-impact h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 20px;
}
.card.project-impact p {
    font-size: 1rem;
}

.card-container {
    margin-top: 100px;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 60px;
    grid-template-columns: repeat(auto-fill, 260px);
}

/* ----------------------CARD------------------------------------- */

.card {
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
}

.card.logo {
    margin: 150px auto 100px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 950px;
}

.card.logo p {
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .card.logo {
        flex-direction: column;
    }
    .card.logo img {
        width: 100%;
    }
}

/* *----------------- VIDEO ------------------------------------------ */

.card-video {
    min-height: 180px;
}

.video-container {
    display: flex;
    justify-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1250px;
    margin: auto;
    margin-top: 100px;
    padding: 0px 40px;
}

.card-video {
    width: 30%;
    min-width: 250px;
}

.card-video img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
    border-radius: 4px 4px 0 0;
}

.card-video p {
    text-align: justify;
    font-size: 16px;
}

@media screen and (max-width: 550px) {
    .video-container {
        grid-template-columns: 1fr;
        grid-template-rows: 45% 45%;
    }
}

/* *-----------------RESOURCES --------------------------------------- */

.resources {
    min-height: 400px;
    padding: 0px 7%;
}

.resources h2 {
    text-align: center;
    padding-bottom: 30px;
}

.resources h3 {
    font-size: clamp(20px, 3vw, 45px);
    padding-bottom: 30px;
}

.resources p {
    letter-spacing: 1px;
    width: 80%;
}

.resources-card-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    justify-items: center;
    margin-left: -100px;
}

.resources button:has(svg) {
    background-color: #1d3c83;
    border-radius: 50px;
}

@media screen and (max-width: 1100px) {
    .resources-card-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin-left: 0px;
    }

    .resources h2,
    .resources h3,
    .resources p {
        text-align: center;
        margin: 0 auto;
    }
}

@media screen and (max-width: 750px) {
    .resources {
        padding: 0px;
        margin-top: 100px;
    }
}

/* *-------------------CARD SLIDER--------------------------------- */

.resources-card-container-left {
    margin-bottom: 40px;
    padding: 20px 40px;
}

.slider-scroll {
    height: 300px;
    width: 800px;
    position: relative;
}

.slider-nav-button {
    background: transparent;
    border: none;
    position: absolute;
    top: -25%;
    cursor: pointer;
    transition: 0.2s ease-out;
}

.slider-nav-button:hover {
    opacity: 0.7;
}

.slider-nav-button svg {
    width: 44px;
    height: 40px;
    background-color: var(--main-color-green-dark);
    color: white;
    padding: 6px;
    border-radius: 50px;
}

.slider-nav-button-previous {
    left: 30%;
}

.slider-nav-button-next {
    right: calc(35%);
}

.slider-content {
    height: 100%;
    width: 100%;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.slider-content-item {
    height: 100%;
    min-width: 25%;
}

.card-scroll {
    height: 100%;
    width: 90%;
    border: 2px solid #1d3c83;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    transition: opacity 0.2s ease;
}

.card-scroll div:has(img) {
    height: 50%;
    overflow: hidden;
}
.card-scroll div:has(img) img {
    object-fit: contain;
    height: 100%;
}

.card-scroll span {
    padding: 20px;
}

.card-scroll .format {
    position: absolute;
    top: 7px;
    right: 10px;
    background-color: var(--main-color-red);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 15px;
}

.card-scroll:hover {
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .slider-scroll {
        width: 100%;
    }
}
@media screen and (max-width: 650px) {
    .slider-content-item {
        min-width: 50%;
    }
}

/* *-------------STATS --------------------------------------------------- */

.stats {
    min-height: 220px;
}

.stats h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 30px;
    margin-top: 0px;
    padding: 0;
    color: white;
}

.stats-figure span:nth-child(2) {
    text-align: center;
    font-size: 0.9rem;
}

.stats-container {
    min-height: 200px;

    border-radius: 15px;
    padding: 2vw;
    margin: 0 auto;
    color: white;
}

.stats-figures-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 130px);
    justify-items: center;
    justify-content: space-between;
    align-items: start;
    width: 90%;
    margin: 0 auto;
}

.stats-figures-container span {
    font-size: 50px;
}

.stats-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 750px) {
    .stats-figures-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .stats-figures-container span {
        font-size: 60px;
    }
}

/* *-----Blog container -------------------------------- */

.blog-container {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 250px);
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    border: 1px solid black;
    border-radius: 20px;
    padding-bottom: 20px;
    height: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.blog-card h3,
.blog-card p {
    padding: 0px 30px;
}

.blog-card h3 {
    font-size: 24px;
}

.blog-card img {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
}

/* *----------COntact Us card --------------------------------------- */

.contact-us {
    min-height: 70vh;
}

.contact-container {
    background-color: rgb(255, 235, 188);
    border-radius: 20px;
    height: 340px;
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    overflow: hidden;
}

.contact-container-left {
    /* background-color: lightblue; */
    position: relative;
    width: 50%;
    height: 100%;
    display: grid;
    grid-template-rows: 20% 10% 1fr;
    justify-content: center;
    align-items: center;
}

.contact-container-left img {
    position: absolute;
    top: 55%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 15vw;
}

.contact-container-right {
    /* background-color: lightsalmon; */
    height: 100%;
    width: 50%;
}

.contact-container-right form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 600px;
    height: 100%;
}

.contact-container-right-submit {
    display: flex;
    width: 70%;
    gap: 5%;
}

input {
    width: 70%;
    border: none;
    border-radius: 8px;
    height: 50px;
    padding-left: 10px;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    padding-left: 10px;
    font-size: 14px;
    height: 50px;
}

input[type="submit"] {
    height: 50px;
    width: 70%;
}

@media screen and (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
        min-height: 400px;
    }

    .contact-container-left {
        width: 100%;
        height: 50%;
        grid-template-rows: 30% 20% 1fr;
        justify-items: center;
    }

    .contact-container-left img {
        display: none;
    }

    .contact-container-right {
        width: 100%;
        height: 50%;
    }

    .contact-container-right form {
        align-items: center;
        width: 100%;
        margin: 0 auto;
        gap: 0;
        padding-bottom: 30px;
    }
}

/* *---------FOOTER ----------------------------------------------------- */

footer {
    min-height: 60px;
    height: 60px;
    background-image: linear-gradient(180deg, #e95a26 0%, #f8ae42 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 3rem;
}

footer p {
    font-size: clamp(12px, 2vw, 16px);
    color: white;
}

footer a {
    color: white;
    text-decoration: underline;
}

@media screen and (max-width: 750px) {
    footer {
        flex-direction: column;
        gap: 10px;
    }
    footer p {
        text-align: center;
    }
}

/* *-------------INTERSECTION OBSEVER------------------------------ */

/* Selecteur sur les atttribut */
[class*="reveal-"] {
    opacity: 0;
    transform: translateY(-30px);
}

[class*="revealGD-"] {
    opacity: 0;
    transform: translateX(-40%);
}
[class*="revealDG-"] {
    opacity: 0;
    transform: translateX(40%);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0px);
    transition: 1s cubic-bezier(0.5, 0, 0, 1);
}

/* Les elements 2 et plus seront révélé avec un délai, ce qui n'est pas le cas de reveal-1 */
.reveal-2 {
    transition-delay: 0.1s;
}
.reveal-3 {
    transition-delay: 0.2s;
}
.reveal-4 {
    transition-delay: 0.3s;
}
.reveal-5 {
    transition-delay: 0.4s;
}
.reveal-6 {
    transition-delay: 0.5s;
}
.reveal-7 {
    transition-delay: 0.6s;
}

/* -------------------P2 Courses-------------------------- */

.card.courses {
    margin-top: 100px;
    padding: 2rem 4rem;
}
.card.courses h3 {
    text-align: center;
    margin-bottom: 40px;
}

.card.courses ul {
    margin-bottom: 40px;
}

.card.courses li {
    margin-top: 10px;
    margin-left: 20px;
}

.card.courses span {
    color: var(--main-orange);
}

@media screen and (max-width: 750px) {
    .card.courses {
        padding: 2rem;
    }
}

/* -------------------------- */
/* Accordeon */
/* -------------------------- */

.accordions {
    padding-block: 100px;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff8ee;
}

.accordion-header {
    padding: 20px 28px;
    cursor: pointer;
    user-select: none;
}
.accordions .accordion:nth-child(N + 2) {
    border-top: 1px solid var(--main-color-blue);
}

.accordion-header:hover {
    text-decoration: underline;
    color: var(--main-color-blue);
}

.accordion:last-child .accordion-header {
    border-bottom: none;
}

.accordion {
    background-color: var(--bg-orange-light);
    border-radius: 4px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.11);
}

.accordion:nth-child(even) {
    background-color: var(--bg-orange-dark);
}

.accordion.active {
    background-color: var(--main-color-yellow);
}

.accordion h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #1c3f63;
    user-select: none;
}
.accordion i {
    color: var(--main-color-yellow);
    font-size: 1.5em;
    margin-right: 15px;
}

.is-9 .accordions {
    border: 2px solid var(--main-color-blue);
    border-radius: 4px;
    padding: 10px 30px;
    width: 100%;
}

.accordion-content {
    /* margin-top: 30px; */
    padding: 0px 50px;
}

.accordion-content h4 {
    color: var(--main-color-blue);
    font-size: clamp(18px, 3vw, 34px);
    text-align: center;
    line-height: 50px;
    padding-bottom: 30px;
}

.accordion-content p {
    margin-top: 15px;
    text-align: justify;
    font-size: 16px !important;
    font-weight: 500;
}

@media screen and (max-width: 730px) {
    .accordion-content .consent-banner p {
        font-size: 12px !important;
        margin-top: 0;
    }
}

.accordion-content p strong {
    font-size: 20px;
}

.accordion-content li {
    list-style: inside;
    margin-left: 40px;
    margin-top: 30px;
    text-align: justify;
}

.accordeon-info {
    background-color: var(--bg-gray);
    padding: 40px 60px 60px 60px;
    margin: 30px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* .accordion-panel {
  margin-bottom: 25px;
} */

.accordeon-info p {
    line-height: 37px;
    text-align: center;
}

.accordeon-info a,
.accordeon-info p strong {
    font-size: 14px !important;
}

.accordeon-info:after {
    content: "”";
    position: absolute;
    bottom: 56%;
    right: 29%;
    color: #00bcd459;
    height: 20px;
    width: 40px;
    font-size: 20rem;
}

.newsroom-icon a {
    background-color: var(--main-color-blue);
    width: 70px;
    height: 70px;
    border-radius: 100px;
    position: relative;
    transition: 0.15s ease-out;
}
.newsroom-icon a:hover {
    background-color: white;
    border: 2px solid var(--main-color-blue);
}
.newsroom-icon i {
    color: white;
    font-size: 25px;
    background-color: var(--main-color-blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.15s ease-out;
}
.newsroom-icon a:hover i {
    color: var(--main-color-blue);
    background-color: white;
}
@media screen and (max-width: 750px) {
    .accordeon-info {
        padding: 0px;
        margin: 0px;
    }
}

/* ----------------------courses----------------------- */

.courses-vid {
    margin-block: 100px;
    display: grid;
    justify-content: center;
    align-items: start;
    grid-template-columns: repeat(auto-fill, 400px);
    gap: 100px;
}

.courses-vid-card {
    height: 100%;
    min-width: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.courses-vid-card h3 {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--second-color);
    font-family: "lato-bold";
    margin-bottom: 20px;
    line-height: 30px;
}
.courses-vid-card p {
    font-size: 1rem;
    line-height: 30px;
}

.courses-vid-card .accordions {
    padding-block: 0px;
    width: 100%;
}

.courses-vid-card article.accordion {
    background: white;
    text-align: center;
    color: var(--main-orange);
    border: 2px solid var(--main-orange);
    border-radius: 8px;
}
.courses-vid-card .accordion-header {
    padding: 10px 28px;
}

.courses-vid-card .accordion-header p {
    color: var(--main-orange);
}
.courses-vid-card .accordion-content p {
    text-align: left;
}
.courses-vid-card .accordion a {
    text-decoration: underline !important;
}
.courses-vid-card .accordion-panel {
    background-color: white;
}

.courses-vid-txt {
    flex: 1;
}

.courses-vid-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.courses-vid-card:last-child .courses-vid-btn {
    width: auto;
}

.courses-vid-btn a {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .courses-vid {
        grid-template-columns: repeat(auto-fill, 320px);
    }
    .courses-vid-card img {
        width: 100%;
    }
}

/* --------------education page----------------------------------- */

.bg-img {
    position: relative;
    width: 100%;
    height: 400px;
    background: url(./img/image\ 43.png) center/cover;
    margin-block: 80px;
}

.bg-img p {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 16px;
}

/* -------------------------- */
/* ---video container -------------- */
/* -------------------------- */

.container-video-home {
    max-width: 550px;
    width: 100%;
    margin: 0px auto;
}

.container-video-home .video-container {
    position: relative;
    padding-bottom: 56.25%;
    border: -1px;
    height: 0;
    background: url(../../img/vid-cont1.webp) center/cover;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0px;
}

.consent-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.671);
    backdrop-filter: blur(5px);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.consent-banner p {
    font-size: 15px !important;
    font-weight: 600;
    padding: 15px;
    color: black;
}

.consent-banner a {
    color: var(--main-orange);
    text-decoration: none;
    border-bottom: 1px solid var(--main-orange-light);
    transition: 0.1s ease-out;
}

.consent-banner a:hover {
    color: black;
    text-decoration: none;
    border-bottom: 2px solid var(--main-orange-light);
}

.consent-button {
    width: 135px;
    height: 40px;
    color: white;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 400;
    font-family: "ginora", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
        sans-serif, Geneva, Verdana, sans-serif;
    background: transparent;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    outline: none;
    background: var(--main-orange-light);
    border: none;
    z-index: 1;
    background-image: none !important;
}

.consent-button:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--main-orange);
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.consent-button:hover {
    color: #fff;
}
.consent-button:hover:after {
    left: 0;
    width: 100%;
}
.consent-button:active {
    top: 2px;
}
@media screen and (max-width: 730px) {
    .container-video-home {
        width: 300px;
    }
    .consent-banner p {
        font-size: 12px !important;
        padding: 20px 30px;
    }
}
