/* --------------------------------------------------------------
# General
-------------------------------------------------------------- */
body {
    font-family: "Open Sans", sans-serif;
    color: #444;
}

a {
    color: #c5003e;
    text-decoration: none;
}

a:hover {
    color: #c00;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Roboto, sans-serif;
}

/* --------------------------------------------------------------
# Preloader
-------------------------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader::before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #c5003e;
    border-top-color: #ecf8f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------
# Back to top button
-------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    color:#FFF;
    background: #c5003e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #c00;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* --------------------------------------------------------------
# Disable aos animation delay on mobile devices
-------------------------------------------------------------- */
@media screen and (width <= 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* --------------------------------------------------------------
# Header
-------------------------------------------------------------- */
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    top: 0;
}

@media (width <= 992px) {
    #header {
        padding: 15px 0;
    }
}

#header.header-scrolled {
    top: 0;
}


.header.header-scrolled {
    box-shadow: 0 0 18px rgb(0 0 0 / 10%);
    background-color: #c5003e;
}


#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#header .logo a {
    color: #555;
}

#header .logo img {
    max-height: 70px;
}




.accroche_left span {
    background-color: #c5003e;
    padding: 5px;
}

.accroche_left h2 {
    margin: 0;
    text-shadow: #000 1px 0 10px;
    color:#FFF;
    font-size: 40px;
}



.accroche_left h3 {
    margin: 0;
    color:#c5003e;
    font-size: 30px;
    font-weight: 600;
    background-color: #FFF;
}

.accroche_left p {
    margin-top: 2%;
    text-shadow: #000 1px 0 10px;
    font-size: 20px;
    color:#FFF;
}










.accroche_left h4 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin-top: 20px;
    background: #444;
    color: #FFF;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}










/* --------------------------------------------------------------
# Sections General
-------------------------------------------------------------- */
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f7fcfc;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #c5003e;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

/* --------------------------------------------------------------
# Breadcrumbs
-------------------------------------------------------------- */
.breadcrumbs {
    padding: 20px 0;
    background-color: #ecf8f9;
    min-height: 40px;
    margin-top: 120px;
}

@media (width <= 992px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (width <= 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (width <= 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* --------------------------------------------------------------
# Cta
-------------------------------------------------------------- */
.cta {
    background: #c5003e;
    color: #fff;
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    font-size: 35px;
    font-weight: 700;
}

.cta .cta-btn {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #c5003e;
}

.cta p {
    padding-top:20px;
    font-size: 16px;
    font-weight: 400;
}


/* --------------------------------------------------------------
# Gallery
-------------------------------------------------------------- */
.gallery {
    overflow: hidden;
    text-align: center;
    background: #f7f8f8;
}

.gallery .section-title p{
    text-align:left;
    padding-top:20px;
    padding-bottom:10px;
    font-size: 20px;
}


.gallery .section-title ul {
    font-size: 20px;
    padding-top:5px;
    list-style: none;
    text-align:left;
}

.gallery .section-title ul li::before {
    content: "•";
    color: #c5003e;
    display: inline-block;
    width: 1em;
    margin-left: -1em;

}



.gallery .cta-btn {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #c5003e;
    color: #c5003e;

}

.gallery .cta-btn:hover {
    background: #c5003e;
    color: #FFF;
}



/* --------------------------------------------------------------
# Contact
-------------------------------------------------------------- */
.contact {
    background-image: url("/img/1/bg.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

@media (width <= 768px) {
    .contact {
       /* background-size: inherit;
        background-position: center top;*/
    }
}



.contact .php-email-form {
    box-shadow: #000 1px 0 10px;
    background-color: #FFF;
    padding: 30px;
    margin-top: 0;
    margin-bottom: 10%;
}






.php-email-form {
    height: 100%;
}

.php-email-form input[type="text"],
.php-email-form input[type="email"],
.php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--background-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 95%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.php-email-form input[type="text"]:focus,
.php-email-form input[type="email"]:focus,
.php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.php-email-form input[type="text"]::placeholder,
.php-email-form input[type="email"]::placeholder,
.php-email-form textarea::placeholder {
    color: var(--background-color);
}

#btn_submit {
    background-color: #009a00;
    border-radius: 4px;
    color: #fff;
    line-height: 140%;
    width: 100%;
    padding: 10px 20px;
    border: 0 solid transparent;
    font-size: 22px;
}

.php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}




.input-group-text {
    display: flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .66rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}



.input-group {
    position: relative;
    display: flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}



.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgb(0 123 255 / 25%);
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

button, input {
    overflow: visible;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}





#cgu_form {
    text-align: left;
    text-align: justify;
    font-size: 0.8em;
    line-height: 1;}


/* --------------------------------------------------------------
# Featured Services
-------------------------------------------------------------- */

.featured-services {
    background: #FFF;
    margin-top:100px;
}

.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #f7f8f8;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    text-align: center;
}

.featured-services .icon-box::before {
    content: "";
    position: absolute;
    background: #FFF;
    inset: 100% 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .icon-box:hover::before {
    background: #FFF;
    top: 0;
    border-radius: 0;
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #3fbbc0;
    transition: all 0.3s ease-in-out;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: #111;
}

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
    color: #c5003e;
}


/* --------------------------------------------------------------
# Footer
-------------------------------------------------------------- */
.ml {
    background: #333;
    color: #b6b6b6;
    padding: 30px;
    font-size: 12px;
}



#footer {
    background: #333;
    color: #b6b6b6;
    padding: 0 0 30px;
    font-size: 14px;
}

#footer .copyr {
    text-align: center;
    padding-top: 30px;
}


#footer .cc {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
}




footer hr {
    border: 1px solid #fff!important;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgb(0 0 0 / 10%);
}




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

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-about a {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 0;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 100%);
}

.footer .copyright p {
    text-align: left;
    margin-bottom: 0;
    font-size: 13px;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}














.service_title{
    color: #555;
    direction: ltr;
    font-family: inherit;
    font-size: 24px;
    font-weight: bolder;
    letter-spacing: normal;
    line-height: 120%;
    text-align: center;
    padding: 15px;
}

.service_title strong{
    color: #c5003e;
}

.accroche_left{
    padding:15px;
}

.accroche_left h1{
    color: #fff;
    direction: ltr;
    font-family: Cabin, Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 120%;
    text-align: left;
    text-shadow: 1px 1px 2px black;
    margin-top: 70%;
    margin-bottom: 0;
    text-transform: uppercase;

}

.accroche_left h2{
    color: #fff;
    direction: ltr;
    font-family: Cabin, Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 120%;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px black;
}

.accroche_left p,.accroche_left ul li{
    font-weight: bolder;
    color: #fff;
}

.accroche_left span{
    background-color: #c5003e;
    padding:5px

}

.full-height{
    height:100%
}

.bloc_form{
    background-color: #FFF;
    padding: 15px;
    text-align: center;
    box-shadow: #000 1px 0 10px;
    border-radius: 10px;
    margin-top: 150px;
    margin-left:50px
}


form legend{
    border-bottom: 1px solid #6C7288;
}

main{
    background-image: url("/img/1/bg.jpg");

    /*  background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      background-position: center top;
      min-height: 1143px; */
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 1000px;
}

.blue_list > ul{
    color:#FFF;
    padding-top: 3%;
    padding-bottom: 3%;
    background-color:#174195;
    list-style-image: url("/img/1/liste.png");
}

.blue_list .logo_list ul{
    background-color: #FFF;
    margin-top:-20px;
}

.blue_list .logo_list ul li img{
    max-width: 160px;
}

.accroche_bas img{
    max-width: 70px;
}

.accroche_bas p{
    font-size: 12px;
    line-height: 120%;
    color: #146194;
    font-family: inherit;
}

#btn_submit{
    background-color: #009a00;
    border-radius: 4px;
    color: #fff;
    line-height: 140%;
    width: 100%;
    padding: 10px 20px;
    border: 0 solid transparent;
    font-size: 22px;
}

.tuto h2{
    padding:15px;
    color: #146194;
    direction: ltr;
    font-family: inherit;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 120%;
    text-align: center;
}

.tuto{
    background-color: #F9F9F9;
}

.tuto p{
    font-size: 17px;
    line-height: 140%;
    color: #146194;
    font-family: inherit;
    padding-top: 10px;
}

.bloc_bas{
    position: absolute;
    bottom:0;
    width:100%
}

footer,footer a{
    background: #333;
    color:#b6b6b6;

}

footer a{
    text-transform: uppercase;
}

footer hr{
    border: 1px solid #fff;
}

#bloc_comparateur{
    background: #c5003e;
    text-align: center;
    color:#FFF;
    padding:45px;
}

#bloc_comparateur h2{
    font-size: 2em;
    font-weight: bolder;
    margin-bottom: 15px;
}

#bloc_comparateur h3{
    font-size: 1.2em;
    font-weight: bolder;
    margin-bottom: 15px;
}

#bloc_comparateur .btn{
    margin-top:25px;
    background-color: #FFF;
    border-color: #fff;
    color:#c5003e;
    font-weight: bolder;
}

.round {
    border-radius: 24px;
}

#infos h3{
    color:#c5003e;
    text-align: center;
    font-weight: bolder;
}

#infos .featurette{
    margin-bottom: 25px;
}

#bloc_accroche{
    background-color: #FFF;
    padding:25px;
    color:#333;
    font-weight: bolder;
}

b{
    color:#c5003e;
    font-weight: bolder;
}

#bloc_accroche h2{
    margin-bottom: 25px;
}

#bloc_form > h2{
    text-align: center;
    color:#000;
    margin:25px;
}

#bloc_borrow,#bloc_rental,#bloc_credit_immo,#bloc_owner{
    display:none;
}

#bloc_form  h3{
    color: #000;
    font-size: 30px;
    font-weight: 900;
    text-shadow: 1px 1px 1px #C0C0C0;
}

.form_title{
    padding: 15px;
    margin: -15px -15px 15px;
    background-color: #c5003e;
    color: #FFF;
    text-align: center;
    font-variant: small-caps;
    font-weight: bolder;
    font-size: 1.5rem;
}

#arrow {
    content: '';

    /* position: absolute; */
    left: 0;
    right: 0;
    top: 45px;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 25px solid #c5003e;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.darken{
    background-color: #c5003e !important;
    color:#FFF !important;

}

.gallery .section-title p {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 20px;
}

.gallery .section-title ul {
    list-style: none;
    text-align: left;
}

.gallery .section-title ul li::before {
    content: "•";
    color: rgb(197 0 62);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


.gallery .cta-btn:hover,.cta .cta-btn:hover{
    background: #c5003e;
    color: #FFF;
}

/**
* Appointment Button
*/
.appointment-btn {
    margin-left: 25px;
    background: #c5003e;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
    background: #cf012a;
    color: #fff;
}




@media (width <= 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
}

/* --------------------------------------------------------------
# Sections General
-------------------------------------------------------------- */
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f7fcfc;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #c5003e;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}


label {
    display: left;
}



.centered-holder {
    margin-left: auto;
    margin-right: auto;
    clear: left;
    display: left;
    text-align: left;
}

.btn3d {

    box-shadow: #000 1px 1px 5px;
}

.btn3d:hover, .btn3d:focus {
    text-shadow: 1px 1px 0 #000000;
    box-shadow: none;
}
#form_service{
    padding:5px 50px 15px 50px;
}
/** INPUT **/
#form_service input{
    border:1px solid rgba(197, 0, 62, 1.0);
    padding:20px;
    border-left:0px;
}
#form_service select{
    padding:0px;
    border:1px solid rgba(197, 0, 62, 1.0);
}

#form_service .input-group-text{
    background-color:#FFF;
    color:rgba(197, 0, 62, 1.0);
    border:1px solid rgba(197, 0, 62, 1.0);
    border-right:0px;
    border-radius:0px;
    padding:0px 5px 0px 10px;
}

sup.star_required{
    top:0.5em;
    /*float:right;
    padding-left:110px;*/
}

/** MOBILE ***/
#image_mobile{
    display:none;
}
.bloc_mobile{
    display:none;
}
.bloc_desktop{
    display:block;
}
@media (max-width: 1200px) {

    .accroche_left h1 {
        font-size: 30px;
        margin-top:80%;
    }

}

@media (max-width: 992px) {
    #header{
        padding : 15px;
        background-color: rgba(197, 0, 62, 1.0);;

    }

    .bloc_form{
        box-shadow: none;
        margin-left:0px;
        margin-top:0px;
    }

    #bloc_form_mobile{
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        max-width: none;
    }

    #image_mobile,.bloc_mobile{
        display:block;
        /*margin-top:120px;*/
    }

    .bloc_desktop{
        display:none;
        /*margin-top:120px;*/
    }

    .fixed-top{
        position:relative;
    }

    section#contact > .container > .row.mt-5{
        margin-top:20px !important;
    }

    section#contact{
        padding-top : 0px;
    }
    .accroche_left h1,.accroche_left h2,.accroche_left p{
        text-align:center;
        color:#000000;
    }
    .accroche_left p{
        text-shadow: none;
    }
    .accroche_left h1{
        margin-top: 0;
    }

    .accroche_left span{
        /*background-color: rgba(197, 0, 62, 0.50);*/
        background-color: transparent;
        padding: 0px;
    }

    .contact{
        background-color: #FFFFFF;
        background-image: none;
        /*background-color: rgba(197, 0, 62, 0.50);*/
    }
}

@media (max-width: 390px) {
    #btn_submit {
        font-size: 18px;
    }
}
@media (max-width: 345px) {
    #btn_submit {
        padding:10px;
        font-size: 16px;
        font-weight: bolder;
    }
}