@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

/* 
font-family: "Poppins", 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: 15px;
    line-height: 26px;
    margin-bottom: 15px;
    font-weight: 500;
}

.bg-blue {
    background: var(--blue);
}

.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;
    margin: 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: 14px;
}

.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);
    transition: all .4s;
}

.btn-group a.add-wishlist:hover {
    background: #5f0000;
    color: var(--white);
    transition: all .4s;
}

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

.btn-group a.add-cart:hover {
    background: var(--d-blue);
    color: #ffffff;
    transition: all .4s;
}

.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;
}

.rating span {
    color: var(--blue);
    margin-right: 10px;
    font-size: 18px;
}


.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;
}

.serve-detail-wrap {
    margin-right: 30px;
}

.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;
}



/*--- Login Start ---*/

.login-wrapper {
    padding: 80px 0;
}

.log-wrapper {
    background: #000b34;
    padding: 70px 60px;
    height: 100%;
}

.login-input {
    position: relative;
    margin-top: 15px;
}

.login-input .form-control {
    border: 1px solid var(--blue);
    border-radius: 30px;
    height: 48px;
    line-height: 48px;
    background: #e9f5ff;
    text-indent: 12px;
    padding: 0px 10px;
    font-size: 15px;
    font-family: var(--heading);
    font-weight: 400;
}

.not-account h6 {
    color: var(--white);
}

.not-account h6 span a {
    color: #00cb2f;
    margin-left: 8px;
    font-weight: 500;
    font-family: var(--subheading);
}

.forgot-password a {
    color: #fbae00;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--subheading);
}

.log-footer {
    margin-top: 30px;
}

.log-wrapper h4 {
    color: #fff;
}

.log-image {
    height: 100%;
}

.log-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-input label {
    color: var(--white);
    font-size: 17px;
    font-family: var(--subheading);
    font-weight: 400;
    margin-bottom: 0px;
    padding-left: 12px;
}

.btn-solid-login {
    background: #7c0000;
    color: #fff;
    transition: all .5s;
    border-radius: 25px;
    padding: 10px 35px;
    margin-top: 0px;
}

.btn-solid-login:hover {
    color: #fff;
}

.email-error {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    color: red;
    margin-left: 10px;
    margin-top: 4px;
    transition: .6s;
}

.login-input .empty_error+.email-error {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: .6s;
}

/*--- Login End ---*/


/* Sign In Start  */

.sign-wrapper {
    background: #000b34;
    padding: 50px 60px;
    height: 100%;
}

.signin-wrap {
    padding: 40px 0;
}

.sign-wrapper h4 {
    color: #00e7f5;
}

.sign-wrapper h5 {
    color: var(--white);
}

.sign-footer {
    margin-top: 25px;
}

.sign-footer h6 {
    color: var(--white);
}

.sign-footer h6 span a {
    margin-left: 8px;
    color: #00c1e2;
}

/* Sign In End  */


/* My Account Home Start */
.my-account-cms {
    padding: 30px 0;
}

.my__account {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9;
    min-width: 220px;
    background: #000b34;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    padding-top: 25px;
}

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

.my__account ul li {
    margin-bottom: 4px;
}

.my__account ul li a {
    width: 100%;
    transition: all .5s;
    text-align: left;
}

.my__account ul li a:hover {
    color: var(--white);
    transition: all .5s;
}

.my__account p {
    color: #dedede;
    font-family: var(--subheading);
    padding-bottom: 8px;
    border-bottom: 1px solid #17187d;
    margin-bottom: 10px;
    padding-left: 20px;
    text-align: left;
}

.logged-account {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 20px;
    color: #ffc860;
    font-size: 16px;
}

.logged-account:hover .my__account {
    opacity: 1;
    visibility: visible;
    transition: all .6s;
}

/* My Account Home End */


/*----  Wishlist Start  ---*/

.wishlist-bar {
    padding: 0 30px;
}

.product-image {
    position: relative;
}

.product-image a {
    display: block;
}

.remove-wishlist {
    position: absolute;
    right: 20px;
    top: 20px;
    border: 0px;
    outline: none !important;
    box-shadow: none !important;
    color: #b30000;
    border-radius: 4px;
    height: 26px;
    width: 26px;
    text-align: center;
    line-height: 27px;
    font-size: 14px;
    padding: 0px;
    background: #fff;
}

.item-wishlist {
    font-family: "Jost", sans-serif;
    border-radius: 5px;
    overflow: hidden;
}

.item-wishlist .product-detail-box {
    background: #f9f9f9;
    padding: 12px 15px;
    display: block;
}

.item-wishlist .product-detail-box h5 {
    font-size: 17px;
    margin-bottom: 6px;
}

.item-wishlist .product-detail-box p {
    font-size: 15px;
}

.product-detail-box h5 .deleted-amnt {
    color: #999;
    position: relative;
}

.product-detail-box h5 .deleted-amnt::before {
    background: #999;
    position: absolute;
    top: 12px;
    width: 100%;
    left: 2px;
    content: "";
    height: 1px;
}

.wishlist-cart {
    margin-top: 8px;
    padding: 7px 15px;
    background: #bf7e00;
    color: var(--white);
    border-radius: 4px;
    transition: all .4s;
}

.wishlist-cart:hover {
    color: var(--white);
    background: var(--d-blue);
    transition: all .4s;
}

/*----  Wishlist End  ---*/


/*----  My Account   Start  ---*/

.left-bar {
    background: #f9f9f9;
    top: 40px;
    position: sticky;
    padding: 60px 35px;
}

.user-prof {
    margin-bottom: 20px;
}

.user-prof h5 {
    font-family: var(--heading);
    font-size: 18px;
    color: #157c1c;
    margin-bottom: 6px;
}

.user-prof p {
    font-size: 14px;
    color: #8b8b8b;
}

.left-bar ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.left-bar ul li a {
    padding: 5px 0px 5px 40px;
    width: 100%;
    margin-bottom: 15px;
    color: #000000;
    position: relative;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.left-bar ul li a span {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 18px;
}

.left-bar ul li a.active {
    color: #007440;
}

.left-bar ul li:last-child a {
    margin-bottom: 0px;
}

.right-bar {
    height: 100%;
    border-radius: 4px;
    border: 1px solid #dedede;
}

.single-rbox {
    margin-bottom: 10px;
    display: flex;
    padding: 0 50px;
}

.single-rbox .rb-title {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    flex: 0 0 200px;
}

.single-rbox h6 {
    font-size: 15px;
    line-height: normal;
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

.rb-detail span {
    display: block;
}

.profile-bar-head {
    background: var(--d-blue);
    padding: 15px 50px;
    border-bottom: 1px solid #dedede;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: var(--heading);
    color: var(--white);
}

.profile-bar-head span {
    float: right;
}

.profile-bar-head span a {
    color: var(--d-blue);
    background: var(--white);
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 3px;
}

/*----  My Account   End  ---*/

/* My Order Start  */
.order-box {
    border-radius: 4px;
    border: 1px solid #dedede;
    font-family: "Jost", sans-serif;
    padding-bottom: 30px;
    margin-bottom: 20px;
    position: relative;
}

.order-head {
    background: #f9f9f9;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.order-body {
    padding: 0 30px;
    position: relative;
    margin-bottom: 25px;
}

.order-body:last-of-type {
    margin-bottom: 0px;
}

.order-image {
    flex: 0 0 185px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

.order-no,
.order-date,
.order-amnt,
.order-to {
    font-weight: 500;
    font-size: 15px;
}

.order-no span,
.order-date span,
.order-amnt span,
.order-to span {
    font-weight: 400;
    font-size: 15px;
}

.order-product {
    margin-bottom: 8px;
}

.order-product a {
    color: #007440;
}

.order-sku,
.order-to,
.price-amnt {
    margin-bottom: 4px;
    line-height: 22px;
    font-weight: 500;
}

.view-item {
    font-size: 13px;
    background: #936200;
    color: #fff;
    margin-top: 10px;
    border-radius: 3px;
    padding: 5px 15px;
}

.view-order {
    font-size: 13px;
    background: #2e0172;
    color: #fff;
    margin-top: 10px;
    border-radius: 3px;
    padding: 8px 15px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.view-order:hover,
.view-item:hover {
    color: #fff;
}

/* My Order End */



/* Security Start  */
.pass-form {
    padding: 0 50px;
    font-family: "Jost", sans-serif;
}

.cmn-pass {
    margin-bottom: 20px;
}

.cmn-pass label {
    flex: 0 0 250px;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0px;
}

.cmn-pass .form-control {
    border-radius: 5px;
    background: #f9f9f9;
    padding: 0 15px;
    height: 44px;
    font-size: 14px;
}

.btn-grp-pass {
    margin-top: 10px;
}

.btn-grp-pass .save-pass {
    border: 0px;
    background: #157c1c;
    border-radius: 5px;
    padding: 8px 15px;
    color: #fff;
    width: fit-content;
    font-size: 14px;
}

.btn-grp-pass .cancel-btn {
    border: 0px;
    background: #936200;
    border-radius: 5px;
    padding: 8px 15px;
    color: #fff;
    margin-right: 15px;
    width: fit-content;
}

/* Security End */

/* Edit Profile Start  */

.address-databox .form-control {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* Edit Profile End  */

/*--- Order Details Start  ---*/

.order-detail-wrap {
    padding: 0 50px 30px;
    font-family: "Jost", sans-serif;
}

.order-detail-no,
.order-detail-date {
    font-weight: 500;
    font-size: 15px;
}

.order-address h5,
.ordered-summary h5 {
    margin-bottom: 20px;
}

.order-address address h6 {
    line-height: 26px;
}

.ordered-summary {
    flex: 0 0 300px;
}

.ordered-summary .cart-total {
    background: transparent;
    box-shadow: none;
    padding: 0px;
}

.ordered-summary .cs-total .cart-left h6,
.ordered-summary .gst-add .cart-left h6,
.ordered-summary .ship-cost .cart-left h6,
.ordered-summary .cs-total .cart-right p,
.ordered-summary .gst-add .cart-right p,
.ordered-summary .ship-cost .cart-right p {
    font-size: 16px;
    font-family: "Jost", sans-serif;
    line-height: 26px;
    color: var(--black);
}

.order-detail-products .order-body {
    margin-bottom: 10px;
    border: 1px solid #dedede;
    border-radius: 6px;
    padding: 10px;
}

.ordered-summary .ct-total {
    border-top: 1px solid #dedede;
}

.ordered-summary .ct-total .cart-left h6,
.ordered-summary .ct-total .cart-right p {
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

/*--- Order Details End  ---*/

/*----  Cart Start  ---*/

.left-cart {
    border-right: 1px solid #dedede;
}

.left-cart .section-title {
    margin-bottom: 20px;
    max-width: 100%;
}

.left-cart .section-title h3 {
    font-size: 24px;
    padding-bottom: 5px;
}

.cart-detail-wrapper {
    background: #f7f7f7;
    padding: 15px 5px;
    border-radius: 8px;
    margin-right: 40px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.cart-card {
    position: relative;
    border-bottom: 2px solid #fff;
    padding: 10px 8px;
}

.cart-card:first-child {
    padding-top: 0px;
}

.cart-card:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.cart-image {
    border-radius: 5px;
    flex: 0 0 160px;
    height: 120px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.cart-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cart-description {
    flex: 0 0 calc(100% - 160px);
    padding-left: 25px;
    font-family: "Poppins", sans-serif;
}

.cart-description .cart-pname {
    font-size: 15px;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 6px;
}

.cart-sprice {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.cartpsize span,
.cart-sku span,
.cart-quantity span {
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}

.cartpsize,
.cart-sku,
.cart-quantity {
    margin-bottom: 6px;
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.cart-sqty {
    border-radius: 20px;
    background: #fff;
    color: #000;
    display: flex;
    padding: 4px 10px;
    align-items: center;
    font-family: "Times New Roman", Times, serif;
}

.cart-sqty button {
    border: 0px;
    padding: 0px;
    background: transparent;
    position: relative;
}

.cart-sqty button.fa-plus::before {
    content: "\F4FE";
    font-family: var(--bs-font);
    color: #272e62;
    font-size: 21px;
    margin-left: 6px;
}

.cart-sqty button.fa-minus::before {
    content: "\F2EA";
    font-family: var(--bs-font);
    color: #272e62;
    font-size: 21px;
    margin-right: 6px;
}

.cart-sqty span {
    padding-left: 8px;
    font-size: 14px;
    font-weight: 500;
}

.cart-sprice .deleted-amnt {
    color: #838383;
    font-weight: 400;
    position: relative;
    margin-left: 5px;
}

.cart-sprice .deleted-amnt::before {
    position: absolute;
    left: 0;
    top: 9px;
    background: #838383;
    content: "";
    width: 100%;
    height: 1px;
}

.remove-cart {
    position: absolute;
    right: 20px;
    top: 10px;
}

.remove-cart a {
    color: var(--white);
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    background: #2e0172;
    font-size: 14px;
}

.remove-cart a:hover {
    background: #dd0d0d;
    transition: all .3s;
}

.cart-sprice .saved-amnt {
    font-weight: 400;
    color: #bf3131;
    margin-left: 5px;
}

/* Cart Right Start  */

.right-cart {
    padding-left: 40px;
}

.discount-offer {
    background: linear-gradient(270deg,
            rgb(254, 230, 227) 0%,
            rgb(255, 248, 216) 100%);
    padding: 10px 25px;
    border-radius: 10px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    margin-bottom: 15px;
}

.discount-offer h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
}

.discount-offer p {
    font-size: 13px;
    font-weight: 400;
    padding-left: 15px;
    position: relative;
    line-height: 13px;
    margin-left: 5px;
}

.discount-offer p::before {
    position: absolute;
    left: 0;
    height: 7px;
    width: 7px;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.cart-total {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    padding: 25px 20px 15px;
}

.cs-total,
.ship-cost,
.shop-discount,
.save-total,
.coupon-discount,
.gst-add {
    margin-bottom: 15px;
}

.cs-total .cart-left h6,
.ship-cost .cart-left h6,
.shop-discount .cart-left h6,
.save-total .cart-left h6,
.coupon-discount .cart-left h6,
.gst-add .cart-left h6 {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;
}

.cs-total .cart-right p,
.ship-cost .cart-right p,
.shop-discount .cart-right p,
.save-total .cart-right p,
.coupon-discount .cart-right p,
.gst-add .cart-right p {
    font-size: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 13px;
    margin-bottom: 0px;
}

.shop-discount .cart-right p,
.save-total .cart-right p,
.coupon-discount .cart-right {
    color: #2aa95a;
}

.gst-add .cart-right p {
    color: #936200;
}

.ship-cost .cart-right p {
    color: #db81ff;
}

.coupon-discount .cart-right p a {
    font-size: 12px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 13px;
    color: #4c179d;
}

.ct-total {
    padding-top: 10px;
    border-top: 1px solid var(--white);
}

.ct-total .cart-left h6 {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.ct-total .cart-right p {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.checkout-btn {
    display: inline-block;
    background: var(--black);
    height: 44px;
    line-height: 44px;
    font-size: 13px;
    color: var(--white);
    width: 100%;
    margin-top: 30px;
    text-align: center;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
    text-transform: uppercase;
    font-weight: 500;
}

.checkout-btn span {
    margin-left: 15px;
}

.checkout-btn:hover {
    background: #222;
    color: var(--white);
    transition: all 0.5s;
}

/*----  Cart End  ---*/

/* Subscribe Panel Start  */

.subscribe-panel {
    border-radius: 10px;
    border: 1px solid var(--blue);
    overflow: hidden;
}

.video-preview {
    position: relative;
    height: 250px;
    z-index: 1;
}

.video-preview::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.video-preview img {
    object-fit: cover;
}

.video-preview h6 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 55px;
    color: var(--white);
}

.subscribe-details {
    padding: 35px;
    text-align: center;
}

.subscribe-details h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.subscribe-details p {
    margin-bottom: 15px;
}

.sub-info {
    margin-top: 12px;
}

.sub-info a {
    color: #17187d;
    text-decoration: underline !important;
    font-weight: 500;
    font-size: 16px;
}

.sub-info p {
    margin-bottom: 3px;
}

.or {
    position: relative;
    margin: 15px 0;
    text-align: center;
}

.or::before {
    position: absolute;
    left: 0;
    top: 13px;
    width: 100%;
    background: #dee2e6;
    height: 1px;
    content: '';
    z-index: -1;
}

.or span {
    background: #fff;
    padding: 3px 10px;
    font-size: 16px;
}

.act-price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* .sub-buttons .btn-solid {
    flex: 0 0 calc(100% - 59px);
} */

.sub-buttons .btn-outline {
    width: 44px;
    height: 44px;
    border: 1px solid #d3d3d3;
    text-align: center;
    padding: 0px;
    border-radius: 5px;
    margin-left: 10px;
}

/* Subscribe Panel End  */

.courses-feature .nav-tabs {
    justify-content: space-between;
    margin-bottom: 20px;
}

.courses-feature .nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    flex: 0 0 25%;
    background: #f7f7f7;
    border-right: 2px solid #fff;
    border-radius: 0px;
}

.courses-feature .nav-tabs .nav-link:hover {
    border: 1px solid transparent;
}

.courses-feature .nav-tabs .nav-link.active {
    border-color: #ffffff #ffffff #0a58ca;
    background: var(--blue);
    color: #eff2ff;
}

.tab-title h4 {
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.course-card ul li {
    padding: 13px 10px;
    border-bottom: 1px solid #dee2e6;
    font-size: 14px;
    font-weight: 500;
}

.course-card ul li span.file-type {
    font-size: 16px;
}

.course-card ul li:last-child {
    border-bottom: 0px solid #dee2e6;
}

.accordion .card-header .btn {
    padding: 0px;
}

.file-type {
    margin-right: 6px;
}

.preview,
.lock {
    float: right;
    font-family: var(--heading);
    cursor: pointer;
}

.preview {
    background: #d6dfff;
    font-size: 14px;
    line-height: 14px;
    padding: 6px 15px;
    border-radius: 20px;
    color: #2b2b2b;
    font-weight: 400;
}

.course-card h4 {
    font-size: 18px;
}

.accordion-course .accordion-item {
    margin-bottom: 10px;
    border: 0px;
}

.accordion-course .accordion-item .course-card {
    border: 1px solid #dedede;
}

.accordion-course .accordion-item .accordion-button:not(.collapsed) {
    background: #e9e9ff;
    box-shadow: none;
}

.accordion-course .accordion-header button {
    background: #f7f7f7;
    color: var(--black);
}

.accordion-course .accordion-header button:focus {
    outline: none;
    box-shadow: none;
}

.single-review {
    border-bottom: 1px solid #dedede;
    padding: 15px 0px;
}

.single-review:last-child {
    border-bottom: 0px solid #dedede;
    padding-bottom: 0px;
}

.user-image {
    border-radius: 50%;
    overflow: hidden;
    height: 64px;
    flex: 0 0 64px;
}

.user-review {
    flex: 0 0 calc(100% - 80px);
}

.user-review p {
    margin-bottom: 13px;
}

.user-review .user-designation {
    color: #00c1e2;
}

.review-form {
    margin-top: 30px;
}

/* Plan Start  */

.plan-box {
    border-radius: 10px;
    border: 1px solid #dedede;
    overflow: hidden;
    height: 100%;
    position: relative;
}

/* .pb-price {
    position: absolute;
    bottom: 0;
    width: 100%;
} */

.plan-box .plan-box-head {
    padding: 20px;
    text-align: center;
}

.plan-box-head h5,
.plan-box-head p {
    color: var(--white);
}

.plan-box-head a {
    color: #fff;
    font-size: 16px;
}

.plan-row .plan-col:nth-child(1) .plan-box .plan-box-head {
    background: #023020;
    height: 202px;
}

.plan-row .plan-col:nth-child(2) .plan-box .plan-box-head {
    background: #171848;
}

.plan-row .plan-col:nth-child(3) .plan-box .plan-box-head {
    background: #0000FF;
    height: 202px;
}

.plan-row .plan-col:nth-child(4) .plan-box .plan-box-head {
    background: #00019A;
}

.plan-row .plan-col:nth-child(5) .plan-box .plan-box-head {
    background: #CD7F32;
    height: 124px;
}

.plan-box ul {
    padding: 20px;
}

.plan-box ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

.plan-box ul li:last-child {
    margin-bottom: 0px;
}

.plan-box ul li span {
    margin-right: 5px;
}


.pb-price {
    height: auto !important;
}




/* Plan End  */

.lock span {
    background: var(--black);
    color: var(--white);
    padding: 5px 10px;
    padding-right: 8px;
    position: relative;
    margin-right: 18px;
    font-size: 12px;
    z-index: 1;
    border-radius: 3px;
}

.lock span::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: -8px;
    background: var(--black);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    content: '';
    z-index: -1;
}


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

.blog-image {
    height: 250px;
}


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

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

.blog-content a h5 {
    color: var(--font-color);
    padding-bottom: 10px;
    font-family: var(--heading);
    font-weight: 600;
}

.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: #008000;
    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(--green);
    font-weight: 600;
    font-size: 13px;
}


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


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

.blog-wrapper {
    position: relative;
    height: auto;
}

.blog-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-image a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

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

.blog-wrapper:hover .blog-image img {
    transform: scale(1.2);
    transition: all .5s;
    -webkit-transition: all .5s;
}

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

.blog-content h6 {
    /* text-transform: uppercase; */
    color: var(--lime-green);
    font-size: 14px;
    padding-bottom: 12px;
}

.blog-content h4 {
    padding-bottom: 12px;
}

.blog-content h4 a {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    font-family: var(--heading);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.blog-content h4 a:hover {
    color: var(--lime-green);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.blog-date {
    color: var(--green);
}

.cs-search .form-control {
    border-radius: 0px;
    border: 1px solid var(--black);
}

.input-group-text {
    background: var(--black);
    color: var(--white);
    border-radius: 0;
    border: 0px;
}

.blog-category {
    padding: 20px 0;
}

.blog-category>h6,
.br-recent-blog>h6,
.br-tags>h6,
.archived-tags>h6 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 10px !important;
}

.archived-tags {
    margin-top: 30px;
}

.blog-category ul {
    list-style: none;
}

.blog-category ul li a {
    padding: 10px 0;
    border-bottom: 1px dashed #dedede;
    display: inline-block;
    width: 100%;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.blog-category ul li a:hover {
    color: var(--red);
    transition: all .3s;
    -webkit-transition: all .3s;
}

.br-recent-blog {
    padding: 30px 0;
}

.br-recent-blog>h6 {
    margin-bottom: 25px !important;
}

.rb-wrap {
    display: block;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--gray);
    margin-bottom: 15px;
}

.rb-wrap .rb-image {
    height: 70px;
    width: 70px;
    flex-shrink: 0;
    margin-right: 15px;
}

.rb-wrap .rb-content h6 {
    color: #a9a9a9;
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 8px;
}

.rb-wrap .rb-content p {
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    -webkit-line-clamp: 2;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 15px;
}

.tags-wrap a {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    flex: 0 0 auto;
    margin-right: 10px;
    border: 1px solid #dedede;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.archived-tags .tags-wrap a {
    padding: 8px 16px;
}

.tags-wrap a:hover {
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--red);
    transition: all .4s;
    -webkit-transition: all .4s;
}

/* .blog-comment-no p {
    font-size: 15px;
    color: var(--green);
    line-height: 0px;
    font-weight: 500;
}

.blog-comment-no p i {
    margin-right: 3px;
}

.blog-comment-no {
    position: absolute;
    background: var(--white);
    bottom: 0;
    right: 0;
    padding: 7px 10px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
}

.blog-comment-no p span:nth-child(1) {
    margin-right: 10px;
} */

.blog-publication p {
    color: var(--lime-green);
    font-weight: 500;
    font-size: 14px;
}

.blog-publication p span:nth-child(1) {
    margin-right: 10px;
}

.btn-read {
    font-size: 15px;
    font-weight: 600;
    color: var(--green);
    position: relative;
    margin-top: 15px;
    padding-bottom: 5px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.btn-read:before {
    width: 100%;
    height: 2px;
    background: var(--red);
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}

.pagination .page-item a {
    background: var(--white);
    color: var(--black);
    display: flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    border: 0px;
    min-width: 40px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.pagination li {
    margin-right: 10px;
}

.page-item.active .page-link {
    background-color: var(--black);
    border-color: var(--white);
    color: var(--white);
}

.bd-title {}

.bd-title h3 {
    padding-bottom: 15px;
}

.data-blog {
    display: flex;
    margin-bottom: 5px;
}

.data-blog span {
    margin-right: 15px;
}

.data-blog span:first-child {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--green);
}

.data-blog span:last-child {
    margin-right: 0px;
}

.bd-content {
    padding-top: 20px;
}

.bd-tag>h6 {
    font-size: 18px;
    margin-right: 15px;
}

.bd-tag .tag-box a {
    padding: 7px 12px;
    border: 1px solid #dedede;
    margin-right: 15px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.bd-tag .tag-box a:hover {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.bd-tag .tag-box a:hover h6 {
    transition: all .5s;
    -webkit-transition: all .5s;
    color: var(--white);
}

.bd-tag .tag-box h6 {
    font-size: 14px;
    color: var(--black);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.related-bw .blog-image {
    height: 250px;
}

.related-bw .blog-image a {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.related-bw .blog-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-image {
    position: relative;
    height: 550px;
}

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

.blog-share {
    margin-top: 20px;
}

.blog-share ul {
    margin-left: 20px;
    list-style: none;
}

.blog-share ul li {
    margin-right: 12px;
}

.blog-share ul li:last-child {
    margin-right: 0px;
    text-align: center;
}

.blog-share ul li a {
    color: var(--green);
    display: inline-block;
    width: 20px;
    text-align: center;
}

.comment-title {
    border-bottom: 1px solid var(--icon-menu);
    padding-bottom: 7px;
    width: 100%;
    margin-bottom: 15px;
}

.comment-wrap {
    padding: 60px 0 30px;
}

.comment-main {
    padding-right: 40px;
    height: 565px;
    overflow-y: scroll;
}

/* width */
.comment-main::-webkit-scrollbar {
    width: 2px;
    background: #dedede;
}

.comment-main::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 2px;
}

/* Handle */
.comment-main::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 2px;
}

/* Handle on hover */
.comment-main::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

.sr-image {
    margin-right: 30px;
}

.sr-image img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-form h4 {
    font-size: 17px;
    padding-bottom: 25px;
}

.form-comment input.form-control {
    border: 1px solid #dedede;
    height: 44px;
}

.form-comment textarea.form-control {
    border: 1px solid #dedede;
    height: 150px;
}

.comment-form {
    background: #fdfdfd;
    padding: 30px;
}

.form-comment .form-select {
    border: 1px solid #dedede;
    border-radius: 0px;
    height: 44px;
}

.form-comment .form-select:focus {
    box-shadow: none;
    outline: none;
}

.review {
    list-style: none;
}

.info-tab .nav-tabs .nav-link.active,
.info-tab .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border: 0px;
    position: relative;
}

.info-tab .nav-tabs .nav-link.active:after,
.info-tab .nav-tabs .nav-item.show .nav-link:after {
    position: absolute;
    left: 50%;
    bottom: 0px;
    background: var(--green);
    height: 2px;
    border-radius: 3px;
    content: '';
    width: 100%;
    transform: translateX(-50%);
}

.info-tab .nav-tabs .nav-link,
.info-tab .nav-tabs .nav-item {
    font-size: 15px;
    font-weight: 500;
    color: #919191;
    padding: 10px 0 5px;
    position: relative;
    margin-right: 30px;
    outline: none !important;
}

.info-tab .nav-tabs .nav-link:focus,
.info-tab .nav-tabs .nav-item:focus {
    border: 0px;
    outline: 0px;
}

.info-tab {
    padding-bottom: 30px;
}

.btn-solid-green {
    background: #588157;
    color: #fff;
}

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

.enquery-input .form-control {
    border: 1px solid var(--blue);
    border-radius: 30px;
    height: 48px;
    line-height: 48px;
    text-indent: 12px;
    padding: 0px 10px;
    font-size: 15px;
    font-family: var(--heading);
    font-weight: 400;
    margin-bottom: 15px;
}

.enquery-input label {
    color: var(--blue);
    font-size: 17px;
    font-family: var(--subheading);
    font-weight: 400;
    margin-bottom: 0px;
    padding-left: 12px;
}

.enquiry-form {
    background: var(--blue);
    border-radius: 10px;
    padding: 0px 25px 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.enquiry-form .form-control {
    border-radius: 6px;
    border: 1px solid var(--white);
}

.enquiry-form .form-label {
    padding-left: 0px;
    color: var(--white);
}

.enquiry-form h5 {
    background: #fff;
    color: var(--blue);
    padding: 13px 25px;
    font-size: 18px;
    font-family: var(--heading);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.enquiry-form.fixed {
    position: fixed;
    top: 40px;
    width: 400px;
    z-index: 1000;
}