﻿:root {
    --color-white: #fff;
    --web-color2: #2f4e93;
    --font-color: #757575;
    --main-font: "DM Sans", sans-serif;
    --color-black: #000;
    --color-blue: #1e09d8;
    --theme-color: #125fcd;
    --theme-color2: #ffa704;
}

.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: 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: 16px;
    color: var(--color-white);
    padding: 10px 20px;
    display: inline-block;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 18px;
    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;
    }

.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-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: center;
    }

        .page-banner-text .banner-text h1 {
            color: var(--color-white);
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 2px;
        }

.bg-color {
    background: #ebeef5
}

.whatsappcolor {
    background: #25d366
}

ul {
    padding: 0;
    list-style: none
}

/*=====================   header ===================*/
header {
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .6), hsla(0, 0%, 63%, 0));
    z-index: 99;
}

.header-block, .header-block a {
    color: #fff;
}

.navbar-brand img {
    filter: brightness(100)
}


.header-info {
    display: flex;
    gap: 25px;
}

    .header-info .header-block {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-info .header-block .icon {
            height: 50px;
            width: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .header-info .header-block .info .title {
            margin-bottom: 0;
            font-weight: 500;
            font-size: 17px;
            color: var(--color-white)
        }


.header-block a:hover {
    opacity: 1;
}
/*============= Slider ================*/
.slider-carousel.owl-carousel .owl-item img {
    height: 100vh;
    object-fit: cover
}

.page-slider-section {
    position: relative
}

.page-banner-text {
    position: absolute;
    width: 60%;
    z-index: 99;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    justify-items: center;
    padding: 50px;
    background: radial-gradient( ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 70% );
}

    .page-banner-text .banner-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        color: var(--color-white);
    }

        .page-banner-text .banner-text .offer-text {
            display: flex;
            justify-content: center;
            font-size: 24px;
            font-weight: 400;
        }

            .page-banner-text .banner-text .offer-text .text-count {
                color: var(--theme-color2);
                text-transform: uppercase;
                font-weight: 600;
            }

    .page-banner-text .banner-text-h1 {
        font-size: 48px;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .page-banner-text .banner-text-p {
        font-size: 20px;
    }


.slider-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: 60px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.04);
    font-size: 19px;
}

    .slider-carousel.owl-carousel .owl-nav button:hover {
        background: var(--theme-color2) !important
    }

    .slider-carousel.owl-carousel .owl-nav button.owl-prev {
        left: 60px;
    }

    .slider-carousel.owl-carousel .owl-nav button.owl-next {
        right: 60px;
    }

.slider-carousel.owl-carousel .owl-dots {
    display: none
}


/*-- ===============mainbanner ==================---*/
.class-req {
    height: 70vh;
    object-fit: cover;
    object-position: center;
}

.bannersection {
    position: relative;
}

.bannersection-carousel {
    overflow: hidden;
    position: relative;
}

.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
}

.bannersection-text {
    position: absolute;
    width: 100%;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-text h1 {
    color: var(--color-white);
    font-size: 60px;
    font-weight: 500
}

    .banner-text h1 b {
        color: transparent;
        -webkit-text-stroke: 3px var(--color-white);
        font-weight: 900;
    }

.banner-text p {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white)
}

.banner-btn {
    justify-content: center;
}
/****================== 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;
}
/*------ testimonial -------*/
.testimonial-section {
    background: url("../images/testimonial-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0
}

.testimonial-carousel {
    margin-top: 20px;
}

.testimonial-block {
    padding: 15px;
    border-radius: 16px;
}

.testimonial-content p {
    font-weight: 400;
    color: #6e6e6e;
    font-size: 18px
}

.ratings-block {
    display: flex;
    margin: 10px 0;
    gap: 10px
}


    .ratings-block p {
        margin: 0
    }

    .ratings-block ul {
        display: flex;
        gap: 2px;
        margin: 0
    }

    .ratings-block i {
        font-size: 18px;
        color: #FF9900
    }


.testimonial-profile {
    display: flex;
    gap: 10px;
    align-items: center
}



.testimonial-bio p {
    margin: 0;
    color: var(--color-black);
    padding-bottom: 5px;
    font-weight: 600
}

.testimonial-content .testi-title {
    font-size: 18px;
    font-weight: 600;
}

.owl-carousel.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px
}

    .owl-carousel.testimonial-carousel .owl-nav button {
        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-color2) !important
    }

        .owl-carousel.testimonial-carousel .owl-nav button:hover {
            background: var(--theme-color) !important
        }

        .owl-carousel.testimonial-carousel .owl-nav button.owl-prev {
            left: 0
        }

        .owl-carousel.testimonial-carousel .owl-nav button.owl-next {
            left: 50px;
        }
/* =======================footer=========================== */
.footerpadding {
    background: #2f343c
}


.footer-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.topfootersection {
    padding: 25px 0;
    background: var(--color-black)
}

.explore-more {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
}

    .explore-more li a {
        color: var(--color-white)
    }

.mainfootersection {
    padding: 50px 0;
}

.footer-section .footer-block:first-child {
    width: 30%;
}


.footer-logo .navbar-brand {
    color: var(--theme-color)
}

.footer-block .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white)
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-block p {
    font-size: 16px;
    color: rgba(255,255,255,0.5)
}

    .footer-block p b {
        color: #fff;
    }

.footer-links ul li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.5)
}


.Footer-logo img {
    filter: brightness(100)
}

.footer-social-icon {
    display: flex;
    gap: 10px
}

    .footer-social-icon a {
        height: 35px;
        width: 35px;
        border-radius: 50%;
        display: inline-flex;
        background: #b7b7b7;
        align-items: center;
        justify-content: center;
        color: #2f343c
    }



    .footer-social-icon svg {
        fill: #b7b7b7;
    }

.copyrightblock {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #808080;
    text-align: center;
    position: relative;
}

    .copyrightblock p {
        color: var(--color-white)
    }

.footerpadding {
    position: relative;
}

.footer-links .icon-ul {
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.icon-ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
}

    .icon-ul li i {
        background: #b7b7b7;
        color: #2f343c;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        position: absolute;
        left: 0;
        top: 0;
        height: 25px;
        width: 25px;
        border-radius: 25px;
    }



/*============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;
    }

/***- 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
}


/*---================-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: 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-carousel .owl-nav button {
    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
    }




/*========= Cruise Design ============*/
.page-bannersection.cruise-bannersection img {
    height: 50vh;
    object-fit:cover;
}

.cruise-packages-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    justify-content: center;
    align-items: center
}

.cruise-packages-info {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 15px 0px;
    transition: .5s ease-in-out
}

    .cruise-packages-info .images .cruise-package-duration {
        background: #FF0000;
        color: #fff;
        padding: 5px 10px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1;
        border-radius: 8px;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 14px
    }

    .cruise-packages-info .images {
        position: relative;
        overflow: hidden
    }

        .cruise-packages-info .images img {
            height: 220px;
            width: 100%;
            transition: .5s ease-in-out
        }



    .cruise-packages-info .cruise-info-detail {
        padding: 15px
    }

        .cruise-packages-info .cruise-info-detail .cruise-package-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px
        }

        .cruise-packages-info .cruise-info-detail .cruise-package-price {
            display: flex;
            justify-content: space-between;
            align-items: flex-end
        }

            .cruise-packages-info .cruise-info-detail .cruise-package-price .price-block span {
                display: block;
                font-size: 14px;
                font-weight: 400;
                color: #858585
            }

            .cruise-packages-info .cruise-info-detail .cruise-package-price .price-block {
                font-weight: 900;
                font-size: 20px
            }

            .cruise-packages-info .cruise-info-detail .cruise-package-price .price-btn {
                display: flex;
                align-items: center;
                gap: 7px;
            }

                .cruise-packages-info .cruise-info-detail .cruise-package-price .price-btn a {
                    height: 34px;
                    width: 34px;
                    min-width: 34px;
                    max-width: 34px;
                    background: #eee;
                    display: flex;
                    align-items: center;
                    border-radius: 8px;
                    justify-content: center;
                }

                    .cruise-packages-info .cruise-info-detail .cruise-package-price .price-btn a:last-child {
                        background: #25d366;
                    }

                        .cruise-packages-info .cruise-info-detail .cruise-package-price .price-btn a:last-child img {
                            filter: invert(1)
                        }

                    .cruise-packages-info .cruise-info-detail .cruise-package-price .price-btn a img {
                        height: 24px;
                    }

.cruise-package-rating {
    display: flex;
    justify-content: space-between;
    color: var(--font-color);
    margin-bottom: 10px;
}

    .cruise-package-rating .rating-left i {
        color: #f36911;
    }

.cruise-package-price .theme-btn2 {
    padding: 8px 20px;
}

.cruise-list-carousel .owl-dots {
    display: flex;
    position: absolute;
    bottom: 10px;
    gap: 5px;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: center;
}

    .cruise-list-carousel .owl-dots button {
        height: 10px;
        width: 10px;
        background: rgba(0,0,0,0.8);
        border-radius: 15px;
    }
/*========= Detail Page Design =======*/
.detail-gallery-img img {
    height: 400px;
    border-radius: 8px;
}

.detail-gallery-carousel .owl-nav button.owl-prev {
    left: -20px
}

.detail-gallery-carousel .owl-nav button.owl-next {
    right: -20px
}

}
/*============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) {

    .page-banner-text .banner-text h1 {
        font-size: 30px;
    }

    .cruise-bannersection .page-banner-text .banner-text h1 {
        font-size: 28px;
    }

    .page-bannersection.cruise-bannersection img {
        height: 70vh
    }



    .cruise-packages-info .cruise-info-detail .cruise-package-name {
        margin-bottom: 10px
    }

    .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;
    }



    .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(2, 1fr);
        gap: 10px;
    }

    .top-header .top-header-a {
        display: block
    }

    .mobile-btn {
        display: none
    }

    .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
    }



    .cruise-packages-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .accordion-button {
        font-size: 15px;
    }

    .theme-btn, .theme-btn2 {
        font-size: 14px;
    }

    .navbar.navbar-fixed .container {
        justify-content: center
    }

    .cruise-packages-info .cruise-info-detail .cruise-package-price .price-block {
        font-size: 16px;
    }
}




@media(min-width:1200px) {
}

@media(max-width:991px) {


    .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;
    }
}


@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
    }

    .cruise-packages-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) and (max-width:1195px) {
    .bannersection {
        height: auto
    }

    .banner-text {
        width: 100%;
    }
}
@media (max-width: 992px) {.header-block .container {
    text-align: center;
    justify-content: center;
}

.navbar-brand img {
    height: 50px;
    width: auto
}

.header-block a {
    padding-bottom: 20px
}

.header-info .header-block .icon {
    display: none
}

.page-banner-text .banner-text .offer-text {
    font-size: 20px;
}

.header-block a {
    font-size: 14px;
}

.header-info .header-block .info .title {
    font-size: 16px;
}

.page-banner-text {
    width: 100%
}

    .page-banner-text .banner-text-h1 {
        font-size: 38px;
    }

.testimonial-block {
    text-align: center
}

.ratings-block, .testimonial-profile {
    justify-content: center;
}

.header-info {
    flex-wrap: wrap
}

.packages-section {
    grid-template-columns: repeat(1, 1fr);
}

.footer-section {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.backbtn {
    display: none
}

.activities-section {
    grid-template-columns: repeat(2, 1fr);
}

.feature-flex {
    flex-wrap: wrap
}

.activities-block .activities-block-img img {
    height: 160px
}

.footer-section .footer-block:first-child, .footer-section .footer-block {
    width: 100%
}

.footer-section .footer-block {
    margin-bottom: 15px;
}

.commonpadding {
    padding: 30px 0;
}

 

@media (min-width:768px) and (max-width:1024px) {
    .slider-carousel.owl-carousel .owl-item img {
        height: 70vh;
    }

    .page-banner-text {
        top: 40%
    }

    .page-banner-text {
        width: 100%;
    }

    .slider-carousel.owl-carousel .owl-nav button {
        display: none
    }

    .packages-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-block {
        text-align: center
    }

    .ratings-block, .testimonial-profile {
        justify-content: center;
    }

    .activities-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-flex {
        flex-wrap: wrap;
    }

    .footer-section {
        flex-direction: column;
    }

        .footer-section .footer-block:first-child {
            width: inherit
        }

        .footer-section .footer-block .flexul {
            display: flex;
            flex-wrap: wrap;
            column-gap: 30px;
        }
}
