@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Kristi&family=Playfair+Display&display=swap');
/* font-family: 'Kristi', cursive; */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cabin', sans-serif;
}

*::selection{
    background-color: #FFCC05;
}

a{
    text-decoration: none;
    color: #FFCC05;
}
li{
    list-style: none;
}
input{
    border: none;
}
input:focus{
    outline: none;
}
body{
}
.flex{
    display: flex;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.align-center{
    align-items: center;
}


/* Top header styling*/
.header-upper{
    background-color: #1C1C1C;
    padding: 8px 0px;
    z-index: -1;
}
.header-upper-container{
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    font-size: 14px;
    
}

.left{
    gap: 40px;
}

.left-left{
    gap: 20px;
}
.left-right{
    gap: 15px;
    cursor: pointer;
}

.left-right:hover{
    color: #FFAB17;
}
.left-left p{
    letter-spacing: 2px;
}

.right span{
    letter-spacing: 2px;
    cursor: pointer;
}
.right span:hover{
    color: #FFAB17;
}

.icons{
    display: flex;
    gap: 5px;
}
.icons i:hover{
    color: #FFAB17;
    cursor: pointer;
}


/* Login conteiner styling */

.login-container .login-body .logo p{
    font-family: 'Kristi', cursive;
    font-size: 60px;
    color: #FFCC05;

}

.login{
    position: fixed;
    /* top: 0;
    left: 0;
    bottom: 0;
    right: 0; */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* height: 100%; */
    /* width: 100%; */
    background-color: rgba(0,0,0,0.3);
    display: none;
}
.login-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1c1c1c;
    gap: 15px;
    /* display: none; */
}
.login-upper{
    display: flex;
    font-size: 20px;
    color: #fff;
}
.login-upper p{
    padding: 20px 60px;
    cursor: pointer;
}

/* .login-upper p:last-child{
    background-color: #333333;
} */

.login-body{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 20px 40px;
}

.input input{
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.input input[type='submit']{
    background-color: #FFCC05;
    letter-spacing: 3px;
    color: #fff;
    font-size: 17px;
    padding: 10px 0;
    border-radius: 5px;
    cursor: pointer;
}
.input input[type='submit']:hover{
    background-color: #333333;
    
}


.login-back-color{
    background-color: #333333;
}

.upper-main-container{
    position: relative;
    z-index: 100;
}
.videos video{
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.imagess img {
    object-fit: cover;
    width: 100%;
    height: 120vh;
}


.down-container{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0,0,0,0.4); */
}
.header-main{
}
.header-min{
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    align-items: center;
}

.header-min .logo img{
    height: 90px;
}

.header-nav ul.ul-nav{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    
}

.header-nav{
    transform: translateY(8px);
    
}
/* a.drop-item{
    color: #9F9F9F;
    font-size: 10px;

} */
a.nav-tab{
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 2px;
}

.header-nav ul li a:hover{
    color: #FFCC05;
}

.header-nav ul .home-tab{
    color: #FFCC05;
}

.hamburger{
    background-color: #FFCC05;
    padding: 8px;
    transform: translateY(-8px);
    border-radius: 3px;
}


.cart span{
    position: absolute;
    top: -5px;
    right: -8px;
    color: #fff;
    background-color: #FFCC05;
    font-size: 12px;
    /* padding: 2px; */
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Search bar styling */

.search-bar{
    background-color: #141414;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    display: none;
}

.search-bar input{
    /* width: 95%; */
    padding: 5px;
    font-size: 20px;
    background: transparent;
    border: none;
    color: #fff;
    width: 90%;
}

.search-bar i:first-child{
    color: #FFCC05;
    font-size: 23px;
    transform: rotate(90deg);
}
.search-bar i:last-child{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.search-bar i:last-child:hover{
    color: #FFCC05;
}

.right-slider{
    width: 40vw;
    height: 100vh;
    background-color: #1C1C1C;
    position: fixed;
    top: 0;
    right: -1000px;
    z-index: 100011;
    overflow-y: scroll;
    transition: right .5s ease-out;

}

.right-slider::-webkit-scrollbar{
    width: 15px;
}
.right-slider::-webkit-scrollbar-track {
    border-radius: 7px;
    
}

.right-slider::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 6px 6px 6px #000; 
   
}
.cursor{

    cursor: pointer;
}
.right-slider .wrapper img:first-child{
    height: 150px;
    margin-bottom: 20px;
}
.right-slider .wrapper{
    padding: 60px;
}
.right-slider .wrapper p.wrapper-text{
    color:#fff;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #c3ff00;
    font-size: 17px;
    margin-bottom: 20px;
}

.right-slider .wrapper p.wrapper-latest{
    color: #fff;
    font-size: 23px;
    margin-bottom: 20px;
}

.wrapper{
    position: relative;
}

.posts{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.posts .post{
    display: flex;
    gap: 20px;
}

.posts .post .post-content{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.posts .post .post-content p:first-child{
    font-size: 19px;
    color: #fff;
}
.posts .post .post-content p:last-child{

    color: #fff;
}

.phone,.mail{
    display: flex;
    gap: 10px;
    color: #9F9F9F;
}

.right-slider-contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.right-slider-contact .icons{
    display: flex;
    gap: 15px;
    color: #9F9F9F;
}

.post-content p:first-child{
    cursor: pointer;
}
.post-content p:first-child:hover{
    color: #FFCC05;
}

.cross-icon{
    position: absolute;
    top: 50px;
    right: 80px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
#bar{
    cursor: pointer;
}

.page-drop{
  
    left: 60px;
  
}

.dest-drop{
   
    left: 130px;

}

.tours-drop{
   
    left: 270px;

}



.shop-drop{
    /* right: 10px; */
    left: 450px;

}
.dropdown{
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #141414;
    /* left: 20px; */
    /* padding: 30px; */
    width: 200px;
    top: 48px;
    gap: 20px;
    height: 0px;
    overflow: hidden;
    transition: height .5s ease;
}

.page-drop li,
.dest-drop li,
.tours-drop li,
.shop-drop li{
    padding-left: 30px;
}
.page-drop li a,
.dest-drop li a,
.tours-drop li a,
.shop-drop li a{
    color: #9F9F9F;
    font-size: 14px;
}
.page-drop li:first-child,
.dest-drop li:first-child,
.tours-drop li:first-child,
.shop-drop li:first-child{
    padding-top: 30px;
}
.page-drop li:last-child,
.dest-drop li:last-child,
.tours-drop li:last-child,
.shop-drop li:last-child{
    padding-bottom: 30px;
}

.page-drop li a:hover,
.dest-drop li a:hover{
    color: #FFCC05;
}
.page-link:hover .page-drop{
    height: 270px;
    /* padding: 30px; */
}

.dest-link:hover .dest-drop{
    height: 100px;
}


.ul-nav li{
    cursor: pointer;
}
.tours-link:hover .tours-drop,
.shop-link:hover .shop-drop{
    height: 150px;
}
.tour-sub-link1{
    text-overflow: ellipsis;
}


/* .tour-sub-link1:hover .tours-sub-drop1{
    height: 100px;
} */
.tour-sub-link1:hover .tours-drop{
    overflow: visible;
}
a.nav-tab.bars:hover{
    color: #fff;
}
a.drop-item.sub{
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.tours-sub-drop1{
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #141414;
    /* left: 20px; */
    /* padding: 30px; */
    width: 200px;
    top: 100px;
    gap: 20px;
    /* right: 10px; */
    left: 470px;
    /* height: 0px; */
    overflow: hidden;
    transition: height .5s ease;
    text-overflow: ellipsis;
}

.upper-main-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.upper-main-text h1{
    color: #ffffff;
    font-size: 70px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    margin-top: 30px;
    text-shadow: solid black;
}
.upper-main-text p{
    color: #ffffff;
    text-align: center;
    font-size: 35px;
    letter-spacing: 1px;
    width: 75%;
    margin-top: 20px;
}
.upper-main-content{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* position: relative; */
  
    
}

p.top-text{
    font-family: 'Kristi', cursive;
    color: #FFCC05;
    font-size: 50px;
    /* position: absolute; */
    /* top: 110px;
    left: 430px; */
    /* transform: translateX(-130px); */
    margin-left: -220px;
}

.upper-form-input svg{
    fill: #FFCC05;
    width: 20px;
    height: 20px;
}


.upper-form-input{
    border: 1px solid #9F9F9F;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
}
select{
    border: none;
    outline: none;
    padding: 5px 15px;
}
option{
    width: 10px;
}

.upper-form-input input{

    padding: 6px 15px;
}

.upper-form-input.submit{
    background-color: #FFCC05;
    border: none;
    cursor: pointer;
}
.upper-form-input.submit button {
    background-color: #FFCC05;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: auto;
    color: #000;
}
.upper-form-input input[type='submit']{
    background: transparent;
    border: none;
    padding:6px 60px ;
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
.upper-form-input.submit:hover{
    background-color: #1c1c1c;
}


.fixed-top{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding-bottom: 15px;
    transition-duration:.5s;
    box-shadow: 0 0 8px 0 #cdc8c8;

}

/* .fixed-search{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
} */
.fixed-top .nav-tab{
    color: #000;
}



.top i, .bottom i{
    font-size: 20px;
}

.top i{
    color: #fff;
    font-weight: bolder;
}
.top{
    background-color: rgb(238, 38, 71);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    
}
.top,.bottom{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bottom i{
    color: rgb(238, 38, 71);
    
}

.bottom{
    background-color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 0 8px 0 #cdc8c8;
}


.down{
    /* background-image: url('/images/h1-background-2.jpg'); */
    /* background-size: cover;
    background-position: center; */
}

                                                            /* details */
/* Basic Reset
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* Body Styles */
/* body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
    padding: 10px 20px;
} */

/* Content Section */
.content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff; /* Added background for better contrast */
    padding: 20px; /* Added padding */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-bottom: 40px;
}

/* Headings */
.content h1 {
    text-align: center;
    color: #2b00ff;
    border-bottom: 2px solid #16a085; /* Underline for h2 */
    margin-bottom: 20px;
}

.content h2 {
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.content h3{
    color: #a305ff;
    margin-top: 15px;
    margin-bottom: 5px;
}
.content h4{
    color: #16a085;
    margin-top: 15px;
    margin-bottom: 5px;
}


/* Paragraphs */
.content p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem; /* Consistent font size */
}

/* Lists */
.content ul {
    list-style: disc;
    margin: 15px 0;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

/* Links */
.content a {
    color: #2980b9;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Section Styling */
.section {
    margin-bottom: 40px;
}

/* Navigation Styles */
.nav {
    margin-bottom: 20px;
}

.nav ul {
    list-style: none;
    padding: 0;
}

.nav ul li {
    display: inline;
    margin-right: 10px;
}

.nav ul li a {
    text-decoration: none;
    color: #2980b9;
}

/* Improved styling for a better look */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3, h4 {
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content {
        padding: 15px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content h3, .content h4 {
        font-size: 1.25rem;
    }
}


                                        


                                                                        /* Footer styling */

.footer{
    background-color: #141414;
    color: #fff;
}

.footer-container{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    grid-gap: 40px;
    padding-top: 40px;
    padding-bottom: 20px;
}


p.footer-head{
    font-size: 20px;
    margin-bottom: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.footer-first img{
    margin-top: -15px;
    margin-bottom: 20px;
    height: 115px;
}
.footer-first p {
    color: #da9631; /* Light, readable color for better contrast */
    margin-bottom: 20px; /* Space below each paragraph */
    line-height: 1.6; /* Increased line height for better readability */
    font-size: 18px; /* Slightly larger font size for better readability */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; /* Modern, clean font */
    text-align: center; /* Center-align text for a balanced look */
    border-radius: 8px; /* Rounded corners for a softer look */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition effects */
}

.footer-first p:hover {
    color: #ffcc00; /* Highlight color on hover */
    background: #444; /* Slightly lighter background on hover */
    transform: translateY(-8px);
    
    
}

.footer-fourth img{
    width: 100%;
}

.footer-icons div{
    display: flex;
    gap: 15px;
}
.footer-icons div i{
    color: #FFCC05;
}
.footer-icons{
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #cdc8c8;
}

.footer-img{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}
.footer-first .icons {
    margin-top: 20px; /* Space above the icons */
    display: flex; /* Flexbox for layout */
    font-size: 30px;
    gap: 16px; /* Space between icons */
}

.footer-first .icons i {
    color: #ffcc00; /* Default color for icons (white) */
}

.footer-first .icons a:hover i {
    color: #ffffff; /* Color of the icons on hover (yellow) */
}

.footer-second div{
    display: grid;
    color: #FFCC05;
    line-height: 1.5;
    text-align: center;
    gap: 12px;
}

.footer-second div p{
    margin-bottom: 10px;
}
.footer-second a {
    color: #00f2ff; /* Dark gray color for links */
    font-weight: normal; /* Normal font weight for links */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.footer-second a:hover {
    color: #FFCC05; /* Color when hovered (blue) */
    text-decoration: underline; /* Underline on hover */
}

.footer-head {
    font-size: 24px; /* Size of the heading */
    color: #ffffff; /* Color of the heading */
    margin-bottom: 20px; /* Space below the heading */
    text-align: center; /* Center-align heading */
}

.footer-third div {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(2, 1fr); /* Create two equal-width columns */
    line-height: 1.5;
    text-align: center;
    row-gap: 12px;
}
.footer-third div p{
    color: #cdc8c8;
}

.footer-third a {
    color: #00f2ff; /* Link color */
    font-weight:normal /* Font size of the links */
    
}

.footer-third a:hover {
    color: #FFCC05; /* Darker color on hover */
    text-decoration: underline;
}


.footer-img img:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition-duration: .5s;

}
.footer-img div{
    overflow: hidden;
    transition-duration: 1s;
}

.footer-second div p:hover, .footer-second div span:hover{
    color: #FFCC05;
    cursor: pointer;
}

.footer-first div span:hover{
    cursor: pointer;
    color: #FFCC05;
}

.custom-drop{
    display: none;
}

.side-bars{
    position: fixed;
    top: 20px;
    right: 40px;
    font-size: 30px;
    z-index: 10000;
    cursor: pointer;
    display: none;
}
.profile{
    position: fixed;
    top: 25px;
    left: 40px;
    font-size: 20px;
    z-index: 10000;
    cursor: pointer;
    display: none;
}

.header-min .fa-chevron-right{
    display: none;
}

/* .container{
    padding-left: 100px;
    padding-right: 100px;
} */

/* .container img{
    width: 100%;
} */



/* Media queries */

@media(max-width:1120px){
    .review-content .fa-chevron-right,.profile{
        display: block;
    }
    #back-image {
        object-fit: cover;
        width: 100%;
        height: 50vh;
    }

    video{
        object-fit: cover;
    }
    
    .upper-main-content{
        margin-top: 120px;
    }

    .side-bars{
        display: block;
    }
    .header-upper{
        display: none;
        padding-left: 30px;
        padding-right: 30px;
        
    }
    .header-main{
        background-color: #fff;
        position: fixed;
        left: 0;
        right: 0;
        /* padding: 15px; */
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .logo{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-min{
        display: initial;
        
    }
    .ul-nav{
        flex-direction: column;
        position: absolute;
        background-color: #fff;
        /* top: -8px; */
        width: 100%;
        
    /* box-shadow: 0 0 5px 0 #cdc8c8; */
    box-shadow: 0 4px 6px -2px #cdc8c8;
    height: 0;
    padding: 0;
    overflow-y: scroll;
    
    /* overflow-x: scroll; */

    }
    .ul-nav::-webkit-scrollbar{
        width: 10px;
    }
    .ul-nav::-webkit-scrollbar-track {
        border-radius: 5px;
        
    }
    
    .ul-nav::-webkit-scrollbar-thumb {
        border-radius: 10px;
        box-shadow: inset 6px 6px 6px #818181; 
       
    }

    .ul-nav i{
        position: absolute;
        right: 80px;
        /* display: block; */
        /* top: 10px; */
        margin-top: -20px;
    }
    .ul-nav a{
        color: #000000;
        /* display: block; */
    }
    .ul-nav li{
        padding-left: 40px;
    }
    .ul-nav li:hover a.nav-tab{
        color: #FFCC05;
    }
    .ul-nav li{
        /* display: flex; */
    }
    /* .ul-nav li:first-child{
        padding-top: 40px;
    }
    .ul-nav li:last-child{
        padding-bottom: 40px;
    } */

    .custom-drop{
        /* display: block; */
    }


    .page-link:hover .page-drop{
        height: 0px;
        /* padding: 30px; */
    }

    .dest-link:hover .dest-drop{
        height: 0px;
    }


    .tours-link:hover .tours-drop,
    .shop-link:hover .shop-drop{
        height: 0px;
    }
    
    



    .search-li{
        display: none;
    }
    #bar{
        display: none;
    }

    .page-drop-custom{
        
    }

    .custom-drop{
        display: block;
        display: flex;
        flex-direction: column;
        gap: 20px;
        /* padding: 0; */
        height: 0;
        overflow: hidden;
    }

    .dest-drop-custom{
        /* display: block; */
        color: #000;
    }


    .shop-link{
        padding-bottom: 20px;
    }
    .side-bars{
        display: block;
    }


    .upper-main-text h1{
  
        font-size: 50px;
    }
    .upper-main-text p{
      
        font-size: 18px;
        
    }
    .upper-main-text p{
        width: 50%;
    }


    .see-more{
        flex-direction: column;
    }
    .see-more-img,.see-more-content{
        width: 80%;
        margin: 0 auto;
        height: 50%;
    }

    .reviews{
        flex-direction: column;
        height: auto;
    }
    
    .review-content{
        width: 80%;
        height: 100%;
        background: transparent;
        background-size: cover;
        padding-top: 20px;
        padding-bottom: 20px;
       
    }

    .image-gallery{
        padding: 20px;
    }
    .adventure{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .adventure-left{
        width: 80%;
    }
    .adventure-right{
        width: 80%;
    }

    .offers-images{
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-left: 100px;
        padding-right: 100px;
    }
    .offers-middle .offer-card:first-child{
        height: 40%;
    }

    .offers-right{
        display: none;
    }


    .footer-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-left: 35px;
        padding-right: 30px;

    }

    .videos video{
        object-fit: cover;
        width: 100%;
        height: 60vh;
    }
  

    .imagess img {
        object-fit: cover;
        width: 100%;
        height: 120vh;
    }
    
    
}

@media(max-width:948px){
    .right-chevron,.left-chevron{
        display: none;
    }

    .upper-main-text p{
        /* display: none; */
        font-size: 15px;
        width: 80%;
    }
    .upper-main-text h1{
  
        font-size: 30px;
    }
    p.top-text{
        font-size: 40px;
    }
    .upper-form-input input[type='submit']{
        font-size: 14px;
    }
    .upper-form-input input{
        font-size: 15px;
    }
    .upper-form-input label{
        font-size: 13px;
    }
    .upper-form-input i{
        font-size: 15px;
    }
    .slide-bottom{
        margin-top: 15px;
    }

    .review-content h1{
        font-size: 30px;
    }
    .stars{
        margin-bottom: 15px;
    }
    .slide-text{
        font-size: 16px;
    }
    .adventure-left-content{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        
    }

    .join-upper{
        flex-direction: column;
        gap: 20px;
    }
    .join-upper-input{
        width: 100%;
        display: flex;
    }
    .join-upper-text{
        width: 100%;
    }

    .join-upper-input input[type='email']{
        width: auto;
    }
    .join-upper-input input[type='submit']{
        width: auto;

    }
    .join-lower{
       flex-direction: column;
       justify-content: center;
       align-items: center;
       height: auto;

    }
    
    .join-lower-img{
        width: 80%;
    
        position: relative;
    }
    .join-lower-content{
        width: 80%;
    }
    .join-lower-text p{
        font-size: 110px;
    }
    .join-lower-text span{
        font-size: 110px;
        margin-top: 20px;
    }
}

@media(max-width:700px){
    .adventure-left-content span{
        font-size: 30px;
    }
    .adventure-left-content h1{
        font-size: 20px;

    }
    
    .adventure-left-content p{
        font-size: 14px;

    }
    
    .adventure-left-content a{
        font-size: 14px;

    }

    
    .offers-images{
        display: grid;
        grid-template-columns: 1fr;
    }

    .tour-icons{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .footer-container{
        grid-template-columns: 1fr;
    }

    .join-upper-input{
        flex-direction: column;
        gap: 10px;
    }
    .join-lower-text p{
        font-size: 90px;
        margin-top: 70px;
    }
    .join-lower-text span{
        font-size: 90px;
        margin-top: 50px;
    }
}


@media(max-width:611px){

    .join-lower-text p{
        font-size: 80px;
        margin-top: 100px;
    }
    .join-lower-text span{
        font-size: 80px;
        margin-top: 50px;
    }
}
.height{
    height: auto;
    padding-top: 10px;
    margin-top: 10px;
}

.rotate{
    transform: rotate(90deg);
}

.ham-height{
    height: 60vh;
}

