body{
    font-family: "garamond-premier-pro-display";
    background-color: #F8F8F8;
    color: #1A33A5;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

h1{
    font-family: "garamond-premier-pro-caption";
    font-weight: 400;
    font-size: 128px;
    margin: 0;
}

p{
    margin: 0;
}

.px96{
    font-size: 96px;
}

.px80{
    font-size: 80px;
}

.px64{
    font-size: 64px;
}




.hero{
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    border-bottom: solid 2px #1A33A5;
}

.quote{
    align-self: flex-end;
    justify-self: flex-end;
    width: 50%;
    text-align: right;
    font-style: italic;
}

.bold{
    font-weight: 700;
}

.italic{
    font-style: italic;
}

.underline{
    text-decoration: underline;
    text-decoration-thickness: 3px;
        
}

.section1-1, .section1-2{
    display: flex;
    border-bottom: solid 2px #1A33A5;
}

.section1-1-l, .section1-2-l{
    display: flex;
    padding: 80px;
    border-right: solid 2px #1A33A5;
}

.section1-1-l>p, .section1-2-l>p{
    max-width: fit-content;
}

.section1-1-r, .section1-2-r{
    display: flex;
    justify-content: center;
    align-items: center;
}

.animate{
    animation: spin 10s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
}

.section1-2-r{
    padding: 80px;
}

.section1-2-r>p{
    width: fit-content;
    white-space: nowrap;
}

.section1-2-l{
    width: 100%;
}

.section1-2{
    justify-content: space-between;
}

.section2{
    padding: 0 100px;
    border-bottom: solid 2px #1A33A5;
}

.section2-inner{
    border-left: solid 2px #1A33A5;
    border-right: solid 2px #1A33A5;
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.s2p1{
    width: 75%;
}

.s2p2{
    width: 75%;
    align-self: flex-end;
    text-align: right;
}

.section3{
    padding: 100px;
    border-bottom: solid 2px #1A33A5;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.s3intro{
    text-align: center;
}

.section4{
    border-bottom: solid 2px #1A33A5;
}

.section4-1-l{
    display: flex;
    padding: 80px;
    width: 50%;
    border-right: solid 2px #1A33A5;
}

.section4-1{
    border-bottom: solid 2px #1A33A5;
}

.section4-2-r{
    display: flex;
    padding: 80px;
    height: fit-content;
    border-left: solid 2px #1A33A5;
    text-align: right;

}

.section4-2-r>p{
    width: fit-content;
    white-space: nowrap;
}

.section4-2{
    display: flex;
 
/*     width: 50%; */
    border-bottom: solid 2px #1A33A5;
    justify-content: space-between;
}

.section4-2-l{
    display: flex;
    justify-content: center;
    align-items: center;
/*     padding: 80px; */
    width: 50%;
}

.section4-3{
    display: flex;
    padding: 80px;
}

.section4-3>p{
    width: 100%;
    text-align: center;
}

.section5{
    padding: 80px;
    border-bottom: solid 2px #1A33A5;
}

.section5>p{
    margin-bottom: 80px;
}

.section5-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.section5-list-item{
    display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
}

.section6{
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.merci{
    width: 50%;
    text-align: right;
        align-self: flex-end;
        font-size: 50px;
}

.copy{
    text-align: center;
    font-size: 35px;
}

.px50{
    font-size: 50px;
}

.px40{
    font-size: 40px;
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    height: 550px;
}

.carousel-item {
    position: absolute;
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    border: 4px solid #1A33A5;
    box-shadow: 3px 3px 10px 0px rgba(26, 51, 165, 0.25);
    padding: 50px;
    width: 700px;
    height: 525px;
    pointer-events: none;
    transform-origin: center center;
    left: 0;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.carousel-item.previous,
.carousel-item.next {
    opacity: 0.75;
    z-index: 1;
}

.carousel-item-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
}

.carousel-text {
    font-style: italic;
}

.carousel-name {
    text-align: right;
}

/* new */
/* Initial hidden state */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state */
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* For left-to-right animation */
.hidden-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible-left {
    opacity: 1;
    transform: translateX(0);
}

/* For right-to-left animation */
.hidden-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible-right {
    opacity: 1;
    transform: translateX(0);
}

#eviter {
    position: relative;
    white-space: nowrap;
}

#eviter::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    background-image: url('/error.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Places the image behind the text */
}