/*--------------------- Responsive (Start) ---------------------*/
@media (max-width: 991px){

    html{
        font-size: 75%;
    }
  
    .header #menu-btn{
        display: block;
    } 
  
    .header .navbar{
        width: 30rem;
        position: absolute;
        left: 0; 
        top:100%;
        padding: 2rem;
        background: #fff;
        border: 0.1rem solid #0073B8; /* ancien violet remplacé par bleu pro */
        -webkit-transition: 0.2s linear;
        -moz-transition: 0.2s linear;
        -o-transition: 0.2s linear;
        transition: 0.2s linear;
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
        height: calc(100vh - 10rem);
        overflow-y: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                    -ms-grid-row-align: flex-start;
                align-items: flex-start;
        padding: 2rem;
        -webkit-box-shadow: var(--box-shadow);
                box-shadow: var(--box-shadow);
    }

    .header.sticky .navbar{
        height: calc(100vh - 7rem);
    }
  
    .header .navbar.active{
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
  
    .header .navbar a{
        display: block;
        padding: 1.2rem 2rem;
    }
  
    .navbar::-webkit-scrollbar{
        width: 0.8rem;
    }
  
    .navbar::-webkit-scrollbar-thumb{
        border-radius: 1rem;
        background-color: #22B24C; /* vert principal Mistral Éco Entretien */
    }
  
    .navbar::-webkit-scrollbar-track{
        background: transparent;
    }

    .header .header-1{
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .header .header-contacts{
        display: none;
    }

    .footer .box-container{
        -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    }

    .team .box-container{
        -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    }

    .project-item {
        width: 50%;
    }

    .home-slider .swiper-button-next,
    .home-slider .swiper-button-prev{
        display: none;
    }

}

@media (max-width: 768px){

    html{
        font-size: 65%;
    }

    section{
        padding: 3rem 2rem;
    }

    .header .header-1{
        padding-left: 0.5rem 2rem;
    }

    .header .header-2{
        padding: 0rem 2rem;
    }

    .footer .box-container{
        padding: 2rem;
    }

    .home-item{
        height: 75rem;
    }

    .home-item .content{
        padding: 10rem 2rem;
    }

    .faq .image{
        height: 30rem;
    }

}

@media (max-width: 450px){

    html{
        font-size: 50%;
    }
  
    section{
        padding: 3rem 1rem;
    }

    .header .header-1{
        padding: 0.5rem 1rem;
    }

    .header .header-2{
        padding: 0rem 1rem;
    }

    .footer .box-container{
        padding: 2rem 1rem;
    }

    .footer-item > p{
        font-size: 1.8rem;
    }

    .footer-item .info a{ 
        font-size: 2rem;
    }

    .why-us .why-features .points:first-child{
        margin-top: 0rem;
    }

    .cost-calculator .box-container,
    .get-quote form{
        padding: 2rem;
    }

    .cost-calculator .image{
        display: none;
    }

    .home-item{
        height: 100vh;
    }

    .home-item .content{ 
        padding: 10rem 1rem;
    }

    .project-item{
        width: 100%;
    }
  
    .dark-form .input-box{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .dark-form .input-box .input-field,
    .dark-form .select{
        -webkit-box-flex: 1;
            -ms-flex: 1 1 25rem;
                flex: 1 1 25rem;
    }

}

/*--------------------- Responsive (End) ---------------------*/
