 /* Slider Area  */

.flexslider {
    max-height: 100vh; /* Set the slider to take full height of the viewport */
    margin-bottom: 0px;
    overflow: hidden;
    /* margin-top:100px; */
  }


    .flexslider-image-bg {
    background-size: cover;
    background-position: center center;
    height:100vh;
}

.black-bg {
    background: linear-gradient(to right, #000, #fff0, #ffffff4a);
    position: absolute;
    z-index: 1;
    width: 100vw;
    height: 100%;
    opacity: 0; /* Start with opacity 0 */
    animation: fadeIn 1s ease-in-out 2s forwards; /* Animation with 2s delay */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.slider-content{
    position: absolute;
    left: 6%;
    top: 35%;
    width: 50%;
    z-index: 99;
}

.slider-header h1{    
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    z-index: 9;
  }

.slider-text{    
    font-size: 18px;
    font-weight: 300;
    padding: 20px;
    padding-left: 0;
    color: #fff;
    z-index: 9;
  }

  .button-Book {
    padding: 20px 0;
}
  
.book-btn{
    background: #04adff;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border: none;
    font-weight: 500;
    border-radius: 10px;
    width: 150px;
    /* transition: 1s ease-in-out; */
}

.book-btn:hover{
    background:#fff ;
    color: #047eb9;
    transition: 1s ease-in-out;
}

.slider-icon{
    display: block;
    position: absolute;
    z-index: 999;
    bottom: 10%;
    right: 7%;
    }

.slider-icon a{
    display: block;
    width: 25px;
   
    margin: 18px 8px;
}

.slider-icon img{
width: 100%;
height:25px;
text-align: center;
}

.dark-i{ display:none;}

.slider-icon a:hover .dark-i{ 
  display:block;
}

.slider-icon a:hover .white-i{ 
  display:none;
}


.arrows {
    position: absolute;
    bottom: 5%;
    width: 100%;
    grid-template-columns: 34px 34px;
    display: grid;
    gap:20px;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 1;
    padding: 0px;
}

.left-arrow{
background: url('../images/aro-left-o.png') center center no-repeat;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size:30px;
    width:30px;
    height:30px;

}

.right-arrow{
    background: url('../images/aro-right-o.png') center center no-repeat;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size:30px;
    width:30px;
    height:30px;
}


@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1); /* You can adjust the scale factor for the desired zoom level */
    }
}

.flexslider .flex-active-slide .flexslider-image-bg {
    animation: zoomIn 8s ease-in-out; /* Adjust the animation duration and timing function as needed */
}



@keyframes slideUp {
    from {
        transform: translateY(50%);
    }
    to {
        transform: translateY(0);
    }
}

@media screen and (max-width:1500px) {
    .slider-text {
    font-size: 14px;}
}

@media screen and (max-width:1260px) {
.slider-header h1{    
	font-size: 60px;}
}

	@media screen and (max-width:990px) {
    .slider-content{
    width: 80%;
    /* left:2%; */
    /* padding: 30px 20px; */
        }

        .flexslider {
    max-height:80vh; }

    .slider-icon {
    bottom: 0%;
    right: 0%;
}

}
	
 @media screen and (max-width:700px) {
  .slider-header h1 {
    font-size: 40px;
    }

    .slider-text {
    padding: 0px 0;}

    .book-btn {
    font-size: 14px;
    padding: 10px;
    width: 100px;
}

.button-Book {
    padding: 15px 0;
}


}


@media screen and (max-width:500px) {
  .slider-header h1 {
    font-size: 30px;
    }

    /* .slider-content {
    padding: 50px;} */

}



/* Drop Down section */

.dropdown-section{
    margin-top: -50px;
    padding: 0px 100px;
    padding-bottom: 0;
    position: relative;
    z-index: 99;
}

.dropdown-area{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:0px;
    margin: 50px 100px;
    box-shadow: 5px 4px 10px 0px rgba(0,0,0,0.61); 
    border-radius:20px;
    padding: 30px;
    margin-top: 0;
    background: #fff;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
    color: #606060;
    padding: 16px;
    font-size: 18px;
    border: none;
    width: 100%;
    margin: 5px 0;
    border-right: 1px solid #777;
    background: url('../images/aro-down-g.png') center center no-repeat;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size:20px;
    background-position: 300px 16px;
    text-align: left;
}

button.day{
    border-right:none;
    border: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  /* min-width: 160px; */
  z-index: 1;
  width: 100%;

}

.dropdown-content ul{
    padding-left: 0;
    margin-bottom: 0;
}

.dropdown-content ul li{
    list-style:none;
    
}

.dropdown-content a {
    padding: 5px 11px;
    text-decoration: none;
    display: block;
    color: #777;
    font-weight: 400;
    font-size: 16px;
}

.dropdown-content a:hover {
    color:#dc5928;
}

.dropdown:hover .dropdown-content {
    display: block;
    transition: display 0.6s ease; 
}

.dropdown:hover .dropbtn {
    color:#047eb9;
    }

    @media screen and (max-width:1800px) {
        .dropbtn {
    background-position: 200px 16px;
        }
    }


    @media screen and (max-width:1600px) {
        .dropbtn {
    background-position: 200px 16px;
        }
    }

    @media screen and (max-width:1400px) {
        .dropbtn {
    background-position: 150px 16px;
        }

        .dropdown-section {
    padding: 0px 0px;
    padding-bottom: 0;
}
    }

    @media screen and (max-width:1180px) {
        .dropbtn {
    background-position: 140px 16px;
        }
    }

    @media screen and (max-width:990px) {
        .dropbtn {
    background-position: 140px 16px;
        }

        .dropdown-area {
    margin: 50px;
    margin-top: 0;}
    }


    @media screen and (max-width:900px) {
       .dropdown-section{
        display:none;
       }
    }


    /* Start Home Why box section  */

    .container-why-box{
        margin:30px 100px;
        padding:50px  100px;
        margin-bottom: 0;
    }
    
    .why-book-title{ 
        color: #000;
      margin-bottom: 20px;
      font-size: 40px;
      font-weight: 600;
      text-align: center;
     }
    
     .why-book-text{ 
        text-align:center;	
        color:#999;
        font-size: 18px;
        font-weight:300;
        margin-top: 10px ;
        margin-bottom: 40px ;
        padding: 0 100px;
     }
    
    .why-book-box-area {
        padding: 0 100px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr ;
        gap: 50px;

    }
    
    .why-book-box{
        text-align: center;
        background:#fff;
/*         box-shadow: 5px 4px 10px 0px rgba(0,0,0,0.61);   */
        padding: 60px 10px;
        border-radius:20px;
    cursor: pointer;
    }
    
    .box-icon{    
        opacity: 1;
    }
    
    .box-icon img{    
      max-width: 100px;
      margin: 15px auto;
    }
    
    .box-title{    
      color:#787878;
      padding: 10px;
      font-size: 16px;
      font-weight:600; 
      text-align: center;
      opacity: 1;
      }
    
    .why-box-content{
        opacity: 0;
        color: #fff;
        position: absolute;
        height: 100%;
        display: grid;
        align-items: center;
        top: 0;
        width: 100%;
        text-align: center;
        padding: 25px;
    }
    
    .why-book-box:hover {   
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        /* transition: 0.3s ease-in-out; */
        border-radius:20px;
    }
    
    .why-book-box:hover .why-box-content{   
        opacity: 1;
        background:#047eb9;
        transition: 0.7s ease-in-out;
        border-radius:20px;
    }
    
    .why-book-box:hover .box-icon{   
        opacity: 0;
    }
    
    .why-book-box:hover .box-title{   
        opacity: 0;
    }
    
    @media screen and (max-width:1500px) {
    .why-book-box-area {
        padding: 0 50px;}
        }
    
    
        @media screen and (max-width:1300px) {
        .container-why-box{
        margin: 100px;
        padding: 50px 0;
        margin-bottom: 0;
    }
    
    .why-book-box-area {
        padding: 0 0px;}
        }
    
    
    @media screen and (max-width:990px) {
        .container-why-box{
        margin:0 30px;
        padding: 30px 0;
        }
    
        .why-book-box-area {
        padding: 0 100px;
        display: grid;
        grid-template-columns: 1fr 1fr ;
        gap: 30px;
    }
    
        .why-book-title{ 
        font-size: 25px;
        }
    
        .why-book-text{
            font-size: 14px;
            padding: 0 30px;
        }
    
    .box-icon img {
        max-width: 60px;
        margin: 0px auto;
    }
    
    
    }
    
    @media screen and (max-width:767px) {
        .why-book-box-area {
        padding: 0 30px;
        gap: 10px;
    }
    }
    
    @media screen and (max-width:550px) {
        .why-book-box-area {
        display: grid;
        grid-template-columns: 1fr ;
        gap: 30px;
    }
    }


    /* Home Destination section */

    .des-section{
        position: relative;
       margin:30px 100px;
       background: #fff;
       padding:40px 0;
       padding-bottom:0;
       }
       
       .des-content-area{
       grid-template-columns:   1fr   2fr  ;
       display: grid;
       gap: 30px;	
       padding:0 40px;
       }
       
       .des-title{
       color: #dc5928;
       font-size: 40px;
       font-weight: 600;
       padding: 20px;
       padding-left: 0;
       text-align: left;
       display: flex;
       justify-content: left;
       align-items: center;
       }
       
       .des-text{
        text-align: left;
       color: #606060;
       font-size: 18px;
       word-spacing: 3px;
       line-height: 18px;
       padding: 20px;
       font-weight: 300;
       padding-left: 50px;
       border-left: 2px solid #afaaaa;
       }
   
   
   .all-des-button{
           text-align: center;
           margin-top: 20px;
       }
   
       .all-des{
       text-align: center;
       font-size: 16px;
       font-weight: 600;
       cursor: pointer;
       border: none;
       border-bottom: 2px solid #047eb9;
       color: #dc5928;
       /* width: 60px; */
       background: transparent;
       padding:3px 0;
       }
   
       .all-des:hover{
           color: #047eb9;
           border-bottom: 2px solid #dc5928;
           transition: 0.5s ease-in-out;
       }


       .text-center {
        text-align: center;
        }

    .color-white {
    color: #fff;
    }

    .box-container {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
        width: 100%;
        padding:50px 0;
    }

    .box-item {
        position: relative;
        -webkit-backface-visibility: hidden;
        width: 100%;
        /* margin-bottom: 35px; */
        max-width: 100%;
    }

    .flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    }

    .flip-box-front,
    .flip-box-back {
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        min-height: 350px;
        -ms-transition: transform 1.5s cubic-bezier(.4,.2,.2,1);
        transition: transform 1.7s cubic-bezier(.4,.2,.2,1);
        -webkit-transition: transform 1.7s cubic-bezier(.4,.2,.2,1);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .flip-box-front {
        -ms-transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -webkit-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-front {
        -ms-transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
        -webkit-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    }

    .flip-box:hover .flip-box-back {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    }

    .flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 60px;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    
    transform: translateY(-50%) translateZ(60px) scale(.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
    top: 50%;
    }

    .flip-box-header {
        font-size: 30px;
        font-weight: 700;
    }

    .flip-box p {
    font-size: 15px;
    line-height: 1.5em;
    }

    .flip-box-img {
    margin-top: 40px;
    width: 120px;
    }

    .flip-box-button {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    margin-top: 25px;
    padding: 5px;
    text-transform: uppercase;
    }

    .flip-box-button:hover{
        border: 2px solid #35a1d9;
    color: #35a1d9;
    }

    @media screen and (min-width:1380px) {
        .box-container {
            flex-direction: row
        }

        /* .box-container {
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            padding:30px;
        } */
        }
    
        @media screen and (max-width:1250px) {
            .des-section{
        margin:50px;
        }
    
        }

        @media screen and (max-width:1100px) {
            .box-container {
                grid-template-columns: 1fr 1fr;
            }
        }
    
        @media screen and (max-width:990px) {
            .des-section{
                margin:30px ;
                padding: 0;
                padding-bottom:0;
                }
                
                .des-content-area{
                grid-template-columns:   1fr  ;
                gap:0;
                padding:0 20px;
                }
                
                .des-title{
                font-size: 30px;
                padding: 0px;
                text-align: center;
                display: block;
                }
                
                .des-text{
                    display:none;
                }
    
                
    
        .flip-box-front, .flip-box-back{
            min-height: 250px;
        }
    
        .flip-box-img {
            margin-top: 30px;
            width: 150px;
        }
    
        .flip-box-header {
            font-size: 20px;
        }
        }
    
        @media screen and (max-width:600px) {
            .des-section {
            margin: 20px;
        }
    
            .box-container {
            grid-template-columns: 1fr;
        }
    
        .flip-box-front, .flip-box-back{
            min-height: 200px;
        }
    
        .flip-box-img {
            margin-top: 30px;
            width: 150px;
        }
    
        .des-title{
            font-size: 30px;
            letter-spacing: 1px;
        }
    
        .des-text{
        padding: 10px;
        }
        }

        


    /* Home About */

    .home-about{
        margin: 0px;
        background: #00070a;
        padding: 100px 200px;
        padding-top:40px;
    }
    
    .about-title{
        color: #fff;
      margin: 40px;
      margin-top:0;
      font-size: 40px;
      font-weight: 600;
      text-align: center;
    }
    
    .home-about-full{
        width: 100%;
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 40px;
        align-items: center;
        
        }
    
        .home-about-leftside {
            background: #fff;
        padding: 45px;
        border-radius: 15px;
        height:40vh;
        position: relative;
        display: flex;
        align-items: center;
    }
    
        .about-text{
            text-align: center;
        color: #606060;
        font-size: 18px;
        word-spacing: 3px;
        line-height: 22px;
        /* padding-bottom: 20px; */
        }
    
        .about-right-img {
        height: 100%;
        overflow: hidden;
    }
    
    .home-about-right{
        width:100%;
        background:url() 50% 50% no-repeat;
        background-size:cover;
        background-clip:content-box; 
        position:relative;
        height:40vh;
        border-radius: 15px;
        transform: scale(1.2);
        transition: transform 6s, visibility 6s ease-in;
    }
    
    .home-about-right::before{
         display:block;
         content:"";
         padding-top: 100%;
    }
    
    .about-right-img:hover .home-about-right{
        transform: scale(1);
    }
    
    @media screen and (max-width:1650px) {
        .home-about-leftside {
        padding: 20px;
    }
    }
    
    @media screen and (max-width:1500px) {
        .home-about{
        padding: 100px;
    }
    
    .about-text{
        font-size: 16px;
        }
    
        
    }
    
    @media screen and (max-width:1200px) {
    .about-text{
        font-size: 14px;
        }
    
        .home-about-full { 
            gap:20px;
        }
    
        
    }
    
    @media screen and (max-width:1080px) {
        .home-about{
        padding: 80px;
    }
    }
    
    
    @media screen and (max-width:990px) {
        .home-about {
        padding: 30px;
    }
    
    .about-title{
      margin: 20px;
      font-size: 30px;
    }
    
        .home-about-full { 
        display:block;
        }
    
        .home-about-leftside {
        display: block;
        height: auto;
        margin-bottom:30px;
    }
    }
    
    @media screen and (max-width:600px) {
        .home-about-full { 
        display:block;
        }
    }


    /* Home Package section */

    .package-wrapper {
        position: relative;
    }
    
    .package-section{
        position: relative;
        margin:30px 100px;
        background: #fff;
        padding:40px 0;
        padding-bottom:0;
    }
    
    .package-content-area{
        /* margin:0 100px; */
        grid-template-columns:   2fr   1fr  ;
        display: grid;
        gap: 30px;	
        padding:0 40px;
        padding-bottom:20px;
        
    }
    
    .package-title{
        color: #dc5928;
        font-size: 40px;
        font-weight: 600;
        padding: 20px;
        padding-right: 0;
        text-align: right;
        display: flex;
        justify-content: right;
        align-items: center;
    }
    
    .package-text{
        text-align: right;
        color: #606060;
        font-size: 18px;
        word-spacing: 3px;
        line-height: 18px;
        padding: 20px;
        font-weight: 300;
        padding-right: 50px;
        border-right: 2px solid #afaaaa;
    }
    
    
    .container-packages {
        padding:0px 30px;
        position: relative;
        z-index: 99;
    }
    
    
    .packages-full{
        /* grid-template-columns:   1fr   1fr   1fr ;
        display: grid;
        gap:40px 30px;	
        width:100%; */
    }
    
    .packages-col{ 
        position:relative; 
        border-radius: 30px;
        margin:10px;
        overflow: hidden;
       }
    
    
    .packages-cover{
        background: #00000066;
        position: absolute;
        width: 100%;
        height:400px;
        top: 0;
        z-index: 9;
        opacity: 0;
    }
    
    .packages-col-img{
        transform: scale(1.2);
        transition: transform 6s, visibility 6s ease-in;
    }
    
    .packages-col-img{
        width: 100%;
        background: url() 50% 50% no-repeat;
        background-size: cover;
        background-clip: content-box; 
        position: relative;
        padding: 0px;
        height: 400px;
    }
    
    .packages-col-img::before{
         display:block;
         content:"";
         padding-top: 100%;
    }
    
    .packages-col:hover  .packages-col-img{
        transform: scale(1);}
    
    
    .packages-info{    
        left: 50%;
        top: 50%;
        transform: translate(-50%, 100%);
        position: absolute;
        z-index: 999;    
        -webkit-transition: -webkit-transform 0.6s;
        transition: transform 0.6s;
    }
    
    .packages-col:hover .packages-info{   
        -webkit-transition: -webkit-transform 0.6s;
        transition: transform 0.6s;
        transform: translate(-50%, -50%);
    }
    
    
    .packages-sm-name{
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        opacity: 0;
        }
    
        .packages-daynights{
            color: #fff;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        opacity: 0;
        }
    
    
    .packages-button{
        position: relative;
        text-align: center;
        z-index: 99;
        padding-top: 10px;
        opacity: 0;
    }
    
    .explore-button-packages{
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        border: 1px solid #fff;
        color: #fff;
        width: 120px;
        margin-bottom: 10px 0;
        background: transparent;
        border-radius:10px;
        padding:3px 0;
        }
    
        .explore-button-packages:hover{
            color: #fff;
            background: #dc5928;
            border: 1px solid #dc5928;
            transition: 0.5s ease-in-out;
        }
    
        .packages-col:hover {
        box-shadow: 5px 4px 10px 0px rgba(0,0,0,0.61);  
        transition: transform .2s;
        transform: scale(1.1);
        }
    
        .packages-col:hover .packages-button{
            opacity: 1;
        }
    
        .packages-col:hover .packages-sm-name{
            opacity: 1;
        }
    
        .packages-col:hover .packages-daynights{
            opacity: 1;
        }
    
        .packages-col:hover .packages-cover{
            opacity: 1;
            transition: opacity 1s ease; 
        }
    
        .arrows-packages {
            position: absolute;
            top: 60%;
            width: 100%;
            grid-template-columns: 34px 34px;
            display: grid;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 1;
            padding: 0 60px;
        }
    
    .left-arrow-packages{
        background: url('../images/aro-left-g.png') center center no-repeat;
            background-repeat: no-repeat;
            cursor: pointer;
            background-size:30px;
            width:30px;
            height:30px;
        
        }
    
        .right-arrow-packages{
            background: url('../images/aro-right-g.png') center center no-repeat;
            background-repeat: no-repeat;
            cursor: pointer;
            background-size:30px;
            width:30px;
            height:30px;
        }
    
        .all-packages-button{
            text-align: center;
            margin-top: 20px;
        }
    
        .all-packages{
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        border-bottom: 2px solid #047eb9;
        color: #dc5928;
        /* width: 100px; */
        background: transparent;
        padding:3px 0;
        }
    
        .all-packages:hover{
            color: #047eb9;
            border-bottom: 2px solid #dc5928;
            transition: 0.5s ease-in-out;
        }
    
        @media screen and (max-width: 1500px) {
            .package-text {
        font-size: 14px;}
    
        .explore-button-packages{
        font-size: 14px;
        }
    
        .all-packages{
        font-size: 14px;
        background-size: 113px;
        }
    }
    
    
        @media screen and (max-width: 990px) {
            .package-section {
        position: relative;
        margin: 30px;
        margin-top: 0;
        padding: 40px 0px;
    }
    
    .container-packages {
        padding:0px;
    }
    
    .package-content-area{
        grid-template-columns:   1fr  ;
        gap:0;
        padding:0 20px;
    }
        
        .package-title{
        font-size: 30px;
        padding: 0px;
        text-align: center;
        display: block;
        order:1;
        padding-bottom: 10px;
        }
        
        .package-text{
            display:none;
        }
    
    .arrows-packages {
            display:none;
        }

        .packages-info{    
          
            transform: translate(-50%, -50%);
            position: absolute;
            z-index: 999;    
            -webkit-transition: -webkit-transform 0.6s;
            transition: transform 0.6s;
        }

       .packages-button{
            opacity: 1;
        }
    
       .packages-sm-name{
            opacity: 1;
        }
    
      .packages-cover{
            opacity: 1;
           
        }
    }
    
    
    @media screen and (max-width: 500px) {
        .arrows-packages {
           display:none;
        }
    }
    

    /* Paralax section  */

    .paralax-section{
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        width: 100%;
        overflow: hidden;
        padding-top: 100px;
    }
    
    .paralax-inner{
    padding:50px 100px;
    }
    
    .paralax-icon{
        text-align: left;
        padding-bottom: 20px;
    }
    
    .paralax-icon img{
        max-width: 100px;
        text-align: left;
    }
    
    .paralax-title{
        font-size: 30px;
        font-weight: 600;
        color: #fff;
        padding-bottom: 5px;
        text-transform: capitalize;
        text-align: left;
    }
    
    .paralax-title1{
        font-size: 60px;
        font-weight: 700;
        color: #fff;
        padding-bottom: 20px;
        text-transform: capitalize;
        text-align: left;
    }
    
    .paralax-button{
        text-align: left;
    }
    
    .paralax{
        background:#047eb9 ;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        padding:  5px;
        border: none;
        font-weight: 500;
        border-radius: 10px;
        width:120px;
    }
    
    .paralax:hover{
        background:#fff ;
        color: #047eb9;
        transition: 0.5s ease-in-out;
    }
    
    @media screen and (max-width: 990px) {
        .paralax-inner{
    padding:50px 70px;
    }
    
        .paralax-title1{
        font-size: 40px;
    }
    
    .paralax-title{
        font-size: 20px;}
    }
    
    @media screen and (max-width: 500px) {
        .paralax-inner{
    padding:50px;
    }
    
        .paralax-title1{
        font-size: 30px;
    }
    
    .paralax-title{
        font-size: 15px;}
    }



/* Home Day Tours section  */

.day_tours-wrapper{
    position: relative;
}

.day_tours-section{
    position: relative;
    margin:30px 100px;
    background: #fff;
    padding:40px 0;
    padding-bottom:0;
}

.day_tours-content-area{
    grid-template-columns:   1fr   2fr;
    display: grid;
    gap: 30px;	
    padding:0 40px;
    padding-bottom:20px;
}

.day_tours-title{
    color: #dc5928;
    font-size: 40px;
    font-weight: 600;
    padding: 20px;
    padding-left: 0;
    text-align: left;
    display: flex;
    justify-content: left;
    align-items: center;
}

.day_tours-text{
    text-align: left;
    color: #606060;
    font-size: 18px;
    word-spacing: 3px;
    line-height: 18px;
    padding: 20px;
    font-weight: 300;
    padding-left: 50px;
    border-left: 2px solid #afaaaa;
}

.container-day_tours {
    position: relative;
    z-index: 99;
}

.day_tour-col{ 
    position:relative; 
    margin:10px;
    overflow: hidden;
    border-radius:20px;
   }


   .day_tour-cover{
    background: #00000066;
    position: absolute;
    width: 100%;
    height:400px;
    top: 0;
    z-index: 9;
    opacity: 0;
}

.day_tour-col-img{
    width: 100%;
    background: url() 50% 50% no-repeat;
    background-size: cover;
    background-clip: content-box; 
    position: relative;
    padding: 0px;
    height: 400px;
    transform: scale(1.2);
    transition: transform 6s, visibility 6s ease-in;
}

.day_tour-col-img::before{
	 display:block;
     content:"";
     padding-top: 0%;
}

.day_tour-col:hover .day_tour-col-img{
    transform: scale(1);
}

.day_tour-sm-name a{
    text-decoration:none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    }

    .day_tour-info{    
    width: 60%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 100%);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    z-index: 99;
}

.day_tour-col:hover  .day_tour-info{ 
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    transform: translate(-50%, -50%);
}

.day_tour-col:hover {
	box-shadow: 5px 4px 10px 0px rgba(0,0,0,0.61);  
    transition: transform .2s;
    transform: scale(1.1);
}

.day_tour-col:hover .day_tour-button{
    opacity: 1;
}

.day_tour-col:hover .day_tour-sm-name a{
    opacity: 1;
}

.day_tour-col:hover .day_tour-cover{
    opacity: 1;
    transition: opacity 1s ease; 
}

.day_tour-button{
    position: relative;
    text-align: center;
    z-index: 99;
    padding-top: 10px;
    opacity: 0;
}

.explore-button-day_tour{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #fff;
    color: #fff;
    width: 120px;
    margin-bottom: 10px 0;
    background: transparent;
    border-radius:10px;
    padding:3px 0;
    }

    .explore-button-day_tour:hover{
        color: #fff;
        background: #dc5928;
        border: 1px solid #dc5928;
        transition: 0.5s ease-in-out;
    }

    .arrows-day_tours {
        position: absolute;
        top: 60%;
        width: 100%;
        grid-template-columns: 50px  50px;
        display: grid;
        justify-content: space-between;
        transform: translateY(-50%);
        z-index: 1;
        padding: 0 40px;
        padding-left: 60px;
    }

.left-arrow-day_tours{
    background: url('../images/aro-left-g.png') center center no-repeat;
        background-repeat: no-repeat;
        cursor: pointer;
        background-size:30px;
        width:30px;
        height:30px;
    
    }

    .right-arrow-day_tours{
        background: url('../images/aro-right-g.png') center center no-repeat;
        background-repeat: no-repeat;
        cursor: pointer;
        background-size:30px;
        width:30px;
        height:30px;
    }

    .all-daytour-button{
        text-align: center;
        margin-top: 20px;
    }

    .all-daytour{
        text-align: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-bottom: 2px solid #047eb9;
    color: #dc5928;
    /* width: 100px; */
    background: transparent;
    padding:3px 0;
    }

    .all-daytour:hover{
        color: #047eb9;
        border-bottom: 2px solid #dc5928;
        transition: 0.5s ease-in-out;
    }

    @media screen and (max-width: 1500px) {
        .day_tours-text{
    font-size: 14px;
    padding-bottom: 20px;
}
    }

   @media screen and (max-width: 990px) {
    .day_tours-section{
        margin:30px ;
    padding: 0;
    padding-bottom:0;
    }

    .container-day_tours {
    padding:0px;
}

    .day_tours-content-area{
        grid-template-columns:   1fr  ;
    gap:0;
    padding:0 20px;
}

.day_tours-title{
    font-size: 30px;
    padding: 0px;
    text-align: center;
    display: block;
    padding-bottom: 10px;
	}

    .day_tours-text{
        display:none;
	}

.arrows-day_tours {
    /* top: 97%;
    place-content: space-evenly;
    padding: 0 40px;
    padding-left: 60px; */
    display:none;
}

.day_tour-info{    
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    z-index: 99;
}

 .day_tour-button{
    opacity: 1;
}

 .day_tour-sm-name a{
    opacity: 1;
}

 .day_tour-cover{
    opacity: 1;
}
}

@media screen and (max-width: 500px) {
    .arrows-day_tours {
        display:none;
    }
}



/* Home Activity section */

.activity-section{
    position: relative;
    padding: 100px;
    background: #fff;
    padding:40px 0;
    background: #939393;
}

.activity-content-area{
	grid-template-columns:   1fr   2fr  ;
    display: grid;
    gap: 30px;	
    padding:0 40px;
	}
	
	.activity-title{
	color: #fff;
    font-size: 40px;
    font-weight: 600;
    padding: 20px;
    padding-left: 0;
    text-align: left;
    display: flex;
    justify-content: left;
    align-items: center;
	}
	
	.activity-text{
	 text-align: left;
    color: #fff;
    font-size: 18px;
    word-spacing: 3px;
    line-height: 18px;
    padding: 20px;
    font-weight: 300;
    padding-left: 50px;
    border-left: 2px solid #fff;
	}

.container-activity {
margin:  30px 0;
margin-bottom:0;
}

.activity-col{ 
    position:relative; 
   }

   .activity-full{
/*     grid-template-columns:   1fr   1fr 1fr    1fr   1fr 1fr ;
    display: grid;
    gap: 0px;	 */
   }

.activity-cover{
    background: #00000066;
    position: absolute;
    width: 100%;
    height:300px;
    top: 0;
    z-index: 9;
    opacity: 0;
}

.activity-col-img{
    width: 100%;
    background: url() 50% 50% no-repeat;
    background-size: cover;
    background-clip: content-box; 
    position: relative;
    padding: 0px;
    height: 300px;
    /* transform: scale(1.2);
    transition: transform 6s, visibility 6s ease-in; */
}

.activity-col-img::before{
	 display:block;
     content:"";
     padding-top: 0%;
}

/* .activity-col:hover .activity-col-img{
    transform: scale(1);
} */

.activity-info{    
    width: 60%;
    position: relative;
    left: 45%;
    top: 50%;
    z-index: 99;
    transform: translate(-50%, 100%);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

.activity-col:hover .activity-info{
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    transform: translate(-50%, -50%);
}

.activity-sm-name a{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    text-decoration:none;
    }
    

    .activity-col:hover {
	box-shadow: 5px 4px 10px 0px rgba(0,0,0,0.61);  
    transition: transform .2s;
    transform: scale(1.1);
    z-index: 99;
    }
    
    .activity-col:hover .activity-button{
        opacity: 1;
    }

    .activity-col:hover .activity-cover{
        opacity: 1;
        transition: opacity 1s ease; 
    }

    .activity-col:hover .activity-sm-name a{
        opacity: 1;
    }


    .activity-button-all{
        text-align: center;
        margin-top: 20px;
    }

    .explor-all-activity{
        text-align: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    /* width: 100px; */
    background: transparent;
    padding:3px 0;
}

.explor-all-activity:hover{
    color: #047eb9;
    border-bottom: 2px solid #dc5928;
    transition: 0.5s ease-in-out;
}


@media screen and (max-width: 1400px) {
        .activity-sm-name a{
    color: #fff;
    font-size: 20px;
        }
    }

    @media screen and (max-width: 1100px) {
        .activity-sm-name a{
    color: #fff;
    font-size: 18px;
        }

    }

   @media screen and (max-width: 990px) {
    .activity-section{
    margin:0px ;
    padding: 0;
    padding-bottom:50px;
    padding-top:50px;
	}
	
	.activity-content-area{
	grid-template-columns:   1fr  ;
    gap:0;
    padding:0 20px;
	}
	
	.activity-title{
    font-size: 30px;
    padding: 0px;
    text-align: center;
    display: block;
    padding-bottom: 10px;
	}
	
	.activity-text{
        display:none;
	}

        .container-activity {
           margin:0px;
        }

        .activity-info{    
            transform: translate(-50%, -50%);
            -webkit-transition: -webkit-transform 0.35s;
            transition: transform 0.35s;
        }

        .activity-button{
            opacity: 1;
        }
    
       .activity-cover{
            opacity: 1;
        }
    
        .activity-sm-name a{
            opacity: 1;
        }
    
}

@media screen and (max-width: 500px) {
    
}


