@import url(./root.css);
@import url(./header.css);

@import url(./footer.css);
.card {
    border-radius: 6px;
    margin: 10px 0
}

.card:hover {
    border-radius: 0;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .16)
}

.bg-section {
    background: #f5f5ff
}
section:nth-child(2n) {
    background-color: #f6f6f6;
}


.h3 {
    font-size: 35px;
    color: #fff;

}

.title {
    color: #000;
    font-size: 30px;

}

.title span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 44px;
    width: 65px;
    height: 4px;
    background-color: var(--color-site-1) 
}



.title span {
    color: var(--color-site-1) ;
    position: relative
}

.description {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: grey;

    /*width: 80%;*/
}

.banner .owl-nav {
    margin-top: 0;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 50%;
    padding: 0 10px;
}
.banner .owl-next i, .owl-prev i {
    color: #fff;
}

.banner .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.banner .owl-carousel .owl-dot span {
    display: flex;
    align-items: center;
    justify-content: center;

}

.banner .owl-carousel .owl-dot span i {
    font-size: 12px;
    color: grey;
    transition: all 0.3s ease;
}

.banner .owl-carousel .owl-dot.active span i {
    font-size: 12px;
    color: var(--color-site-1);
}

.owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    margin-top: 0
}


.owl-next i, .owl-prev i {
    width: 30px;
    height: 40px;
    background: var(--color-site-1)  !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 !important;
    font-size: 18px;
    cursor: pointer;
    border-radius: 0 !important;
    padding: 0 !important;

}
.owl-theme .owl-nav [class*="owl-"] {

    margin: 2px;
    padding: 0;
    background: #fff;

}
.owl-next i:hover, .owl-prev i:hover {
background-color: #808080 !important;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding-left:0
}
/*Scrolls button*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--color-site-1) ;
    color: white;
    cursor: pointer;
    border-radius: 4px;

}

#myBtn:hover {
    background-color: #555;
}



.top-header-right a:hover{
    color:#757575
}



.d-inline-flex li.list-inline-item:first-child {
    border-right: 1px solid #fff;
    padding-right: 10px;
}


.navbar .hamburger-lines, .navbar input[type=checkbox] {
    display: none
}







@media only screen and (min-width: 767px) and (max-width: 1490px) {

    .carousel-inner .carousel-item a img{
        height: 550px;
        object-fit: cover;
        background-size: cover;
    }

    .filter {
         padding-bottom: 0;
    }
}


.carousel-indicators {
    position: absolute;
    right: 0;
    left: auto;
    width: fit-content;
    top: -35px;
    bottom:auto
}
.carousel-indicators .active{
   border: 2px solid var(--color-site-1) ;
}
.banner .carousel-indicators {
    flex-direction: column;
    direction: rtl;
    display: flex;
    align-content: center;
    justify-content: center;
    height: 80%;
}

.banner .carousel-indicators li {
    height: 65px;
    width: 100px;
    margin: 5px;
    transition: .3s
}

.banner .carousel-indicators li img {
    object-fit: cover
}
.banner .carousel-control-prev, .banner .carousel-control-next {
    top: 45%;
    width: 30px;
    height: 40px;
    background: var(--color-site-1)  !important;
    flex-shrink: 0;
    font-size: 18px;
    cursor: pointer;
    border-radius: 0 !important;

}

.banner .carousel-control-prev {
    left: 3%;
}
.banner .carousel-control-next{
    right: 3%;
}
.banner .carousel-controls li.active {
    border-color: var(--color-site-1) 
}
.filter {
    padding-bottom: 10px;
}
.filter label {
    top: 10px;
    position: absolute;
    left: 50px;
    color: #363636;

}

.filter .form-control {
    height: 70px;
    padding: 15px 0 0 50px;
    font-size: 14px;
    box-shadow: none
}

.filter .btn.submit {
    color: #fff;

    border-radius: 4px;
    font-size: 16px;
    border: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    height: 70px;
    background-color: var(--color-site-1)
}
.filter .dropdown-item.active ,.filter .dropdown-item:active {

    background-color: var(--color-site-1);
}




.filter .btn.submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,0.35) 50%,
            transparent 100%
    );
    transition: left 0.5s ease;
}

.filter .btn.submit:hover::before {
    left: 150%;
}


.filter .btn.submit::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: height 0.3s ease;
    z-index: 0;
}

.filter .btn.submit:hover::after {
    height: 100%;
}

.filter .bg-section-filter {
    background: rgb(62 59 59 / 48%);;
    border-radius: 30px;
    position: relative;
    /*margin-top: -95px;*/
    margin-top: -145px;
    padding: 20px 33px;
}

 .input-calendar::before, .input-chambre::before, .input-search::before {
    background-repeat: no-repeat
}

.filter .bg-section-filter {
    box-sizing: border-box;
    z-index: 11
}

.filter .bg-filter {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px
}

.filter .input-icon::before {
    color: #a8a8a8;
    text-align: center;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 12px
}

input::placeholder {
    color: grey;
    font-size: 14px;

}

.input-search::before {
    background-image: url('../image/icon/icon_map.svg');
    width: 40px;
    content: ""
}

.input-calendar::before {
    background-image: url('../image/icon/icon_calendar.svg');
    width: 40px;
    content: ""
}

.input-chambre::before {
    background-image: url('../image/icon/icon_chambre.svg');
    width: 40px;
    content: ""
}

.hotels .card, .promo-hotels .card, .circuits .card {
    padding: 1rem
}

.hotels img, .promo-hotels img{
    height: 300px;
    object-fit: cover
}

.titre-card {
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;

/*line-height: 30px;*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.bi.bi-star-fill {
    font-size: 12px;
    color: #ffcc10
}

.btn.btn-list, .btn.submit {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase
}

.star {
    font-size: 14px;
    color: grey;

    padding-bottom: 7px
}

.fa-star{
    color:#ffcc10;
    font-size: 11px;

}

.star span {
    padding-left: 7px
}

.card-text {
    font-size: 14px;
    color: grey;

    margin-bottom: 0 !important
}

.card-body {
    padding: 10px 0 0
}

.btn.btn-list {
    border-radius: 5px;
    color: #f5f5ff;
    box-shadow: inset 0 0 0 30px var(--color-site-2);

    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-list:hover {
    box-shadow: inset 0 0 0 0 var(--color-site-2);

    background-color: #fff;
    border: 1px solid var(--color-site-2);
    color: var(--color-site-2);
}




.btn.submit {
    border-radius: 5px;
    background-color: var(--color-site-1) ;
    border: none;
    box-shadow: none
}



.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
    color: #fff;
    background-color: var(--color-site-1) 
}

.hotels .nav-tab .nav {
    gap: 30px
}

.prix {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-site-1) 
}

.voyages .prix {
    ;
    font-size: 22px;
    color: #fff;
}

.nav-pills .nav-link.active {
    font-size: 16px;

    border-radius: 8px
}

.nav-pills .nav-link {
    border: 1px solid var(--color-site-1) ;
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
    color: grey;

    cursor: pointer
}

div#pills-tabContent {
    padding: 20px 0
}

.voyages .text-voyages {
    font-size: 14px;
    color: grey;
    margin-top: 8px;

}
.voyages .date-nuite, .circuits .date-nuite{
    background-color: var(--color-site-1);
    color: #fff;
    padding: 4px 7px;
    border-radius: 5px;
    font-size: 13px;


}
.voyages .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 14px;
    background: linear-gradient(rgba(0,0,0,0.5) 100%,rgba(0,0,0,0.65) 100%);
    border-radius: 6px;

}
.voyages img{
    height: 400px;
    object-fit: cover;

}
.voyages .titre-card,
.voyages .text-voyages{
    color: #fff;


}

.voyages .card{
    background: none;
    border: none;
}
.voyages .item-info{
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 14px;

}
.voyages .item-info .card-text{
    color: #fff;
}

#vol img, #omra img{
    height: auto;
    max-width: 100%;
}
span.promo {
    position: absolute;
    background-color: var(--color-site-1) ;
    top: 16%;
    left: 7%;
    color: #fff;
    padding: 3px;
    font-size: 12px;

}

.circuits img{
    object-fit: cover;
    height: 200px;
}

@media (max-width:991px) {
    .circuits img{
        object-fit: cover;
        height: auto;
    }
}
.circuits .title-circuits span {
    font-size: 36px;
    color: var(--color-site-1) ;

    position: relative
}

.circuits .title-circuits span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 55px;
    width: 65px;
    height: 4px;
    background-color: var(--color-site-1) 
}

.circuits .title-circuits {
    font-size: 36px;
    line-height: 80px;
    color: #fff;

}

.circuits .description-circuits {
    font-size: 18px;
    color: #fff;

}

span.nuites {
    position: absolute;
    background-color: var(--color-site-1) ;
    top: 16px;
    left: 16px;
    color: #fff;
    padding: 5px;

    font-size:14px;
}

.circuits .text-circuits {
    font-size: 14px;
    color: grey;

    margin-top: 5px;
}

.form-input-group {
    position: relative;
    height: 3rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);

}

.form-input-group input {
    height: 100%;
    width: 100%;
    border: none;
    background-color: transparent;
    padding: .625rem 70px .625rem .75rem;
    font-size: .875rem;

    color: rgb(69 90 100);
    outline: 0
}


#accordion .page_list li{
    padding-left: 20px;
    font-size: 14px;
    color: grey;
}

.gap-2{
    gap:8px
}

.border-radius-50{
    border-radius:50%
}
.copyright {
    color: #808080;
    padding: 10px 0
}

.copyright .border_top{
    border-top: 1px solid  #dee2e6;
}
.copyright a.copy-lien {

    color: #808080;
    font-size: 13px;

    text-transform: uppercase;

}


.modal .btn.btn-orange, .modal button.btn-secondary {
    font-size: 14px;

    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    padding: 10px 0;
    box-shadow: none;
    color: #fff
}

.modal button.btn-secondary {
    background-color: #6c757d;
    border: none;
    border-radius: 10px
}

.modal .btn.btn-orange {
    border-radius: 10px;
    background-color: var(--color-site-1) ;
    border: none
}

.modal .modal-content .modal-body hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.modal .form-group select {
    min-height: 35px;
    padding: 5px 15px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    width: 100%;
    font-size: 16px
}

.modal .fa-trash:before {
    content: "\f1f8";
    color: red
}

.daterangepicker .drp-buttons .cancelBtn.btn {
    background-color: #6c757d !important;
    color: #fff;
    border: 1px solid  #6c757d !important;

}

.btn:focus, .daterangepicker .drp-buttons .cancelBtn:focus {
    box-shadow: none !important
}

.daterangepicker td.active {
    background-color: #6e9e07 !important;
    color: #fff
}

.daterangepicker .drp-buttons .btn {
    background-color: var(--color-site-1)  !important;
    border-color: var(--color-site-1)  !important;
}



@media (max-width: 1024px) {



    .filter .bg-section-filter {
        margin-top: 0px;
        padding: 20px 30px
    }

    .description {
        margin-top: 16px;
        margin-bottom: 12px;
        font-size: 16px;
        color: grey;

    }

    .titre-card {
        font-size: 17px;
        color: #000;

    }
}


@media (max-width: 991px) {

    .carousel-inner .carousel-item a img {
        height: 200px;
        object-fit: cover;
        background-size: cover;
    }
    .filter .container{
        padding: 0;
    }
    .filter .input-icon::before, .h3{
        text-align: center
    }
    .filter .bg-section-filter {
        margin-top: 0;
        padding: 20px;
        background: none;
        border-radius: 8px;
    }
    .filter .bg-filter {
        background: rgb(62 59 59 / 96%);
        border-radius: 0;
    }





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

    .filter .form-control {
        padding: 15px 0 0 63px;

    }
    .filter {
         padding-bottom: 0;
    }
    .circuits .description-circuits, .description {
        font-size: 14px;
        color: grey;

        margin-bottom: 12px
    }

    .filter .bg-filter .input-icon::before {
        color: #a8a8a8;
        text-align: center;
        height: 40px;
        position: absolute;
        left: 22px;
        top: 10px;
        z-index: 1
    }

    .filter .input-icon::before {
        color: #a8a8a8;
        height: 39px;
        position: absolute;
        left: 18px
    }

    .filter label {
        top: 10px;
        position: absolute;
        left: 65px
    }

    .circuits .title-circuits {
        font-size: 33px;
        color: #000;


    }

    .description {
        font-size: 14px;
        color: grey;


    }

    .title span::before {
        position: absolute;
        content: '';
        height: 2px
    }

    .filter .form-input-group {
        position: relative;
        height: 3rem;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
        margin-left: 0;
        margin-right: 0
    }

    .typeahead__field .input-icon::before {
        height: 37px;
        position: absolute;
        left: 0 !important;
        top: 0;
        z-index: 999999999
    }


    .bg-section-filter.d-lg-none.d-md-block.d-sm-block {
        z-index: 0
    }






    .promo-hotels .item, .voyages .item, .voyages .section-title, .circuits .item, .circuits .section-title {
        padding: 0 10px
    }


}

@media (max-width: 767px) {


    .input-icon::before {
        color: #a8a8a8;
        text-align: center;
        height: 37px;
        position: absolute;
        left: 21px;
        top: 10px;
        z-index: 1
    }


    .nav-tab .nav-item {
        margin: 0
    }

    .hotels .nav-tab .nav-item {
        white-space: nowrap
    }

    .hotels .nav-tab .nav {
        padding: 10px 0 0;
        gap: 5px;
        overflow: auto;
        display: flex;
        justify-content: start !important
    }

    .hotels .nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: nowrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none
    }

    .invite-btn {
        width: 100px
    }

    .promo-hotels .item, .voyages .item, .voyages .section-title, .circuits .item, .circuits .section-title {
        padding: 0 10px
    }


}

@media (max-width: 500px) {
    .navbar-container input[type=checkbox]:checked ~ .logo {
        display: none
    }
}

.bg-facebook:hover{
    color:#3B5998 ;
    background-color:#fff;
    border:1px solid #3B5998

}

.bg-twitter:hover{
color:#1DA1F2;
    background-color:#fff;
    border:1px solid #1DA1F2
}
.bg-whatsapp:hover{
    color:#25d366;
    background-color:#fff;
    border:1px solid #25d366
}
.bg-instagram:hover{
    color:#C32AA3;
    background-color:#fff;
    border:1px solid #C3232AA3
}
ol{
    padding-left: 5px;
}
p{
    margin-bottom:0
}




.section-raisons {

    background: #f8fafb;

    position: relative;
    overflow: hidden;
}
.raison-icon-wrap img {
    filter: brightness(0) saturate(100%);
}
/* Cercles décoratifs en arrière-plan */
.section-raisons::before,
.section-raisons::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.section-raisons::before {
    width: 340px;
    height: 340px;
    top: -80px;
    right: -80px;
    background: rgba(0, 174, 189, 0.07);
}
.section-raisons::after {
    width: 260px;
    height: 260px;
    bottom: -70px;
    left: -60px;
    background: rgba(229, 25, 126, 0.05);
}


.section-raisons .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;


    text-transform: uppercase;
    color: var(--color-site-1);
    margin-bottom: 14px;
}
.section-raisons .section-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-site-1);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-raisons .section-main-title {
    font-size: 32px;

    color: #1a2332;
    margin: 0 0 10px;
    line-height: 1.25;
    font-family: var(--font);
}
.section-raisons .section-main-title span {
    color: var(--color-site-1);
    position: relative;
}
/* Soulignement décoratif sous "Pourquoi" */
.section-raisons .section-main-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-site-1), var(--color-site-2));
    border-radius: 2px;
}

.section-raisons .section-subtitle {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;

}

.raison-card {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #eef0f5;
    padding: 36px 24px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1),
    box-shadow 0.3s cubic-bezier(.22,1,.36,1),
    border-color 0.3s ease;
}


.raison-card .card-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 12px;

    letter-spacing: 0.08em;
    color: #dde2ea;

}


.raison-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-site-1), var(--color-site-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

.raison-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
    border-color: rgba(0, 174, 189, 0.2);
}
.raison-card:hover::after {
    transform: scaleX(1);
}


.raison-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff0f6 0%, #e8fafb 100%);
    border: 1px solid #f0edf3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}
.raison-card:hover .raison-icon-wrap {
    background: linear-gradient(135deg, #fce8f3 0%, #d8f5f8 100%);
}
.raison-icon-wrap img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}


.raison-card-title {
    font-size: 14px;

    color: #1a2332;
    margin: 0 0 8px;


}
.raison-card-desc {
    font-size: 13px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.65;

}


@media (max-width: 991.98px) {
    .section-raisons {
        padding: 56px 0 64px;
    }
    .section-raisons .section-main-title {
        font-size: 28px;
    }
}


@media (max-width: 575.98px) {
    .section-raisons {
        padding: 48px 0 56px;
    }
    .section-raisons .section-main-title {
        font-size: 24px;
    }
    .raison-card {
        padding: 28px 20px 24px;
    }
}