* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


:root {
    --orange: #f38815;
    --orange2: #F25E5C;
    --gradient: linear-gradient(to bottom, var(--orange), var(--orange2));
    --font2: 'Skranji';
    --noir: #2d394b;
    --gris: #777777;
}
.navbar {
    height: 100px;
    background: transparent;
    transition: 0.8s;
    /*padding-left: 25px;
    padding-right: 25px;*/
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;

}
.navbar .logo {
    width: 80px;
    height: 80px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-left: 25px;
}

.burger {
    display: none;
    margin-right: 25px;
}

.navlinks {
    list-style-type: none;
    width: auto;
    height: 80px;
    align-items: center;
    padding: 0;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.navlink {
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    transition: 0.8s;
    position: relative;
    display: inline-block;
    transition: 0.8s;
}

.navlink:hover {
    color: var(--orange);
}

.navlink::after {
    position: relative;
    display: block;
    width: 0%;
    height: 2.5px;
    content: ' ';
    background: var(--orange);
    margin-top: 15px;
    transition: 0.8s
}

.navlink:hover::after {
    width: 100%;
}

.bt {
    background: var(--gradient);
    color: #fff;
    width: auto;
    height: auto;
    padding: 15px;
    cursor: pointer;
    border: none;
    border-radius: 5%;
    transition: 0.8s;
}
.bt:hover {
    background: #f38815dc;
}
.navbar .bt {
    margin-left: 10px;
    color: #fff;
}


.dropdown {
    width: 400px;
    margin-top: 15px;
    padding-top: 15px;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    background: var(--noir);
    position: absolute;
    display: none;
    flex-wrap: wrap;
    transition: 0.6s;
    justify-content: space-around;
}
.drop:hover .dropdown {
    display: flex;
}
.dropdown a {
    width: 150px;
    height: 50px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: 0.5s;
    text-transform: uppercase;
}

.dropdown a:hover {
    color: var(--orange);
}

.orderOption {
    text-transform: capitalize !important;
}

#landing {
    height: 100vh;
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
}
#order {
    margin-top: 50px;
    margin-bottom: 50px;
}
.ariane {
    color: var(--gris);
    font-size: 18px;
}

#program .ariane {
    text-align: center;
}

#form_circuit {
    width: auto;
    justify-content: space-around;
    height: auto;
    padding: 20px;
    padding-bottom: 30px;
}

#form_circuit select, #form_circuit input {
    height: 50px;
    border-radius: 0px;
}

#form_circuit .text {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--gris);
    font-weight: bold;
}

#form_circuit button {
    cursor: pointer;
    border: none;
    height: 80px;
    width: 80px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
    background: var(--gradient);
    transition: 0.4s;
}

#form_circuit button:hover {
    box-shadow: 2px 0 25px 2px rgba(0, 0, 0, 0.3);
}

.bread {
    width: 370px;
    font-size: 28px;
    text-transform: uppercase;
    font-family: 'Skranji';
    color: var(--noir);
}
.bread span {
    font-family: 'Skranji';
    color: var(--orange);
}

.pop {
    height: auto;
    padding-bottom: 15px;
}

.pop_main {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 2px 0 10px 1px rgba(0, 0, 0, 0.1);
}

.pop_main img {
    height: 175px;
    width: 100%;
    border-radius: 15px;
}

.pop_title {
    font-size: 15px;
    color: var(--noir);
    font-weight: bold;
    margin-top: 15px;
    text-transform: uppercase;
}

.pop_loc {
    color: var(--gris);
    font-size: 13px;
}
.pop_loc i {
    color: var(--orange);
    font-weight: bold;
    font-size: 18px;
}
.pop_price {
    font-size: 13px;
    margin-top: 10px;
    color: var(--gris);
}

.pop_price b {
    color: var(--noir);
    font-size: 15px;
}

.pop_btn {
    margin-top: 10px;
}

.pop a {
    background: #075E54;
    color: #fff;
    border: 2px solid #075e54;
    font-size: 25px;
    float: right;
    transition: 0.6s;
    text-decoration: none;
}

.pop a:hover {
    color: #075E54;
    border: 2px solid #075e54;
    background: #fff;
}

.tour {
    text-align: center;
}

section {
    margin-bottom: 25px;
}

#abtTxt {
    height: auto;
    padding: 15px;
}

#abtTxt p {
    color: var(--gris);
    font-size: 13.5px;
    margin-top: 10px;
}

.st {
    height: auto;
    padding-bottom: 15px;
    border-radius: 10px;
    padding: 10px;
    font-size: 8px;
    text-align: center;
    cursor: pointer;
}
.st i {
    text-align: center;
    width: 100%;
    font-size: 22px;
    color: var(--orange2);
    font-style: normal;
    font-weight: bold;
}

#stI {
    font-family: var(--font2);
}

#stats {
    justify-content: space-around;
    padding-top: 20px;
}

#privateTxt p {
    color: var(--gris);
    font-size: 14px;
}

#privateImg img {
    width: 100%;
}

#privateTxt a {
    background: var(--gradient);
    color: #fff;
    font-family: var(--font2);
}
#privateBook {
    margin-top: 40px;
}

#wave {
    margin-top: -20px;
    height: 300px;
    background: url('../images/wave.svg') no-repeat;
    background-size: cover;
}

#wave .row {
    justify-content: space-between;
}

#waveTxt p {
    color: var(--noir);
    font-size: 13.5px;
}

#tripsSwipper {
    height: 325px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#tripsTxt p {
    font-size: 13.5px;
    color: var(--gris);
}

.btn {
    font-family: var(--font2);
    background: var(--gradient);
    color: #fff;
}

.row {
    padding: 10px;
}

#testimonies {
    height: auto;
    padding-bottom: 10px;
    padding-top: 10px;
    background: rgba(243, 136, 21, 0.2);
}

#testiSwiper {
    height: auto;
    justify-content: space-around;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
}
#testiSwiper .slide {
    height: 350px;
    border-radius: 10px;
    background: #fff;
}

.slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #000;
}

.slide b {
    text-align: center;
}

.slide p {
    font-size: 12px;
    color: var(--gris);
}

#giveReview .row {
    justify-content: space-around;
}

#writeReview {
    height: auto;
}


#imgReview {
    height: 500px;
}

#imgReview img {
    width: 100%;
    height: 100%;
}

#newsletter form {
    border-radius: 35px;
    height: auto;
    padding-bottom: 15px;
    padding-top: 15px;
    justify-content: center;
}

#newsletter form input {
    border: none;
    border-radius: 0;
}

.partner {
    height: 60px;
    width: 125px;
}

.partner img {
    width: 100%;
    height: 100%;
}

marquee {
    display: flex;
    flex-direction: row;
    filter: grayscale(0.5);
}

footer {
    background: #f7f7f7;
    height: auto;
    padding-bottom: 15px;
    padding-top: 25px;
}

footer .row {
    justify-content: space-around;
}

#footerAbout img {
    width: 100px;
    color: var(--noir);
}

#footerTxt {
    font-size: 12px;
    text-align: justify;
}

footer b {
    font-size: 14px;
}

footer a {
    font-size: 13px;
    color: var(--gris);
}

footer i {
    padding: 10px;
    background: var(--gradient);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#tripBannerTop {
    height: 600px;
    background: url("../images/f66abc_5bb2f09ec4fe4c86a028d8202413e377_mv2.jpg") no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /*clip-path: polygon(0% 0%, 100% 0, 100% 60%, 50% 70%, 0 60%)*/
}

#tripBannerTop .row {
    height: 100%;
    background: rgba(45, 57, 75, 0.3);
    align-content: center;
}


#start {
    justify-content: space-between;
}

#tripPrice {
    height: auto;
    background: #f7f7f7;
    padding-bottom: 10px;
    padding-top: 10px;
}

#tripPrice h3 {
    font-family: var(--font2);
    font-size: 16px;
}

#tripPrice b {
    font-family: var(--font2);
    color: var(--orange);
    font-size: 30px;
}

#payment img {
    height: 100px;
    width: 300px;
}

#tripFeatures li {
    width: auto;
    padding: 0;
    font-family: var(--font2);
    font-size: 13px;
}

#tripSwiperDiv {
    height: auto;
}

#tripWrapper {
    height: 100%;
    width: 100%;
}

#tripWrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    cursor: grab;
}

#aboutTripBread {
    text-align: center;
    margin: auto;
    font-size: 23px;
}

#tripDetails .col {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

#tripDetails .col h5 {
    font-size: 17px;
    font-family: var(--font2);
    color: var(--orange);
}

#tripDetails .col p {
    font-size: 14px;
    color: var(--gris);
    text-align: justify;
}
#tripDetails .col li {
    font-size: 14px;
    color: var(--gris);
    text-align: justify;
}
/* GESTION DU RESPONSIVE */

@media screen and (max-width: 827px) {
    .navbar ul {
        flex-direction: column;
        background: var(--noir);
        width: 100%;
        height: 0;
        transition: 0.8s;
        display: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding-bottom: 0;

    }

    .dropdown {
        background: var(--noir);
        flex-direction: column;
        padding-top: 15px;
        width: auto;
        z-index: 1;
    }

    .navlinks li {
        margin-top: 10px;
    }

    .navlinks button {
        margin-top: 10px;
    }
    .burger {
        display: block;
        width: auto;
        height: auto;
        padding: 10px;
        border: none;
        background: var(--gradient);
        color: #fff;
        border-radius: 5px;
        transition: 0.5s;
    }
    .burger i {
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        font-size: 18px;
    }

    .burger:focus {
        box-shadow: 0 0 1px 4px rgba(243, 136, 21, 0.2);
    }

    .st {
        width: 200px;
        margin-bottom: 15px;
    }

    #abtImg img {
        width: 100%;
    }

    #newsletter form {
        border-radius: 5px;
    }

    #newsletter input {
        margin-bottom: 10px;
    }
    
    #partners .row {
        flex-direction: column;
        margin: 0;
    }

    .bread {
        width: 200px;
        font-size: 18px;
    }
    #tripsSwipper {
        margin-bottom: 10px;
    }
    #tripSwiperDiv {
        height: 500px;
    }
    
}