
*{
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body{
    transition: all 0.2s ease-in-out;
    position: relative;
    right:0;
}

.pageLoading{
    width:100%;
    height: 100%;
    position:fixed;
    top:0;
    left:0;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    background-color:#fff;
    opacity:0;
    visibility:hidden;
    z-index:-1;
    transition:all 1.5s ease;
}

.pageLoading.visiblePage{
    opacity:1;
    visibility:visible;
    z-index:1051;
}

.pageLoading img{
    width: 30%;
    height: fit-content;
    animation: scaleIn 1s forwards;
}
@keyframes scaleIn {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.1);
    }
}

.shift-body{
    position: relative;
    right: 300px;
}
html{
    scroll-behavior: smooth;

}
.secn{
    width: 100%;
    height: max-content;
    padding-top:120px;
}
.page-title{
    width: 100%;
    text-align: center;
    font-size: 60px;
    color: #0047ca;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
.secn-title{
    font-size: 40px;
    text-align: center;
    width: 100%;
    color: #222;
    font-style: italic;
    padding: 10px;
    box-sizing: border-box;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #444; 
}
.navbar{
    width: 100%;
    position: fixed;
    top:38.4px;
    background: #fff;
    box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.5);
    height: 80px;
    z-index: 12;
    transition: all 0.2s ease-in-out;
}
.navbar .logo{
    padding: 10px;
    width: fit-content;
    position: absolute;
    transition: all 0.2s ease-in-out;
}
.navbar .logo img{
    width: 180px;
    transition: all 0.2s ease-in-out;
}
.navbar .nav{
    display: flex;
    list-style: none;
    position: absolute;
    right:30px;
    top:2px;
}
.navbar .link{
    display: block;
    text-decoration: none;
    padding: 30px 25px;
    color:#333;
    margin: 0px 5px 0px 5px; 
    font-size: 15px;
    position: relative;
    top:-2px;
    overflow: hidden;
}
.link:hover{
    color: #0048cd;
}

.link::after{
    content: ' ';
    display: block;
    width: 100%;
    height: 3px;
    position: relative;
    top:5px;
    background: #0040ff;
    border-radius: 5px;
    transform: translateX(-200%);
    transition: all 0.2s ease;
}

.link:hover::after{
    transform: translateX(0);
}

.item button{
    border: none;
    padding: 15px;
    background: #0047ca;
    color: #fff;
    border-radius: 10px;
    position: relative;
    bottom: 15px;
    margin: 0px 5px 0px 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.item button:hover{
    background-color: #002e83;
}
.scrolled{
    height: 60px;
}
.scrolled .logo img{
    width: 120px;
}
.scrolled .link{
    padding: 20px 25px;
}
.top-menu{
    position: fixed;
    top:0;
    right:0;
    width: 100%;
    height: fit-content;
    padding: 5px;
    background: #004edf;
    display: flex;
    flex-direction: row-reverse;
    list-style: none;
    z-index: 50;
    transition: all 0.2s ease-in-out;
}

.v-line{
    display: block;
    width: 2px;
    height: 20px;
    margin-top: 4.5px;
    background-color: #fff;
}
.top-menu li a{
    display: block;
    text-decoration: none;
    padding: 5px 15px;
    color:#fff;
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
}
.top-menu li a i{
    margin-right: 15px;
    transition: all 0.2s ease-in-out;
}
.top-menu li a:hover i{
    transform: rotateY(180deg);
}
.top-menu li a:hover{
    box-shadow: 0px 0px 0px 2px rgba(255,255,255);
    background-color: #fff;
    color:#004edf;
}
.usr-menu{
    position:absolute;
    top:50px;
    right:10px;
    background-color: #f9f9f9;
    padding: 10px;
    list-style:none;
    display: flex;
    flex-direction: column;
    border-radius:20px;
    border-top:3px solid #004edf ;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: none;
}
.usr-menu li a{
    color: #004edf;
}
.usr-menu .fa-solid{
    position: absolute;
    top: -12px;
    right: 95px;
    color: #004edf;
}
.usr-menu li a:hover{
    color:#fff;
    background-color: #004edf;
}

.slideshow-container{
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 50%;
    right: 0;
    padding: 60px;
    color: white;
    box-sizing: border-box;
}

.slide-caption {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    transform: translateY(50px);
    opacity: 0;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 25px;
    transform: translateY(50px);
    opacity: 0;
}

.slide-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #0041b2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.slide-btn:hover {
    background: #00bbff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 166, 255, 0.3);
}

.slide.active .slide-caption {
    animation: flyIn 0.8s ease-out 0.3s forwards;
}

.slide.active .slide-description {
    animation: flyIn 0.8s ease-out 0.5s forwards;
}

.slide.active .slide-btn {
    animation: flyIn 0.8s ease-out 0.7s forwards;
}

@keyframes flyIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0073ff;
    width: 35px;
    border-radius: 6px;
}



@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }

    .slide-content {
        padding: 30px;
    }

    .slide-caption {
        font-size: 28px;
    }

    .slide-description {
        font-size: 14px;
    }

    .slide-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
.slideshow-container .search-overlay{
    width: 300px;
    height: max-content;
    position: absolute;
    top:17%;
    right:10%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 11;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.3);
}
.slideshow-container .search-overlay .overlayHeader{
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}
.slideshow-container .search-overlay .search-box{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
.slideshow-container .search-overlay .search-box input{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #444;
    outline: none;
    margin-bottom: 10px;
    margin-top: 5px;
    transition: all 0.2s ease-in-out;
}
.slideshow-container .search-overlay .search-box select{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #444;
    outline: none;
    margin-bottom: 10px;
    margin-top: 5px;
    transition: all 0.2s ease-in-out;
}
.slideshow-container .search-overlay .search-box input:focus,
.slideshow-container .search-overlay .search-box select:focus{
    box-shadow: 0 0 0 4px #5792ff;
    border-color: #2a75ff;
}
.slideshow-container .search-overlay .search-box .search-btn{
    position: relative;
    float: right;
    border: none;
    padding: 10px 15px;
    background-color: #0047ca;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
}
.slideshow-container .search-overlay .search-box .search-btn:hover{
    background-color: #002e83;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
}

/* Modal Box */
.modal {
    width: max-content;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

/* Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #0046b7;
    font-size: 0.8rem;
    color: #ffffff;
}

/* Close Button */
.modal-close {
    background: #5d65ff;
    border: none;
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    border-radius: 50%;
    padding: 5px 10px;
    transition: all 0.20s ease-in-out;
}

.modal-close:hover {
    background-color: #ced9ff;
    color: #000987;
}

/* Content */
.modal-content {
    padding: 20px;
    box-sizing: border-box;
    color: #001f49;
    font-size: 15px;
    line-height: 1.6;
}

/* Animation */
@keyframes modalFadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.filter-wrapper{
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.filter-wrapper .filter{
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 13, 57, 0.87);
}
.filter-wrapper .filter:last-child{
    border-bottom: none;
}
.filter-wrapper .filter label{
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
    padding: 5px;
    box-sizing: border-box; 
}
.filter-wrapper .filter .input-group{
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
}
.filter-wrapper .filter .input-range{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 10px 5px;
    box-sizing: border-box;
}

.filter-wrapper .filter .input-range #rangeTag {
    position: absolute;
    top:-30px;
    left: -50px;
    background: #007bff;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
}
.filter-wrapper .filter .input-range span{
    display: block;
    width: max-content;
}
.filter-wrapper .filter .input-range input{
    margin: 0px 5px;
    width: 100%;
}

.card-wrapper{
    margin-top: 30px;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 0.25fr 0.25fr 0.25fr 0.25fr;
    grid-gap:20px;
    padding: 10px;
    justify-content: space-evenly;
    box-sizing: border-box;
}
.card{
    text-decoration: none;
    height: 300px;
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    cursor:pointer;
    transform: translateY(0);
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.5);
    transition: all 0.25s ease-in-out;
}
.pack-card{
    text-decoration: none;
    height: 400px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.5);
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}
.pack-card:hover{
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.3);
    transform: scale(1.025);
}
.card:hover{
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.5);
    transform: translateY(-5px);
}
.card:hover .img-box img{
    transform: scale(1.05);
}
.img-box{
    position: absolute;
    height: 300px;
    width: 100%;
    top:0px;
    z-index: -1;
    
}
.pack-card .img-box{
    height: 200px;
}
.img-box img{
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1);
    transition: all 0.25s ease-in-out;
}
.content-box{
    height: 80px;
    background: #0047cae8;
    width: 100%;
    padding: 10px;
    padding-left: 15px;
    box-sizing: border-box;
    position: absolute;
    bottom:0;
    color:#fff;
    display: flex;
    align-items: center;
}
.pack-card .content-box{
    height: 220px;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    background-color: #eee;
    color: #222;
    padding: 20px;
    box-sizing:border-box;
    padding-top: 10px;
}

.pack-card .content-box h3{
    color: #ff6600;
    margin: 5px 0px 10px 0px ;
}
.pack-card .content-box h4{
    color: #0047ca;
    font-size: 20px;
    margin: 10px 0px 5px 0px;
}
.pack-card .content-box #pack-dests{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: left;
    background: #bbb;
    padding: 5px;
    box-sizing: border-box;
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.pack-card .content-box #pack-dests .spanRail{
    display:flex;
    flex-direction:row;
    align-items:center;
}
.pack-card .content-box #pack-dests span{
    margin: 0 5px 0 5px;
    display: flex;
    white-space:nowrap;
}
.pack-card .content-box #pack-dests .fa-angle-left{
    position: absolute;
    left: 0;
    padding: 7px;
    box-sizing: border-box;
    background: #bbb;
}
.pack-card .content-box #pack-dests .fa-angle-left:hover{
    background: #ccc;
}
.pack-card .content-box #pack-dests .fa-angle-right{
    position: absolute;
    right: 0;
    padding: 7px;
    box-sizing: border-box;
    background: #bbb;
}
.pack-card .content-box #pack-dests .fa-angle-right:hover{
    background: #ccc;
}
.pack-card .action-btn{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.pack-card .badge{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px;
    border-radius: 50px;
    font-size: 12px;
    color: #fff;
}
.pack-card .badge.spl{
    background: rgb(0 155 61 / 88%);
}
.pack-card .badge.ltd{
    background: rgb(255 202 0);
    color: #111;
    font-style: italic;
    font-weight: bolder;
}
.footer{
    margin-top: 100px;
    background-color: #0047ca;
    padding: 10px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    grid-gap:10px;
}
.c-contr{
    width: 100%;
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    grid-gap:10px;

}
.c-contr .column{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
}
.c-contr .column ul{
    list-style:square;
}
.c-contr .column ul li a{
    display: block;
    width: max-content;
    text-decoration: none;
    color:#fff;
    padding: 5px;
}
.c-contr .column ul li a:hover{
    text-decoration: underline;
}
.c-info{
    width: 100%;
    text-align: center;
    position: relative;
}
.social-icons{
    display: flex;
    list-style: none;
    position: absolute;
    top:180px;
    right:calc(50% - 100px);
}
.social-icons li a{
    text-decoration: none;
    padding: 10px 12px;
    margin: 5px;
    background-color: #fff;
    border-radius: 100%;
    color: #0047ca;
    transition: all 0.25s ease-in-out;
}
.social-icons li a:hover{
    box-shadow: 0px 0px 0px 5px #fff;
    color: #fff;
    background-color: transparent;
}
.c-info p{
    position: absolute;
    top:230px;
    width: 100%;
}
.c-info p a{
    text-decoration: none;
    color: #fff;
}
.c-info p a:hover{
    text-decoration: underline;
}
.wrapper{
    padding: 10px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    grid-gap:10px;
}
.contacto-form{
    padding: 40px;
    box-sizing: border-box;
}
.form-input{
    position: relative;
    margin: 5px;
    margin-bottom: 25px;
}
.form-input label{
    width: fit-content;
    padding: 2px 5px;
    position: absolute;
    top: -12px;
    left: 15px;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.25s ease-in-out;
}
.form-input input,.form-input textarea, .form-input select{
    width: 100%;
    background: transparent;
    padding: 10px;
    padding-left: 15px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #444;
    outline: none;
    transition: all 0.25s ease-in-out;
}
.form-input input[type="checkbox"],.form-input input[type="radio"]{
    width:fit-content;
    padding: 50px;
}
.form-input input[type="checkbox"]+label,.form-input input[type="radio"]+label{
   top:-3px;
   left:20px;
}
.form-input input[type="checkbox"]:focus + label,.form-input input[type="radio"]:focus+label{
    top:-3px;
    left:20px;
}
.form-input input::placeholder,.form-input textarea::placeholder{
    color: #fff;
}
.form-input input:placeholder-shown + label, .form-input textarea:placeholder-shown + label{
    top:7px;
}
.form-input input:focus,.form-input textarea:focus{
    box-shadow: 0px 0px 0px 4px #5792ff;
    border-color: #2a75ff
}
.form-input input:focus + label, .form-input textarea:focus + label{
    top:-12px;
}
.tracker{
    position: relative;
    width: 100%;
    height:fit-content;
    box-shadow: inset 0px 0px 4px 1px rgba(0,0,0,0.5);
    border-radius: 20px;
    padding: 5px;
    margin-bottom: 30px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
}
.tracker .slider{
    position: absolute;
    left: 8px;
    display: block;
    background-color: #0047ca;
    width: calc(50% - 20px);
    height: 4.5vh;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    z-index: -2;
}
.tracker .tracker-tab{
    display: block;
    width: 50%;
    height: fit-content;
    border-radius: 20px;
    padding: 5px;
    margin: 3px;
    cursor: pointer;
    text-align: center;
}
.tracker .tracker-tab.t-active{
    color:#fff;
}
.form-btn{
    cursor: pointer;
    display: block;
    border: 0px;
    padding: 10px 15px;
    background-color: #0047ca;
    border-radius: 5px;
    color: #fff;
    transition: all 0.2s ease-in-out;
}
.form-btn:hover{
    background-color: #002e83;
}
.form-container{
    transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
    position: relative;
    left: 20%;
    width: 60%;
    margin-top: 150px;
    padding:20px;
    box-sizing: border-box;
    height:fit-content; 
    overflow: hidden;
}
.login-cont{
    width: 100%;
    box-sizing: border-box;
    display: -webkit-inline-box;
    transition: all 0.2s ease-in-out;
}
.login-form{
    margin-top: 70px;
}
.login-form, .signup-form{
    display: block;
    width: 100%;
    padding:40px;
    margin-right: 30px;
    box-sizing: border-box;    
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
    box-shadow: 0 0 5px 2px rgba(0,0,0,0.5);  
}
.login-form .form-btn{
    margin: 0 auto;
}
.login-form .form-input label{
    background-color: transparent;
    left:5px;
}
.login-form .form-input input{
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #333;
}
.login-form .form-input input::placeholder{
    opacity: 0;
}
.login-form .form-input input:focus{
    box-shadow: 0 8px 7px -7px rgba(0, 60, 255, 0.87);
    border-color: rgba(0, 60, 255, 1);
}


.chatbot-icon{
    padding: 5px;
    position: fixed;
    bottom: 30px;
    right:30px;
    cursor: pointer;
}
.chat-header{
    padding: 10px;
    background: rgb(71 99 255);
    color: #fff;
    display: flex;
    align-items: center;
    height: 30px;
}
.chat-header h1{
    font-size: x-large;
}
.chat-header .btn{
    position: absolute;
    padding: 5px 8px;
    right: 20px;
    border-radius: 100%;
}

.chatbot-container{
    position: fixed;
    width: 300px;
    right:30px;
    height: 500px;
    bottom:30px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 2.5px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: scale(0);
    transition:all 0.2s ease-in-out;
}
.chat-panel{
    background: #ececec;
    width: 100%;
    height: 400px;
    padding: 10px;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
}
.msg{
    width: 100%;
    animation: forwards 0.5s animate;
}
.msg p{
    width: fit-content;
    background: #a0c9ff;
    border-radius: 20px;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 10px;

}
@keyframes animate {
    0%{
        transform: scale(0);
    }    
    100%{
        transition: scale(1);
    }
}
.usr-msg{
    display: flex;
    justify-content: flex-end;
}
.loading{
    position: absolute;
    z-index: 1;
}
.loading p{
    padding: 0px;
}
.loading img{
    width:50px;
}
.usr-msg p{
    margin-right: 0;
    margin-left: 50px;
    border-top-right-radius: 0px;
}
.bot-msg{
    justify-content: flex-start;
}
.bot-msg p{
    margin-right: 50px;
    margin-left: 0px;
    border-top-left-radius: 0px;
}
.chat-input{
    width: 100%;
    height: 50px;
    background-color: rgb(71, 99, 255);
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    z-index: 2;
    align-items: center;
}
.chat-input input{
    width: 100%;
    height: 30px;
    margin: auto;
    border-radius: 10px;
    border: 0;
    padding-left: 10px;
    transition:all 0.2s ease-in-out;
    outline:none;
}
.chat-input input:focus{
    box-shadow: 0 0 0 5px #8890ff;
}
.btn{
    padding: 5px 10px;
    box-sizing: border-box;
    background:rgb(0, 9, 90);
    color: #fff;
    border: none;
    margin-left: 10px;
    border-radius: 10px;
    transition:all 0.2s ease-in-out;
    outline:none;
}
.btn:hover{
    background: rgb(0, 15, 167);
}
.msg .action-btn{
    background:#a0c9ff;
    border: none;
    border-radius: 50px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 12px;
    margin: 5px;
    transition: all 0.2s ease-in-out;
}
.action-btn:hover{
    background: #dcebff;
}
.b-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    padding: 15px 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}

.b-info .box {
    font-size: 1.25vw;
}

.box p {
    margin: 0;
}

.imgs-calender {
    width: 100%;
    display: grid;
    grid-template-columns: 0.69fr 0.31fr;
    grid-gap: 10px;
}

.imgs-calender #imgs-slider {
    height: 75vh;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    position: relative;
    top:45px;
    overflow: hidden;
}

.imgs-calender #imgs-slider .slide {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    overflow: hidden;
    opacity: 0.5;
    z-index:1;
    background-size:cover;
    background-position:center;
}

.imgs-calender #imgs-slider .active {
    z-index: 10;
    animation: zoom-in 4s linear;
    opacity: 10;

}

@keyframes zoom-in {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.price-calender {
    height: 73vh;
    width: 95%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    transform: translate(5%, 10%);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
}

.price-calender .price{
    font-size: 1.5vw;
    text-align: center;
    margin-bottom: 5px;
}

.price-calender .price .form-select{
    width: 80%;
    margin-bottom: 10px;
    font-size: 1.3vw;
    border-radius: 50px;
    padding: 5px 20px;
}

.calender {
    padding:10px 20px;
    width: 100%;
    background-color: white;
    overflow: hidden;
    box-sizing: border-box;
}

.calender-header {
    background: #002aff;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    align-items: center;
    font-weight: 700;
    color: #ffffff;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 15px;
}

.cur-month {
    cursor: pointer;
}

.year-month {
    cursor: pointer;
}

.calender-header select {
    color: #fff;
    background: transparent;
    outline: none;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.2em;
}

select option {
    color: #000;
    font-size: 0.8em;
}

.calender-body {
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
}

.weeks {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 5px;
    text-align: center;
    font-weight: bold;
}

.calender-days {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 10px;
    text-align: center;
}

.calender-days div {
    padding: 4px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

@media screen and (max-width: 1400px) {
    .calender-days div {
        padding: 4px;
        border-radius: 10px;
        transition: all 0.2s ease;
    }
}

.calender-days .current-date {
    background-color: #002aff;
    color: #fff;
}

.special-date{
    background-color: #ff5500;
    color:#fff;
    cursor: pointer;
}
.special-date:hover{
    background-color: #ff8f57;
}

#tab-secn {
    display: grid;
    grid-template-columns: 0.20fr 0.80fr;
    grid-gap: 5px;
    position: relative;
}

.tabs {
    display: flex;
    flex-direction: column;
    background-color: rgb(120, 201, 255);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    height: 80vh;
}

.tab {
    padding: 10px;
    box-sizing: border-box;
    background-color: #2c59fd;
    color: #fff;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin: 5px 0px;
    transform: scale(1);
    cursor: pointer;
}

.tab:hover,
.tab-active {
    background-color: #030ff4;
    box-shadow: 0px 0px 10px 5px rgb(231 252 255 / 80%);
    transform: scale(1.025);
}

.panel-container {
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    padding: 2px;
    position: relative;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
}


.panel {
    display: none;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}
.panel ol{
    margin-left:30px;
}
.panel h1{
    margin-bottom:30px;
    font-size:2.5vw;
}
.panel ul{
    transition:all 0.5s ease;
    padding-left: 10px;
}
.active-panel {
    display: block;
    opacity: 0;
    visibility: hidden;
    animation: fadeinpanel 0.5s ease forwards;
}
@keyframes fadeinpanel {
    0%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        opacity: 1;
        visibility: visible;
    }
}
.active-panel ul{
    padding-left: 50px;
}

.days-panel-cont {
    width: 100%;
    background-color: rgb(120, 201, 255);
    padding: 5px;
    box-sizing: border-box;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    scrollbar-color: #000987 rgb(120, 201, 255);
    overflow-y: hidden;
}

.days-panel {
    display: flex;
    width: max-content;
}

.days-panel span {
    padding: 10px;
    box-sizing: border-box;
    background-color: #2c59fd;
    color: #fff;
    border-radius: 10px;
    transition: all 0.5s ease;
    margin: 5px;
    transform: scale(1);
    cursor: pointer;
}

.days-panel span:hover {

    background-color: #000dff;
}

.days-panel span.active-day {
    padding: 10px 15px;
    background-color: #000dff;
}

.display-panel {
    width: 100%;
    height: 100%;
    position: relative;
}

.display-itenary {
    position: absolute;
    width: 100%;
    height: max-content;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    visibility: hidden;
    opacity: 0;
    background-color: #ffffff;
    text-align: justify;
}

.display-itenary p{
    width:100%;
    box-sizing:border-box;
    overflow-wrap: break-word;
}

.display-itenary.active-itenary {
    opacity: 1;
    visibility:visible;
}
.splexp-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    list-style: none;
    padding-left:10px !important;
    padding:10px;
}
.splexp-grid li{
    text-align:center;
    transition:all 1s ease;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);
}
.splexp-grid li .splexp-img{
    background-size:cover;
    background-position:center;
    margin-bottom:30px;
    height:250px;
    width: 100%;
    transition:all 1s ease;
}
.splexp-grid li:hover{
    box-shadow:0px 0px 20px 0px rgba(0,0,0,0.5);
}
.splexp-grid li:hover > .splexp-img{
    transform:scale(1.05)
}
.splexp-grid li h2{
    padding:0px 20px;
}
.splexp-grid li p{
    text-align: justify;
    padding:20px;
}
.htlcard-container{
    width: 100%;
    display: grid;
    grid-template-columns: 0.33fr 0.33fr 0.33fr;
    grid-gap:10px;
}
.htlcard{
    width: 100%;
    height: 400px;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    transition: all 0.2s ease-in-out;
}
.htlcard:hover{
    transform: scale(1.025);
}
.htlcard .card-img{
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center;
}
.htlcard .card-text{
    width: 100%;
    height: 50%;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}
.htlcard .card-text p{
    margin:5px 0px;
}
.htlcard .card-text p .btn{
    margin:0px;
    float:right;
}