:root {
    --white: #f2f9ff;
    --black: #000;
    --d-blue: #000b34;
    --blue: #0b0c54;
    --red: #bf7e00;
    --gold: #ffc860;
    --body-font: 'Barlow', sans-serif;
    --heading: 'Roboto', sans-serif;
    --subheading: 'Jost', sans-serif;
}

/* 

font-family: 'Barlow', sans-serif;
font-family: 'Fira Sans', sans-serif;
font-family: 'Jost', sans-serif;
font-family: 'Roboto', sans-serif;

*/

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    color: var(--font-color);
}

a {
    text-decoration: none !important;
    display: inline-block;
}

p:last-of-type {
    margin-bottom: 0px;
}

p {
    color: #444;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-control,
.form-select {
    background: transparent;
    border: 0px;
    box-shadow: none;
    outline: none;
    border-radius: 0px;
}

.form-control:focus,
.form-select:focus {
    background: transparent;
    border: 0px;
    box-shadow: none !important;
    outline: none !important;
}

img {
    width: 100%;
    height: 100%;
}

/*=== Common Css Start ===*/

/*--- Section Spacing Start ---*/

.sec-space-40 {
    padding: 40px 0;
}

.sec-space {
    padding: 80px 0;
}

.sec-space-top {
    padding: 80px 0 0;
}

.sec-space-bottom {
    padding: 0 0 80px;
}

/*--- Section Spacing End ---*/

/*--- Section Heading Start ---*/

.section-head {
    margin-bottom: 30px;
}

.section-head h2 {
    padding-bottom: 20px;
    position: relative;
    font-family: var(--heading);
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    color: var(--blue);
}

.section-head p {
    margin-top: 20px;
}

.section-head h6 {
    font-size: 18px;
    color: #bb6f0e;
    font-family: var(--subheading);
    text-transform: uppercase;
    font-weight: 500;
    word-spacing: 5px;
    padding-left: 40px;
    position: relative;
}

.section-head h6::before {
    position: absolute;
    left: 0;
    top: 9px;
    width: 30px;
    content: '';
    background: #bb6f0e;
    height: 2px;
}

/*--- Section Heading End ---*/

/*--- Button Start ---*/

.btn {
    font-size: 14px;
    border-radius: 0px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-family: var(--subheading);
    font-weight: 600;
    letter-spacing: 1px;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-solid {
    background: var(--red);
    color: #fff;
    transition: all .5s;
    border-radius: 25px;
}

.btn-solid:hover {
    color: var(--white);
    background: var(--black);
    transition: all .5s;
}

.btn-hamburger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background: #000814;
    position: relative;
    transition: all .5s;
}

.btn-hamburger:hover {
    background: var(--white);
    transition: all .5s;
}

.btn-hamburger::before,
.btn-hamburger::after {
    position: absolute;
    height: 2px;
    right: 10px;
    content: '';
    background: var(--white);
    transition: all .5s;
}

.btn-hamburger:hover::before,
.btn-hamburger:hover::after {
    background: #0b0c54;
    transition: all .5s;
}

.btn-hamburger::before {
    top: 15px;
    content: '';
    width: 12px;
    transition: all .5s;
}

.btn-hamburger::after {
    bottom: 15px;
    content: '';
    width: 20px;
}

.btn-hamburger:hover::before {
    transition: all .5s;
    width: 20px;
}

/*--- Button End ---*/

/*=== Common Css End ===*/

/*--- Animation Start ---*/

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}


/*--- Animation End ---*/

/*--- Header Start ---*/
.main-header {
    background: var(--d-blue);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbar-brand {
    width: 100px;
    height: auto;
    padding: 0;
}

.header-top {
    padding-bottom: 15px;
    border-bottom: 1px solid #222c3c;
}

.navbar {
    padding: 0px;
}

.navbar-collapse ul>li {
    margin-right: 65px;
}

.navbar-collapse ul>li>a {
    padding: 15px 0 !important;
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
    font-size: 16px;
}

.navbar-collapse ul>li>a.active,
.navbar-collapse ul>li>a:hover {
    color: var(--gold) !important;
}

.navbar-text {
    position: relative;
}

.navbar-text a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 20px;
    color: #ffc860;
    font-size: 16px;
}

.navbar-text a:last-child {
    margin-right: 0px;
}

.contact-info li {
    margin-right: 35px;
}

.contact-info li:last-child {
    margin-right: 0px;
}

.contact-info li a {
    color: var(--white);
    font-size: 15px;
    position: relative;
    padding: 7px 0px 7px 44px;
}

.contact-info li a span {
    position: absolute;
    display: inline-flex;
    height: 36px;
    width: 36px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ffffff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    box-shadow: rgb(255 255 255 / 38%) 0px 7px 29px 0px;
    color: var(--blue);
    font-size: 18px;
    transition: all .5s;
}

.contact-info li:hover a span {
    background: var(--blue);
    color: var(--white);
    transition: all .5s;
}



/*=== Header End ===*/


/*--- Banner Start ---*/

.home-slider {
    position: relative;
}

.carousel {
    position: relative;
}

.carousel-inner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    content: '';
    z-index: 9;
}

.banner-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    z-index: 99;
}

.banner-text {
    max-width: 560px;
}

.banner-text h1 {
    color: var(--white);
    font-size: 62px;
    line-height: 74px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
}

.banner-text p {
    font-size: 21px;
    line-height: 31px;
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 25px;
    font-weight: 500;
}

.banner-text .btn {
    padding: 15px 35px;
    border-radius: 30px;
    border-radius: 0px;
    margin-top: 5px;
}

.banner-logo {
    width: 80px;
    height: auto;
}

.carousel-indicators {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-right: 30px;
    margin-left: 0px;
    text-indent: 0;
    cursor: pointer;
    background-color: transparent;
    background-clip: padding-box;
    border: 2px solid var(--sky) !important;
    border-radius: 50%;
    position: relative;
    color: var(--sky);
}

.carousel-indicators button.active {
    width: 40px;
    height: 40px;
    border: 1px solid var(--blue) !important;
    color: var(--blue);
}

.indicator-cover {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    height: auto;
}

/*--- Banner End ---*/

/*--- About Home Start ---*/

.about-content {
    height: 100%;
    padding: 0px 60px;
    position: relative;
}

.about-home-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.about-home-image:hover img {
    transform: scale(1.2);
    transition: all .5s;
}

.play-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.3); */
    transition: all .5s;
}

.about-home-image:hover .play-cover {
    /* background: rgba(0, 0, 0, 0.6); */
    transition: all .5s;
}

.play-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    line-height: 54px;
    text-align: center;
    background: var(--blue);
    color: var(--white);
    font-size: 22px;
    z-index: 1;
    transition: all .5s;
}

.play-btn i {
    margin-left: 3px;
}

.play-btn:hover {
    color: var(--white);
}


.play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--blue);
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}


@-webkit-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.filler-div {
    position: relative;
    z-index: 9;
    color: var(--white);
    font-size: 20px;
}

.filler-div:before {
    background: var(--blue);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 112px;
    height: 112px;
    z-index: -1;
    border: 30px solid #fff;
}

.filler-div:after {
    background: #d3d3d3;
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    content: '';
    width: 80%;
    height: 1px;
    z-index: -2;
}

.filler-div img {
    width: 32px;
    height: 32px;
}

.about-content .filler-div {
    margin: 40px auto;
}

.about-content a {
    color: #352219;
    font-size: 24px;
    font-weight: 500;
    font-family: var(--heading);
}

/*--- About Home End ---*/



/*--- Why Choose Us Start ---*/

.why-box {
    margin-bottom: 15px;
}

.why-wrap dl dt {
    position: relative;
    padding-left: 40px;
}

.why-wrap dl dt h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.why-wrap dl dt .wh-icon {
    position: absolute;
    left: 0;
    top: -5px;
    color: var(--blue);
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 24px;
}

.why-wrap dl dd {
    padding-left: 40px;
    margin-bottom: 25px;
}

.why-us-image {
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

.why-us-image img {
    object-fit: contain;
}

.why-wrap .btn {
    margin-top: 15px;
    padding: 15px 30px;
    border-radius: 35px;
}

/*--- Why Choose Us End ---*/


/*--- Conditions Treat Start ---*/

.conditions-treat {
    background: #f7f7f7;
}

.conditions-treat .row {
    row-gap: 30px;
}

.condition-content {
    padding: 15px 15px 0;
    text-align: center;
}

.condition-content h5 a {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--blue);
    position: relative;
}

.condition-content h6 a {
    color: #b50000;
    text-transform: uppercase;
    font-weight: 600;
}

.condition-content p {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-course {
    font-weight: 600;
    font-family: var(--subheading);
    font-size: 16px;
    color: var(--red);
}

.price-course span {
    color: #999;
    position: relative;
    margin-right: 4px
}

.price-course span:before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 100%;
    height: 2px;
    background: #999;
    content: '';
}

.btn-group a.add-wishlist {
    padding: 8px 15px;
    border-radius: 4px;
    background: var(--d-blue);
    color: var(--white);
}

.btn-group a.add-cart {
    padding: 8px 15px;
    border-radius: 4px;
    background: #bf7e00;
    color: #ffffff;
}

.btn-group a.add-wishlist span,
.btn-group a.add-cart span {
    margin-right: 6px;
}

.condition-image {
    height: 280px;
    border-bottom: 2px solid var(--blue);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.condition-image::before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(3 0 112 / 64%);
    height: 100%;
    width: 100%;
    content: '';
    z-index: 1;
    opacity: 0;
    transition: all .5s;
}

.condition-box:hover .condition-image::before {
    opacity: 1;
    transition: all .5s;
}

.condition-image img {
    transition: all .5s;
    object-fit: cover;
}

.condition-box:hover .condition-image img {
    transform: rotate(2deg) scale(1.1);
    transition: all .5s;
}


.condition-image .course-link-chain {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    background: var(--white);
    color: #0b0c54;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    opacity: 0;
    transition: all .5s;
}

.condition-image .course-link-chain:hover {
    color: var(--white);
    background: var(--red);
    transition: all .5s;
}

.condition-box:hover .condition-image .course-link-chain {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: all .5s;
    z-index: 9;
}

/*--- Conditions Treat Start ---*/


/*--- Get Appointment Start ---*/

.get-appointment {
    background: url(../images/getappo-bg2.jpg) no-repeat center;
    padding: 100px 0;
    background-size: cover;
    /* background-attachment: fixed; */
}

.get-appointment .section-head h2 {
    color: var(--white);
    font-size: 52px;
}

.get-appointment .section-head h6 {
    color: var(--white);
}

.get-appointment .section-head .btn {
    margin-top: 20px;
}

/*--- Get Appointment End ---*/


/* Our Speciality Start  */

.speciality-image {
    position: relative;
    height: 310px;
    overflow: hidden;
    border-radius: 8px;
}

.speciality-image::before {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(0, 212, 255, 0) 100%);
    height: 50%;
    content: '';
}

.speciality-image::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    width: 20%;
    background: var(--red);
    height: 2px;
    content: '';
}

.speciality-image img {
    object-fit: cover;
}

.speciality-title {
    position: absolute;
    bottom: 25px;
    color: var(--white);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.speciality-content {
    padding: 15px 10px;
    text-align: center;
}

.speciality-content .btn {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: normal;
    padding: 8px 25px;
    margin-top: 15px;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
}

.speciality-content .btn:hover {
    background: var(--red);
    color: var(--white);
}

.slider-diag .owl-nav {
    position: absolute;
    right: 0;
    left: auto;
    top: -170px;
    bottom: auto;
}

.slider-diag .owl-nav .owl-prev,
.slider-diag .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--red) !important;
    line-height: 44px !important;
    text-align: center;
    position: relative;
    z-index: 1;
    background: transparent !important;
    font-size: 17px !important;
    color: var(--red) !important;
    overflow: hidden;
}

.slider-diag .owl-nav .owl-prev::after,
.slider-diag .owl-nav .owl-next::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    width: 4px;
    height: 4px;
    content: '';
    opacity: 0;
    z-index: -1;
    transition: all .3s;
    border-radius: 50%;
}

.slider-diag .owl-nav .owl-prev:hover::after,
.slider-diag .owl-nav .owl-next:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .3s;
}

.slider-diag .owl-nav .owl-prev:hover,
.slider-diag .owl-nav .owl-next:hover {
    color: var(--white) !important;
}

/* Our Speciality End  */

/* Home Contact Start  */

.home-contact {
    position: relative;
    z-index: 1;
}

.home-contact::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 49.6%;
    height: 100%;
    content: '';
    background: url(../images/hc-bg.jpg) no-repeat left;
    background-size: cover;
    z-index: -1;
}

.map-home {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    height: 100%;
    width: 49.6%;
}

.map-home iframe {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hcontact-form {
    padding: 60px 70px 60px 70px;
}

.hcontact-form .btn {
    border-radius: 5px;
    width: 100%;
}

.hcontact-form .section-head h2 {
    font-size: 40px;
}

.hcontact-form .section-head p {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 25px;
}

.hcontact-form .single-input textarea {
    font-size: 16px;
    font-weight: 500;
}

.hcontact-form .single-input input {
    height: 48px;
    font-weight: 500;
    font-size: 16px;
}

.hcontact-form .single-input input::placeholder,
.hcontact-form .single-input textarea::placeholder {
    font-size: 16px;
}


.hcontact-form .single-input input,
.hcontact-form .single-input textarea {
    background: #fff;
    border: 0px !important;
}

.hcontact-form .btn {
    margin-top: 20px;
    padding: 13px 0;
}

/* Home Contact End  */


/* Equipment Start  */

.nav-equipment .nav-link {
    padding: 15px 25px;
    border-bottom: 1px solid #444;
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    text-align: left;
    border-radius: 0px;
    color: #003566;
}

.nav-equipment .nav-link.active {
    background: transparent;
    color: #003566;
}



/* Equipment End  */


/*--- Blog Home Start ---*/

.latest-news .section-head h6 {
    width: fit-content;
    margin: 0 auto 8px;
}

.blog-box {
    border-radius: 15px;
    overflow: hidden;
}

.blog-image {
    height: 250px;
    position: relative;
}

.blog-image::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00052a;
    opacity: 0;
    transition: all .4s;
    content: '';
}

.blog-box:hover .blog-image::before {
    opacity: .8;
    transition: all .4s;
}

.blog-image img {
    object-fit: cover;
}

.blog-image .blog-link-chain {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    background: var(--white);
    color: #0b0c54;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    opacity: 0;
    transition: all .5s;
}

.blog-image .blog-link-chain:hover {
    color: var(--white);
    background: var(--red);
    transition: all .5s;
}

.blog-box:hover .blog-image .blog-link-chain {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: all .5s;
}

.blog-content {
    padding: 20px 15px 20px 15px;
    background: #f9f9f9;
}

.blog-content a h5 {
    color: var(--blue);
    padding-bottom: 5px;
    font-weight: 600;
    transition: all .4s;
}

.blog-content a:hover h5 {
    color: var(--red);
    transition: all .4s;
}

.blog-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dedede;
}

.blog-date img,
.blog-author img {
    width: 18px;
    height: auto;
}

.blog-date span,
.blog-author span {
    font-size: 16px;
    color: var(--red);
    margin-right: 4px;
}

.blog-date,
.blog-author {
    font-size: 14px;
    font-weight: 500;
}

.read-btn {
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 12px;
    color: var(--red);
    font-weight: 600;
    font-size: 13px;
}


/*--- Blog Home End ---*/


/*--- Footer Start   ---*/

.footer-main {
    background: #000814;
    padding: 60px 0 0 0;
}

.footer-about {
    padding-right: 60px;
}

.ft-logo img {
    width: 250px;
    height: auto;
}

.ft-text {
    padding: 30px 0 30px;
    margin-bottom: 25px;
    position: relative;
}

.ft-text p {
    color: #d5d5d5;
}

.ft-text:before {
    position: absolute;
    width: 120px;
    height: 1px;
    background: #666;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.link-box h4 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white);
    font-weight: 500;
    padding-bottom: 25px;
    font-family: var(--heading);
    position: relative;
}

.link-box h4::before {
    position: absolute;
    left: 0;
    bottom: 10px;
    background: #666;
    width: 30px;
    height: 1px;
    content: '';

}

.link-box ul {
    list-style: none;
    padding-left: 0px;
}

.link-box ul li {
    margin-bottom: 10px;
    position: relative;
    font-weight: 500;
    color: #e3e3e3;
    transition: all .3s;
}

.link-box ul li a {
    color: #d5d5d5;
    font-weight: 400;
    transition: all .3s;
    padding: 5px 0;
    font-size: 16px;
    font-family: var(--heading);
    position: relative;
}

.link-box ul li a:hover {
    color: var(--red);
    transition: all .3s;
}

.footer-contact ul li a {
    padding-left: 40px;
}

.footer-contact ul li a::before {
    left: 0;
    top: 7px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
}

.footer-contact ul li a.fc-address::before {
    content: '\f3c5';
    font-size: 22px;
}

.footer-contact ul li a.fc-call::before {
    content: '\f590';
    font-size: 22px;
    top: 1px;
}

.footer-contact ul li a.fc-telephone::before {
    content: '\f8d3';
    font-size: 20px;
    top: 0px;
}

.footer-contact ul li a.fc-email::before {
    content: '\f0e0';
    font-size: 20px;
    top: 0px;
}


.copyright {
    border-top: 1px solid #2e2e2e;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 30px;
}

.copyright p {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    margin: 10px 0;
}

.copyright p span {
    font-weight: 600;
}

.ft-social-media ul li {
    margin-right: 10px;
    padding-left: 0px;
}

.ft-social-media ul li a {
    font-size: 17px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--white);
    border-radius: 50%;
    text-align: center;
    padding: 0px;
    color: #0b0c54;
}



/*--- Footer End   ---*/


/*-- CMS BANNER Start  --*/
.cms-banner {
    position: relative;
    overflow: hidden;
}

.cms-bann-img {
    height: 350px;
}

.cms-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cms-banner .cover {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cms-banner .cover h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
    font-family: var(--heading);
}

.cms-banner .cover p {
    text-align: center;
}

.cms-banner .cover p span {
    margin-right: 15px;
    font-size: 16px;
    color: #b8b791;
    font-weight: 500;

}

.cms-banner .cover p span i {
    margin-right: 7px;
}

.cms-banner .cover p a {
    margin-right: 10px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/*--- CMS Banner End  ---*/


/*--- Appointment Start ---*/

.single-select .form-select {
    border: 1px solid #000;
    margin-bottom: 25px;
}

.patient-title h5 {
    font-size: 16px;
    padding-bottom: 5px;
}

.modal-dialog {
    max-width: 650px;
}

.modal-title span {
    color: #296e5f;
}

/*--- Appointment End ---*/


/*--- Breadcrumb Start  ---*/

.breadcrumb-cover {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: fit-content;
}

.breadcrumb-cover h1 {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 48px;
}

.breadcrumb li {
    padding: 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #777;
}

.breadcrumb li:first-child {
    padding-left: 0px;
}

.breadcrumb li:last-child {
    padding-right: 0px;
}

.breadcrumb a {
    color: #0b0c54;
}


/*--- Breadcrumb End ---*/


/*--- About CMS Start ---*/

.about-cms-content {
    padding-left: 60px;
}

.about-cms-content ul {
    column-count: 2;
    list-style: none;
}

.about-cms-content ul li {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 8px 0 8px 35px;
}

.about-cms-content ul li::before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    content: '\f058';
    background: #dedede;
    color: var(--blue);
    font-family: "Font Awesome 6 Duotone";
    border-radius: 50%;
}

.about-cms-image {
    height: 100%;
}

.about-cms-image img {
    object-fit: cover;
}

.approach {
    background: #f7f7f7;
}

.approach-image {
    height: 100%;
    padding-left: 60px;
}

.approach-image img {
    object-fit: cover;
}

.approach-text h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0b0c54;
}

.approach {
    background: #f7f7f7;
    position: relative;
}

.fonder-box h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 6px;
}

.fonder-box h6 {
    font-weight: 500;
}

.approach-text .btn {
    border-radius: 0px;
}

/*--- About CMS End ---*/


/*--- Testimonial Start   ---*/


.testimonial {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../images/testi-bg.webp) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    z-index: 1;
}

.testimonial::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 1 64 / 90%);
    content: '';
    z-index: -1;
}

.slider-cover {
    padding: 0px 120px;
}

.testi-image {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.testi-image img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
}

.testi-content {
    color: #fff;
}

.testi-content p {
    color: #dedede;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.rating {
    color: #dd9a18;
}


.testimonial-slider .owl-nav {
    position: absolute;
    right: 0;
    left: -13%;
    top: 50%;
    transform: translateY(-100%);
    bottom: auto;
    display: flex;
    justify-content: space-between;
    width: 125%;
}

.testimonial-slider .owl-nav .owl-prev,
.testimonial-slider .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--white) !important;
    line-height: 44px !important;
    text-align: center;
    position: relative;
    z-index: 1;
    background: transparent !important;
    font-size: 17px !important;
    color: var(--white) !important;
    overflow: hidden;
}

.testimonial-slider .owl-nav .owl-prev:hover,
.testimonial-slider .owl-nav .owl-next:hover {
    border: 1px solid var(--red) !important;
}

.testimonial-slider .owl-nav .owl-prev::after,
.testimonial-slider .owl-nav .owl-next::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    width: 4px;
    height: 4px;
    content: '';
    opacity: 0;
    z-index: -1;
    transition: all .3s;
    border-radius: 50%;
}

.testimonial-slider .owl-nav .owl-prev:hover::after,
.testimonial-slider .owl-nav .owl-next:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .3s;
}

.testimonial-slider .owl-nav .owl-prev:hover,
.testimonial-slider .owl-nav .owl-next:hover {
    color: var(--white) !important;
}


/*--- Testimonial End   ---*/

/* FAQ Start  */
.faq-image {
    margin-right: 30px;
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
}

.faq-image img {
    object-fit: cover;
}

.faq-content {
    padding-left: 30px;
}

.accordion-faq,
.accordion-faq .accordion-header,
.accordion-faq .accordion-item {
    border: 0px;
}

.accordion-faq .accordion-item {
    margin-bottom: 20px;
}

.accordion-faq .accordion-button {
    font-weight: 500;
    color: #0b0c54;
    font-size: 17px;
    background: #fff;
    border-radius: 0px !important;
    box-shadow: none !important;
    outline: none !important;
    border-bottom: 1px solid #dedede;
    padding: 15px 40px 15px 0px;
}

.accordion-faq .accordion-button::after {
    position: absolute;
    right: 0;
    top: 15px;
    content: '\2b';
    background-image: none;
    font-size: 26px;
    height: 24px;
    width: 24px;
    line-height: 24px;
    padding: 0;
    margin: 0;
    text-align: center;
    color: var(--red);
}


.accordion-faq .accordion-body {
    font-weight: 500;
    font-size: 14px;
    padding: 15px 0;
}

.faq .section-head h6 {
    width: fit-content;
    margin: 0 auto 8px;
}

.accordion-faq .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: '\f068';
    font-family: "Font Awesome 6 Pro";
    font-size: 19px;
    color: #0b0c54;
}


/* FAQ End  */


/* Service Details Start  */

.title-head {
    margin: 15px 0;
    position: relative;
}

.title-head h6 {
    margin-bottom: 0px;
}

.title-head h6 a {
    padding-left: 40px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--subheading);
    letter-spacing: 2px;
    font-weight: 600;
    color: grey;
    position: relative;
}

.title-head h6 a::before {
    position: absolute;
    left: 0;
    top: 8px;
    background: grey;
    width: 30px;
    height: 2px;
    content: '';
}

.title-head h2 {
    padding: 0px;
    position: relative;
    font-family: var(--heading);
    font-weight: 500;
    font-size: 26px;
    line-height: 38px;
    color: var(--blue);
    margin-bottom: 0px;
}

.instructor-flex .btn-group {
    position: absolute;
    right: 0;
    top: 11px;
}

.total-student {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    position: relative;
    padding-left: 20px;
}

.course-fee {
    font-size: 20px;
    font-weight: 600;
    color: var(--red);
    position: relative;
}

.total-student span {
    font-size: 16px;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.related-service,
.related-booking {
    margin-left: 40px;
}

.serve-detail-wrap .section-head {
    margin: 30px 0 20px 0;
}

.sd-image {
    height: 400px;
}

.sd-image img {
    object-fit: cover;
}

.sd-description p {
    line-height: 28px;
    font-size: 17px;
}

.instructor-flex {
    position: relative;
    width: 100%;
}

.instructor-flex .instructor-image {
    flex: 0 0 60px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.instructor-name h5 a {
    font-size: 20px;
    font-weight: 500;
    color: var(--blue);
}

.benifit-service {
    margin-top: 40px;
}

.benifit-service h4 {
    font-size: 25px;
    color: #0b0c54;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: var(--heading);
    position: relative;
    width: fit-content;
    padding-right: 70px;
}

.benifit-service h4::before {
    position: absolute;
    width: 60px;
    top: 20px;
    background: #0b0c54;
    height: 2px;
    content: '';
    right: 0;
}

.benifit-service p {
    margin-bottom: 15px;
}

.benifit-service ul {
    padding-left: 0px;
    list-style: none;
}

.benifit-service ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    position: relative;
}

.benifit-service ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '\f138';
    color: var(--red);
    font-family: "Font Awesome 6 Sharp";
}

.related-service h4 {
    font-weight: 600;
    color: #0b0c54;
    position: relative;
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.related-service h4::before {
    position: absolute;
    width: 40px;
    bottom: 0px;
    background: #0b0c54;
    height: 2px;
    content: '';
    left: 0;
}

.related-service ul {
    margin-top: 10px;
}

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

.related-service ul li a {
    padding: 12px 20px;
    background: #f7f7f7;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    color: #0b0c54;
    border-left: 3px solid #dedede;
    transition: all .5s;
}

.related-service ul li:hover a,
.related-service ul li.active a {
    background: var(--d-blue);
    color: #fff;
    border-left: 3px solid #000;
    transition: all .5s;
}

.related-service>a {
    font-size: 15px;
    font-family: var(--subheading);
    color: var(--blue);
    font-weight: 600;
}

.related-booking {
    background: var(--d-blue);
    margin-top: 50px;
    padding: 50px 20px;
}

.related-booking ul li {
    margin: 0 0 15px;
    padding: 10px 0;
}

.related-booking ul li a {
    font-size: 16px;
    font-weight: 600;
}

.related-booking h4 {
    font-weight: 600;
    color: #fff;
    position: relative;
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.related-booking h4::before {
    position: absolute;
    width: 40px;
    bottom: 0px;
    background: #fff;
    height: 2px;
    content: '';
    left: 0;
}

.btn-solid-black {
    background: var(--black);
    color: #fff;
    border-radius: 25px;
    font-size: 13px;
    margin-top: 5px;
}

.btn-solid-black:hover {
    background: var(--black);
    color: #fff;
}

.btn-solid-white {
    background: var(--white);
    color: var(--blue);
    border-radius: 25px;
    font-size: 13px;
    margin-top: 5px;
}

.btn-solid-white:hover {
    background: var(--white);
    color: var(--red);
}

.sd-description h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b0c54;
}

.benifit-speciality ul {
    padding-left: 0;
    list-style: none;
}

.sd-description ol,
.sd-description ul {
    padding-left: 16px;
}

.sd-description ul li,
.sd-description ol li {
    line-height: 28px;
    font-size: 17px;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.sd-description ul li span {
    font-weight: 700;
    color: #000;
}

.sd-description ul li strong {
    display: block;
}



/* Service Details End  */


/*----   Contact Us  Start  ---*/

.contact-info h3 {
    font-size: 28px;
    color: #0b0c54;
    padding-bottom: 25px;
    position: relative;
    width: fit-content;
    font-family: var(--heading);
    font-weight: 700;
}

.ci-icon {
    height: 44px;
    width: 44px;
    text-align: center;
    line-height: 44px;
    font-size: 20px;
    border: 1px solid var(--red);
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 44px;
    color: var(--red);
}

.ci-wrap {
    margin-bottom: 30px;
}

.ci-content h6 {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.ci-content p a {
    color: #000;
}

.contact-info .ci-wrap:last-child {
    margin-bottom: 0px;
}

.con-map {
    height: 100%;
}

.con-map iframe {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.single-input input.form-control {
    border: 1px solid var(--black);
    height: 44px;
    line-height: 44px;
    margin-bottom: 15px;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.single-input input.form-control:focus {
    border: 1px solid var(--black);
    transition: all .4s;
    -webkit-transition: all .4s;
}

.single-input textarea.form-control {
    border: 1px solid var(--black);
    height: 130px;
}

.single-input textarea.form-control:focus {
    border: 1px solid var(--black);
    transition: all .4s;
    -webkit-transition: all .4s;
}

/*----   Contact Us  End  ---*/

/* Equipents Start  */

.single-equipment {
    border-radius: 15px;
    border: 1px solid #f7f7f7;
    overflow: hidden;
    position: relative;
}

.equipment-details {
    padding: 35px 25px;
}

.equipment-image {
    flex: 0 0 40%;
    height: 250px;
    padding: 10px;
}

.equipment-image img {
    object-fit: contain;
}

.equipment-details {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 40%);
    height: 100%;
    background: #fff;
}

.equipment-details h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0b0c54;
}

.equipment-details .btn {
    font-size: 13px;
}


/* Equipents End  */

.appointment-form {
    padding: 0;
}

.appointment-wrap .section-head h6 {
    width: fit-content;
    margin: 0 auto 6px;
}

/* Instructor Details Start  */


.id-wrap {
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    position: relative;
}

.id-wrap .id-image {
    flex: 0 0 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.id-wrap {}

.total-review {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    position: relative;
    padding-left: 20px;
}


.total-review span {
    font-size: 16px;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 4px;
}

.review-btn {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: var(--white);
    background: var(--blue);
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: 500;
}

.review-btn:hover {
    background: var(--red);
    color: var(--white);
}

.instructor-review {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #dedede;
}

.instructor-review h4 {
    font-weight: 600;
    font-size: 20px;
}


.star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 1.5em;
    justify-content: space-around;
    padding: 0 .2em;
    text-align: center;
    width: 5em;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
}

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

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

.rate-instructor {
    margin-top: 20px;
}

.give-review {
    margin-top: 10px;
}

.rate-instructor h6,
.give-review h6 {
    font-size: 18px;
    font-weight: 600;
}

.give-review textarea {
    width: 100%;
    max-width: 480px;
}

.give-review .btn {
    margin-top: 10px;
}


/* Instructor Details End  */

.contact-form .section-head {
    display: none;
}

.title-head .btn-group {
    display: none;
}