*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
}

html{
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;  
    -webkit-overflow-scrolling: touch;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
}

/* header */

header{
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: rgb(50 50 93 / 25%) 0px 50px 100px -100px, rgb(0 0 0 / 30%) 0px 30px 60px -30px;
    z-index: 99;
}

header .container{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header .nav ul{
    display: flex;
    align-items: center;
}

.nav .navitem{
    margin: 0 3rem;
}

.nav .navlink{
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding-bottom: 1rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.nav .navlink::before{
    content: "";
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: #0731c8;
    -webkit-transition: ease-in-out .4s;
    -o-transition: ease-in-out .4s;
    transition: ease-in-out .4s;
}

.nav .navlink:hover{
    color: #0731c8;
}

.nav .navlink.active{
    color: #0731c8;
}

.nav .navlink:hover::before {
    width: 100%;
}

.nav .navlink.active::before{
    width: 100%;
}


/* carous */

.carouselitem{
    position: relative;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carouselitem::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.066);
}

.carouselitem .buttCarousel{
    position: absolute;
    left: 50%;
    bottom: 13%;
    transform: translate(-50%, -50%);
    background: #0731c8;
    color: #fff;
    padding: 12px 50px;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.carouselitem .buttCarousel:hover{
    background: #fff;
    color: #0731c8;
}

.secCardHome{
    margin-top: -40px;
    margin-bottom: 7em;
    overflow: hidden;
}

.secCardHome  .rowCard{
    display: flex;
    justify-content: center;
}

.secCardHome .cardHome{
    padding: 25px 15px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    -webkit-box-shadow: 7px 14px 42px 3px rgb(163 174 184 / 40%);
    -moz-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, .4);
    -ms-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, .4);
    -o-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, .4);
    box-shadow: 7px 14px 42px 3px rgb(163 174 184 / 40%);
}

.secCardHome .cardHome i{
    font-size: 3.6rem;
    margin-top: 1rem;
}

.secCardHome .cardHome:nth-child(1) i{
    color: #00f0a8;
}

.secCardHome .cardHome:nth-child(1) a{
    background-color: #00f0a8;
}

.secCardHome .cardHome:nth-child(2) i{
    color: #3498db;
}

.secCardHome .cardHome:nth-child(2) a{
    background-color: #3498db;
}

.secCardHome .cardHome:nth-child(3) i{
    color: #f1c40f;
}

.secCardHome .cardHome:nth-child(3) a{
    background-color: #f1c40f;
}

.secCardHome .cardHome h2{
    font-size: 1.3rem;
    margin: 2rem 0;
}

.secCardHome .cardHome ul li{
    list-style: '-';
}

.secCardHome .cardHome p,
.secCardHome .cardHome ul{
    height: 70px;
    margin-bottom: 2rem;
    font-size: .87rem;
    color: rgb(49, 46, 46);
}

.secCardHome .cardHome a{
    font-size: .95rem;
    color: #ffffff;
    background: #0731c8;
    text-decoration: none;
    margin: 2rem 0;
    padding: .6rem 1.8rem;
    border-radius: 5px;
}

.secCardHome .cardHome h2,
.secCardHome .cardHome p,
.secCardHome .cardHome a,
.secCardHome .cardHome i,
.secCardHome .cardHome {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.secCardHome .cardHome:hover{
    background: #b8cbdb;
    color: #ffffff;
}

.secCardHome .cardHome:hover p{
    color: #ffffff;
}

.secCardHome .cardHome:hover i{
    color: #ffffff;
}

.secCardHome .cardHome:hover a{
    background: #15354d;
}

.secCardHome .cardHome a:hover{
    color: #0731c8;
    background: #ffffff;
}

.cnfmark{
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.markrow{
    display: flex;
    justify-content: center;
    margin-bottom: 5em;
}

.swiper{
    padding-bottom: 3em!important;
}

.swiper-slide img{
    width: 180px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swiper-pagination-bullet{
    background: #989898;
}

.swiper-pagination-bullet-active{
    background: #15354d!important;
}

.secBody {
    margin: 5em 0 3em;
    overflow: hidden;
}

.secBody .containWho{
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    padding-left: 0;
}

.secBody .containWho:nth-child(1){
    background: #00f0a8;
}

.secBody .containWho:nth-child(2){
    background: #3498db;
}

.secBody .containWho:nth-child(3){
    background: #f1c40f;
}

.secBody .containWho::before{
    content: '';
    width: 101%;
    height: 70px;
    position: absolute;
    top: 0;
    margin-top: -35px;
    margin-left: -2px;
    background: #ffffff;
    transform: rotate(1.7deg);
    -ms-transform: rotate(1.7deg);
    -webkit-transform: rotate(1.7deg);
    -o-transform: rotate(1.7deg);
    -moz-transform: rotate(1.7deg);
    background-color: #fff;
}

.secBody .containWho::after{
    content: '';
    width: 101%;
    height: 70px;
    position: absolute;
    bottom: 0;
    margin-bottom: -35px;
    margin-right: -2px;
    background: #ffffff;
    transform: rotate(1.7deg);
    -ms-transform: rotate(1.7deg);
    -webkit-transform: rotate(1.7deg);
    -o-transform: rotate(1.7deg);
    -moz-transform: rotate(1.7deg);
    background-color: #fff;
}

.secBody .colWho{
    padding: 3em 0;
    color: #ffffff;
    text-align: center;
}

.colWho h3{
    font-size: 2.6rem;
    font-weight: 300;
    margin: 1rem 0;
    padding-bottom: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
}

.colWho h3::before{
    content: '';
    width: 20%;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: #ffffff;
}

.colWho p{
    margin: 4rem 0 2rem;
    font-size: 1.36rem;
}

.secBody .middleWho{
    margin: 5em 0;
}

.colWho.txtdark{
    color: #000!important;
    text-align: center;
}

.colWho.txtdark h3::before{
    content: '';
    width: 15%;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: #0731c8;
}

@keyframes animation{
    from{
        opacity: 0;
        -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -webkit-transform: translateY(15px); 
        -o-transform: translateY(15px); 
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@media (max-width: 767px){
    header .container {
        justify-content: space-between;
    }

    header .nav {
        margin-right: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 70%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #15354d;
        transform: translateX(500px);
        -webkit-transition: transform .4s ease-in-out;
        -o-transition: transform .4s ease-in-out;
        transition: transform .4s ease-in-out;
        z-index: 100;
    } 

    header .nav.change{
        transform: translateX(0);
    }

    header .navtoggle,
    .navtogglemenu{
        color: #000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        cursor: pointer;
    }
    
    .navtoggle,
    .navtogglemenu{
        width: 35px;
        height: 30px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        -webkit-transition: ease-in-out .4s;
        -o-transition: ease-in-out .4s;
        transition: ease-in-out .4s;
        z-index: 99;
    }

    .navtogglemenu{
        position: absolute;
        top: 5%;
        right: 10%;
        -webkit-transition: ease-in-out .4s;
        -o-transition: ease-in-out .4s;
        transition: ease-in-out .4s;
    }

    .line{
        width: 100%;
        height: 2px;
        background-color: #000;
        -webkit-transition: ease-in-out .6s;
        -o-transition: ease-in-out .6s;
        transition: ease-in-out .6s;
    } 

    .change .line{
        background-color: #ffffff;
    }

    .change .line1{
        transform: rotateZ(-405deg) translate(-8px, 6px);
    }

    .change .line2{
        opacity: 0;
    }

    .change .line3{
        transform: rotateZ(405deg) translate(-8px, -6px);
    }

    header .nav ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    header .navlink {
        font-size: 1.2rem!important;
        font-weight: 300!important;
        color: #ffffff!important;
        opacity: 0;
    }

    header .navitem {
        margin: 2em 1rem!important;
    }

    .nav.change .navlink{
        animation: animation .5s ease forwards var(--i);
    }

    .nav.change .navlink::before {
        background-color: #ffffff;
    }

    .carouselitem .buttCarousel{
        display: none;
    }

    .secCardHome {
        margin-top: -6px;
    }

    .colWho h3 {
        font-size: 1.5rem;
    }

    .colWho p {
        font-size: .96rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }  

    .cnfmark{
        font-size: 1.2rem;
    }

    .swiper-slide img{
        width: 120px;
    }
}

/* fixed contact */

.stickyContact{
    position: fixed;
    top: 90%;
    right: 1%;
    transform: translateY(-90%);
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.stickyContact a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    background: #15354d;
    border-radius: 50%;
    margin-top: .3rem;
}

.stickyContact a:hover{
    background: #778ddb;
}

.stickyContact i{
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    padding: 20px;
}

/* services */

.containTarif{
    padding-top: 100px;
    margin-bottom: 6em;
}

.containTarif .rowo{
    margin-bottom: 8em;
}

.cardpann{
    margin-bottom: 1.5rem;
}

.cardpann h3{
    font-size: 1.3rem;
    color: #0731c8;
}

.cardpann p{
    font-size: .85rem; 
}

.txtservcd{
    text-align: center;
    margin-top: 3rem;
}

.txtservcd h3{
    font-size: 2.3rem;
    font-weight: 600;
}

.txtservcd p{
    font-size: 1.6rem;
    color: #0731c8;
}

.cardservfr{
    height: 320px;
    background: #c6d0f1;
    padding: 1rem .5rem;
    border-radius: 30px;
}

.imgcardservfr,
.txtcardservfr{
    text-align: center;
}

.imgcardservfr img{
    height: 100px;
}

.txtcardservfr h5{
    margin-top: .5rem;
    text-transform: uppercase;
    font-size: .97rem;
    font-weight: bold;
}

.ulcardserv {
    padding-left: 1rem;
    font-size: .8rem;
}

.ulcardserv li{
    list-style: inside;
    text-align: left;
}



@media (max-width: 767px){
    .containTarif .rowo {
        margin-bottom: 5em;
    }
    
    .colTarif{
        margin: 3em 0;
    }

    .containTarif h2 {
        font-size: 1.2rem;
    }

    .containTarif h2 span {
        font-size: 1.4rem;
    }
    
    .colcardservfr{
        margin: .5rem 0;
    }

    .cardpann{
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .cardpann p{
        font-size: .7rem;
    }   

    .txtservcd h3{
        font-size: 1.9rem;
    }

    .txtservcd p{
        font-size: 1.3rem;
    }

    .colcardservfr{
        padding: .2rem 2rem;
    }

    .txtcardservfr h5{
        font-size: 1.2rem;
    }

    .ulcardserv li{
        font-size: .95rem;
    }

}


/* contact *//* contact */

.secFormContc{
    background: #fff;
    padding-top: 100px;
}

.nerContc .colLeftContc h2{
    font-size: 45px;
    text-align: left;
    color: #000;
}

.colLeftContc .contLeftContc{
    display: flex;
    flex-direction: column;
    margin: 2em 0;
}

.colLeftContc .contLeftContc a{
    text-decoration: none;
    margin-left: 1rem;
    color: #000;
    transition: .3s;
}

.colLeftContc .contLeftContc .iconContact{
    padding: 20px 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: .5em 0;
}

.colLeftContc .contLeftContc i{
    font-size: 1.8rem;
    color: #000;
    transition: .3s;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.colLeftContc .contLeftContc a:hover{
    color:#0731c8;
}

.msgCntc{
    text-align: center;
    margin: 2em 0;
}

.msgCntc p{
    font-size: 20px;
    margin-bottom: 0;
}

.msgCntc .error{
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    color: #c82323;
}

.msgCntc .succed{
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    color: #48db46;
}

.msgCntc .succed i,
.msgCntc .error i{
    margin-right: 10px;
}

.colLRightContc .champoblg{
    font-size: 15px;
    text-align: right;
    color: #c82323;
}

.colLRightContc form{
    display: flex;
    flex-direction: column;
}

.colLRightContc form label{
    font-weight: 500;
    font-size: 23px;
    color: #000;
    letter-spacing: .5px;
    text-align: left;
    line-height: 1.3;
    margin: 20px 0 0 0;
}

.colLRightContc form input, 
.colLRightContc form textarea{
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .4px;
    text-align: left;
    padding: 20px 0 15px 0;
    margin-bottom: 1em;
    color: #aaaaab;
    background-color: transparent;
    border-width: 0;
    border-color: #aaaaab;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-bottom-width: 2px;
    width: 100%!important;
    box-shadow: none;
    outline: none;
}

.colLRightContc form input:focus,
.colLRightContc form textarea:focus{
    border-color: #000;
    color: #000;
}

.prixProject{
    display: flex;
    justify-content: space-between;
}

.prixProject .inpPrixProject{
    width: 40%!important;
}

.recaptchaProject{
    padding: 5px;
    margin: 2em 0;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
}

.colLRightContc form .buttProject{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4em;
}

.colLRightContc form .buttProject p{  
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
    letter-spacing: .5px;
    margin-bottom: 0;
}

.colLRightContc form button{
    width: 48%;
    position: relative;
    background: #000;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    text-align: left;
    text-transform: uppercase;
    padding: 30px 24px;
    border: none;
    -webkit-transition: color ease .4s;
    -ms-transition: color ease .4s;
    transition: color ease .4s;
    outline: none;
    cursor: pointer;
}

.colLRightContc form button:after{
    content: '\2192';
    font-size: 30px;
    right: 30px;
    top: 48%;
    transform: translate(-50%, -50%);
    position: absolute;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.colLRightContc form button:hover{
    color: rgba(255, 255, 255, 0.637);
}

.maps{
    margin-top: 6em;
    padding-left: 0;
    padding-right: 0;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(90%);
    -ms-filter: grayscale(90%);
    -o-filter: grayscale(90%);
    filter: grayscale(90%);
}

.maps iframe{
    width: 100%!important;
}

@media (max-width: 767px){
    .msgCntc .error {
        font-size: 17px;
    }

    .colLRightContc form button {
        width: 48%;
        font-size: 14px;
        padding: 22px 8px;
    }

    .colLRightContc form .buttProject p {
        font-size: 15px;
    }

    .nerContc .colLeftContc h2 {
        font-size: 36px;
        text-align: center;
    }

    .colLRightContc form button:after {
        font-size: 26px;
        right: 0;
    }

    .colLRightContc form label {
        font-size: 20px;
    }

    .colLRightContc form input, .colLRightContc form textarea {
        font-size: 14px;
    }

    .colLeftContc .contLeftContc .iconContact {
        padding: 21px 23px;
    }

    .colLeftContc .contLeftContc{
        display: flex;
        justify-content: center;
    }
}


/* footer *//* footer */

footer{
    background-color: #0731c8;
    padding: 2rem 0 .8rem;
}

footer .logofooter,
footer .pagefooter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .pagefooter a{
    font-size: 1.05rem;
    margin: .5rem 0;
    font-weight: 400;
}

footer .pagefooter a,
footer .socialfooter a,
footer .copyright a{
    color: #fff;
    text-decoration: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

footer .pagefooter a:hover,
footer .socialfooter a:hover{
    color: rgba(255, 255, 255, 0.637);
}

footer .socialfooter{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .socialfooter i{
    font-size: 2.8rem;
    margin: 0 .6rem;
}

footer .copyright{
    text-align: center;
    font-size: .95rem;
    margin-top: 1.7rem;
    color: #fff;
}

footer .copyright a{
    color: #fff;
}

footer .copyright a:hover{
    color: yellow;
}

@media (max-width: 767px){
    footer .pagefooter a{
        margin: 1rem 0;
    }

    footer .socialfooter{
        margin: 1rem 0;
    }

    footer {
        padding: 2rem 0;
    }
}

/* cookies */

.light.cookie{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 41, 52, 0.75);
    height: 100%;
    display:none;
    width:100%;
    padding:3em 0;
    z-index: 198;
}

.wrapCookie{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 2em 1em;
    color: #232323;
    font-size: 1em;
    z-index: 199;
}

.title-wrap h4{
    font-weight: 400;
    text-align: center;
}

.msg-wrap p{
    font-weight: 300;
    font-size: 0.95rem;
    margin: 1.6rem 0;
    text-align: center;
}

.btn-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-wrap a{
    margin-right: 2em;
    font-size: 17px;
    font-weight: 300;
    color: rgb(0, 0, 0);
    transition: .3s;
}

.btn-wrap a:hover{
    color: #83e47f;
    text-decoration: none;
}

.btn-wrap .btnprim{
    padding: .5rem 1.6rem;
    background: #83e47f;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: .5s;
} 

.btn-wrap .btnprim:hover{
    background: #15354d;
    color: #fff;
}