@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Thasadith:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;    
    text-align: right;
    color: #d2ae11;
}

.bg-image{
    width: 100%;
    padding: 20px 0;
    background-repeat: no-repeat;
    background-position: top top;
    background-size: 100%;
    
}

main{
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    color: white;
    
}

body{
    overflow-x: hidden;
}

main > *{
    position: absolute;    
}


.main_heading{
    transform: translateX(-50%);    
    left: 50%;    
    font-weight: 700;
    pointer-events: all;
    text-shadow: 1px 1px 2px #000;
}

.explore_heading{
    font-size: 6vw;
    text-align: center;
    top: 20%;
}

.everest_heading{
    top: 40%;
    width: 100%;
    text-align: center;
    font-size: 5vw;    
}

.guide_image{
    bottom: 0;
    left: 50%;
    pointer-events: none;
    height:80vh;
    transform: translateX(-40%);    
}

.parallax{
    pointer-events:     none;
    transition: 0.45s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

.cloud-1{
    bottom: -200px;
    right: -400px;
    transform: translateX(20%);
}
.cloud-2{
    bottom: -200px;
    left: -400px;
    transform: translate(-50% , -50%);
}


.mouse_scroll_effect{
    height: 50px;
    bottom: 10%;
    z-index: 99;
    transform: translateX(-100%);
    left: 50%;    
}
body{
    background: rgb(245,246,247);
    padding-top: 100px;
    padding-bottom: 100px;
    background: -moz-radial-gradient(circle, rgba(245,246,247,1) 71%, rgba(255,239,186,1) 97%);
    background: -webkit-radial-gradient(circle, rgba(245,246,247,1) 71%, rgba(255,239,186,1) 97%);
    background: radial-gradient(circle, rgba(245,246,247,1) 71%, rgba(255,239,186,1) 97%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f6f7",endColorstr="#ffefba",GradientType=1);
   
}

.blur-rect{
    height: 20%;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, #F5F6F7 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, #F5F6F7 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, #F5F6F7 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000387",GradientType=1);
    width: 100%;
    bottom: 0;    
}

.right_bg_corner{
    background: #F5F6F7;
    background: -moz-linear-gradient(277deg, rgba(255,243,206,1) 0%, rgba(255,255,255,1) 66%);
    background: -webkit-linear-gradient(277deg, rgba(255,243,206,1) 0%, rgb(227, 227, 227) 66%);
    background: linear-gradient(277deg, rgba(255,243,206,1) 0%, rgba(255,255,255,1) 66%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff3ce",endColorstr="#ffffff",GradientType=1);
}

.left_bg_corner{
    background: rgb(255,242,200);
    background: -moz-linear-gradient(90deg, rgba(255,242,200,1) 0%, rgba(255,255,255,1) 66%);
    background: -webkit-linear-gradient(90deg, rgba(255,242,200,1) 0%, rgba(255,255,255,1) 66%);
    background: linear-gradient(90deg, rgba(255,242,200,1) 0%, rgba(255,255,255,1) 66%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff2c8",endColorstr="#ffffff",GradientType=1);
}

.container{
    max-width: 1140px !important;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto  ;
    margin-left: auto  ;
}

.swiper-slide img{
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ebc-heading-text{
    background-color: #FFF5D5;    
}

.bar{
    width: 100%;
    display: block;
    height:10px;
    background: green;
}

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap");
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}
.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: .85;
    cursor: pointer;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
}
.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}
.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}



.book_now_form{    
    display: none;
}
.book_now_form.active{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.808);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    z-index: 9999;
}

.inner_book_form{
    position: relative;
   
    width: 60%;
    background: white;
    border-radius: 10px;
}

.inner_close{
    position: absolute;
    right: 2%;
    top: 2%;
}

@media (max-width: 767px) {

  

    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }

    header > div{
        display: flex;
        align-items: center;
        text-align: center;        
        flex-direction: column;
    }

    .bg-image{
        width: 100%;
        padding: 20px 0;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        
    }

    .inner_book_form{
        position: relative;
       
        width: 90%;
        background: white;
        border-radius: 10px;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

