@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
.body {
    font-family: 'Arial' !important;
    width: auto !important;
    overflow-x: hidden!important;
    box-sizing: border-box;
}

.elfsight-app-07450218-ded5-4a85-85c1-09bd09b90872 .eapps-link {
    display: none !important;
}

.cadre-image-interne figure:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.stage {
    padding: 40px;
    text-align: right;
}

.stage a {
    text-align: right;
    line-height: 1em;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #4685C4;
    border-radius: 4 px;
    display: inline-block;
    padding: 15px 12px 15px 15px;
    transition: background 200ms;
    /* border:1px solid #4685C4; */
}

.stage a:hover {
    color: #071230;
    text-decoration: none !important;
}

.stage a:after {
    font-family: 'FontAwesome', sans-serif;
    font-weight: 600;
    content: "\f105";
    margin-left: 10px;
    color: #4685C4;
    font-size: 18px;
    vertical-align: unset;
    transition: color 200ms;
}

.stage a:hover:after {
    color: #071230;
    text-decoration: none !important;
}

.stage1 {
    padding: 40px;
    text-align: right;
}

.stage1 a {
    text-align: right;
    line-height: 1em;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 22px;
    color: #4685C4;
    border-radius: 4 px;
    display: inline-block;
    padding: 15px 12px 15px 15px;
    transition: background 200ms;
    /* border:1px solid #4685C4; */
}

.stage1 a:hover {
    color: #071230;
    text-decoration: none !important;
}

.stage1 a:after {
    font-family: 'FontAwesome', sans-serif;
    font-weight: 600;
    content: "\f105";
    margin-left: 10px;
    color: #4685C4;
    font-size: 18px;
    vertical-align: unset;
    transition: color 200ms;
}

.stage1 a:hover:after {
    color: #071230;
    text-decoration: none !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #4685C4 !important;
    text-decoration: none;
    background-color: #f8f9fa;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 600 !important;
    color: #071230 !important;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}


/*style ajouté */

.logo {
    position: relative;
    z-index: 10000;
    top: 2%;
    left: 2%;
}

.contact-container {
    padding-bottom: 10rem;
}

.contact:hover {
    color: #071230;
}

.section-contact h2 {
    color: #191970;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.slider-text {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    left: 25%;
    right: 20%;
    top: 50%;
}

.fa.fa-home {
    color: #fff;
    /* margin: 10px 10px 0 0; */
}

.ico-close::before {
    content: url('../image/close.png');
    padding-right: 4px;
}

.slider-text h1 {
    color: #ffffff;
    font-weight: 800;
    font-size: 45px;
    text-align: center;
}

.slider-text h4 {
    font-weight: 300;
    width: 700px;
    text-align: center;
}

.champ {
    background-color: #4685C4;
    border: none;
}





.carousel-section {
    height: 600px;
    margin: 0;
    display: grid;
    grid-template-rows: 500px 100px;
    grid-template-columns: 1fr 30px 30px 30px 30px 30px 1fr;
    align-items: center;
    justify-content: right;
    padding-right: 100px;
}

main#carousel {
    grid-row: 1 / 2;
    grid-column: 1 / 8;
    width: 100vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 600px;
    --items: 5;
    --middle: 3;
    --position: 1;
    pointer-events: none;
}

div.item {
    position: absolute;
    width: 300px;
    height: 400px;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transition: all 0.25s linear;
    transform: rotateY(calc(-10deg * var(--r))) translateX(calc(-300px * var(--r)));
    z-index: calc((var(--position) - var(--abs)));
}

div.item:nth-of-type(1) {
    --offset: 1;
}

div.item:nth-of-type(2) {
    --offset: 2;
}

div.item:nth-of-type(3) {
    --offset: 3;
}

div.item:nth-of-type(4) {
    --offset: 4;
}

div.item:nth-of-type(5) {
    --offset: 5;
}

input:nth-of-type(1) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

input:nth-of-type(1):checked~main#carousel {
    --position: 3;
}

input:nth-of-type(2) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

input:nth-of-type(2):checked~main#carousel {
    --position: 2;
}

input:nth-of-type(3) {
    grid-column: 4 /5;
    grid-row: 2 / 3;
}

input:nth-of-type(3):checked~main#carousel {
    --position: 1;
}

input:nth-of-type(4) {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
}

input:nth-of-type(4):checked~main#carousel {
    --position: 4;
}

input:nth-of-type(5) {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
}

input:nth-of-type(5):checked~main#carousel {
    --position: 5;
}


/* ************* */

#form-bloc {
    border-radius: 5px 5px 5px 5px;
    justify-content: space-between;
    column-gap: 10px;
    display: flex;
    margin-left: 10px;
    padding: 10px 10px;
    background-color: #4685C4;
    border: none;
    color: #ffffff;
    font-size: 16px;
    align-items: center;
}

.champ:focus {
    outline: none;
}

.fa.fa-search {
    background-color: #4685C4;
    border: none;
}

.vl1 {
    border-left: 2px solid #4685C4;
    height: 65px;
    /* position: absolute; */
    /* left: 100%; */
    /* right: 90%; */
    top: -19;
}

.vl2 {
    border-left: 2px solid #4685C4;
    height: 65px;
    /* position: absolute;
    left: 8%; */
    /* top: -19; */
}

.fa-envelope:before {
    content: "\f0e0";
    margin-left: 20px;
}

#main-nav {
    justify-content: right;
    margin-right: 40px;
    /* align-items: center; */
}

.coordonee p {
    margin: 0 !important;
    color: #000;
}

.section-voyages-organises.container {
    margin-top: 10px;
}

.icon-text {
    display: flex !important;
    justify-content: center;
}

.form-select {
    border: none;
    max-width: 85%;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.form-select2 {
    border: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.select-items div,
.select-selected {
    border: 1px solid transparent;
    border-color: transparent;
    cursor: pointer;
    user-select: none;
}


/*style ajouté */

.trait {
    border-bottom: 2px solid #4685C4;
    position: relative;
    top: -3rem;
    width: 30%;
    MARGIN: 0rem 35%;
}

.trait3 {
    border-bottom: 2px solid #4685C4;
    position: relative;
    top: -4rem;
    width: 25%;
    MARGIN: 0rem 38%;
}

.trait2 {
    border-left: 2px solid #4685C4;
    position: relative;
    top: -3.5rem;
    width: 38%;
    height: 1rem;
    MARGIN: 0rem 50%;
}

.upper-bar {
    position: relative;
    top: 0%;
    font-family: 'Poppins', sans-serif !important;
    /* padding: 0.5rem;  */
    /* background-color: transparent; */
    color: #fff;
    z-index: 1000;
    background-color: #071230;
}

.close {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0%;
    padding: 12px 16px;
    transform: translate(0%, -100%);
}

.clipy-section1 {
    height: 600px;
    background-image: url('../image/voyageravec.jpg');
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    background-size: cover;
    background-repeat: no-repeat;
}


/*nav.navbar.navbar-expand-lg {
    margin-top: 0px;
    width: 100%;
    margin-top: 0px;
    font-family: 'Poppins', sans-serif !important;
    background-color: #071230;
    position: absolute;
    font-weight: bold;
     padding-bottom: 1.5rem !important; 
    z-index: 1000;
    opacity: 70%;
} */

.navbar .navbar-expand-lg {
    padding-top: 100px;
}

.navbar {
    margin-top: 0px;
    width: 100%;
    margin-top: 0px;
    font-family: 'Poppins', sans-serif !important;
    background-color: #ffffff;
    font-weight: bold;
    /* padding-bottom: 1.5rem !important; */
    z-index: 1000;
}

a.nav-link {
    color: #4685C4;
}

a.nav-link:hover {
    color: #071230;
    border-bottom: 2px solid #071230;
}

a.nav-link:active {
    color: #071230 !important;
    border-bottom: 2px solid #071230;
}

.slider {
    position: relative;
    top: auto;
    align-items: center;
}

.slide-interne {
    position: relative;
    margin-top: -7%;
}

.slider .carosel-one {
    -webkit-background-size: cover;
    background-size: 100% 100%;
    background-position: left;
    background-repeat: no-repeat;
    height: 700px;
}

.slider .carosel-tow {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    height: 700px;
    background-image: url('../image/1index.JPG')
}

.slider .carosel-three1 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    height: 700px;
    background-image: url('../image/2index.JPG')
}

.slider .carosel-four {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    height: 700px;
    background-image: url('../image/3index.JPG')
}

.slider .carosel-five {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    height: 700px;
    background-image: url('../image/4index.JPG')
}

.slider .carosel-sex {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    height: 700px;
    background-image: url('../image/5index.JPG')
}

.slider .carosel-seven {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    height: 700px;
    background-image: url('../image/6index.JPG')
}

.slide-interne .carosel-voyage-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    background-image: url('../image/voyorg.png');
}

.slide-interne .carosel-contact-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    background-image: url('../image/slider_contact.png');
}

.slide-interne .carosel-carte-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    background-image: url('../image/slider-voyage-carte.jpg');
}

.slide-interne .carosel-excursion-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    background-image: url('../image/circuits-excursions.png');
}

.slide-interne .carosel-billeterie-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    background-image: url('../image/slider-billeterie.png');
}

.slide-interne .carosel-hotels-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    background-image: url('../image/hoteltun.jpg');
}


/* #preloader{
    background: #000 url('../image/circle-loader.gif') no-repeat center;
    background-size: 30%;
    height:100vh;
    width:100%;
    position:fixed;
    z-index:100;
  } */

.slide-interne .carosel-event-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    background-image: url('../image/slider_event.jpg');
}

.slide-interne .carosel-omra-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    background-image: url('../image/couvertureomra.png');
}

.slide-interne .carosel-billiterie-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    background-image: url('../image/BILL2.jpg');
}

.slider .carosel-contact-one {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
    background-image: url('../image/slide2.jpg');
}

.slider .carosel-three {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 40%;
    height: 700px;
    background-image: url('../image/VOYAGE-ORGANISE.jpg')
}

.slider .carousel-item {
    float: left;
    animation: fadeInAnimation;
    animation-duration: 0.1s;
    animation-timing-function: ease-in-out;
}

.slider.img-voyage {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
    background-image: url('../image/voyages-a-la-carte.jpg');
}

@keyframes fadeInAnimation {
    0%,
    15%,
    100% {
        left: 0px;
        /*1ère image*/
    }
    35%,
    50% {
        left: -150px;
        /*2ème image*/
    }
}



.filter1 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0px 6px 12px 2px rgba(0, 0, 0, 0.19);
    width: 75%;
    margin: auto;
    text-align: center;
    background-color: #fff;
    position: relative;
    top: -12rem;
}

.filter {
    top: -14rem;
    border: 2px;
    font-size: 14px;
    /* padding-bottom: 0.5rem; */
    box-shadow: 0px 6px 12px 2px #707070;
    width: 70%;
    text-align: center;
    background-color: #fff;
    margin: auto;
    /* border-radius: 0.25rem;*/
    position: relative;
    margin-bottom: 16px;
    padding: 0px 1px 0px 23px;
}
.filter-bg .col-md-3{
    /* -ms-flex:0 0 25%;
    flex:0 0 25%; */
    max-width:17.5% !important;
}

.filter span {
    float: left;
    width: 20%;
    line-height: 2rem;
    padding-left: 4px;
    font-size: 13px;
    font-weight: 500;
}

.filter input[type=date] {
    width: 110% !important;
    height: 32px !important;
}

.filter input[type="date" i] {
    font-size: 13px !important;
    padding-inline-start: 15px !important;
    padding-inline-end: -1px !important;
}

.filter select.custom-select.form-control {
    height: 1.9rem;
    border-color: #F3F3F3 #F3F3F3 #F3F3F3 #dad8d8;
    border-radius: 0px;
    background-color: #F3F3F3;
    line-height: 1rem;
    padding: 4;
    font-size: 13px;
}

.filter .f1 {
    border: 1px solid #dad8d8;
    background-color: #EEEEEE;
    width: 95%;
    margin: auto;
    height: 2rem;
}

.filter .f2 {
    border: 1px solid #dad8d8;
    background-color: #EEEEEE;
    width: 90%;
    margin: auto;
    height: 2rem;
}

.filter input[type=date] {
    width: 102% !important;
    height: 2rem;
}

.filter li {
    margin-right: 0.8rem;
}

.filter input[type=date]:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.filter1 span {
    float: left;
    width: 20%;
    line-height: 2rem;
    padding-left: 4px;
    font-size: 13px;
    font-weight: bold;
}

input#reservationDate.form-control {
    color: #000;
}

input#reservationDate1.form-control {
    color: #000;
}

span.input-group-text.px-4 {
    border: none;
    background: transparent;
}

.form-group {
    margin-bottom: 6px !important;
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    
}

.filter1 .row {
    height: 75px;
    display: flex;
}

.filter1 select.custom-select.form-control {
    height: 1.9rem;
    border-color: #F3F3F3 #F3F3F3 #F3F3F3 #dad8d8;
    border-radius: 0px;
    background-color: #F3F3F3;
    line-height: 1rem;
    padding: 4;
    font-size: 13px;
}

.filter1 .f1 {
    border: 1px solid #dad8d8;
    background-color: #EEEEEE;
    width: 95%;
    margin: auto;
    height: 2rem;
}

.filter1 .f2 {
    border: 1px solid #dad8d8;
    background-color: #EEEEEE;
    width: 90%;
    margin: auto;
    height: 2rem;
}

.filter1 input[type=date] {
    width: 102% !important;
    height: 2rem;
}

.filter li {
    margin-right: 0.8rem;
}

.filter1 input[type=date]:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.section-hotel-en-tunisie.container {
    margin-top: -7rem;
}

.section-hotel-en-tunisie {
    font-family: 'Poppins', sans-serif !important;
}

.section-hotel-en-tunisie h2 {
    color: #d49c24;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.section-hotel-en-tunisie .tour-single {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    transition: 0.3s ease;
    margin-bottom: 30px;
    padding-bottom: 1rem;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.section-hotel-en-tunisie .tour-single .tour-details {
    padding: 8px 8px;
}

.section-hotel-en-tunisie .tour-single .tour-details h3 {
    font-size: 18px;
    font-weight: 400;
}

.section-hotel-en-tunisie .tour-single .tour-details h3 a {
    color: #000 !important;
    font-family: 'poppins';
    font-weight: bold;
}

.section-hotel-en-tunisie .tour-single .tour-rating {
    font-size: 14px;
}

.section-hotel-en-tunisie .tour-single .tour-rating ul {
    margin-bottom: 0;
}

.section-hotel-en-tunisie .tour-single .tour-rating ul li {
    display: inline-block;
}

.section-hotel-en-tunisie .tour-single .tour-rating ul li i {
    color: #d49c24;
}

.section-hotel-en-tunisie .fa-star:before {
    content: "\f005";
}

.section-hotel-en-tunisie .tour-single .tour-rating ul li:last-child {
    font-size: 13px;
}

.section-hotel-en-tunisie p.tour-duration {
    text-align: center;
}

.section-hotel-en-tunisie .tour-single .plus {
    width: 60%;
    height: 2.5rem;
    margin: auto;
    text-align: center;
}

.section-hotel-en-tunisie .tour-single .plus a {
    display: block;
    padding: 7px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins';
    background: #191970;
    margin-bottom: 1rem;
}

.fa-chevron-left:before {
    content: "\f053";
    opacity: inherit;
    background: #4694d5ad !important;
    padding: 17px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900 !important;
    padding: 11px;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: inherit !important;
}

.fa-chevron-right:before {
    content: "\f053";
    opacity: inherit;
    background: #4694d5ad !important;
    padding: 17px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900 !important;
    padding: 11px;
}

.section-hotel-en-tunisie .tour-single:hover {
    box-shadow: 4px 0 20px rgb(0 0 0 / 20%);
}

.section-hotel-en-tunisie a.carousel-control-prev,
.section-voyages-organises a.carousel-control-prev {
    background-color: transparent;
    width: 20px;
    left: -26px !important;
}

.section-hotel-en-tunisie a.carousel-control-next,
.section-voyages-organises a.carousel-control-next {
    background-color: transparent;
    width: 20px;
    right: -26px !important;
}

.section-hotel-en-tunisie a.carousel-control-prev i.fas.fa-chevron-left.fa-3x,
.section-voyages-organises a.carousel-control-prev i.fas.fa-chevron-left.fa-3x {
    color: #000;
    position: relative;
    top: -1rem;
}

.section-hotel-en-tunisie a.carousel-control-next i.fas.fa-chevron-right.fa-3x,
.section-voyages-organises a.carousel-control-next i.fas.fa-chevron-right.fa-3x {
    color: #000;
    position: relative;
    top: -1rem;
}

.section-voyages-organises {
    font-family: 'Poppins', sans-serif !important;
}

.section-voyages-organises h1 {
    color: #071230;
    font-weight: bold;
    text-align: center;
}

.section-voyages-organises .tour-small {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    margin-bottom: 1rem;
}

.section-voyages-organises figure {
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.section-voyages-organises .tour-small-content {
    background: #fff;
}

.section-voyages-organises .tour-small-title {
    color: #fff;
}

.section-voyages-organises .tour-small-title h5 {
    margin: auto;
    width: 25%;
}

.section-voyages-organises .tour-small-head a {
    color: #000;
    text-align: center;
}

.section-voyages-organises .tour-duree {
    font-weight: bold;
    font-family: 'Poppins';
    border: 1px solid #FF0000;
    position: absolute;
    right: 0rem;
    padding: 0.4rem;
    background-color: #FF0000;
    color: #fff;
    z-index: 1;
}

.section-voyages-organises .tour-duree::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -15px;
    border-color: #ff0000 #ff0000 #ff0000 rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 17px 0px 19px 14px;
}

.section-voyages-organises .tour-prix {
    font-weight: bold;
    font-family: 'Poppins';
    border: 1px solid #4685C4;
    position: absolute;
    left: 0rem;
    bottom: 0;
    padding: 0.4rem;
    background-color: #4685C4;
    color: #fff;
    z-index: 2;
}

.section-circuit-excursion h1 {
    color: #071230;
    font-weight: bold;
    text-align: center;
    margin: 0 4rem 4rem 4rem;
}

.omra h1 {
    color: #071230;
    font-size: 4em;
    font-weight: bold;
    text-align: center;
    margin: 0 4rem 4rem 4rem;
}


/*circuits*/

.section-circuit-excursion {
    font-family: 'Poppins', sans-serif !important;
}

.section-hotel-tunisie {
    font-family: 'Poppins', sans-serif !important;
    margin-top: -300px;
}

.section-hotel-tunisie h1 {
    color: #071230;
    font-weight: bold;
    text-align: center;
}

.mid:hover .cadre-contenue-interne {
    display: block;
    cursor: pointer;
}

.mid:hover .nbre-jour-interne {
    display: none;
}

div#selector {
    width: fit-content;
    border: 1px solid;
    border-color: #ddd;
    padding: 1rem;
    margin-right: 183px;
    margin-left: 60%;
    margin-top: -245px;
    margin-bottom: 4rem;
    border-bottom: 3px solid #4685C4;
    font-size: 14px;
    position: absolute;
    z-index: 1;
    align-items: flex-start;
}


/*omra*/

.omra {
    width: 60%;
    margin-bottom: 13px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px !important;
}

.titleomra {
    font-style: normal;
    font-size: 26px;
    font-weight: bold;
    padding: 10px 45px;
    text-align: center;
}

.omrafield {
    width: 60%;
    margin-bottom: 13px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px !important;
    padding: 15px;
}

input.omrainput {
    border-bottom: 1px solid #ddd;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 50%;
    border-radius: 0px !important;
    font-size: 15px;
    font-style: italic;
}

.labelomraa {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    margin-left: 10px;
}

.omrafield:hover {
    box-shadow: 0 2px 5px #4685C4;
}

.btnomra {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* margin-left: 43%; */
    color: #fff !important;
    background: #4685C4 !important;
    margin-top: 10px;
}

@media (max-width: 823px) {
    .row.btnclass {
        width: 100%;
        margin-left: -8.9px;
        margin-right: 12px;
    }
}

.borderdiv {
    border-right: 1px solid #ccc;
}

.cadre-image-interne {
    border-radius: 3% 3% 0 0;
}

.ombre-interne {
    border-radius: 3%;
    margin-bottom: 10px;
}

.ombre-interne {
    border: 1px solid #9f9f9f;
    /* -webkit-box-shadow: 0px 0px 10px 1px rgb(150 150 150 / 50%);
    -moz-box-shadow: 0px 0px 10px 1px rgba(150,150,150,0.5);
    box-shadow: 0px 0px 10px 1px rgb(150 150 150 / 50%); */
}

.cadre-image-interne {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.cadre-contenue-interne {
    background: #ffffff;
    padding: 15px;
    position: relative;
}

.cadre-image-interne a {
    color: #4685C4;
    text-decoration: none;
}

.nbre-jour-interne {
    position: absolute;
    bottom: 0;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: #fff;
    text-align: center;
    left: 25%;
}

.prix-interne {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.prix-interne div {
    text-align: center;
}

.prix-interne span {
    font-size: 16px;
    color: #5b5a5f;
    font-weight: bold;
    text-align: center;
}

.titre-interne a {
    font-size: 15px;
    color: #000;
    font-weight: bold;
}

.voirplus-interne {
    background: #d49c24;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5px 15px;
}

.section-circuit-excursion .cadre-image-interne {
    width: 100%;
    height: 249px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.section-hotel-tunisie .cadre-image-interne {
    width: 100%;
    height: 249px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.section-hotel-tunisie a {
    text-decoration: none;
    cursor: pointer;
}

.section-circuit-excursion a {
    text-decoration: none;
    cursor: pointer;
}

.section-hotel-tunisie .cadre-image-interne>a>img {
    height: 100%;
    padding: 0.5rem;
}

.section-circuit-excursion .cadre-image-interne>a>img {
    height: 100%;
    padding: 0.5rem;
}

.section-hotel-tunisie .nbre-jour-interne {
    position: absolute;
    bottom: 0.5rem;
    background: #191970;
    padding: 10px;
    color: #fff;
    width: 94%;
    cursor: pointer;
    margin-left: 0.5rem;
    height: 3rem;
    text-align: center;
}

.section-hotel-tunisie .nbre-jour-interne {
    position: absolute;
    bottom: 0.5rem;
    background: #191970;
    padding: 10px;
    color: #fff;
    width: 94%;
    cursor: pointer;
    margin-left: 0.5rem;
    height: 3rem;
    text-align: center;
}

.section-circuit-excursion .nbre-jour-interne {
    position: absolute;
    bottom: 0.5rem;
    background: #191970;
    padding: 10px;
    color: #fff;
    width: 94%;
    cursor: pointer;
    margin-left: 0.5rem;
    height: 3rem;
    text-align: center;
}

.fa-facebook-f,
.fa-instagram,
.fa-twitter,
.fa-youtube,
.fa-linkedin-in {
    color: #fff !important;
}

a.fa.fa-map-marker.footer::before,
a.fa.fa-envelope.footer::before,
a.fa.fa-phone.footer::before {
    margin-right: 5px;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.fa-envelope.footer::before {
    margin: 0;
}

.footer-end {
    background-color: #071230 !important;
}

.footer-separator hr {
    background-color: #fff;
    width: 75%;
}

.footer-end-bar {
    height: 45px;
    background-color: #4685C4;
}

.section-hotel-tunisie .cadre-contenue-interne {
    display: none;
    text-align: center;
    background: #191970;
    padding: 96px;
    margin-bottom: 30px;
    position: relative;
    top: -15rem;
    height: 14.5REM;
    width: 94%;
    left: 0.5rem;
    cursor: pointer;
}

.section-circuit-excursion .cadre-contenue-interne {
    display: none;
    text-align: center;
    background: #191970;
    padding: 96px;
    margin-bottom: 30px;
    position: relative;
    top: -15rem;
    height: 14.5REM;
    width: 94%;
    left: 0.5rem;
    cursor: pointer;
}

.section-hotel-tunisie .titre-interne {
    font-family: Poppins, sans-serif !important;
    font-weight: bold;
}

.section-circuit-excursion .titre-interne {
    font-family: Poppins, sans-serif !important;
    font-weight: bold;
}

.section-circuit-excursion .sejour {
    color: #fff;
    height: 2rem;
    font-family: Poppins, sans-serif !important;
}

.section-hotel-tunisie .prix-interne {
    color: #fff;
    height: 2rem;
    font-weight: bold;
    font-family: Poppins, sans-serif !important;
}

.section-circuit-excursion .prix-interne {
    color: #fff;
    height: 2rem;
    font-weight: bold;
    font-family: Poppins, sans-serif !important;
}

.section-circuit-excursion .voirplus-interne {
    position: relative;
    top: 5rem;
}

.section-circuit-excursion .prix {
    color: #fff;
}

.section-circuit-excursion .pays {
    position: absolute;
    margin: 0.5rem;
    bottom: 0px;
    background: #191970;
    color: #fff;
    width: 92%;
    cursor: pointer;
    height: 3rem;
    text-align: center;
    z-index: 100;
}

.section-maisons-dHotes h2 {
    font-family: 'Poppins', sans-serif !important;
    color: #d49c24;
    font-weight: bold;
    text-align: center;
    margin: 4rem;
}

.section-maisons-dHotes figure.tour-small-image img {
    height: 13rem;
}

.section-maisons-dHotes .tour-small-title {
    height: 8rem;
}

.section-maisons-dHotes .tour-small-content {
    font-family: 'Poppins', sans-serif !important;
    background: #fff;
    width: 83%;
}

.section-maisons-dHotes .tour-small-content ul li {
    list-style: none;
    text-align: center;
}

.section-maisons-dHotes.tour-small-title {
    color: #fff;
    text-align: center;
}

.section-maisons-dHotes .tour-small-title h5 {
    margin: auto;
    width: 0%;
}

.section-maisons-dHotes .tour-small-head a {
    color: #000;
    text-align: center;
}

.section-maisons-dHotes .tour-duree::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -15px;
    border-color: #ff0000 #ff0000 #ff0000 rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 17px 0px 19px 14px;
}

.section-maisons-dHotes .tour-prix {
    font-weight: bold;
    font-family: 'Poppins';
    border: 1px solid #ff0000;
    position: absolute;
    right: 0.9rem;
    top: 30%;
    padding: 0.4rem;
    background-color: #ff0000;
    color: #fff;
    z-index: 2;
}

.section-maisons-dHotes .tour-small {
    height: 409px;
    margin-bottom: 1rem;
    box-shadow: 0rem 1rem 1rem 0rem #ddd;
}

.section-maisons-dHotes .plus {
    width: 60%;
    height: 2.5rem;
    margin: auto;
    text-align: center;
}

.section-maisons-dHotes .plus a {
    display: block;
    padding: 7px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Merienda', 'Abril Fatface';
    background: #191970;
    margin-bottom: 1rem;
}

.clipy-section img {
    height: 600px;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    size: cover;
    position: center;
    width: 100%;
}

.footer {
    padding-right: 10px;
    /* font-family: 'Poppins', sans-serif !important; */
    /* padding-bottom: 3rem; */
    background-color: #071230;
    color: #fff;
    /* padding-top: 0.5rem; */
    font-size: medium;
    font-family: poppins;
}

.footer-section {
    height: auto;
}

.footer .logo {
    width: 13rem;
    margin-top: 32px;
    margin-bottom: 30px;
}

.rs {
    margin-left: 10px;
}

.rs a:hover {
    text-decoration: none !important;
}

.footer a {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.footer a:hover {
    color: #4685C4;
}

.footer input.input-newsletter {
    width: 80%;
    height: 50px;
    MARGIN: 1REM 0REM 1REM 0REM;
}

input.submit-newsletter {
    width: 97%;
    background-color: #88d922;
    border: none;
}

.footer span {
    float: right;
    margin-left: 2rem;
    margin-top: -1.8rem;
}

.footer .titre-newsletter {
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold;
    font-size: larger;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #4685C4;
}


/**Page Hotel En Tunisie**/

.HotelEnTunisie {
    margin-top: 5%;
    font-family: 'Poppins', sans-serif !important;
    position: relative;
}

.filtre-liste-hotel h6 {
    padding: 0.3rem;
}

img.tripadvisor {
    margin-left: -1.3rem;
    margin-top: 1rem;
}

.HotelEnTunisie .titre-filtre {
    background-image: linear-gradient(to right, #4685C4, #071230);
    margin-bottom: 1rem;
    color: #fff;
}

.form-container {
    margin-top: 5%;
}

.HotelEnTunisie .filtre-liste-hotel {
    background-color: #fff;
    border: 1px solid #4685C4;
    /* box-shadow: 0 0 40px rgb(0 0 0 / 10%);
    transition: 0.3s ease; */
}

.HotelEnTunisie .content-fltre.row {
    padding: 0.5rem;
}

.HotelEnTunisie .content-fltre .row {
    margin-bottom: 0.5rem;
}

.HotelEnTunisie .content-fltre select.custom-select.form-control {
    border-radius: 0px;
    background-color: #bbb7bc00;
    border: 0px;
    border-left: 1px solid #ddd;
    height: 1.65rem;
}

.HotelEnTunisie select.custom-select.form-control.form-control-sm {
    font-size: 13px;
    PADDING-LEFT: 10px;
}

.custom-select:focus {
    box-shadow: none !important;
}

label.label-pos.position-sm {
    margin-top: .75rem;
}

.HotelEnTunisie .content-fltre .f1 {
    margin: auto;
    border-radius: 0.3rem;
    border: 1px solid #707070;
}

.HotelEnTunisie .content-fltre .f2 {
    margin: auto;
    border-radius: 0.3rem;
    border: 1px solid #707070;
}

.HotelEnTunisie .content-fltre input[type=date] {
    width: 98% !important;
}

.HotelEnTunisie .content-fltre li {
    margin-right: 0.8rem;
}

.HotelEnTunisie .content-fltre input[type=date]:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.HotelEnTunisie .content-fltre span {
    float: left;
    line-height: 2.5rem;
}

.HotelEnTunisie .tour-single {
    border: 1px solid #4685C4;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    box-shadow: 0 0 40px rgb(0 0 0 / 10%);
    transition: 0.3s ease;
    margin-top: 1rem;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.HotelEnTunisie .col-md-12 .tour-image-list img {
    width: 100%;
    height: 10rem;
}

.HotelEnTunisie .tour-image-list {
    position: relative;
    display: table-cell;
    vertical-align: top;
}

.HotelEnTunisie .tour-text {
    position: relative;
    display: table-cell;
    vertical-align: top;
}

.HotelEnTunisie .tour-single .tour-details {
    padding: 25px 0px;
}

.HotelEnTunisie .tour-single .tour-details h3 {
    font-size: 18px;
    margin: -1rem 0 15px 0;
    color: #191970;
}

.HotelEnTunisie .tour-single .tour-details h3 a {
    color: inherit;
}

.HotelEnTunisie .tour-single .tour-details p.tour-duration {
    margin-bottom: 10px;
}

.HotelEnTunisie .tour-single .tour-details p.tour-duration span {
    color: #191970;
    display: inline-block;
    padding-right: 5px;
}

.HotelEnTunisie .tour-single .tour-details p.tour-duration strong {
    font-weight: 500;
    font-size: 14px;
    color: #222;
}

.HotelEnTunisie .tour-single .tour-rating {
    font-size: 14px;
}

.HotelEnTunisie .tour-single .tour-rating ul {
    margin-bottom: 0;
    margin-top: -1rem;
}

.HotelEnTunisie .tour-single .tour-rating ul li {
    display: inline-block;
}

.HotelEnTunisie .tour-single .tour-rating ul li:last-child {
    font-size: 13px;
}

.HotelEnTunisie .tour-single .tour-booking {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -55px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.HotelEnTunisie .tour-single .tour-booking a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Merienda', 'Abril Fatface';
    background: #191970;
}

.HotelEnTunisie .tour-single figure figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.tour-single figure figcaption a {
    display: inline-block;
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: #191970;
    width: 100%;
    text-align: center;
}

.HotelEnTunisie .tour-single figure {
    position: relative;
}

.HotelEnTunisie figure {
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.HotelEnTunisie .tour-single:hover {
    box-shadow: 0.5rem 0.5rem 1.5rem rgb(0 0 0 / 20%);
}

.HotelEnTunisie .tour-single .tour-booking a {
    display: block;
    padding: 6px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins';
    background: #191970;
}

.HotelEnTunisie a:hover {
    text-align: center;
    text-decoration: none;
}

.HotelEnTunisie .tour-single .tour-booking {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -55px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.HotelEnTunisie .tour-single:hover .tour-booking {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.HotelEnTunisie .fa-star:before {
    content: "\f005";
    color: #d49c24;
}

.tour-single.row {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
}

.tour-image-list.col-md-2 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}

.HotelEnTunisie .table .label-warning {
    background-color: #d49c24!important;
    color: #fff;
    padding: 3px 12px 4px 15px;
    border-radius: 4px;
    font-size: 12px !important;
    height: 22px;
    font-family: 'Poppins', sans-serif !important;
}

.HotelEnTunisie .btnlisthotel .btn {
    background-color: #4685C4 !important;
    color: white;
    border: #4685C4;
    cursor: pointer;
    width: 150px;
    font-family: 'Poppins', sans-serif !important;
    margin-top: 1rem;
}

.HotelEnTunisie .btnlisthotel2 .btn {
    background-color: #191970;
    color: white;
    border: #191970;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1rem;
    font-size: small;
    font-family: 'Poppins', sans-serif !important;
    margin-top: -1rem;
}

.HotelEnTunisie .btnlisthotel .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
    background-color: #d49c24;
}

.HotelEnTunisie .btnlisthotel2 .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
    background-color: #4685C4 !important;
}

#menu {
    overflow: hidden;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 14px 0 8px;
    font-size: 13px;
}

#menu li {
    font-family: 'Poppins';
    float: left;
    margin: 0px 14px 0px 14px;
}

#menu a {
    background-color: #4685C4;
    display: block;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 1px 0 rgb(255 255 255 / 50%);
    position: relative;
    padding: 2px 6px 2px 10px;
    font-size: 13px;
}

#menu a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -13px;
    border-color: #4685C4 rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 12px 0 12px 14px;
}

#menu .fa-home {
    font-size: 15px !important;
    padding: 2px;
}

#menu a::after {
    content: "";
    position: absolute;
    top: 0px;
    border-top: 13px solid rgba(242, 151, 30, 0);
    border-bottom: 11px solid rgba(242, 151, 30, 0);
    border-left: 14px solid #4685C4;
    right: -14px;
}

.detailsBox h5 {
    color: #fff;
    height: 51px;
    padding: 12px;
}

.linear-gradient {
    background: linear-gradient(to bottom right, #4685C4, white);
}

.carousel-indicators img {
    width: 7rem;
    margin: 3px;
    height: 4rem;
}

.detailHotel .carousel {
    width: 90%;
    margin: auto;
}

.detailHotel .carousel-indicators {
    background-color: #4685C4;
    right: -151px !important;
    left: auto !important;
    cursor: pointer;
}

.detailHotel .carousel-indicators img:hover {
    border: 1px solid #fff;
}

.detailHotel .carousel-item {
    height: 356px;
    /*  animation-duration: 0.1s !important;*/
    transition: all 0.1s !important;
}

.detailHotel .detail-content {
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold;
    color: #4685C4;
    margin-top: 4rem;
}

.detailHotel .detail-titre {
    font-weight: bold;
}

.btnReserver a {
    margin-top: 1rem;
    background-image: linear-gradient(to right, #3eb2ffcc, #071230);
    color: #fff;
    float: right;
    width: 10rem;
    margin-bottom: 1rem;
}


/* .btn {
    margin-top: 1rem;
    background-image: linear-gradient(to right, #3eb2ffcc, #071230);
    color: #fff;
    float: right;
    width: 10rem;
    margin-bottom:1rem;
} */

.btnReserverBottom a {
    margin-top: 1rem;
    background-image: linear-gradient(to right, #3eb2ffcc, #071230);
    color: #fff;
    float: left;
    width: 10rem;
}

.ChambreBox {
    background-image: linear-gradient(to right, #3eb2ffcc, #071230);
    color: #fff;
    height: 38px;
    padding: 6px;
}

.ChambreBoxContent small {
    margin-bottom: 2px;
    line-height: 34px;
}

.ChambreBoxContent p {
    font-size: 14px;
    line-height: 2px;
}

.ChambreBox h5 {
    float: left;
    font-family: 'Poppins';
    font-weight: bold;
}

.timing {
    margin: 2rem
}

.timing .col-md-3,
.timing .col-md-9 {
    margin-bottom: 1rem;
    
}

.ChambreBoxContent input#start,
.ChambreBoxContent input#end {
    width: 13rem;
    height: 1.5rem;
    margin: 0.5rem;
    border: 1px solid #c5c5c5;
}

.ChambreBoxContent span {
    line-height: 3rem;
}

.daterangepicker.show-calendar .drp-buttons {
    display: none !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #f49d25 !important;
    border-color: transparent;
    color: #fff;
}

.ChambreBoxContent input[type=date]:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.ChambreBoxContent .datepicker-toggle {
    color: red !important;
}

.tableChoisirChambre {
    font-family: 'Poppins';
    font-size: 13px;
}

.table th {
    padding: .5rem !important;
    vertical-align: initial !important;
}

.ChoisirChambre .btnReserver {
    margin-bottom: 4rem;
}

.ChoisirChambre .btnReserver a.btn {
    float: right;
    background-image: #4685C4;
    color: #fff;
}

table {
    font-size: 13px;
}

.table td {
    padding: .5rem !important;
}

.w-box-content .input-interne,
.user-text {
    width: 100%;
    height: 25px;
    background: #fff;
    color: #414048;
    font-size: 11px;
    font-family: "latoR";
    padding-left: 4px;
    margin-bottom: 8px;
    border: 1px solid #dadada;
    margin-bottom: 10px;
}

.w-box-content .select-interne,
.select-internesss select {
    width: 100%;
    background: #fff url(../images/fleche.png) no-repeat 95% center;
    color: #414048;
    font-family: "Poppins";
    font-size: 11px;
    text-transform: uppercase;
    border: 1px solid #dadada;
    height: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    padding-left: 4px;
    margin-bottom: 10px;
}

.ReservationHotel .btnlisthotel2 .btn {
    background-color: #4685C4;
    color: white;
    border: #4685C4;
    cursor: pointer;
    float: right;
    font-size: small;
    font-family: 'Poppins', sans-serif !important;
    margin-top: -1rem;
}

.ReservationHotel.btnlisthotel .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
    background-color: #d49c24 !important;
}

.ReservationHotel label.required,
.ReservationHotel label {
    font-size: 13px !important;
    margin-top: 1rem !important;
}

.w-box-content .input-interne:focus-visible,
.w-box-content .select-interne:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.w-box-content .textarea-interne {
    width: 100%;
    height: 110px;
    background: #fff;
    color: #414048;
    font-size: 11px;
    font-family: "latoR";
    padding-left: 4px;
    margin-bottom: 8px;
    border: 1px solid #dadada;
    margin-bottom: 10px;
}

.warpper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab {
    cursor: pointer;
    padding: 10px 20px;
    margin: 0px 2px;
    background: #4685C4;
    display: inline-block;
    color: #fff;
    border-radius: 3px 3px 0px 0px;
    box-shadow: 0 0.5rem 0.8rem #00000080;
}

.panels {
    background: #fffffff6;
    box-shadow: 0 2rem 2rem #00000080;
    min-height: 200px;
    width: 100%;
    max-width: 500px;
    border-radius: 3px;
    overflow: hidden;
    padding: 20px;
}

.panel {
    display: none;
    animation: fadein .8s;
}

.label-warning {
    background-color: #d49c24 !important;
    color: #fff;
    padding: 3px 12px 4px 15px;
    font-size: 12px !important;
    height: 22px;
}

.col-6 {
    color: #000;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.warpper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 293px;
}

.panel-title {
    font-size: 1.5em;
    font-weight: bold
}

.radio {
    display: none;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel,
#four:checked~.panels #four-panel {
    display: block;
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab,
#four:checked~.tabs #four-tab {
    background: #d49c24;
    color: #000;
    border-top: 3px solid #000;
}

.panels {
    background: #f5f5f5;
    box-shadow: 0 2rem 2rem #00000080;
    min-height: 200px;
    width: 100%;
    max-width: 695px;
    border-radius: 3px;
    overflow: hidden;
    padding: 42px;
    font-size: 14px;
}

.panel-title {
    color: #4685C4;
}

#three:checked~.tabs #three-tab {
    background: #d49c24;
    color: #000;
    border-top: 3px solid #ffcc33;
}

#two:checked~.tabs #two-tab {
    background: #d49c24;
    color: #000;
    border-top: 3px solid #ffcc33;
}

#one:checked~.tabs #one-tab {
    background: #4685C4;
    color: #000;
    border-top: 3px solid #ffcc33;
}

#four:checked~.tabs #four-tab {
    background: #f5f5f5;
    color: #000;
    border-top: 3px solid #d49c24;
}


/*page voyages organises*/

.VoyagesOrganises .view {
    width: 100%;
    height: 250px;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
}

.VoyagesOrganises .view img {
    display: block;
    position: relative;
    width: 100%;
}

.VoyagesOrganises .view-ninth h2.h2-img {
    background: #4685C4;
    color: #fff;
    position: absolute;
    bottom: 0px;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out 0.3s;
    -moz-transition: all 0.4s ease-in-out 0.3s;
    -o-transition: all 0.4s ease-in-out 0.3s;
    transition: all 0.4s ease-in-out 0.3s;
    font-family: "Poppins";
}

.VoyagesOrganises .view-ninth h2 {
    background: transparent;
    margin-top: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: "Poppins";
}

.VoyagesOrganises .view h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    margin: 20px 0 0 0;
}

.VoyagesOrganises .view-ninth .mask-1 {
    left: auto;
    right: 0;
    -webkit-transform: rotate( 56.5deg) translateX(-180px);
    -moz-transform: rotate(56.5deg) translateX(-180px);
    -o-transform: rotate(56.5deg) translateX(-180px);
    -ms-transform: rotate(56.5deg) translateX(-180px);
    transform: rotate( 56.5deg) translateX(-200px);
    -webkit-transform-origin: 100% 0%;
    -moz-transform-origin: 100% 0%;
    -o-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}

.VoyagesOrganises .view-ninth .mask-1,
.view-ninth .mask-2 {
    background-color: rgba(0, 160, 224, 0.8);
    height: 600px;
    width: 600px;
    background: rgba(0, 160, 224, 0.37);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0.6s;
    -moz-transition: all 0.3s ease-in-out 0.6s;
    -o-transition: all 0.3s ease-in-out 0.6s;
    transition: all 0.3s ease-in-out 0.6s;
}

.view .mask,
.view .content {
    width: 300px;
    height: 200px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    font-family: 'Poppins';
}

.VoyagesOrganises .view-ninth .mask-2 {
    top: auto;
    bottom: 0;
    -webkit-transform: rotate( 56.5deg) translateX(180px);
    -moz-transform: rotate(56.5deg) translateX(180px);
    -o-transform: rotate(56.5deg) translateX(180px);
    -ms-transform: rotate(56.5deg) translateX(180px);
    transform: rotate( 56.5deg) translateX(200px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

.VoyagesOrganises .view-ninth .content {
    background: #ffffff8c;
    height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: 0.5;
    width: 100%;
    overflow: hidden;
    -webkit-transform: rotate( -33.5deg) translate(-112px, 166px);
    -moz-transform: rotate(-33.5deg) translate(-112px, 166px);
    -o-transform: rotate(-33.5deg) translate(-112px, 166px);
    -ms-transform: rotate(-33.5deg) translate(-112px, 166px);
    transform: rotate( -33.5deg) translate(-112px, 166px);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: all 0.4s ease-in-out 0.3s;
    -moz-transition: all 0.4s ease-in-out 0.3s;
    -o-transition: all 0.4s ease-in-out 0.3s;
    transition: all 0.4s ease-in-out 0.3s;
    font-family: "latoR";
}

.VoyagesOrganises .view-ninth h2 {
    background: transparent;
    margin-top: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: "Poppins";
}

.VoyagesOrganises .view h2 {
    text-transform: uppercase;
    color: #4685C4;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: rgb(255 255 255);
    margin: 25% 0 0 0;
}

.VoyagesOrganises .view p {
    font-size: 12px;
    position: relative;
    color: #000;
    font-weight: bold;
    padding: 10px 20px 5px;
    text-align: center;
    font-family: 'Poppins';
}

.VoyagesOrganises .view a.info {
    display: inline-block;
    text-decoration: none;
    padding: 4px 14px;
    font-weight: bold;
    background: #fff;
    color: #d49c24;
    border: 1px solid #fff;
    margin: -12px;
    font-family: 'Poppins';
    -webkit-box-shadow: 0 0 1px #000;
    -moz-box-shadow: 0 0 1px #000;
    box-shadow: 0 0 1px #000;
    font-size: 13px;
}

.VoyagesOrganises .view-ninth:hover h2.h2-img {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0.3s;
    -moz-transition: all 0.4s ease-in-out 0.3s;
    -o-transition: all 0.4s ease-in-out 0.3s;
    transition: all 0.4s ease-in-out 0.3s;
}

.VoyagesOrganises .view-ninth:hover .mask-1 {
    display: none;
    -webkit-transform: rotate( 56.5deg) translateX(6px);
    -moz-transform: rotate(56.5deg) translateX(6px);
    -o-transform: rotate(56.5deg) translateX(6px);
    -ms-transform: rotate(56.5deg) translateX(6px);
    transform: rotate( 56.5deg) translateX(6px);
}

.VoyagesOrganises.view-ninth:hover .mask-2 {
    -webkit-transform: rotate( 56.5deg) translateX(-6px);
    -moz-transform: rotate(56.5deg) translateX(-6px);
    -o-transform: rotate(56.5deg) translateX(-6px);
    -ms-transform: rotate(56.5deg) translateX(-6px);
    transform: rotate( 56.5deg) translateX(-6px);
}

.cdr-img {
    border-radius: 15px;
    border: 1px solid #9f9f9f;
}

.animated-img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    display: block;
    width: 100%;
}

.animated-img img {
    border-radius: 15px 15px 0px 0px;
}

.animated-img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.ombre-interne img {
    width: 100%;
    height: 100%;
}

.ombre-interne .cadre-image-interne img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    width: 100%;
}

.VoyagesOrganises .view-ninth:hover .content {
    height: 100%;
    width: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    opacity: 0.9;
    top: 0px;
    -webkit-transform: rotate( 0deg) translate(0, 0);
    -moz-transform: rotate(0deg) translate(0, 0);
    -o-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    transform: rotate( 0deg) translate(0, 0);
}

.filtreVoyagesOrganises {
    box-shadow: 0 0 40px rgb(0 0 0 / 10%);
    transition: 0.3s ease;
    border: 1px solid #4685C4;
    margin: 1rem 0rem 4rem 0rem;
    font-family: 'Poppins';
    font-size: 16px;
}

.filtreVoyagesOrganises .titre-filtre {
    background-color: #4685C4;
    margin-bottom: 1rem;
    color: #fff;
}

.VoyagesOrganises select.custom-select.form-control.form-control-sm {
    border-radius: 0px;
    width: 70%;
    height: 1.5rem;
    padding: 1px;
    font-size: 13px;
    font-family: 'Poppins';
}

.VoyagesOrganises span {
    font-size: 17px;
}

.VoyagesOrganises h6 {
    padding: 0.3rem;
}

.detailVoyagesOrganises .carousel {
    width: 98%;
    margin: auto;
    margin-left: 0;
    border: 3px solid #4685C4;
}

.detailVoyagesOrganises .carousel-indicators {
    background-image: #4685C4;
    right: 0 !important;
    left: 0 !important;
    cursor: pointer;
}

.detailVoyagesOrganises .carousel-indicators img:hover {
    border: 1px solid #fff;
}

.detailVoyagesOrganises .media_bestoff {
    margin-bottom: 30px;
    max-height: 125px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.detailVoyagesOrganises .img.d-flex.mr-2 {
    width: 35%;
    height: 100%;
    margin-right: 10px;
}

img.d-flex.mr-2 {
    width: 100%;
    height: 100px;
}

.detailVoyagesOrganises .detailVoyagesOrganises .media_bestoff img {
    width: 100%;
    height: 115px;
}

.detailVoyagesOrganises .media_bestoff .media-body {
    padding: 3px 0px;
    max-width: 60%;
    font-family: 'Poppins';
    font-weight: bold;
}

.detailVoyagesOrganises .media_bestoff .media-body h6 {
    color: #4685C4;
    font-weight: bold;
}

.detailVoyagesOrganises .media_bestoff .PriceTotal {
    margin-top: 1rem;
    color: #4685C4;
}

.detailVoyagesOrganises .media_bestoff {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-decoration: none;
}

.detailVoyagesOrganises .d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.detailVoyagesOrganises .media_bestoff img {
    transition: all 0.3s ease 0s;
}

.detailVoyagesOrganises .mr-2 {
    margin-right: 0.5rem !important;
}

.section-titlee h1 {
    font-size: 3.5em;
}

.section-title {
    margin: 25px 0 15px;
}

.detailVoyagesOrganises .media_bestoff .card-image {
    overflow: hidden;
    width: 35%;
    height: 100%;
    margin-right: 10px;
}

.detailVoyagesOrganises .media_bestoff {
    background: #F7F7F7;
}

.detailVoyagesOrganises .media_bestoff:hover {
    background: #fff;
}

.detailVoyagesOrganises small {
    color: #d49c24;
    font-weight: bold;
}

.detailVoyagesOrganises .detail-content {
    margin-top: 2rem;
}

.CircuitExcursion input {
    width: 75%;
    border: 1px solid #dad8d8;
    overflow: visible;
}

.CircuitExcursion select.custom-select.form-control.form-control-sm {
    border-radius: 0px;
    height: 1.8rem;
    border-color: #dad8d8;
    padding: 1px;
    width: 75%;
}

.CircuitExcursion input[type=date]:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.CircuitExcursion .maisonsdHotes .titre-maison {
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #f4f4f4;
    text-align: center;
    padding: 15px 0;
}

.CircuitExcursion .cont-maison {
    color: #222;
    border-bottom: 1px solid #f4f4f4;
    padding: 5px 0;
    font-size: 11px;
}

.CircuitExcursion .prix-maison {
    color: #4685C4;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.CircuitExcursion .list-maison {
    padding: 0;
    list-style: none;
}

.CircuitExcursion .list-maison li {
    text-align: center;
    border-right: 1px solid #dcdcdc;
    padding: 7px 0;
    font-size: 12px;
    color: #525252;
}

.CircuitExcursion .list-maison i {
    font-size: 15px;
}

.CircuitExcursion .list-voiture i {
    font-size: 15px;
}

.CircuitExcursion .list-maison li:last-child {
    border-right: none;
}

.CircuitExcursion .rent-maison {
    text-align: justify;
    margin: 10px;
    height: 5rem;
}

.CircuitExcursion .titre-maison {
    color: #d49c24;
    font-weight: bold;
    text-align: center;
}

.CircuitExcursion span {
    font-weight: bold;
    color: #d49c24;
}

.CircuitExcursion .card.card3 {
    width: 78%;
    margin: auto;
    box-shadow: 0.5rem 0.5rem 1rem 0.1rem #f3f3f3;
}

.CircuitExcursion .tour-duree {
    font-weight: bold;
    font-family: 'Poppins';
    border: 1px solid #4685C4;
    position: absolute;
    right: 0rem;
    padding: 0.4rem;
    background-color: #4685C4;
    color: #fff;
    z-index: 1;
}

.CircuitExcursion .tour-duree::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -15px;
    border-color: #4685C4 #4685C4 #4685C4 rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 16px 0px 19px 14px;
}

.CircuitExcursion a.btn.btn-primary.btn-maison {
    margin: 0.3rem;
    background-image: #4685C4;
    border-color: #d49c24;
}


/* Maison d hotes */

.MaisonsdHotes .style-1 .box-item {
    overflow: hidden;
}

.MaisonsdHotes .at-item {
    margin-bottom: 30px;
    position: relative;
}

span.ui-icon.ui-icon-circle-triangle-e {
    display: none;
}

span.ui-icon.ui-icon-circle-triangle-w {
    display: none;
}

.MaisonsdHotes .badge_save_model_vo {
    position: absolute;
    top: 0;
    left: 0;
    width: 126px;
    height: 125px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background: url('../image/etiquetteVoj.png') no-repeat;
    font-size: 11px;
    line-height: 12px;
    padding-top: 46px;
    z-index: 99;
}

.contact .btn {
    margin-top: 1rem;
    background-image: #4685C4;
    color: #fff;
    float: right;
}

.icons:hover {
    color: #071230;
}

.MaisonsdHotes .badge_save_model_vo span {
    display: block;
    font-size: 10px;
    font-weight: bold;
    margin-top: -11px;
    text-transform: lowercase;
    top: 0px;
}

.MaisonsdHotes .badge_save_model_vo strong {
    display: block;
    font-size: 23px;
    font-weight: bold;
    margin-top: 8px;
    margin-left: 15px;
    color: white;
    background-color: transparent;
}

.MaisonsdHotes .badge_save_model_vo p {
    display: block;
    text-transform: lowercase;
    font-size: 11px;
    margin-top: 6px;
    margin-right: 0px;
}

.MaisonsdHotes .at-image {
    overflow: hidden;
    position: relative;
}

.MaisonsdHotes .at-image img {
    margin-bottom: 1.5rem;
    height: 250px;
    transform: scale(1.1);
    transition: all ease-in-out 0.3s;
}

.MaisonsdHotes .at-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0, 0, 0);
    opacity: 0;
    transition: all ease-in-out 0.3s;
}

.MaisonsdHotes .at-image:hover .at-overlay {
    opacity: 0.5;
}

.MaisonsdHotes .amazing-tours .at-item:hover .at-content {
    padding-top: 60%;
    transition: all ease-in-out 0.3s;
}

.MaisonsdHotes .short_info_grid {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px 15px 15px 20px;
    color: #fff;
    font-size: 13px;
    -moz-transition: all .4s;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.MaisonsdHotes .at-content {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
}

.MaisonsdHotes .amazing-tours .at-content h3 {
    margin: 10px 0;
}

.MaisonsdHotes .at-content h3 a,
.MaisonsdHotes .at-content span {
    color: #fff;
    background-color: transparent;
}


/* Location des voitures*/

.LocationVoitures .car-img img {
    width: 100%;
    MARGIN: 2rem 0rem 0rem 0rem;
}

.LocationVoitures .car-card.row {
    cursor: pointer;
    margin: 1px;
    border: 1px solid #4685C4;
    background-image: #4685C4;
}

.LocationVoitures .car-info {
    color: #fff;
    font-family: 'Poppins';
    text-align: justify;
}

.LocationVoitures .car-btn {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -55px;
    text-align: center;
    opacity: 0;
    transition: 0.5s ease;
}

.titrefiltre {
    padding: 0px 1px 0px 43px;
    margin-top: 18px;
}

.LocationVoitures .car-card.row:hover .car-btn {
    opacity: 1;
    bottom: 0px;
}

.LocationVoitures .box-wrapper img {
    width: 270px;
    height: 175PX;
    padding: 1rem;
}

.LocationVoitures .box-wrapper {
    HEIGHT: 255PX;
    background-color: #d49c24;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 48%);
    padding: 0;
    text-align: center;
    margin-bottom: 1rem;
}

.LocationVoitures .box-content {
    position: relative;
    z-index: 1;
}

.LocationVoitures .box-content:before {
    content: "";
    width: 200%;
    height: 110px;
    position: absolute;
    display: block;
    background-color: #fff;
    transform: rotate(-8deg);
    top: -50px;
    left: -10%;
    z-index: -1;
}

.LocationVoitures .box-content .buy {
    display: block;
    top: -80px;
    right: 30px;
    z-index: 2;
    width: 70px;
    height: 70px;
    position: absolute;
}

.LocationVoitures .title {
    font-family: 'Poppins';
    color: #4685C4;
    font-weight: bold;
}

.LocationVoitures .desc {
    font-family: 'Poppins';
}

.LocationVoitures .box-content .buy {
    display: block;
    top: -80px;
    right: 30px;
    z-index: 2;
    width: 70px;
    height: 70px;
    position: absolute;
}

.LocationVoitures .box-content .buy span {
    width: 70px;
    height: 70px;
    padding: 0.5rem;
    background-color: #4685C4;
    display: block;
    border-radius: 50%;
    position: absolute;
    color: #fff;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.LocationVoitures .box-content .buy span i {
    padding: 15px;
}

.LocationVoitures a.price {
    color: #d49c24;
    font-weight: bold;
    cursor: pointer;
}


/*Croisier*/

.Croisier .box-wrapper img {
    width: 100%;
    height: 226PX;
    position: relative;
    z-index: 11;
}

.Croisier .box-wrapper {
    cursor: pointer;
    overflow: hidden;
    max-width: 100%;
    ;
    padding: 0;
    text-align: center;
    margin-bottom: 1rem;
}

.Croisier .box-content {
    padding: 0.5rem;
    font-family: 'Poppins';
    text-align: left;
}

.Croisier .ticket {
    height: 4.5rem;
    width: 4.5rem;
    font-family: 'Poppins';
    border: 1px solid #4685C4;
    position: absolute;
    top: 9.66rem;
    right: 0.9rem;
    padding: 0.4rem;
    background-color: #4685C4;
    color: #fff;
    z-index: 100;
}

.Croisier ul li span {
    font-weight: bold;
    color: #000000;
}

.Croisier a:hover {
    cursor: pointer;
    text-decoration: none;
}

.Croisier .desc {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    color: #4685C4;
    margin-bottom: 5px;
}

.Croisier a.price {
    color: #4685C4;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0.2rem;
}

.Croisier .jours {
    font-weight: bold;
    font-size: 13px;
    color: #4685C4;
}

.Croisier span {
    font-weight: bold;
    color: #d49c24;
}

.Croisier i.fas.fa-anchor {
    color: #191970;
}

.ReservationM input.form-control {
    border-radius: 0;
    height: 1.8rem;
}

.ReservationM button.btn.btn-primary {
    background-color: #d49c24;
    color: white;
    border: #4685C4;
    cursor: pointer;
    width: 15%;
    height: 2rem;
    /* border-radius: 0px; */
    margin-bottom: 13px;
    float: right;
    padding: 4px;
    font-size: 14px;
}

.w-box-header {
    background: linear-gradient(to right, #4685C4, #071230);
    margin-bottom: 1rem;
    color: #fff;
    padding: 3px;
}

.billetrie .form-control {
    height: 1.8rem;
    border-radius: 0px;
    padding: 1px;
}

.billetrie label {
    font-size: 14px;
}

.billetrie i.fa.fa-trash {
    color: #4685C4;
}

.billetrie input.btn.btn-primary {
    background-color: #4685C4;
    border-color: #4685C4;
    margin-top: 1rem;
}


/*********** billiterie ******************/

.tablecontainer {
    display: table;
    width: 100%;
}

.trrow {
    display: table-row;
    vertical-align: middle;
}

.Page_Home #LeftZone {
    width: 460px;
}

.Page_Home #RightZone {
    width: auto;
}

#fullback {
    background-color: #ffffff !important;
}

#header,
.PageMiddle,
#footer {
    margin-right: auto !important;
}

#header,
.PageMiddle,
#footer {
    margin-left: auto !important;
}

#header,
#middle,
#footer {
    width: 1010px;
    margin: 0 auto;
    display: block;
}

.loaderModal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background-color: black;
    -ms-filter: "alpha(opacity=30)";
    filter: alpha(opacity=30);
    -khtml-opacity: .30;
    -moz-opacity: .30;
    opacity: .30;
}

#header,
.PageMiddle,
#footer {
    margin-right: auto !important;
}

#header,
.PageMiddle,
#footer {
    margin-left: auto !important;
}

.PageMiddle {
    margin-left: auto;
    margin-right: auto;
    width: 1010px;
    vertical-align: top;
    border: 0;
}

#ContentLayoutPanel {
    padding: 0px;
}

.tablecontainer {
    display: table;
    width: 100%;
}

.tablecontainer {
    display: table;
    width: 100%;
}

.trrow {
    display: table-row;
    vertical-align: middle;
}

.trrow {
    display: table-row;
    vertical-align: middle;
}

.tdcell {
    display: table-cell;
    vertical-align: middle;
}

.tablecontainer {
    display: table;
    width: 100%;
}

.trrow {
    display: table-row;
    vertical-align: middle;
}

.Page_Home #LeftZone {
    width: 460px;
}

.tdcell {
    display: table-cell;
    vertical-align: middle;
}

.Page_Home #RightZone {
    width: auto;
}

.Page_Home .RightZone {
    width: 510px;
}

.DropZone {
    display: table-cell;
    vertical-align: top;
}

.trrow {
    display: table-row;
    vertical-align: middle;
}

.GDPRPolicy {
    display: none !important;
}

.packs {
    position: relative;
    margin-top: 50px;
    width: 100%;
    height: 300px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0); */
    transition: background 0.5s ease;
    background: rgb(163, 111, 12);
    background: linear-gradient(0deg, rgba(163, 111, 12, 1) 0%, rgba(233, 217, 182, 0) 35%, rgba(240, 238, 230, 1) 100%);
}

.packs:hover .overlay {
    display: block;
    /* background: rgba(206, 153, 0, 0.4); */
    /* background: url(../img/shadow_tour.png) left bottom repeat-x; */
}

.packs img {
    position: absolute;
    width: 100%;
    height: 300px;
    left: 0;
}

.flag {
    position: relative;
    top: 0%;
    font-family: 'Poppins', sans-serif !important;
    /* padding: 0.5rem;  */
    /* background-color: transparent; */
    color: #fff;
    z-index: 1000;
}

.title {
    position: absolute;
    width: 100%;
    top: 80%;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    z-index: 1;
    transition: top 1s ease;
}

.packs:hover .title {
    top: 60%;
}

.button {
    padding: 10px 25px;
    position: absolute;
    border: none !important;
    border-radius: 10px;
    color: #ffffff;
    -webkit-font-smoothing: rd;
    bottom: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
    background-color: #4685C4;
    width: 30%;
}

.button a {
    width: 200px;
    padding: 12px 48px;
    text-align: center;
    color: white;
    border: solid 2px white;
    z-index: 1;
}

.btn-outline-primary {
    color: #4685C4 !important;
    border-color: #4685C4 !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #4685C4 !important;
    border-color: #4685C4 !important;
}

.packs:hover .button {
    opacity: 1;
}

.wrapper {
    position: fixed;
    top: 70%;
    left: -2%;
    z-index: 1;
}

.wrapper .button1 {
    display: inline-block;
    height: 40px;
    width: 40px;
    margin: 0 5px;
    overflow: hidden;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
    background-color: #4685C4;
    opacity: 70%;
}

.wrapper .button1:hover {
    width: 150px;
}

.wrapper .button1 .icon {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
    line-height: 40px;
    transition: all 0.3s ease-out;
}

.wrapper .button1 .icon i {
    font-size: 25px;
    line-height: 1.6;
    transition: all 0.3s ease-out;
}

.wrapper .button:hover .icon i {
    color: #fff;
}

.wrapper .button1 span {
    font-size: 15px;
    font-weight: 800;
    margin-left: 5px;
    transition: all 0.3s ease-out;
    color: #fff;
}

.langue select#langue option[value="Fr"] {
    background-image: url('../image/flag-fr.png');
}

.langue select#langue option[value="Eng"] {
    background-image: url('../image/flag-eng.png');
}

.sl-nav1 {
    display: inline;
}

.sl-nav1 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-block;
}

.sl-nav1 li {
    cursor: pointer;
    padding-bottom: 10px;
}

.sl-nav1 li ul {
    display: none;
}

.sl-nav1 li:hover ul {
    position: absolute;
    top: 29px;
    right: -15px;
    display: block;
    background: #fff;
    width: 120px;
    padding-top: 0px;
    z-index: 1;
    border-radius: 5px;
}

.sl-nav1 li:hover .triangle {
    position: absolute;
    top: 15px;
    right: -10px;
    z-index: 10;
    height: 14px;
    overflow: hidden;
    width: 30px;
    background: transparent;
}

.sl-nav1 li ul li {
    position: relative;
    text-align: left;
    background: transparent;
    padding: 15px 15px;
    padding-bottom: 0;
    z-index: 2;
    font-size: 15px;
    color: #000000;
}

.sl-nav1 li ul li:last-of-type {
    padding-bottom: 15px;
}

.sl-nav1 li ul li span {
    padding-left: 5px;
}

.sl-nav1 li ul li span:hover,
.sl-nav1 li ul li span.active {
    color: #000000;
}

.sl-flag {
    display: inline-block;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    width: 15px;
    height: 15px;
    background: #aaa;
    border-radius: 50%;
    position: relative;
    top: 2px;
    overflow: hidden;
}

#buttontop {
    display: inline-block;
    background-color: #88d922;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 7px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#buttontop::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 45px;
    color: #fff;
}

#buttontop:hover {
    cursor: pointer;
    text-decoration: none !important;
}

#buttontop:active {
    text-decoration: none;
}

#buttontop.show {
    opacity: 1;
    visibility: visible;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}