/********** Template CSS **********/
:root {
    --primary: #db972f;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 30px 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    /* transition: .99s; */
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 130px;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, .85); */
    z-index: 1;
}

.carousel-caption h1 {
    font-size: 54px;
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
    color: #db972f;
}

.carousel-caption h4 {
    font-family: "Lora", serif;
    font-size: 50px;
    font-weight: 400;
}

.carousel-caption h5 {
    color: #db972f;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 300px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/breadcrumb.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #db972f;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: #d9af63;
}

.footer .copyright a:hover {
    color: var(--primary);
}

.top-head span i {
    color: #db972f;
}

.menu-head img {
    width: 300px;
}

.topbg {
    border-bottom: 1px solid #202020;
}

.btn-color {
    background-color: #db972f;
    color: #fff;
}

.btn-color:hover {
    background-color: #bb7813;
    color: #fff;
}

.sub-head {
    font-size: 50px;
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    color: #db972f;
    margin-bottom: 0px;
}

.tital-head {
    font-family: "Lora", serif;
    font-size: 40px;
    font-weight: 400;
}

.tital-head2 {
    font-family: "Lora", serif;
    font-size: 22px;
    font-weight: 400;
    color: #db972f;
}

.counter-box {
    display: block;
    padding: 10px;
    text-align: center;
}

.counter-box img {
    vertical-align: middle;
    display: block;
    margin: 0 auto;
}

.counter-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0 0px;
}

.counter-container i {
    color: #fff;
}

.counter-box p {
    color: #fff;
    font-size: 18px;
    font-weight: 500
}

.counter {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 28px;
}

.h-service {
    padding: 12px;
}

.h-service img {
    width: 50px;
    margin: 10px 0;
    margin: 0 auto;
    display: flex;
}

.h-service h3 {
    text-align: center;
    margin: 16px 0;
    font-size: 26px;
}

.h-service p {
    text-align: center;
    color: #fff;
    height: 186px;
}

.h-service a {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #db972f;
    transition: all 0.3s ease;
}

.h-service a:hover {
    transform: translateX(10px);
}

.border-seperator {
    background-size: 7px;
    height: 1px;
    margin: 16px 0;
    background-image: linear-gradient(to right, transparent 0, transparent 75%, #db972f 75%, #db972f);
}

/*home academyb cource start*/
.course-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    padding: 8px;
    width: 96%;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.course-content {
    padding: 18px;
}

.course-content h4 {
    color: #db972f;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Lora", serif;
}

.course-content p {
    /* font-size: 14px; */
    color: #000;
    line-height: 1.6;
}

.divider {
    border-top: 2px dotted #c18b2c;
    margin: 15px 0;
}

.know-more {
    color: #db972f;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.know-more:hover {
    text-decoration: underline;
    color: #db972f;
    transform: translateX(10px);
}

.enroll-btn {
    border: 1px solid #db972f;
    color: #db972f;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.enroll-btn:hover {
    background: #db972f;
    color: #fff;
}

/*home academyb cource closed*/
.btn1 {
    margin-top: 20px;
    transition: transform 0.3s ease;
    display: flex;
}

.btn1 a {
    font-size: 14px;
    padding: 12px 36px 12px 36px;
    color: #db972f;
    border: 1px solid #db972f;
}

.btn1 a:hover {
    color: #fff;
    border: 1px solid #fff;
}

.btn1:hover {
    transform: translateX(10px);
}

.h-beauty-menu ul li {
    color: #fff;
    padding-left: 8px;
    line-height: 28px;
}

.circle-list {
    list-style: none;
    padding-left: 20px;
}

.circle-list li::marker {
    content: "◉";
    color: #db972f;
    font-size: 18px;
}

/*home tabs price start*/
.hprice-tab {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.hprice-tab .nav {
    justify-content: center;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #db972f;
}

.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: #db972f;
}

.nav-pills .nav-link {
    border: 1px solid #262626;
    padding: 16px 20px;
}

ul.h-pricelist li {
    padding: 19px 0;
    border-bottom: 1px dashed #4d4d4d;
    position: relative;
    text-align: left;
    list-style: none;
}

ul.h-pricelist li h3 {
    font-size: 20px;
    margin-bottom: 0;
    font-family: "Lora", serif;
}

ul.h-pricelist li p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.80);
}

ul.h-pricelist li .service-price {
    font-size: 22px;
    position: absolute;
    right: 0;
    top: 25px;
}

.service-price {
    display: none;
}

/*home tabs price closed*/
.footer-main {
    border-top: 1px solid #323232;
    background-color: #0e0d0d;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 30px;
        margin-bottom: 10px !important;
    }

    .carousel-caption h4 {
        font-size: 24px;
        margin-bottom: 10px !important;
    }

    .carousel-caption {
        top: 12px;
    }

    .carousel-caption h5 {
        font-size: 14px;
    }

    .tital-head {
        font-size: 28px;
    }

    .sub-head {
        font-size: 44px;
    }

    .h-service p {
        height: auto;
    }

    .h-service img {
        width: 70px;
    }

    .blank-col {
        display: none;
    }
}

.course-card img {
    /* width: 80px; */
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

/*about us*/
/*mision vision card with animation start*/
.vision-card {
    background-color: #000;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #db972f;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.vision-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.vision-card:hover img {
    transform: scale(1.1);
}

.vision-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #db972f;
    font-weight: 600;
    font-family: "Lora", serif;
    font-size: 30px;
}

.vision-card p {
    color: #fff;
}

.line-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
}

.line {
    position: absolute;
    height: 6px;
    width: 0;
    background-color: #db972f;
    transition: width 0.5s ease;
}

.line1 {
    top: 0;
    left: 0;
}

.line2 {
    bottom: 0;
    right: 0;
}

.vision-card:hover .line1 {
    width: 100%;
}

.vision-card:hover .line2 {
    width: 100%;
}

/*mision vision card with animation closed*/

.page-header h1 {
    font-family: "Lora", serif;
}

/*contact us page*/
.section-title {
    color: #f4a024;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: "Lora", serif;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
}

.info-icon {
    font-size: 30px showing;
    color: #f4a024;
    font-size: 22px;
}

.info-text h6 {
    margin: 0;
    font-weight: 500;
    font-family: "Lora", serif;
    font-size: 24px;
}

.info-text p {
    margin: 5px 0 0;
    color: #ddd;
}

hr {
    border-color: #333;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 12px;
    }

    .hours-text {
        margin-top: 0px !important;
        text-align: center;
    }
}

.tital-head3 {
    font-family: "Lora", serif;
    font-size: 30px;
    font-weight: 400;
    color: #db972f;
}

/*opening hours start*/
.opening-hours-section {
    border: 1px solid #343434;
    color: #ffffff;
    padding: 15px;
    margin: 20px 0;
}

.hours-text {
    font-size: 18px;
    display: inline-block;
    margin-top: 8px;
}

.hours-text i {
    color: #db972f;
}

.appointment-btn {
    background-color: #db972f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 0;
}

.appointment-btn:hover {
    background-color: #181818;
    color: #bb7813;
    border: 1px solid #bb7813;
}

/*photo gallery start*/
.gallery-main {
    background-color: #fff;
    padding: 80px 0 50px;
}

.gallery-main h2 {
    text-align: center;
    margin: 10px 0 20px;
    text-transform: uppercase;
    font-size: 20px;

}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .card-image {
    background: #fff;
    display: block;
    /* padding-top: 70%; */
    position: relative;
    width: 100%;
    height: 250px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 3px #606060a3;
    padding: 10px;
    border: 2px solid #db972f;
}

.main .card-image:hover {
    transform: scale(1.05);
}

.main .card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333;
    border-radius: 2px;
    /* width: 100%; */
}

.fancybox-button--share {
    display: none !important;
}

.card-event-gallery {
    margin-bottom: 30px;
}

@media only screen and (max-width:768px) {
    .main .card-image {
        height: 140px !important;
    }

    .gallery-main {
        padding: 50px 0 0px;
    }

    .main {
        margin-bottom: 0px !important;
    }
}

.fancybox-share_button {
    color: #000000;
}

/*photo gallery closed*/
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9;
}

@media only screen and (max-width:768px) {
    .menu-head img {
        width: 230px;
    }

    .mobile-foot {
        display: none;
    }
}




/* onnn */
.faq .ptb-20 {
    padding-top: 10px;
    padding-bottom: 30px;
}


.faq .brochures-prgs {
    cursor: pointer;
    border-top: 4px solid #b9173f;
    ;
    border-left: 3px solid #b9173f;
    ;
    padding: 11px;
    color: #373333;
    border-radius: 9px;
    background: #d3d3d336;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
}

.faq .disp {
    display: none;
    padding: 20px;
}


.faq .rotate {
    transform: rotate(180deg);
}

.faq .brochures-prgs .fa {
    font-size: 18px;
    right: 0;
    position: absolute;
    padding: 10px;
    border-radius: 6px;
    margin-top: -7px;
    margin-right: 6px;
    background: #b9173f;
    color: #fff;
}

/* -funnels-Css--- */
/*mobile footer css starts*/

.navbar-footer a {
    float: left;
    display: none;
    width: 25%;
    color: #fff;
    text-align: center;
    padding: 25px 22px 38px 20px;
    text-decoration: none;
    font-size: 21px;
    /* margin-right: 22px;
    margin-left: 21px; */
}

.navbar-footer a:hover {
    background: #F1F1F1;
    color: black;
}

.w_app>i {
    color: #fff;
}

.w_app {
    background-color: #28A745;
}

.e_mail>i {
    color: #fff;
}

.e_mail {
    background-color: #DC3545;
}

.ems_call>i {
    color: #fff;
}

.ems_call {
    background-color: #007BFF;
}

.ems_enquiry>i {
    color: #fff;
}

.ems_enquiry {
    background-color: #FFC107;
}

.upside {
    display: none;
}

.mobile-hidden i {
    color: white;
}

@media screen and (min-width :315px) and (max-width :768px) {
    .upside {
        display: block;
    }

    .funnal-mobile {
        display: none !important;
    }

    .mobile-footer {
        display: block !important;
    }

    .social-mobile li a .fa {
        display: none;
    }

    .navbar-footer {
        overflow: scroll;
        z-index: 9999999 !important;
        background-color: #ccc;
        position: fixed;
        bottom: -16px;
        width: 100%;
    }

    .navbar-footer a:hover {
        background: #f1f1f1;
        color: black;
    }

    .main {
        padding: 0px;
        margin-bottom: 54px;
    }

    .navbar-footer {
        display: block !important;
    }

}

.mobile-hidden a {
    font-size: 16px;
}

/* mobile footer css end*/
@media only screen and (max-width:768px) {


    .mobile-hidden {
        display: none !important;
    }

    .tab {
        margin: 4px 4px !important;
    }

    .brochures-prgs .fa-plus {
        margin-right: 30px !important;
    }

    .mobile-h {
            padding-bottom: 60px;
    }
}

/* Funnel css start */
.btn-success {
    color: #fff !important;
    background-color: #5cb85c;
    border-color: #4cae4c;
    padding: 15px 30px;
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-danger {
    color: #fff !important;
    background-color: #d9534f;
    border-color: #d43f3a;
    padding: 15px 30px;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-warning {
    color: #fff !important;
    background-color: #f0ad4e;
    border-color: #eea236;
    padding: 15px 30px;
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

/* .btn-primary {
      color: #fff!important;
      background-color: #0084bd;
      border-color: #0d668d;
      padding: 15px 30px;
    }
    .btn-primary:hover {
      color: #fff;
      background-color: #0d668d;
      border-color: #204d74
    } */
.pb-20 {
    padding-top: 10px;
    padding-bottom: 30px;
}


/* -funnels-Css-Ends--- */
/* onnn */