:root {
    --color-white: #fff;
    --web-color2: #2f4e93;
    --font-color: #4f4f4f;
    --main-font: "DM Sans", sans-serif;
    --color-black: #000;
    --color-blue: #1e09d8;
    --theme-color: #22437f;
    --theme-color2: #ffa704;
    --bg1: #16171A;
    --color-1: #9e6865;
    --text-1: #8a8c94
}

.dm-sans-<uniquifier > {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}


body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    transition: 0.5s ease-in-out;
}

p {
    color: var(--font-color);
    font-size: 16px;
    line-height: 1.7
}

/*================ Common Style ============*/

.commonpadding {
    padding: 50px 0;
    position: relative;
}

.common-block {
    padding: 30px 0;
}

.div-hr {
    height: 1px;
    width: 100%;
    display: block;
    background: #EAEEF3
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}


.theme-btn,
.theme-btn2 {
    font-size: 16px;
    color: var(--color-white);
    padding: 12px 20px;
    display: inline-block;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

    .theme-btn::before,
    .theme-btn2::before {
        content: '';
        height: 300px;
        width: 300px;
        background: var(--color-black);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%) scale(0);
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }

    .theme-btn:hover {
        color: var(--color-white);
    }

        .theme-btn:hover::before,
        .theme-btn2:hover::before {
            transform: translateY(-50%) translateX(-50%) scale(1);
        }




.theme-btn2 {
    background: var(--theme-color2);
    color: var(--color-white);
}

    .theme-btn2::before {
        background: var(--color-black);
    }

    .theme-btn2:hover {
        color: var(--color-white);
    }

.title-section {
    margin-bottom: 25px;
}


    .title-section .main-title {
        font-size: 32px;
        font-weight: 900;
        color: var(--color-black);
        line-height: 1.2;
    }

    .title-section .sub-title {
        font-size: 24px;
        font-weight: 600;
        color: var(--color-black);
        line-height: 1.2;
        padding-bottom: 7px;
    }

.common-block .box-heading{
    font-size:26px;
    font-weight:700;
    padding-bottom:10px;
    color: var(--color-black);

}

.style-ul li {
    margin-bottom: 10px;
}

.page-bannersection {
    position: relative;
}

    .page-bannersection:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.8);
        opacity: 0.6;
        z-index: 1
    }

    .page-bannersection img{
        object-fit:cover
    }


    .page-banner-text {
        position: absolute;
        width: 100%;
        z-index: 99;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: left;
    }
    .page-banner-text .banner-text {
        text-align: left;
        width:55%;
    }

        .page-banner-text .banner-text h1 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 0px;
        }

.banner-text p {
    margin: 10px 0px 24px 0px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
}
.bg-color {
    background: #ebeef5
}

.whatsappcolor {
    background: #25d366
}

.page-banner-enq{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
/*--- =================header ======================-----*/
.top-header {
    background: var(--color-1);
    padding: 10px 0;
}

    .top-header .top-header-a {
        font-size: 16px;
        font-weight: normal;
        transition: 0.3s ease-in-out;
        text-decoration: none;
        color: var(--color-white)
    }

        .top-header .top-header-a:hover {
            transition: 0.3s ease-in-out;
            color: var(--theme-color2);
        }

            .top-header .top-header-a:hover i {
                color: var(--color-white)
            }

        .top-header .top-header-a i {
            margin-right: 5px;
        }

        nav.navbar{
            padding:16px 0 
        }

.header-info-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.navbar.navbar-fixed {
    z-index: 999;
    transition: 0.3s ease-in-out;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.025),0 1px 1px 0 rgba(0,0,0,.01),0 0 50px 0 rgba(0,0,0,.07)
}

.logotext img {
    height: 64px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0;
    transition: 0.3s ease-in-out;
    color: var(--color-black)
}

.navbar-fixed.MenuStick {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.025),0 1px 1px 0 rgba(0,0,0,.01),0 0 50px 0 rgba(0,0,0,.07);
    -webkit-animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-fixed.MenuStick .nav-link {
    font-size: 16px;
}

.navbar-nav .nav-link.active {
    color: var(--theme-color);
    font-weight: 600;
}

.enquirebtn {
    padding: 10px 30px;
    background: #010101;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.5s ease-in-out;
}

.explore-btn:hover {
    background: #000;
    color: #fff;
}

/*======================== VISA SECTION ===================================*/

/*----================= Visa Name section ======================--*/

.visa-info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

    .visa-info-section .title-section {
        margin: 0
    }

.visa-price-info {
    display: flex;
    gap: 34px;
    align-items: center;
}

    .visa-price-info .visa-price .price {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-black);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .visa-price-info .visa-price .price span:first-child {
            margin-right: 5px;
            font-size: 16px;
            font-weight: 500;
            color: var(--font-color)
        }



.visa-feature {
    padding: 0;
    list-style: none;
}

    .visa-feature li {
        margin-block: 18px;
        position: relative;
        padding-left: 40px;
        color: var(--font-color);
    }

        .visa-feature li i {
            position: absolute;
            left: 0;
            background: #CEF2E5;
            border-radius: 50%;
            padding: 6px;
            font-size: 12px;
            align-items: center;
            display: inline-flex;
            justify-content: center;
            margin-right: 7px;
            height: 25px;
            width: 25px;
            color: #10AC58;
        }

.flex-feature {
    display: flex;
    justify-content: space-around;
    background: rgb(221 190 190 / 10%);
}
/*--================== Enquire-bg ======================----*/
.enquire-bg{
    background-image:url('../images/enquire-bg.jpg');
    background-repeat:no-repeat;
    background-position:right;
}


/*----===============visa-process-section ===================== ----*/
.visa-process-section {
    display: flex;
    justify-content: space-between;
    padding-block: 25px 0;

}

.visa-process-block {
    text-align: center;
    width: 25%;
    padding: 20px;
    position: relative;
}

    .visa-process-block .icon {
        display: inline-flex;
        position: relative;
        margin-bottom: 10px;
        height: 70px;
        width: 70px;
        background: rgba(13, 110, 253, 0.12);
        border-radius: 16px;
        justify-content: center;
        align-items: center;
    }

        .visa-process-block .icon img {
            height: 38px;
        }

    .visa-process-block .title {
        color: var(--color-black);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .visa-process-block p {
        margin: 0;
    }

.bgsection {
    background: linear-gradient(-45deg, rgba(8, 66, 152, 0.45), rgba(0, 0, 0, 0.38)) fixed, url(../images/bg-image.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 70px 0;
    text-align: center;
}

.bg-content-block .main-title {
    font-size: 60px;
    color: var(--color-white)
}

.bg-content-block p {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white)
}



.visa-type-table {
    width: 60%;
    margin: auto;
    text-align: center;
    box-shadow: 0 3px 20px #00000014
}

    .visa-type-table thead tr th {
        font-weight: 400;
        padding: 10px;
        background: var(--theme-color);
        border-bottom: 0;
        color: #fff
    }

        .visa-type-table thead tr th:first-child {
            border-top-left-radius: 15px
        }

        .visa-type-table thead tr th:last-child {
            border-top-right-radius: 15px
        }

    .visa-type-table tbody tr td {
        padding: 15px;
        border-bottom: 1px solid #fff;
        margin: 0 auto;
        background: rgba(52,169,214,.08)
    }

        .visa-type-table tbody tr td .seprate-b {
            margin: 20px 0;
            border: 1px solid #2d4a8a
        }



.visa-country-block-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

    .visa-country-block-section .visa-country-block {
        display: block;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        transition: 0.5s ease-in-out;
        background: var(--color-white);
        height: 100%;
        box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
        background: #fff;
    }

.visa-country-block {
    background: #fff;
}

    .visa-country-block:hover .visa-img > img {
        transform: scale(1.2);
        transition: 0.5s ease-in-out;
    }

.visa-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

    .visa-img img {
        transition: 0.5s ease-in-out;
    }

.icon-flag {
    background: var(--color-white);
    display: inline-flex;
    position: absolute;
    top: -30px;
    left: 39%;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

    .icon-flag img {
        height: 50px;
        width: 50px;
        border-radius: 50px
    }



.visa-country-info {
    padding: 40px 15px 15px 15px;
    text-align: center;
    position: relative;
    background: #fff;
}

.visa-country-name {
    color: var(--color-black);
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.visa-country-info .chatbtn {
    background: #25D366;
    font-size: 14px;
    text-align: center;
    padding: 7px 20px;
    color: #fff;
    column-gap: 10px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
}

.visa-country-info p {
    margin: 0;
    font-size: 14px;
}

    .visa-country-info p b {
        display: block;
        color: var(--color-black)
    }

.visa-country-info .theme-btn {
    padding: 7px 20px;
    margin-top: 10px;
}

.ul-star-rating {
    display: flex;
    column-gap: 2px;
    align-items: center;
    list-style: none;
    padding: 0;
}

    .ul-star-rating i {
        color: #f36911;
        font-size: 14px;
    }

.visa-img label {
    position: absolute;
    z-index: 9;
    padding: 5px 35px;
    font-size: 10px;
    background: #ef0000;
    top: 28px;
    color: #fff;
    transform: rotateZ(-41deg);
    left: -37px;
    animation: blink 5s infinite;
}

@keyframes blink {
    0% {
        background: #f36911;
    }

    20% {
        background: #FF0000;
    }

    40% {
        background: #bc2a8d;
    }

    60% {
        background: blue;
    }

    80% {
        background: orange;
    }

    100% {
        background: red;
    }
}

@-webkit-keyframes blink {
    0% {
        background: red;
    }

    20% {
        background: #eee;
    }

    40% {
        background: #0512ff;
    }

    60% {
        background: blue;
    }

    80% {
        background: orange;
    }

    100% {
        background: red;
    }
}

.enquire-form-block {
    width:30%;
   background:#fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    
}
    .enquire-form-block .form-title{
        font-size:22px;
        font-weight:600;
        margin-bottom:15px;
    }
    /****================== faq =======================*****/
    .accordion-item {
        border: 0;
        border-radius: 16px;
        margin-bottom: 15px;
        box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    }

.accordion-button {
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
}

    .accordion-button:not(.collapsed) {
        color: var(--color-black);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        box-shadow: none
    }

        .accordion-button:not(.collapsed)::after {
            background-image: var(--bs-accordion-btn-icon);
        }

.accordion-item:first-of-type .accordion-button {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-item:first-of-type, .accordion-item:first-of-type .accordion-button, .accordion-item:last-of-type .accordion-button.collapsed, .accordion-item:last-of-type {
    border-radius: 16px;
}

.accordion-button:focus {
    box-shadow: none
}

.faq-accordion {
    padding-top: 25px;
}
/*=========== Detail Page Hotels ==============*/

.hotel-detail-section {
    display: flex;
    column-gap: 15px;
}

.hotel-detail-block {
    width: 25%
}

    .hotel-detail-block .hotel-img img {
        height: 180px;
        width: 100%;
        border-radius: 6px;
    }

    .hotel-detail-block .hotel-content {
        padding: 15px 0;
        background: var(--color-white)
    }

.hotel-content .hotel-name {
    font-weight: 600;
    font-size: 18px;
}

/*=================== Consultany section ===================*/
.consultant-section-block {
    padding: 70px 0;
}

.consultant-section {
    width: 85%;
    margin: 25px auto 0;
    display: flex;
    justify-content: space-around;
}

    .consultant-section a {
        color: var(--font-color)
    }

        .consultant-section a b {
            color: var(--color-black);
        }

        .consultant-section a i {
            margin-right: 10px;
            color: #fff;
            height: 30px;
            width: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
        }

        .consultant-section a:first-child i {
            background-color: #3b5998
        }

        .consultant-section a:nth-child(2) i {
            background-color: #4dc247
        }

        .consultant-section a:last-child i {
            background-color: #bc2a8d
        }

 /* ===================== Feature Footer ===============*/

/***- feature -----*/
.feature-flex-section {
    padding: 50px 0;
    background: #fff1ee
}

.feature-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start
}

.feature-flex {
}

    .feature-flex .feature-flex-block {
        display: flex;
        align-self: center;
        gap: 15px;
    }

        .feature-flex .feature-flex-block .icon {
            display: flex;
            align-items: center;
            width: 65px;
            height: 65px;
            min-width: 65px;
            max-width: 65px;
            background: #eee;
            justify-content: center;
            border-radius: 50%;
        }

        .feature-flex .feature-flex-block:first-child .icon {
            background: #D39B01
        }

        .feature-flex .feature-flex-block:nth-child(2n+1) .icon {
            background: #D15716
        }

        .feature-flex .feature-flex-block:nth-child(2n+2) .icon {
            background: #1768E2;
        }

        .feature-flex .feature-flex-block:last-child .icon {
            background: #2E8B57
        }




        .feature-flex .feature-flex-block .icon img {
            height: 45px;
            width: auto;
        }

.feature-flex-block .content .title {
    font-size: 24px;
    font-weight: 600;
}

.feature-flex-block .content p {
    margin-bottom: 0;
    font-weight: 500
}


/* =======================footer=========================== */
.footerpadding {
    background: #ebeef5
}

.footer-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
}

    .footer-section .social-icon {
        display: flex;
        gap: 10px
    }

        .footer-section .social-icon a {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            display: inline-flex;
            background: var(--theme-color);
            align-items: center;
            justify-content: center;
            color: var(--color-white);
        }



.social-icon img {
    height: 40px;
    width: auto
}

.copyrightblock {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #808080;
    text-align: center;
    position: relative;
}

.footerpadding {
    position: relative;
}

.footer-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap:wrap;
    justify-content:center;
}

    .footer-links ul li a {
        font-size: 18px;
        padding-right: 30px;
        border-right: 1px solid;
        font-weight: 500;
        color: var(--main-font)
    }

    .footer-links ul li:last-child a {
        border-right: 0;
    }


/*---================-back to top===================== ---*/
.backbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    .backbtn img {
        height: 20px;
        width: auto;
    }

    .backbtn:hover {
        cursor: pointer;
        background-color: #333;
    }

    .backbtn:active {
        background-color: #555;
    }

    .backbtn.show {
        opacity: 1;
        visibility: visible;
    }




   
/*=================== FORM DESIGN ====================*/



.contactform-block {
    margin-bottom: 50px
}

.form-control {
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0,0.22);
    background: transparent;
    border-radius: 0;
    min-height: 45px;
    margin-bottom: 15px;
}

    .form-control:focus {
        outline: 0;
        box-shadow: none;
        border-color: #000
    }

.btn.submit-btn {
    height: 45px;
    background: #000;
    color: #fff;
    padding: 0 25px;
    border-radius: 0;
    border: 0;
}

.quickcontact {
    margin-left: 25px;
    padding: 25px;
    border-left: 1px solid #757575;
}

.blocksection {
    padding-left: 20px;
}

    .blocksection p {
        margin-top: 20px;
        margin-bottom: 5px;
        font-weight: 500;
        color: #000
    }

    .blocksection a {
        color: var(--font-color);
        font-size: 17px;
        text-decoration: none;
    }


/*=======================OWL CAROUSEL =======================*/
.owl-carousel .owl-nav button {
    position: absolute;
    top: 45%;
    border-radius: 50%;
    color: #fff !important;
    margin: 0;
    transition: all 0.3s ease-in-out;
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-color) !important
}

    .owl-carousel .owl-nav button:hover {
        background: var(--theme-color2) !important
    }

.owl-nav button.owl-prev {
    left: -50px;
}

.owl-nav button.owl-next {
    right: -50px;
}

 
/*============fixed-whatsapp=============*/
.fixed-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #06da03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    z-index: 99
}

    .fixed-whatsapp i {
        color: #fff;
        font-size: 22px;
    }
/********====================*responsive **=========================****/
@media (max-width: 767px) {
    .logotext img {
    height: 50px;
}
    .page-banner-text .banner-text h1 {
        font-size: 30px;
    }
    .banner-text p{
        font-size: 16px;
    }

    .page-bannersection img {
        height: 150vh!important
    }
    .page-bannersection.cruise-bannersection img{
        height: 30vh
    }

    .top-header {
        display: none
    }

    .commonpadding {
        padding: 30px 0
    }

    .title-section {
        margin-top: 20px;
    }

        .title-section .main-title {
            font-size: 24px;
            font-weight: 700
        }


    .visa-info-section .title-section {
        margin-bottom: 15px;
    }

    .flex-feature {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 15px;
        display: none;
    }

    .visa-feature li {
        margin-bottom: 0;
    }

    .visa-price-info {
        flex-wrap: wrap;
        gap: 15px
    }

    .visa-info-section, visa-price-info {
        flex-wrap: wrap;
    }

    .visa-process-section {
        flex-wrap: wrap;
    }

    .visa-process-block {
        width: 100%;
    }

    .service-block-section {
        flex-wrap: wrap;
    }

    .benefit-block {
        width: 100%;
        padding: 15px;
    }

    p {
        font-size: 16px;
    }

    .copyrightblock {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        padding-bottom: 50px;
    }

    .footer-links ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

        .footer-links ul li a {
            padding-right: 10px;
            font-size: 16px;
        }

.consultant-section a{font-size:14px;}

    .faq-accordion {
        padding-top: 5px;
    }

    .packages-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .visa-country-block-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .top-header .top-header-a {
        display: block
    }

    
    .header-info-btn{
        padding-top:10px;
    }
    .header-info-btn.cruise-info-btn{display:block;padding-top:10px;}

    .consultant-section {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 10px;
    }

    .icon-flag {
        display: none
    }

    .visa-country-info {
        padding: 10px
    }

    .visa-country-name {
        font-weight: 600
    }

    .visa-country-info .chatbtn {
        padding: 7px 15px;
        gap: 5px;
    }

    .int-visa-section .visa-country-block .visa-img img {
        height: 180px;
    }

    .packageslist-info .package-name {
        font-size: 16px
    }

    .packageslist-section .packageslist-info {
        width: 50%;
        padding: 0 5px
    }

    .packageslist-info .packageimages img {
        height: 150px !important;
    }

    .packageslist-section .packageslist-info {
        width: 50% !important;
        padding: 0 5px !important
    }
    .cruise-packages-section  {
        grid-template-columns: repeat(1, 1fr);
    }
    .accordion-button{
        font-size:15px;
    }
    .theme-btn, .theme-btn2{font-size:14px;padding:8px 14px;}
    .navbar.navbar-fixed .container{justify-content:center}
    .feature-flex {
        flex-wrap: wrap;
    }
    .page-banner-text{top:50%;}
    .visa-detail-page-section{
        margin-top:140px;
    }
    .common-block .box-heading{
        font-size:20px;
    }
}


 
@media(max-width:991px) {

    .quickcontact {
        border: 0;
        padding: 10px;
        margin-left: 0;
        margin-bottom: 25px;
        text-align: center
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .banner-text {
        width: 100%;
    }

    .title-section .sub-title {
        font-size: 22px;
    }

    .owl-nav button.owl-prev {
        left: 35%;
    }

    .owl-nav button.owl-next {
        right: 35%;
    }

    .owl-carousel .owl-nav button {
        bottom: 0px;
        top: inherit;
    }

    .visa-carousel {
        padding-bottom: 50px
    }

    .visa-process-section {
        flex-wrap: wrap;
    }

    .review-grid {
        flex-direction: column;
        align-items: flex-start
    }

        .review-grid .review-block {
            margin-bottom: 5px;
        }

    .packageslist-section .packageslist-info {
        width: 33.33%;
        padding: 0 5px
    }

    .packageslist-info .packageimages img {
        height: 180px;
    }
    
    .mobile-btn {
        display: none
    }
    .page-banner-enq{
        flex-direction:column;
gap:20px;
    }
    .page-bannersection img {
        height: 145vh;
    }
    .page-banner-text .banner-text, .enquire-form-block {
        width: 100%
    }
}

@media (min-width:1200px) {
    .pad-lf-30 {
        padding-left: 35px;
    }
}

@media (min-width: 768px) and (max-width:1024px) {

    .flex-feature {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 15px;
    }

    .page-banner-text .banner-text h1 {
        font-size:38px;
    }

    .title-section .main-title {
        font-size: 26px;
    }

    .bg-content-block .main-title {
        font-size: 40px !important;
    }

    .visa-process-section .visa-process-block {
        width: 50%;
    }

    .visa-feature li {
        margin-block: 10px
    }
    .visa-country-block-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .visa-info-section{
        flex-wrap:wrap
    }
    .consultant-section{width:100%;flex-wrap:wrap;gap:10px}
    .visa-price-info{margin-top:10px;}
    .feature-flex {
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) and (max-width:1195px) {
    .bannersection {
        height: auto
    }

    .banner-text {
        width: 100%;
    }
    .visa-img img {
        transition: 0.5s ease-in-out;
        height: 150px;
        object-fit: cover;
    }
    .visa-country-block-section {
        grid-template-columns: repeat(3, 1fr);
    }
    .consultant-section {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .page-bannersection img {
        height: 86vh
    }
    .enquire-form-block{width:40%}
}

@media (min-width: 1200px) and (max-width:1400px) {
    .page-bannersection img{
    height:75vh
    }
}

 

    @media (min-width: 1400px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
            max-width: 1380px;
        }
    }

    @media (min-width: 1600px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
            max-width: 1520px
        }

        .visa-country-block-section {
            grid-template-columns: repeat(5, 1fr);
        }
    }