body {
    font-size: 16px;
    background: #FFF;
    line-height: 1.5;
    color: #000;
    font-family: "Red Hat Display", sans-serif;
}

/************ Block 1 ************/

.block-1 {
    height: 100vh;
    overflow: hidden;
}

.block-1 .txt {
    color: white;
}

.block-1 .txt h1 {
    font-size: 40px;
    font-weight: 700;
}

.block-1 .txt .desc {
    font-size: 20px;
    font-weight: 500;
}

.block-1 .txt .reseaux .h3 {
    font-size: 20px;
    font-weight: 700;
}

.scroll-button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: scroll 2s ease-in-out infinite;
}

.scroll-button .bi {
    font-size: 30px;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
    color: #fff;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0px);
   
    }
    50% { 
        transform: translate(-50%, 20px);

    }
    100% { 
        transform: translate(-50%, 0px); 

    }
}

/************ Block 2 ************/

.block-2 {
    padding: 100px 10px;
}

.block-2 p {
    color: #1A0089;
    font-size: 40px;
    font-weight: 700
}

/************ Block 3 ************/

.block-3 {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #FD5E32;
}

.block-3 .txt p {
    color: white;
    font-size: 40px;
    font-weight: 700;
}

/************ Block 4 ************/

.block-4 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.block-4 .card {
    max-width: 605px;
    background-color: #1A0089;
    color: white;
    padding: 44px;
    border-radius: 32px;
    border: 0;
}

.block-4 .card h2 {
    font-size: 32px;
    font-weight: 700;
}

.block-4 form .form-control {
    font-size: 20px;
    border-radius: 24px;
}

.block-4 .form-check-input:focus {
    border-color: #ff9b80;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(253, 94, 50, .25);
}

.block-4 .form-check-input:checked {
    background-color: #FD5E32;
    border-color: #FD5E32;
}


/************ Footer ************/

footer {
    background-color: #1A0089;
}

footer .mentions {
    padding-top: 50px;
    padding-bottom: 50px;
}


.btn {
    border-radius: 24px;
    padding: 3px 20px;
    background-color: #FD5E32;
    border-color: #FD5E32;
    font-weight: 700;
    font-size: 24px;
}

.btn:hover {
   background-color: #dd3d11;
   border-color: #dd3d11;
}



.forme {
    position: absolute;
    overflow: hidden;
    width: 70%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(0deg,rgba(26, 0, 137, 1) 0%, rgba(254, 94, 50, 1) 75%);
}

.forme:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 101%;
    right: -1px;
    top: 0;
    bottom: 2px;
    background-image: url(img/forme.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.wrap {
    max-width: 1600px;
    width: 95% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin: auto;
}



.mentions a {
    color: white;
}

@media (max-width: 1200px) {
    .block-1 {
        min-height: 100vh;
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .block-1 img {
        max-width: 300px;
    }
    .forme {
        width: 100%;
    }
    .forme:before {
        top: 0;
        left: 0;
        border-radius: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }
    .forme:after {
        display: none;
    }
    .block-1 .txt h1 {
        font-size: 32px;
    }  
    .block-2 p,
    .block-3 .txt p {
        font-size: 30px;
    }
    .block-4 .card h2 {
        font-size: 21px;
    }
    .block-4 form .form-control {
        font-size: 16px;
    }
    .block-4 .card {
        padding: 30px;
    }
    .btn {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .wrap {
        width: 95% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin: auto;
    }
    .block-1 img {
        max-width: 260px;
    }
    .block-1 {
        background: linear-gradient(0deg,rgba(26, 0, 137, 1) 0%, rgba(254, 94, 50, 1) 75%);
    }
    .block-1 .txt h1 {
        font-size: 28px;
    }  
    .forme:before {
        display: none;
    }
}

@media (min-width: 1600px) {
    .forme:before {
        width: 100%;
    }
}

@media (min-width: 767px) {
    form .form-control {
        min-width: 440px;
    }
}