/*******************************************************
FONTS
********************************************************/

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&display=swap');

/*******************************************************
COLOR
********************************************************/

.white {
    color: white !important;
}

.green {
    color: #AABF6D !important;
}

.darkgrey {
    color: #434947 !important;
}

.lightgrey {
    background-color: #E6E6E6 !important;
}


/*******************************************************
GENERAL
********************************************************/


body {
    font-weight: 400;
    color: #434947;
    font-size: 18px;
    font-family: Rubik !important;
}

p, li, label, td {
    font-weight: 400;
    line-height: 1.2;
    font-size: 18px;
}

p {
    line-height: 27px;
}

#back-to-top {
    position: fixed;
    bottom: 7px;
    right: 7px;
    display: none;
    z-index: 200;
    text-align: center;
}

    #back-to-top .far {
        background-color: #AABF6D;
        border: 2px solid #434947;
        color: #434947;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        border-radius: 100%;
    }

.container-fluid > .row,
.container-fluid > div > .row {
    padding: 0;
}

.max-width {
    max-width: 1400px;
    margin: 0 auto;
}

.max-width-header,
.outer-max-width {
    max-width: 1580px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

footer {
    clear: both;
}

small {
    font-size: 12px;
}

strong {
    font-weight: 700;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #AABF6D;
}


    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: #758743;
    }

.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;
}


.anchor {
    visibility: hidden;
    height: 255px;
    margin-top: -255px;
}

@media(max-width:991px) {
    .anchor {
        visibility: hidden;
        height: 178px;
        margin-top: -178px;
    }
}

.radius-border {
    border-radius: 20px;
}

.shadow-border {
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.30);
}

.bg-perso {
    display: none !important;
}

@media(min-width:992px) {
    .row-cols-lg-7 > * {
        flex: 0 0 auto;
        width: 14.2857142857%;
    }
}

/*******************************************************
TITLE
********************************************************/

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-top: 0;
    font-family: Rubik;
}

    h2.title {
        font-size: 32px;
        text-transform: uppercase;
        font-weight: 800;
        color: #434947;
        padding-bottom: 80px;
        position: relative;
        margin: 0;
    }

        h2.title span {
            font-weight: 600;
            color: #AABF6D
        }

        h2.title:before {
            content: "";
            position: absolute;
            width: 298px;
            height: 17px;
            background-color: #AABF6D;
            left: 0;
            bottom: 40px;
            border-radius: 20px;
        }

    h2.text-center.title:before {
        left: 50%;
        transform: translateX(-50%);
    }

@media(max-width:767px) {

    h2.title {
        font-size: 28px;
        padding-bottom: 60px;
    }

        h2.title:before {
            bottom: 30px;
            width: 199px;
            height: 7px;
        }
}


/*******************************************************
BTN
********************************************************/

.btn {
    padding: 16px 25px;
    border-radius: 30px;
    border-style: solid;
    position: relative;
    border-width: 2px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

.btn-ico {
    padding-left: 65px;
}


.btn .fa-regular {
    margin-right: 10px;
    font-size: 14px;
    height: 29px;
    width: 29px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    text-align: center;
    line-height: 26px;
    border-style: solid;
    border-width: 2px;
    border-radius: 100%;
}

.btn:hover,
.btn:active,
.btn:focus {
    transition: all 0.3s ease;
}

span.btn:hover,
span.btn:active,
span.btn:focus {
    cursor: default;
}

.btn.btn-default {
    border-color: #AABF6D !important;
    background-color: #AABF6D;
    color: #434947;
}

    .btn.btn-default:hover,
    .btn.btn-default:active,
    .btn.btn-default:focus {
        border-color: #AABF6D;
        background-color: transparent;
        color: #434947 !important;
    }

    .btn.btn-default .fa-regular {
        color: #434947;
        border-color: #434947;
    }

.btn.btn-secondary {
    border-color: #434947;
    background-color: #434947;
    color: white;
}

    .btn.btn-secondary:hover,
    .btn.btn-secondary:active,
    .btn.btn-secondary:focus {
        border-color: #434947;
        background-color: transparent;
        color: #434947 !important;
    }

    .btn.btn-secondary .fa-regular {
        color: #AABF6D;
        border-color: #AABF6D;
    }

/*******************************************************
HEADER
********************************************************/

header.fixed {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: white;
    box-shadow: 0px 2px 19.5px 0px rgba(0,0,0,0.14);
}

header {
    padding: 30px 0;
    box-shadow: 0px 2px 19.5px 0px rgba(0,0,0,0.14);
}

    header img {
        max-width: 315px;
    }

@media(max-width:768px) {
    header img {
        max-width: 265px;
    }
}

header .atelier {
    font-size: 21px;
    font-weight: 700;
}

@media(min-width:992px) {
    header .info-mag {
        padding-left: 50px;
    }
}

@media(min-width:992px) and (max-width:1280px) {
    header img {
        max-width: 225px;
    }

    header .info-mag {
        padding-left: 23px;
    }
}

header .atelier span:not(.ville) {
    height: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

header .atelier span.ville {
    color: #AABF6D;
    font-size: 24px;
    font-weight: 800;
    margin-left: 10px;
    text-transform: uppercase;
}

@media(max-width:768px) {
    header .atelier span.ville {
        display: block;
    }
}

@media(max-width:991px) {

    header .info-mag {
        margin: 20px 0;
    }

    header.fixed .atelier span:not(.ville) {
        height: 0;
        display: block;
        opacity: 0;
        transition: all 0.3s ease;
    }
}

@media(max-width:768px) {

    header .info-mag {
        margin: 10px 0;
    }

        header .info-mag span.ville {
            font-size: 21px;
        }
}

header .baseline {
    font-size: 16px;
    font-weight: 500;
}


@media(max-width:768px) {
    header {
        padding: 15px 0;
    }

        header .btn {
            font-size: 14px;
            margin-bottom: 10px;
            padding: 11px 7px;
            padding-left: 40px;
        }

            header .btn .fa-regular {
                font-size: 12px;
                height: 27px;
                width: 27px;
                line-height: 24px;
                margin-right: 7px;
                left: 7px;
            }

        header .baseline {
            display: none;
        }
}

/*******************************************************
FOOTER
********************************************************/

footer {
    background-color: #434947;
    color: white;
    padding: 40px 0;
}

    footer .fiche-magasin img {
        max-width: 280px;
    }

    footer .fiche-magasin h2 {
        font-size: 20px;
        position: relative;
        padding-top: 70px;
        font-weight: 600;
    }

        footer .fiche-magasin h2:before {
            content: "";
            position: absolute;
            width: 298px;
            height: 17px;
            background-color: #AABF6D;
            border-radius: 20px;
            top: 25px;
        }

        footer .fiche-magasin h2 span {
            font-weight: 800;
            text-transform: uppercase;
        }

    footer .fiche-magasin p {
        margin-top: 12px;
        position: relative;
        padding-left: 30px;
    }

        footer .fiche-magasin p i {
            position: absolute;
            left: 0;
            color: #AABF6D;
            top: 5px;
        }

        footer .fiche-magasin p a {
            color: white;
        }

    footer .reseau .fa-brands,
    footer .reseau .fab {
        font-size: 20px;
        color: #434947;
        height: 45px;
        width: 45px;
        line-height: 45px;
        text-align: center;
        background-color: #AABF6D;
        border-radius: 100%;
        margin-right: 15px;
        transition: all .3s ease;
    }

    footer .reseau a:hover .fa-brands,
    footer .reseau a:hover .fab {
        color: #434947;
        background-color: white;
        transition: all .3s ease;
    }

    footer .navigation ul {
        padding: 0;
        margin: 0;
    }

        footer .navigation ul li {
            list-style: none;
        }

            footer .navigation ul li a {
                color: white;
                padding: 0 20px;
                font-size: 16px;
            }

            footer .navigation ul li:hover {
                opacity: 0.6;
            }

    footer .chalandise {
        padding-top: 30px;
    }

        footer .chalandise h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }

            footer .chalandise h3 + p {
                font-size: 14px;
                text-align: justify;
                line-height: 22px;
                margin-bottom: 30px;
            }

    footer .copyright-footer p {
        font-size: 14px;
    }

        footer .copyright-footer p img {
            font-size: 14px;
            margin: 0 3px 0 5px;
            transform: translateY(-3px);
        }

    footer .copyright {
        display: none;
    }

@media(min-width:768px) {
    footer .navigation ul li {
        display: inline-block;
        position: relative;
    }

        footer .navigation ul li + li:before {
            content: "";
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 100%;
            background-color: #AABF6D;
            left: 0px;
            top: 50%;
            transform: translateY(-50%);
        }
}

@media(max-width:767px) {
    footer .navigation ul li {
        margin: 5px 0;
    }


    footer .reseau .fa-brands,
    footer .reseau .fab {
        margin: 0 7px !important;
    }
}



/*******************************************************
CONTENT
********************************************************/

/* SLIDE */

.carousel .carousel-indicators li {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #F1F1F1;
    border: none;
    opacity: 1;
    margin: 0 3px;
}

    .carousel .carousel-indicators li::marker {
        content: none;
        font-size:0;
    }

    .carousel .carousel-indicators li.active {
        background-color: #AABF6D !important;
    }

.main-carousel .carousel-control-next,
.main-carousel .carousel-control-prev {
    width: 7%;
    opacity: 1;
    font-size: 50px;
}

.main-carousel .carousel {
    max-width: 1920px;
    margin: 0 auto;
}



/* PRESENTATION MAGASIN */
.presentation {
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
}

    .presentation:before {
        content: "";
        position: absolute;
        background: url(/docs/pages/32/color-bar-1.svg);
        width: 386px;
        height: 291px;
        background-repeat: no-repeat;
        top: 22px;
        left: -2px;
        z-index: -1;
    }

    .presentation:after {
        content: "";
        position: absolute;
        background: url(/docs/pages/32/color-bar-2.svg);
        width: 308px;
        height: 276px;
        background-repeat: no-repeat;
        top: -3px;
        right: -2px;
        z-index: -1;
    }

    .presentation .title {
        padding: 80px 0 140px 0;
        text-align: center;
    }

        .presentation .title p {
            font-size: 22px;
            font-weight: 500;
            color: #434947;
        }

        .presentation .title h1 {
            font-size: 60px;
            color: #434947;
            margin: 0;
            position: relative;
            font-weight: 800;
        }

            .presentation .title h1 span {
                color: white;
                font-size: 46px;
                font-weight: 800;
                padding: 5px 15px;
                position: absolute;
                text-transform: uppercase;
                white-space: nowrap;
                background-color: #AABF6D;
                border-radius: 40px;
                display: inline-block;
                left: 50%;
                transform: translateX(-50%) rotate(-1.454deg);
                bottom: -60px;
                z-index: 1;
                box-shadow: 8px 9px 0px 0px #434947;
            }

    .presentation .cta {
        padding: 50px 0;
    }

    .presentation .container-horaire {
        padding: 30px;
        border-radius: 20px;
        position: relative;
        background-color: #E6E6E6;
    }

        .presentation .container-horaire .horaires-day p:not(.horaire) {
            font-size: 18px;
            font-weight: 700;
            color: #AABF6D;
            margin-bottom: 10px;
        }

        .presentation .container-horaire .horaires-day p.horaire {
            margin-left: 25px;
        }

.container-horaire a {
    position: absolute;
    top: 67px;
    left: 30px;
    color: #434947;
    text-decoration: none;
    transform: rotate(180deg);
    transition: all .3s ease;
}

    .container-horaire a.collapsed {
        transform: rotate(0deg);
        transition: all .3s ease;
    }


.presentation .container-horaire .card {
    background-color: transparent;
    border: none;
}

.presentation .container-horaire .horaires {
    margin: 0;
    padding-left: 23px;
    margin-top: 10px;
}

    .presentation .container-horaire .horaires li {
        list-style: none;
        line-height: 1.5;
    }

        .presentation .container-horaire .horaires li.today {
            font-weight: 600;
            color: #AABF6D;
        }

        .presentation .container-horaire .horaires li.closed {
            color: #EA4335;
        }

.presentation .horaires-supp {
    padding: 30px;
    border-radius: 20px;
    margin-top: 50px;
    border: 3px solid #AABF6D;
}

    .presentation .horaires-supp h2 {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        position: relative;
    }

    .presentation .horaires-supp h2 {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        position: relative;
        padding-left: 55px;
        color: #434947;
        margin-bottom: 30px;
    }

        .presentation .horaires-supp h2:before {
            content: "\f017";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-size: 40px;
            font-weight: 500;
            left: 0;
            top: -13px;
            color: #AABF6D;
        }

.presentation .horaires-supp-liste {
    margin-top: 10px;
    padding: 0;
    margin-bottom: 0;
}

    .presentation .horaires-supp-liste li {
        line-height: 1.5;
        color: #AABF6D;
        font-weight: 600;
        list-style: none;
    }

        .presentation .horaires-supp-liste li.closed {
            color: #EA4335;
        }

.presentation .carousel {
    border-radius: 20px;
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.30);
}

    .presentation .carousel img {
        border-radius: 20px;
    }

@media(max-width:767px) {

    .presentation:before {
        width: 171px;
        height: 291px;
        top: 22px;
        left: -89px;
        background-size: 100%;
    }

    .presentation:after {
        width: 145px;
        height: 276px;
        top: -31px;
        right: -79px;
        background-size: 100%;
    }

    .presentation .title {
        padding: 80px 0 100px 0;
    }

        .presentation .title p {
            font-size: 20px;
        }

        .presentation .title h1 {
            font-size: 40px;
        }

            .presentation .title h1 span {
                font-size: 26px;
                bottom: -37px;
            }

    .presentation .cta {
        padding: 30px 0;
        display: inline-block;
    }

        .presentation .cta a + a {
            margin-top: 15px;
        }

    .presentation .container-horaire {
        padding: 16px;
    }

    .container-horaire a {
        top: 79px;
        left: 17px;
    }

    .presentation .container-horaire .horaires-day p:not(.horaire) span {
        display: block;
    }

    .presentation .horaires-supp h2:before {
        top: -5px;
    }
}


@media(min-width:768px) and (max-width:991px) {
    .presentation:before {
        width: 201px;
        background-size: 100%;
    }

    .presentation:after {
        width: 194px;
        top: -31px;
        right: -50px;
        background-size: 100%;
    }

    .presentation .title {
        padding: 80px 0 120px 0;
    }

        .presentation .title h1 {
            font-size: 50px;
        }

            .presentation .title h1 span {
                font-size: 38px;
                bottom: -48px;
            }
}


/* INFOS PRATIQUE */

.info-pratique {
    padding: 60px 0;
}

    .info-pratique h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        margin-top: 35px;
    }

    .info-pratique .adresse {
        position: relative;
        padding-left: 45px;
    }

        .info-pratique .adresse i {
            position: absolute;
            left: 0;
            top: 6px;
            font-size: 36px;
            color: #AABF6D;
        }

    .info-pratique .gps {
        display: flex !important;
        margin-top: 20px;
    }

        .info-pratique .gps > .row {
            justify-content: start !important;
        }

        .info-pratique .gps a {
            transition: all .3s ease;
        }

        .info-pratique .gps i {
            font-size: 34px;
            color: #434947;
            text-align: center;
            width: 62px;
            height: 62px;
            line-height: 62px;
            border-radius: 100%;
            box-shadow: inset 0 0 0 62px #E6E6E6;
            transition: all .3s ease;
        }

        .info-pratique .gps p {
            font-size: 16px;
            font-weight: 700;
            color: #434947;
            text-transform: uppercase;
            margin-top: 5px;
            text-align: center;
        }

        .info-pratique .gps a:hover i {
            box-shadow: inset 0 0 0 2px #E6E6E6;
            transition: all .3s ease;
        }

@media(max-width:767px) {
    .info-pratique {
        padding: 30px 0;
    }
}

/* REPARATION */

.reparation {
    padding: 60px 0;
}

    .reparation h2 + p {
        font-size: 28px;
        text-transform: uppercase;
    }

    .reparation img {
        width: 70px;
        margin-top: 40px;
    }

        .reparation img + p {
            font-size: 18px;
            font-weight: 400;
            margin-top: 15px;
            line-height: 1.2;
        }


@media(max-width:767px) {
    .reparation {
        padding: 30px 0;
    }

        .reparation .cta {
            display: inline-block;
        }

            .reparation .cta a + a {
                margin-top: 15px;
            }
}

.info-reparation {
}


    .info-reparation h2 span {
        display: block;
    }

    .info-reparation .liste-logo {
        background-color: #E6E6E6;
        border-radius: 20px;
        padding: 40px;
    }

        .info-reparation .liste-logo img {
            background-color: white;
            border-radius: 10px;
            border: 2px solid #AABF6D;
        }

.liste-engagements {
    padding: 60px 0;
    position: relative;
}

    .liste-engagements:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        background-color: #AABF6D;
        border-radius: 5px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: 1400px;
    }

    .liste-engagements .engagements {
        position: relative;
        padding: 30px 0 30px 110px;
    }

        .liste-engagements .engagements span {
            font-size: 60px;
            font-style: italic;
            font-weight: 500;
            color: #AABF6D;
            position: absolute;
            width: 87px;
            height: 87px;
            text-align: center;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
        }

            .liste-engagements .engagements span:before {
                content: "";
                position: absolute;
                width: 87px;
                height: 87px;
                top: 3px;
                left: 6px;
                background: url(/docs/pages/32/circle-arrow.svg);
            }


        .liste-engagements .engagements h3 {
            font-size: 28px;
            font-weight: 600;
            color: #AABF6D;
        }

/* AVIS CLIENT */
.avis-client {
    padding-top: 80px;
}

    .avis-client h2 {
        padding: 0;
    }

        .avis-client h2:before {
            content: none;
        }

        .avis-client h2 + p {
            font-size: 20px;
            font-weight: 500;
            text-transform: uppercase;
            color: #434947;
            margin-bottom: 45px;
        }

    .avis-client .total {
        text-align: center;
        line-height: normal;
        display: inline-block;
        padding: 15px 18px;
        color: white;
        background-color: #AABF6D;
        border-radius: 20px;
        box-shadow: 8px 9px 0px 0px #434947;
        position: relative;
    }

.stars-inner::before {
    color: #ffffff;
}

.stars-outer {
    color: rgb(255,255, 255, 0.4);
}


.avis-client .total span {
    display: block;
}

.avis-client .total .score {
    font-size: 56px;
    margin-bottom: 5px;
    font-weight: 700;
}

.avis-client .total .nb {
    font-size: 14px;
    margin-top: 5px;
}


.avis-client .avis {
    border-radius: 5px;
    padding: 30px;
    border: 2px solid #AABF6D;
    border-radius: 20px;
    height: 100%;
}


    .avis-client .avis .name {
        font-weight: 700;
        display: inline-block;
        margin-right: 5px;
        position: relative;
        margin-bottom: 10px;
        padding-left: 60px;
    }

        .avis-client .avis .name img {
            position: absolute;
            left: 0;
            max-width: 50px;
        }

        .avis-client .avis .name span {
            font-weight: 300;
            display: block;
        }

    .avis-client .avis .star {
        display: inline-block;
        vertical-align: top;
        line-height: 1.4;
    }

        .avis-client .avis .star .fas {
            font-size: 13px;
            color: #ffc100;
        }

@media(max-width:767px) {
    .avis-client h2 + p {
        margin-bottom: 25px;
    }
}

/*******************************************************
MAPS
********************************************************/

@media(min-width:992px) {
    .info-pratique .mapContainer,
    .info-pratique #plan-acces,
    .info-pratique .weGmap {
        height: 100% !important;
    }
}

.info-pratique .mapContainer {
    border-radius: 20px;
}

.gm-style .gm-style-iw-c {
    padding: 0;
    max-height: 290px !important;
}

.gm-style .gm-style-iw-d {
    max-height: 290px !important;
}


.gm-style .gm-style-iw-t::after {
    height: 0;
}

.gm-style-iw .infowindows {
    font-size: 16px;
    padding: 15px 15px 5px 15px;
    font-weight: 400;
    line-height: 1.3;
    font-family: Rubik !important;
}

.infowindows [itemprop=name] {
    margin-bottom: 10px;
    font-size: 18px;
    color: #AABF6D;
}


    .infowindows [itemprop=name] b {
        font-weight: 700 !important;
    }

.infowindows .map-phone-number,
.infowindows .map-opening-time {
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
}

    .infowindows .map-phone-number:before,
    .infowindows .map-opening-time:before {
        position: absolute;
        font-family: 'Font Awesome 6 Pro';
        font-weight: 500;
        color: #AABF6D;
        left: 0;
        top: 1px;
    }

    .infowindows .map-phone-number:before {
        content: "\f095";
    }

    .infowindows .map-opening-time:before {
        content: "\f017";
    }


.infowindows .map-phone-number {
    font-weight: 700;
    font-size: 14px;
}

.infowindows .map-opening-time {
    font-weight: 600;
    font-size: 15px;
}


.infowindows .map-bt-itineraire {
    border: 1px solid #434947;
    color: white;
    font-size: 16px;
    margin-top: 7px;
    background-color: #434947;
    display: inline-block;
    padding: 6px 20px;
    font-weight: 500;
    border-radius: 25px;
    transition: background-color .3s ease, color .3s ease;
}

    .infowindows .map-bt-itineraire:hover,
    .infowindows .map-bt-itineraire:active,
    .infowindows .map-bt-itineraire:focus {
        border: 1px solid #434947;
        color: #434947;
        background-color: transparent;
        transition: background-color .3s ease, color .3s ease;
    }

    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled).active:focus,
    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled):active:focus {
        outline: none;
        box-shadow: none;
    }

    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled).active,
    .infowindows .map-bt-itineraire:not(:disabled):not(.disabled):active {
        border-color: #434947;
        color: #434947;
        background-color: transparent;
        outline: none;
        box-shadow: none;
    }

/*******************************************************
FORM
********************************************************/

.contact {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.form-container {
    padding: 60px 110px;
    border-radius: 5px;
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.30);
    background-color: white;
    position: relative;
}

    .form-container h2 {
        padding-bottom: 0;
    }

        .form-container h2:before {
            content: none;
        }


        .form-container h2 + p {
            margin: 40px 0;
        }

.contact .form-group label {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 32px;
    background: #E6E6E6;
    border: none;
    padding: 10px 15px;
}

textarea.form-control {
    border-radius: 15px !important;
    min-height: 180px;
}

.form-control:focus,
.form-control:active {
    background: #F1F1F1;
    box-shadow: inset 0 0 0 2px #AABF6D;
}

.input-validation-error {
    background: #FFDCDF;
    box-shadow: inset 0 0 0 2px #DB737D;
}


.form-control:-webkit-autofill {
    box-shadow: inset 0px 4px 0 0px #F1F1F1, inset 0 0px 0 40px #F1F1F1 !important;
    transition: none;
}

.contact .form-control[type="checkbox"] {
    display: none;
}

    .contact .form-control[type="checkbox"] + label {
        font-weight: 400;
        position: relative;
        padding-left: 30px;
        font-size: 18px;
        line-height: 1.2;
        margin: 10px 0 20px 0;
    }

        .contact .form-control[type="checkbox"] + label:before {
            content: "\f0c8";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 500;
            left: 0;
            color: #434947;
            font-size: 19px;
            top: -1px;
        }

        .contact .form-control[type="checkbox"] + label::after {
            content: "\f14a";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 900;
            left: 0px;
            font-size: 19px;
            top: -1px;
            color: #AABF6D;
            opacity: 0;
        }

    .contact .form-control[type="checkbox"]:checked + label:after {
        opacity: 1;
    }

    .contact .form-control[type="checkbox"]:checked + label:before {
        opacity: 0;
    }

.grecaptcha-badge {
    margin: 0 auto;
}

@media(max-width:991px) {

    .contact {
        padding: 50px 0;
    }


    .form-container {
        padding: 40px 25px;
    }
}

@media(min-width:992px) {
    .form-container:before {
        content: "";
        position: absolute;
        background: url(/docs/pages/32/color-bar-3.svg);
        width: 497px;
        height: 422px;
        background-repeat: no-repeat;
        top: 100px;
        left: -253px;
        z-index: -1;
    }

    .form-container:after {
        content: "";
        position: absolute;
        background: url(/docs/pages/32/color-bar-4.svg);
        width: 545px;
        height: 1084px;
        background-repeat: no-repeat;
        bottom: -171px;
        right: -354px;
        z-index: -1;
    }
}

/*******************************************************
MODAL
********************************************************/

.modal .modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #AABF6D;
    line-height: 1.2;
}

.modal button.close {
    background-color: transparent;
    float: right;
    line-height: 1;
}

    .modal button.close span {
        font-size: 29px;
    }

.modal .modal-body p {
    padding-top: 25px;
}


.modal#cookiesModal {
    font-size: 16px;
}


    .modal#cookiesModal .form-group + .form-group {
        margin-top: 15px;
    }

    .modal#cookiesModal .btn {
        padding: 12px 13px !important;
        font-size: 15px;
        border: 1px solid white;
    }

        .modal#cookiesModal .btn.btn-success {
            background-color: #AABF6D;
        }

        .modal#cookiesModal .btn.btn-danger {
            background-color: #BF6D6D;
        }

    .modal#cookiesModal .notActive {
        background-color: #E6E6E6 !important;
    }


    .modal#cookiesModal h2,
    .modal#cookiesModal h3 {
        font-size: 24px;
        margin-top: 20px;
        color: #434947;
    }

.modal-footer {
    border: none;
}

.weCookieBar .btn {
    padding: 10px 13px !important;
    font-size: 15px;
    margin-top: 5px;
}

.weCookieBar .btn-link {
    color: #AABF6D;
}

.weCookieBar .btn:hover {
    color: white !important;
}

/*******************************************************
404
********************************************************/
.page-error {
    text-align: center;
    margin-bottom: 80px;
}

    .page-error h1 {
        text-align: center;
        font-size: 116px;
        color: #434947;
        position: relative;
        font-weight: 600;
        line-height: 1;
        margin-top: 60px;
        margin-bottom: 70px;
    }

        .page-error h1 span {
            color: white;
            font-size: 46px;
            font-weight: 800;
            padding: 5px 15px;
            position: absolute;
            text-transform: uppercase;
            white-space: nowrap;
            background-color: #AABF6D;
            border-radius: 40px;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%) rotate(-1.454deg);
            bottom: -38px;
            z-index: 1;
            box-shadow: 8px 9px 0px 0px #434947;
        }

    .page-error p {
        padding: 20px 0 30px;
    }

    .page-error a {
        border-color: #AABF6D !important;
        background-color: #AABF6D;
        color: #434947;
        padding: 16px 25px;
        border-radius: 30px;
        border-style: solid;
        position: relative;
        border-width: 2px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        transition: background-color .3s ease, color .3s ease;
    }

        .page-error a:hover,
        .page-error a:active,
        .page-error a:focus {
            background-color: transparent;
            color: #434947 !important;
            transition: background-color .3s ease, color .3s ease;
        }
