:root {
    --white: #fff;

    --black: #000;

    --red: #bb000c;

    --pink: #a2185e;

    --blue: #00226c;

    --body-font: "Poppins", sans-serif;

    --heading: "Tenor Sans", sans-serif;
}

/* 



font-family: "Poppins", sans-serif;

font-family: "Lexend", sans-serif;

font-family: "Work Sans", sans-serif;

font-family: "Tenor Sans", sans-serif;



*/

html,
body {
    overflow-x: hidden;

    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);

    -webkit-font-smoothing: antialiased;

    font-size: 14px;
}

a {
    text-decoration: none !important;

    display: inline-block;
}

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

p {
    color: #444;

    font-size: 16px;

    line-height: 28px;

    margin-bottom: 15px;
}

.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-title {
    margin-bottom: 15px;
}

.section-title h6 {
    font-size: 16px;

    text-transform: uppercase;

    color: #049b7f;

    font-weight: 500;
}

.section-title h2 {
    font-weight: 600;
    font-size: 38px;
    line-height: 52px;
    color: var(--blue);
    margin-bottom: 10px;
    font-family: var(--heading);
}

.section-title span {
    max-width: 76px;
    margin: 0 auto;
    text-align: center;
}

.section-title span img {
    object-fit: contain;
}

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

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

.btn {
    font-size: 14px;
    font-family: var(--subheading);
    font-weight: 600;
    border-radius: 30px;
    transition: all .3s;
}

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

.btn-pink {
    background: var(--pink);
    color: var(--white);
    transition: all .3s;
}

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

.btn-large {
    padding: 16px 60px 16px 35px;
    border-radius: 30px;
    transition: all .3s;
}

.btn-small {
    padding: 10px 45px 10px 15px;
    border-radius: 30px;
    transition: all .3s;
}

.btn-animate span {
    position: absolute;
    transform: translateX(8px) rotate(0deg);
    transform-origin: center;
    transition: all .3s;
}

.btn-large:hover {
    padding: 16px 65px 16px 35px;
    transition: all .3s;
}

.btn-small:hover {
    padding: 10px 45px 10px 15px;
    transition: all .3s;
}

.btn-animate:hover span {
    transform: translateX(18px) rotate(90deg);
    transition: all .3s;
}

.btn-outline {
    border: 1px solid var(--pink);
    color: var(--black);
    transition: all .5s;
    padding: 10px 30px;
}

.btn-outline:hover {
    border: 1px solid var(--pink);
    background: var(--pink);
    color: var(--white);
    transition: all .5s;
}

.btn-outline span {
    margin-right: 7px;
}


/*--- 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 ---*/

header.main-header {
    position: absolute;

    z-index: 999;

    width: 100%;

    left: 0;

    top: 0;
}

.header-show {
    position: fixed;
    background: var(--white);
    top: 0;
    z-index: 999;
    width: 100%;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.navbar-brand img {
    width: 170px;
}

.header-show .navbar-brand img {
    width: 120px;
}

.get-quotes {
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.navbar-collapse ul>li {
    position: relative;
    padding: 10px 0px;
    margin-right: 60px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.navbar-collapse ul>li:last-child {
    margin-right: 0px;
}

.navbar-collapse ul>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    color: #212121;
    padding: 3px 0px;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.navbar-collapse ul>li.current-menu-item a,
.navbar-collapse ul>li>a:hover {
    color: #b5105d !important;

    transition: all 0.4s;
}

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

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

.carousel-item {
    height: 920px;
    background: #fff;
}

.carousel-item img {
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white) !important;
    opacity: 1;
    color: var(--red) !important;
    font-size: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    transition: all .5s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    transition: all .5s;
}

.carousel-control-prev {
    left: 0px;
    opacity: 0;
}

.carousel-control-next {
    right: 0px;
    opacity: 0;
}

.carousel:hover .carousel-control-prev {
    left: 120px;
    opacity: 1;
    transition: all .5s;
}

.carousel:hover .carousel-control-next {
    right: 120px;
    opacity: 1;
    transition: all .5s;
}

.carousel-caption {
    left: 0;
    top: 50%;
    transform: translateY(-60%);
    right: 0;
    bottom: auto;
    width: 100%;
    padding: 0px;
    text-align: left;
    color: var(--black);
}

.carousel-caption h1,
.carousel-caption h2 {
    max-width: 700px;
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 76px;
}

.carousel-caption h1:empty,
.carousel-caption h2:empty {
    display: none;
}

.carousel-caption h1 strong {
    display: block;
    font-weight: 600;
}

.carousel-caption p {
    max-width: 650px;
    margin-bottom: 15px !important;
    margin-top: 15px;
    font-size: 20px;
}


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

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

.about-images {
    height: 100%;
    margin: 0 auto;
}

.about-images img {
    object-fit: cover;
}

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

.about-home-content .section-title h2 {
    margin-bottom: 30px;
}


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

.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}

.gallery-thumb {
    height: 250px;
    overflow: hidden;
    position: relative;
    transition: all .5s;
}

.gallery-thumb:nth-child(1),
.gallery-thumb:nth-child(2),
.gallery-thumb:nth-child(7),
.gallery-thumb:nth-child(8),
.gallery-thumb:nth-child(9),
.gallery-thumb:nth-child(10) {
    grid-row: span 2;
    height: 100%;
}

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

.link-gallery {
    position: absolute;
    left: 0;
    top: 0;
    width: 110%;
    height: 110%;
    background: rgb(119 196 190 / 87%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .5s;

}

.gallery-thumb:hover .link-gallery {
    opacity: 1;
    transition: all .5s;
}

.link-gallery a {
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    background: rgb(0 0 0 / 45%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumb:hover .portfolio-image img {
    transform: scale(1.2);
    transition: all .5s;
}

/*--- Package Start  ---*/

.package-box {
    border-radius: 15px;

    overflow: hidden;

    text-align: center;

    border: 1px solid #dedede;
}

.package-head {
    padding: 25px;
}

.package-head h4 {
    font-size: 18px;

    color: var(--white);

    margin-bottom: 0px;
}

.package-book {
    padding: 15px 25px;
}

.package-book a {
    padding: 10px 15px;

    font-size: 14px;

    color: var(--black);

    background: var(--white);

    border-radius: 5px;
}

.package-price h3 {
    font-size: 20px;

    color: var(--white);

    margin-bottom: 0px;
}

.package-list {
    padding: 15px 0;

    height: 400px;

    overflow-y: auto;
}

.package-list ul li {
    font-size: 16px;

    font-weight: 600;

    padding: 15px 25px;

    border-bottom: 1px solid #dedede;

    color: var(--blue);
}

.package-list ul li:last-child {
    border-bottom: 0px;
}

.package-row [class*="col-"]:nth-child(1) .package-box .package-head,
.package-row [class*="col-"]:nth-child(1) .package-box .package-book {
    background-color: #003049;
}

.package-row [class*="col-"]:nth-child(2) .package-box .package-head,
.package-row [class*="col-"]:nth-child(2) .package-box .package-book {
    background-color: #656d4a;
}

.package-row [class*="col-"]:nth-child(3) .package-box .package-head,
.package-row [class*="col-"]:nth-child(3) .package-box .package-book {
    background-color: #403d39;
}

.modal-body .form-wrapper {
    box-shadow: none;

    padding: 20px;
}

.modal-header {
    padding: 15px 35px;

    background: #000814;
}

#select_package {
    cursor: not-allowed;

    padding-left: 0px;

    font-weight: 500;
}

.form-select:disabled {
    background-color: transparent !important;
}

.modal-title {
    color: var(--white);
}

.btn-close {
    background: var(--white) !important;
    color: var(--black) !important;
    display: flex;
    width: 16px;
    height: 16px;
    opacity: 1 !important;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    top: 9px;
    right: 10px;
}

/*--- Package End  ---*/

/*--- Home Form Start  ---*/

.home-form .section-title p {
    max-width: 650px;
}

.form-wrapper {
    background: var(--white);

    padding: 40px;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.single-input {
    background: #f7f7f7;

    padding: 10px 20px;

    margin-bottom: 20px;

    position: relative;
}

.single-input .form-control {
    border: 0px;

    padding: 0px;

    height: 40px;

    text-indent: 0;

    font-size: 14px;
}

.single-input textarea.form-control {
    height: 194px;
}

.single-input label {
    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    margin-bottom: 0px;
}

.scanner {
    background: var(--black);

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.rate-btn {
    padding: 15px 40px;
}

.wpcf7-submit {
    background: var(--black) !important;

    transition: all 0.4s;

    border: 0px !important;
}

.wpcf7-submit:hover {
    background: var(--black) !important;

    color: var(--white) !important;

    transition: all 0.4s;
}

/*--- Home Form End --- */

/*--- Appply Box Start ---*/

.apply-wrap {
    z-index: 99;

    position: relative;

    padding: 60px 0;
}

.apply-wrap::before {
    position: absolute;

    content: "";

    left: 0;

    top: 0;

    right: 0;

    bottom: 0;

    background: rgb(48 4 0 / 80%);

    z-index: -1;
}

.emp-icon {
    width: 80px;

    height: 80px;

    margin-right: 30px;

    background: var(--white);

    border-radius: 50%;

    padding: 10px;

    margin: 0 auto 20px;

    border: 4px solid #766161;
}

.content-mail h2 {
    font-size: 32px;

    line-height: 46px;

    font-family: var(--heading);
}

.btn-apply {
    padding: 15px 40px;

    background: var(--white);

    color: var(--black);
}

/*--- Appply Box End  ---*/

/*====== Footer Start  ======*/

.footer-main {
    background: var(--black);

    padding: 100px 0 0 0;

    position: relative;

    z-index: 9;
}

/* Footer Logo & Content Start  */

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

.footer-logo {
    max-width: 200px;

    margin: 0 auto 20px;
}

.footer-logo a {
    display: inline-block;

    width: 100%;
}

.footer-note {
    margin-top: 20px;

    text-align: center;

    font-size: 16px;

    line-height: 27px;
}

/* Footer Logo & Content Start  */

/* Footer Menu Start  */

.link-box h4 {
    font-size: 22px;

    font-weight: 700;

    padding-bottom: 20px;

    margin-bottom: 15px;

    position: relative;

    color: var(--white);
}

.link-box.footer-menu ul {
    column-count: 2;

    column-gap: 40px;
}

.link-box ul {
    list-style: none;

    padding-left: 0px;
}

.link-box ul li {
    margin-bottom: 18px;

    position: relative;
}

.link-box ul li a {
    color: var(--white);

    padding-left: 24px;
}

.link-box ul.menu-links li a::before {
    position: absolute;

    left: 0;

    top: 0;

    color: #dedede;

    content: "\e5e9";

    font-family: "Font Awesome 6 Sharp";
}

/* Footer Menu End  */

/* Footer Contact Start  */

.address-book li {
    padding: 0 30px 0 36px;

    margin-bottom: 15px !important;

    position: relative;
}

.address-book li span {
    position: absolute;

    left: 0;

    top: 0px;

    width: 24px;

    height: 24px;

    font-size: 18px;

    color: #74c6bf;
}

.address-book li p {
    font-size: 16px;

    line-height: 26px;

    color: var(--white);

    font-weight: 500;
}

.address-book li p a {
    padding-left: 0px;
}

.address-book li h6 {
    font-size: 18px;

    line-height: 18px;

    margin-bottom: 7px;

    color: var(--white);

    font-weight: 600;
}

.footer-map iframe {
    height: 200px;
}

/* Footer Contact End  */

/* Footer Blog Start  */

.footer-blog {
    margin-bottom: 10px;

    padding-bottom: 10px;

    border-bottom: 1px solid #3e3e3e;
}

.footer-blog:last-child {
    margin-bottom: 0px;

    padding-bottom: 0px;

    border-bottom: 0px solid #3e3e3e;
}

.blog-image-footer {
    flex: 0 0 90px;

    height: 60px;
}

.blog-image-footer img {
    width: 100% !important;

    height: 100% !important;

    object-fit: cover;
}

.blog-content-footer {
    flex: 0 0 calc(100% - 100px);
}

.blog-content-footer p {
    font-size: 17px;

    font-weight: 500;

    color: var(--white);

    display: block;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;
}

.blog-list-footer {
    padding-right: 20px;
}

/* Footer Blog End  */

/* Footer Copyright Start  */

.copyright {
    background: var(--white);

    padding: 20px 0;

    margin-top: 50px;
}

.copyright p {
    font-weight: 500;

    font-size: 14px;

    color: var(--black);
}

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

/* Footer Copyright End  */

/*===== Footer End   ======*/

/* CMS Banner Start  */

.breadcrumb-wrapper {
    height: 250px;

    display: flex;

    align-items: center;

    color: var(--white);
}

.breadcrumb_bottom {
    right: 0;

    bottom: 20px;
}

.breadcrumbs .bread-link {
    color: var(--black);

    margin-right: 12px;

    text-transform: uppercase;

    font-weight: 500;
}

.breadcrumbs .separator {
    font-size: 12px;

    margin-right: 12px;

    color: var(--black);
}

.breadcrumbs .item-active {
    color: #b5105d;
}

/* CMS Banner End  */

/* Blog CMS Start  */

.blog-details {
    padding: 30px 0;
}

.blog-image {
    height: 550px;
}

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

.blogtitle {
    font-size: 32px;

    font-weight: 600;
}

.publish-time {
    font-weight: 600;

    font-size: 16px;

    margin-bottom: 15px !important;

    color: var(--lred);
}

.comments-area {
    margin: 30px 0 0;
}

.comment-reply-title {
    font-size: 28px;

    margin-bottom: 10px;
}

.comment-form {
    margin-top: 0px;
}

.form-submit .submit {
    background: var(--black);

    color: var(--white);

    padding: 12px 35px;

    font-size: 16px;
}

.comment-form-comment {
    margin-bottom: 5px !important;
}

.nav-previous .post-title,
.nav-next .post-title {
    margin: 0px;

    font-size: 20px;

    font-weight: 600;
}

.nav-previous .meta-nav,
.nav-next .meta-nav {
    margin-bottom: 5px !important;

    color: var(--lred);
}

.sub-head {
    padding: 10px 15px;

    background: var(--black);

    color: var(--white);

    font-size: 18px;
}

.recent_blog {
    background: #f7f7f7;

    padding: 10px;
}

.bd_flex_image {
    flex: 0 0 120px;

    height: 100%;

    margin-right: 12px;
}

.bd_flex_image img {
    object-fit: cover;
}

.bd_flex h5 a {
    color: var(--black);
    font-size: 18px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.7px;
    font-weight: 600;
    line-height: 22px;
}

.blog-thumb-bottom {
    background: #fff;
    padding: 20px 25px;
    transition: all .5s;
}

.blog-thumb-bottom h4 a {
    font-size: 20px;
    font-weight: 600;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #00226c;
    margin-bottom: 10px;
    transition: all .5s;
}

.thumb-content {
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
    transition: all .5s;
}

.blog-thumb-bottom .read-more {
    font-size: 16px;
    color: #003049;
    font-weight: 500;
    background: transparent;
    padding: 0px;
    margin-top: 15px;
    text-transform: uppercase;
    transition: all .5s;
}

.blog-thumb {
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    transition: all .5s;
}

.blog-thumb-image {
    height: 250px;
    overflow: hidden;
}

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

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

.blog-thumb:hover .blog-thumb-bottom .read-more {
    color: var(--white);
    letter-spacing: 1.5px;
    transition: all .5s;
}

.blog-thumb:hover .blog-thumb-bottom h4 a {
    color: var(--white);
    transition: all .5s;
}

.blog-thumb:hover .blog-thumb-bottom {
    background: var(--pink);
    transition: all .5s;
}

.blog-thumb:hover .thumb-content {
    color: var(--white);
    transition: all .5s;
}

/* Blog CMS Start  */

/* About CMS Start  */

.acc-wrap {
    background: var(--white);

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    padding: 15px 30px;

    margin-bottom: 30px;
}

.about-main-image {
    height: 520px !important;
}

.about-main-image img {
    height: 100% !important;

    width: 100% !important;

    object-fit: cover;
}

.barcode-system {
    background: #f7f7f7;
}

.mission-vission {
    padding-top: 50px;
}

.mvc-box {
    padding: 40px 50px 40px;

    position: relative;

    background: #000814;
}

.mvc-icon {
    position: relative;

    width: 120px;

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    border-radius: 50%;

    z-index: 9;

    transform: translateY(-100px);
}

.mvc-icon::before {
    position: absolute;

    left: -7px;

    top: -4px;

    width: 130px;

    height: 130px;

    content: "";

    background: var(--lred);

    z-index: -2;

    border-radius: 50%;
}

.mvc-icon::after {
    position: absolute;

    left: 0px;

    top: 0;

    width: 120px;

    height: 120px;

    content: "";

    background: var(--white);

    z-index: -1;

    border-radius: 50%;
}

.mvc-row {
    margin-top: 80px;
}

.mvc-row [class*="col-"]:nth-child(1) .mvc-box {
    border-right: 1px solid #333;
}

.mvc-content {
    margin-top: -70px;
}

.mvc-content h4 {
    color: var(--white);

    font-size: 28px;

    margin-bottom: 12px;
}

.mvc-content p {
    color: #dfdfdf;
}

.mvc-content ul {
    padding-left: 18px;

    list-style: disc;

    margin-top: 20px;
}

.mvc-content ul li {
    font-size: 16px;

    color: #dfdfdf;

    margin-bottom: 8px;
}

/* About CMS End  */

/* Contact CMS Start  */

.contact-cms {
    background-color: #f8f8f8;
}

.addresses-contact .address-book li h6 {
    color: #e50614;

    font-weight: 700;

    text-transform: uppercase;
}

.addresses-contact .address-book li p {
    color: var(--black);

    font-size: 19px;

    line-height: 27px;
}

.addresses-contact .address-book li span {
    background: var(--lred);

    display: flex;

    justify-content: center;

    align-items: center;

    width: 60px;

    height: 60px;

    color: var(--white);
}

.addresses-contact .address-book li {
    padding: 0 30px 0 80px;

    margin-bottom: 25px !important;
}

.cbox {
    padding: 20px 30px;

    background: var(--white);

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px 0px;

    column-gap: 25px;

    position: relative;
}

.cbox-icon {
    font-size: 32px;

    color: var(--lred);
}

.cbox-content h5 {
    font-size: 20px;

    margin-bottom: 4px;
}

.cbox-content p a {
    font-size: 18px;

    color: var(--black);
}

.cbox::before {
    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 3px;

    content: "";

    background: var(--lred);
}

.contact-form-box {
    padding: 50px;

    background: var(--white);

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-form-box .section-title p {
    color: var(--black);

    max-width: 650px;

    margin: 15px 0 0;
}

.ccmap {
    margin-bottom: -4px;
}

.ccmap iframe {
    height: 400px;
}

/* Contact CMS End  */

.productd-image {
    height: 400px;

    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */

    border: 1px solid #dedede;
}

.productd-image img {
    width: 100% !important;

    height: 100% !important;

    object-fit: cover;
}

.more-product-lists {
    margin-left: 30px;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    padding: 25px;
}

.more_products h5 a {
    color: var(--black);

    background: #f7f7f7;

    padding: 20px;

    display: inline-block;

    width: 100%;

    font-size: 18px;

    transition: all 0.5s;

    position: relative;
}

.more_products h5 a span {
    position: absolute;

    right: 20px;

    top: 18px;

    font-size: 22px;
}

.more_products h5 a:hover {
    background: var(--lred);

    color: var(--white);

    transition: all 0.5s;
}

/* Collection CMS Start  */

.collection-image img {
    border-radius: 15px;
}

.ac-content ul li {
    margin-bottom: 15px;

    font-size: 18px;

    font-weight: 500;

    color: var(--blue);
    padding: 2px 0 2px 25px;
    position: relative;
}

.ac-content ul li span {
    position: absolute;

    left: 0;

    top: 3px;

    color: #049b7f;
}

/* Facility Start  */

.facility-box {
    background: #111026;

    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;

    border-radius: 10px;

    overflow: hidden;

    padding: 50px 30px 30px;
}

.facility-icon {
    max-width: 64px;

    height: 64px;

    margin-bottom: 20px;
}

.facility-title h4 {
    font-size: 20px;

    text-transform: uppercase;
}

/* Facility end  */

/* Collection CMS End  */

/* Career Start  */

.career-content ul {
    padding-left: 18px;
}

.career-content ul li {
    margin-bottom: 10px;

    font-size: 16px;

    font-weight: 500;
}

.career-image {
    border-radius: 10px;

    margin-left: 60px;

    overflow: hidden;
}

/* Career End  */

/* Doctor List Start  */

.cms-doctor {
    background: #f7f7f7;
}

.doctor-thumb {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    background: #fff;

    padding: 70px 30px 30px;

    border-radius: 10px;

    overflow: hidden;

    position: relative;
}

.doctor-image {
    width: 120px;

    height: 120px;

    margin: 0 auto 20px;
}

.doctor-title h4 {
    font-size: 20px;

    font-weight: 600;

    margin-bottom: 8px;
}

.department {
    position: absolute;

    left: 0;

    top: 0;

    padding: 12px 15px;

    background: var(--blue);

    width: 100%;

    text-align: center;
}

.department p {
    color: var(--white);

    font-size: 18px;

    font-weight: 500;
}

.doctor-designation h6 {
    line-height: 26px;
}

.avail-days {
    margin-top: 20px;

    column-gap: 10px;

    justify-content: center;

    width: 100%;
}

.avail-days h5 {
    flex: 0 0 100%;

    margin-bottom: 8px;

    font-size: 17px;

    font-weight: 600;
}

.avail-days h5 span {
    color: #049b7f;
}

.doctor-time {
    margin-top: 15px;
}

.doctor-time h5 {
    margin-bottom: 8px;

    font-size: 17px;

    font-weight: 600;
}

.doctor-time h5 span {
    color: #049b7f;
}

.btn-appointment {
    background: #049b7f;

    color: var(--white);

    margin-top: 15px;
}

#select_day,
#select_doctor,
#select_department {
    padding-left: 0px;

    position: relative;
}

.select-box::after {
    position: absolute;

    right: 30px;

    top: 45px;

    content: "\f078";

    font-family: "Font Awesome 6 Sharp";
}

/* Doctor List End  */

.cw {
    position: fixed;

    bottom: 30px;

    right: 15px;

    display: flex;

    flex-direction: column;

    z-index: 999;

    row-gap: 2px;
}

.cw a {
    display: inline-flex;

    width: 36px;

    height: 36px;

    font-size: 16px;

    align-items: center;

    justify-content: center;
}

.cw a:nth-child(1) {
    background: #019e50;
    color: var(--white);
}

.cw a:nth-child(2) {
    background: #01339e;
    color: var(--white);
}

.cms-banner {
    background: #dedede;
}

/*--- Diagnostic Start ---*/

.slider-diag .item {
    display: block;
}

.diagnostic {
    background: #f7f7f7;
}

.diag-content {
    background: var(--white);
    padding: 25px 0px;
    min-height: 185px;
}

.diag-content h5 {
    font-size: 20px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

.diag-content p {
    line-height: 24px;
}

.diag-content .btn-solid {
    margin-top: 15px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

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

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

/*--- Diagnostic End ---*/

/*---------------------
  Testimonial Slider
-----------------------*/

.testimonial-section {
    background: #f9f9f9;
}

.testimonial-section .section-title {
    margin-bottom: 30px;
}

.testimonial-slider.owl-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
}

.testimonial-slider.owl-carousel .owl-nav button {
    height: 48px;
    width: 48px;
    font-size: 17px;
    color: var(--white);
    background: var(--black);
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: -190px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.testimonial-slider.owl-carousel .owl-nav button:hover {
    background: var(--pink);
    color: var(--white);
    transition: all .3s;
}

.testimonial-slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -190px;
}

.testimonial-slider .ts-item {
    text-align: center;
}

.testimonial-slider .ts-item p {
    font-size: 20px;
    color: #707079;
    line-height: 30px;
    margin-bottom: 50px;
}

.testimonial-slider .ts-item .ti-author .rating {
    display: inline-block;
}

.testimonial-slider .ts-item .ti-author .rating i {
    color: #f5b917;
    font-size: 16px;
}

.testimonial-slider .ts-item .ti-author h5 {
    font-size: 20px;
    color: #19191a;
    display: inline-block;
}

.user-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.why-icon {
    margin: 0 auto 20px;
    height: 100px;
    width: 100px;
}

.why-icon img {
    object-fit: contain;
}

.social-media li a {
    color: var(--white);
    font-size: 20px;
}

.social-media li {
    margin-right: 15px;
}

.social-media li:last-child {
    margin-right: 0px;
}

.cw {
    position: fixed;
    right: 0;
    bottom: 30px;
}

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

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

.cw ul li a {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    line-height: 30px;
    background: #656d4a;
    color: var(--white);
    text-align: center;
}

.navbar-text {
    display: none;
}

.treatment-cover {
    padding-top: 60px;
}

.accordion-button:not(.collapsed) {
    background: var(--pink);
    color: var(--white);
}

.accordion-body {
    font-size: 16px;
    line-height: 25px;
}

.accordion-button {
    font-size: 17px;
    font-weight: 500;
}


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

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-item:last-child {
    margin-bottom: 0px;
}