/*******************************************************
FONTS
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/*******************************************************
COLOR
********************************************************/

.white {
    color: white !important;
}

.vert {
    color: #41C4B0 !important;
}

.violet {
    color: #5328AB !important;
}

.jaune {
    color: #EAAD4D !important;
}

.bg-vert {
    background-color: #41C4B0 !important;
}

.bg-violet {
    background-color: #5328AB !important;
}

.bg-jaune {
    background-color: #EAAD4D !important;
}

.bg-light-grey {
    background-color: #F5F5F5;
}

.gradient-vert {
    background: linear-gradient(to bottom,#1CB3A7,#008176);
}

.gradient-vert-radial {
    background: radial-gradient(circle, #6CC2B8 0%, #35ADA3 20.26%, #0A4641 100%);
}

.gradient-violet {
    background: linear-gradient(to bottom,#7C34D1,#5428AC);
}

.gradient-jaune {
    background: linear-gradient(to bottom,#E5BA2C,#E9A943);
}


/*******************************************************
GENERAL
********************************************************/


body {
    font-weight: 300;
    color: #212529;
    font-size: 18px;
    font-family: 'Poppins' !important;
}

p, li, label, td {
    font-weight: 300;
    line-height: 1.5;
    font-size: 18px;
}


#back-to-top {
    position: fixed;
    bottom: 7px;
    right: 7px;
    display: none;
    z-index: 200;
    text-align: center;
}

    #back-to-top .far {
        background-color: #41C4B0;
        color: white;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        border: 1px solid white;
        border-radius: 100%;
    }

.container-fluid > .row,
.container-fluid > div > .row {
    padding: 0;
}

.outer-max-width {
    max-width: 1600px;
    margin: 0 auto;
}

.max-width {
    max-width: 1360px;
    margin: 0 auto;
}



img {
    max-width: 100%;
}

footer {
    clear: both;
}

small {
    font-size: 13px;
}

strong {
    font-weight: 600;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #41C4B0;
}

    a:not(.btn):not(.nav-link):not(.close) {
        text-decoration: underline;
        word-break: break-all;
    }



    a:hover,
    a:active,
    a:focus,
    button:hover,
    button:active,
    button:focus {
        text-decoration: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    a:hover,
    a:active,
    a:focus {
        color: #269A88;
    }

.white a:not(.btn) {
    color: white;
}

    .white a:not(.btn):hover,
    .white a:not(.btn):active,
    .white a:not(.btn):focus {
        opacity: 0.7;
    }

p {
    margin: 0;
}

.side-padding {
    padding: 60px 80px;
}

@media(max-width:768px) {

    .side-padding {
        padding: 50px 15px;
    }
}

.anchor {
    visibility: hidden;
    height: 255px;
    margin-top: -255px;
}

/*.bg-perso {
    display: none !important;
}*/

@media(max-width:991px) {
    .anchor {
        visibility: hidden;
        height: 178px;
        margin-top: -178px;
    }
}

.radius-border {
    border-radius: 20px;
}

.shadow-border {
    box-shadow: 0px 2px 19.5px 0px rgba(0,0,0,0.14);
}

.bg-perso {
    display: none;
}

/*******************************************************
TITLE
********************************************************/

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-top: 0;
    font-family: 'Poppins';
}

h2 {
    font-size: 45px;
    font-weight: 300;
}

@media(max-width:991px) {
    h2 {
        font-size: 36px;
    }

        h2 span {
            font-size: 26px;
        }
}


/*******************************************************
BTN
********************************************************/

.btn {
    padding: 15px 30px 13px 30px;
    border-radius: 35px;
    font-weight: 400;
    border: none;
    line-height: 1.5;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .btn .fa-regular {
        font-size: 15px;
        margin-right: 10px;
    }

    .btn:hover,
    .btn:active,
    .btn:focus {
        transition: all 0.3s ease;
    }

    .btn.btn-secondary {
        background-color: #41C4B0;
        border: 1px solid #41C4B0;
        color: white;
    }

        .btn.btn-secondary:hover,
        .btn.btn-secondary:active,
        .btn.btn-secondary:focus {
            background-color: transparent;
            border: 1px solid #41C4B0;
            color: #41C4B0;
        }

   
    .btn.btn-default {
        background-color: white;
        border: 1px solid white;
    }

        .btn.btn-default:hover,
        .btn.btn-default:active,
        .btn.btn-default:focus {
            background-color: transparent;
            border: 1px solid white;
            color: white !important;
        }


/*******************************************************
HEADER
********************************************************/

header {
    padding: 20px 0;
}

@media(min-width:992px) {
    header img {
        margin-right: 70px;
    }
}

header p {
    font-size: 23px;
    color: #28d1c0;
    margin: 0;
    line-height: 1.2;
}


/*******************************************************
FOOTER
********************************************************/

footer {
    padding: 30px 0;
}

    footer ul {
        margin: 0;
        padding: 0;
    }

        footer ul li {
            display: inline-block;
            font-size: 16px;
        }

            footer ul li a {
                color: #787878;
                text-decoration: none !important;
                padding: 0 15px;
            }

                footer ul li a:hover,
                footer ul li a:focus,
                footer ul li a:active {
                    color: #787878 !important;
                    text-decoration: underline !important;
                }

    footer .copyright-footer {
        text-align: center;
        padding-top: 30px;
        font-size: 14px;
    }

        footer .copyright-footer a {
            color: #787878 !important;
            text-decoration: none !important;
        }

            footer .copyright-footer a:hover,
            footer .copyright-footer a:focus,
            footer .copyright-footer a:active {
                color: #787878;
                text-decoration: underline !important;
            }

.copyright {
    display: none;
}

/*******************************************************
CONTENT
********************************************************/

.bg-before {
    position: relative;
    z-index: 0;
}

@media(min-width:1200px) {
    .bg-before:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 50%;
        top: 0;
        right: 0;
        background: linear-gradient(to bottom, #1CB3A7, #008176);
        z-index: -1;
    }
}


.presentation h1 {
    margin-bottom: 50px;
}

.presentation .fa-regular {
    color: #cdcdcd;
    font-size: 33px;
}

@media(max-width:767px) {
    .presentation .fa-regular {
        padding: 30px 0;
    }
}

@media(min-width:1326px) {
    .presentation .fa-regular {
        transform: translateY(55px);
    }
}

@media(min-width:1200px) and (max-width:1325px) {
    .presentation .fa-regular {
        transform: translateY(75px);
    }
}

@media(min-width:768px) and (max-width:1199px) {
    .presentation .fa-regular {
        transform: translateY(35px);
    }
}

.presentation h2 {
    font-size: 30px;
    font-weight: 600;
    color: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}


    .presentation h2 sup {
        font-size: 13px;
    }

    .presentation h2 span {
        display: block;
        text-transform: uppercase;
        font-size: 14px;
        margin-top: 15px;
    }

    .presentation h2:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        position: absolute;
        bottom: -9px;
        border-style: solid;
        border-width: 10px 10px 0;
    }

    .presentation h2.bg-vert:before {
        border-color: #41C4B0 transparent transparent;
    }

    .presentation h2.bg-violet:before {
        border-color: #5328AB transparent transparent;
    }

.presentation p {
    font-size: 16px;
    margin: 30px 0;
}

.presentation small {
    font-size: 14px;
}

@media(max-width:1199px) {
    .contact {
        background: linear-gradient(to bottom, #1CB3A7, #008176);
    }
}

.contact p {
    margin: 35px 0;
}

.point-fort {
    padding: 80px 0;
}

    .point-fort p {
        margin-top: 40px;
    }

@media(max-width:767px) {
    .point-fort p {
        margin-top: 20px;
    }
}


/*******************************************************
FORM
********************************************************/
.form-control {
    padding: 15px 30px;
    background-color: white;
    border: none;
    border-radius: 35px;
}

    .form-control:active,
    .form-control:focus,
    .form-control:active {
        box-shadow: inset 0 0 0 1px black;
        outline: none;
    }

textarea {
}

.input-container {
    position: relative;
}


    .input-container .validate {
        position: absolute;
        right: 4px;
        top: 5px;
        height: 100%;
        width: 44px;
    }

    .input-container .input-validation-error + .validate:before {
        content: "\f00d";
        position: absolute;
        color: #ff3d00;
        font-family: "Font Awesome 6 Pro";
        font-weight: 400;
        line-height: 44px;
        width: 100%;
        text-align: center;
    }

.input-validation-error {
    box-shadow: inset 0 0 0 1px #ff3d00;
}

    .input-validation-error::placeholder {
        color: #ff3d00 !important;
    }

.form-control:-webkit-autofill {
    box-shadow: inset 0px 4px 0 0px #ffffff, inset 0 0px 0 40px #ffffff !important;
    transition: none;
}

.form-control::placeholder {
    color: #212529;
}

.contact .alert-danger {
    background-color: rgb(238 103 92) !important;
    border: none;
    font-size: 16px;
    color: white;
    border-radius: 20px;
}


form .form-control[type="checkbox"] {
    display: none;
}

    form .form-control[type="checkbox"] + label {
        font-weight: 300;
        position: relative;
        padding-left: 30px;
        font-size: 16px;
        line-height: 1.2;
        margin: 10px 0 20px 0;
    }

        form .form-control[type="checkbox"] + label:before {
            content: "\f0c8";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 500;
            left: 0;
            color: white;
            font-size: 19px;
            top: -1px;
        }

        form .form-control[type="checkbox"] + label::after {
            content: "\f14a";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 500;
            left: 0px;
            font-size: 19px;
            top: -1px;
            color: white;
            opacity: 0;
        }

    form .form-control[type="checkbox"]:checked + label:after {
        opacity: 1;
    }

    form .form-control[type="checkbox"]:checked + label:before {
        opacity: 0;
    }

.contact .mapContainer {
    border-radius: 20px;
}

@media(min-width:768px) {
    .contact .mapContainer,
    .contact #plan-acces,
    .contact .weGmap {
        height: 100% !important;
    }
}

.grecaptcha-badge {
    margin: 0 auto;
}

.modal button.close {
    border: none;
    background-color: transparent;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
}

/*******************************************************
404
********************************************************/

.page-error {
    text-align: center;
}

    .page-error h1 {
        text-align: center;
        font-size: 100px;
        line-height: 1;
        margin-top: 60px;
    }

        .page-error h1 span {
            display: block;
            font-weight: 500;
            font-size: 60%;
            color: #27d0c0;
        }

    .page-error p {
        padding: 30px;
    }

    .page-error a {
        padding: 15px 30px 13px 30px;
        border-radius: 35px;
        font-weight: 400;
        margin-bottom: 60px;
        border: none;
        line-height: 1.5;
        text-decoration: none !important;
        background-color: #41C4B0;
        border: 1px solid #41C4B0;
        color: white;
        font-size: 16px;
        transition: background-color .3s ease, color .3s ease;
    }

        .page-error a:hover,
        .page-error a:active,
        .page-error a:focus {
            background-color: transparent;
            border: 1px solid #41C4B0;
            color: #41C4B0;
            transition: background-color .3s ease, color .3s ease;
        }
