@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root{
    --golden: #ffa500;
    --green: #479f49;
    --light-green: #7db87c;
    --light-brown:  #7d6137;
    --brown: #513a1d;
    --dark-blue: #052c55;
    --color-1: #fff;
}
*::selection{
    color: var(--color-1);
    background: var(--brown);
}

* {
    font-family: "Nunito", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}
body{
    max-width: 1400px;
    margin: 0 auto;
}
section{
    padding: 2rem 9%;
}
.btn{
    display: inline-block;
    margin-top: 1rem;
    background: var(--green);
    color: var(--color-1);
    padding: .8rem 3rem;
    border: .2 solid var(--brown);
    cursor: pointer;
    font-size: 1.5rem;
}
.btn:hover{
    border: .2rem solid var(--green);
    background: var(--color-1);
    font-weight: bolder;
    color: var(--green);
}
h3{
    font-size: 3rem;
}

header{
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1rem 9%;
    background: var(--brown);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
header .logo img{
    height: 7rem;
    width: auto;
    object-fit: contain;
}
header .navbar a{
    position: relative;
    color: var(--color-1);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: .02rem;
    margin: 0 .3rem;
    padding: .6rem 1.2rem;
}
header .navbar a:not(:last-child)::after{
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .5), transparent);
}
header .navbar a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: .1rem;
    width: 0;
    height: .2rem;
    background: var(--green);
    border-radius: .2rem;
    transform: translateX(-50%);
}
header .navbar a:hover{
    color: var(--green);
}
header .navbar a:hover::before{
    width: 60%;
}
header .icons i{
    font-size: 2.2rem;
    color: var(--color-1);
    cursor: pointer;
    margin-right: 2rem;
}
header .icons i:hover{
    color: var(--green);
}
header .search-bar-container{
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    padding: 1.5rem 2rem;
    background: var(--brown);
    border-top: .1rem solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0,100% 0, 0 0);
}
header .search-bar-container.active{
    clip-path: polygon(0 0, 100% 0,100% 100%, 0 100%);
}
header .search-bar-container #search-bar{
    width: 100%;
    padding: .8rem;
    text-transform: none;
    color: #333;
    font-size: 1.5rem;
    border-radius: .5rem;
}
header .search-bar-container label{
    color: var(--color-1);
    cursor: pointer;
    margin-left: 1.5rem;
    font-size: 2.5rem;
}
header .search-bar-container label:hover{
    color: var(--green);
}
header #menu-bar{
    cursor: pointer;
    color: var(--color-1);
    font-size: 2.5rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    border: .1rem solid var(--color-1);
    display: none;
}

/********Home section*******/
.home{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
    min-height: 45vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/why-wildlife.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 5rem 0;
}
.home .content{
    text-align: center;
    background: #583207ab;
    padding: 5rem;
}
.home .content h3{
    font-size: 4rem;
    color: var(--color-1);
    padding: .5rem 0;
    margin-bottom: 1rem;
}
.home .content p{
    font-size: 2rem;
    color: var(--color-1);
    margin-bottom: 1rem;
    text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .2);
}
/****** About Us*******/
.about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.about .image{
    flex: 1 1 40rem;
}
.about .image img{
    width: 100%;
}
.about .content{
    flex: 1 1 40rem;
    padding: 2rem;
    background: rgb(228, 228, 228);
}
.about .content h3{
    font-size: 3.5rem;
}
.about .content p{
    font-size: 1.5rem;
    letter-spacing: .6px;
    margin: 1rem 0;
}



/******Packages*******/
.packages{
    margin: 5rem 0;
    align-items: center;
    justify-content: center;
}
.packages .btn-ex{
    margin: 5rem 0rem 0rem;
    text-align: center;
}
.packages h1{
    font-size: 4rem;
    text-align: center;
    margin: 2rem 0;
}
.packages h1 span{
    color: var(--green);
}
.packages .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.packages .box-container .box{
    flex: 1 1 30rem;
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .2);
}
.packages .box-container .box img{
    height: 25rem;
    width: 100%;
    object-fit: cover;
}
.packages .box-container .box .content{
    padding: 2rem;
}
.packages .box-container .box .content h3{
    font-size: 2rem;
    color: #333;
}
.packages .box-container .box .content h3 i{
    color: var(--green);
    margin-right: 1rem;
}
.packages .box-container .box .content p{
    font-size: 1.5rem;
    color: #333;
    padding: 1rem 0;
}
.packages .box-container .box .content .T-days{
    font-size: 1.5rem;
    margin: .8rem 0;
    font-weight: bolder;
    color: #333;
}
.packages .box-container .box .content .price{
    font-size: 1.6rem;
    font-weight: bolder;
}
.packages .box-container .box .content .btn-group{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.packages .box-container .box .content .T-days .date-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: .6rem 0;
    font-weight: normal;
}
.packages .box-container .box .content .T-days .date-row .btn.btn-sm{
    margin-top: 0;
    padding: .4rem 1.5rem;
    font-size: 1.3rem;
    white-space: nowrap;
}


/********* Gallery section ********/
.gallery h1{
    font-size: 4.5rem;
    text-align: center;
    margin: 2rem 0;
}
.gallery h1 span{
    color: var(--green);
}
.gallery{
    text-align: center;
    overflow: hidden;
}
.gallery p {
    height: 100px;
    width: 500px;
    margin: 100px auto;
    position: relative;
}
  
.gallery img {
    height: 120px;
    position: absolute;
    left: 0;
    offset-path: path('m 0 50 q 50-30 100-30 t 100 30 100 0 100-30 100 30');
    box-shadow: 1px 1px 3px #0008;
    transition: transform .4s ease-out, offset-path .4s cubic-bezier(.77,-1.17,.75,.84),box-shadow .3s, z-index .3s;
    z-index: 0;
}
  
.gallery img:hover {
    transform: scale(3.5);
    offset-path: path('m 5 65 q 45-0 90-0 t 90 0 90 0 90-0 90 0');
    box-shadow: 3px 4px 10px #0006;
    z-index: 999;
}
  .gallery img:nth-last-child(5):first-child {
    offset-distance: 0%;
  }
  .gallery img:nth-last-child(4):nth-child(2) {
    offset-distance: 25%;
  }
  .gallery img:nth-last-child(3):nth-child(3) {
    offset-distance: 51%;
  }
  .gallery img:nth-last-child(2):nth-child(4) {
    offset-distance: 75%;
  }
  .gallery img:last-child:nth-child(5) {
    offset-distance: 100%;
  }

/********* Review section ********/
.review{
    margin: 5rem 0;
}
.review h1{
    font-size: 4.5rem;
    text-align: center;
    margin: 2rem 0;
}
.review h1 span{
    color: var(--green);
}
.review .review-slider{
    padding-bottom: 2rem;
}
.review .box{
    padding: 2rem;
    text-align: center;
    border-radius: .2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .2);
}
.review .box img{
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.review .box h3{
    font-size: 2.2rem;
}
.review .box h4{
    font-size: 1.6rem;
    color: #333;
}
.review .box p{
    font-size: 1.5rem;
}
.review .box .email{
    font-size: 1.6rem;
    color: #572e2e;
    margin-bottom: 1rem;
}
.review .box i{
    font-size: 1.6rem;
    color: var(--golden);
    margin-top: 1rem;
}
/********* About cameroon********/
.cameroon{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../pics/banner2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.cameroon .content{
    flex: 1 1 40rem;
    padding: 3rem;
    text-align: center;
    background: rgba(124, 124, 124, 0.658);
}
.cameroon .content h3{
    font-size: 4rem;
    color: white;
}
.cameroon .content p{
    color: white;
    font-size: 1.6rem;
    line-height: 3rem;
}
/********* Contact Us ********/
.contact-adress-details{
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    padding-top: 1rem;
    padding-bottom: 0;
}
.contact-adress-details .box{
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .2);
    padding: 1.5rem;
    text-align: center;
    min-height: 12rem;
    flex: 1 1 40rem;
}
.contact-adress-details .box i{
    padding: 1rem;
    background: #e9e9e9;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1rem;
}
.contact-adress-details .box p{
    font-size: 1.5rem;
    line-height: 1.6;
}
.contact-adress-details + section{
    padding-top: 0;
}
.contact-form-container{
    padding: 2rem 5rem 5rem 5rem;
    border-radius: .5rem;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .2);
}
.contact-form-container form h3{
    font-size: 4rem;
    text-align: center;
}
.contact-form-container form .inputBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-form-container form .inputBox input, .contact-form-container form textarea, .contact-form-container form .inputBox .form-control{
    padding: 1rem;
    margin: 1rem 0;
    border-radius: .5rem;
    width: 49%;
    font-size: 1.5rem;
    color: #333;
    background: #e9e9e9;
}
.contact-form-container form .inputBox input:read-only,
.contact-form-container form .inputBox select:disabled,
.contact-form-container form .field-group input:read-only{
    background: #ddd;
    color: #666;
    cursor: not-allowed;
    opacity: 1;
    -webkit-text-fill-color: #666;
}
.contact-form-container form textarea{
    width: 100%;
}
.contact-form-container form .inputBox .form-control{
    width: 100%;
}
.contact-form-container form .inputBox .form-control-custom{
    width: 49%;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: .5rem;
    font-size: 1.5rem;
    color: #333;
    background: #e9e9e9;
}
.contact-form-container form .field-group{
    text-align: left;
    margin: 1rem 0;
}
.contact-form-container form .field-group .group-label{
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #555;
    margin-bottom: .3rem;
}
.contact-form-container form .field-group .inputBox{
    margin: 0;
}
.contact-form-container form .field-group .inputBox input,
.contact-form-container form .field-group .inputBox select{
    margin: 0;
}
.contact-form-container form .field-group > input.form-control{
    width: 100%;
    padding: 1rem;
    border-radius: .5rem;
    font-size: 1.5rem;
    color: #333;
    background: #e9e9e9;
    margin: 0;
}
.contact-form-container .form-errors{
    background: #fdeaea;
    border: .1rem solid #e35d5d;
    border-radius: .5rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.contact-form-container .form-errors p{
    color: #a92727;
    font-size: 1.5rem;
    margin: .3rem 0;
}
.contact-form-container .captchaBox{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
    margin: 1rem 0;
    text-align: left;
}
.contact-form-container .captchaBox .captcha-preview{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.contact-form-container .captchaBox img{
    border-radius: .5rem;
    border: .1rem solid #ccc;
}
.contact-form-container .captchaBox .refresh-captcha{
    font-size: 1.4rem;
    color: var(--green);
    cursor: pointer;
}
.contact-form-container .captchaBox input{
    width: 100%;
    padding: 1rem;
    border-radius: .5rem;
    font-size: 1.5rem;
    color: #333;
    background: #e9e9e9;
    margin: 0;
}
.thank-you-box{
    max-width: 70rem;
    margin: 0 auto;
}
.thank-you-box i{
    font-size: 5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}
.thank-you-box h3{
    margin-bottom: 1.5rem;
}
.thank-you-box p{
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.thank-you-box .signoff{
    font-style: italic;
}
.search-page{
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
}
.search-page-form{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.search-page-form .inputBox{
    flex: 1;
}
.search-page-form input[type="search"]{
    padding: 1rem;
    border-radius: .5rem;
    font-size: 1.6rem;
    color: #333;
    background: #e9e9e9;
    width: 100%;
}
.search-page-form .btn{
    margin-top: 0;
    white-space: nowrap;
}
.search-hint{
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.search-results .search-result{
    padding: 1.5rem 0;
    border-bottom: .1rem solid #e5e5e5;
}
.search-results .search-result:last-child{
    border-bottom: none;
}
.search-results .search-result h4{
    font-size: 2rem;
    margin-bottom: .5rem;
}
.search-results .search-result h4 a{
    color: var(--brown);
}
.search-results .search-result h4 a:hover{
    color: var(--green);
}
.search-results .search-result p{
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
}
.search-results mark{
    background: var(--golden);
    color: #333;
    padding: 0 .2rem;
    border-radius: .2rem;
}
/********* Tips and triks ********/

.tips h1 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 4rem;
}
.tips h1 span{
    color: var(--green);
}
.tips .accordion {
    width: 80%;
    margin: 20px auto;
    color: black;
    background-color: white;
    padding: 4.5rem 4.5rem;
}
.tips .accordion .container {
    position: relative;
    margin: 10px 10px;
}
.tips .accordion .label {
    position: relative;
    padding: 5px 0;
    font-size: 1.7rem;
    font-weight: bolder;
    color: black;
    cursor: pointer;
}
.tips .accordion .label::before {
    content: '+';
    color: var(--brown);
    position: absolute;
    top: 50%;
    right: -5px;
    font-size: 30px;
    transform: translateY(-50%);
  }
  .tips .accordion .content {
    position: relative;
    background: white;
    height: 0;
    font-size: 1.7rem;
    text-align: justify;
    width: 100%;
    overflow: hidden;
    transition: 0.5s;
  }
.tips .accordion hr {
    margin-left: 0;
    border: 1px solid rgba(128, 128, 128, 0.507);
}
.tips .accordion .container.active .content {
    height: 100%; 
}
.tips .accordion .container.active .label::before {
    content: '-';
    font-size: 30px;
  }



/********* Footer ********/
.footer{
    background: #333;
    margin-top: 4rem;
}
.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer .box-container .box{
    padding: 1rem 0;
    flex: 1 1 25rem;
}
.footer .box-container .box h3{
    font-size: 2rem;
    padding: .7rem 0;
    color: var(--color-1);
}
.footer .box-container .box p{
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #eee;
}
.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #eee;
}
.footer .box-container .box a:hover{
    color: var(--green);
}
.footer-bottom{
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: .1rem solid rgba(255, 255, 255, .1);
}
.footer-bottom p{
    color: #eee;
    font-size: 1.4rem;
}
.footer-bottom a{
    color: #eee;
    text-decoration: underline;
}
.footer-bottom a:hover{
    color: var(--green);
}


/********* Pages ********/
/********* ***** ********/
/********* About ********/
.main-about{
    margin-top: 5rem;
    min-height: 35vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/banner2.jpg");
}
.main-about .content{
    background: #5e5d5d00;
}
.main-about .content h3{
    font-size: 6rem;
}

/********* Packages ********/
.packages .box-container .box{
    flex: 1 1 30rem;
}
.home-packages{
    margin: 8rem 0;
    min-height: 40vh;
}
.home-packages .content p{
    font-size: 2.2rem;
    text-transform: none;
}
/********* Gallery Page ********/
.gallery-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .gallery-cont .gallery-pics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 20px;
  }
  
  .gallery-cont .gallery-pics .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 45rem;
}

.gallery-cont .gallery-pics .gallery-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .gallery-cont .gallery-pics .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-cont .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 15rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
  }
  
  .gallery-cont .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }
  
  .gallery-cont .caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-size: 1.8rem;
  }
  
  .gallery-cont .close {
    position: absolute;
    top: 150px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
  }



/********* Tours ********/
/********* ***** ********/
/********* Tour Cameroon ********/
.tour-cameroon{
    min-height: 35vh;
}

/********* Page & tour banners ********/
.banner-home{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/cameroon-village.jpg"); }
.banner-contact{
    background-color: #fff;
    background-image: url("../pics/Logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 3rem 9%;
}
.banner-contact .content{
    display: none;
}
.banner-custom-tour{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/cameroon-lodge.jpg"); }
.banner-booking{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/south-cameroon-palace-museum.jpg"); }
.banner-photos{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/station-falls.jpg"); }
.banner-tours{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/cameroon-lodge.jpg"); }
.banner-discover-cameroon{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/lake-baleng.jpg"); }
.banner-grassfield{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/bandjoun-village.jpg"); }
.banner-beach{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/kribi-river.jpg"); }
.banner-mount-cameroon{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/mount-cameroon-summit.jpg"); }
.banner-equatorial-forest{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/gorillas.jpg"); }
.banner-great-south{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/south-cameroon-palace.jpg"); }
.banner-family-experience{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/botanical-garden-trees.jpg"); }
.banner-budget{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/cameroon-village.jpg"); }
.banner-savana{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/savana-elephants.jpg"); }
.banner-birds{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../pics/birds-watching.jpg"); }
.tour-details .detail-box{
    background: rgb(231, 231, 231);
    padding: 2rem;
    border-radius: .5rem;
}
.tour-details .detail-box .detail-img{
    width: 100%;
    max-height: 40rem;
    object-fit: cover;
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .2);
}
.tour-details .detail-box h2{
    font-size: 3rem;
    margin: 2rem 0;
}
.tour-details .detail-box p{
    font-size: 1.8rem;
    margin: 2rem 0;
}
.tour-details .detail-box h4{
    font-size: 2.2rem;
    color: rgb(0, 0, 0);
}
.tour-details .detail-box .btn-group{
    margin: 2rem 0;
}
.tour-details .detail-box .T-days{
    margin: 2rem 0;
    font-size: 1.8rem;
}
.tour-details .detail-box .T-days .date-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: .8rem 0;
    font-size: 1.8rem;
    font-weight: normal;
}
.tour-details .detail-box .T-days .date-row .btn.btn-sm{
    margin-top: 0;
    padding: .4rem 1.5rem;
    font-size: 1.4rem;
    white-space: nowrap;
}
.tour-details .day-details h1{
    text-align: center;
    font-size: 3.5rem;
    margin: 3rem 0;
}
.tour-details .day-details .content h2{
    background: rgb(231, 231, 231);
    padding: 2rem;
    font-size: 2.5rem;
    margin: 1rem 0;
}
.tour-details .day-details .content ul li{
    font-size: 2rem;   
}
.tour-details .day-details .content ul li::marker {
    font-size: 150%;
    color: lightgreen;
  }






/********* Responsive ********/
@media (max-width: 1200px){
    html{
        font-size: 55%;
    }
}
@media (max-width: 991px){
    header{
        padding: 2rem;
    }
}
@media (max-width: 768px){
    header #menu-bar{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--brown);
        border-top: .1rem solid rgba(255, 255, 255, .15);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header .navbar a{
        display: block;
        border-radius: .5rem;
        padding: 1.3rem 1.5rem;
        margin: .6rem 0;
        background: rgba(255, 255, 255, .06);
        border-left: .3rem solid transparent;
    }
    header .navbar a:hover{
        background: rgba(255, 255, 255, .12);
        border-left-color: var(--green);
    }
    header .navbar a::after,
    header .navbar a::before{
        display: none;
    }
    header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .home .content h3{
        font-size: 4rem;
    }
    .home .content p{
        font-size: 1.8rem;
    }
    .home{
        min-height: 45vh;
    }
    .gallery p {
        height: 100px;
        width: 300px;
    }
    .gallery img:hover {
        transform: scale(1.8);
    }
    .footer .box-container{
        text-align: center;
    }
    .tour-details .detail-box h2{
        font-size: 2.8rem;
    }
    .tour-details .detail-box p{
        font-size: 1.8rem;
    }
    .tour-details .detail-box h4{
        font-size: 2rem;
    }
    .tour-details .day-details h1{
        font-size:3rem;
    }
    .tour-details .day-details .content h2{
        font-size: 2.5rem;
    }
    .tour-details .day-details .content ul li{
        font-size: 2rem;
    }
    .contact-form-container{
        padding: 2rem;
    }
    .contact-form-container form .inputBox{
        flex-direction: column;
    }
    .contact-form-container form .inputBox input{
        width: 100%;
    }
    .contact-adress-details{
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-adress-details .box{
        height: 18rem;
    }
    .contact-adress-details .box i{
        font-size: 2.4rem;
    }
    .contact-form-container form .inputBox .form-control-custom{
        width: 100%;
    }
    .tips .accordion {
        width: 100%;
        margin: 0px 0px;
        padding: 3.5rem 3.5rem;
    }
    .tips .accordion .container {
        margin: 10px 0px;
    }
      .tips .accordion .content {
        font-size: 1.7rem;
      }
    .tips .accordion .container.active .content {
        height: 100%; 
    }
}
@media (max-width: 450px){
    html{
        font-size: 50%;
    }
}