:root{
    --primary-color:#35a9dc;
    --secondary-color:#7B431A;
    --white:#FFFFFF;
    --black-grey: #494949;
    --grey: #616161;
    --light-grey: #737373;
}

body{
    background-color: rgba(245, 245, 245);
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    overflow-x: hidden;
}
.light-grey{
    color: var(--light-grey);
}
.grey{
    color:var(--grey);
}
.black-grey{
    color: var(--black-grey);
}
.text-primary{
    color: var(--primary-color) !important;
}
.text-gradient-primary{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-secondary-dark{
    color: var(--secondary-color) !important;
}
.text-gradient-secondary{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.shadow-primary{
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.08);
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
a{
    text-decoration: none;
    color: black;
}
.text-red-color{
    color: #cd0000;
}
.form-control:focus{
    box-shadow: 0 0 0 .25rem rgba(7, 126, 23, 0.25);
}
.fs-7{
    font-size: 18px;
}
.fs-sm{
    font-size: 12px;
}
.mt-5{
    margin-top: 5rem !important;
}
.pagination .page-item .page-link {
    background-color: #fff;
    color: var(--primary-color);
    font-size: 13px;
}
.pagination .page-item.active .page-link {
    color: #fff !important;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-login{
    background: var(--primary-color);
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.08);
    font-size: 12px;
    transition: box-shadow 0.4s ease-in-out;
}
.btn-login:hover,.btn-login:focus{
    background: #095a48;
    box-shadow: 2px 2px 14px 0 #9d9d9d;
}
.breadcrumb{
    font-size: 12px;
}
.form-label{
    font-size: 10px;
    color: #68717e;
}
/*Home Page Faq Section*/

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
}
.accordion-button {
    background-color: transparent !important;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 !important;
}
.accordion-body p{
    font-size: 14px;
}

.btn-submit{
    background: var(--primary-color) !important;
    padding: 12px;
    border-radius: 4px;
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    transition: box-shadow 0.4s ease-in-out;
}
.btn-submit:hover,.btn-submit:focus{
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    box-shadow: 2px 4px 12px #b1afaf;
}

/*End of Home Page Faq Section*/

/*-- header style ---*/
header{
    position: sticky;
    top: 0;
    z-index: 9999;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
header.sticky{
    animation: slideDown 0.35s ease-out;
}
.navbar-brand img, .offcanvas-header img{
    width: 80px;
    height: 50px;
}
.navbar-nav .nav-link.active{
    color: var(--primary-color);
}
.navbar-nav .nav-link .icon-active,.navbar-nav .nav-link.active .icon-default{
    display: none !important;
}
.navbar-nav .nav-link.active .icon-active{
    display: inline-block !important;
}
.navbar-nav .nav-item{
    display: none;
}
.sticky .navbar-nav .nav-item{
    display: block;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@media screen and (max-width: 992px) {
    .navbar-nav .nav-item{
        display: block;
    }
}
@media screen and (max-width: 576px) {
    .kst-hero-header ul{
        display: none !important;
    }
}
/*-- end header style ---*/

/*--- hero style ---*/
.kst-hero-header{
    position: absolute;
    top: -90px;
}
.shake-text {
    position: relative;
    height: 90px;
    text-align: left;
    overflow: hidden;
}

.shake-text span {
    position: absolute;
    width: 100%;
    opacity: 1;
    animation: shakeAnim 12s linear infinite;
    left: 0;
}

.shake-text span:nth-child(1) {
    opacity: 0;
    transform: translateX(-200px);
    animation-delay: 0s;
}
.shake-text span:nth-child(2) {
    opacity: 0;
    transform: translateX(-200px);
    animation-delay: 4s;
}
.shake-text span:nth-child(3) {
    opacity: 0;
    transform: translateX(-200px);
    animation-delay: 8s;
}

@keyframes shakeAnim {
    0% {
        opacity: 0;
        transform: translateX(0);
    }
    1% {
        opacity: 1;
        transform: translateX(100px);
    }
    2% {
        opacity: 1;
        transform: translateX(0px);
    }
    4% {
        opacity: 1;
        transform: translateX(50px);
    }
    6% {
        opacity: 1;
        transform: translateX(0px);
    }
    28% {
        opacity: 1;
        transform: translateX(0px);
    }
    30% {
        opacity: 1;
        transform: translateX(-300px);
    }
    33.3% {
        opacity: 1;
        transform: translateX(-400px);
    }
    35% {
        opacity: 0;
        transform: translateX(-400px);
    }
    100% {
        transform: translateX(0);
    }
}

.kst-hero-header ul{
    border: 1px solid #CDCDCD;
    border-radius: 8px;
    background: #FEFEFE;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.kst-hero-header ul li{
    border-right: 1px solid #CDCDCD;
    width: 16.6% !important;
}
.kst-hero-header ul li:last-child{
    border-right: none;
}
.kst-hero-header small{
    color: #626262 !important;
    font-weight: 500 !important;
}
.kst-hero-header .active small{
    color: var(--primary-color) !important;
    font-weight: 500 !important;
}
.kst-hero-header .icon-active,.kst-hero-header .kst-header-icon.active .icon-default{
    display: none !important;
}
.kst-hero-header .kst-header-icon.active .icon-active{
    display: block !important;
}
.kst-hero:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/sky-woman-bg.png") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-form{
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}
.hero-form .form-control{
    border: none !important;
    padding: 2px !important;
    color: #212529bf;
    background-color: transparent;
    font-weight: 600;
}
.hero-form .form-control:focus{
    box-shadow: 0 0 0 .25rem rgba(4, 129, 57, 0.25);
}
.hero-form-field-things{
    background-position: right -94px !important;
}
.hero-form-field-travelers{
    background-position: right 0 !important;
}
.hero-form-field-date{
    background-position: right -188px !important;
}
.hero-form-field-location{
    background-position: right 0 !important;
}
.btn-primary{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 2px 2px 22px 0 rgba(0, 0, 0, 0.09);
    font-size: 14px;
    padding: 12px 20px;
    transition: box-shadow 0.4s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus{
    box-shadow: 4px 4px 22px 0 rgba(0, 0, 0, 0.52);
    background-color: var(--primary-color) !important;
}
.btn:focus-visible{
    box-shadow: 0 0 0 .25rem rgba(4, 129, 57, 0.25);
}
.hero-form .btn-primary{
    font-size: 13px;
}
.hero-form .label-gradient-secondary{
    background: linear-gradient(270deg, #E06C41 0%, #B85733 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-form .nav-pills .nav-link{
    display: flex;
    align-items: center;
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
}
.hero-form .nav-pills .nav-link.active{
    color: var(--primary-color);
}
.hero-form .nav-pills .nav-link.active .icon-default,.hero-form .nav-pills .nav-link .icon-active{
    display: none !important;
}
.hero-form .nav-pills .nav-link.active .icon-active{
    display: inline-block !important;
}
.hero-form .select2-container--default .select2-selection--single{
    background-color: transparent;
    border: none;
    font-weight: 400;
    font-size: 15px;
}
.hero-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529bf;
}
@media screen and (max-width: 769px) {
    .kst-hero-header{
        position: relative;
        top: 0;
    }
}
/*--- end hero style ---*/
/*--- feature style---*/
.feature-wrapper{
    border-radius: 30px;
    border-left: 1px solid #E4E4E4;
    background: linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
    backdrop-filter: blur(6px);
    box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.08);
}


.feature-wrapper p{
    font-size: 12px;
    text-transform: capitalize;
}
.ft-scale{
    scale: 0.8;
}
.feature-wrapper .col{
    border-right: 2px solid #E4E4E4;
}
@media screen and (max-width: 576px) {
    .feature-wrapper .col{
        border-right: none;
    }
}
/*-- end feature style--*/
/*-- activity style --*/
.category-header .nav-link.active .icon-default,
.category-header .nav-link .icon-active{
    display: none;
}
.category-header .nav-link.active .icon-active{
    display: block;
}
.category-header .nav-link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #DFDFDF;
    background: #F7F7F7;
    color: var(--black-grey);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    min-width: 104px;
    min-height: 130px;
}
.category-header .nav-link .nav-text{
    background: linear-gradient(96deg, #737272 0%, #797979 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.category-header .nav-link.active{
    border: 1px solid #007D64;
    background:  linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
    color: var(--primary-color);
    box-shadow: 12px 12px 60px 0 rgba(0, 0, 0, 0.12), 4px 4px 14px 0 rgba(0, 0, 0, 0.08);
}
.category-header .nav-link.active .nav-text{
    background: linear-gradient(0deg, #007D64 0%, #007D64 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kst-card{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 6px 6px 25px 0 rgba(0, 0, 0, 0.18);
    /*overflow: hidden;*/
}
.card-header--green{
    background: linear-gradient(98deg, #0c7988 0%, #5d94b5 100%);
}
.card-header--secondary{
    background: linear-gradient(98deg, #AC735F 0%, #7B431A 100%);
}
.card-content--dark{
    background: linear-gradient(180deg, rgb(67 71 71 / 2%) 0%, #252525ed 42.5%) !important;
    padding: 12px;
    border-radius: 8px;
}
.card-content--white{
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 44%, rgba(255, 255, 255, 0.8) 80%, rgb(255 255 255 / 0%) 100%) !important;
    padding: 20px;
    color: #363636;
}
.kst-card-head h3{
    font-size: 1.3rem;
    margin-bottom: 6px !important;
    font-weight: 700;
}
.kst-card-items li{
    border-right: 2px solid #E4E4E4;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: var(--secondary-color);
}
.kst-card-content{
    width: 100%;
}
.kst-card-timing{
    border-radius: 100px;
    border: 0.5px solid #FAFFFD;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
}
.kst-card-timing--green{
    border: 0.5px solid #56A57A;
}
.kst-card-timing-grey{
   font-weight: 300;
}
.kst-card .kst-card-nav{
    height: 0;
    overflow: hidden;
    transition: height 0.4s linear;
}

.kst-card-nav .tab-pane,
.package-nav-tabs .tab-content{
    font-weight: 300;
}

.kst-card:hover .kst-card-nav{
    height: 150px;
}
.kst-card-nav .tab-content ul{
    padding-left: 0;
    margin-bottom: 0;
}
.kst-card-nav .tab-content ul li{
    list-style-type: none;
    display: flex;
    font-size: 11px;
    margin-bottom: 4px;
}
.kst-card-nav p{
    font-size: 11px;
    margin: 0;
}
.kst-card-nav .tab-content ul li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/card-point-arrow.svg") no-repeat center/contain;
    margin-right: 6px;
}
.kst-card-nav-white .tab-content ul li::before{
    content: '';
    background: url("../images/card-point-arrow-black.svg") no-repeat center/contain;
}
.rate-starting-text,.rate-slace-text{
    font-weight: 200;
}
.price-deal{
    font-weight: 200;
    font-size: 13px;
}
.price-deal img{
    min-height: 14px !important;
}

.kst-card:hover .kst-card-timing{
    display: none !important;
}
.kst-card-content .nav-tabs .nav-link{
    color: rgb(213 213 213 / 90%);
    border: none;
    border-bottom: 1px solid transparent !important;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 10px;
    margin-right: 4px;
}
.kst-card-content .nav-tabs .nav-link.active{
    border-bottom: 1px solid var(--white) !important;
    color: var(--white);
}
.kst-card-content .nav-tabs-black .nav-link{
    color: #6e6d6d !important;
}
.kst-card-content .nav-tabs-black .nav-link.active{
    border-bottom: 1px solid #363636 !important;
    color: #363636 !important;
}
.btn-white{
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
    border: none !important;
    font-size: 14px;
    font-weight: 500 !important;
    transition: box-shadow 0.4s ease-in-out;
    border-radius: 100px;
}
.btn-white:hover{
    box-shadow: rgb(0 0 0 / 60%) 2px 2px 22px 0;

}
.whatsapp-link a{
    border-radius: 100px;
    background: linear-gradient(180deg, #4AC14B 0%, #00A744 100%);
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.22);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-nav{
    position: absolute;
    top: -60px;
    right: 0;
}
.owl-prev span,.owl-next span{
    width: 36px !important;
    height: 36px !important;
    display: inline-flex;
    align-items: end;
    justify-content: center;
    font-size: 24px !important;
    color: var(--primary-color) !important;
    background: var(--white) !important;
    border-radius: 100% !important;
    border: 2px solid var(--primary-color) !important;
    margin: 0 20px !important;
    opacity: 0.8;
}
.owl-prev span:hover, .owl-next span:hover{
    opacity: 1;
}
.owl-dots{
    display: flex;
    justify-content: center;
    margin: 20px 0 !important;
    gap: 20px;
}
.owl-dot{
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #cbccce !important;

}
.owl-dot.active{
    background-color: var(--primary-color) !important;
}
@media screen and (max-width: 992px) {
    .owl-nav{
        position: relative;
        margin: 20px 0;
        top: 0;
    }
}
.filter-form-body .search-input{
    font-size: 13px;
    border-left: 0;
}
.filter-form-body .search-icon-box{
    padding-right: 0;
}
.filter-form{
    margin-bottom: 30px;
}
.kst-title{
    position: relative;
    cursor: pointer;
}
.kst-title .kst-title-feature{
    display: none;
}
.kst-title:hover .kst-title-feature{
    display: block;
    padding: 14px 8px 8px 8px;
    position: absolute;
    left: 0;
    right: 0;
    width: 200px;
    height: auto;
    background: #fff;
    box-shadow: 0 2px 12px 1px #5656561a;
    border-radius: 8px;
    z-index: 1;
}
/*---end of activity---*/

/* Why Choose Section  Background */
.why-section {
    background: #f8f9fb;
}

/* Card */
.why-card {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: 0.3s;
}

/* Hover Icon Effect */
.why-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* Typography */
.why-card h5 {
    margin-bottom: 10px;
}

/*home page blog section*/
.blog-card{
    background-color: white;
    border: 1px solid #f1f1f1;
    box-shadow: rgba(50, 50, 93, 0.25) 0 6px 12px -2px, rgba(0, 0, 0, 0.3) 0 3px 7px -3px;
    border-radius: 8px;
}
.blog-card-body{
    padding: 16px;
    border: 2px solid #000;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}
.blog-card-img{
    height: 160px;
    width: 100%;
}
.blog-card-detials h5{
    color: #353535;
}
.blog-card-detials small{
    color: #353535;
    font-weight: 300;
}

/*End of Home Page Blog Section*/

/*footer section*/
footer{
    overflow: hidden;
}
.footer{
    background-image: url("../images/footer-bg.svg");
    background-color: #007D64;
    padding: 30px 10px 20px 10px;
    background-repeat: no-repeat;
    background-position: bottom;
    border-image: url("../images/footer-top-border.webp") 20 / 15px / 15px round;
    margin-top: 40px;
}

.footer .h6{
    text-transform: capitalize;
    font-weight: bolder;
    margin: 14px 0
}

.footer-col ul li{
    margin: 5px 0;
    padding: 5px 0;

}
.legal-link a,
.footer-col a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    display: inline-block;
}
.footer-col address{
    color: white;
    font-size: 13px;
}
.social-media{
    display: flex;
    gap: 10px;
}
.social-media a{
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bi-facebook{
    color: #3664A2;
}
.bi-twitter{
    color: #00ACED;
}
.bi-linkedin{
    color: #3664A2;
}
.bi-youtube{
    color: #FF0000;
}
.bi-instagram{
    color: #ff2e62;
}
.footer-bottom{
    background: #2C2C2C;
    color: var(--white);
}
.footer-address h6{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.footer-address .contact-support-address{
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
}
.footer-address .disclaimer{
    font-size: 10px;
    font-weight: 300;
}
/*End footer section*/

.hero-category:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/category-hero-bg.webp") no-repeat center bottom/cover;
    width: 100%;
    min-height: 100%;
    z-index: -1;
}
.category-header{
    width: 100%;
    overflow: auto;
}
.category-header .nav-pills{
    flex-wrap: nowrap;
}
.category-header::-webkit-scrollbar{
    display: none;
}
.filter-sort{
    border-radius: 100px;
    border: 1px solid #E2E2E2;
    background: var(--white);
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    max-width: 230px;
}
.form-check-input{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.form-check-label{
    font-size: 13px;
    cursor: pointer;
    color: rgba(54, 54, 54, 0.70);
}
.hero-form .nav-pills .nav-link.active .form-check-label{
    color: var(--primary-color);
}
input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    background: var(--primary-color) !important;
    outline: none;
    transition: background 0.3s;
}
input[type="range"]:hover{
    box-shadow: 4px 0 16px rgb(12 136 88 / 35%);
}

input[type="range"]::-webkit-slider-thumb {
    pointer-events: all; /* re-enable thumb interaction */
    position: relative;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.range-container input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}
.range-container input[type="range"]::-moz-range-track {
    background: var(--white);
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--white);
}
.range-container {
    position: relative;
    width: 100%;
}

.range-container input[type="range"] {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none; /* prevent default thumb interaction */
    -webkit-appearance: none;
    background: none;
}

.form-check-input:checked{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.clear-btn {
    padding: 6px 12px;
    background: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid var(--secondary-color);
    font-size: 12px;
}

.clear-btn.disabled {
    background: #ccc;
    pointer-events: none;
    cursor: not-allowed;
    display: none;
}

/*-- activity details style--*/
.kst-detail-body .row{
    --bs-gutter-x: 8px;
}
.kst-detail-body img{
    height: 100%;
}
.kst-detail-body aside{
    position: sticky;
    top: 84px;
}
.kst-detail-head{
    font-size: 12px;
}
.text-light-grey{
    color: #555555;
}
.kst-detail-footer h3{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.kst-detail-footer p{
    font-size: 13px;
}
.kst-detail-body-inner{
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.kst-detail-body-inner .gradient-nav{
    border-radius: 6px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.06);
}
.kst-detail-body-inner .gradient-nav .nav-item .nav-link{
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    border: 6px solid transparent;
    border-radius: 100px;
}
.kst-detail-body-inner .gradient-nav .nav-item .nav-link.active{
    border: 6px solid #F8F8F9;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    color: #FAFFFD;
}
.kst-detail-light-body{
    background: #F9F9F9;
}
.highlight-body ul{
    margin-bottom: 0;
    padding-left: 0;
}
.highlight-body ul li{
    list-style-type: none;
    display: flex;
    margin-bottom: 8px;
    color: #5E5E5E;
    font-size: 13px;
}
.highlight-body ul li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/highlight-arrow-point.png") no-repeat center/contain;
    margin-right: 6px;
}
.highlight-description{
    font-size: 12px;
}
.terms-description ul{
    margin-bottom: 0;
    padding-left: 10px;
}
.terms-description ul li{
    font-size: 12px;
    font-weight: 400;
    margin: 6px 0;
}

.kst-detail-body-light-inner,.kst-detail-body-quick{
    background: #FBFBFB;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
    border-radius: 0 0 8px 8px;
}
.day-calendar{
    border-radius: 100px;
    border: 1px solid var(--secondary-color);
    background: var(--white);
    color: #555;
    font-size: 12px;
    padding: 4px;
}
.kst-detail-body-inclusion,.kst-detail-body-exclusion{
    border-radius: 8px;
    border: 1px solid #E1E1E3;
    background: #FEFEFE;
}
.kst-detail-body-inclusion ul li, .kst-detail-body-exclusion ul li{
    color: #555555;
    font-weight: 300;
}
.kst-detail-body-inclusion h5{
    border-bottom: 2px solid #00D860;
}
.kst-detail-body-exclusion h5{
    border-bottom: 2px solid #EF072D;
}
.kst-detail-body-policy .nav-link.active{
    background: var(--white);
}
.kst-detail-body-review{
    background: linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
}

.review-body{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 4px 4px 22px 0 rgba(0, 0, 0, 0.08);
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.review-body:before{
    content: "";
    position: absolute;
    left: -10px;
    bottom: -60px;
    width: 98px;
    height: 98px;
    border-radius: 100%;
    opacity: 0.1;
    background: linear-gradient(151deg, rgba(235, 119, 36, 0.71) 30.39%, rgba(246, 159, 53, 0.71) 84.52%);
}
.review-body:after{
    content: "";
    position: absolute;
    right: -10px;
    top: -60px;
    width: 98px;
    height: 98px;
    border-radius: 100%;
    opacity: 0.1;
    background: linear-gradient(151deg, rgba(235, 119, 36, 0.71) 30.39%, rgba(246, 159, 53, 0.71) 84.52%);
}

.green--line{
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);
    width: 50%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.pink--line{
    background: #B8DB47;
    width: 40%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.yellow--line{
    background: #E5D473;
    width: 30%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.blue--line{
    background: #FF914D;
    width: 20%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.red--line{
    background: #F66;
    width: 10%;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}
.review-header-av-rating sup{
    top: -2.5em;
}
.review-body-info p,.text-dark-black{
    color: #303030;
}
.review-body-image img{
    width: 60px;
    height: 60px;
    border-radius: 6px;
}
.review-description{
    font-size: 13px;
    font-weight: 300;
}
.review-shared-post img{
    width: 30px;
    height: 30px;
    border-radius: 6px;
}
.review-shared-post-box{
    position: relative;
}
.review-shared-post-view{
    position: absolute;
    left: 8px;
    top: 4px;
    color: white;
    display: none;
}
.review-shared-post-box:hover .review-shared-post-view{
    display: block;
}
.limit-offers{
    border-radius: 12px;
    border: 1px solid #EF4123;
    background: var(--white);
}
.limit-offers-tag{
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    padding: 8px 16px;
}
.limit-offers-tag:before{
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    background: url("../images/polygon.svg") repeat-y top/auto;
    width: 15px;
    height: 100%;
}
.limit-offers-tag:after{
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    background: url("../images/polygon-right.svg") repeat-y top/auto;
    width: 15px;
    height: 100%;
}
.limit-offers-right{
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
}
.limit-offers-right span{
    transform: rotate(90deg);
}
.limit-offers-del{
    color: #959595;
}
.limit-offers-text {
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
}
.kst-detail-form{
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FEFEFE;
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.15);
}
.kst-detail-form .form-control{
    border: 1px solid #EAEAEA;
    background: #FEFEFE;
    font-size: 13px;
    padding: 12px;
}
.kst-detail-form .form-control::placeholder{
    color: #BCBCBC;
    font-weight: 300;
}
.kst-detail-form .select2-container .select2-selection--single{
    height: 45px;
    border: 1px solid #EAEAEA;
    background: #FEFEFE;
    font-weight: 300;
}
.kst-detail-form .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 45px;
    font-weight: 400;
}
.kst-detail-form .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 45px;
}
.kst-detail-form .btn-group .btn-outline-primary{
    border: 1px solid #EAEAEA;
    border-radius: 8px !important;
    color: #BCBCBC;
    font-weight: 300;
}
.kst-detail-form .btn-group .btn-check:checked+.btn{
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.kst-detail-body-quick .accordion-item{
    border-radius: 8px;
    margin-bottom: 20px;
}
.kst-detail-body-quick .accordion-button{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    border: none;
    color: var(--white);
    border-radius: 8px !important;
}
.kst-detail-body-quick .accordion-button:not(.collapsed){
    border-radius: 8px 8px 0 0 !important;
}
.kst-detail-body-quick .accordion-button::after{
    background: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20class%3D%22bi%20bi-chevron-down%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708%22%2F%3E%3C%2Fsvg%3E') no-repeat center/ cover;
}
.kst-detail-body-quick .accordion-body{
    background: #F9F9F9;
}
.kst-detail-body-quick .accordion-inner .accordion-button{
    background: #F2F2F2 !important;
    border-radius: 0 !important;
    border: 0 !important;
    color: #4A4A4A;
}
.kst-detail-body-quick .accordion-inner .accordion-button::after{
    background: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23000%22%20class%3D%22bi%20bi-chevron-down%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708%22%2F%3E%3C%2Fsvg%3E') no-repeat center/ cover;
}
.kst-detail-body-quick .accordion-inner .accordion-body{
    color: #4A4A4A;
}
.kst-detail-body-quick .accordion-inner .accordion-inner-body{
    margin: 12px 0;
    border-right: 1px solid #e1e1e1;
}
.kst-detail-body-quick .accordion-inner .accordion-inner-body .bi-star-fill{
    color: #7B431A;
}
.kst-detail-body-quick h4{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.kst-detail-body-rating span{
    color: #666D7E;
}
/*--- end activity pages style---*/
/*activity sprite image*/
.act-cat-sprite{display: inline-block;background: url('../images/activity-category-sprite.webp')}
.air-active {width: 42px;height: 42px;background-position: -10px -10px;}
.air-default {width: 42px;height: 42px;background-position: -10px -72px;}
.arts-workshops-default {width: 42px;height: 42px;background-position: -10px -134px;}
.arts-workshops-active {width: 42px;height: 42px;background-position: -10px -196px;}
.cultural-experiences-active {width: 42px;height: 42px;background-position: -10px -258px;}
.cultural-experiences-default {width: 42px;height: 42px;background-position: -10px -320px;}
.entertainment-active {width: 42px;height: 42px;background-position: -10px -382px;}
.entertainment-default {width: 42px;height: 42px;background-position: -10px -444px;}
.family-kids-default {width: 42px;height: 42px;background-position: -10px -506px;}
.desert-adventures-active {width: 42px;height: 42px;background-position: -10px -568px;}
.luxury-activities-default {width: 42px;height: 42px;background-position: -10px -630px;}
.mountain-adventures-active {width: 42px;height: 42px;background-position: -10px -692px;}
.mountain-adventures-default {width: 42px;height: 42px;background-position: -10px -754px;}
.nature-wildlife-default {width: 42px;height: 42px;background-position: -10px -816px;}
.others-active {width: 42px;height: 42px;background-position: -10px -878px;}
.shopping-activities-active {width: 42px;height: 42px;background-position: -10px -940px;}
.luxury-activities-active {width: 42px;height: 42px;background-position: -10px -1002px;}
.others-default {width: 42px;height: 42px;background-position: -10px -1064px;}
.shopping-activities-default {width: 42px;height: 42px;background-position: -10px -1126px;}
.desert-adventures-default {width: 42px;height: 42px;background-position: -10px -1188px;}
.sightseeing-default {width: 42px;height: 42px;background-position: -10px -1250px;}
.sports-active {width: 42px;height: 42px;background-position: -10px -1312px;}
.water-experiences-active {width: 42px;height: 42px;background-position: -10px -1374px;}
.water-experiences-default {width: 42px;height: 42px;background-position: -10px -1436px;}
.nature-wildlife-active {width: 42px;height: 42px;background-position: -10px -1498px;}
.wellness-activities-active {width: 42px;height: 42px;background-position: -10px -1560px;}
.wellness-activities-deault {width: 42px;height: 42px;background-position: -10px -1622px;}
.family-kids-active {width: 42px;height: 42px;background-position: -10px -1684px;}
.sports-default {width: 42px;height: 42px;background-position: -10px -1746px;}
.sightseeing-active {width: 42px;height: 42px;background-position: -10px -1808px;}
/*activity sprite image*/
/*-- package pages style ---*/
.main-package-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-package-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/*---package card style--*/
.package-card{
    border-radius: 12px 12px 0 0;
}

.package-card-header .carousel-item{
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}
.package-card-header .carousel-item:before{
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgb(0, 0, 0, 0.30) 12%, rgb(0 0 0 / 12%) 34%);
    height: 250px;
    width: 100%;
}
.pack-activity{
    color: #686868;
    font-size: 13px;
    font-weight: 500;
}
.carousel-indicators [data-bs-target]{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #D9D9D9;
}

.carousel-indicators .active{
    background-color: #0C8858;
}

.package-card-header p{
    background: #000000c7;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    color: var(--white);
    display: inline-flex;
    padding: 2px 12px;
    position: absolute;
    top: 8px;
    right: 5px;
}
.pack-whatsapp a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: absolute;
    border-radius: 100%;
    bottom: 10px;
    right: 6px;
    border: 2px solid var(--primary-color);
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.59);
}
.pack-whatsapp i{
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    padding-left: 3px;
    font-size: 20px;
}
.pack-location span{
    font-size: 12px;
}
.package-card-footer{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    border-radius: 0 0 12px 12px;
    position: relative;
    overflow: hidden;
}
.btn-tabs{
    cursor: pointer;
}
.package-card-footer:before{
    content: "";
    position: absolute;
    left: -14px;
    bottom: -40px;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #004140;
    opacity: 0.6;
}
.package-card-footer:after{
    content: "";
    position: absolute;
    left: -30px;
    bottom: -10px;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #004140;
    opacity: 0.6;
}
.pack-nav-tabs{
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}
.pack-nav-tabs-h{
    height: 200px !important;
}
.pack-nav-tabs .nav-link{
    color: #616161 !important;
}
.pack-nav-tabs .nav-link.active{
    color: var(--primary-color) !important;
    background: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
    border-radius: 0;
}
.package-nav-tabs{
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}
.package-nav-tabs-h{
    height: 160px !important;
}
.package-nav-tabs .nav-link{
    color: #A4A4A4 !important;
    border-bottom: 2px solid transparent !important;
}
.package-nav-tabs .nav-link.active{
    color: var(--primary-color) !important;
    background: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
    border-radius: 0;
}
.package-nav-tabs .tab-content ul{
    padding-left: 0;
    margin-bottom: 0;
}
.package-nav-tabs .tab-content ul li{
    list-style-type: none;
    display: flex;
    font-size: 12px;
}
.package-nav-tabs .tab-content ul li::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/highlight-arrow-point-green.svg") no-repeat center/contain;
    margin-right: 6px;
}
.package-card-rate .pack-rate span{
    font-size: 13px;
}
.text-grey-del{
    color: #a6a6a6;
}
.text-red-offer{
    border-radius: 100px;
    border: 0.4px solid  #EF4123;
    background: rgba(255, 0, 0, 0.12);
    color: #EE3F25;
    font-size: 10px;
}
.limit-offers-icon{
    width: 14px !important;
    height: 14px;
    margin-right: 4px;
}
.package-process-card-head.active{
    color: var(--primary-color) !important;
}
.package-process-card-head{
    cursor: pointer;
}
.package-process-card .icon-active,.package-process-card .active .icon-default{
    display: none !important;
}
.package-process-card .active .icon-active{
    display: inline-block !important;
}
.package-process-card{
    transition: 0.3s ease;
}
.package-process-card:has(.package-process-card-head.active) {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
}
.packages-process-card-body1,
.packages-process-card-body2,
.packages-process-card-body3,
.packages-process-card-body4 {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}
.package-process-video{
    position: relative;
}
.package-process-video:before{
    content: "";
    position: absolute;
    left: -126px;
    bottom: -139px;
    background: url(../images/man-standing-orange-wall.webp) no-repeat center / auto;
    width: 267px;
    height: 424px;
    z-index: 1;
}
.package-process-video:after{
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    background: url("../images/banana-circle.webp") no-repeat center/ auto;
    width: 183px;
    height: 176px;
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    .package-process-video:before,.package-process-video:after{
        display: none;
    }
}
.trending .owl-carousel{
    overflow: hidden;
}
.trending .owl-carousel .owl-stage-outer{
    overflow: visible;
}

/*-- package details style --*/
.pack-flight{
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.pack-flight-body-car span{
    font-size: 12px;
    display: inline-flex;
    flex-shrink: 0;
    padding: 0 4px;
    margin: 2px 0;
}
.pack-flight-body .hotel-info{
    font-size: 12px;
}

.border-secondary-color {
    border: 1px solid #EB7724;
}
.kst-text-second {
    color: #EB7724;
}
.btn-change{
    border: 1px solid var(--primary-color) !important;
    background: transparent;
    font-size: 14px;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
    padding: 8px 30px;
}
.kst-detail-light-body .accordion-button{
    font-size: 14px;
    color: #616161;
    font-weight: 400;
}
.kst-detail-light-body .nav-pills{
    background: #F4FFFF;
    padding: 20px;
}
.kst-detail-light-body .nav-pills .nav-link{
    border: 1px solid transparent;
    background: transparent;
    border-radius: 20px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}
.kst-detail-light-body .nav-pills .nav-link.active{
    border: 1px solid var(--primary-color);
    background: white;
}
.kst-detail-light-body .nav-pills .nav-link.active span{
    background: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.itinerary-wrapper .accordion-body p {
    font-size: 13px;
    font-weight: 300;
}
.itinerary-wrapper .pack-flight-head{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(267deg, #218848 0.52%, #48c68d 102.15%);
}
.itinerary-wrapper .accordion-button{
    border: 1px solid #EB7724;
}
.itinerary-wrapper .kst-detail-light-body {
    background: #F9F9F9;
}
.kst-new-primary {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(267deg, #218887 0.52%, #48C6C4 102.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Key Features */
.key-features {
    margin-top: 40px;
}

/* Feature Box */
.feature-box {
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-box i {
    font-size: 24px;
}

/* Hover Effect */
.feature-box:hover {
    background: rgb(0 0 0 / 16%);
    transform: translateY(-5px);
}
/*--- end package card style ---*/

/*--- visa pages style ---*/
.kst-visa-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/visa-family-bg.png") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.visa-card{
    border-radius: 8px;
    border: 1px solid #F2F2F2;
    background: var(--white);
}
.visa-card-header{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    min-height: 60px;
}
.visa-card-header h2{
    color: var(--white);
}
.visa-card .whatsapp-link{
    position: relative;
    width: 55px;
    top: -8px;
}
.visa-card .whatsapp-link:before{
    content: "";
    position: absolute;
    top: -11px;
    right: 0;
    background: url(../images/visa-card-whatsapp-bg.svg) no-repeat center / auto;
    width: 80px;
    height: 54px;
}
.visa-card .whatsapp-link a{
    border-radius: 100%;
    background: linear-gradient(180deg, #4AC14B 0%, #00A744 100%);
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.22);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0;
    top: 4px;
}
.visa-card-type{
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-card-info .visa-card-key{
    color: #353535;
    font-weight: 500;
}
.visa-card-info .visa-card-value{
    color: #5E5E5E;
}
.visa-card-rate{
    color: #555555;
}
.visa-card-footer{
    position: relative;
}
.visa-card-footer .proceed{
    background: url(../images/visa-card-footer-bg.svg) no-repeat top / auto;
    width: 100%;
    height: 45px;
    text-align: center;
}
.visa-card-footer .btn-primary{
    font-size: 13px;
    padding: 10px 32px !important;
    color: var(--white) !important;
    border-radius: 14px;
}
.eligible-wrapper{
    border-radius: 8px;
    border: 1px solid #DDD;
    background: var(--white);
    box-shadow: -4px 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.eligible-wrapper-head{
    background-image: url(../images/world-map.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    width: 74%;
}
.eligible-wrapper-img{
    position: absolute;
    right: 0;
    bottom: 0;
}
.eligible-wrapper-img:after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 419px;
    opacity: 0.2;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    filter: blur(100px);
    width: 300px;
    height: 300px;
}
.eligible-wrapper-img:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border-left: 15rem solid transparent;
    border-top: 15rem solid transparent;
    border-bottom: 15rem solid var(--primary-color);
}
.eligible-wrapper-img img{
    position: relative;
    width: 270px;
}

.eligible-countries {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.eligible-countries .home-country{
    border: 1px solid transparent;
    transition: 0.4s ease;
    color: #353535;
}

.eligible-countries .home-country:hover{
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.12);
}
.country-list ul li {
    list-style: none;
    display: inline-block;
    width: 20%;
}
@media screen and (max-width: 767px) {
    .eligible-wrapper-head{
        width: 100%;
    }
    .country-list ul li {
        list-style: none;
        display: inline-block;
        width: 50%;
    }
    .home-country svg {
        width: 24px;
        height: 24px;
    }
}
@media screen and (min-width: 767px) and (max-width: 992px) {
    .country-list ul li {
        list-style: none;
        display: inline-block;
        width: 25%;
    }
    .eligible-wrapper-head{
        width: 100%;
    }
}
.visa-whyus-body:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url("../images/whyus-visa-bg.webp") no-repeat right bottom/auto;
    width: 563px;
    height: 303px;
    opacity: 0.1;
}

/* testimonial Section */
.testimonial-section {
    background: #f8f9fb;
}

/* Card */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* User Image */
.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* Optional Quote Icon */
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(0,0,0,0.05);
    font-weight: bold;
}

/*about country page start*/
.visa-type-country_body{
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 4px 0 var(--secondary-color);
}
.about-country-content .country-content {
    overflow: hidden;
    transition: height 3s ease;
    height: 120px;
}

.about-country-content .expand-btn {
    cursor: pointer;
    color: red !important;
    font-size: 16px !important;
}
/*about country page end*/
/*--visa country page--*/
.visa-guide-card--secondary{
    border: 1px solid var(--secondary-color);
    background: rgba(184, 87, 51, 0.4);
}
.visa-guide-body:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url("../images/passport-guild-bg.webp") no-repeat center bottom/cover;
    width: 563px;
    height: 303px;
    opacity: 0.6;
}
/*--- visa form style---*/
.visa-af-body .form-label{
    font-size: 12px;
}
.visa-af-body input{
    font-size: 14px;
    color: #3a3a3a;
}
.visa-af-body .select2-container .select2-selection--single,
.visa-af-body .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 55px !important;
    border-color: #e5e8eb;
}
.visa-af-body .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 34px;
    padding-top: 20px;
}
.form-floating > .form-control::placeholder {
    color: revert !important;
    font-weight: normal;
    font-size: 14px;
}
.form-floating > .form-control:not(:focus)::placeholder {
    color: transparent !important;
}
.document-box{
    border: 2px dashed #e1e1e1;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    position: relative;
    text-align: center;
}
.document-box .document-box_header{
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: -14px;
    background-color: #fcfffd;
    padding: 4px 10px;
    left: 4px;
    text-transform: uppercase;
    color: #787878;
}
.document-box img{
    width: 80px;
    height: 80px;
    margin: 6px auto;
}
.document-box .btn-doc-upload{
    display: block;
    margin: 5px auto;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #4DB65D;
    background: var(--white);
    color: #4DB65D;
    padding: 6px 0;
    transition: box-shadow 0.5s ease-in-out;
}
.document-box .btn-doc-upload:hover{
    background-color: rgb(76 181 92 / 4%);
    box-shadow: 2px 4px 8px #c4c8cb;
}
.passport_upload,.photo_upload,.document_upload{
    display: none;
}
.passport_btn,.photo_btn,.document_btn{
    cursor: pointer;
}
.doc-hint-form{
    font-size: 12px;
}
.doc-hint-form small{
    color:  red;

}

/*transfer progress bar*/
.tprogress-bar{
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg , #5DB58E 60% , #AC735F 40%);
}
.progress-icon{
    width: 60px;
    height: 60px;
    border: 2px solid #5DB58E;
    top: 50%;
    transform: translate(-50% ,-50%);
}
.progress-icon span{position: absolute;top: 43%;left: 44%;transform: translate(-50%, -50%);}
.progress-icon1{left: 5%}
.progress-icon2{left: 50%}
.progress-icon3{left: 95%;border-color:#AC735F }
.progress-icon:before{position: relative;content: "Choose Car";top: 10px;right: -59px;font-size: 10px;width: 56px;display: block; color: #616161;}
.progress-icon2:before{content: "Pay"}
.progress-icon3:before{content: "Get Car"}
.vsprogress-bar .progress-icon2{border-color: #AC735F}
.vsprogress-bar {background: linear-gradient(90deg , #5DB58E 45% , #AC735F 40%)}
.vsprogress-bar .progress-icon:before{position: relative;content: "Choose Service";top: 10px;right: -59px;font-size: 10px;width: 80px;display: block; color: #616161;}
.vsprogress-bar .progress-icon2:before{content: "Personal Details"}
.vsprogress-bar .progress-icon3:before{content: "Payment";width: 48px;}

.vsprogress-bar-checkout .progress-icon2{border-color: #5DB58E}
.vsprogress-bar-checkout {background: linear-gradient(90deg , #5DB58E 60% , #AC735F 40%)}
/*transfer progress bar*/

/*-- visa checkout page--*/
.checkout-application__pay input[type="checkbox"] ,
.partial-payable-amount input[type="checkbox"] {
    accent-color: var(--primary-color);
}
.checkout-body-addon-image{
    height: 140px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.addon-details{
    overflow: hidden;
    height: 0;
}
.visa-checkout-body span,.visa-checkout-body p{
    font-size: 13px;
}
.w-40{
    width: 40% !important;
}
.w-60{
    width: 60% !important;
}

.checkout-body-description {
    min-height: 84px;
}
.checkout-body-description p{
    margin-bottom: 0;
}
.text-over {
    height: 63px;
    overflow-y: scroll;
    display: none;
}
.sidebar::-webkit-scrollbar,
.text-over::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.sidebar::-webkit-scrollbar-track,
.text-over::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e3e5ff;
    border: 1px solid #8abfcd;
    box-shadow: inset 0 0 6px rgba(76, 154, 171, 0.3);
}
.sidebar::-webkit-scrollbar-track,
.text-over::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #2d8ea1;
}

/*--- end visas pages style---*/
/*--attraction page style--*/
.main-attraction-hero:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-attraction-banner.webp") no-repeat center top/auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.kst-attr-card{
    margin: 12px 0;
}
.kst-attr-card-header p{
    border-radius: 100px;
    background: var(--white);
    display: inline-flex;
    padding: 3px 12px;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}
.kst-attr-card-image img{
    border-radius: 8px 8px 0 0;
    width: 100%;
}
.kst-attr-card-image:before{
    content: "";
    position: absolute;
    left: -21px;
    bottom: -14px;
    width: 28px;
    height: 28px;
    background: rgb(244 244 244);
    border-radius: 100%;
    z-index: 1;
}
.kst-attr-card-image:after{
    content: "";
    position: absolute;
    right: -21px;
    bottom: -14px;
    width: 28px;
    height: 28px;
    background: rgb(244 244 244);
    border-radius: 100%;
    z-index: 1;
}
.kst-attr-card-body{
    padding: 16px;
    border-radius: 0 0 8px 8px;
    border-right: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
    border-left: 1px solid #EDEDED;
    background: var(--white);
    position: relative;
}
.kst-attr-card-body:before{
    content: "";
    position: absolute;
    top: -2px;
    border-top: 2px dashed #e3e3e3;
    width: 100%;
    left: 0;
}
.kst-attr-timing{
    color: #525252;
    border-radius: 100px;
    border: 0.5px solid #BDBDBD;
    background: rgba(0, 0, 0, 0.00);
    font-size: 11px;
    font-weight: 300;
    margin: 10px 0;
}
.kst-attr-card-body .price{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kst-attr-card-body .rate-slace-text{
    font-weight: 300;
}
.kst-attr-card-body .rate-save-text{
    border-radius: 100px;
    font-size: 10px;
    border: 0.4px solid #FF0606;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kst-attr-icons .instant,
.kst-attr-icons .transfer,
.kst-attr-icons .meals{
    border-right: 1px solid #DEDEDE;
    width: 19px !important;
}
.kst-attr-card-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.kst-attr-card-footer .btn-white{
    border-radius: 8px;
    border: 1px solid #0C8858 !important;
    color: var(--primary-color) !important;
    transition: box-shadow 0.5s ease-in-out;
}
.kst-attr-card-footer .btn-white:hover{
    box-shadow: 4px 4px 16px #e1e1e1;
}
.attr-checkout-form .select2-container--default .select2-selection--single{
    border: 1px solid #dee2e6;
    height: 36px;
}
.attr-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    font-weight: 300;
}
.attr-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}
.attr-checkout-form input::placeholder{
    font-size: 14px;
    font-weight: 300;
}
.checkout-body-addon{
    padding: 10px;
}
.checkout-body-addon h3{
    font-size: 14px;
    font-weight: 600;
}
.checkout-body-addon p{
    font-size: 12px;
    font-weight: 300;
}
.checkout-body-addon-details .btn-danger{
    font-size: 13px;
    font-weight: 300;
}
.checkout-body-addon-details .btn-primary{
    font-size: 13px;
    font-weight: 300;
    padding: 6px 20px;
}
/*--attraction details--*/
.kst-detail-ticket-header{
    border-bottom: 1px solid var(--secondary-color);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
}
.kst-detail-ticket-card{
    border-radius: 6px;
    border: 1px solid #0C8858;
    background: #F6F6F6;
}
.kst-detail-ticket-card:before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 24px;
    height: 12px;
    background: var(--white);
    border-radius: 0 0 100px 100px;
    margin: 0 auto;
}
.kst-detail-ticket-card:after{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 24px;
    height: 12px;
    background: var(--white);
    border-radius: 100px 100px 0 0;
    margin: 0 auto;
}
.trending-icon{
    width: 103px !important;
    height: 30px !important;

}
.kst-detail-ticket-card .select2-container--default .select2-selection--single{
    border: 1px solid #e6e6e6;
    height: 40px;
}
.kst-detail-ticket-card .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 40px;
}
.kst-detail-ticket-card .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 40px;
}
.premium-card .kst-attr-card-body{
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    color: var(--white);
}
.premium-card .kst-attr-timing{
    color: var(--white);
}
.premium-card .rate-save-text{
    background: linear-gradient(90deg, #FFAEA1 0%, #FFAEA1 51.5%, #FFAEA1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 0.4px solid #FFAEA1;
}
.premium-card .price{
    background: linear-gradient(258deg, #83FFBB 0%, #92D1FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.premium-card .btn-white{
    border-radius: 8px;
    border: 1px solid #83FFBB !important;
    background: transparent !important;
    color: #83FFBB !important;
}
.premium-card .kst-attr-card-header .premium-tag{
    position: absolute;
    top: 24px;
    right: -30px;
    display: block;
    background: linear-gradient(90deg, #F5C72E 0%, #DEB100 27.96%, #D89E01 65.81%, #FFDA44 100%);
    color: #353535;
    z-index: 1;
    width: 140px;
    text-align: center;
    padding: 4px 0;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}
/*--end attraction Page style--*/


/*about us page css start*/
.about-hero {
    background: var(--primary-color);
    position: relative;
    z-index: 1;
}

.about-hero:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: url("../images/footer-bg.svg") no-repeat bottom right/contain, url("../images/about-hero-top-bg.webp") no-repeat top left/120px;
    z-index: -1;
}
.about-hero h1{
    font-size: 18px;
    font-weight: 700;
}
.about-hero h2{
    font-size: 36px;
    font-weight: 700;
}
.about-mission h2,.about-vision h2{
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}
.about-mission p, .about-vision p{
    color: #616161;
}

.about-service-card {
    border: 1px solid #E5E5E5;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.10);
    background: #fff url("../images/about-service-card-bg.webp") no-repeat top right/100px;
}
.about-qualities p{
    color: #616161;
}


/*about us page css end*/
/*faq page css start*/
.faq-hero img {
    height: auto;
    max-width: 400px;
}

.faq-section .category-tabs {
    border-bottom: 2px solid var(--primary-color);
    width: fit-content;
}

.faq-section .category-tabs .nav-pills .nav-link {
    background: transparent;
    border-radius: 0;
    color: #8a8a8a;
    font-weight: 600;
}

.faq-section .category-tabs .nav-pills .nav-link.active {
    border-bottom: 2px solid #e8e8e8;
    color: var(--primary-color);
}

.faq-container .accordion-button::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>') no-repeat center/ cover;
}

.faq-container .accordion-button:not(.collapsed)::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x" viewBox="0 0 16 16"><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"/></svg>') no-repeat center/ cover;
}

.faq-container .accordion-item {
    border: none;
    border-radius: 0;
    background: transparent;
}

.faq-container .accordion-item .accordion-button {
    border-bottom: 2px solid #e8e8e8;
}


.faq-container .accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top: 2px solid #e8e8e8;
}

.faq-container .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-color: #e8e8e8;
}

.faq-container .accordion-body {
    border-bottom: 2px solid #e8e8e8;
}

.faq-container .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

/*faq page css end*/
/*contact form page css start*/
.contact-hero--bg{
    background: url("../images/contact-hero-bg.webp") no-repeat center/cover;
    width: 100%;
    min-height: 230px;
}
.contact-hero{
    background: #fdfdfd;
}

.contact-form{
    border-radius: 22px;
    background: #474747;
    padding: 24px;
    position: relative;
}
.contact-form .form-label{
    color: var(--white);
}
.contact-form .text-error-message{
    color: #ff9797 !important;
    font-size: 13px;
    font-weight: 300;
}
.contact-form h2{
    background: linear-gradient(278deg, #2cc58a 0%, #7FD8B1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.contact-form:before{
    content: "";
    position: absolute;
    right: 0;
    top: -14px;
    background: url("../images/contact-whatsapp-bg.webp") no-repeat top center/auto;
    width: 420px;
    height: 83px;
}
.contact-form .form-input input {
    padding: 10px;
    background: transparent;
    color: white;
    border-color: #717171;
    margin-bottom: 8px;
    font-weight: 300;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}
.contact-form .form-input input::placeholder,
.contact-form .form-input .select2-container .select2-selection--single::placeholder,
.contact-form textarea::placeholder{
    font-weight: 100;
}

.contact-form .form-input .select2-container .select2-selection--single {
    height: 45px;
    padding: 8px 0;
    background: transparent;
    color: white;
    border-color: #717171;
    margin-bottom: 8px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.contact-form .form-input .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
}

.contact-form .form-input .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
}

.contact-form .form-input .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: white transparent;
}

.contact-form textarea {
    height: 100px !important;
    background: transparent;
    color: white;
    font-weight: 300;
    border-color: #717171;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.contact-form textarea::placeholder,
.contact-form .form-input input::placeholder {
    color: #dedede;
}

.contact-form .form-control:focus {
    background: transparent;
    color: white;
    box-shadow: none;
}

.contact-form .contact-btn {
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%) !important;
    border-radius: 8px;
    color: var(--white) !important;
    border: 1px solid var(--primary-color);
    font-weight: 400;
    transition: box-shadow 0.4s ease;
    padding: 12px 40px;
    margin:20px auto;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.12);
}
.contact-form .contact-btn:hover,
.contact-form .contact-btn:focus{
    background: linear-gradient(98deg, #086340 0%, #0d8751 100%) !important;
    box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.50);
}
.contact-location iframe {
    border-radius: 4px;
    border: 2px solid #D6D6D6;
    box-shadow: 2px 4px 18px 0 rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 250px;
    margin: 24px 0 0 0;
}
.whatsapp-support{
    border-radius: 100px;
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);;
    box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.25);
    padding: 8px 24px 8px 8px;
    position: absolute;
    top: 4px;
    right: 112px;
}
.whatsapp-icons{
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}
.whatsapp-icons i{
    background: linear-gradient(180deg, #4AC14B 0%, #06853A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 26px;
    height: 26px;
    font-size: 14px;
}

.contact-icon {
    background: var(--white);
    height: 45px;
    width: 45px;
    box-shadow: 4px 4px 22px 0 rgba(0, 0, 0, 0.08);
}
.contact-icon .bi::before, [class*=" bi-"]::before{
    font-weight: 600 !important;
    letter-spacing: 1px;

}
.contact-icon i{
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-light-grey{
    color: #6c6b6b;
    font-weight: 300;
}
.contact-info{
    color: #494949;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
    .contact-form:before{
        content: none;
    }
    .whatsapp-support{
        position: relative;
        right: 0;
        top: 0;
        margin-bottom: 20px;
    }

}


/*contact form page css end*/

/*refund , privacy , term page css start*/
.privacy-hero:before {
    height: 500px;
    width: 500px;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: url("../images/privacy-policy.webp") no-repeat center/contain;
}

.terms-hero:before {
    background: url("../images/terms-condition.webp") no-repeat center/contain;
}

.refund-hero:before {
    background: url("../images/refund-policy.webp") no-repeat center/contain;
}

.dynamic-content h1,
.dynamic-content h2,
.dynamic-content h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 12px 0;
    text-transform: capitalize;
    color: #353535;
}
.dynamic-content h3{
    font-size: 1.2rem;
    margin: 10px 0;
}
.dynamic-content h4,
.dynamic-content h5,
.dynamic-content h6 {
    font-size: 1rem;
    font-weight: 400;
    margin: 10px 0;
    color: #353535;
}

.dynamic-content img {
    margin: 16px 0;
    width: 100%;
    height: auto;
}

.dynamic-content p,
.dynamic-content ul li,
.dynamic-content ol li {
    margin: 6px 0;
    color: #353535;
    font-weight: 300;
}

.dynamic-content a {
    color: var(--primary-color);
}

.btn-block {
    background: var(--primary-color) !important;
    color: white !important;
    border: 0;
    font-size: 16px;
    width: auto !important;
    padding: 12px 50px;
    margin: 10px auto !important;
    border-radius: 30px !important;
}

/*refund , privacy , term page css end*/
/*partner page css start*/
.partner-hero {
    background: url("../images/partner-hero-bg.webp") no-repeat left top/auto;
    z-index: 1;
}

.partner-hero:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    bottom: 0;
    background: url("../images/partner-hero-img.webp") no-repeat bottom right/contain;
    z-index: -1;
}

@media (max-width: 991.5px) {
    .partner-hero:before {
        display: none;
    }
}

.partner-agency-card {
    border-radius: 40px;
    border: 1px solid var(--primary-color);
    background: #FFF;
    box-shadow: 22px 22px 80px 0 rgba(0, 0, 0, 0.02), 12px 12px 45px 0 rgba(0, 0, 0, 0.04);
}

.partner-agency-card:hover,.partner-agency-card:hover p {
    background: var(--primary-color);
    color: white
}

.partner-agency-card .icon-not-active,
.partner-agency-card:hover .icon-active {
    display: block !important;
}

.partner-agency-card:hover .icon-not-active,
.partner-agency-card .icon-active {
    display: none !important;
}

.partner-become:before {
    position: absolute;
    content: "";
    top: 32%;
    left: 50%;
    height: 4px;
    width: 86%;
    border: 1px solid var(--primary-color);
    background: linear-gradient(258deg, #83FFBB 0%, #92D1FF 100%);
    z-index: -1;
    transform: translateX(-50%);
}

.partner-become-number {
    height: 80px;
    width: 80px;
    border: 3px solid var(--primary-color);
}

.partner-become-card {
    border-radius: 22px;
    border: 1px solid var(--primary-color);
    background: #FFF;
    max-width: 280px;
    min-height: 290px;
}

/*partner page css end*/

/*payment pages css start*/
.payment-receipt {
    background: linear-gradient(106deg, #FFF 0.67%, #FFF8ED 44.29%, #FFF 98.84%);
    --mask: radial-gradient(22px at right, #0000 calc(100% - 1px), #000) 50%/100% 40.7px;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.border-dashed {
    border-right: 2px dashed var(--bs-border-color) !important;
    position: relative;
}

.border-dashed:before {
    content: "";
    position: absolute;
    height: 30px;
    width: 60px;
    background: rgba(244, 244, 244);
    top: -28px;
    right: -30px;
    border-radius: 0 0 50px 50px;

}

.border-dashed:after {
    content: "";
    position: absolute;
    height: 30px;
    width: 60px;
    background: rgba(244, 244, 244);
    bottom: -28px;
    right: -30px;
    border-radius: 50px 50px 0 0;
}

@media (max-width: 767.5px) {
    .border-dashed {
        border-right: 0;
        border-bottom: 2px dashed var(--bs-border-color);
    }

    .border-dashed:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 60px;
        background: rgba(244, 244, 244);
        top: auto;
        right: auto;
        left: 0;
        bottom: -30px;
        border-radius: 0 50px 50px 0;
    }

    .border-dashed:before {
        content: "";
        position: absolute;
        width: 30px;
        height: 60px;
        background: rgba(244, 244, 244);
        bottom: -24px;
        right: 0;
        top: auto;
        border-radius: 50px 0 0 50px;
    }

    .payment-receipt {
        --mask: radial-gradient(22px at bottom, #0000 calc(100% - 1px), #000) 50%/40.7px 100%;
        -webkit-mask: var(--mask);
        mask: var(--mask);
    }
}

/*payment pages css end*/

/*document upload page css start*/
.applicant-details {
    box-shadow: 1px 1px 16px 0 rgba(0, 0, 0, 0.06);
}

.document-upload-note {
    background:  linear-gradient(90deg, #F1FCF6 0%, rgba(255, 255, 255, 0.50) 26.2%, rgba(241, 255, 247, 0.80) 100%);;
}

.application-track-details{
    border: 1px solid  #AC735F50;
}
/*document upload page css end*/
/*--article & details page style--*/
.article-card,.latest-article-card,.hero-article-de-card{
    border: 1px solid #f1f1f1;
    box-shadow: rgba(50, 50, 93, 0.05) 0 6px 12px -2px, rgba(0, 0, 0, 0.3) 0 3px 7px -3px;
    border-radius: 8px;
}

.article-card:hover,.latest-article-card:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0 6px 12px -2px, rgba(0, 0, 0, 0.3) 0 3px 7px -3px;
}
.article-card .card-heading{
    min-height: 40px;
}
.article-card .card-image{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.hero-article-bg:before{
    content: "";
    position: absolute;
    top: 0;
    background: url("../images/hero-blog-bg.webp") no-repeat top/cover;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.article-writer{
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
}
.hero-article-de-card{
    height: 400px;
}
.hero-article-de-card:before{
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(186deg, rgba(0, 0, 0, 0.00) 49.62%, rgba(0, 0, 0, 0.80) 95.07%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.hero-article-de-card p{
    font-size: 12px;
    font-weight: 300;
}
.latest-article-card-image{
    height: 200px;
    overflow: hidden;
}
.article-comment-form{
    border-top: 1px solid #ece8e8;
}
.article-comment-form input, .article-comment-form textarea{
    border-radius: 8px;
    border: 1px solid #9D9D9D;
    font-size: 13px;
    padding: 12px;
}
.article-comment-form input::placeholder,.article-comment-form textarea::placeholder{
    font-size: 13px;
    font-weight: 300;
    color: #616161;
}
@media screen and (max-width: 768px) {
    .hero-article-de-card img{
        height: 350px;
    }
}

/*--track status page style--*/
.track-hero{
    background: url("../images/track-status.webp") no-repeat top right/auto;
}

.ts-form{
    margin: 30px 0px;
}
.ts-form input{
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid rgba(225, 225, 227, 0.50);
    background: #FCFCFC;
    font-size: 13px;
    font-weight: 400;
}
.ts-form .btn-search{
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0px;
    outline: none;
}

.ts-note{
    border-radius: 15px;
    border: 1px solid #E7E7E7;
    background: #FFEDEF;
    padding: 16px;
    margin: 30px 0px;
}
.ts-note ul li{
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 8px 0px;
}

.ts-card{
    display: inline-flex;
    border: 1px solid #e4e4e4;
    padding: 6px 20px;
    border-radius: 8px;
    max-width: 360px;
    width: 100%;
}
.ts-card p{
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0px;
}
.ts-card span{
    font-size: 13px;
    font-weight: 400;
}
.ts-body-visa,.ts-body-addon{
    border-bottom: 2px solid #e4e4e4;
    margin: 10px 0px;
    box-shadow: 0px 2px 0px 1px #e4e4e42e;
    padding: 10px;
    border-radius: 10px;
    background: var(--white);
}
.ts-body-visa h2,.ts-body-addon h2{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.ts-body-box_rlt-count{
    width: 100px;
}
.ts-body-box_rlt-count p{
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0px;
}

.ts-body-box{
    display: flex;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: linear-gradient(45deg, #fff2e19e, #f8fafc);
}
.ts-body-box_left{
    width: 20%;
}
.btn-extension{
    background-color: #dc3545;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0px;
    border-radius: 4px;
}
.ts-body-box_left .ts-body-box_left_profile img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 10px;
}
.ts-body-box_left_profile p{
    font-size: 14px;
    font-weight: 500;
    margin: 4px 0px;
}
.ts-body-box_left_profile span{
    font-size: 13px;
    font-weight: 400;
    margin: 4px 0px;
}
.ts-body-box_right{
    width: 80%;
}

.ts-body-box_rlt_top {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
}

.ts-body-box_rlt p{
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0px;
}
.ts-body-box_rlt span{
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
}
.ts-header h2{
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0px;
}
.ts-body-addon .ts-body-box_rlt_top{
    margin-bottom: 10px ;
}
.ts-body-box_left_profile{
    display: flex;
    align-items: center;
    justify-content: center;
}
.ts-body-box_rlt .Active, .ts-body-box_rlt .Completed{
    padding: 4px 10px 4px 10px;
    color: var(--white);
    background: rgba(72, 187, 120, 1);
    border-radius: 20px;
}

.ts-body-box_rlt .Block,.ts-card-right .UnPaid{
    padding: 4px 10px 4px 10px;
    color: var(--white);
    background: rgba(229, 62, 62, 1);
    border-radius: 20px;
}

.ts-body-box_rlt .Pending, .ts-body-box_rlt .Draft{
    padding: 4px 10px 4px 10px;
    color: var(--white);
    background: rgba(243, 156, 18, 1);
    border-radius: 20px;
}
.ts-body-box_rlt .Partial-Submitted{
    padding: 4px 10px 4px 10px;
    background: rgba(243, 18, 179, 1);
    color: var(--white);
    border-radius: 20px;
}
.ts-body-box_rlt .Submitted,.ts-card-right .Partial-Paid{
    padding: 4px 10px 4px 10px;
    background: rgba(22, 71, 177, 1);
    color: var(--white);
    border-radius: 20px;
}
.ts-body-box_rlt .Verified, .ts-card-right .Paid{
    padding: 4px 10px 4px 10px;
    background: rgba(72, 187, 120, 1);
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Under-Review{
    background-color:#5A4FCF;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Under-Embassy{
    background-color:#B284BE;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Trash{
    background-color:#1B1B1B;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Cancelled{
    background-color:#1CA9C9;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .On-Hold{
    background-color:#E3F988;
    padding: 4px 10px 4px 10px;
    color: var(--black);
    border-radius: 20px;
}
.ts-status-visa .Imm-Sent{
    background-color:#EEDC82;
    padding: 4px 10px 4px 10px;
    color: var(--black);
    border-radius: 20px;
}
.ts-status-visa .Visit-Required{
    background-color:#FF4F00;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Black-Listed{
    background-color:#A0785A;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Rejected{
    background-color:#4A412A;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Approved{
    background-color:#03C03C;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Ready-To-Dispatch{
    background-color:#00563B;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Dispatched{
    background-color:#568203;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Over-Stay{
    background-color:#B7410E;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Absconding{
    background-color:#905D5D;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Exit{
    background-color:#C40234;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .Blocked{
    background-color:#ED1B24;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px;
}
.ts-status-visa .In-Process{
    background-color:#90EE90;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}
.ts-status-visa .Booked{
    background-color:#AFDBF5;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}
.ts-status-visa .Scheduled{
    background-color:#C19A6B;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}

.ts-status-visa .Closed{
    background-color:#800000;
    padding: 4px 10px 4px 10px;
    color: var(--white);
    border-radius: 20px
}

.ts-btn-pay{
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 36px;
    border-radius: 4px;
    margin: 6px 0;
    border: 1px solid var(--primary-color);
    display: inline-block;
}
.btn-pay-upload{
    font-size: 13px;
    font-weight: 500;
    color: #1d8fb3;
    background-color: rgba(29, 143, 179, 0.2);
    padding: 4px 16px;
    display: inline-block;
    border-radius: 20px;
}
.ts-note-pay{
    background-color: rgb(189 58 58 / 12%);
    border: 2px solid #bd3a3a;
    padding: 8px;
    border-radius: 5px;
    display: inline-block;
    color: #bd3a3a;
    font-size: 14px;
    font-weight: 600;
    margin: 0px 15px 0px 0px;
}

@media screen and (max-width: 992px) {
    .ts-body-box{
        display: block;
    }
    .ts-body-box_left,.ts-body-box_right{
        width: 100%;
        margin: 10px 0px;
    }
    .ts-body-box_left_profile{
        justify-content: start;
    }
    .ts-body-visa,.ts-body-addon{
        overflow: auto;
    }
    /*.ts-body-box_rlt_top{*/
    /*    display: flex;*/
    /*    flex-wrap: nowrap;*/
    /*    width: max-content;*/
    /*}*/
    .ts-body-box_rlt_top .ts-body-box_rlt{
        margin-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .ts-body-box_rlt_top{
        flex-wrap: wrap;
        width: auto;
    }
    .ts-body-box_rlt_top .ts-body-box_rlt{
        margin-bottom: 14px;
        width: 100% !important;
    }
}

/*--end track status page style--*/
/*--- Document pending  style----*/
.doc-pending__wrapper{
    padding: 20px 0px;
}
.doc-pending__header h1{
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0px;
}
.doc-pending__form{
    margin: 30px 0px;
}
.doc-pending__body__box{
    padding: 15px;
    margin: 10px 0px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #E7E7E7 inset;
}
.doc-pending__body__box h5{
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px;
}
.doc-pending__body__box h5 span{
    float: right;
}

.doc-pending__remark{
    padding: 15px;
    margin: 10px 0px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #E7E7E7 inset;
}
.doc-pending__remark h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.doc-pending__remark__body{
    color: var(--primary-color);
    padding: 0px 20px;
}
.doc-pending__body .document-box{
    border: 1px solid #e1e1e1;
    border-radius: 10px ;
    padding: 8px 0px;
    margin: 10px 0px;
    text-align: center;
}

.doc-pending__form .document-box img{
    padding-bottom: 0;
    margin: 0 auto;
}
.doc-pending__body .hint-form{
    font-size: 12px;
    font-weight: 500;
    color: #cc0303;
}
.doc-pending__body .application-form_info{
    font-size: 12px;
    font-weight: 400;
    margin: 4px 0px;
    text-transform: capitalize;
}
.doc-pending__body .passport_head_point{
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px;
    text-transform: capitalize;
}
.doc-pending__body .btn-upload{
    font-size: 14px;
    font-weight: 500;
    padding: 10px 30px;
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
}

.doc-pending__form input{
    display: none;
}
.document__view{
    display: none;
}
#OpenImgUpload{
    font-size: 13px;
    font-weight: 400;
    border: 0px;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    margin-top: 20px;
}
/*--- end Document pending style----*/
/*-- search form--*/
.form-search-field{
    position: relative;
    min-height: 80px;
}
.search-container {
    position: relative;
    cursor: pointer !important;
}
.search-container label,.form-field-point,.form-field-point label{
    cursor: pointer;
}

#fromInput, #toInput,.input-city-field{
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: none;
    position: absolute;
    top: 28px;
}
.input-city-field:focus-visible{
    outline: 1px solid rgba(9, 99, 98, 0.42) !important;
}

.suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 99;
    display: none;
    top: 69px;
    width: 100%;
}

.suggestions.above {
    top: auto;
    border-radius: 10px 10px 0 0;
}

.suggestion {
    padding: 10px 20px;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}

.suggestion:hover {
    background-color: #eef6ff;
}

.selected-box {
    display: block;
    cursor: pointer;
}

.city-name,.country-name,.yacht-name{
    font-size: 16px;
    font-weight: 600;
    color: #212529bf;
}
.suggestion .city-name, .suggestion .country-name,.suggestion .yacht-name{
    font-size: 14px;
}

.details {
    font-size: 12px;
    font-weight: 300;
    color: #555;
    margin-top: 2px;
}

.swap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
    cursor: pointer;
    position: absolute;
    top: 30%;
    right: -18px;
    z-index: 99999;
}
.country-data{
    display: none;
}
/*--end search form --*/

.search-box {
    position: relative;
    width: 300px;
}

.search-box .input-transfer-field{
    width: 100%;
    padding: 10px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    color: #212529bf;
    font-size: 15px;
    font-weight: 600;
}
.search-box .input-transfer-field:focus,.search-box .input-transfer-field:focus-visible{
    border: 1px solid #ccc !important;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    outline: 1px solid #ccc !important;
    background: var(--white) !important;
}

.airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.airport-suggestions div{
    padding: 10px;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}
.airport-suggestions div:hover {
    background-color: #f0f0f0;
}
.kst-card-body img{
    min-height: 450px;
    border-radius: 8px;
}
/*---new design visa form style --*/
.visa-form-header{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    padding: 40px 0 24px 0;
    position: relative;
}
/*------
.visa-form-header:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../images/vf-header-img.webp") no-repeat bottom right/contain;
    width: 562px;
    height: 241px;
}  ------*/

.visa-form-trusted{
    display: inline-flex;
    padding: 3px 6px;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.22);
}
.visa-form-trusted span{
    color: #F4F4F4;
    font-size: 10px;
    line-height: normal;
}
.visa-form-header h1{
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    margin: 10px 0 40px 0;
}
.visa-form-header h1 strong{
    font-weight: 600;
}
.visa-form-feature{
    display: flex;
    align-items: center;
    gap: 24px;
}
.visa-form-feature-box{
    display: flex;
    padding: 8px 16px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    text-align: center;
}
.visa-form-feature-box p{
    margin: 0;
    font-weight: 200;
    font-size: 13px;
    line-height: normal;
}
.visa-form-feature-box small{
    color: rgba(255, 255, 255, 0.60);
    font-size: 10px;
    font-weight: 300;
}
.visa-form-body{
    background: linear-gradient(180deg, #fbfffb 0%, #F9FFF0 100%);
}
.visa-form-body-head{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.sub-heading-circle{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid rgba(23, 139, 0, 0.12);
    background: #FAFFF2;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.12);
}
.visa-form-body-head .sub-heading h2{
    font-size: 18px;
    margin: 0;
}
.visa-form-body-head .sub-heading p{
    margin: 4px 0;
    font-size: 13px;
    font-weight: 200;
}
.visa-form-body-head .sub-heading p strong{
    font-weight: 600;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-body-progress{
    margin: 24px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.progress-box{
    text-align: center;
}
/*.progress-circle-outer{*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border-radius: 100%;*/
/*    background: rgb(235 225 219);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/
.progress-circle{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: rgb(243 235 230);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.progress-box.active .progress-circle{
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.progress-circle-inner{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid rgba(23, 38, 148, 0.12);
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-box.active .progress-circle-inner{
    border: 1px solid #AC735F;
    background: linear-gradient(90deg, rgba(172, 115, 95, 0.80) 0%, rgba(123, 67, 26, 0.80) 100%);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.progress-box.active .progress-circle{
    background: rgb(211 188 172);
}

.progress-box-fill-form::before{
    content: "";
    position: absolute;
    left: 80px;
    top: 40px;
    background: #D9D9D9;
    width: 40%;
    height: 4px;
}
.progress-box-fill-form::after{
    content: "";
    position: absolute;
    left: 80px;
    top: 40px;
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    width: 0;
    height: 4px;
    transition: width 2s ease-in-out;
}
.progress-box-fill-form.animate-progress::after {
    width: 25%;
}
.progress-box-review-details:before{
    content: "";
    position: absolute;
    right: 92px;
    top: 40px;
    background: #D9D9D9;
    width: 41%;
    height: 4px;
}
.progress-box span{
    display: block;
    background: linear-gradient(90deg, #AC735F 0%, #7B431A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
}
.progress-box small{
    color: #505050;
    font-size: 10px;
    font-weight: 300;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(172, 115, 95, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(79, 172, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
    }
}
.visa-form-body-step-info{
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.visa-form-body-step-info p{
    padding: 8px 12px;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(55, 92, 250, 0.22);
    background: #F6F4FF;
    margin: 0;
}
.visa-form-body-step-info p span{
    font-size: 12px;
    background: linear-gradient(90deg, #4162F3 0%, #6F31D9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-card{
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FEFEFE 0%, #F7FAF6 100%);
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.08), 12px 12px 88px 0 rgba(0, 0, 0, 0.08);
}
.visa-form-card-head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.visa-form-card-head .sub-heading h2{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-card-head .sub-heading p{
    color: #6C6C6C;
    font-family: Inter;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0;
}
.visa-form-card .form-label{
    font-size: 12px;
    margin-bottom: 4px;
}
.visa-form-card .form-control{
    color: #444;
    font-size: 12px;
    font-weight: 400;
    height: 40px;
}
.visa-form-card input::placeholder{
    font-size: 12px;
    font-weight: 300;
}
.visa-form-card .select2-container--default .select2-selection--single{
    height: 40px;
    border: 1px solid #dee2e6;
}
.visa-form-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 40px;
    font-size: 12px;
    font-weight: 400;
}
.visa-form-card .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 40px;
}
.visa-form-submit-card{
    border-radius: 12px;
    background: #F5FFEF;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.06), 8px 8px 60px 0 rgba(0, 0, 0, 0.12);
}
.visa-form-submit .btn-primary{
    border-radius: 8px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.12);
    width: 100%;
    border: none;
    transition: all 0.5s linear;
    color: var(--white) !important;
}
.visa-form-submit .btn-primary:hover{
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.4);
    background: linear-gradient(98deg, #0C8858 30%, #47aa7e 70%);
}
.visa-form-submit ul li{
    margin: 8px 0;
    font-size: 13px;
    color: #454545;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}
.visa-form-submit .note-card{
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E06C41;
    background: #FFF6F4;
}
.visa-form-submit .note-card p,.visa-form-submit .note-card i{
    font-size: 13px;
    font-weight: 400;
    background: linear-gradient(270deg, #E06C41 0%, #B85733 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visa-form-faqs-card{
    border-radius: 12px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    box-shadow: 8px 8px 60px 0 rgba(0, 0, 0, 0.08);
}
.visa-form-faqs-card .visa-form-card-head{
    background: #595959;
    color: var(--white);
}
.visa-form-faqs-card .sub-heading-faqs h2{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.visa-form-faqs .accordion-button{
    padding: 14px 0;
    font-weight: 400;
}
.visa-form-faqs .accordion-body {
    padding: 6px;
    font-size: 12px;
    font-weight: 300;
}
.visa-form-support{
    background: #F6F6F6;
    padding: 16px;
    border-radius: 0 0 8px 8px;
}
.visa-form-support-head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.visa-form-support-head h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.visa-form-support .phone-card{
    display: flex;
    padding: 6px 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.08);
    margin: 12px 0;
}
.visa-form-support .text-color-light{
    color: rgba(53, 53, 53, 0.80);
}
.visa-form-card .note-card{
    border: 1px solid #4DB65D;
    background: #f0fff1;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    color: #40a24f;
    display: flex;
    margin-top: 20px;
}
.visa-form-card .text-danger{
    font-size: 13px;
    font-weight: 400;
}
hr{
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
}
.form-progress-wrapper {
    background: #E3E3E3;
    height: 4px;
    border-radius: 4px;
}
.form-progress-bar {
    border-radius: 100px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 0 0 2px 0 rgba(84, 176, 137, 0.44), 0.4px 0.4px 4px 0 rgba(0, 174, 106, 0.30);
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}
.form-progress-label {
    text-align: right;
    font-size: 14px;
    color: #585858;
}
.visa-form-body aside{
    position: sticky;
    top: 84px;
}
.btn-same{
    border-radius: 6px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 0 0 2px 0 rgb(135 139 137 / 44%), 0.4px 0.4px 4px 0 rgb(65 64 64 / 31%);
    padding: 8px 12px;
    border: none;
    font-size: 10px;
    color: var(--white);
}
.visa-form-card-check .form-check{
    display: flex;
    align-items: center;
}
.visa-form-card-check .form-check-label{
    font-size: 10px;
}
/*---end visa application---*/
/*-- new checkout page style---*/
.check-header{
    padding: 20px 0;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    overflow-x: hidden;
}
.check-flash{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.check-flash-info h1{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.check-flash-icon{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 100px;
    background: var(--white);
}
.check-body .fill-bar.animate-progress::after {
    width: 75%;
    z-index: 1;
}
.check-applicant-body{
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FEFEFE 0%, #F7FAF6 100%);
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.08), 12px 12px 88px 0 rgba(0, 0, 0, 0.08);
    position: relative;
}
.check-applicant-body:before{
    content: "";
    position: absolute;
    left: 0;
    top: 84px;
    border-bottom: 1px solid #efefef;
    width: 100%;
}

.check-applicant-card .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #f9fff4 !important;
}
.check-applicant-card .accordion-header{
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: #F1FFE3;
}
.check-applicant-card h3{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.check-applicant-card .applicant-head{
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #626262;
    margin-bottom: 8px;
}
.check-applicant-card .applicant-info{
    display: block;
    font-size: 14px;
    font-weight: 400;
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.check-applicant-service-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.check-applicant-service-header h2{
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}
.check-service-flash{
    display: flex;
    height: 26px;
    padding: 4px 12px 4px 8px;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    border: 1px solid #EF8923;
    background: #FFF6F6;
}
.check-service-flash p{
    color: #C60;
    font-size: 12px;
    font-weight: 300;
}

.check-service-card-outer{
    position: relative;
}
.check-service-card-outer .btn-check{
    position: absolute;
    clip: auto;
    pointer-events: none;
    width: 20px;
    height: 20px;
    right: 4px;
    top: 30px;
}
.check-service-card{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.check-applicant-service .btn{
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #D1D5DC;
    color: #626262;
}
.check-applicant-service .btn:hover{
    border: 1px solid #D1D5DC;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #F1FDF4;
    border-color: #32C84C;
    color: #626262;
}
.btn-check:checked+.btn .check-service-card-time{
    background-color: #F1FDF4;
    border-color: #C1F8CE;
}
.check-service-card small{
    font-weight: 300;
    font-size: 12px;
}
.check-service-card-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #F2F2F2;
}
.btn-check:checked+.btn .check-service-card-icon{
    background: #DFFCE6;
}
.btn-check:checked+.btn .check-service-card-icon .service-default,.service-active{
    display: none;
}
.btn-check:checked+.btn .check-service-card-icon .service-active{
    display: block;
}
.check-service-card-time{
    display: flex;
    padding: 6px 24px 6px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid rgba(98, 98, 98, 0.12);
    background: #F9FAFB;
    color: #626262;
}
.check-service-card-time p{
    font-size: 11px;
    font-weight: 300;
    margin: 0;
}
.btn-delete-ck{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #CD0000;
    background: #CD0000;
    box-shadow: -0.5px -0.5px 2px 0 rgba(205, 0, 0, 0.12), 1px 1px 4px 0 rgba(205, 0, 0, 0.12);
}
.btn-delete-ck .bi-trash{
    font-size: 16px;
    color: white;
}
.btn-edit-ck{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #316AFD;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: -0.5px -0.5px 2px 0 rgba(49, 106, 253, 0.12), 1px 1px 4px 0 rgba(49, 106, 253, 0.12);
}
.btn-edit-ck .bi-pencil-square{
    font-size: 16px;
    color: #316AFD;
}
.check-addons .btn{
    padding: 0;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #E1E1E3;
    background: #FFF;
    box-shadow: 8px 8px 33px 0 rgba(0, 0, 0, 0.06);
}
.check-addons .btn-check {
    position: relative;
    top: 48px;
    left: 14px;
    width: 18px;
    height: 18px;
}
.check-addon-card{
    padding: 8px;
}
.check-addon-card h3{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}
.check-addon-card p{
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
}
.check-addon-rate p{
    font-size: 13px;
    font-weight: 300;
    border-radius: 4px;
    border: 1px solid #EF4123;
    background: #FFF3F3;
    color: #EF4123;
    margin-top: 4px;
}
.check-addon-rate del{
    font-size: 12px;
    font-weight: 300;
    color: #616158;
}
.check-addon-rate span{
    font-size: 22px;
    font-weight: 600;
    color: #353535;
}
.check-applicant-flash{
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #EF8923;
    background: #FFF6F6;
    color: #C60;
}

.check-summary-card{
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FEFEFE;
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.15);
}
.check-booking-box{
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 12px;
    border: 2px solid #ffded9;
    background: rgba(255, 238, 238, 0.51);
}
.check-booking-box-info p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    background: linear-gradient(96deg, #363636 0%, #494949 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-booking-box-info span{
    color: #626262;
    font-size: 13px;
    font-weight: 300;
}
.check-booking-box-circle{
    display: flex;
    width: 67px;
    height: 66px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    flex-shrink: 0;
}
.check-booking-box-circle-inner{
    display: flex;
    width: 63px;
    height: 63px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 100%;
    flex-shrink: 0;
}
.check-booking-box-circle .booking-time{
    font-size: 16px;
    font-weight: 700;
    line-height: 14px;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-booking-box-circle .booking-mins{
    color: #626262;
    font-size: 11px;
    font-weight: 300;
    line-height: 12px;
}
.check-summary-total{
    display: flex;
    justify-content: space-between;
}
.check-summary-total p{
    font-size: 24px;
    font-weight: 600;
    color: #4A4A4A;
}
.check-summary-total-price small{
    font-size: 12px;
    font-weight: 300;
    background: linear-gradient(96deg, rgba(54, 54, 54, 0.60) 0%, rgba(73, 73, 73, 0.60) 104.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-summary-promo-head p{
    color: #353535;
    line-height: 14px;
}
.check-payment-secure{
    border-radius: 8px;
    border: 1px solid #EBEBEB;
    background: #FEFEFE;
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.15);
    margin: 20px 0;
}
.check-payment-secure-header{
    display:flex;
    align-items: center;
    gap: 10px;
}
.check-payment-secure-icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
}
.check-payment-secure-header h3{
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
.check-payment-secure .btn-group .form-check-input{
    position: absolute;
    left: 10px;
}
.check-payment-secure .btn-group .form-check-label{
    padding: 16px 16px 16px 40px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    background: #FEFEFE;
    margin-bottom: 12px;
    width: 100%;
}
.btn-pre-submit{
    border-radius: 8px;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.12);
    width: 100%;
    border: none;
    transition: all 0.5s linear;
    color: var(--white) !important;
}
.btn-pre-submit:hover{
    box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.4);
    background: linear-gradient(98deg, #0C8858 30%, #47aa7e 70%);
}
.check-summary-subtotal-head{
    font-size: 15px;
    font-weight: 500;
    color: #616161;
}
.summary-toggle-btn{
    background: transparent;
    border: 0;
}
.summary-toggle-btn .bi::before{
    font-weight: 800 !important;
}
.check-summary-subtotal-body {
    height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
    color: #4A4A4A;
    font-size: 13px;
}
.summary-discount .summary-dis{
    font-weight: 600;
    margin-bottom: 0;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.summary-discount .summary-value{
    display: flex;
    padding: 2px 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--white);
    border-radius: 2px;
    margin-bottom: 0;
    background: linear-gradient(90deg, #EF4123 0%, #EE3F25 51.5%, #D11450 100%);
}
.check-summary-promo-body .btn-outline-primary{
    border-radius: 8px;
    border: 1px solid #0C8858;
    background: var(--white);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.12);
}
.check-summary-promo-body .btn-outline-primary span{
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.check-summary-promo-body input{
    font-size: 13px;
    padding: 10px;
    color: #5C5C5C;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
    background: #F3F3F5;
}
.check-summary-promo-body small{
    font-size: 10px;
}
.form-submit-card{
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(50, 200, 76, 0.22);
    background: var(--white);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
    margin: 4px;
    opacity: 0;
    transform: translateX(100%);
    animation: cardSlide 140s linear infinite;
    position: absolute;
    right: 0;
    top: 0;
}

.form-submit-card:nth-child(1) {
    animation-delay: 20s;
}
.form-submit-card:nth-child(2) {
    animation-delay: 50s;
}
.form-submit-card:nth-child(3) {
    animation-delay: 90s;
}
.form-submit-card:nth-child(4) {
    animation-delay: 140s;
}
.form-submit-card:nth-child(5) {
    animation-delay: 200s;
}
.form-submit-card:nth-child(6) {
    animation-delay: 280s;
}

@keyframes cardSlide {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    1.1% {
        opacity: 1;
        transform: translateX(0);
    }
    6.8% {
        opacity: 1;
        transform: translateX(0);
    }
    8.8% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.form-submit-name{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 4px;
}
.form-submit-text{
    color: #626262;
    font-weight: 300;
    padding: 0 8px;
    margin-bottom: 4px;
    font-size: 12px;
}
.form-submit-name .bi-circle-fill{
    color: #32C84C;
    font-size: 10px;
    margin-right: 5px;
    margin-left: 5px;
}
.form-submit-name strong{
    font-weight: 600;
}
.form-submit-card small{
    display: block;
    font-size: 12px;
    padding: 0 10px;
    font-weight: 600;
    background: linear-gradient(98deg, #0C8858 0%, #5DB58E 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 992px) {
    .form-submit-cards{
        display: none;
    }
}


.new-footer {
  background: rgb(99 149 196 / 25%);
  color: #353535;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* CTA Section */
.footer-cta {
  background: rgb(35 85 132 / 81%);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 50px;
}
.footer-logo{
  width:200px;
  margin-bottom:10px;

}

.footer-cta h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-cta p {
  margin-bottom: 20px;
  font-size: 15px;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(45deg, #6366f1, #3b82f6);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.4s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99,102,241,0.4);
}

/* Footer Main */
.footer-main h6 {
  color: #353535;
  margin-bottom: 15px;
}

.footer-main ul {
  list-style: none;
  padding: 0;
}

.footer-main ul li {
  margin-bottom: 10px;
}

.footer-main ul li a {
  color: #353535;
  text-decoration: none;
  transition: 0.3s;
}

.footer-main ul li a:hover {
  color: green;
  padding-left: 5px;
}

/* Logo */
.footer-logo {
  color: #fff;
  font-weight: bold;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

/* Social */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #9ca3af;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #3b82f6;
  transform: scale(1.2);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding: 15px 0;
  font-size: 14px;
}