/********** Template CSS **********/
:root {
    --primary: #147E93;
    --secondary: #67BDBD;
    --light: #F7F8FC;
    --dark: #111111;
}
body{
    overflow-y: hidden;
}
#content-web{
    opacity: 0;
    /*display: none;*/
}


#header-carousel .carousel-item img.cor {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.btn-primary {
    color: #000;
    background-color: #67BDBD;
    border-color: #67BDBD;
}
.owl-carousel {
   margin-bottom: 20px;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.logo img:first-of-type{
    height: 60px;
    margin-right: 20px;
}
#header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}
#header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}
#header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}
#header-carousel .owl-nav .owl-prev, #header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}
#header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*.logo img:last-of-type{*/
/*    height: 30px;*/
/*}*/
.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.addInfo{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.addInfo span{
    font-size: calc(1rem + 2.7vw);
    color: white;
    font-weight: 700;
   line-height: 1.2;
    margin-bottom: .5rem;
}
.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.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;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #147E93;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 5%;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    /*width: 15%;*/
    /*height: 45px;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*color: #FFFFFF;*/
    /*background: transparent;*/
    /*border: 1px solid #FFFFFF;*/
    /*border-radius: 45px;*/
    /*font-size: 22px;*/
    /*transition: .5s;*/
}
.inneCarrou{
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}
.inneCarrou button {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;

}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 3rem;
}



.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    /*width: 60px;*/
    /*height: 60px;*/
    width: 100%;
    /*height: 174px;*/
}
.owl-item.active.center img{
    filter: grayscale(0);
}
.owl-item img{
    filter: grayscale(1);
    transition: .5s;
}
.callback {
    position: relative;
    height: 700px;
    overflow: hidden;
}
.container-para{
    position: relative;
    z-index: 2;
    min-height: 450px;
}
.full-v{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0 !important;
}
.para-1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.content-para{
    overflow: hidden;
    height: 450px;
    position: absolute;
    width: 100%;
}
.content-para img{
    width: 100%;

}
.don{
    width: 100%;
    height: 100%;
}
.testi{
    position: relative;
    overflow: hidden;

}

.don:first-of-type img{
    position: absolute !important;
    left: 2%  !important;
    top: 30%;
    width: 90px;
}
.don:nth-of-type(2) img{
    position: absolute !important;
    left: 20%;
    top: 5%;
    width: 90px;
}
.don:nth-of-type(3) img{
    position: absolute !important;
    right: 20%;
    top: 5%;
    width: 90px;
}
.don:nth-of-type(4) img{
    position: absolute !important;
    right: 2%  !important;
    top: 30%;
    width: 90px;
}
#scene{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    z-index: 1;
}
#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: fill;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #147E93;
}
.nav-link.active h5 {
    color: #fff;
}
.text-primary {
    color: #147E93 !important;
}
/*.callback::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 50%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);*/
/*    z-index: -1;*/
/*}*/
.serv{
    display: flex;
    justify-content: center !important;
}
.img-fluide{
    width: 150px;

}
.testimonial-carousel .owl-item.center .testimonial-item {
    /*background: white !important;*/

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



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

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

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

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

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

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

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


.back{
    opacity: 0;
}
.back1,.back2{
    position: absolute;

    z-index: 1000;
}
img.back1{
    top: 36%;
    width: 30%;
    left: 24%;
}
img.back2{
    bottom: 50%;
    width: 31%;
    right: 18%;
    z-index: 1002;
}
.pre-logo path{
    fill-opacity: 0;
    stroke-width:0.50px !important;
    transition: fill-opacity 1s;
}
.pre-logo path.finished{
    fill-opacity:1;
}
svg{
    width: 75%;
}
.dole{
    background: rgba(255,255,255,.3);
}
.overlay-te{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    z-index: 1;
}
.bla{
    position: absolute;
}
.blat{
    position: absolute;
    z-index: 1000;
}
.text-secondary {
     color: white !important;

}
.container-caption{
    width: 40%;
}
.carousel-inner h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-style: normal;
    color: #fff;
    font-size: 3.1rem;

}
.pre-logo{
    position: fixed;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
}
/* Assurez-vous que le conteneur du carrousel est positionné relativement */
.carousel-item {
    position: relative;
    width: 100%; /* largeur complète du conteneur */
    aspect-ratio: 16 / 9; /* Définir le ratio souhaité */
}

.carousel-item img.w-100  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Remplit le .carousel-item */
}
.overlay-video{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
#contact{
    padding: 0!important;
}
.number-plat{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.para-1{
    width: 100%;
    z-index: 2;
}
.desk-img {
    display: block;
}

.mobile-img {
    display: none;
}
.addInfo h1,.addInfo span{
    margin-bottom:0 !important;
}
.loigt .fa,.loigt .fas {
    font-size: 3rem;
    font-weight: 900;
}
.loigt{
    width: 25%;
}
.addInfo{
    margin: 10px;
    overflow: hidden;
}
.yor{
    color: white;
    font-weight: 900;
}
.pills_nav button{
    font-size: 1rem;
}
.pills_nav button h5{
    font-size: 1rem;
}

.navmob{
    display: none;
}
.navdesk{
    display: block;
}
.backitup{


}
/* Portrait */
@media (max-width: 480px) {
    /* Styles pour les téléphones en mode portrait */
    #scene{
        display: none;
    }
    #header-carousel .carousel-item {
        position: relative;
        min-height: 100vh;
    }
    .para-1 {
        position: absolute;
        left: initial;
        transform: initial;
        top: 5%;
        width: 100%;
        z-index: 2;
    }
    .fa, .fas {
        font-weight: 900;
        font-size: 1.3rem;
    }
    .addInfo {
        margin: 3px;
        font-size: 1.3rem;
    }
    .container-para {
        padding-bottom: 56.25%;
        min-height: initial;
    }
    .yor{
        font-size: 1.1rem !important;
    }
    .addInfo span {
        font-size: 1.3rem;
    }
   .number-plat .text-white{
        font-size: 1.4rem;
    }
    .number-plat{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .loigt{
        width: 50%;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        margin-bottom: 10%;
    }
    .content-para {
        overflow: hidden;
         height:initial !important;
        position: absolute;
        width: 100%;
    }
    .loigt{

        margin-bottom: 5%;

    }
}
/* Paysage */
@media (min-width: 481px) and (max-width: 767px) {
    /* Styles pour les téléphones en mode paysage */
    .yor{
        font-size: 1.4rem !important;
    }
    .loigt{

        margin-bottom: 7%;

    }
}
@media (max-width: 991px) {
    .nav {
        display: flex;

    }
    .navmob{
        display: block;
    }
    .navdesk{
        display: none;
    }
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .desk-img {
        display: block !important;
    }

    .mobile-img {
        display: none !important;
    }
    .container-caption {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    img.back1 {
        width: 30%;
        z-index: 1001;
        top: 50%;
        left: 50%;
        transform: translate(-100%, -50%);
    }
    /*.backitup{*/
    /*    -webkit-position: relative; !* Préfixe vendeur pour Safari *!*/
    /*    position: relative;*/
    /*    top: 28%;*/
    /*    width: 100%;*/
    /*    height: 10%;*/
    /*}*/
    img.back2 {
        width: 31%;
        z-index: 1003;
        top: 50%;
        left: 50%;
        transform: translate(0%, -50%);
    }


    .desk-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
    #scene {
        display: none;
    }
    #header-carousel .carousel-item {
        position: relative;
        min-height: 100vh;
    }
    .para-1 {
        position: absolute;
        left: initial;
        transform: initial;
        width: 100%;
        z-index: 2;
        top: 10%;
    }
    .fa, .fas {
        font-weight: 900;
        font-size: 1.7rem;
    }
    .addInfo {

        font-size: 1.7rem;
    }
    .container-para {
        padding-bottom: 56.25%;
        min-height: initial;
    }

    .addInfo span {
        font-size: 1.7rem;
    }
    .number-plat .text-white{
        font-size: 1.7rem;
    }
    .number-plat{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .loigt{
        width: 50%;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    .content-para {
        overflow: hidden;
        height:initial !important;
        position: absolute;
        width: 100%;

    }

    /*#scene {*/
    /*    display: none;*/
    /*}*/
    /*.container-caption {*/
    /*    width: 90%;*/
    /*}*/
    .overlay-te {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    #header-carousel .carousel-item {
        position: relative;
        min-height: 100vh;
    }
    #header-carousel .carousel-item img.cor {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .number-plat{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .para-1{
        width: 100%;
        z-index: 2;
    }
    .carousel-inner h1 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        font-style: normal;
        color: #fff;
        font-size: 1.8rem;
    }
    .container-caption {
        width: 70%;
    }
    .lead {
        font-size: 1rem;
        font-weight: 300;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    #scene {
        display: none;
    }
    .container-caption {
        width: 90%;
    }
    .overlay-te {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    #header-carousel .carousel-item {
        position: relative;
        min-height: 100vh;
    }
    #header-carousel .carousel-item img.cor {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .number-plat{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .para-1{
        width: 100%;
        z-index: 2;
    }
    .carousel-inner h1 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        font-style: normal;
        color: #fff;
        font-size: 1.8rem;
    }
    .container-caption {
        width: 70%;
    }
    .lead {
        font-size: 1rem;
        font-weight: 300;
    }

}
@media (min-width: 1025px) and (max-width: 1280px) {
    .container-caption {
        width: 70%;
    }   /* Styles pour les petits écrans d'ordinateurs portables et de bureau */
}
@media (min-width: 1281px) and (max-width: 1440px) {
    /* Styles pour les écrans de bureau moyens */
}
@media (min-width: 1441px) {
    /* Styles pour les grands écrans de bureau */
}
