﻿:root {
    --color-white: #fff;
    --web-color2: #2f4e93;
    --font-color: #4b4b4b;
    --color-black: #000;
    --color-blue: #1e09d8;
    --theme-color: #e61a1c;
    --theme-color2: #ffa704;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    transition: 0.5s ease-in-out;
    font-size: 15px;
}

p {
    color: var(--font-color);
    font-size: 15px;
    line-height: 1.7
}

    p a {
        color: var(--theme-color)
    }

b, strong {
    color: var(--color-black)
}

.commonpadding {
    padding: 50px 0;
    position: relative;
}

.common-block {
    padding: 25px 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: 15px;
    color: var(--color-white);
    padding: 10px 25px;
    display: inline-block;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 30px;
    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: 34px;
        font-weight: 600;
        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;
    }

    .title-section .small-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--color-black);
        line-height: 1.2;
    }

.style-ul li {
    margin-bottom: 10px;
}

.pagebanner-section {
    position: relative;
}
    .pagebanner-section:before{
        content:'';
        position:absolute;
        top:0;
        right:0;
        bottom:0;
        left:0;
        background:rgba(0,0,0,0.2)
    }

    .pagebannersection-text {
        position: absolute;
        width: 100%;
        z-index: 99;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.pagebanner-text {
    width: 70%;
    margin: auto;
    text-align: center;
}

    .pagebanner-text .page-breadcrumb {
        display: flex;
        justify-content: center;
        gap: 10px;
        list-style: none;
        padding-left: 0
    }

        .pagebanner-text .page-breadcrumb li, .pagebanner-text .page-breadcrumb li a {
            font-weight: 600;
            color: var(--color-white)
        }

.page-title {
    color: var(--color-white);
    font-size: 52px;
    font-weight: 700;
}
/*--- header -----*/
.top-header {
    background: var(--theme-color)
}

    .top-header .top-header-a {
        font-size: 14px;
        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;
        }

.navbar.navbar-fixed {
    z-index: 999;
    transition: 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0;
    transition: 0.3s ease-in-out;
    color: var(--color-black)
}

.navbar-nav .nav-link.active {
    color: var(--color-black);
    font-weight: 600;
}

.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;
}

    .navbar-fixed.MenuStick .navbar-nav .nav-link {
        color: var(--color-black)
    }

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color)
}

/*.navbar-fixed.MenuStick .navbar-brand {
    color:#000

}*/
.navbar-fixed.MenuStick .nav-link {
    font-size: 14px;
}

/*.dropdown-toggle::after {
    font-family: "Font Awesome 6 Free";
    border: none;
    content: "\f078";
}*/

.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;
}

/*-- mainbanner ---*/
.bannersection {
    position: relative;
}

.bannersection-carousel {
    overflow: hidden;
    position: relative;
}

    .bannersection-carousel:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: transparent;
        --background-overlay: '';
        background-image: linear-gradient(180deg, #020202 0%, #00000000 40%);
        opacity: 0.6;
        z-index: 1
    }

.bannersection-text {
    position: absolute;
    width: 100%;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-text {
    width: 70%;
    margin: auto;
    text-align: center;
}

    .banner-text h1 {
        color: var(--color-white);
        font-size: 48px;
        font-weight: 600;
    }


    .banner-text p {
        margin: 20px 0;
        font-size: 18px;
        font-weight: 500;
        color: var(--color-white)
    }

/* ==== Feature =====*/
.feature-section-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

    .feature-section-flex .feature-section {
        display: flex;
        align-items: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

        .feature-section-flex .feature-section .icon {
            height: 50px;
            width: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

            .feature-section-flex .feature-section .icon i {
                font-size: 28px;
                color: var(--theme-color)
            }

.feature-content .feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/*@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.5, 1.5);*/
/* Adjust scale as desired */
/*}
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);*/
/* Adjust scale as desired */
/*}
}

.carousel-inner .carousel-item > img {
    -webkit-animation: zoom 20s linear infinite;*/
/* Adjust duration and timing function */
/*animation: zoom 20s linear infinite;
}*/


/****** About ****/
.about-img {
    position: relative;
    z-index: 1;
    left: -68px;
    display: inline-block;
}

.abour-award-box {
    background: var(--theme-color);
    display: flex;
    align-items: center;
    padding: 20px;
    width: 50%;
    justify-content: center;
    border-radius: 5px;
    gap: 23px;
    position: absolute;
    border: 6px solid #fff;
    bottom: 38px;
    left: 50px;
    animation: bounceleft 4s linear infinite;
}

.about-img .about-award-content h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 4px;
    border-bottom: 1px solid #fff;
    padding-bottom: 6px;
}

.about-img .about-award-content p {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.about-img .trip-award {
    position: absolute;
    height: 165px;
    border-radius: 50%;
    padding: 7px;
    background: #fff;
    width: auto;
    top: 50%;
    right: 22%;
    transform: translate(-50%, -50%);
    animation: bounce 4s linear infinite;
}

.about-counter {
    background: var(--theme-color);
    text-align: center;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    line-height: 81px;
    padding-top: 14px;
    border: 6px solid #fff;
    position: absolute;
    top: 0;
    right: 5%;
    animation: bounce 4s linear infinite;
}

.about-counter-content {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

    .about-counter-content h4 {
        font-size: 24px;
        font-weight: 700
    }

    .about-counter-content p {
        color: #fff;
        font-weight: 600;
    }
/*bounce-left-right-animation*/
@keyframes bounceleft {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    50% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

/*bounce-top-bottom-animation*/

@keyframes bounce {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

.number-list {
    margin-top: 10px;
    list-style: auto
}

    .number-list li {
        font-weight: 600;
    }

        .number-list li p {
            padding-top: 5px;
            font-weight: normal;
        }

        .number-list li::marker {
            color: var(--theme-color);
            font-weight: 600
        }
/*======= Package =============================*/
.flex-package-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
}

.package-section-block {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    padding: 15px;
    display:flex;
    justify-content:space-between;
    flex-direction:column
}

.package-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.package-content {
    padding-top: 15px
}

    .package-content .package-name {
        font-size: 16px;
        font-weight: 600;
        color: var(--color-black);

    }
        .package-content .package-name span{
            display:block;
            font-weight:400;
            font-size:14px;
        }

        .package-duration {
            display: flex;
            align-items: center;
            gap: 5px;
            margin: 10px 0;
        }

    .package-duration i {
        color: var(--theme-color)
    }

.ratings-block {
    display: flex;
    margin: 10px 0;
    gap: 10px;
}

    .ratings-block p {
        margin: 0;
    }

    .ratings-block ul {
        display: flex;
        gap: 3px;
        margin: 0;
        padding: 0;
        list-style: none
    }

    .ratings-block i {
        font-size: 14px;
        color: var(--theme-color)
    }

.price-block {
    display: flex;
    justify-content: space-between
}

.left-block p {
    margin: 0;
    font-weight: 600;
    color: var(--color-black);
    font-size: 18px;
}

    .left-block p del {
        color: var(--font-color);
        font-weight: normal;
        font-size: 15px;
    }


.list-style-one {
    list-style: none;
    padding-left: 0
}

    .list-style-one li {
        position: relative;
        margin-bottom: 10px;
        padding-left: 30px;
    }

    .list-style-one i {
        position: absolute;
        left: 0;
        top: 3px;
        color: var(--theme-color)
    }

    .list-style-one a {
        color: var(--font-color)
    }

    .list-style-one li a {
        color: var(--theme-color)
    }
/*========== activities ===========*/
.activities-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 2rem;
    justify-content: center;
    align-items: center;
}

.activities-block {
}

    .activities-block .activities-block-img {
        overflow: hidden;
        border-radius: 130px;
        transition: 0.3s ease-in-out;
    }

        .activities-block .activities-block-img img {
            transition: 0.3s ease-in-out;
            width: 100%;
        }

    .activities-block:hover .activities-block-img img {
        transform: scale(1.2);
        transition: 0.3s ease-in-out;
    }

.activities-section .activities-block h4 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 20px;
    text-align: center;
    margin: 0;
}

/**** 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;
}

.visa-country-block {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    background: var(--color-white)
}

    .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 3px 6px rgba(0, 0, 0, 0.2);
}

    .icon-flag img {
        height: 50px;
        width: 50px;
    }

.visa-img img {
    object-fit: cover;
    object-position: 0 0;
    height: 150px;
}

.visa-country-info {
    padding: 40px 15px 15px 15px;
    text-align: center;
    position: relative
}

.visa-country-name {
    color: var(--color-black);
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.visa-country-info p {
    margin: 0;
    font-size: 14px;
}

/* footer */
.footerpadding {
    background: var(--color-black)
}

.footer-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.footer-block .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white)
}

.footer-links ul li {
    margin-bottom: 10px;
}

footer-block p {
    font-size: 15px;
}

.footer-links ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #d3d3d3
}

.footer-links ul li:hover a {
    color: var(--color-white)
}


.copyrightblock {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #808080;
    text-align: center;
    position: relative;
    display:flex;
    justify-content:space-between
}
    .copyrightblock p {
        color: #d3d3d3
    }
    .copyrightblock .footer-social-link{
        display:flex;
        gap:10px;
    }

    .footerpadding {
        position: relative;
        border-top: 1px solid #757575;
    }

.footer-block {
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.testimonial-block {
    padding: 15px;
    border-radius: 16px;
    background: var(--color-white)
}

.testimonial-content .testi-title {
    font-size: 18px;
    font-weight: 600
}

.testimonial-content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-profile {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-img img {
    height: 65px;
    width: auto;
    border-radius: 50%;
}

.testimonial-bio p {
    margin: 0;
    color: var(--color-black) ;padding-bottom:5px;
    font-weight: 600;
}
table thead{
    background:var(--theme-color);color:var(--color-white)
}
.table > :not(caption) > * > *{
    border-bottom:0;
    text-align:center;
}
.table-visa {
    border-radius: 12px;
    overflow: hidden
}
    .table-visa tbody td{
        background:#eee;
        padding:15px;
    }
    /*----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 i{
        color:#fff;
        font-size:18px;
    }

    .backbtn img {
        height: 20px;
        width: auto;
    }

    .backbtn:hover {
        cursor: pointer;
        background-color: #333;
    }

    .backbtn:active {
        background-color: #555;
    }

    .backbtn.show {
        opacity: 1;
        visibility: visible;
    }
.whatsappcolor {
    background: #25d366 !important;
}
.whatsappbtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 99
}
    .whatsappbtn i{
        color:#fff;
        font-size:22px;
    }

    .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: 20px;
}

    .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-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: -60px;
}

.owl-nav button.owl-next {
    right: -60px;
}

/*********responsive ******/
@media (max-width: 767px) {
    .banner-text h1 {
        font-size: 30px;
    }

    .commonpadding {
        padding: 30px 0
    }


    .title-section {
        margin-top: 20px;
    }

        .title-section .main-title {
            font-size: 24px;
            font-weight: 600
        }

    .flex-package-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .feature-section-flex {
        flex-direction: column
    }

        .feature-section-flex .feature-section {
            justify-content: flex-start
        }

    .about-img {
        left: 0
    }

    .abour-award-box, .about-counter {
        display: none
    }

    .visa-info-section .title-section {
        margin-bottom: 15px;
    }

    p {
        font-size: 16px;
    }

    .copyrightblock {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        padding-bottom: 50px;
    }

    .footer-section {
        flex-direction: column
    }

    .footer-links ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

        .footer-links ul li a {
            padding-right: 10px;
            font-size: 16px;
        }


    .faq-accordion {
        padding-top: 5px;
    }

    .pagebanner-section img {
     /*
        object-fit: cover*/
    }

    .pagebanner-text {
        width: 100%;
    }

    .page-title {
        font-size: 24px;
    }
}


@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;
    }
}

@media (min-width:1200px) {
    .pad-lf-30 {
        padding-left: 35px;
    }
}

@media (min-width: 768px) and (max-width:991px) {

    .flex-feature {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 15px;
    }

    .banner-text h1 {
        font-size: 48px;
    }

    .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
    }
}

@media (min-width: 992px) and (max-width:1195px) {
    .bannersection {
        height: auto
    }

    .banner-text {
        width: 100%;
    }
}
