:root {
    --m-bk-cl: #1f1f1f;
    --m-bk2-cl: #333333;
    --wh-cl: #fff;
    --gy-cl: #9695a2;
    --rd-cl: #d41d22;
    --bk-cl: #fff;
    --bk2-cl: #ebebeb;
    --bk3-cl: rgba(255, 255, 255, 0.95);
    --m-cl: #d41d22;
    --b-cl: #000000b0;
    --p-cl: #808080;
    --txt-cl: #1f2e4e;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    --font-smoothing: antialiased;
}

body {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    overflow-x: hidden !important;
    background: transparent;
    background-color: transparent;
}

a {
    text-decoration: none !important;
}

p {
    color: var(--txt-sec-cl);
}

/* =================== PRELOADER CSS START =================== */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--m-bk-cl);
    z-index: 10000009;
}

#preloader {
    display: table;
    table-layout: fixed;
}

#preloader-status {
    display: table-cell;
    vertical-align: middle;
}

.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.loader {
    position: relative;
    width: 70px;
    height: 70px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 1px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.loader span {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -1px;
    left: -1px;
    border: 1px solid transparent;
    border-top: 1px solid var(--rd-cl);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* =================== PRELOADER CSS END =================== */

/* =================== SCROLL TOP CSS START =================== */
#scroll-top-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--rd-cl);
    color: var(--wh-cl);
    padding: 15px 22px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s ease;
}

#scroll-top-button.show {
    opacity: 1;
    pointer-events: auto;
}
/* =================== SCROLL TOP CSS END =================== */

/* =================== WHATSAPP FLOAT CSS START =================== */
.whatsapp-float {
    position: fixed;
    bottom: 35%;
    right: -8%;
    background-color: #25d366;
    width: 12%;
    border-radius: 38px 0 0 40px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.whatsapp-float-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

.whatsapp-float i {
    font-size: 2em;
    color: var(--wh-cl);
    margin-right: 8px;
}

.whatsapp-float a {
    font-size: 1em;
    margin: 0;
    color: var(--wh-cl);
    white-space: nowrap;
}

.whatsapp-float:hover {
    right: 0;
}
/* =================== WHATSAPP FLOAT CSS END =================== */

/* =================== NAVABAR CSS START =================== */
.navbar {
    display: block;
    width: 100%;
    background: transparent;
    z-index: 99;
    position: absolute;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
}

.nav-scroll {
    top: 0;
    display: block;
    background: var(--wh-cl);
    box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    padding: 10px 0 0 0;
    position: fixed;
    left: 0;
    width: 100%;
    border: none;
}

.top_navbar {
    background-color: var(--m-bk-cl);
}

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

.top_navbar a {
    color: var(--gy-cl);
    margin-right: 1rem;
}

.top_navbar a i {
    color: var(--rd-cl);
    margin-right: 1rem;
}

.top_navbar a:hover {
    color: var(--rd-cl);
    margin-right: 1rem;
}

.navbar .container {
    border: none;
}

.navbar-toggler-icon {
    width: 15px;
    height: 20px;
    background-image: none;
}

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: var(--rd-cl);
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 15px;
}

.logo-wrapper .logo img {
    max-width: 100%;
    height: auto;
    width: 40px;
}

.logo-wrapper .logo-text {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--wh-cl);
    margin-left: 10px;
    white-space: nowrap;
}

.navbar .navbar-nav .nav-link {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--wh-cl);
    margin: 1px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding-right: 9px;
    padding-left: 9px;
}

.nav-scroll .logo-wrapper .logo-text {
    color: var(--m-bk2-cl);
}

.nav-scroll .navbar-nav .nav-link {
    color: var(--m-bk2-cl);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:hover i,
.navbar .navbar-nav .active,
.navbar .navbar-nav .active i {
    color: var(--rd-cl);
}
/* =================== NAVABAR CSS END =================== */


/* =================== BANNER HOME CSS START =================== */
.banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    --webkit-box-align: center;
    --ms-flex-align: center;
    align-items: center;
    position: relative;
    min-height: 700px;
    background-position: center;
    background-image: url(../img/banners/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner > * {
    position: relative;
    z-index: 3;
}

.banner .banner-heading {
    position: absolute;
    width: 50%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.banner .banner-heading h1,
.banner .banner-heading h2 span,
.banner .banner-heading h1 span {
    position: relative;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--bk-cl);
    line-height: 1em;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.banner .banner-heading h2 span {
    color: var(--rd-cl);
    font-size: 2rem;
}

.banner .banner-heading h1 span {
    color: var(--rd-cl);
}

.banner .banner-heading .features {
    float: left;
    padding: 15px 0;
}

.banner .banner-heading .features .feature-item {
    padding: 10px;
    font-size: 1.3rem;
}

.banner .banner-heading .features .feature-item i {
    color: var(--rd-cl);
    width: 30px;
    text-align: left;
}

.banner .banner-heading .features .feature-item span {
    color: var(--bk-cl);
}

.banner .banner-heading .scroller {
    height: 45px;
    line-height: 70px;
    overflow: hidden;
}

.banner .banner-heading .scroller .inner {
    animation: 10s normal infinite running scroll;
}

@keyframes scroll {
    0% {
        margin-top: 0px;
    }

    15% {
        margin-top: 0px;
    }

    25% {
        margin-top: -50px;
    }

    45% {
        margin-top: -50px;
    }

    55% {
        margin-top: -100px;
    }

    65% {
        margin-top: -100px;
    }

    75% {
        margin-top: -145px;
    }

    85% {
        margin-top: -145px;
    }

    95% {
        margin-top: -190px;
    }

    105% {
        margin-top: -190px;
    }
}

.banner .booking {
    position: relative;
    background: var(--bk2-cl);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 2px 10px;
    margin: 8rem 0 2rem;
    border-radius: 20px;
}

.banner .booking h2 {
    color: var(--b-cl);
    font-weight: 600;
    text-align: center;
}

.banner .booking .appointment-group {
    position: relative;
    padding: 10px;
    border-radius: 10px;
}

.banner .booking .form-row .form-group {
    padding: 9px 0 0 7px;
}

.banner .booking .form-row .form-group label {
    font-size: 12px;
    font-weight: 600;
}

.banner .booking .form-row .form-group input,
.banner .booking .form-row .form-group select,
.banner .booking .form-row .form-group textarea {
    border: 1px solid var(--txt-cl);
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 13px;
    border-radius: 12px;
    padding: 5px 7px;
    resize: none;
}

.booking-button {
    display: block;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    background: var(--rd-cl);
    color: var(--bk-cl);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    text-decoration: none;
    line-height: 60px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-out;
    font-weight: 300;
    border-radius: 30px;
}

.booking-button:hover {
    background: var(--bk-cl);
    color: var(--rd-cl);
    border: 1px solid var(--rd-cl);
}
/* =================== BANNER HOME CSS END =================== */


/* =================== WHY CHOOSE US HOME CSS START =================== */
.whs {
    background: var(--bk2-cl);
    padding: 100px 0;
}

.whs .icon-box h5 {
    color: var(--b-cl);
}

.whs .icon-box .icon-circle i {
    color: var(--rd-cl);
}

.whs .icon-box .icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--bk-cl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
/* =================== WHY CHOOSE US HOME CSS END =================== */


/* =================== DOCTORS CSS START =================== */
.doctors .background-image {
    background-image: url(../img/banners/bg-sahde-1.png);
    background-position: -33px 157px;
    background-repeat: no-repeat;
    background-size: 39% auto;
}

.doctors .background-image .container {
    padding: 100px 0;
}

.doctors .doctor-title {
    padding: 20px 0;
}

.doctors .doctor-title .main-heading h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--s-cl);
}

.doctors .doctor-title .sub_heading a {
    font-size: 1rem;
    color: var(--s-cl);
}

.doctors .doctor-title .sub_heading a:hover,
.doctors .doctor-title .sub_heading a:hover i {
    color: var(--m-cl);
}

.doctors .doctor-title .sub_heading a i {
    color: var(--s-cl);
    margin-right: 10px;
    transform: rotate(45deg);
}

.doctors .doctors-item {
    position: relative;
    overflow: hidden;
}

.doctors .doctors-content {
    border-radius: 15px;
    padding: 1rem 15px;
    border: 2px solid var(--bk2-cl);
    text-align: center;
    background: var(--bk-cl);
}

.doctors .doctors-content .doctors-headings {
    height: 50px;
    text-align: left;
    line-height: 1;
}

.doctors .doctors-content .doctors-headings h4 {
    color: var(--s-cl);
    font-weight: 600;
    font-size: 19px;
}

.doctors .doctors-img {
    height: 44vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctors .doctors-img img {
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
    height: 42vh;
    border-radius: 15px;
}

.doctors .doctors-item:hover .doctors-img img {
    transform: translateY(-10px);
}

.doctors .doctors-content .doctors-details {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.doctors .doctors-content .doctors-details i {
    color: var(--m-cl);
}

.doctors .doctors-item .doctors-details .doctor-details {
    text-align: center;
    display: flex;
    justify-content: center;
    height: 30px;
}

.doctors .doctors-item .doctors-details .doctor-details span {
    font-size: 11px;
    line-height: 14px;
    font-weight: 500;
    color: var(--s-cl);
}
/* =================== DOCTORS CSS END =================== */

/* =================== DRIVERS HOME CSS START =================== */
.jot-section {
    position: relative;
}

.jot-section .background-image {
    background-image: url(../img/banners/bg-sahde-3.png);
    background-position: 100% 60px;
    background-repeat: no-repeat;
    background-size: 193px auto;
}

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

.jot-section .jot-content {
    padding: 0 4rem;
}

.jot-section .jot-content p {
    color: var(--s-cl);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.jot-section .jot-content .button-1 {
    display: inline-block;
    height: auto;
    padding: 5px 15px;
    margin: 0 2px;
    border: 1px solid var(--s-cl);
    border-radius: 30px;
    color: var(--bk-cl);
    background: var(--s-cl);
    font-weight: 300;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease,
        background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.jot-section .jot-content .button-1:hover {
    background-color: transparent;
    border: 1px solid var(--s-cl);
    color: var(--bk-cl);
}

.jot-section .jot-content .button-1 span {
    transform: rotate(-45deg);
}

.jot-section .jot-content .list-main {
    display: flex;
}

.jot-section .jot-content .list-main .list {
    padding: 0 35px 0 0;
}

.jot-section .jot-content .list-main .list-unstyled li strong {
    color: var(--s-cl);
    font-size: 16px;
}

.jot-section .jot-content .list-main .list-unstyled li span {
    color: var(--m-cl);
    font-size: 16px;
}

.jot-section .doc-image {
    width: 100%;
}
/* =================== DRIVERS HOME CSS END =================== */

/* =================== OUR SERVICES CSS START =================== */
.our-services {
    background: var(--bk2-cl);
    padding: 50px 0;
}

.our-services .card {
    margin: 20px 0;
}

.our-services .card .card_content p {
    font-size: 15px;
}

.our-services .card .card_content a {
    display: inline-block;
    height: auto;
    width: 100%;
    padding: 15px;
    margin: 0 2px;
    border-radius: 30px;
    border: 1px solid var(--m-cl);
    color: var(--m-cl);
    background: transparent;
    font-weight: 300;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease,
        background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.our-services .card .card_content a:hover {
    border: 1px solid var(--m-cl);
    color: var(--bk-cl);
    background: var(--m-cl);
}

.our-services .service-icon {
    font-size: 40px;
    color: var(--m-cl);
}

.our-services .card {
    margin: 20px 10px;
    padding: 20px 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.our-services .card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.our-services .card .card-title {
    font-weight: 600;
    font-size: 18px;
}

.our-services .card .card_content p {
    font-size: 14px;
    min-height: 70px;
    height: 16vh;
}

.our-services .card .card_content a {
    margin-top: 10px;
}
/* =================== OUR SERVICES CSS END =================== */

/* =================== COUNTER CSS START =================== */
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
        url(../img/banners/bg-showcase.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 50px;
}

.counter .counter-item .counter-item-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bk-cl);
    background: var(--m-cl);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.counter .counter-item .counter-counting .number {
    color: var(--bk-cl);
    font-weight: 700;
    font-size: calc(1.125rem + 0.7vw);
}

.counter .counter-item .counter-counting .plus {
    color: var(--bk-cl);
    font-weight: 700;
    font-size: calc(1.375rem + 0.5vw);
}

.counter .counter-item .h4-desc {
    color: var(--bk-cl);
    font-size: 1.3rem;
    margin: 0;
}
/* =================== COUNTER CSS END =================== */

/* =================== TESTIMONIALS HOME CAROUSEL CSS START =================== */
.testimonials {
    background: var(--bk2-cl);
    padding: 50px 0;
}

.testimonials .item {
    position: relative;
    padding: 40px 40px 0px;
    border-radius: 20px 20px 20px 0;
    background: var(--bk-cl);
}

.testimonials .item .stars {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px 10px 20px;
    border-radius: 0 0 0 20px;
    color: var(--rd-cl);
    background: var(--bk2-cl);
}

.testimonials .item .stars i {
    font-size: 10px;
}

.testimonials .item i.fa-quote-left {
    color: var(--rd-cl);
    font-size: 45px;
    margin-bottom: 10px;
}

.testimonials .item .text {
    height: 20vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--rd-cl) transparent;
}

.testimonials .item .text h5 {
    border-radius: 20px;
    font-family: "Outfit", sans-serif;
    color: var(--rd-cl);
    font-weight: 700;
    font-size: 14px;
}

.testimonials .item .text p {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    color: var(--b-cl);
    margin-bottom: 15px;
}

.testimonials .item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -40px;
}

.testimonials .item .info .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials .item .info .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonials .item .info h6 {
    font-family: "Outfit", sans-serif;
    color: var(--b-cl);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonials .item .info p {
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5em;
    color: #999;
    margin-bottom: 0;
}

.testimonials .item .img-curv {
    position: relative;
    padding: 15px;
    border-radius: 0 40px 0 0;
    background: var(--bk2-cl);
}
/* =================== TESTIMONIALS HOME CAROUSEL CSS END =================== */



/* =================== CONTACT CSS START =================== */
/* BANNER - START */
.other-banner .contact-heading {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.other-banner .contact-heading h1,
.other-banner .contact-heading h1 span,
.other-banner .contact-heading h6 {
    position: relative;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--bk-cl);
    line-height: 1em;
}

.other-banner .contact-heading h1 {
    color: var(--rd-cl);
    font-size: 70px;
}

.other-banner .contact-heading h1 span {
    color: var(--bk-cl);
}

.other-banner .contact-heading h6 {
    color: var(--rd-cl);
}
/* BANNER - END */


/* CONTACT BOX - START */
.contact-main {
    padding: 50px 0;
}

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

.contact-box .container {
    position: relative;
    z-index: 2;
}

.contact-box .item {
    background: var(--bk2-cl);
    height: 23vh;
    padding: 23px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    transition: background-color 300ms ease, transform 300ms ease,
        color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.contact-box .item.active {
    background: var(--rd-cl);
}

.contact-box .item:hover {
    background: var(--rd-cl);
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.contact-box .item h5 {
    font-size: 21px;
    color: var(--b-cl);
    margin-bottom: 0px;
}

.contact-box .item.active h5 {
    color: var(--bk-cl);
}

.contact-box .item:hover h5 {
    color: var(--bk-cl);
}

.contact-box .item a {
    color: var(--b-cl);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 0;
}

.contact-box .item.active a {
    color: var(--bk-cl);
}

.contact-box .item:hover a {
    color: var(--bk-cl);
}

.contact-box .item span {
    font-size: 35px;
    color: var(--rd-cl);
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.contact-box .item.active span {
    color: var(--bk-cl);
}

.contact-box .item:hover span {
    color: var(--bk-cl);
}

.contact-box .item i.numb {
    font-size: 120px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    color: rgba(255, 255, 255, 0.1);
    opacity: 0.2;
}

.contact-box .item.active i.numb {
    color: rgba(0, 0, 0, 0.2);
}

.contact-box .item:hover .numb {
    color: rgba(0, 0, 0, 0.2);
}
/* CONTACT BOX - END */


/* CONTACT FORM - START */
.contact h5 {
    color: var(--b-cl);
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact .form-box input[type="password"],
.contact .form-box input[type="email"],
.contact .form-box input[type="text"],
.contact .form-box input[type="file"],
.contact .form-box textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 18.5px 20px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--b-cl);
    background-image: none;
    border: 1px solid var(--b-cl);
    border-radius: 30px;
    resize: none;
}

.google-map {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 20px;
}
/* CONTACT FORM - END */
/* =================== CONTACT CSS END =================== */


/* =================== FAQ CSS START =================== */
.faq-service {
    background: var(--bk2-cl);
    padding: 50px 0;
}

.faq-service-accordin .fs-accordion-item {
    border-bottom: 1px solid var(--gy-cl);
}

.faq-service-accordin .fs-accordion-item button[aria-expanded="true"] {
    border-bottom: 1px solid var(--b-cl);
}

.faq-service-accordin button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--txt-cl);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.faq-service-accordin button:hover,
.faq-service-accordin button:focus {
    cursor: pointer;
    color: var(--rd-cl);
}

.faq-service-accordin button:hover::after,
.faq-service-accordin button:focus::after {
    cursor: pointer;
    color: var(--rd-cl);
    border: 1px solid var(--rd-cl);
}

.faq-service-accordin button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.faq-service-accordin button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.faq-service-accordin button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.faq-service-accordin button[aria-expanded="true"] {
    color: var(--rd-cl);
}

.faq-service-accordin button[aria-expanded="true"] .icon::after {
    width: 0;
}

.faq-service-accordin button[aria-expanded="true"] + .fs-accordion-content {
    opacity: 1;
    max-height: 13em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.faq-service-accordin button .fs-accordion-title {
    padding: 1em 1.5em 1em 0;
}

.faq-service-accordin .fs-accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.faq-service-accordin .fs-accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}
/* =================== FAQ CSS END =================== */




/* =================== FOOTER CSS START =================== */
footer {
    background: var(--m-bk-cl);
}

footer .social-links .tittle span {
    color: var(--wh-cl) !important;
}

footer .social-links .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social-links .social-icons a {
    background: var(--rd-cl) !important;
    width: 40px;
    text-align: center;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
}

footer .social-links .social-icons a:hover {
    background: transparent !important;
    border: 1px solid var(--rd-cl);
}

footer .social-links .social-icons a i {
    color: var(--wh-cl) !important;
}

footer .social-links .social-icons a:hover i {
    color: var(--rd-cl) !important;
}

footer .links .about .footer-logo {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    margin-bottom: 1rem;
}

footer .links .about .footer-logo img {
    max-width: 100%;
    height: auto;
    width: 50px;
}

footer .links .about .footer-logo .logo-text {
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--wh-cl);
    margin-left: 10px;
    white-space: nowrap;
}

footer .links .about p {
    color: var(--wh-cl);
    font-size: 14px;
    line-height: 1.6;
}

footer .links .sub-links h6 {
    color: var(--wh-cl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

footer .links .sub-links p {
    color: var(--wh-cl);
    margin-bottom: 0.5rem;
}

footer .links .sub-links p a {
    color: var(--wh-cl);
    margin-bottom: 0.5rem;
}

footer .copyright {
    background: #1c1c1c !important;
    color: var(--gy-cl);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
/* =================== FOOTER CSS END =================== */

/* =================== MEDIA QUERRY START =================== */
@media (min-width: 1400px) {
    .counter .counter-item .counter-counting .number,
    .counter .counter-item .counter-counting .plus {
        font-size: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .our-services .card {
        height: 55vh;
    }
}

@media (min-width: 1100px) {
    .whatsapp-float {
        width: 165px;
        right: -122px;
    }
}

@media (max-width: 1024px) {
    .jot-section .background-image {
        background-size: 27% auto;
    }

    .testimonials .background-image {
        background-position: 0px 0px;
    }
}

@media (max-width: 991px) {
    .nav-scroll {
        height: 60px !important;
        padding: 0;
        background: var(--bk-cl);
        box-shadow: 0 10px 19px 9px rgba(0, 0, 0, 0.2);
    }

    .top_navbar .container {
        justify-content: center;
    }

    .top_navbar .first_Sec {
        justify-content: center;
    }

    .logo-wrapper {
        padding: 5px 15px;
    }

    .nav-scroll .logo-wrapper {
        padding: 5px 15px;
    }

    .navbar .logo {
        margin-left: 0px;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0;
    }

    .navbar .nav-link {
        margin: 0px auto !important;
    }

    .navbar .navbar-nav .nav-link:hover {
        color: var(--rd-cl);
    }

    .navbar .navbar-nav .nav-link:hover i {
        color: var(--m-cl);
    }

    .jot-section .jot-container {
        flex-direction: column;
    }

    .jot-section .doc-image {
        display: none;
    }

    .whatsapp-float {
        width: 144px;
        right: -108px;
    }

    .whatsapp-float i {
        font-size: 1.5em;
    }

    .whatsapp-float a {
        font-size: 0.9em;
    }

    .contact-box .item {
        height: 26vh;
        padding: 25px 20px;
    }

    .other-banner {
        min-height: 50vh !important;
    }

    .other-banner .contact-heading h1 {
        font-size: 50px;
    }
}

@media screen and (max-width: 768px) {
    .counter {
        padding: 30px 0;
    }

    .counter .counter-item .h4-desc {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 135px;
        right: -105px;
    }

    .whatsapp-float i {
        font-size: 1.2em;
    }

    .whatsapp-float h1 {
        font-size: 0.85em;
    }
}

@media screen and (max-width: 630px) {
    .jot-section .jot-content .list-main .list {
        padding: 0 50px 0 0;
    }

    footer .social-links {
        flex-direction: column;
    }

    footer .social-links .tittle {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
    .logo-wrapper .logo-text {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .logo-wrapper .logo img {
        width: 30px;
    }
    .counter .g-5 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }

    .whatsapp-float {
        width: 140px;
        right: -103px;
    }

    .whatsapp-float i {
        font-size: 1.5em;
    }

    .whatsapp-float h1 {
        font-size: 0.9em;
    }

    .whs {
        padding: 50px 0;
    }

    .main-title {
        margin-bottom: 1.7rem;
    }
}

@media screen and (max-width: 520px) {
    .jot-section .jot-content {
        padding: 0 1rem;
    }

    .other-banner .contact-heading h1 {
        font-size: 45px;
    }
}

@media screen and (max-width: 420px) {
    .main-title p {
        font-size: 11px;
        line-height: 1.5;
    }

    .jot-section .jot-content .list-main .list .list-unstyled li {
        margin: 0 !important;
    }

    .jot-section .jot-content .list-main .list {
        padding: 0 20px 0 0;
    }

    .jot-section .jot-content .list-main .list-unstyled li span,
    .jot-section .jot-content .list-main .list-unstyled li strong {
        font-size: 11px;
    }
}

@media screen and (max-width: 360px) {
    .section-title {
        font-size: 25px !important;
    }
}
/* =================== MEDIA QUERRY END =================== */
