* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

p{
    line-height: 1.6em;
    font-size: .8em ;
}


 :root {
    --text-color: #F9FAFC;
    --navbar-color: #082F6D;
    --button-color: #FF992C;
    --box-sha1: 4px 3px 3px -2px #888;
    --light-orange: #ffeeba; 
    --lightest-cyan: #00a5ce14;
    --box-shadow-large: 0px 5px 4px -1px #22222288;
}

.dar-color>p {
    color: var(--navbar-color) !important;
}

h5{
    color: var(--navbar-color);
}

.navbar-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 120px;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1000;
}

.navigation-ctn {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: var(--text-color);
    padding: .5em;
    border-radius: 6px;
    box-shadow: 4px 3px 3px -2px #888;
}

.navbar-top {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 15px 0;
    width: 100%;
    
}

.navbar-logo {
    box-sizing: border-box;
    display: flex;
    margin-left: -80px;
    margin-top: -10px;
    margin-bottom: -12px;
}

.navbar-logo a {
    display: inline-block;
    position: relative;
    cursor: pointer;
    align-items: center;
}

.navbar-logo a img {
    width: 150px;
    height: 150px;
    /* position: relative; */
}

.navbar-logo a::after {
    content: "Imara Daima Travels";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.navbar-logo a:hover::after {
    color: var(--button-color);
    font-size: 14px;
    opacity: 1;
}

.nav-items {
    display: flex;
    flex-direction: row;
       
}

.nav-items .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between;  */
    gap: .5rem;
    width: 100%;
}

.nav-items .nav-list li {
    padding-right: .3em; 
    position: relative;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-right: 1px solid rgb(0, 0, 3);
}

.nav-items .nav-list li a {
    color: var(--navbar-color);
    margin: .3em;
    font-size: .9em;
    
}

.nav-list li a:hover {
    color: var(--button-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.nav-items .nav-list li.active a {
    color: var(--button-color);
    font-weight: 600;
}

.nav-items .nav-list li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--text-color);
    color: var(--navbar-color);
    transition: width .3s;
}

.nav-items .nav-list li a:hover::after {
    width: 100%;
}


/* here */

.dropbtn {
    background-color: var(--navbar-color);
    top: 100px;
    border: none;
    cursor: pointer;
}

.dropbtn svg {
    width: 30px;
    color: var(--text-color);
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    color: var(--text-color);
}

.drop-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.dropdown-content {
    display: none;
    transition: opacity 0.3s ease-in-out;
    background-color: var(--light-orange);
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    top: 50px;
}

.back-arrow-container {
    /* margin-bottom: 10px; */
    display: none;
    margin-left: 20px;
    margin-top: 10px;
}

.back-arrow-container svg {
    left: 10px;
}


/* Links inside the dropdown */

.dropdown-content>a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-wrap: nowrap;
}

.drop-icon:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--text-color);
    padding: 20px;
}

.back-arrow {
    position: absolute;
    top: 0;
    left: 20px;
    padding: 10px;
    cursor: pointer;
    color: #fff;
    /* display: none; */
}

.show {
    display: block;
}

.rotate {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
}


/* here */

.burger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.line1,
.line2,
.line3 {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px;
}

.burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.home-section {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/slide1.jpg?v=1");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
    animation: slideBgImages 20s step-start infinite;
    position: relative;
    box-shadow: var(--box-shadow-large);
}

/*read page*/
.blog-ctn{
    
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.blog-ctn h2{
    position: relative;
    max-width: 25ch;
    display: inline-block;
    color: var(--navbar-color);
    margin: 2em 0em;
}

.blog-ctn img{
    max-width: 40%;
    border-radius: 6px;
    box-shadow: var(--box-shadow-large);
}

.blog-ctn p{
    max-width: 66%;
}

.blog-ctn div{
    width: auto !important;
    /* border: solid 1px blue;  */
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center;
}

.b-btn a{
    background-color: var(--navbar-color);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--text-color);
}


@keyframes slideBgImages {
    0% {
        background-image: url('https://portal.imaradaimatravels.com/assets/images/bgis/slide1.jpg?v=1');
    }
    16.66% {
        background-image: url('https://portal.imaradaimatravels.com/assets/images/bgis/slide2.jpg?v=1');
    }
    33.33% {
        background-image: url('https://portal.imaradaimatravels.com/assets/images/bgis/slide3.jpg?v=1');
    }
    50% {
        background-image: url('https://portal.imaradaimatravels.com/assets/images/bgis/slide4.jpg?v=1');
    }
    66.66% {
        background-image: url('https://portal.imaradaimatravels.com/assets/images/bgis/slide5.jpg?v=1');
    }
    83.33% {
        background-image: url('https://portal.imaradaimatravels.com/assets/images/bgis/slide6.jpg?v=1');
    }
    100% {
        background-image: url('https://portal.imaradaimatravels.com/assets/images/bgis/slide1.jpg?v=1');
        /* Transition smoothly to the first image */
    }
}

.home-desc {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 30%;
    margin: 2em;    
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    text-align: left;    
    gap: .4em;
    border-radius: 9px;
    
}

.home-desc h1{
    color: var(--text-color);
    text-shadow: 2px 2px var(--navbar-color);
    font-weight: 900;
    font-size: 2.5em;
}

.home-desc h2 {
    margin: 0;
    font-size: 1.6em;
    text-align: center;
    color: var(--navbar-color);
    background-color: var(--text-color);
    padding: .3em;
    max-width: 390px;
    border-radius: 6px;
    box-shadow: var(--box-sha1);
}

.home-desc p {
    max-width: 50ch;
    color: #ffffff;
    background-color: var(--navbar-color);
    padding: .3em;
    max-width: 390px;
    border-radius: 6px;
    box-shadow: var(--box-sha1);
}

.home-btn {
    margin: 2em 0em;
    box-shadow: var(--box-sha1);
    font-weight: 600;
}

.home-btn .button,
.about-btn .button {
    padding: 12px 25px;
    background-color: var(--light-orange);
    color: var(--navbar-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    box-shadow: var(--box-sha1);
    
}

.home-btn .button:hover,
.about-btn .button:hover {
    background-color: #e68a00;
}

.down-arrow-container {
    position: absolute;
    bottom: 20px;
    left: 45%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.down-arrow-container svg {
    width: 40px;
    stroke-width: 0.5;
    color: var(--light-orange);
}

.about-bg {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-sizing: border-box;
    background-color: #00a5ce14;
    /*
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/bg2.jpg?v=1");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    */
    /* height: 60vh; */
    height: auto;
    width: 100%;
    padding-bottom: 40px;
    /* margin-bottom: 50px; */
}

.about-section {
    box-sizing: border-box;    
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 40px;
    /*border: solid 1px black;*/
}

.about-right {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 40px 0;
    padding: .5em !important;
    max-width: 48% !important;
}

.about-right h3 {
    font-size: 30px;
    color: var(--navbar-color);
    text-shadow: 1px 1px #ccc;
}

.about-right h2, .about-right-d h2 {
    position: relative;
    font-size: 25px;
    color: var(--navbar-color);
    width: 80%;
}

.about-right p {
    max-width: 100%;
    font-size: .9em;
    background-color: var(--text-color);
    box-sizing: border-box;
    padding: 1em;
    box-shadow: var(--box-sha1);
    border-radius: 6px;
}

.about-right img {
    width: 500px;
    border-radius: 4px;
    box-shadow: var(--box-sha1);
}

.tour-section {
    box-sizing: border-box;
    padding: 20px 0 0 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    /* gap: 2rem; */
}

.tour-ctn {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 20px 20px 20px 20px;
}

.tour-ctn h3 {
    font-size: 25px;
    color: var(--button-color);
}

.tour-ctn h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.tours {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    background-color: var(--navbar-color);
    width: 100%;
    padding: 40px 0;
}

.tours h4 {
    font-size: 35px;
    color: var(--button-color);
}

.tours p,
.safari p {
    color: var(--text-color);
    font-size: 20px;
    max-width: 50ch;
}

.holy-desc {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 4rem;
}

.holy-desc a {
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: var(--button-color);
    border-radius: 8px;
    border: none;
    font-size: 18px;
    color: var(--text-color);
}


.pack-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
}

.pack-btn a, .right-btn a, .pack2-btn a{
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: var(--light-orange);
    border-radius: 8px;
    border: none;
    font-size: .9em;
    color: var(--navbar-color);
    box-shadow: var(--box-sha1);
    font-weight: 700;
}

.holy-travel {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 4rem;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: center;
}

.holy-travel .holy-image {
    width: 600px;
    height: 400px;
}

.holy-travel .holy-image1 {
    width: 400px;
    height: 400px;
}

.holy-img {
    box-sizing: border-box;
    display: flex;
    background-color: #E8E8E8;
    /* width: 100%; */
    overflow: hidden;
    animation: slideImages 10s linear infinite;
}

.holy-img img {
    width: 100%;
    height: auto;
    /* animation: holySlides 15s linear infinite; */
}

.safari-section {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/bg3.jpg?v=1");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    /* height: 90vh; */
    height: fit-content;
    width: 100%;
    padding-top: 120px;
}

.safari-ctn {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    top: 40px;
    /* gap: 2rem; */
}

.safari {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

.safari-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    padding: 30px 0;
    gap: 2rem;
    display: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.vacation-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    padding: 30px 0;
    gap: 2rem;
    display: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px
}

.tour-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.tour-title h2 {
    color: var(--navbar-color);
    max-width: 40ch;
    text-align: center;
    font-size: 1em;
    line-height: 1.5em;
}

.like-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 0 60px 0;
    gap: 2rem;
}

.like-sect {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    gap: 2rem;
}

.like-cont {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 1rem;
    padding-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.like-cont img {
    width: 300px;
    border-radius: 8px;
}

.like-cont h3, .like-cont h2, .safari-story h2{
    max-width: 80%;  
    color: var(--navbar-color);
    text-align: center;
}

.safari-pack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    gap: 1.5rem;
}

.safari-pack {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    /* padding-left: 20px; */
}

.safari-pack img {
    width: 450px;
    height: 400px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: block;
}

.safari-pack:hover {
    transform: scale(1.1);
}

.safari-dec h2 {
    position: absolute;
    top: 50%;
    color: var(--text-color);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* width: 100%; */
    box-sizing: border-box;
    /* padding: 0 20px; */
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

.safari-pack p {
    max-width: 40ch;
}

.review-rate {
    display: flex;
    flex-direction: row;
}

.review-rate svg {
    color: var(--button-color);
}

.safari-story {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.safari-story h2 {
    color: var(--navbar-color);
}

.safari-story p {
    max-width: 50ch;
}

.safari h4 {
    font-size: 35px;
    color: var(--text-color);
    text-shadow: 2px 2px var(--navbar-color);
}

.safari .blue {
    padding: 10px 20px;
    background-color: var(--navbar-color);
    border-radius: 8px;
    border: none;
    font-size: 18px;
    color: var(--text-color);
}

.safari-img {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    gap: 2rem;
    align-items: center;
    justify-content: space-around;
    /* background-color: white;  */
    padding: 40px 0;
}

.img-desc img {
    height: 400px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: auto; */
    display: block;
}

.img-desc {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.img-desc:hover {
    transform: scale(1.1);
    /* Apply scale transformation on hover */
}


/* .img-desc img {
    width: 100%;
    height: auto;
    display: block;
} */

.safari-desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.safari-desc h3 {
    font-size: 25px;
    margin: 10px 0;
    color: var(--text-color);
}

.safari-desc h5 {
    font-size: 20px;
    margin: 10px 0;
    color: var(--text-color);
}

.safari-desc .safari-star {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.safari-desc .safari-star svg {
    width: 20px;
    height: auto;
    margin: 0 5px;
    color: yellow;
}

.button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    /* Add transition for container opacity */
}

.img-desc:hover .safari-desc {
    opacity: 0;
    /* Hide the .safari-desc on hover */
}

.img-desc:hover .button-container {
    opacity: 1;
    /* Make the button container visible on hover */
}

.book-now-button {
    background-color: #3498db;
    color: var(--text-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    /* Add transition for button background */
}

.book-now-button:hover {
    background-color: #2980b9;
}

.adventure-section {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/bg2.jpg?v=1");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: fit-content;
    width: 100%;
}

.adventure-section .adve-ctn {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-bottom: 70px;
}

.adve {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    background-color: var(--navbar-color);
    width: 100%;
    padding: 40px 0;
    margin-top: 120px;
}

.adve h4 {
    font-size: 35px;
    color: var(--button-color)
}

.adve p {
    color: var(--text-color);
    font-size: 20px;
    max-width: 50ch
}

.review-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    background-color: var(--light-orange);
    /* margin-top: 50px; */
    padding: 40px 0;
}

.review-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.review-title h2 {
    font-size: 30px;
    color: var(--button-color);
}

.review-cont {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    margin-top: 30px;
    gap: 7rem;
}

.review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* width: 100%; */
    /* border: 1px solid blue; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--text-color);
    gap: 1rem;
    padding: 20px;
}

.review {
    display: none;
    transition: transform 0.5s ease-in-out;
}

.visible {
    display: block;
    transform: translateX(0);
}

.hidden {
    transform: translateX(100%);
}

.quote-ico svg {
    width: 30px;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.quote-say p {
    max-width: 50ch;
}

.quote-prof {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    /* border: 1px solid red; */
    gap: 1rem;
}

.owner-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.quote-name {
    display: flex;
    gap: .5rem;
    flex-direction: column;
}

.review-btn a {
    background-color: var(--navbar-color);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--text-color);
}


/* footer start */

.footer-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/footerbg.jpg?v=1");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: fit-content;
    width: 100%;
}

.footer-ctn {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: rgba(22, 22, 22, 0.7);
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.footer-top {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    /* gap: 7rem; */
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgb(92, 92, 92);
}

.foot {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    gap: .5rem;
    /* border: 1px solid red; */
}

.foot-cont {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
}

.ft-icon {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */
    gap: .7rem;
}

.ft-icon li {
    background-color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.ft-icon svg {
    width: 20px;
    height: 20px;
    color: var(--button-color);
    padding: 5px;
}

.foot-tour {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.foot-tour ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.foot-tour ul li a {
    color: var(--light-orange);
    font-size: .9em;
}

.foot h4 {
    font-size: 25px;
    color: var(--button-color);
}

.foot h5 {
    font-size: .9em;
    color: var(--light-orange) !important;
    font-weight: 300;
}

.foot .media {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: .7rem;
}

.media li a {
    color: var(--navbar-color);
}

.media li a svg {
    width: 22px;
    background-color: white;
    border-radius: 50%;
    padding: 7px;
    outline: none;
}

.foot .quick-link {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.quick-link li a {
    color: var(--light-orange);
    font-size: .9em;
}

.foot-bottom {
    box-sizing: border-box;
    display: flex;
    padding-top: 1rem;
    color: var(--light-orange);
    font-size: .75em;
}

.toggle-popup-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffff00;
    padding: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

.toggle-text svg,
.close-icon {
    width: 30px;
    color: var(--button-color);
}


/* Style for the popups */

.popup-icons {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    gap: .5rem;
}

.popup {
    width: 30px;
    background-color: #03E78B;
    padding: 12px;
    border-radius: 50%;
    /* border: 1px solid red; */
}

.phone-icon {
    color: #03E78B;
}

.popup {
    display: none;
    border-radius: 10px;
}

.popup {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.close-icon {
    display: none;
}

.talk-to-us {
    font-size: .9em;
    position: fixed;
    right: 90px;
    bottom: 20px;
    border-radius: 6px;
    animation: bounce 1s infinite;
    background-color: var(--light-orange);
    padding: .3em;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.talk-to-us::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent white;
    /* Change color as needed */
}

.service-name {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    color: red;
}

.popup {
    display: none;
}

.open {
    display: block;
}

.hidden {
    display: none;
}


/* footer end */


/* Style for the fixed media icons */

.fixed-media-icons {
    position: fixed;
    top: 50%;
    /* right: 0; */
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(255, 255, 255, 0.5); */
    /* background-color: var(--navbar-color); */
    padding: 10px;
    z-index: 1000;
    display: none;
}


/* Style for each individual media icon */

.fixed-media-icons a {
    text-decoration: none;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 50%;
    padding: 6px;
    /* Adjust the spacing between icons */
}


/* Specify styles for each social media icon */

.fixed-media-icons a svg {
    width: 20px;
    color: #fff;
    /* Add more styling properties as needed */
}

.about-hero {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/bg4.jpg?v=1");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}
    

.abt-hero {
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 20px;
    /*color: var(--text-color); */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .3em;
    align-items: center;
    justify-content: center;
}

.abt-hero h2 {
    font-size: 30px;
    color: var(--text-color);
    text-shadow: 2px 2px var(--navbar-color);
    text-transform: uppercase;
    z-index: 100;
}

.abt-hero .theme-photo{
    max-height: 200px;
    box-shadow: 6px 6px 5px -3px #22222288;
    border-radius: 6px;
    border: solid 3px seashell;
    transform: rotate(3.14159deg);
}

.about-desc {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    /* padding-top: 1rem; */
    /* border: 1px solid red; */
    width: 100%;
}

.abt-top {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.abt-top p {
    font-size: .9em;
}

.m-d {
    width: 200px;
    height: auto;
}

.abt-bt {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.abt-bt h2 {
    max-width: 40ch;
}

.pastor-ct {
    list-style: none;
    padding: .5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 500px;
    /* Adjust the max-width as needed */
    background-color: var(--navbar-color);
    color: var(--text-color);
    box-shadow: var(--box-sha1);
}

.pastor-ct li {
    text-align: left;
    margin: 5px;
    width: 200px;
    border-bottom: 1px solid black;
    font-size: .8em;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: .2em;
    

}

.about-right-d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-right-d .m-d {
    width: 300px;
    box-shadow: var(--box-sha1);
    border: solid 1px #ccc;
    margin: .6em;
}

.about-right-d a {
    font-size: .8em;
    color: var(--navbar-color);
}

.why-section {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding-top: 3rem;
}

.why-ct {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: space-around; */
    width: 100%;
    gap: 4rem;
    background-color: white;
    height: fit-content;
    padding: 50px 0 70px 150px;
}

.why-sect {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
}

.why-title {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgb(82, 82, 83, 0.1);
    padding: 10px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.why-title:hover {
    transform: rotate(360deg);
    /* Rotate 360 degrees on hover */
}

.why-title h2 {
    font-size: 18px;
    color: var(--button-color);
}

.why-title img {
    width: 30px;
    height: fit-content;
}

.why-desc p {
    box-sizing: border-box;
    max-width: 40ch;
}

.team-section {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/bg4.jpg?v=1");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    background-attachment: fixed;
    height: fit-content;
    width: 100%;
    /* height: 60vh; */
    /* padding-bottom: 50px; */
    padding-top: 50px;
}

.tm-section {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    gap: 3rem;
    padding-top: 2rem;
}

.why-tt h2 {
    font-size: 30px;
    color: var(--navbar-color);
    text-transform: uppercase;
}

.team-ctn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    background-color: white;
    width: 100%;
    padding: 0 0 70px 150px;
}

.team-des {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: .5rem;
    /* border: 1px solid red; */
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.team-des img {
    height: fit-content;
    width: 280px;
    border: solid 1px #ddd;
    box-shadow: var(--box-sha1);
}

.team-des h4 {
    max-width: 30ch;
    align-items: center;
    color: var(--button-color);
}

.tour-hero {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    box-sizing: border-box;
    background-image: url("https://portal.imaradaimatravels.com/assets/images/bgis/bg1.jpg?v=1");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    background-attachment: fixed;
    height: fit-content;
    width: 100%;
    /* height: 60vh; */
    /* padding-bottom: 50px; */
    padding: 180px 0 80px 0;
}

.tour-conta {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: white;
    width: 100%;
    height: fit-content;
    margin-top: 100px;
}

.tours-sect {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    /* border: 1px solid red; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    padding: 20px;
    /* display: none; */
}

.tour-left {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 6px;
}

.tour-left img {
    width: 400px;
    height: 300px;
    border-radius: 6px;
    box-shadow: var(--box-sha1);
}

.tour-left h2 {
    color: var(--navbar-color);
}

.tour-left h3 {
    color: var(--button-color);
}

.tour-right {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    /* border: 1px solid purple; */
    width: 50%;
    padding: 6px;
}

.right-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
    border-bottom: 1px solid #ffc107;
    border-top: 1px solid #ffc107;
    width: 100%;
    background-color: #ffeeba; 
    color: var(--navbar-color);
    padding: .3em;
    
}

.right-top span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.right-bt {
    display: flex;
    flex-direction: column;
    /* gap: .5rem; */
}

.right-bt li {
    padding-bottom: 2px;
    list-style-type: none;
    line-height: 2em;
    font-size: .8em;
    margin: .3em 0em;
}

.point-to-note {
    background-color: var(--text-color);
    padding: 10px;
    border: 1px solid #ffc107;
    border-radius: 5px;
    font-style: italic;
    color: #856404;
    margin-top: 16px;
}

.right-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
}


.form-ctn {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 100%;
    height: fit-content;
    padding: 50px 0 0 0;
    margin-top: 50px;
    gap: 3rem;
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reg-form h2 {
    color: var(--button-color);
}

.form-step {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 80ch;
}

.form-step h3 span {
    color: #03E78B;
}

.fill-book h2 {
    color: var(--button-color);
}

.contact-sect {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: white;
    width: 100%;
    align-items: flex-start;
    justify-content: space-around;
    margin-top: 50px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* width: 50%; */
    gap: 2rem;
    padding: 20px 0;
    margin-top: 50px;
    /* border: 1px solid red; */
}

.contact-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.contact-icon svg {
    display: flex;
    flex-direction: row;
}

.cont-name {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    /* width: 100%; */
}

.cont-name li {
    font-size: 18px;
}

.cont-name .t-t {
    color: var(--button-color);
}

.cont-icon {
    width: 25px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid black;
}

.contact-right {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    /* width: 50%; */
    padding: 20px 0;
    /* border: 1px solid red; */
}

.contact-right>h2 {
    color: var(--button-color);
}

.contact-right>h3 {
    color: var(--navbar-color);
}

.cont-form {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    /* border: 1px solid blue; */
    margin-bottom: 2em;
}

.cont-form form {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.cont-form form>input {
    background-color: var(--button-color);
    border: none;
    padding: 6px 0;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
}

.book-btn{
    background-color: var(--navbar-color) !important;
    color: var(--text-color) !important;
}

.form-input {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.form-input textarea {
    resize: none;
}

.form-input label {
    margin-top: 7px;
    font-size: .8em;
}

.form-input input {
    width: 400px;
    padding: 5px;
    border-radius: 4px;
    outline: none;
}

.gallery-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px 0;
    gap: .7rem;
    width: 100%;
    /* border: 1px solid red; */
}

.gallery-section h2 {
    text-align: center;
}

.photo-section {
    display: none;
    width: 100%;
}

.photo-section.active {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 2rem; */
}

.photo-menu {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.photo-menu li {
    background-color: var(--light-orange);
    padding: 10px 10px;
    border-radius: 4px;
}

.photo-menu li a {
    color: black;
}

.photo-menu li.active {
    background-color: var(--navbar-color);
}

.photo-menu li.active a {
    color: var(--text-color);
    /* Change this to the desired color for the active category */
}

.photo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

.sxs{
    background: var(--light-orange);
    color: var(--navbar-color);
    max-width: 50ch;
    padding: 2em;
    font-weight: 400 !important;
    box-shadow: var(--box-shadow-large);
    line-height: 1.8em;
}


/* Position the image container (needed to position the left and right arrows) */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 40px 0;
    gap: 1rem;
    width: 100%;
}


/* Hide the images by default */

.mySlides {
    /* display: none; */
    align-items: center;
    justify-content: center;
}

.mySlides img {
    
    height: 50vh;
    border-radius: 4px;
}


/* Add a pointer when hovering over the thumbnail images */

.cursor {
    cursor: pointer;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: var(--button-color);
    background-color: black;
    font-weight: bold;
    font-size: 20px;
    border-radius: 3px;
    user-select: none;
    -webkit-user-select: none;
}


/* Position the "next button" to the right */

.next {
    right: 10%;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 10%;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
}


/* Number text (1/3 etc) */

.numbertext {
    color: black;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* Container for image text */

.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: var(--text-color);
}

.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Six columns side by side */


.column img {
    position: relative;
    height: 150px;
}


/* Add a transparency effect for thumnbail images */

.demo {
    opacity: 0.8;
}

.active,
.demo:hover {
    opacity: 1;
}

.booking-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    margin-top: 0;
    gap: 1rem;
}

.book-form {
    box-sizing: border-box;
    display: flex;
    /* width: 100%; */
    flex-direction: column;
    gap: 1rem;
}

.book-form form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
}

.book-form form input[type=button] {
    background-color: var(--button-color);
    padding: 10px 0;
    font-size: 18px;
}

.book-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    /* border: 1px solid red; */
}

.book-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 1.5rem;
}

.book-input label {
    font-weight: 400;
    color: var(--navbar-color);
    margin-bottom: 1rem;
}

.book-input input {
    padding: 10px 20px;
    width: 300px;
}

.book-input select,
.book-input textarea {
    width: 100%;
    padding: 10px 0;
    resize: none;
}

.book-col {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-bx {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    /* gap: .7rem; */
}

.faq-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.faq-container h2 {
    color: var(--button-color);
}

.faq-item {
    margin-bottom: 20px;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    border: 1px solid rgb(219, 218, 218);
    margin-bottom: 20px;
}

.question span {
    color: var(--button-color);
}

.answer {
    padding-left: 20px;
}


.toggle-btn {
    cursor: pointer;
    font-size: 20px;
}

.answer {
    display: none;
}

.package-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 30px 0;
}

.package-cont {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    /* width: 60%; */
    /* padding: 30px 0; */
    gap: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgb(179, 177, 177);
    /* border-bottom: 1px solid rgb(117, 116, 116); */
}

.package-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* border: 1px solid red; */
    padding: 20px;
}

.package-left .ul {
    display: flex;
    flex-direction: column;
}

.package-left ul li {
    width: 100%;
    border-bottom: 1px solid rgb(150, 147, 147);
    padding: 20px 0;
}

.package-left ul li a {
    font-size: 20px;
}

.pack-top {
    background-color: var(--navbar-color);
    padding: 20px 20px;
    position: relative;
    text-align: center;
}

.pack-top h2 {
    color: var(--text-color);
}


/* here */

.pack-top {
    position: relative;
    text-align: center;
    /* Adjust as needed to prevent overlap with the arrow */
}

.pack-top::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -10px;
    /* Half of the arrow width */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #0e1157;
    /* Arrow color */
}

.packright-cont {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* border: ipx solid red; */
}

.package-right {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* border: 1px solid blue; */
}

.pack-duration {
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--navbar-color);
}

.pack-duration h2 {
    text-align: center;
    padding: 20px 0;
    color: var(--text-color);
}

.pack-sub {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    /* width: 100%; */
    padding: 20px;
    gap: 10rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.pack-dec {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.pack-dec img {
    height: 150px;
    width: 250px;
    border-radius: 6px;
}

.pack-dec h2{
    width: 15ch;
    color: #333;
}

.pack-price {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pack-price h2 {
    color: var(--navbar-color);
}

.pack-price a {
    padding: 7px 20px;
    background-color: var(--button-color);
    border-radius: 10px;
    border: none;
    font-size: 18px;
    color: var(--text-color);
}

.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 40px 0;
    gap: 1rem;
}

.mySlides {
    display: none;
    align-items: center;
    justify-content: center;
}

.mySlides img {
    height: 50vh;
    border-radius: 4px;
}

.cursor {
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: var(--button-color);
    background-color: black;
    font-weight: bold;
    font-size: 20px;
    border-radius: 4px;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 15%;
}

.prev {
    left: 15%;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
}

.numbertext {
    color: black;
    font-size: 16px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: var(--text-color);
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    
}

.column {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 10%;    
    overflow: hidden;
    margin: .1em;
}


.demo {
    opacity: 0.8;
}

.active,
.demo:hover {
    opacity: 1;
}

.back-to-top-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: black;
    color: var(--text-color);
    padding: 10px;
    cursor: pointer;
    display: none;
    border-radius: 5px;
}

.back-to-top-container svg {
    width: 30px;
}

.back-to-top-container.show {
    display: block;
}

.sigbox{
    /* border: solid 1px blue; */
    display: flex;
    flex-direction: row;
    gap: .3em;
    justify-content: space-between;
    align-items: center;
}

.sigbox span{
    display: inline-block;    
    font-size: 1.6em;
    color: var(--navbar-color);
}

.m-nav{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: .2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 900;
    align-items: center;
    box-shadow: 0px 5px 4px -1px #22222288;
    
}

.m-nav img{
    position: relative;
    height: 100px;
    
}

.m-nav .mn-ul{ 
    display: flex;
    flex-direction: row;
    align-items: flex-start;    
    gap: .1em;
    z-index: 100;
    
}

.m-nav .mn-li{
    
    padding: .1em;
    z-index: 100;
}

.m-nav .mn-sul{
    display: flex;
    flex-direction: column;
    margin: .1em 0em;
    align-items: center;
    gap: .1em;
    box-sizing: border-box;
    display: none;
    z-index: 100;
}

.m-nav .mn-li:hover > .mn-sul{
    display: flex;
    z-index: 100;
}

.m-nav .mn-sli{
    position: relative;    
    width: 100%;
    z-index: 100;
}

.m-nav a{
    /* background: var(--navbar-color);  */
  
    font-size: .9em;
    /* border: solid .4px var(--navbar-color); */
    padding: .3em;
    box-shadow: 4px 3px 3px -3px #ccc; 
    font-weight: 400;
    border-radius: 3px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: .3em;
    align-items: flex-end;
    width: 100%;   
    
}
.m-nav .ant-a{ background: none !important; border: none !important; padding: none !important; width: auto !important; box-shadow: none !important; }

.m-nav a:hover{
    color: #2aa6f8;
}
.mn-sul a{ color: var(--navbar-color); }

.def-a{ color: var(--navbar-color); }
.active_tab{ color: #c4e3f1;  background: var(--navbar-color);  }

/* Media query css start*/

/* Media query for smaller screens (e.g., tablets) */

@media only screen and (max-width: 600px)  {

    .ul-box{
        
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 1em;
    }

    .m-nav{
        box-sizing: border-box;
        position: relative;
        width: 100%;
        z-index: 100;
        padding: 1em;
        display: flex;
        
    }

    .m-nav .mn-ul{ display: none !important;  }

    .m-nav .mn-ul.active{ 
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;    
        gap: .1em;
        
    }

    .menutoggle {
        display: block;
        width: 40px;
        height:40px;
        margin: 15px;
        cursor: pointer;
        text-align: center;
        font-size: 30px;
        position: relative;
      }

      .menutoggle:before {
        content: url('images/mb-op.svg');
      }
    
      .menutoggle.active:before {
        content: url('images/mb-cl.svg');
        line-height: 3em;
      }
 
    .back-arrow-container {
        display: flex;
        margin-bottom: 2rem;
    }
    
    .home-section {
        align-items: center;
        justify-content: center;
    }
    .back-arrow {
        display: flex;
        top: 10px;
    }
    .nav-items.active .dropdown-content {
        display: flex;
    }
    .dropdown-content>div:hover .back-arrow {
        border-bottom: none;
    }
    .dropdown-content>div:hover .back-arrow {
        display: flex;
    }
    .home-desc {
        align-items: center;
        justify-content: center;
        padding: 5px !important;
        overflow: hidden;
        top: 20%;
        gap: .7rem;
        margin: 0 2em !important;
    }
    .home-desc h2 {
        font-size: 1em;
    }
    .home-desc p {
        font-size: .9em;
        max-width: 30ch !important;
    }
   
    .contact-sect {
        flex-direction: column;
        margin: 0 5px;
        width: 90%;
        padding: 10px;
    }
    .photo-menu {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
    }
    .photos-ctn {
        padding: 0 30px;
    }
    .contact-icon {
        gap: 1rem;
    }
    .cont-name {
        max-width: 30ch;
    }
    .form-input input {
        width: 280px;
    }
    .holy-desc {
        margin: 0 25px;
    }
    .about-section {
        gap: 1rem;
    }
    
    .about-right {
    
    max-width: 98% !important;
}
    
    .about-right h3 {
        font-size: 20px;
        color: var(--button-color);
    }
   
    .about-right img {
        width: 100%;
        padding: 0;
    }
    .about-btn {
        margin-top: .7rem;
    }
    .footer-top {
        flex-direction: column;
        padding-left: 30px;
        gap: 2rem;
    }
    .foot-bottom {
        padding-left: 30px;
    }
    .right-top {
        gap: .5rem;
    }
    .about-right {
        padding: 1em;
        }
    .holy-travel {
        gap: 0;
    }
    .reverse {
        flex-direction: column-reverse;
        align-items: center;
    }
    .about-right .holy-image {
        width: 100%;
        
    }
    .about-right .holy-image1 {
        width: 100%;
        
    }

    .about-right {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0px 0;
    }

    .img-desc img {
        width: 300px;
    }
    .adve h4 {
        text-align: center;
    }
    .tour-left {
        align-items: center;
        justify-content: center;
    }
    .tour-left img {
        width: 300px;
    }
    .tours-sect:target {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .tours-sect {
        flex-direction: column;
    }
    
    .tour-right {
        width: 100%;
    }
    .right-btn {
        gap: 2rem;
    }
    .right-btn a {
        font-size: 14px;
        padding: 10px;
    }
    .book-row {
        flex-wrap: wrap;
    }
    .book-form form {
        padding: 30px;
    }
    .book-input input,
    .book-input select,
    .book-input textarea,
    .book-form form input[type=button] {
        width: 270px;
    }
    .about-desc {
        flex-wrap: wrap;
    }
    .pastor-ct li {
        align-items: flex-start;
        justify-content: flex-start;
        /* border: 1px solid red; */
        width: 100%;
    }
    .about-right .m-d {
        width: 300px;
    }
    .about-right-d {
        align-items: center;
        justify-content: center;
        padding-bottom: 2rem;
    }
    .about-right-d h2 {
        font-size: 18px;
        color: var(--navbar-color) !important;

    }

    .about-right-d p,
    .about-right-d h2 {
       
        text-align: left;
        max-width: 98% !important;        
    }

    .about-right-d p{
        font-size: .8em !important;
    }

    .about-right-d a {
        font-size: 16px;
        text-align: left;
    }
    .about-right-d .m-d {
        width: 250px;
        align-items: center;
        justify-content: center;
    }
    .why-ct {
        align-items: center;
        justify-content: center;
        padding: 5px;
    }
    .why-desc p {
        max-width: 35ch;
    }
    .team-ctn {
        align-items: center;
        justify-content: center;
        padding: 5px 5px 50px 5px;
    }
    .tour-title h2 {
        text-align: center;
    }
    .safari-pack img {
        width: 300px;
        height: 280px;
    }
    .safari-story h2 {
        text-align: center;
    }
    .safari-story p {
        max-width: 40ch;
        padding: 0 10px;
    }
    .pack-sub {
        gap: 2rem;
    }
    .pack-btn {
        gap: 2rem;
    }
    .pack-btn a {
        font-size: 14px !important;
    }
    .form-step {
        max-width: 40ch;
    }
    .reg-form {
        margin: 0 10px;
    }
    .book-form form {
        padding: 0 5px;
        margin: 0 10px;
        margin-right: 10px;
        width: 90%;
    }
    .book-input label {
        max-width: 30ch;
    }
    .why-tt h2 {
        text-align: center;
    }
    .like-sect {
        flex-direction: column;
        gap: 2rem;
    }
    .like-cont img {
        width: 100%;
        height: auto !important;
    }
    /* .mySlides img {
        width: 330px;
    } */
    .next {
        right: 1%;
        top: 55%;
    }
    .prev {
        left: 0.1%;
        top: 55%;
    }
    .row {
        display: none;
    }
    .talk-to-us {
        font-size: .9em;
    }
}




.dointer{
    height: 15px;
}

.paycards{
    margin: 1em;
    max-width: 280px;
    opacity: .8;
    box-shadow: 4px 3px 3px -1px #444444aa;
    border-radius: 3px;
}

.dsn-cre { color: var(--button-color); }

/* Extra styling */

.sc-ibox{
    
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: .5em;
    padding: .1em;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;    
}

.sc-ibox a{
    width: auto;
    border: solid 1px #ffffccbb;
    border-radius: 100%;
    padding: .3em;
}

.sc-ibox img{ 
    height: 33px;
    border-radius: 100%;
 }

 .poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  