@charset "utf-8";

/* _________________________ Body _________________________ */
/* _*_*_*_ Choices _*_*_*_ */
.head-choice {
    margin-top: 32px;
}

h2 {
    text-align: center;
}

.head-choice {
    display: none;
}

/* .head-choice à enlever quand l-choice et r-choice seront prêts */

.choices {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 12px;
}

#l-choice,
#r-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#buton-choice {
    background-color: #33BAF0;
    border-radius: 30px;
    padding: 2px 16px;
}

#buton-choice a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
}

#buton-choice:hover {
    background-color: #004560;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
}

#l-choice>img,
#r-choice>img {
    width: 50%;
    height: auto;
}

#i-arrow {
    width: 24px;
    height: 24px;
}


/* _*_*_*_ Process _*_*_*_ */
.process {
    max-width: 1200px;
    margin: 0 auto;
}


.process h6 {
    display: flex;
    justify-content: center;
}

h6 {
    color: #004560;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 12px;
    margin-block-end: 0;
    margin-block-start: 64px;
    margin-bottom: 12px;
}

h6.animate {
    -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.descr-content {
    width: 100%;
    display: flex;
    padding: 0 96px;
    align-items: center;
    gap: 64px;
    font: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.descr-content img {
    width: 25%;
    height: auto;
}


/* _*_*_*_ Contribution _*_*_*_ */
#contribution {
    height: auto;
    margin: 128px 12px 48px;
}

#contrib {
    max-width: 1200px;
    background-color: #fff;
    border: 1.5px solid #85CBE6;
    box-shadow: 0 2px 5px #85CBE6;
    border-radius: 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

#contrib-title {
    width: 100%;
    position: absolute;
    top: -40px;
}

#contrib-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding: 48px;

}

#contrib-title h3 {
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 35%;
    background-color: #fff;
    background: linear-gradient(180deg, #fafcfd 50%, #fff 50%);
    border-radius: 30px;
    font-family: 'Kanit';
    color: #004560;
    font-size: 42px;
}

#descr-contrib {
    width: 50%;
    display: flex;
    align-items: center;
    height: 70%;
}

#descr-contrib p {
    color: #000;
    margin-block-start: 0;
    margin-block-end: 0;
}

#contribution img {
    width: 40%;
}


/* _________________________ Keyframes _________________________ */

/* Contraction - Titles */
@-webkit-keyframes tracking-in-contract {
    0% {
        letter-spacing: 48px;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: 12px;
        opacity: 1;
    }
}

@keyframes tracking-in-contract {
    0% {
        letter-spacing: 48px;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: 12px;
        opacity: 1;
    }
}


/* _________________________ Responsive _________________________ */
/* _________________________ Responsive 0 > 499px */
@media screen and (max-width: 499px) {

    /* Body - CHOICES - 0 > 499px */
    .head-choice {
        max-width: 100%;
    }

    .choices {
        padding: 8px 16px;
        margin-bottom: 64px;
    }

    .choices div {
        gap: 8px;
    }

    #buton-choice a {
        font-size: 8px;
        padding: 2px 4px;
    }

    #i-arrow {
        width: 8px;
        height: 8px;
    }

    /* Body - PROCESS - 0 > 499px */
    .process {
        max-width: 499px;
        margin: 0 12px;
    }

    h6 {
        font-size: 20px;
        letter-spacing: 4px;
        margin-block-start: 26px;
    }

    .descr-content {
        padding: 0 16px;
        gap: 8px;
        font-size: 12px;
    }

    /* Body - CONTRIBUTION - 0 > 499px */
    #contribution {
        margin: 24px 8px;
    }

    #contrib {
        max-width: 499px;
    }

    #contrib-content {
        gap: 12px;
        font-size: 12px;
        padding: 12px;
    }

    #contrib-title {
        top: -22px;
    }

    #contrib-title h3 {
        font-size: 22px;
        width: 60%;
    }

    #contribution img {
        width: 50%;
    }
}

/* _________________________ Responsive 500 > 661px */
@media screen and (min-width: 500px) and (max-width: 661px) {

    /* Body - CHOICES - 500px > 661px */
    .head-choice {
        max-width: 100%;
    }

    .choices {
        padding: 16px 24px;
        margin-bottom: 32px;
    }

    #buton-choice a {
        font-size: 12px;
        padding: 2px 6px;
    }

    #i-arrow {
        width: 10px;
        height: 10px;
    }

    /* Body - PROCESS - 500px > 661px */
    .process {
        max-width: 100%;
        margin: 0 24px;
    }

    h6 {
        font-size: 32px;
        letter-spacing: 6px;
        margin-block-start: 32px;
    }

    .descr-content {
        padding: 0 24px;
        gap: 24px;
        font-size: 14px;
    }

    /* Body - CONTRIBUTION - 500px > 661px */
    #contribution {
        margin: 48px 12px;
    }

    #contrib {
        max-width: 661px;
    }

    #contrib-content {
        padding: 20px;
        font-size: 14px;
        padding: 20px;
    }

    #contrib-title {
        top: -24px;
    }

    #contrib-title h3 {
        font-size: 28px;
        width: 55%;
    }

    #contribution img {
        width: 50%;
    }
}

/* _________________________ Responsive 662px > 767px */
@media screen and (min-width: 662px) and (max-width: 767px) {

    /* Body - CHOICES - 662px > 767px */
    .head-choice {
        max-width: 100%;
    }

    .choices {
        padding: 24px 32px;
        margin-bottom: 36px;
    }

    #buton-choice a {
        font-size: 13px;
        padding: 4px 8px;
    }

    #i-arrow {
        width: 12px;
        height: 12px;
    }

    /* Body - PROCESS - 662px > 767px */
    .process {
        max-width: 100%;
        margin: 0 28px;
    }

    h6 {
        font-size: 38px;
        letter-spacing: 8px;
        margin-block-start: 42px;
    }

    .descr-content {
        padding: 0 48px;
        gap: 48px;
        font-size: 16px;
    }

    /* Body - CONTRIBUTION - 662px > 767px */
    #contribution {
        margin: 48px 16px;
    }

    #contrib {
        max-width: 767px;
    }

    #contrib-content {
        padding: 28px;
        font-size: 16px;
    }

    #contrib-title {
        top: -28px;
    }

    #contrib-title h3 {
        font-size: 32px;
        width: 50%;
    }
}

/* _________________________ Responsive 768px > 991px */
@media screen and (min-width: 768px) and (max-width: 991px) {

    /* Body - CHOICES - 768px > 991px */
    .head-choice {
        max-width: 100%;
    }

    .choices {
        padding: 24px 48px;
        margin-bottom: 40px;
    }

    #buton-choice a {
        font-size: 14px;
    }

    #i-arrow {
        width: 16px;
        height: 16px;
    }

    /* Body - PROCESS - 768px > 991px */
    .process {
        max-width: 100%;
        margin: 0 32px;
    }

    h6 {
        font-size: 40px;
        letter-spacing: 12px;
        margin-block-start: 56px;
    }

    .descr-content {
        padding: 0 56px;
        gap: 50px;
        font-size: 17px;
    }

    /* Body - CONTRIBUTION - 768px > 991px */
    #contribution {
        margin: 48px 20px;
    }

    #contrib {
        max-width: 991px;
    }

    #contrib-content {
        font-size: 17px;
        padding: 32px;
    }

    #contrib-title {
        top: -32px;
    }

    #contrib-title h3 {
        font-size: 36px;
        width: 45%;
    }
}

/* _________________________ Responsive 992px > 1199px */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    /* Body - CHOICES - 992px > 1199px */
    .head-choice {
        max-width: 100%;
    }

    .choices {
        padding: 24px 48px;
        margin-bottom: 48px;
    }

    #buton-choice a {
        font-size: 15px;
    }

    #i-arrow {
        width: 20px;
        height: 20px;
    }

    /* Body - PROCESS - 992px > 1199px */
    .process {
        max-width: 100%;
        margin: 0 48px;
    }

    h6 {
        font-size: 42px;
        letter-spacing: 12px;
        margin-block-start: 64px;
    }

    .descr-content {
        padding: 0 64px;
        gap: 60px;
        font-size: 18px;
    }

    /* Body - CONTRIBUTION - 992px > 1199px */
    #contribution {
        margin: 48px 24px;
    }

    #contrib {
        max-width: 1199px;
    }

    #contrib-content {
        font-size: 18px;
        padding: 32px;
    }

    #contrib-title {
        top: -36px;
    }

    #contrib-title h3 {
        font-size: 38px;
        width: 40%;
    }

}