/*
Sliding Navigation
https://bootstrapious.com/p/bootstrap-sidebar
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
@import url('https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps:wght@400;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); */
@font-face {
    font-family: 'Pacifico';
    src: url('../fonts/Pacifico.ttf') format('truetype');
}

body {
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Oleo Script Swash Caps', cursive; */
    background: #f0f0f0;
    font-size: 0.8rem;
}

@media (display-mode: fullscreen) {
    html.body {
        height: 100%;
        scroll-behavior: smooth;
    }
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    font-family: 'Poppins', sans-serif;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 1px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.navbar-collapse {
    -ms-flex-positive: 0.85 !important;
    flex-grow: 0.85 !important;
}

.navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 12px;
    padding: 10px 19px;
}

@media only screen and (max-width: 1099px) and (min-width: 992px) {
    .navbar-collapse .navbar-nav .nav-item .nav-link {
        padding: 10px 11px;
    }
}

.navbar-collapse .navbar-nav .nav-item .nav-link.menu {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.navbar-collapse .navbar-nav .nav-item .nav-link.menu i {
    position: relative;
    background-color: #fff;
    /* color: #ff0a81; */
    color: #003399;
    font-size: 28px;
    padding: 0;
    width: auto;
    height: auto;
    border-radius: 0;
}

.navbar-collapse .navbar-nav .nav-item .nav-link.menu:hover {
    /* color: #ff0a81; */
    color: #003399;
}

.navbar-collapse .navbar-nav .nav-item .nav-link.menu:hover i {
    font-size: 20px;
    /* background-color: rgba(255, 10, 129, 0.8); */
    background-color: rgba(0, 51, 153, 0.8);
    color: #fff;
    padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -255px;
    height: 100vh;
    z-index: 1022;
    background: #ecebdd;
    color: #303030;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    /* background: rgba(154, 140, 23, 0.8); */
    background: rgba(0, 51, 153, 0.8);
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: rgba(154, 140, 23, 0.3);
    color: #ff0a81;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1021;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 6px 45px 6px 0;
    background: #fff;
    text-align: center;
}

#sidebar .sidebar-header img {
    height: 60px;
}

#sidebar ul.components {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
}

#sidebar ul.components #dismiss {
    width: auto;
    height: auto;
    line-height: normal;
    text-align: left;
    color: inherit;
    background: inherit;
    position: relative;
    top: 0;
    right: 0;
    cursor: pointer;
    -webkit-transition: all 0;
    -o-transition: all 0;
    transition: all 0;
}

#sidebar ul.components #dismiss:hover {
    /* background-color: #ff0a81; */
    background-color: #003399;
    color: #fff;
}

#sidebar ul p {
    color: #101010;
    padding: 0 10px;
    font-size: 1.0em;
}

#sidebar ul p i {
    /* color: #ff0a81; */
    color: #003399;
}

#sidebar ul li a {
    padding: 5px 10px;
    font-size: 0.9em;
    display: block;
}

#sidebar ul li a:active,
#sidebar ul li a:focus {
    background: #ff0a81;
    color: #fff;
}

#sidebar ul li a:hover {
    color: #fff;
    background: #ff0a81;
}

#sidebar ul li a i {
    float: left;
    top: 3px;
    margin-right: 5px;
    position: relative;
    /* color: #ff0a81; */
    color: #003399;
}

#sidebar ul li a:hover i {
    color: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #ff0a81;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.8em !important;
    padding-left: 30px !important;
    background: #e8c9d8;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.8em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #9a8c17;
    color: #fff;
}

a.download:hover {
    background: #fff;
    color: #303030;
}

a.article {
    background: #ff0a81;
    color: #fff;
}

a.article:hover {
    background: #fff !important;
    color: #303030 !important;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    /* padding: 20px; */
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}


/* ---------------------------------------------------
    RITESH STYLE
----------------------------------------------------- */

.bg-nav {
    background-color: #fff;
}

.hamburger {
    padding: 0 15px 0 0;
    background-color: transparent;
    position: absolute;
    display: none;
}

.brand {
    height: 80px;
    margin: 4px 0;
}

.brand img {
    height: 100%;
}

@media only screen and (max-width: 991px) {
    .hamburger {
        padding: 0 15px 0 0;
        background-color: transparent;
        position: absolute;
        display: block;
    }

    .brand {
        height: 60px;
        margin: 2px 10px 2px 40px;
    }
}

button,
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

.slide-card .owl-nav,
.slide-card .owl-dots {
    display: none;
}

.slide-card #demos .owl-dots {
    display: block;
}

.slide-card .owl-stage {
    margin-left: 15px;
    /* padding-left: 0 !important; */
    /* padding-top: 15px;
    padding-bottom: 15px; */
}

.slide-card .owl-item {
    margin-right: 15px !important;
}

.show-all-bar {
    position: relative;
    width: 100%;
    padding: 5px 0px 5px 10px;
    margin: 0 auto 10px auto;
    box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.2);
    font-size: 11px;
    color: #555;
    letter-spacing: 0.5px;
}

.card-cat {
    padding: 0px 20px 0px 20px;
    z-index: 0;
}

.card-cat .col-6 {
    padding: 0px 6px 2px 6px;
}

.card-cat .cat-link {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 26px;
    /* background-color: #ff0a81; */
    background-color: #003399;
    box-shadow: 0 0 10px #fff;
}

.card-cat .cat-link:hover {
    /* background-color: #9a8c17; */
    background-color: #ff0a81;
}

.card-cat .card {
    border: 0px none;
    padding: 15px 5px 15px 5px;
    margin-bottom: 25px;
    cursor: pointer;
    border-radius: 10px;
}

.card-cat .card:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.card-cat .card-body {
    padding: 5px;
    text-align: center;
}

.card-cat .card-body h5 {
    font-size: 18px;
    height: 44px;
    overflow: hidden;
    margin: 5px 0;
}

.card-cat .card-body .card-text {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.6em;
    color: #333;
    height: 100px;
    overflow: auto;
}

.card-cat .card-img-top {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    border-radius: 50%;
}

@media only screen and (min-width: 1200px) {
    .card-cat .card-img-top {
        height: 250px;
        width: 250px;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 1025px) {
    .card-cat .card-img-top {
        height: 230px;
        width: 230px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 992px) {
    .card-cat .card-img-top {
        height: 220px;
        width: 220px;
    }
}

@media only screen and (max-width: 991px) {
    .card-cat .card-img-top {
        height: 175px;
        width: 175px;
    }

    .card-cat .card-body h5 {
        font-size: 14px;
        height: 36px;
    }

    .card-cat .card-body .card-text {
        font-size: 0.9em;
        font-weight: 500;
        line-height: 1.5em;
    }
}

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

@media only screen and (max-width: 767px) and (min-width: 680px) {}

@media only screen and (max-width: 679px) and (min-width: 600px) {}

@media only screen and (max-width: 599px) {}

@media only screen and (max-width: 500px) {}

@media only screen and (max-width: 400px) {
    .card-cat .card-img-top {
        height: 130px;
        width: 130px;
    }
}

.footer-tab {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.1);
}

.footer-tab .tab-btn {
    width: 20%;
    height: 100%;
    float: left;
    padding: 0px 10px;
    text-align: center;
    cursor: pointer;
    font-size: 11px;
    color: #555;
}

.footer-tab .tab-btn:hover,
.footer-tab .tab-btn:focus {
    /* color: #ff0a81; */
    color: #003399;
}

.footer-tab .tab-btn a {
    width: 100%;
    display: block;
    transition: .3s;
}

.footer-tab .tab-btn i {
    font-size: 20px;
    padding: 7px 0 3px 0;
}

@media only screen and (min-width: 1025px) {
    .footer-tab {
        display: none;
    }
}

.go-back-link {
    position: absolute;
    left: 50px;
    padding: 0 8px;
    color: rgba(255, 0, 0, 0.6);
    font-size: 18px;
    font-weight: normal;
    cursor: pointer;
}

.go-back-link:hover,
.go-back-link:focus {
    color: rgba(255, 0, 0, 0.8);
}

@media only screen and (min-width: 992px) {
    .go-back-link {
        left: 65px;
    }
}

.card-cate {
    margin: 10px 0px 10px 0px;
    position: relative;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
    padding: 0 15px 10px 15px;
}

.card-cate .card {
    border-radius: 0px;
    overflow: hidden;
}

.card-cate .card-body {
    padding: 0;
}

.card-cate .card-body .cate-img img {
    width: 120%;
    object-fit: cover;
}

.card-cate .fc,
.card-cate .sc,
.card-cate .tc {
    float: left;
}

.card-cate .fc {
    width: 60%;
    height: 200px;
}

.card-cate .sc {
    width: 40%;
    height: 100px;
}

.card-cate .tc {
    width: 40%;
    height: 100px;
    position: absolute;
    right: 0;
    top: 100px;
}

.card-cate .card.fc {
    border-top: 5px solid #e7fbc0;
    border-right: 0px none;
    border-bottom: 5px solid #e7fbc0;
    border-left: 5px solid #e7fbc0;
}

.card-cate .card.sc {
    border-top: 5px solid #e7fbc0;
    border-right: 5px solid #e7fbc0;
    border-bottom: 5px solid #e7fbc0;
    border-left: 5px solid #e7fbc0;
}

.card-cate .card.tc {
    border-top: 0px none;
    border-right: 5px solid #e7fbc0;
    border-bottom: 5px solid #e7fbc0;
    border-left: 5px solid #e7fbc0;
}

.card-cate .card.fc img {
    height: 200px;
    object-position: -35px center;
}

.card-cate .card.sc img {
    height: 100px;
    object-position: -20px center;
}

.card-cate .card.tc img {
    height: 100px;
    object-position: -25px center;
}

.card-cate .card.tc .cate-img span {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 40px 0 0 0;
}

.card-cate .cate-sum {
    font-size: 12px;
    color: #333;
    padding: 5px 10px;
}

.card-cate .cate-sum p {
    background-color: rgba(238, 28, 36, 0.1);
    border-radius: 4px;
    padding: 3px 7px;
    color: rgba(238, 28, 36, 0.8);
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
    margin: 10px 0;
}

.card-cate .cate-share {
    font-size: 10px;
    color: #555;
    padding: 5px 0px;
}

.card-cate .cate-share .cate-share-i {
    float: left;
    padding: 0px 10px;
    text-align: center;
    cursor: pointer;
}

.card-cate .cate-share .cate-share-i:hover {
    color: #ee1c24;
}

.card-cate .cate-share .cate-share-i i {
    font-size: 12px;
}

.card-cate .cate-share .cate-share-wa {
    float: left;
    padding: 4px 14px;
    border-radius: 20px;
    margin-left: 5px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background-image: linear-gradient(to right, #25d266, #02b561);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    cursor: pointer;
}

.card-cate .cate-share .cate-share-wa:hover {
    background-image: linear-gradient(to left, #25d266, #02b561);
}

.card-cate .cate-share .cate-share-wa i {
    font-size: 16px;
    font-weight: 600;
    padding: 0 4px 0 0;
}

.card-cate .card-like {
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 8px 0 0 0;
    position: absolute;
    z-index: 9;
    right: 8px;
    top: 8px;
    cursor: pointer;
}

.card-cate .card-like i {
    font-size: 20px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
}

.card-cate .card-like:hover i,
.card-cate .card-like:focus i {
    color: rgba(238, 28, 36, 0.8);
}

.banner-cont {
    position: absolute;
    left: 20px;
    top: 40%;
    z-index: 1;
}

.banner-cont .banner-text {
    /* font-family: 'Oleo Script Swash Caps', cursive; */
    font-family: 'Pacifico';
    font-size: 38px;
    color: #003399;
    margin-bottom: 18px;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
    line-height: 38px;
}
.banner-cont .banner-text small {
    color: #ff0066;
}

.banner-cont .banner-text small {
    font-size: 22px;
}

.banner-cont .banner-cont-btn {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 26px;
    /* background-color: #ff0a81; */
    background-color: #003399;
    box-shadow: 0 0 10px #fff;
}

.banner-cont .banner-cont-btn:hover {
    color: #fff;
    /* background-color: #9a8c17; */
    background-color: #ff0a81;
}

@media only screen and (max-width: 991px) {
    .banner-cont {
        left: 15px;
        top: 35%;
    }

    .banner-cont .banner-text {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 28px;
    }

    .banner-cont .banner-text small {
        font-size: 18px;
    }

    .banner-cont .banner-cont-btn {
        font-size: 13px;
        padding: 8px 15px;
    }
}

.form-control {
    font-size: 0.8rem;
    padding: 5px 10px;
}

.modal-footer {
    justify-content: center;
}

.modal-footer button {
    font-weight: 500;
    padding: 6px 24px;
    border-radius: 26px;
}

.modal-footer button[type=submit] {
    /* background-color: #ff0a81;
    border-color: #ff0a81; */
    background-color: #003399;
    border-color: #003399;
}

.modal-footer button[type=submit]:hover,
.modal-footer button[type=submit]:active {
    /* background-color: #9a8c17 !important;
    border-color: #9a8c17 !important; */
    background-color: #ff0a81 !important;
    border-color: #ff0a81 !important;
}

.enquiry-modal .modal-body .form-group .form-label {
    /* color: #ff0a81; */
    color: #003399;
    position: relative;
}

.enquiry-modal .modal-body .form-group .form-label span {
    color: #ff0000;
    font-size: 18px;
    position: absolute;
    top: 0;
    left: auto;
    right: auto;
    margin: 1px 0 0 5px;
}

.enquiry-modal .modal-body .form-group .form-checkbox {
    width: 50%;
    float: left;
}

.enquiry-modal .modal-header small {
    /* color: #9a8c17; */
    color: #ff0a81;
}

.enquiry-modal .modal-header .close {
    float: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #ff0000;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
}

.enquiry-modal .modal-header .close:hover {
    /* color: #9a8c17; */
    color: #ff0a81;
}

.section-heading {
    /* font-family: 'Oleo Script Swash Caps', cursive; */
    font-family: 'Pacifico';
    font-size: 36px;
    /* color: #ff0a81; */
    color: #003399;
    text-align: center;
    position: relative;
    width: 100%;
    padding: 5px 10px;
    margin: 10px auto 10px auto;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 991px) {
    .section-heading {
        font-size: 26px;
    }
}

.about-img {
    background-image: url(../images/about-img2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgb(0, 0, 0, 0.3);
}

.about-sec p {
    font-size: 14px;
    color: #300330;
    line-height: 24px;
    text-align: justify;
    margin: 15px 0;
    font-weight: 400;
    padding: 5px;
}

@media only screen and (max-width: 991px) {
    .about-img {
        height: 200px;
    }

    .about-sec p {
        font-size: 12px;
        line-height: 20px;
    }
}


/* Photo Gallery */

.gallery-sec {
    margin: 0px;
    padding: 0 48px;
}

.gallery-sec .owl-carousel .owl-item {
    border-radius: 10px;
    padding: 6px 0;
}

.gallery-sec .owl-carousel .owl-item img {
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.gallery-sec .owl-carousel .owl-stage-outer {
    z-index: 1;
}

.gallery-sec .owl-carousel .owl-nav {
    position: absolute;
    top: 0;
    left: -48px;
    right: -48px;
    bottom: 0;
    z-index: 0;
}

.gallery-sec .owl-carousel .owl-nav .owl-prev,
.gallery-sec .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 35%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
}

.gallery-sec .owl-carousel .owl-nav .owl-prev:hover,
.gallery-sec .owl-carousel .owl-nav .owl-next:hover {
    background-color: rgba(255, 10, 129, 0.6);
}

.gallery-sec .owl-carousel .owl-nav .owl-prev {
    left: 0;
}

.gallery-sec .owl-carousel .owl-nav .owl-next {
    right: 0;
}

.gallery-sec .owl-carousel .owl-nav .owl-prev span,
.gallery-sec .owl-carousel .owl-nav .owl-next span {
    font-size: 36px;
    position: absolute;
    top: -8px;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-sec .owl-carousel .owl-dots {
    display: none;
}


/* bootstrap mod: carousel controls */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2322313F' stroke-miterlimit='10' stroke-width='2' viewBox='0 0 34.589 66.349'%3E%3Cpath d='M34.168.8 1.7 33.268 34.168 65.735'/%3E%3C/svg%3E");
    height: 100px;
}

.modal.photo-gallery-modal .carousel-control-prev-icon,
.modal.photo-gallery-modal .carousel-control-next-icon {
    filter: brightness(100);
}

.carousel-control-next-icon {
    transform: rotate(180deg);
}


/* small - display 2  */

@media (max-width: 767px) {

    #gallery .carousel-inner .carousel-item-right.active,
    #gallery .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    #gallery .carousel-inner .carousel-item-left.active,
    #gallery .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}


/* medium - display 3  */

@media (min-width: 768px) {

    #gallery .carousel-inner .carousel-item-right.active,
    #gallery .carousel-inner .carousel-item-next {
        transform: translateX(33.33333%);
    }

    #gallery .carousel-inner .carousel-item-left.active,
    #gallery .carousel-inner .carousel-item-prev {
        transform: translateX(-33.33333%);
    }
}


/* large - display 4 */

@media (min-width: 992px) {

    #gallery .carousel-inner .carousel-item-right.active,
    #gallery .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    #gallery .carousel-inner .carousel-item-left.active,
    #gallery .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

#gallery .carousel-inner .carousel-item-right,
#gallery .carousel-inner .carousel-item-left {
    transform: translateX(0);
}


/* gallery slider */

#gallery .carousel-inner .carousel-item.active,
#gallery .carousel-inner .carousel-item-next,
#gallery .carousel-inner .carousel-item-prev {
    display: flex;
}

@media (max-width: 768px) {
    #gallery .carousel-inner .carousel-item>div {
        display: block;
    }

    /* #gallery .carousel-inner .carousel-item>div:first-child {
        display: block;
        text-align: center;
    } */
}

#gallery .carousel-inner .carousel-item .col-6 {
    padding: 0 5px;
}

#gallery .carousel-inner .carousel-item .col-6 img {
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}


/* modal carousel */

.modal .carousel-indicators {
    margin: 0;
    bottom: -34px;
    left: auto;
    display: none;
}

.modal .carousel-indicators>li {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    background: transparent;
    margin-right: 0;
    margin-left: 10px;
}

.modal .carousel-indicators>li.active {
    background: #fff;
}

.modal .close,
.modal .carousel-control-prev,
.modal .carousel-control-next {
    opacity: 1;
}

@media (min-width: 992px) {
    .modal .carousel-control-prev {
        left: -110px;
    }

    .modal .carousel-control-next {
        right: -110px;
    }
}


/* modal mods */

.photo-gallery-modal.modal {
    background: rgba(34, 49, 63, 0.9);
    padding-right: 0px !important;
}

.photo-gallery-modal .modal-dialog {
    max-width: 90% !important;
    margin: 0 auto;
}

.photo-gallery-modal .modal-header {
    border: none !important;
}

.photo-gallery-modal .modal-content {
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
}

.photo-gallery-modal .modal-body {
    padding: 0 !important;
}

.photo-gallery-modal .close img {
    max-width: 20px;
    max-height: 20px;
}

.photo-gallery-modal .modal-footer {
    padding: 2rem 0;
    border: none !important;
}


/* bootstrap mod addons */

.w-90 {
    width: 90%;
}


/* Video Gallery */

.video-sec {
    margin-bottom: 0px;
}

.video-sec .col-sm-6,
.video-sec .col-sm-3,
.video-sec .col-sm-4,
.video-sec .col-xs-6 {
    float: left;
    margin-bottom: 15px;
}

.video-sec .col-sm-6 h6 {
    margin: 15px 0;
    text-align: center;
}

.video-sec video {
    width: 100%;
    /* height: 200px; */
    background-color: #000;
}


/* Testimonial */

.testimoni-sec {
    margin-bottom: 0px;
}

@media (max-width: 575px) {
    .testimoni-sec #testimoni {
        margin-top: 15px;
    }
}

@media (min-width: 576px) {

    .testimoni-sec .col-sm-4,
    .testimoni-sec .col-sm-8 {
        float: left;
    }
}

.testimoni-sec .owl-carousel .owl-dots {
    display: none;
}

.testimoni-sec .owl-carousel .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.testimoni-sec .owl-carousel .owl-nav .owl-prev,
.testimoni-sec .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
}

.testimoni-sec .owl-carousel .owl-nav .owl-prev:hover,
.testimoni-sec .owl-carousel .owl-nav .owl-next:hover {
    background-color: rgba(255, 10, 129, 0.6);
}

.testimoni-sec .owl-carousel .owl-nav .owl-prev {
    left: 0;
}

.testimoni-sec .owl-carousel .owl-nav .owl-next {
    right: 0;
}

.testimoni-sec .owl-carousel .owl-nav .owl-prev span,
.testimoni-sec .owl-carousel .owl-nav .owl-next span {
    font-size: 36px;
    position: absolute;
    top: -8px;
    bottom: 0;
    left: 0;
    right: 0;
}

.testimoni-sec .owl-carousel .testi-item {
    padding: 5px 30px 5px 40px;
    position: relative;
}

.testimoni-sec .owl-carousel .testi-item img.quote {
    width: 30px;
    position: absolute;
    left: 30px;
    top: 60px;
}

.testimoni-sec .owl-carousel .testi-item img.quote-end {
    width: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.testimoni-sec .owl-carousel .testi-item .item-head {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 5px 0;
}

.testimoni-sec .owl-carousel .testi-item .item-body {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #300330;
}

.testimoni-sec .owl-carousel .testi-item .testi-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 3px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.testimoni-sec .owl-carousel .testi-item .testi-photo img {
    position: relative;
    width: 100%;
    opacity: 0.3;
}

.testimoni-sec .owl-carousel .testi-item .testi-photo .testi-number {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    padding: 6px 0 0 0;
    margin: 0 auto;
    background-color: #ff0a81;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    right: -100px;
    left: 0;
    top: 10px;
    width: 30px;
    height: 30px;
}

.testimoni-sec .testimoni-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}


/* Contact Us */

.contact-sec {
    margin-bottom: 0px;
}

@media (min-width: 992px) {

    .contact-sec .col-sm-1,
    .contact-sec .col-sm-2,
    .contact-sec .col-sm-3,
    .contact-sec .col-sm-4,
    .contact-sec .col-sm-5,
    .contact-sec .col-sm-6,
    .contact-sec .col-sm-7,
    .contact-sec .col-sm-8,
    .contact-sec .col-sm-9,
    .contact-sec .col-sm-10,
    .contact-sec .col-sm-11,
    .contact-sec .col-xs-1,
    .contact-sec .col-xs-2,
    .contact-sec .col-xs-3,
    .contact-sec .col-xs-4,
    .contact-sec .col-xs-5,
    .contact-sec .col-xs-6,
    .contact-sec .col-xs-7,
    .contact-sec .col-xs-8,
    .contact-sec .col-xs-9,
    .contact-sec .col-xs-10,
    .contact-sec .col-xs-11 {
        float: left;
    }
}

@media (max-width: 991px) {
    .col-12 {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 480px) {
    .contact-sec .contact-form .col-xs-6 {
        width: 50%;
    }
}

@media (max-width: 479px) {
    .contact-sec .contact-form .col-xs-6 {
        width: 100%;
    }
}

.contact-sec .contact-detail {
    padding: 3px 0 10px 45px;
    position: relative;
}

.contact-sec .contact-detail img {
    width: 32px;
    position: absolute;
    left: 0;
    top: 2px;
}

.contact-sec .contact-detail .con-head {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 1px;
}

.contact-sec .contact-detail .con-body {
    font-size: 14px;
    font-weight: 400;
    color: #300330;
}

.contact-sec .contact-detail .con-body i {
    /* color: #ff0a81; */
    color: #003399;
}

.contact-sec .contact-detail .con-body a {
    color: #300330;
}

.contact-sec .contact-detail .con-body a:hover {
    /* color: #ff0a81; */
    color: #003399;
}

.contact-sec .col-12 {
    margin-bottom: 30px;
}

.contact-sec form {
    padding: 15px;
    background-color: #fafafa;
    border-radius: 10px;
}

.contact-sec form button {
    font-weight: 500;
    padding: 6px 24px;
    border-radius: 26px;
}

.contact-sec form button[type=submit] {
    /* background-color: #ff0a81;
    border-color: #ff0a81; */
    background-color: #003399;
    border-color: #003399;
}

.contact-sec form button[type=submit]:hover,
.contact-sec form button[type=submit]:active {
    /* background-color: #9a8c17 !important;
    border-color: #9a8c17 !important; */
    background-color: #ff0a81 !important;
    border-color: #ff0a81 !important;
}

.contact-sec .google-map {
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.contact-sec .google-map iframe {
    border-radius: 10px;
}

.sectionid {
    width: 100%;
    height: 70px;
    background-image: url("../images/gap5.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center 10px;
    opacity: 0.8;
    filter: drop-shadow(0px 0px 2px #ccc) sepia(0.1);
}

.sectionid#home {
    width: 100%;
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .sectionid {
        height: 50px;
    }
}

.page-end-space {
    width: 100%;
    background-color: #101010;
    border-top: 1px solid #292929;
}

.page-end-space .inside {
    width: 100%;
    height: 60px;
    background-image: url("../images/gap1.png");
    background-repeat: repeat;
    background-size: contain;
    background-position: center 0px;
    filter: sepia(0.6) opacity(0.15);
}

.copyright {
    font-size: 12px;
    color: #909090;
    font-weight: 400;
    background: #101010;
    padding: 10px 0;
}

.copyright .col-sm-6 {
    float: left;
    text-align: right;
}

.copyright .socialm {
    width: 100%;
    text-align: left;
}

@media only screen and (max-width: 575px) {
    .copyright .col-sm-6 {
        float: left;
        text-align: center;
    }

    .copyright .socialm {
        width: 100%;
        text-align: center;
    }
}

.copyright .socialm a:hover i {
    color: #909090 !important;
}

.copyright .socialm ul {
    padding: 0;
    margin: 10px 0 0 0;
}

.copyright .socialm ul li {
    margin-left: 10px;
    display: inline-block;
}

.copyright .socialm ul li i {
    font-size: 20px;
}

.copyright .socialm ul li i.fa-facebook {
    color: #527dbd;
}

.copyright .socialm ul li i.fa-twitter {
    color: #1da1f2;
}

.copyright .socialm ul li i.fa-google-plus {
    color: #dd4b39;
}

.copyright .socialm ul li i.fa-vimeo {
    color: #1ab7ea;
}

#conSubmit {
    position: absolute;
    top: 5%;
    left: 0;
    right: 20px;
    margin: 0 0 0 auto;
    font-size: 11px;
    font-weight: 600;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
}

@media only screen and (max-width: 991px) {
    #conSubmit {
        top: 1%;
    }
}

#enqSubmit {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 400;
    /* color: #fff; */
    width: 75%;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 3px 0;
    border-radius: 20px;
}

.hidden {
    display: none;
}

.whatsapp-btn {
    position: fixed;
    bottom: 58px;
    right: 5px;
    width: 46px;
    height: 46px;
    z-index: 999;
    border-radius: 50%;
}

.whatsapp-btn a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.whatsapp-btn a:hover,
.whatsapp-btn a:active,
.whatsapp-btn a:focus {
    box-shadow: 0 0 10px rgba(255, 10, 129, 0.8);
}

.whatsapp-btn img.whatsappIcon {
    width: 100%;
    border-radius: 50%;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
    color: #a94442;
}

.has-error .help-block ul {
    margin: 0;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.8);
}


/* Owl Video */

.owl-carousel .owl-video-tn {
    background-size: cover;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
}

.owl-video-frame {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.owl-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
}

.owl-dot:hover span {
    background-color: rgba(154, 140, 23, 0.6) !important;
}

.owl-dot span {
    width: 11px;
    height: 11px;
    background-color: #ccc;
    border-radius: 50%;
    display: block;
    margin: 5px 3px;
}

.owl-dot.active span {
    background-color: rgba(255, 10, 129, 0.8) !important;
}


/* Owl Items Height Width */

.slide-card .owl-carousel .item-video video,
.slide-card .owl-carousel .item img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.5);
}

.slide-card .owl-carousel .item-video,
.slide-card .owl-carousel .item {
    height: 460px;
    padding: 5px 0;
}

@media only screen and (max-width: 991px) {

    .slide-card .owl-carousel .item-video video,
    .slide-card .owl-carousel .item img {
        height: 330px;
    }

    .slide-card .owl-carousel .item-video,
    .slide-card .owl-carousel .item {
        height: 340px;
    }
}

@media only screen and (max-width: 767px) {

    .slide-card .owl-carousel .item-video video,
    .slide-card .owl-carousel .item img {
        height: 220px;
    }

    .slide-card .owl-carousel .item-video,
    .slide-card .owl-carousel .item {
        height: 230px;
    }
}

.contact-header {
    margin: 0 0 0 20px;
    padding: 0;
}

.contact-header.small-screen {
    display: none;
}

.contact-header a {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.contact-header a:hover {
    /* color: #ff0a81; */
    color: #003399;
}

.contact-header a i {
    /* color: #ff0a81; */
    color: #003399;
    font-weight: normal;
}

@media only screen and (max-width: 479px) {
    .contact-header {
        display: none;
    }

    .contact-header.small-screen {
        display: block;
        margin: 0;
    }
}

#map .modal-dialog {
    max-width: 60%;
}

@media only screen and (max-width: 991px) {
    #map .modal-dialog {
        max-width: 90%;
    }
}

@media only screen and (max-width: 575px) {
    #map .modal-dialog {
        max-width: 100%;
    }
}

#map button.close {
    float: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #ff0000;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
}

.lightbox {
    position: fixed !important;
    left: 0;
    top: 14% !important;
}

.lightbox .lb-dataContainer {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -36px;
}

.lightbox .lb-closeContainer .lb-close {
    background-color: #ff0a81;
    margin-top: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 6px solid #ff0a81;
    background-position: center;
}

.lightbox .lb-dataContainer .lb-details .lb-number {
    padding-bottom: 0;
    padding-top: 10px;
}


/* Site Footer */

.site-footer {
    background-color: #171616;
    padding: 15px 20px;
}

.site-footer a:hover {
    color: #ff0a81;
    /* color: #003399; */
}

.site-footer .col-md-3 {
    padding: 10px 15px;
    height: auto;
    min-height: auto;
}

.site-footer .form .form-group .help-block {
    color: #ee0000;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .site-footer .col-md-3 {
        min-height: 170px;
    }
}

.site-footer h6 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.site-footer p {
    font-size: 13px;
    margin-bottom: 6px;
    color: #b0b0b0;
}

.site-footer p i {
    /* color: #9a8c17; */
    color: #ff0a81;
    filter: brightness(115%);
    font-size: 16px;
    width: 20px;
}

.site-footer .col-sm-6,
.site-footer .col-md-3 {
    float: left;
}

.site-footer .foot-event {
    padding: 0 0 0 0;
}

.site-footer .foot-event img {
    width: 40%;
    float: left;
    margin: 2px;
    border-radius: 3px;
}

.site-footer .form .btn-subs {
    color: #fff;
    /* background-color: #ff0a81;
    border-color: #ff0a81; */
    background-color: #003399;
    border-color: #003399;
    font-weight: 500;
    padding: 6px 24px;
    margin: 10px 0;
    border-radius: 26px;
}

.site-footer .form .btn-subs:hover {
    /* background-color: #9a8c17;
    border-color: #9a8c17; */
    background-color: #ff0a81;
    border-color: #ff0a81;
}

.input-group.date span {
    position: absolute;
    right: 10px;
    top: 6px;
}

.enquiry-modal .input-group.date span {
    position: absolute;
    right: 10px;
    top: 33px;
}

.input-group>.custom-select:not(:last-child),
.input-group>.form-control:not(:last-child) {
    border-radius: .25rem;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control {
    width: 100%;
}

/* ==============================
    PREMIUM MUSIC PLAYER CSS
================================== */
#musicPlayer {
    width: 60px;
    margin: 5px auto;
    background: rgba(255, 255, 255, .95);
    border-radius: 5px;
    padding: 3px;
    text-align: center;
    box-shadow: 0 1px 7px rgba(0, 0, 0, .15);
}

.music-title {
    font-weight: bold;
    color: #003399;
    margin-bottom: 8px;
}

.music-controls button {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 0%;
    margin: 0 2px;
    cursor: pointer;
    font-size: 12px;
    /* color: #003399; */
    color: rgba(0, 51, 153, .7);
    background: #fff;
    transition: .3s;
}

.music-controls button:hover {
    transform: scale(1.1);
    background: #fff;
    /* color: #ff0a81; */
    color: rgba(0, 51, 153, 0.9);
}

#equalizer {
    margin-top: 3px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
}

#equalizer span {
    width: 3px;
    height: 6px;
    /* background: #ff0a81; */
    background: #869791;
    border-radius: 5px;
    animation: equalizer 1s infinite ease-in-out;
    animation-play-state: paused;
    transition: background .3s, height .3s;
}

#equalizer span:nth-child(1) {
    animation: eq1 .7s infinite;
}

#equalizer span:nth-child(2) {
    animation: eq2 .8s infinite;
}

#equalizer span:nth-child(3) {
    animation: eq3 .65s infinite;
}

#equalizer span:nth-child(4) {
    animation: eq4 .75s infinite;
}

#equalizer span:nth-child(5) {
    animation: eq5 .9s infinite;
}

#equalizer span:nth-child(6) {
    animation: eq6 .7s infinite;
}

#equalizer span:nth-child(7) {
    animation: eq7 .8s infinite;
}

/* @keyframes eq1 {
    0% {
        height: 6px;
    }
    25% {
        height: 20px;
    }
    50% {
        height: 10px;
    }
    75% {
        height: 26px;
    }
    100% {
        height: 6px;
    }
}
@keyframes eq2 {
    0% {
        height: 12px;
    }
    25% {
        height: 8px;
    }
    50% {
        height: 24px;
    }
    75% {
        height: 15px;
    }
    100% {
        height: 12px;
    }
}
@keyframes eq3 {
    0% {
        height: 18px;
    }
    25% {
        height: 7px;
    }
    50% {
        height: 15px;
    }
    75% {
        height: 28px;
    }
    100% {
        height: 18px;
    }
} */

#musicStatus {
    margin-top: 0px;
    font-size: 0px;
    color: #666;
}

@media (max-width:768px) {
    #musicPlayer {
        display: none !important;
    }
}

/* ===========================
   ACTIVE MENU
=========================== */
.menu.active,
#sidebar a.active,
.footer-tab a.active {
    color: #003399 !important;
    /*#ff0a81*/
    font-weight: 600;
}

.menu.active i,
#sidebar a.active i,
.footer-tab a.active i {
    color: #003399 !important;
}

.footer-tab a.active i {
    transform: translateY(-2px);
    transition: .3s;
}

/* ===========================
   FEEDBACK BUTTON
=========================== */
.feedback .feed-btn {
    color: #fff;
    background-color: #003399;
    border-color: #003399;
    font-weight: 500;
    padding: 6px 24px;
    margin: 10px 0;
    border-radius: 26px;
}
.feedback .feed-btn:hover {
    color: #fff;
    background-color: #ff0a81;
    border-color: #ff0a81;
}

/* ===========================
   STAR RATING
=========================== */
.star-rating{
    display:flex;
    flex-direction:row-reverse;
    justify-content:flex-end;
}

.star-rating input{
    display:none;
}

.star-rating label{
    font-size:30px;
    color:#ccc;
    cursor:pointer;
    transition:.3s;
    margin-right:5px;
}

.star-rating label:hover,
.star-rating label:hover ~ label{
    color:#ffc107;
}

.star-rating input:checked ~ label{
    color:#ffc107;
}