@import url('../../css2-1');

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

a, a:hover {
    text-decoration: none;
}

button {
    border-radius: 0px;
    border: inherit;
    outline: none;
}

    button:focus {
        border-radius: 0px;
        border: inherit;
        outline: none;
        box-shadow: none;
    }

ul {
    margin: 0px;
    padding: 0px;
}

    ul li {
        list-style: none;
    }

input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

p {
    color: #474747;
    font-size: 16px;
    font-family: "Cabin", serif;
    line-height: 30px;
}


:root {
    --red: #d20009;
    --green: #52b788;
    --darkgreen: #03441b;
    --blue: #013863;
    --oldblack: #1c2a44;
}

.banner h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.banner h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--oldblack);
}


h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--oldblack);
}

.small-text {
    font-size: 22px;
    color: #000;
    font-weight: 800;
}

.heading-text {
    font-size: 48px;
    font-weight: 900;
    color: #000;
}

.text span {
    color: var(--darkgreen);
    font-weight: 600;
}

.section-heading {
    margin-bottom: 30px;
}

    .section-heading h3 {
        font-size: 30px;
        color: #000;
        font-weight: 700;
        text-align: center;
    }

.web-heading span {
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/*back to top css start*/


#myBtn {
    display: inline-block;
    background-color: #fff;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 44px;
    height: 44px;
    line-height: 44px;
    -webkit-animation: backto-top-bounce 4s infinite ease-in-out;
    animation: backto-top-bounce 4s infinite ease-in-out;
    box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
}

@-webkit-keyframes backto-top-bounce {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }

    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
}

@keyframes backto-top-bounce {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }

    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-5px);
    }
}


#myBtn i {
    font-size: 20px;
    color: var(--blue);
}

#myBtn:active {
    background-color: #555;
}

#myBtn.show {
    opacity: 1;
    visibility: visible;
}

/*back to top css end*/



/*-----------------top nav---------------*/
.top-nav li {
    list-style-type: none;
    float: left;
}

.top-menu-box {
    background: linear-gradient(180deg, #ff9326 0, #d35606 100%);
}

.top-nav {
    position: initial;
    font-size: 13px;
    height: auto;
    font-weight: 300;
    transition-duration: .3s;
    overflow: hidden;
}

.top-border {
    background-image: url('../images/icon/top-border.png');
}

.top-nav ul.pwdarea {
    text-align: right;
    float: right;
    margin-right: 0px;
    margin-bottom: 0px;
}

    .top-nav ul.pwdarea li {
        padding: 3px 8px 2px 8px;
        font-weight: 600;
        border-right: 1px solid #ffffff42;
        margin-bottom: 4px;
        margin-top: 4px;
    }

.top-menu-box:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    position: absolute;
    margin-left: -35px;
}

.top-nav ul.pwdarea li a {
    color: #fff;
}

    .top-nav ul.pwdarea li a img {
        width: 20px;
    }

.language {
    background: #00BCD4;
    margin: 0px 0 0 0;
    margin-left: 10px;
}

.pwdarea li .theame {
    display: block;
    border: 1px solid #eee;
    box-sizing: border-box;
    text-align: center;
    height: 22px;
    width: 22px;
    text-decoration: none;
    font-size: 12px;
    float: left;
    line-height: normal;
    background-color: #f58634;
    color: #fff !important;
}

.top-nav .defTheme {
    color: #fff;
    padding: 3px 6px;
}

.pwdarea li .contrast {
    background-color: #000;
}
/*-------------------end------------------*/

/*nav css start*/

nav {
    background-color: #fff;
    /*box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);*/
    background-image: url(/PwdContent/Content/Website/images/header_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 0px solid #ffffff;
}
/*.navbar-brand img{
    width: 100px;
    height:auto;
    top: -18px;
    position: absolute;
}*/
nav ul li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: system-ui;
}

nav ul li .nav-link {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(0 0 0 / 83%);
    font-family: "Cabin", serif;
}

.navbar-light .navbar-nav .nav-item {
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--blue);
}

.nav-login a {
    margin: 0px 10px;
}

.header-button i {
    margin-right: 5px;
}

/*nav css end*/

/*button css start*/

.header-button {
    border-radius: 25px;
    border: 1px solid var(--blue) !important;
    transition: 0.5s;
    padding: 10px 30px;
    color: #fff;
    background-color: var(--blue);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 0;
    font-weight: 600;
    font-size: 16px;
    transition: 0.5s;
}

.student-button {
    border-color: var(--oldblack) !important;
    background-color: var(--oldblack);
    color: #fff;
}

.header-button:hover {
    color: var(--blue);
    background-color: #fff;
}

.student-button:hover {
    color: var(--oldblack);
    background-color: #fff;
}

.login-button {
    border-radius: 25px;
    border: 1px solid var(--blue) !important;
    transition: 0.5s;
    padding: 10px 30px;
    color: var(--red);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 0;
    font-weight: 600;
    font-size: 16px;
}

    .login-button:before, .login-button:after {
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        z-index: -1;
        height: 100%;
        position: absolute;
        transform: scaleX(0);
        transition: 0.5s;
        background-color: var(--red);
    }

    .login-button:hover:before {
        transform: scaleX(1);
    }

    .login-button:hover:after {
        transform: scaleY(1);
    }

    .login-button:after {
        transform: scaleY(0);
    }

    .login-button:hover {
        color: #fff;
    }

.new-regidter {
    margin-top: 10px;
}

    .new-regidter a {
        background-color: #efeefe;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 15px;
        color: #5751e1;
        font-weight: 500;
    }

.btn-login {
    background-color: #d9534f;
    border-color: #d43f3a;
    display: inline-block;
    padding: 2px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
}
/*button css end*/

/*banner section css start*/

.banner {
    background: url(../images/innerpagebg3.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
    background-position: center;
}

.banner2 {
    background-image: url('../images/bg-login-img.jpg');
    /*background: url(../images/innerpagebg2.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0;
    background-position: center;
}

.registration {
    background-image: url('../images/bg_guest.jpg');
    /*background-repeat:repeat;
    background-size: cover;*/
    padding: 40px 0px 60px;
    /*background-position: center;*/
}

.banner .banner-image {
    text-align: right;
    position: relative;
}

.banner .banner-content p {
    color: #fff;
}

.button {
    margin-top: 0px;
}


.banner .owl-carousel .item img {
    border-radius: 10px;
}

.banner .banner-content {
    padding-right: 50px;
}

.banner .student-button {
    border-color: #fff !important;
    background-color: #fff;
    color: var(--oldblack);
}

    .banner .student-button:hover {
        border-color: #fff !important;
        color: #fff;
        background-color: transparent;
    }

.banner .banner-image:before {
    position: absolute;
    content: "";
    background-image: url(../images/cap.png);
    right: 110px;
    top: -82px;
    animation: mover2 2s infinite alternate;
    background-repeat: no-repeat;
    width: 139px;
    height: 136px;
}

.news {
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 25px;
    min-height: 220px;
    background-image: url('../images/icon/cream-pixels.png');
}

    .news .title .btn:hover {
        opacity: 0.5
    }

    .news .title .btn {
        color: #fff;
        float: right;
        position: absolute;
        right: 0;
        top: 11px;
    }

.title h4 {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding-right: 10px;
    line-height: 47px;
    text-transform: uppercase;
    margin-bottom: 0px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.title img {
    margin-right: 10px;
    width: 26px;
}

.news .title .toggle2,
.news .title .toggle {
    float: right;
    color: #fff;
    padding: 2px 10px;
    border: 1px dashed #fff;
    margin-top: 12px;
}

.news .title:after {
    display: none;
}

.news .foot {
    padding: 10px 15px 0px 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

    .news .foot a {
        color: #808080;
    }

        .news .foot a:hover {
            color: #e7740e;
        }

.news .title {
    margin: -15px -15px 20px -15px;
    padding: 0px 15px;
    border-radius: 25px 25px 0px 0px;
    max-height: 44px;
}

.title {
    position: relative;
}

.bg-primary {
    background-color: #1c1f4c !important;
}

.Important_Links li a:hover {
    color: #de5a02;
    background: #f0f0f0;
}

.Important_Links li a {
    background: #f7ece2;
    color: #002f5c;
    width: 100%;
    display: block;
    padding: 8px 0px 8px 45px;
    border-radius: 50px;
    position: relative;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease-out 0s;
}

    .Important_Links li a:hover {
        box-shadow: 4px 4px 0px 0px #cecece;
    }

.Important_Links li {
    list-style: none;
    display: block;
    margin-bottom: 0.4em;
}

    .Important_Links li a:before {
        content: "\f105";
        font-family: FontAwesome;
        margin-right: 6px;
        width: 22px;
        font-size: 12px;
        position: absolute;
        left: 9px;
        height: 22px;
        top: 9px;
        background: #e7740e;
        text-align: center;
        line-height: 22px;
        color: #fff;
        border-radius: 100px;
    }

.arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s linear;
}

.btn {
    /* background: #d9edf7 none repeat scroll 0 0; */
    border: 1px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--tg-heading-font-family);
    letter-spacing: 0;
    line-height: 1.12;
    margin-bottom: 0;
    padding: 10px 16px;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    border-radius: 4px;
    white-space: nowrap;
    /* box-shadow: 4px 4px 0px 0px #3D3D3D; */
    overflow: hidden;
    /* width: 99%; */
    background: #ff681a;
    text-transform: UPPERCASE;
}

.btn2 {
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--tg-heading-font-family);
    letter-spacing: 0;
    line-height: 1.12;
    margin-bottom: 0;
    padding: 10px 50px;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 4px 4px 0px 0px #3D3D3D;
    overflow: hidden;
    width: 99%;
    background: linear-gradient(to right, #ec4724, #f9d423);
}

    .btn2:hover {
        box-shadow: none !important;
    }

.tg-button-wrap:hover a {
    color: #fff;
}

.tg-button-wrap {
    position: relative;
    padding: 30px 0 0;
}

    .tg-button-wrap i {
        margin-left: 10px;
    }

    .tg-button-wrap .btn:hover {
        box-shadow: none !important;
    }

@keyframes mover2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translatex(-50px);
    }
}

.banner .bnr-button {
    margin-top: 30px;
}

.banner .header-button {
    margin-right: 20px;
}

/*banner section css end*/


/*-----------------------*/
.sso-login {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 14px;
}

.sso {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

.sso-login ul li {
    width: 50%;
    display: inline-block;
    padding: 0px 0px 0px 20px;
}

ul.Important_Links li {
    width: 100%;
}

.silder img {
    border-radius: 14px;
}

.Payment {
    padding: 0px 14px;
    /* box-shadow: 0px 20px 25px rgb(0 0 0 / 33%); */
    border-radius: 20px;
    /* background: #fff; */
    min-height: 200px;
    margin-top: 60px;
}

    .Payment .nav {
        /*! display: flex; */
        width: 100%;
    }

        .Payment .nav > li {
            width: 100%;
            margin: 5px;
        }

    .Payment .tab-content > .tab-pane {
        padding: 15px 0;
    }

    .Payment .nav-pills > li > a {
        text-align: center;
        padding: 10px 0px;
        position: relative;
        border-radius: 10px 10px 0 0;
        color: #de5a02;
        background: #fff;
        font-weight: bold;
        border-bottom: 2px solid #e3e3e3;
    }

    .Payment .nav > li > a:hover,
    .Payment .nav > li > a:hover {
        text-decoration: none;
        background-color: #de5a02;
        color: #fff;
    }

    .Payment .nav-pills > li > a:before {
        content: '';
        position: absolute;
        left: 0px;
        bottom: 0px;
        height: 2px;
        background-color: #fff;
        width: 0%;
        transition-duration: .3s;
    }

    .Payment .nav-pills > li > a:hover::before {
        width: 100%
    }

    .Payment .list {
        margin: 0;
        padding: 0;
    }

        .Payment .list li {
            list-style: none;
            display: block;
            margin-bottom: 1em;
        }

            .Payment .list li a {
                background: #fff;
                color: #002f5c;
                width: 100%;
                display: block;
                padding: 10px 0px 10px 45px;
                border-radius: 8px 20px 8px 20px;
                border: 1px solid #de5a02;
                position: relative;
                font-weight: 600;
                box-shadow: 0px 2px 9px rgb(0 0 0 / 15%);
                font-size: 15px;
                transition: all 0.3s ease-out 0s;
            }

                .Payment .list li a:hover {
                    box-shadow: none !important;
                }

                .Payment .list li a:hover {
                    color: #de5a02;
                }

                .Payment .list li a:before {
                    background: url(../images/icon/tick.png) left no-repeat;
                    content: "";
                    font-family: FontAwesome;
                    margin-right: 6px;
                    width: 18px;
                    position: absolute;
                    left: 15px;
                    height: 17px;
                    top: 13px;
                }

    .Payment .nav-pills > li > a.active {
        background: #de5a02;
        color: #fff;
    }

    .Payment .nav-pills > li > a {
        text-align: center;
        padding: 10px 25px;
        position: relative;
        border-radius: 10px 10px 0 0;
        color: #de5a02;
        background: #fff;
        font-weight: bold;
        border-bottom: 2px solid #e3e3e3;
    }

ul.list li {
    width: 100%;
}

.login-icon {
    text-align: center;
}

    .login-icon img {
        width: 80px;
        height: auto;
        border-radius: 100%;
    }
/*our-services css start*/

.our-services {
    margin-top: 80px
}

/

.our-services .service-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.our-services .service-area ul li {
    margin-right: 25px;
    width: 22.5%;
}

    .our-services .service-area ul li:last-child {
        margin-right: 0px;
    }

.our-services .service-option {
    box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
    background-color: #fff;
    padding: 30px;
    transition: 0.3s;
    border-radius: 5px;
}

    .our-services .service-option h4 {
        color: var(--blue);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 0px;
        transition: 0.3s;
    }

    .our-services .service-option i {
        color: var(--blue);
        font-size: 40px;
        margin-bottom: 20px;
        transition: 0.3s;
    }

    .our-services .service-option:hover {
        background-color: var(--blue);
    }

        .our-services .service-option:hover h4 {
            color: #fff;
        }

        .our-services .service-option:hover i {
            color: #fff;
        }

/*our-services css end*/

/*welcome-us css start*/

.welcome-us {
    margin-top: 80px;
}

    .welcome-us .about-content .about-option {
        margin-bottom: 15px;
    }

    .welcome-us .about-content .icon {
        height: 50px;
        width: 50px;
        background-color: var(--blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        animation: ripple-out 1.5s ease-in-out infinite;
        flex: none;
    }

@keyframes ripple-out {
    0% {
        box-shadow: 0 0 0 0 rgb(80 65 250 / 26%);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.welcome-us .about-content .icon i {
    color: #fff;
}

.welcome-us .about-content .text h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}

.welcome-us .about-content h4 {
    font-size: 18px;
    font-weight: 600;
}


/*welcome-us css end*/

/*number-counter css start*/

.number-counter {
    margin-top: 80px;
    background-image: url(../images/conunter-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

    .number-counter .counters {
        border-right: 1px solid #ffffff3b;
        padding: 40px;
    }

    .number-counter .counters-lst {
        border-right: 0px;
    }

    .number-counter .counters img {
        width: 50px;
    }

    .number-counter .counters h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0px;
        color: #fff;
    }

    .number-counter .counters .counter {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
    }

    .number-counter .col-lg-3 {
        padding: 0px;
    }


/*number-counter css end*/

/*----------------middle wrapper-------------*/
.middle-section {
    position: relative;
    padding: 70px 0px 80px;
    /* background-color: #00285e;*/
    background-image: url(/PwdContent/Content/Website/images/cbg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-block {
    background-color: #fcfcfc;
    border-radius: 7px;
    text-align: center;
    padding: 15px;
    background-image: url(https://img.freepik.com/free-vector/soft-yellow-watercolor-simple-texture-background_1055-16668.jpg);
    background-size: cover;
    border: 2px solid #ff681a;
    background-position: bottom;
}

.info-icon img {
    width: 60px;
    height: auto;
}

.info-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ff681a;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Cabin", serif;
}

.info-text p {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-family: 'Open Sans';
}
/*------------------------end----------------*/

/*-----------------------contact us-----------*/
.contact-box_wrapper {
    position: relative;
    padding: 60px 0px;
    background-image: url('../images/world-map-dark.png');
    background-position: center center;
    background-size: cover;
}

.contact-box {
    background-color: #ffffff;
    border: 1px solid #ff681a;
    border-radius: 10px;
    /* margin-top: 30px; */
    padding: 30px 25px;
    padding-left: 110px;
    position: relative;
    min-height: 250px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.contact-box_wrapper .outer-wrap {
    /* background-color: var(--theme-color); */
    border-radius: 10px;
    padding: 30px 0px 30px;
    margin-top: 0;
}

.contact-box:hover .contact-box_icon {
    background-color: #37d4d9;
}

.contact-box .contact-box_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
    background-color: #ff681a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    position: absolute;
    left: 30px;
}

.contact-box__text {
    font-size: 14px;
}

.contact-box_list li a {
    font-size: 14px;
    color: #ff681a;
}

/*------------------------end-------------------*/
/* --- Button CSS --- */

.button-85 {
    padding: 8px 20px;
    border: none;
    outline: none;
    color: rgb(255, 255, 255) !important;
    background: #ff681a;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 5px;
    box-shadow: 4px 4px 1px 0px rgba(0,78,196, 0.2);
    transition: 1s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-transform: uppercase;
    font-weight: 600;
}

    .button-85:before {
        content: "";
        background: linear-gradient( 45deg, #00b4ff, #ffdbbe, #fffebb, #d2f1c6, #bafff4, #a7a7a7, #e9d5ff, #a3829b, #001256 );
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        -webkit-filter: blur(5px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing-button-85 20s linear infinite;
        transition: opacity 0.3s ease-in-out;
        border-radius: 5px;
        touch-action: manipulation;
    }

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 5px;
}

.button-85:hover {
    background: linear-gradient(45deg, #2097f9 0%, #0c0a89 51%, #2097f9 100%);
    color: #fff;
}

/*---------------------about us-----------------------*/
.aboutus {
    position: relative;
    padding: 80px 0px 90px;
    /* background-image: url('../images/world-map-dark.png');
    background-position: center center;
    background-size: cover;*/
}

.about-content h4 {
    font-size: 35px;
    font-weight: 800;
    font-family: "Cabin", serif;
}

.about-content p {
    font-size: 16px;
    line-height: 30px;
    font-family: "Cabin", serif;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        width: 80px;
        height: auto;
        margin-right: 12px;
    }

    .logo .logo-text .logo-line {
        font-size: 20px;
        font-weight: 700;
        color: #e75d00;
        margin-bottom: 5px;
    }

    .logo .logo-text .logo-heading {
        font-size: 16px;
        margin-bottom: 0px;
    }
/*------------------------emd-------------------------*/

/*----------------------------important links ------------------*/
.our-partner {
    position: relative;
    padding: 60px 0px 60px;
    /* background: linear-gradient(360deg, rgb(161 252 255 / 55%) -7.91%, #ffffff 100%); */
}

    .our-partner h2 {
        font-size: 35px;
        font-weight: 200;
    }

        .our-partner h2 b {
            font-weight: 600;
        }

.owl-carousel .item {
    padding: 10px;
    border: 1px solid #ff681a82;
    text-align: center;
    border-radius: 0px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
    background: #fff;
}

owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .item img {
    width: 150px !important;
    margin: 0 auto;
}

/*-----------------------------end------------------------------*/

/*--------------------------------about page--------------------*/
.about-pradesh {
    padding: 60px 0px;
    position: relative;
    /* background-image: url('../images/world-map-dark.png'); */
    background-position: center center;
    background-size: cover;
}

.inner-pg-banner {
    height: 100px;
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.about-banner {
    background: url(../images/bre-tender.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center, center;
}

.banner-content {
    text-align: center;
}

    .banner-content h1 {
        font-size: 16px;
        font-weight: 400;
        color: #fff;
    }

    .banner-content .banner-link-page a:first-child {
        color: #ffffff;
    }

    .banner-content .banner-link-page a {
        font-size: 12px;
        font-weight: 400;
        margin: 0px 10px;
    }

        .banner-content .banner-link-page a:last-child {
            color: #fff;
        }

    .banner-content .banner-link-page i {
        color: #ff0022;
        font-size: 12px;
    }

.page-content h4 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Cabin", serif;
}

.page-content p {
    font-size: 16px;
    font-family: "Cabin", serif;
    line-height: 30px;
}

.about-list {
    padding-left: 35px;
}

    .about-list li {
        list-style: disc;
        padding-left: 0px;
        margin-bottom: 10px;
        font-size: 16px;
        font-family: "Cabin", serif;
        line-height: 30px;
    }
/*----------------------------------end-------------------------*/
/*------------------------gallery---------------------------*/
.gallery {
    position: relative;
    padding: 70px 0px 40px;
    /* background-image: url('../images/world-map-dark.png'); */
    background-position: center center;
    background-size: cover;
}

.media-event .date-count, img {
    max-width: 100%;
}

.mfp-close::after {
    position: absolute;
    content: "\f00d";
    height: 100%;
    width: 100%;
    font-family: "FontAwesome";
    font-size: 31px;
    font-weight: 200;
    right: -20px;
    margin-top: -25px;
}

.gallery-image {
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-video {
    position: relative;
    margin-bottom: 30px;
}

    .gallery-video img {
        border-radius: 10px;
    }

    .gallery-video .gallery-btn {
        padding: 10px 20px;
        border-radius: 35px;
        box-shadow: 0px 0px 15px 0px rgba(255, 104, 26, 0.15);
        background-color: var(--white-color);
        position: absolute;
        top: 10%;
        left: -55px;
    }

        .gallery-video .gallery-btn span {
            font-size: 20px;
            font-weight: 600;
        }

        .gallery-video .gallery-btn .play-btn {
            margin-left: 20px;
        }

            .gallery-video .gallery-btn .play-btn::before, .gallery-video .gallery-btn .play-btn::after {
                background-color: var(--border-color);
            }

            .gallery-video .gallery-btn .play-btn > i {
                background-color: var(--theme-color);
                color: var(--white-color);
                width: var(--icon-size, 50px);
                height: var(--icon-size, 50px);
                line-height: var(--icon-size, 50px);
                font-size: var(--icon-font-size, 1em);
            }

            .gallery-video .gallery-btn .play-btn:hover::before, .gallery-video .gallery-btn .play-btn:hover::after {
                background-color: var(--theme-color2);
            }

            .gallery-video .gallery-btn .play-btn:hover > i {
                background-color: var(--theme-color2);
            }

.gallery-style1 .title-area {
    max-width: 500px;
    margin-left: 0;
}

.gallery-style-2 {
    max-width: 1012px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}

    .gallery-style-2 .play-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .gallery-style-2 .play-btn > i {
            color: var(--white-color);
            width: var(--icon-size, 110px);
            height: var(--icon-size, 110px);
            line-height: var(--icon-size, 110px);
            background-color: rgba(255, 104, 26, 0.8);
        }

        .gallery-style-2 .play-btn:after, .gallery-style-2 .play-btn:before {
            background-color: rgba(255, 104, 26, 0.8);
        }

        .gallery-style-2 .play-btn:hover > i {
            background-color: rgba(55, 212, 217, 0.8);
        }

        .gallery-style-2 .play-btn:hover:after, .gallery-style-2 .play-btn:hover:before {
            background-color: rgba(55, 212, 217, 0.8);
        }

.gallery2 {
    position: relative;
}

    .gallery2 .shadow-color {
        bottom: 0;
    }

.shadow-color {
    width: 100%;
    height: 30%;
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.gallery3 {
    position: relative;
}

    .gallery3::after {
        content: "";
        width: 100%;
        height: 30%;
        background-color: var(--white-color);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 0;
    }

    .gallery3 .sec-subtitle {
        color: var(--theme-color2);
    }

    .gallery3 .sec-title,
    .gallery3 .sec-text {
        color: var(--white-color);
    }

.gallery-style4 .gallery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-style4 .title-area {
    margin-bottom: 30px;
}

.gallery-style4 .vs-btn {
    margin-top: 30px;
}

.gallery-style4 .gallery-text {
    --theme-color: #37d4d9;
    max-width: 595px;
    width: 100%;
    background-color: var(--white-color);
    padding: 60px 60px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.gallery-style4 .gallery-img {
    margin-left: -300px;
    margin-right: -100px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

    .gallery-style4 .gallery-img img {
        transition: 0.5s ease-in-out;
    }

    .gallery-style4 .gallery-img:hover img {
        transform: scale(1.1);
    }

.gallery-style4 .play-btn {
    position: absolute;
    top: 50%;
    right: 36%;
    transform: translateY(-50%);
}

    .gallery-style4 .play-btn > i {
        color: var(--white-color);
        width: var(--icon-size, 110px);
        height: var(--icon-size, 110px);
        line-height: var(--icon-size, 110px);
    }

.gallery-style4 .vs-btn.style3 {
    --theme-color: #ff681a;
}

.gallery-img5 {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

    .gallery-img5 .gallery-content {
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: rotateY(90deg);
        transform-origin: left top;
        transition: 0.5s ease-in-out;
    }

        .gallery-img5 .gallery-content i {
            font-size: 24px;
            color: var(--body-color);
            transition: 0.5s ease-in-out;
        }

            .gallery-img5 .gallery-content i:hover {
                color: var(--theme-color);
            }

    .gallery-img5 img {
        transition: 0.5s ease-in-out;
    }

    .gallery-img5:hover img {
        transform: scale(1.1);
    }

    .gallery-img5:hover .gallery-content {
        transform: rotateY(0deg);
    }

.gallery-mesonary .gallery-img5 {
    margin-bottom: 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
    .gallery-style4 .gallery-img {
        margin-right: 0;
    }

    .gallery-style4 .play-btn {
        right: 25%;
    }
}
/* Large devices */
@media (max-width: 1199px) {
    .gallery-video .gallery-btn {
        left: 0;
        border-radius: 0px 35px 35px 0;
    }

    .gallery-style4 .gallery-text {
        padding: 40px;
        max-width: 460px;
    }
}
/* Medium devices */
@media (max-width: 991px) {
    .gallery-style4 .gallery-content {
        display: block;
    }

    .gallery-style4 .gallery-img {
        margin-left: 0;
        margin-top: 30px;
    }

    .gallery-style4 .gallery-text {
        padding: 60px 30px;
        max-width: 100%;
        text-align: center;
    }

    .gallery-style4 .play-btn {
        left: 50%;
        right: unset;
        transform: translate(-50%, -50%);
    }

        .gallery-style4 .play-btn > i {
            width: 120px;
            height: 120px;
            line-height: 120px;
            font-size: 40px;
        }

    .gallery-style1 .title-area {
        max-width: 100%;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .gallery-style4 .play-btn {
        left: 50%;
        right: unset;
        transform: translate(-50%, -50%);
    }

        .gallery-style4 .play-btn > i {
            width: 80px;
            height: 80px;
            line-height: 80px;
            font-size: 24px;
        }

    .gallery-style4 .gallery-text {
        padding: 30px 15px;
    }
}
/*-------------------------------end---------------------*/
/*who-we-are css start*/

.who-we-are {
    background-image: url(../images/who-we-are-bg.jpg);
    background-repeat: no-repeat;
    background-position: left;
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
}

    .who-we-are:after {
        position: absolute;
        content: "";
        width: 181px;
        height: 173px;
        right: -40px;
        bottom: 100px;
        background-image: url(../images/who-we-are-after.png);
        background-repeat: no-repeat;
        -webkit-animation: backto-top-bounce2 5s infinite ease-in-out;
        animation: backto-top-bounce2 5s infinite ease-in-out;
        z-index: -1;
    }

@-webkit-keyframes backto-top-bounce2 {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-6px);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-6px);
    }
}

@keyframes backto-top-bounce {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-6px);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-6px);
    }
}

.who-we-are .who-images {
    padding-right: 30px;
}

    .who-we-are .who-images img {
        border-radius: 5px;
    }

.who-we-are .who-content {
    margin-bottom: 30px;
}

.who-we-are .visa-option {
    display: flex;
    background-color: whitesmoke;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 25px;
    min-height: 175px;
}

    .who-we-are .visa-option .visa-icon {
        margin-right: 10px;
    }

    .who-we-are .visa-option i {
        color: var(--blue);
        font-size: 20px;
    }

    .who-we-are .visa-option h4 {
        color: var(--oldblack);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        transition: 0.3s;
    }

        .who-we-are .visa-option h4 span {
            font-size: 14px;
        }

    .who-we-are .visa-option p {
        text-align: justify;
        margin-bottom: 0px;
    }

/*who-we-are css end*/

/*why css start*/

.why {
    margin-top: 80px;
}


    .why .why-box {
        box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
    }

        .why .why-box .why-image {
            position: relative;
        }

            .why .why-box .why-image:before {
                position: absolute;
                content: "";
                bottom: -30px;
                left: 0px;
                background-image: url(../images/shape.svg);
                width: 101%;
                height: 38%;
                z-index: 10;
                background-repeat: no-repeat;
            }

        .why .why-box .why-content {
            padding: 40px 20px;
        }

        .why .why-box h4 {
            color: var(--blue);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            transition: 0.3s;
        }

        .why .why-box p {
            margin-bottom: 0px;
        }


/*why css end*/

/*testimonial css start*/

.testimonial {
    margin-top: 80px;
}

    .testimonial .item:after {
        position: absolute;
        font-size: 48px;
        line-height: 80px;
        top: 28px;
        right: 40px;
        color: #e9edf3;
        font-family: 'Font Awesome 5 Free';
        font-weight: 600;
        content: '\f10e';
        background: #fff;
        padding-left: 15px;
        padding-right: 15px;
        -webkit-transition: all .45s ease-in-out;
        transition: all .45s ease-in-out;
    }

    .testimonial .content-star {
        margin-bottom: 30px;
    }

        .testimonial .content-star ul li {
            display: inline-block;
            margin-right: 5px;
            color: #333;
        }

            .testimonial .content-star ul li.active {
                color: var(--blue);
            }

            .testimonial .content-star ul li:last-child {
                margin-right: 0px;
            }

    .testimonial .testimonial-div .item {
        padding: 30px;
        border: 1px solid #e7e7e7;
        margin-top: 20px;
        margin-right: 15px;
        margin-left: 15px;
        background-color: #fff;
        box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
        border-radius: 5px;
    }

    .testimonial .testimonial-content h4 {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 20px;
    }

    .testimonial .testimonial-content p {
        text-align: justify;
        margin-bottom: 0px;
    }

    .testimonial .testimonial-man {
        padding-left: 50px;
        margin-top: 25px;
        background: #e9edf3;
        padding: 10px 30px;
        position: relative;
        align-items: center;
        -webkit-transition: all .45s ease-in-out;
        transition: all .45s ease-in-out;
    }


    .testimonial .testimonial-man {
        display: flex;
        align-items: center;
    }

        .testimonial .testimonial-man .testimonial-man-image {
            margin-right: 10px;
        }

            .testimonial .testimonial-man .testimonial-man-image img {
                width: 60px;
            }

        .testimonial .testimonial-man .testimonial-man-content h5 {
            font-size: 18px;
            font-weight: 600;
            color: var(--blue);
            margin-bottom: 0px;
        }

        .testimonial .testimonial-man .testimonial-man-content p {
            margin-bottom: 0px;
            color: #333;
        }


/*testimonial css end*/


/*footer-top css start*/

.footer-top {
    margin-top: 80px;
}

    .footer-top .top-contact {
        background: linear-gradient(179deg, #1c2a43, #465a7d);
        padding: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .footer-top .top-contact .content i {
            background-color: #fff;
            color: var(--oldblack);
            padding: 10px;
            border-radius: 50%;
            font-size: 36px;
            margin-right: 10px;
        }

        .footer-top .top-contact .content {
            display: flex;
            align-items: center;
        }

            .footer-top .top-contact .content h3 {
                font-size: 30px;
                font-weight: 700;
                color: #fff;
                margin-bottom: 0px;
            }

        .footer-top .top-contact .button .header-button {
            background-color: #fff;
            color: var(--blue);
            border-color: #fff !important;
        }

            .footer-top .top-contact .button .header-button:hover {
                background-color: transparent;
                color: #fff !important;
            }

/*footer-top css end*/


/*footer css start*/

.footer {
    background-color: #115378;
    /*margin-top: 80px;*/
    padding: 40px 0px 30px;
    position: relative;
    background-image: url('../images/slider/slider-2.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: 1;
}

    .footer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00050bf0;
        /* opacity: 0.75; */
        z-index: -1;
        border-top: 3px solid #ffffff;
    }

    .footer .footer-first {
        padding-right: 30px;
    }

.footer-social {
    margin-top: 30px;
}

.footer .footer-first p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 16px;
    font-family: "Cabin", serif;
    line-height: 30px;
}

.footer .footer-link {
    padding-left: 30px;
}

.footer .footer-about img {
    margin-bottom: 10px;
}

.footer .footer-about p {
    color: #fff;
    text-align: justify;
}

.footer .footer-social ul li {
    display: inline-block;
    margin-right: 10px;
}

    .footer .footer-social ul li a {
        height: 36px;
        width: 36px;
        background-color: #fff;
        color: #ffffff;
        line-height: 45px;
        text-align: center;
        display: block;
        border-radius: 5px;
    }

.blue-color {
    color: #3b5998 !important
}

.link-color {
    color: #0072b1 !important;
}

.instabg {
    background: linear-gradient(30deg, #f38334, #da2e7d 50%, #6b54c6);
}

.bg-black {
    color: #000 !important;
}

.footer .footer-social ul li a i {
    font-size: 28px;
    border-radius: 5px;
}

.footer .footer-first h3 {
    color: #FF9800;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 12px;
    font-family: "Cabin", serif;
}

.footer .footer-first ul li a {
    color: #ffffff;
    font-size: 16px;
    font-family: "Cabin", serif;
    line-height: 30px;
}

.footer .footer-first ul li {
    margin-bottom: 10px;
}

    .footer .footer-first ul li a:hover {
        color: #fff;
    }

.footer .contact-address {
    display: flex;
    margin-bottom: 8px;
}

    .footer .contact-address:last-child {
        margin-bottom: 0px;
    }

    .footer .contact-address .add-icon {
        margin-right: 13px;
        color: #fff;
        /* height: 40px; */
        /* width: 40px; */
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        /* background-color: #fff; */
        /* border-radius: 5px; */
        /* flex: none; */
    }

    .footer .contact-address h4 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 0px;
        transition: 0.3s;
    }

    .footer .contact-address .add-icon i {
        font-size: 13px;
        color: #ffffff;
    }

    .footer .contact-address .add-content {
        color: #fff;
    }

        .footer .contact-address .add-content p {
            margin-top: 0px;
            margin-bottom: 0px;
        }

            .footer .contact-address .add-content p a {
                color: #ffffff;
            }

                .footer .contact-address .add-content p a:hover {
                    color: #fff;
                }

.footer-bottom {
    padding: 8px 0px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, #ff9326 0, #d35606 100%);
}

    .footer-bottom p {
        margin-bottom: 0px;
        font-size: 14px;
    }

    .footer-bottom .copyright p {
        color: #ffffff;
    }

    .footer-bottom .poweredby {
        text-align: right;
        color: #acacac;
    }

        .footer-bottom .poweredby a {
            color: #797979;
        }

/*footer css end*/



/*Responsive css start*/

@media (max-width: 1400px) {
    nav ul li .nav-link {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .our-services .service-area ul li {
        width: 22%;
    }

    .our-services .service-option {
        padding: 25px 15px;
    }
}

@media (max-width: 1200px) {
    .header-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    nav ul li a {
        font-size: 14px;
    }
}


@media (max-width: 991px) {
    .banner {
        padding-top: 40px;
        padding-bottom: 0px;
    }

        .banner .banner-image {
            margin-top: 110px;
            text-align: left;
        }

            .banner .banner-image:before {
                left: 100px;
            }

        .banner .banner-content {
            padding-right: 0px;
        }

    .our-services .service-area ul li {
        width: 40%;
    }

    .our-services .service-area ul li {
        margin-right: 0px;
    }

    .our-services .service-option {
        margin: 10px;
    }

    .welcome-us .about-img {
        margin-bottom: 30px;
    }

    .about-content p:last-child {
        margin-bottom: 0px;
    }

    .number-counter .counters {
        border: 1px solid #ffffff3b;
    }

    .number-counter {
        padding: 50px 0px;
    }

        .number-counter .counters {
            margin: 15px;
        }

    .who-we-are {
        background-position: top left;
    }

        .who-we-are .who-images {
            padding-right: 0px;
            margin-bottom: 30px;
        }

    .why {
        margin-top: 0px;
    }

    .who-we-are:after {
        bottom: 200px;
    }

    .footer .footer-link {
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer .footer-first {
        margin-top: 30px;
    }

    .footer-top .top-contact {
        flex-wrap: wrap;
    }

        .footer-top .top-contact .content i {
            font-size: 18px;
        }

        .footer-top .top-contact .content h3 {
            font-size: 24px;
            font-weight: 600;
        }

        .footer-top .top-contact .content {
            margin-bottom: 15px;
        }
}

@media (max-width: 767px) {
    .time-date {
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
    }



    .inner-pg-banner {
        height: auto !important;
        display: flex;
        align-items: center;
        padding-top: 30px;
    }

















    .time {
        padding-left: 0px !important;
    }

    .booking-form {
        margin-bottom: 30px !important;
    }

        .booking-form .form-group input {
            margin-bottom: 30px;
        }

    .logo .logo-text .logo-heading {
        font-size: 9px;
    }

    .logo .logo-text .logo-line {
        font-size: 11px;
    }

    .about-content h4 {
        font-size: 25px;
    }

    .info-block {
        margin-bottom: 20px;
    }

    .registration {
        padding: 40px 0 60px;
    }

    .footer {
        padding: 0px 0px 30px;
    }

    .contact-box_wrapper {
        position: relative;
        padding: 0px 0px;
    }

    .contact-box {
        margin-bottom: 20px;
    }

    .package-layout1 .package-style2 {
        padding: 40px 0px 40px !important;
    }

    .room-title .price {
        font-size: 12px !important;
    }

    .button {
        display: none;
    }

    .silder {
        display: none;
    }

    .sso-login ul li {
        width: 100%;
        padding: 0px 0px 0px 0px;
    }

    .Payment {
        padding: 0px 0px;
        margin-top: 40px;
    }

    .banner2 {
        padding: 47px 0px 70px;
    }

    .navbar-brand img {
        width: 50px;
    }

    .navbar-brand img {
        top: 7px;
    }

    .navbar-nav {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .who-we-are {
        background-color: #fff;
        background-image: inherit;
    }

        .who-we-are .visa-option {
            min-height: auto;
        }

    .footer-bottom p {
        text-align: center;
    }

    .footer-bottom .poweredby {
        margin-top: 5px;
    }

    .number-counter .counters {
        padding: 25px;
    }

    .footer-top .top-contact .content {
        align-items: baseline;
    }

        .footer-top .top-contact .content i {
            display: none;
        }

    .who-we-are .lst-visa {
        margin-bottom: 0px;
    }

    .testimonial .testimonial-div .item {
        margin-right: 0px;
        margin-left: 0px;
    }
}

@media (max-width: 575px) {
    .our-services .service-area ul li {
        width: 50%;
    }

    .our-services .service-option {
        padding: 25px 8px;
    }

    .about-content p {
        /* text-align: justify; */
    }

    .who-content p {
        text-align: justify;
    }

    .banner h1 {
        font-size: 36px;
    }

    .banner h2 {
        font-size: 26px;
    }

    .footer-top .top-contact {
        padding: 30px;
    }

    .nav-login a {
        margin: 0px 5px;
    }

    .footer .contact-address {
        align-items: inherit;
    }

    .banner .header-button {
        margin-right: 15px;
    }
}

.ftright {
    /* width: 600px; */
    /* height: 40px; */
    /* background: #001825f2; */
    /* position: absolute; */
    /* right: 0px; */
    /* top: -40px; */
}

    .ftright:before {
        /* border-bottom: 40px solid #001825f2; */
        /* border-left: 40px solid transparent; */
        /* content: ""; */
        height: 0;
        left: -40px;
        position: absolute;
        top: 0px;
        width: 0;
    }
/*Responsive css end*/
/*top button animation css start*/

.button a {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    border: 0px solid transparent;
    text-transform: uppercase;
}

.button-desk img {
    width: 25px;
    margin-right: 8px;
}

.button-desk a {
    background: #ffffff;
    border: 2px solid #ff681a;
}

.glow-on-hover {
    cursor: pointer;
    position: relative;
    z-index: 0;
    color: #000 !important;
}

    .glow-on-hover:before {
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
    }

    .glow-on-hover:active {
        color: #000;
    }

        .glow-on-hover:active:after {
            background: transparent;
        }

    .glow-on-hover:before {
        opacity: 1;
    }

    .glow-on-hover:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #fff;
        left: 0;
        top: 0;
        border-radius: 10px;
    }

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/*---------------------------end-----------------*/

/*----------------------------booking---------------*/
.booking {
    padding: 60px 0px;
}

.destination-style2,
.destination-style3 {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .destination-style2::before,
    .destination-style3::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 202px;
        background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        border-radius: 0px 0px 10px 10px;
        bottom: 0;
        z-index: 1;
    }

    .destination-style2 .destination-img,
    .destination-style3 .destination-img {
        width: 100%;
        transition: all 1s ease-in-out 0s;
        min-height: 350px;
    }

    .destination-style2 .destination-info,
    .destination-style3 .destination-info {
        position: absolute;
        bottom: 40px;
        left: 30px;
        z-index: 2;
    }

    .destination-style2 .destination-name,
    .destination-style3 .destination-name {
        margin-bottom: 12px;
    }

        .destination-style2 .destination-name > a,
        .destination-style3 .destination-name > a {
            color: var(--white-color);
        }

            .destination-style2 .destination-name > a:hover,
            .destination-style3 .destination-name > a:hover {
                color: #fff;
            }

    .destination-style2 .destination-text,
    .destination-style3 .destination-text {
        margin-bottom: 18px;
        color: var(--white-color);
    }

    .destination-style2 .destination-price,
    .destination-style3 .destination-price {
        font-size: 36px;
        color: var(--theme-color);
        font-weight: 700;
    }

    .destination-style2:hover .destination-img {
        transform: scale(1.2) rotate(5deg);
        transition: all 1s ease-in-out 0s;
    }

    .destination-style2 .destination-name > a, .destination-style3 .destination-name > a {
        color: #ffffff;
        font-size: 18px;
    }

    .destination-style2 .destination-name, .destination-style3 .destination-name {
        margin-bottom: 12px;
    }

.info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.info-btn {
    background-color: #ff681a;
    color: #fff;
    padding: 3px 15px;
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    position: relative;
}

    .info-btn:hover {
        color: #fff;
    }

#nav-tabContent .destination-style2 .destination-img, .destination-style3 .destination-img {
    width: 100%;
    transition: all 1s ease-in-out 0s;
}

.destination-style2 .destination-text, .destination-style3 .destination-text {
    margin-bottom: 18px;
    color: #fff;
}

.info-content p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}

.destination-style2 .destination-info, .destination-style3 .destination-info {
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 1;
}

.left-menu-ser {
    background-color: #fff;
    box-shadow: 0 1px 16px 0 rgb(0 0 0 / 7%);
    /* padding: 30px; */
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0px;
    z-index: 2;
}

.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

input::placeholder {
    color: #000 !important;
    opacity: 1;
}

#openPopup {
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 10;
}



.destination-style2, .destination-style3 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 17px;
    z-index: unset;
}

.close {
    cursor: pointer;
    float: right;
    font-size: 20px;
    background: none;
    border: none;
    color: #fff;
}

.loader {
    margin-top: 10px;
    font-size: 1.2em;
}

#nav-tabContent .destination-style2 .destination-info, .destination-style3 .destination-info {
    position: absolute;
    bottom: -5px;
    left: 0px;
    z-index: 1;
}

.booking-form {
    max-width: 900px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    /* background-image: url(https://i.imgur.com/8z1tx3u.jpg); */
    background-size: cover;
    border-radius: 5px;
    z-index: 20;
    border: 1px solid #dddddd;
    background-color: #d7d7d7;
    position: static;
}

.breadcumb-wrapper {
    padding-top: 30px;
    padding-bottom: 10px;
    text-align: center;
    background-color: var(--title-color);
}

.nav-body {
    width: 100%;
    background: #fff;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 12px 30px;
    margin-top: 8px;
    position: absolute;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-top: 2px solid #f5863400;
}

.nav-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-form-body {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 10%);
    padding: 40px 0px 10px;
}

.nav-tabs {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
    border: none;
}

.booking-form .form-group {
    position: relative;
    margin-bottom: -12px;
    margin-top: 10px;
}

.tab {
    margin: 0 20px;
    text-align: center;
    cursor: pointer;
}

.tabform {
    margin: 0 20px;
    text-align: center;
    cursor: pointer;
}

.tab img {
    display: block;
    margin: 0px auto 5px;
    width: 30px;
}

.tab span {
    display: block;
    transition: color 0.3s, text-decoration 0.3s;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.tab.active span {
    color: #ff8846;
    /* text-decoration: underline; */
    font-weight: 600;
}

.tab span:hover {
    color: #ff7b00; /* Hover color */
}

.tab-content {
    margin-top: 20px;
    /*text-align: center;*/
}

.content {
    display: none; /* Hide all content by default */
}

    .content.active {
        display: block; /* Show active content */
    }

.tourdetmaintit span {
    font-weight: 400;
    font-size: 18px;
}

.tourdetails {
    border-bottom: 1px solid #cecece;
    margin-bottom: 15px;
    background: #c80707;
}

.tourdetmaintit {
    text-align: left;
    max-width: 97%;
    margin: 0 auto;
    padding: 15px 0;
    background: transparent !important;
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}


@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1200px;
        margin: 1.75rem auto;
    }
}

@media only screen and (min-width: 1200px) {
    .booking-form .form-control {
        width: 180px !important;
    }

    .tab {
        margin: 0px 20px 0px;
    }

    .nav-body {
        height: 80px;
    }

    .package-layout1 .package-style2 {
        padding: 70px 0px 60px !important;
    }
}

@media only screen and (max-width: 1024px) {
    .booking-form .form-control {
        width: 240px !important;
    }

    .tab {
        margin: 0px 20px 21px;
    }

    .nav-body {
        height: 70px;
    }

    .package-layout1 .package-style2 {
        padding: 40px 0px 60px !important;
    }
}

@media only screen and (max-width: 1600px) {
    .booking-form .form-control {
        width: 200px;
    }

    .tabform {
        margin: 0px 10px;
    }
}

@media (max-width: 767px) {
    .nav-tabs {
        margin-top: 0px;
        display: flex;
        flex-wrap: nowrap;
        overflow: scroll;
        width: 100%;
    }

    .nav-body {
        width: 100%;
        padding: 5px 0px;
        margin-top: 10px;
    }

    .tab span {
        font-size: 10px;
        margin-bottom: 9px;
        text-transform: uppercase;
        font-weight: 600 !important;
        !i;
        !;
    }

    .booking-form .form-group select {
        margin-bottom: 16px;
        border-radius: 40px;
    }

    .nav-form-body {
        padding: 50px 10px 10px;
    }

    .breadcumb-wrapper {
        padding-bottom: 5px;
    }

    .space, .space-top {
        padding-top: 70px;
    }

    .tab {
        margin-bottom: 0px;
    }

    .nav-tabs {
        background-color: #fff;
        border-radius: 0px 0px 0px;
        border-bottom: 0px solid #e9e9e9;
        text-align: center;
        gap: 10px;
    }

    .tab-content {
        margin-top: 40px;
    }

    .booking-form .submit-btn {
        margin-bottom: 20px;
    }

    .booking-form .form-control {
        width: 160px !important;
        display: flex;
    }
}

.booking-form input[type="date"].form-control + .form-label {
    opacity: 1;
    top: 10px;
}

.booking-form .form-label {
    position: absolute;
    top: -18px;
    left: 10px;
    opacity: 10;
    color: #ff8846;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    height: 15px;
    line-height: 15px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    margin-top: 2px;
}

.booking-form input[type="date"].form-control:invalid {
    color: rgb(0 0 0);
}

.booking-form input[type="date"].form-control {
    padding-top: 0px;
}

.booking-form .form-group input {
    padding: 0px 0px 0px 10px;
}

.booking-form .form-control {
    height: 35px;
    padding: 0px 10px;
    border: none;
    font-size: 14px;
    border-radius: 2px;
    color: #000000;
    -webkit-box-shadow: 0px 0px 0px 2px transparent;
    box-shadow: 0px 0px 0px 2px transparent;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid #e7e7e7;
    width: 300px;
}

.booking-form .submit-btn {
    color: #fff;
    background-color: #ff681a;
    font-weight: 700;
    height: 40px;
    line-height: 24px;
    padding: 8px 20px;
    /* width: 100%; */
    border-radius: 40px;
    border: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.3px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    display: inline-block;
}
/*----------------------------end----------------*/

/*------------------------circuit house booking--------*/
.book-room-now {
    position: relative;
    /* padding: 20px; */
    border-radius: 14px;
    /* border: 1px solid #f30000;*/
}

.total-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
    border-bottom: 1px dashed #ffccb1;
    padding: 7px 0px;
}

    .total-person span {
        font-size: 16px;
        font-weight: 600;
        color: #000;
    }

.promocode {
    display: flex;
    align-items: center;
}

input[type=radio] ~ label {
    margin-right: 30px;
    font-size: 12px;
}

.hidden-section {
    display: none;
}

.book-room-now h3 {
    margin: 0 0px 0 0px;
    border-radius: 14px 14px 0 0;
    padding: 0px 0px 10px;
    /* background: #bc0000; */
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}

.total-book {
    padding: 20px;
    border: 1px solid #C9E4E9;
    background: #F1FDFF;
    box-shadow: 8px 8px 0px 0px #C9E4E9;
    border-radius: 20px;
    transition: all 0.3s ease-out 0s;
}

    .total-book:hover {
        box-shadow: none !important;
    }

.paper {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px #0000002e;
    display: flex;
    flex-direction: column;
    padding: 0px 10px 10px;
}

.main-shadow {
    border: 1px solid #f2f2f2;
    background: #ffffff;
    box-shadow: 0 1px 12px rgba(56, 65, 74, 0.15);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-out 0s;
    border: 1px solid #f58634;
}

/*.main-shadow:hover {
        box-shadow: none !important;
    }*/

.package-layout1 .package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-layout1 .package-style2 {
    padding: 40px 60px 60px;
    /*border-top: 1px solid #EEEEEE;*/
}

.package-layout1 .package-top .title-area .sec-title {
    margin-bottom: 20px;
}

.sec-title {
    margin: -0.2em 0 15px 0;
}

.package-layout1 .package-top .title-area {
    margin-bottom: 0;
}

.package-layout1 .package-style2 .package-img .package-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 24px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.package-layout1 .package-meta ul li a i {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 30px;
    font-size: 16px;
    margin-right: 0;
    text-align: center;
    color: #bc0000;
}

.package-layout1 .package-meta ul li:not(:last-child) {
    margin-bottom: 15px;
}

.package-layout1 .package-meta ul {
    padding-left: 0px;
}

    .package-layout1 .package-meta ul li {
        list-style: none;
    }

        .package-layout1 .package-meta ul li a {
            padding-left: 35px;
            display: inline-block;
            color: #000;
            font-size: 15px;
        }

.package-meta a:last-child {
    margin-right: 0;
}

.package-meta a {
    margin-right: 20px;
    position: relative;
}

.package-layout1 .package-style2 .package-img .price-box .price-text {
    color: var(--white-color);
    margin-bottom: 0;
    font-size: 16px;
}

.package-layout1 .package-meta ul li a strong {
    margin-right: 5px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.details-btn {
    color: #fff;
    background-color: #ff681a;
    font-weight: 700;
    height: 35px;
    padding: 0px 30px 10px;
    width: 100%;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.3px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    display: inline-block;
    line-height: 35px;
    margin-bottom: 20px;
}

.sub-buttons {
    display: flex;
    align-items: center;
}

.title-btn {
    margin-right: 12px;
}

.package-layout1 .package-style2 .package-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    max-height: 220px;
}

.room-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    background-color: #f0fafa;
    padding: 10px;
    border-radius: 4px;
}

    .room-title .price {
        font-size: 15px;
    }

    .room-title a {
        font-size: 17px;
        color: #ff681a;
        font-weight: 600;
    }

.myvtnn {
    border: 1px solid #e6e6e6;
    padding: 3px 7px;
    text-align: left;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    background-color: #f8f8f8;
}

#nav-tabContent .radioselect, .form-control, .form-select, textarea, input {
    height: 35px;
    padding: 0 30px 0 25px;
    padding-right: 20px;
    border-radius: 6px;
    color: #3d3b3b;
    border: 1px solid #5a5858;
    background-color: #ffffff;
    font-size: 14px;
    width: 100%;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

label {
    margin-bottom: 5px;
    margin-top: 5px;
    display: block;
    color: var(--title-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    color: #191919;
}

.vs-btn.style8 {
    background-color: #ff681a;
    margin-bottom: 20px;
}

    .vs-btn.style8:hover {
        color: #fff;
    }

.bg-blue {
    background-color: #467ccd !important;
}

.vs-btn {
    border: none;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    font-family: var(--title-font);
    background-color: var(--body-color);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
}

.book-button {
    text-align: center;
    position: relative;
}

.divide-line {
    text-align: center;
    position: relative;
}

    .divide-line:before {
        content: "";
        position: absolute;
        left: 10px;
        top: -63px;
        font-size: 18px;
        line-height: 30px;
        color: #9fa9ba;
        font-weight: 400;
        background-color: #d9d9d9;
        width: 1px;
        height: 160px;
    }

@media (max-width: 767px) {
    .divide-line:before {
        display: none;
    }












    .room-title {
        margin-top: 10px;
    }
}

.book-heading h4 {
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 10px;
}

.row-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-heading h5 {
    font-size: 20px;
    font-weight: 600;
    /* border-bottom: 1px solid #d0d0d0; */
    padding-bottom: 10px;
    text-align: center;
}

.height-200 {
    height: 220px;
}

.book-heading p {
    font-size: 12px;
    color: #ff0000;
}

.form-select,
select {
    display: block;
    width: 100%;
    line-height: 1.5;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 26px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}


.book-check {
    margin-bottom: 20px;
}

    .book-check h5 {
        font-size: 18px;
    }

.red {
    color: #ff0000;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

.time {
    /* background-image: url('../images/icon/clock2.png'); */
    background-repeat: no-repeat;
    background-position: left center;
    float: left;
    padding-left: 24px;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding-top: 7px;
}

.span_text {
    font-weight: 800;
    color: #ff681a;
}

.page-content h4 {
    position: relative;
    padding-bottom: 15px;
}

    .page-content h4::before {
        content: "";
        height: 2px;
        border-radius: 50px;
        background-color: #ff681a;
        position: absolute;
        bottom: 0;
    }

    .page-content h4::after {
        content: "";
        height: 2px;
        border-radius: 50px;
        background-color: #ff681a;
        position: absolute;
        bottom: 0;
    }

    .page-content h4::after {
        width: 55px;
        left: 20px;
    }

    .page-content h4::before {
        width: 15px;
        left: 0;
    }

.error-message {
    color: #ff0000;
    font-size: 13px;
    font-weight: 500;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, #f8f0eb 100%);
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 5px 17px;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    background-color: #ff681a;
    color: #fff;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 600;
    /* text-align: center; */
    margin: 0 auto;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 5px .75rem 10px;
    border-top: 0px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.navbar-brand {
    padding-top: 4px;
    padding-bottom: 2px;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 20px 1rem 0px;
}
/*----------------------------end--------------------*/



button.btn-danger.btn-sm.ms-2 {
    margin-top: 6px;
}


.pwdups {
    margin-bottom: 4px !important;
    color: #FF5722;
    font-weight: 600;
    text-transform: uppercase;
}


.dropdown-item {
    display: block;
    width: 100%;
    padding: 5px 7px;
    clear: both;
    font-weight: 500;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.marquee_1 {
    font-size: 16px;
    padding: 7px 0px 7px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(180deg, #ff9326 0, #d35606 100%);
    position: relative;
    font-family: "Cabin", serif;
    border-right: 2px solid #fff;
}

.marquee {
    font-size: 14px;
    padding: 8px 0px 0px 0px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: Poppins; */
}



.info-portal {
    text-align: center;
    background: #fff;
    padding: 6px;
    border-radius: 2px;
    border-bottom: 0px solid #ff681a;
}


.portal {
    padding: 40px 0px 30px;
}


.mainheadings {
    font-size: 35px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 800;
    font-family: "Cabin", serif;
}

.mainheadings1 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    font-family: "Cabin", serif;
}


.gradient-7 {
    color: #ff681a;
}


.mmc {
    background: linear-gradient(180deg, #ff9326 0, #d35606 100%);
}


@media only screen and (max-width: 600px) {
    .mmc {
        background: #fff;
    }



    .modal-title {
        margin-bottom: 0;
        line-height: 1.5;
        font-size: 18px !important;
        font-weight: 600;
        /* text-align: center; */
        margin: 0 auto;
    }



    .marquee {
        font-size: 14px;
        padding: 8px 0px 0px 0px;
        color: #000000;
        font-weight: 600;
    }

    .aboutus {
        position: relative;
        padding: 40px 0px 90px !important;
    }

    .info-portal {
        text-align: center;
        background: #fff;
        padding: 6px;
        border-radius: 2px;
        border-bottom: 0px solid #ff681a;
        margin-bottom: 30px;
    }

    .middle-section {
        position: relative;
        padding: 40px 0px 40px;
        background-color: #00285e;
    }

    .mainheadings {
        font-size: 25px;
        margin-bottom: 30px;
        color: #fff;
        font-weight: 800;
        font-family: "Cabin", serif;
    }

    .mainheadings1 {
        font-size: 25px;
    }


    .booking-form .submit-btn {
        color: #fff;
        background-color: #ff681a;
        font-weight: 700;
        padding: 6px 18px;
        border-radius: 40px;
        border: none;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1.3px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
        display: inline-block;
        height: auto;
        line-height: normal;
        margin-bottom: 0px;
    }

    .main-shadow {
        margin-top: 10px;
    }


    .hbc {
        width: 100% !important;
        height: 220px !important;
    }
}










.mega-hover {
    position: relative;
    overflow: hidden;
}

    .mega-hover img {
        transition: all 2s ease;
        transform: scale(1)
    }

    .mega-hover:after, .mega-hover:before {
        content: "";
        position: absolute;
        pointer-events: none;
        opacity: 1;
        z-index: 3;
        transform: rotate(5deg)
    }

    .mega-hover:before {
        top: -10%;
        right: 51%;
        bottom: -10%;
        left: 50%;
        background: rgba(255,255,255,.3)
    }

    .mega-hover:after {
        top: 50%;
        right: -10%;
        bottom: 50%;
        left: -10%;
        background: rgba(255,255,255,.6)
    }

    .mega-hover:hover:before {
        left: 0;
        right: 0;
        opacity: 0;
        transition: all 900ms linear
    }

    .mega-hover:hover:after {
        top: 0;
        bottom: 0;
        opacity: 0;
        transition: all 900ms linear
    }

    .mega-hover:hover img {
        transform: scale(1.05);
    }



.img-shadow1 {
    box-shadow: .34px .94px 68px rgba(35,31,32,.1)
}

@keyframes newlabel {
    0% {
        background-color: var(--theme-color)
    }

    50% {
        background-color: var(--theme-color2)
    }

    100% {
        background-color: var(--theme-color)
    }
}



.pgallerys {
    padding: 5px;
    font-size: 20px;
    text-align: center;
    margin: 0;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(180deg, #ff9326 0, #d35606 100%);
}

.info-icons {
    text-align: center;
    transition: .7s;
    box-shadow: -7px 1px 34px rgb(0 0 0 / 12%);
    padding: 1px 0px;
}


.portals {
    padding: 30px 0px 70px;
    background: linear-gradient(360deg, rgb(255 87 34 / 8%) -7.91%, #ffffff 100%);
}

.bg-orange-dark {
    background-color: #ff681a;
    padding: 6px;
    text-align: center;
}


.external {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}


a.external:hover {
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}


.info-block {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    background: #fff;
}

    .info-block:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }



.hbc {
    width: 100% !important;
    height: 225px !important;
    !i;
    !;
}


.form-group label {
    font-weight: 600;
    text-align: left;
}


.tp-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Cabin", serif;
}

.act-listing li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
    margin-right: 15px;
    font-size: 14px;
}

    .act-listing li::before {
        content: "";
        width: 6px;
        height: 6px;
        outline: 4px solid #ff681ad9;
        background-color: #ffffff;
        border-radius: 50%;
        position: absolute;
        left: 5px;
        top: 10px;
    }


.sas {
    margin-bottom: 20px;
}




.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #ffffff;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) center / 1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: 10;
    filter: invert(1);
}
