/********** Template CSS **********/
:root {
    --primary: #EC2227;
    --secondary: #EC2227;
    --light: #f0f0f0;
    --dark: #EC2227;
}
body  {color: #666666}
img {    max-width: 100%;  height: auto !important;}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.text-primary {
  color: var(--primary) !important;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}
@media (min-width: 1200px) {
 h1,
 .h1 {
  font-size: 3.1rem !important;
  line-height: 1em;
 }
}

@media (min-width: 1200px) {
 h2,
 .h2 {
  font-size:1.8rem !important;
     margin-bottom: 30px !important
 }
}

/*** Gradient Text & BG ***/
.text-primary-gradient {
    background-color: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background-color: rgb(194, 110, 84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background-color: var(--primary);
}

.bg-secondary-gradient {
    background-color: var(--primary);
}
.bg-light {
  background-color: var(--light) !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {color: rgb(29, 34, 39)}

h4 {
    color:  var(--primary)
   }

/*** Button ***/
.btn {
    transition: 0.5s ease;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #F0F0F0;
    z-index: 1;
    margin-bottom: 25px;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: #EC2227;
}

.btn.btn-dark,
.btn.btn-dark::after {
    background: var(--secondary) !important;
    border:none !important;   
}


.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
    background: var(--secondary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: var(--primary);
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgb(29, 34, 39) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color:rgb(29, 34, 39) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: rgb(29, 34, 39) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 65px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: rgb(29, 34, 39) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 16rem 0 0 0;
    background:
        url(../img/Background_maison.jpg);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.hero-header:after {
    content: ""; 
    width: 250px;
    height: 200px; 
    display: block;
    position: absolute;
    margin-top: -80px;
    right: 10%;
    z-index: 9;
    background:  url(../img/cle.webp) no-repeat center 100%;
    background-size: 100% auto;
    display: none;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
        background-size: cover;
    }
    .footer .bg-primary {background-size: cover;}
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.webp) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item *,
.examples-carousel .owl-item .testimonial-item,
.examples-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item{
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p, {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav,.testimonial-carousel .owl-nav,.examples-carousel .owl-nav,.examples-carousel .owl-nav  {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    /*! position: absolute; */
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.examples-carousel .owl-nav .owl-prev,
.examples-carousel .owl-nav .owl-next{
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background-color: var(--primary);
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover,
.examples-carousel .owl-nav .owl-prev:hover,
.examples-carousel .owl-nav .owl-next:hover {
    background-color: rgb(194, 110, 84);
}


.examples-carousel .owl-nav .owl-prev,.testimonial-carousel .owl-nav .owl-prev {position:absolute; left: -50px; top: 50%}
.examples-carousel .owl-nav .owl-next,.testimonial-carousel .owl-nav .owl-next {position:absolute; right: -50px; top: 50%}

.examples-carousel li {list-style-type: none; padding: 10px 0 0; border-top: 1px solid rgba(0,0,0,0.1); margin-bottom: 30px}
.examples-carousel ul {padding: 0}
.examples-carousel li span {width: 50%; float: left}
.examples-carousel li span.align-content-end {float: right; text-align: right;font-weight:500;}

#featurestep .examples-carousel li {border: none; margin: 0}
#feature .examples-carousel li {min-height: 40px; display: block}
#feature .examples-carousel li p {display: block; float: left}

/*** FAQ ***/

details.rounded {border-radius: 10px 10px 0px 0px !important}
details:last-child {border-radius: 0px 0px 10px 10px !important}
details summary:marker {display: none !important;}
details p {font-size: 0.9rem; margin-top: 10px; margin-bottom:0; text-align: justify}
details summary {font-weight: 500}
details {border-bottom: 1px solid rgba(0,0,0,0.1)}

/*** ABOUT ***/

#about ul {padding: 0}
#about li {padding-left: 0; list-style-type: none}

#contact {width: 100%; overflow: hidden;position: relative}
#contact form div {transition: ease-in-out 0.5s all; -webkit-transition: ease-in-out 0.5s all;}
.hide_block_form {margin-left: -200%; width: 100%;opacity: 0;}
.show_block_form {left: auto; opacity: 1;  }
.hide_block_form2 {margin-left: 100%; width: 100%;opacity: 0; margin-top: -165px }
.show_block_form2 {left: auto;  opacity: 1; margin-top: -165px; min-width: 696px }
.form-control {margin: 10px auto}
textarea#message {height: 126px;}
.bi.h1 {font-size: 3rem !important}

/*** Footer ***/

.footer {
    /*! margin-top: 6rem; */
    padding-top: 4rem;
    background:
        url(../img/fond-footer.webp);
    background-position: center top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f285";
    font-family: "bootstrap-icons" !important;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer a {color: #fff}

#praesto-form .clearfix > div {display: contents}

/*** media queries ***/

@media (max-width: 767px) {
    .hide_block_form2 {margin-top: -260px }
    .show_block_form2 {margin-top: -260px; min-width: 300px }
    h1, .h1 {  font-size: calc(1.375rem + 5.5vw);}
    .btn {font-size: 1.2rem;}
    .hero-header {  padding: 2rem 0 9rem 0;}
    html {overflow-x: hidden; max-width: 100vw}
}

@media (max-width: 630px) {
    .examples-carousel .owl-nav,.testimonial-carousel .owl-nav,.testimonial-carousel .owl-nav,.examples-carousel .owl-nav,.examples-carousel .owl-nav {display: none }
}

#logo{
    height:300px !important ;
}

.footer *{
    color: #000 !important
}

.navbar .btn{
    background-color: #1d2035 !important;
}