* {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
    font-family: "Nunito", sans-serif;
}



a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

p {
    color: #616161;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.6px;
}

ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}


/* topbar css  */

section.topbar-area {
    padding: 25px 0 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 117px;
    background-color: #009eea;
}

.topbar-right-area {
    display: flex;
    align-items: center;
    justify-content: end;
}

.clock-area {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.phone-area {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.mobile-flex {
    display: flex;
    align-items: center;
}

.quote-btn button.form-btn {
    padding: 12px 15px;
    border-radius: 0px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    border: none;
    font-weight: 500;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, .2);
    transition: .2s cubic-bezier(0.4, 0, 1, 1);
}

button.form-btn span {
    position: absolute;
    display: block;
}

.form-btn span.first-line {
    height: 3px;
    width: 200px;
    top: 0px;
    left: 200px;
    background: linear-gradient(to right, rgb(0 0 0), #ffff00);
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
    animation: span1 2s linear infinite;
    animation-delay: 1s;
}

@keyframes span1 {
    0% {
        left: -200px
    }

    100% {
        left: 200px;
    }
}

button.form-btn span.second-line {
    height: 70px;
    width: 3px;
    top: -70px;
    right: 0px;
    background: linear-gradient(to bottom, rgb(255 255 0), #898906);
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    animation: span2 2s linear infinite;
    animation-delay: 2s;
}

@keyframes span2 {
    0% {
        top: -70px;
    }

    100% {
        top: 70px;
    }
}

button.form-btn span.third-line {
    height: 3px;
    width: 200px;
    right: -200px;
    bottom: 0px;
    background: linear-gradient(to right, rgb(0 0 0), #ffff00);
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
    animation: span3 2s linear infinite;
    animation-delay: 3s;
}

@keyframes span3 {
    0% {
        right: -200px;
    }

    100% {
        right: 200px;
    }
}

button.form-btn span.fourth-line {
    height: 70px;
    width: 3px;
    bottom: -70px;
    left: 0px;
    background: linear-gradient(to bottom, rgb(255 255 0), #898906);
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
    animation: span4 2s linear infinite;
    animation-delay: 4s;
}

@keyframes span4 {
    0% {
        bottom: -70px;
    }

    100% {
        bottom: 70px;
    }
}


.quote-btn button.form-btn i {
    margin-right: 5px;
}


.clock-icon i {
    color: #feff00;
    font-size: 50px;
}


.phone-icon i {
    color: #feff00;
    font-size: 50px;
}

.clock-icon {
    margin-right: 10px;
}


.clock-content p {
    color: #fff;
    font-weight: 600;
}

.logo-area img {
    max-width: 210px;
}

section.topbar-area .container .row {
    align-items: center;
}

.phone-content p a {
    color: #fff;
    font-weight: 600;
}


/* .quote-btn button.form-btn:hover {
    background-color: #ff0000;
    color: #ffffff;
} */


.quote-btn button.form-btn:hover span.first-line {
    animation: span1-hover 2s linear infinite;
}

@keyframes span1-hover {
    0% {
        left: 200px;
    }

    100% {
        left: -200px;
    }
}

.quote-btn button.form-btn:hover span.second-line {
    animation: span2-hover 2s linear infinite;
}

@keyframes span2-hover {
    0% {
        top: 70px;
    }

    100% {
        top: -70px;
    }
}

.quote-btn button.form-btn:hover span.third-line {
    animation: span3-hover 2s linear infinite;
}

@keyframes span3-hover {
    0% {
        right: 200px;
    }

    100% {
        right: -200px;
    }
}

.quote-btn button.form-btn:hover span.fourth-line {
    animation: span4-hover 2s linear infinite;
}

@keyframes span4-hover {
    0% {
        bottom: 70px;
    }

    100% {
        bottom: -70px;
    }
}

/*======================= Main Navbar Css Start========================*/

header.main-navbar nav.navbar.navbar-expand-lg {
    box-shadow: none;
    padding: 15px 0;
}

.social-icon-navbar {
    display: flex;
    align-items: center;
    justify-content: end;
}

.social-icon-navbar ul {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

ul.navbar-nav li.nav-item a.nav-link {
    font-size: 18px;
    color: #000;
    letter-spacing: 0.6px;
    font-weight: 600;
    transition: .3s;
}

ul.navbar-nav li.nav-item a.nav-link:hover {
    color: #0d409b;
}

/* Dropdown css navbar */

ul.navbar-nav li.nav-item {
    padding: 0 5px;
    position: relative;
}

ul.dropdown-menu {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    background: #fff;
    border: none;
    position: absolute;
    visibility: hidden;
    transform-origin: top;
    border-radius: 0;
    display: block;
    width: 280px;
    z-index: 99;
    opacity: 0;
    top: 80px;
    left: 0;
    transform: scaleY(0);
    transition: .3s;
}

.navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    margin-top: 0px;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    padding: 0;
}



ul.dropdown-menu li.nav-item {
    padding: 0;
}

.navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    font-size: 15px;
}

.navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    padding: 12px 8px;
    display: block;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.6px;
    font-weight: 600;
    background-color: transparent;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
    border-radius: 0;
    transition: all .7s ease-in-out;
    margin: 0;
    position: relative;
}

li.nav-item.for-mobile {
    display: none;
}


/* Dropdown css navbar */

/* dropdown css for mobile size */

li.nav-item.for-mobile a.nav-link.dropdown-toggle {
    display: block;
    float: left;
    width: 90%;
    margin: 0;
    text-align: left;
    color: #000000;
    text-decoration: none;
}

li.nav-item.for-mobile a.mean-expand {
    padding: 12px !important;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    color: #000;
    z-index: 2;
    font-weight: 700;
    background: rgba(255, 255, 255, .1);
    border: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, .4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .2) !important;
}

.dropdown-toggle::after {
    display: none;
}

button.dropdown-btn {
    border: none;
    display: none;
    background-color: #fff;
    text-align: start;
    width: 100%;
    position: relative;
    border-bottom: 2px dashed #0d409b;
    padding: 15px 5px;
}

button.dropdown-btn i {
    float: right;
}

button.dropdown-btn a {
    font-size: 18px;
    color: #000;
    letter-spacing: 0.6px;
    font-weight: 600;
    transition: .3s;
}

.dropdown-container {
    display: none;
}

.dropdown-container {
    padding: 12px;
}

.dropdown-container li a {
    padding: 8px 0;
    font-size: 17px;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.6px;
}

button.dropdown-btn i {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 18px;
}

/* dropdown css for mobile size */

.social-icon-navbar ul li a {
    width: 35px;
    height: 35px;
    background-color: #00b1ef;
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 40px;
    display: flex;
    transition: all 0.2s cubic-bezier(0.4, 0, 1, 1) 0s;
    justify-content: center;
    align-items: center;
}

.social-icon-navbar ul li {
    margin: 0 5px;
}

.social-icon-navbar ul li a:hover {
    background-color: transparent;
    border: 2px dashed #00b1ef;
    color: #00b1ef;
}

header.main-navbar {
    border-top: 4px solid #000;
}

header.navbar-area.sticky {
    position: sticky;
    top: -1px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: .5s;
}

a.navbar-brand.mobile-logo {
    display: none;
}

.mobile-flex {
    display: flex;
    align-items: center;
}


.navbar-toggler .icon-bar {
    width: 35px;
    transition: all .3s;
    background: #221638;
    height: 4px;
    display: block;
    border-radius: 3px;
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
    left: 0;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
    left: 3px;
    position: relative;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
    left: 0;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
    left: 3px;
    position: relative;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    margin: 5px 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

button.navbar-toggler {
    border: none;
}

ul.dropdown-menu {
    /* display: flex; */
    flex-wrap: wrap;
    /* width: 650px; */
}

ul.dropdown-menu li.nav-item {
    width: 280px;
}


.navbar-nav .nav-item .dropdown-menu .nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border-left: 3px solid #000000;
    background: #fffe00;
    transition: all 500ms ease;
}

.carousel-dark .carousel-caption {
    color: #fffe00;
}

.navbar-nav .nav-item .dropdown-menu .nav-item:hover:before {
    width: 100%;
}

.navbar-nav .nav-item .dropdown-menu .nav-item:hover a {
    color: #000000;
}

a.book-btn img {
    width: 100%;
    height: 60px;
}

.book-btn {
    animation: blink 1s infinite;
    -webkit-animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* navbar end */

/* popup form css start */

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    height: 100%;
    min-height: 600px;
}

.popup-content {
    color: #000;
    background: #fff;
    border-radius: 5px;
    text-align: left;
    position: relative;
    width: 50%;
}

.pop-up-inner-main {
    padding: 30px 30px;
}

.popup-content input {
    padding: 15px !important;
}

.popup-content select {
    padding: 15px !important;
    background: transparent;
    color: #21225f;
    box-shadow: none !important;
}

.popup input::placeholder {
    color: #21225f;
}

.popup textarea::placeholder {
    color: #21225f;
}

.close-btn {
    position: absolute;
    color: white;
    top: 10px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
}

.popup-form {
    cursor: pointer;
}

.popup-content .quote-btn button#submit1 {
    padding: 12px 55px;
}

/* pop up end  */

/* banner css  */

#carouselDarkVariant {
    position: relative;
}



.carousel-caption.d-none {
    position: absolute;
    top: 28%;
    left: -26%;
}

.carousel-caption.d-none h2 {
    font-size: 70px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: #fff;
}

.carousel-caption.d-none h3 {
    font-size: 35px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    padding: 25px;
}

.carousel-caption.d-none a {
    color: #ffff00;
}

.down-slider {
    border: 1px solid #00bcd4;
    border-radius: 5px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
}

.down-slider .carousel-item img {
    height: 700px;
    padding: 50px;
    /* object-fit: cover; */
    border-radius: 60px;
}


.down-slider button.carousel-control-prev {
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    top: 50%;
    left: 5px;
    box-shadow: 0px 0px 3px 1px #150b0b;
}

.down-slider button.carousel-control-next {
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    top: 50%;
    right: 5px;
    box-shadow: 0px 0px 3px 1px #150b0b;
}

.down-slider span {
    width: 40px;
    height: 40px;
    color: black;
    top: 50%;
}

/* banner css close  */

/*===================== About Area Css Start ========================*/
section.about-us-area {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

h3.section-title {
    position: relative;
    width: fit-content;
    margin-bottom: 20px;
    color: #00b1ef;
    font-size: 40px;
    font-family: "Jost", sans-serif;
    letter-spacing: 0.6px;
    padding: 0 0 0px 5px;
}

/* h3.section-title::before {
    content: "";
    width: 72%;
    height: 100%;
    position: absolute;
    background: #006B3E;
    opacity: 0.2;
    left: 0;
    top: 0;
    transition: width 0.5s ease-in-out;
} */

.about-us-content p {
    margin-bottom: 20px;
}



.about-area-btn a {
    border: 2px solid #006b3e;
    color: #006b3e;
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 0;
}

.about-area-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #006b3e;
    opacity: 0;
    transition: all 0.3s ease-in;
    transition-duration: 0.5s;
}

.about-area-btn a:hover::before {
    opacity: 1;
    width: 100%;
}

.about-area-btn a:hover {
    color: #ffffff;
    border-color: #006b3e;
}


.about-area-btn {
    width: fit-content;
}

.about-us-img {
    display: flex;
}

.first-img img {
    width: 410px;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
}

.second-img {
    margin-left: 27px;
}

.second-img .second-last-img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
}

.second-img .last-car-img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-vision {
    padding: 20px 0 100px;
    overflow: hidden;
}

/*===================== About Area Css End ========================*/

/* slogan-area css   */

.slogan-area {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    padding: 40px 0px 0px;
}

.slogan-area:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    background-image: linear-gradient(to right, #0086cf 0%, #00b5bf 100%);
}

.slogan-content {
    position: relative;
    padding: 35px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media(max-width:767px) {
    .slogan-content {
        padding: 70px 0 100px 0
    }
}

.slogan-content .left {
    position: relative;
    display: block;
}

.slogan-content .left .title h3 {
    color: #ffffff;
    font-size: 44px;
    font-family: "Jost", sans-serif;
    line-height: 56px;
    font-weight: 700;
}


.left.paroller p {
    color: white;
    text-align: justify;
}

.slogan-content .right {
    position: relative;
    display: block;
    top: 40px;
}

.slogan-content .right .btns-box {
    position: relative;
}

.slogan-content .right .btns-box a {
    background: #353742;
}

.main-slider .content .btns-box {
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
}

.main-slider .active .content .btns-box {
    opacity: 1;
    transform: translateY(0px);
    transition: all .7s ease-in-out .7s;
}

.slogan-single-box .img-holder .overlay-content .btns-box a.btn-one {
    color: #ffffff;
    font-size: 14px;
    line-height: 60px;
    font-weight: 600;
}

.slogan-single-box .img-holder .overlay-content .btns-box a.btn-one i.round {
    width: 40px;
    height: 40px;
}

.slogan-single-box .img-holder .overlay-content .btns-box a.btn-one.gray {
    background-color: #353742;
}

.emergency-contact-btns-box .btn-one {
    background-color: #353742;
}

.btn-one.btn-rtl {
    padding-left: 10px;
    padding-right: 30px;
}

.btn-one.btn-rtl i.round {
    margin-left: 0;
    margin-right: 10px;
    transform: rotate(180deg);
}

.btn-one.btn-rtl:hover i.round {
    margin-left: 0;
    margin-right: 10px;
    transform: rotate(180deg);
}



.btn-one {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    padding-right: 10px;
    background-color: #009eea;
    color: #ffffff;
    font-size: 16px;
    line-height: 70px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 40px;
    font-family: 'Kumbh Sans', sans-serif;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.btn-one:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    content: "";
    border-radius: 40px;
    transform: scaleX(0.0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn-one:hover:after {
    transform: scaleX(1.0) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.btn-one .txt {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.btn-one i.round {
    position: relative;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 16px;
    color: #009eea;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn-one:hover i.round {
    color: #000000;
    margin-left: 25px;
    transform: rotate(360deg);
    background: #feff00;
}

.btn-one:hover,
.btn-one:focus {
    color: #f7f7f7;
}


.btn-one.style2 {
    line-height: 50px;
}

.btn-one.style2 i.round {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.btn-one.style2:hover i.round {
    margin-left: 15px;
}


/* close slogan-area  css  */


/*===================== Vision-Mission Area Css Start ========================*/
h3.heading-title {
    position: relative;
    width: fit-content;
    color: #00b1ef;
    font-size: 40px;
    font-family: "Jost", sans-serif;
    letter-spacing: 0.6px;
    padding: 0 0 0px 5px;
    margin: 0 auto 30px;
}

/* h3.heading-title::before {
    content: "";
    width: 63%;
    height: 100%;
    position: absolute;
    background: #006B3E 0% 0% no-repeat padding-box;
    opacity: 0.2;
    left: 0;
    top: 0;

} */

section.vision-mission-area {
    padding: 80px 0px 50px;
    overflow: hidden;
}

.vision-box1 p {
    padding: 60px 56px;
    background-color: rgb(0, 175, 239);
    color: rgb(255, 255, 255);
    width: 490px;
    border-radius: 20px;
    margin-bottom: 35px;
    text-align: center;
    transition: all 0.5s ease 0s;
}

.vision-box2 p {
    padding: 60px 56px;
    background-color: #000000;
    color: #fff;
    width: 490px;
    border-radius: 20px;
    text-align: center;
    transition: .5s;
}

.vision-box2 {
    display: flex;
    justify-content: end;
}

.vision-img img {
    max-width: 450px;
    padding: 10px;
    border-radius: 20px;
}

.vision-box1 p:hover {
    transform: translateY(-10px);
}

.vision-box2 p:hover {
    transform: translateY(-10px);
}

/*===================== Vision-Mission Area Css End ========================*/


/*===================== Working Process Area Css Start ========================*/

section.work-process-area {
    padding: 70px 0;
    overflow: hidden;
}

.work-process-box {
    position: relative;
    padding: 20px;
    text-align: center;
}

.work-process-icon img {
    max-width: 110px;
    transform: rotate(-45deg);
    position: absolute;
    left: 15px;
    top: 17px;
    border-radius: 50%;
}

.work-process-icon {
    width: 160px;
    height: 160px;
    display: block;
    text-align: center;
    border: 5px solid #00b1ef;
    border-radius: 10px;
    transform: rotate(45deg);
    position: relative;
    margin: 0 auto 20px;
}

.work-process-box .content-area {
    margin-top: 50px;
}

.work-process-box .content-area h3 {
    font-size: 25px;
    color: #00AFEF;
    letter-spacing: 0.6px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.work-process-box .content-area h4 {
    font-size: 20px;
    color: #000000;
    letter-spacing: 0.6px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.work-process-box::before {
    content: '';
    background-image: url(../images/working-process-img/double-right-angle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0px;
    top: 20%;
}

.work-process-box::after {
    content: '';
    background-image: url(../images/working-process-img/double-right-angle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 40px;
    height: 40px;
    right: -45px;
    top: 20%;
}

.work-process-box3 {
    position: relative;
    padding: 20px;
    text-align: center;
}

.work-process-box3 .content-area h3 {
    font-size: 25px;
    color: #00AFEF;
    letter-spacing: 0.6px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.work-process-box3 .content-area {
    margin-top: 50px;
}

.work-process-box3 .content-area h4 {
    font-size: 20px;
    color: #000000;
    letter-spacing: 0.6px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

/*===================== Working Process Area Css End ========================*/

/* services section css  */

.gray-bg {
    background: #f4f9fc;
    padding: 60px 0;
}

.pos-rel {
    position: relative;
}

.section-back-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -50px;
}

.section-title h1 {
    margin-bottom: 40px;
    line-height: 1.2;
    font-family: "Jost", sans-serif;
    font-size: 55px;
    font-weight: 600;
    color: #000;
}

.service-box {
    padding: 30px 10px 30px 10px;
    background: rgb(255, 255, 255);
    transition: all 0.4s ease 0s;
    box-shadow: rgb(169, 167, 167) 0px 0px 1px 0px;
}

.service-thumb {
    margin-bottom: 45px;
}

.service-content h3 a {
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.service-content p {
    font-size: 17px;
    /* text-align: justify; */
    padding: 15px 0;
}

a.service-link {
    color: #03034f;
    text-decoration: none;
}


/* close services section css  */

/*===================== Why Chosse Us Area Css Start ========================*/

section.why-choose-us-area {
    padding: 70px 0 50px;
    overflow: hidden;
}

/* section.why-choose-us-area .section-heading h3.heading-title::before {
    content: "";
    width: 83%;
    height: 100%;
    position: absolute;
    background: #006B3E 0% 0% no-repeat padding-box;
    opacity: 0.2;
    left: 0;
    top: 0;
} */

section.why-choose-us-area .section-heading {
    margin-bottom: 60px;
}

.why-choose-us-img img {
    width: 635px;
}

.why-choose-us-img {
    position: relative;
    text-align: center;
    top: 30px;
}

.why-choose-us-content {
    padding: 20px;
}

.why-choose-us-box {
    background-color: #05070a;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    max-width: 470px;
    transition: .5s;
    margin-left: auto;
}

.why-choose-us-box1 {
    background-color: #007DFE;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    max-width: 470px;
    transition: .5s;
}

.why-choose-us-box h3 {
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.8px;
    font-size: 25px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
}

.why-choose-us-box1 h3 {
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.8px;
    font-size: 25px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
}

.why-choose-us-box p {
    color: #fff;
}

.why-choose-us-box1 p {
    color: #fff;
}

.why-choose-us-box:hover {
    transform: translateY(-10px);
}

.why-choose-us-box1:hover {
    transform: translateY(-10px);
}

.contact-page-form h2 {
    font-size: 40px;
    margin: 0 0 20px 0;
    color: white;
    font-weight: 700;
    font-family: 'Jost';
}

/*===================== Why Chosse Us Area Css End ========================*/

/* Testimonials Area Css Start */

.section-heading h3.title {
    margin: 0 auto;
}

h3.title {
    position: relative;
    font-size: 35px;
    letter-spacing: 0.6px;
    color: #00b1ef;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 10px;
    margin-left: 28px;
}

.testimonial-box {
    padding: 20px;
    text-align: center;
}

.testimonial-img img {
    width: 90px;
    border-radius: 50%;
    height: 90px;
}

section.testimonails-area {
    background-image: url(../assets/images/bgg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
    overflow: hidden;
    position: relative;
}

section.testimonails-area .section-heading h3.title {
    color: #fff;
}

section.testimonails-area .section-heading {
    margin-bottom: 30px;
}

section.testimonails-area .container .row {
    justify-content: center;
    align-items: center;
}

.testimonial-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-box h5 {
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.testimonial-box p {
    color: #fff;
}

.slick-dots li button:before {
    font-size: 15px !important;
}

.slick-dots {
    bottom: -55px !important;
}

.slick-dots li.slick-active button:before {
    opacity: 2 !important;
    color: #0d409b !important;
}

.slick-dots li button:before {
    opacity: 2 !important;
    color: #fff !important;
}

section.testimonails-area::before {
    content: '';
    background-image: url(../assets/images/slider-star1.png);
    width: 138px;
    height: 118px;
    position: absolute;
    top: 30px;
    background-repeat: no-repeat;
    left: 30px;
    animation: squares_lg 3s infinite linear alternate;
    z-index: 10;
}

@keyframes squares_lg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.16);
        transform: scale(1.16);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/* testimonial css end  */


/* ===================Counter Css Start ===================*/

.tf__counter {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.tf__single_counter_center {
    width: 230px;
    height: 230px;
    border: 7px solid #00b1ef;
    border-radius: 50%;
    margin: 0 auto;
    padding: 13px;
    position: relative;
    margin-top: 25px;
}

.tf__single_counter_center::before {
    top: -17px !important;
    left: 55% !important;
}

.tf__single_counter_center::after,
.tf__single_counter_center::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background: #00b1ef;
    border-radius: 50%;
    top: -17px;
    left: 43%;
    transform: translateX(-50%);
    z-index: 2;
}

.tf__single_counter_center h2 {
    width: 190px;
    height: 190px;
    text-align: center;
    line-height: 180px;
    background: #000000;
    border-radius: 50%;
}

.tf__single_counter_center h2 span {
    display: inline-block;
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-right: 27px;
}

.tf__single_counter_center h2 span::after {
    position: absolute;
    content: "+";
    top: 0;
    right: -3px;
    font-size: 50px;
    font-weight: 900;
    color: #ffffff;
}

.tf__single_counter p {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 25px;
}


section.tf__counter {
    padding: 100px 0;
}

.tf__single_counter p {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 25px;
    color: #000;
}


/* ===================Counter Css End ===================*/


/* contact section css start */

.main-contact {
    padding: 70px 0 50px;
}

.main-contact select {
    padding: 16px 16px;
}

.contact-page-img img {
    position: relative;
    top: 30px;
    height: 535px;
    object-fit: cover;
    border-radius: 20px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    background: linear-gradient(90deg, #2196F3 16%, #2196F3 47%, #00BCD4 76%, #00BCD4 98%);
    padding: 46px;
    border-radius: 20px;
}

.contact-page-sec .contact-page-form h2 {
    color: #071c34;
    text-transform: capitalize;
    font-size: 45px;
    font-weight: 700;
}

.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 28px;
    padding: 16px 16px;
    width: 100%;
    border-radius: 4px;
}

.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
    background: #071c34 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}


.main-contact {
    background: url(../assets/images/bg-shape-01.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}


/* contact section css close */




.quote-btn {
    text-align: end;
}






































/*======================= Footer Area Css STart========================*/



footer.tf_footer {
    background-color: #00b1ef;
    padding: 130px 0 50px 0;
    position: relative;
}

footer.tf_footer::before {
    position: absolute;
    content: '';
    background: url(../assets/images/shape-footer.svg) no-repeat;
    width: 100%;
    height: 85px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0);
    z-index: 1;
    opacity: 0.6;
}

.main-inner-testi {
    position: relative;
    z-index: 1;
}

footer.tf_footer::after {
    content: '';
    background-image: url(../assets/images/slider-star1.png);
    width: 138px;
    height: 118px;
    position: absolute;
    top: 75px;
    background-repeat: no-repeat;
    right: 15px;
    animation: squares_lg 3s infinite linear alternate;
    z-index: 1 !important;
}

span.ftr-arrow i {
    position: relative;
    top: 2px;
    left: 5px;
}

.tf_footer_details p {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    max-width: 375px;
    margin-bottom: 20px;
}

.social-icons-footer {
    display: flex;
    align-items: center;
}

.social-icons-footer li a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
    margin: 5px;
    color: #000;
    display: flex;
    align-items: center;
    transition: .5s;
    justify-content: center;
}

.social-icons-footer li {
    list-style: none;
}

.social-icons-footer li a:hover {
    border: 2px dashed #fff;
    background-color: #00b1ef;
    color: #ffff;
}

h3.footer-heading {
    color: #fff;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.tf_footer_links ul {
    padding: 0;
}

.tf_footer_links ul li a {
    color: #fff;
    transition: .5s;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.tf_footer_links ul li {
    padding: 6px 0;
}


ul.footer-contact-area {
    padding: 0;
}

span.footer-contact-area-icon {
    color: #fff;
    padding-right: 10px;
}

span.footer-contact-area-icon i {
    font-size: 17px;
}

span.footer-contact-area-text a {
    color: #fff;
    letter-spacing: 0.6px;
}

span.footer-contact-area-text {
    color: #fff;
    letter-spacing: 0.6px;
}

.tf_footer_details img {
    margin-bottom: 20px;
    max-width: 200px;
    filter: brightness(0) invert(0);
}


.tf_footer_services ul li {
    padding: 6px 0;
}


.tf_footer_services ul li a {
    color: #fff;
    transition: .5s;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

ul.footer-contact-area li {
    padding: 6px 0;
}

section.copyright-area {
    padding: 20px 0;
    background: #000;
}

.tf_copyright p {
    margin-bottom: 0px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.back-to-top .top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    color: #fff;
    background-color: #ffc903;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.back-to-top .top i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: .5s;
}

.back-to-top .top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.tf_copyright a {
    color: #ffc903;
}

.tf_copyright a:hover {
    color: #e31f4c;
}

@keyframes squares_lg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.16);
        transform: scale(1.16);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}



/* about page css start */

section.main-about-page h1 {
    color: #009eea;
    font-weight: 600;
    font-family: 'Jost';
    text-align: center;
}

section.Knee-Replacement h1 {
    color: #009eea;
    font-weight: 600;
    font-family: 'Jost';
    text-align: center;
}

.main-about-page-image img {
    width: 100%;
    max-width: 500px;
}

section.breadcrumbs-area h1 {
    font-size: 35px;
    font-weight: 600;
    font-family: 'Jost';
}

section.breadcrumbs-area {
    background-image: url("../assets/images/about-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 120px 0px;
    position: relative;
}

section.breadcrumbs-area.all-set {
    background-image: url("../assets/images/bg-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0px;
    position: relative;
}

ol.breadcrumb li.breadcrumb-item a {
    color: #fff;
}

ol.breadcrumb li.breadcrumb-item {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

.main-about-page-text h3 {
    font-size: 21px;
    font-weight: 600;
    color: black;
    font-family: 'Jost';
}

.main-about-page-text p {
    font-size: 17px;
    text-align: justify;
    margin: 0px 0 20px 0;
}

/* close about page css  */

/* our mission vision page css start */

.page .vision-box2 p {
    padding: 60px 56px;
    background-color: #000000;
    color: #fff;
    width: 490px;
    border-radius: 20px;
    text-align: center;
    transition: .5s;
}

.page .vision-box2 {
    display: flex;
    justify-content: start;
}

.page .vision-box1 {
    display: flex;
    justify-content: end;
}

.page img {
    max-width: 500px;
}

/* our mission vision page css close */


/* news and media page css start */

.inner-news-images img {
    width: 100%;
    height: 500px;
    margin: 0 0 30px 0;
}

section.news-media h1 {
    color: #009eea;
    font-weight: 600;
    font-family: 'Jost';
    border-bottom: 3px solid #ffff01;
    width: 313px;
    margin: 0 auto;
}

/* news and media css close  */

/* Knee-Replacement page css start */

.main-Knee-Replacement-inner-img img {
    width: 100%;
    border-radius: 15px;
}

.main-Knee-Replacement-inner p {
    text-align: justify;
    font-size: 17px;
    margin: 10px 0;
}

.main-Knee-Replacement-inner ol li {
    text-align: justify;
    font-size: 17px;
    padding: 5px 0 0px 0;
}

.main-down-knee-replacement {
    padding: 30px 0;
}

.main-down-knee-replacement p {
    text-align: justify;
    font-size: 17px;
    margin: 0px 0 20px 0;
}

.main-down-knee-replacement h3 {
    color: #009eea;
    font-weight: 600;
    font-family: 'Jost';
}

.main-down-knee-replacement li {
    list-style: circle;
    padding: 5px;
    font-size: 17px;
    text-align: justify;
}

/* Knee-Replacement page css close */


/* contact us page css start  */

section.appointment-area {
    padding: 90px 0 0px 0;
}

.appointment-form.my-changes {
    box-shadow: 0px 0px 3px 3px #eee;
}

.my-changes input.form-control {
    padding: 13px 10px;
}

.my-changes select {
    padding: 13px 10px;
}

.my-changes .form-outline .form-control~.form-label {
    top: 6px;
}

.bg-pop {
    background: url(../assets/images/bgg.jpg);
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.inner-contact {
    padding: 25px 25px;
    background: white;
}

.appointment-form .quote-btn button.form-btn {
    padding: 12px 35px;
    background-color: transparent;
}

.pt-120 {
    padding-top: 120px;
}

.pb-90 {
    padding-bottom: 90px;
}

.ltn__contact-address-item-3 {
    box-shadow: #eee 0px 0px 3px 3px;
    padding: 25px 18px 20px;
    text-align: center;
    height: 270px;
}

.ltn__contact-address-item-3 .ltn__contact-address-icon img {
    max-width: 60px;
}

.ltn__contact-address-item.ltn__contact-address-item-3.box-shadow h3 {
    margin: 20px;
    font-weight: 600;
    font-size: 22px;
    color: black;
}

.ltn__contact-address-item.ltn__contact-address-item-3.box-shadow a {
    color: #7c7c7c;
}

.ltn__contact-address-item.ltn__contact-address-item-3.box-shadow p {
    padding: 5px;
}

/* contact us page css close  */

/* blog page css start  */

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 0 50px 0;
}

.card {
    overflow: hidden;
    box-shadow: 0px 2px 20px #d7dfe2;
    background: white;
    border-radius: 0.5rem;
    position: relative;
    width: 350px;
    margin: 1rem;
    transition: 250ms all ease-in-out;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 40px #d7dfe2;
}

.banner-img {
    position: absolute;
    object-fit: cover;
    height: 14rem;
    width: 100%;
}

.category-tag {
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background: red;
    padding: 0.5rem 1.3rem 0.5rem 1rem;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    top: 1rem;
    border-radius: 0 2rem 2rem 0;
}

.popular {
    background: #ef257a;
}

.technology {
    background: #651fff;
}

.psychology {
    background: #e85808;
}

.card-body {
    margin: 15rem 1rem 1rem 1rem;
}

.blog-hashtag {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4d97b2;
}

.blog-title {
    line-height: 1.5rem;
    margin: 1rem 0 0.5rem;
}

.blog-description {
    color: #616b74;
    font-size: 0.9rem;
    text-align: justify;
}

.card-profile {
    display: flex;
    margin-top: 2rem;
    align-items: center;
}

.profile-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.card-profile-info {
    margin-left: 1rem;
}

.profile-name {
    font-size: 1rem;
}

.profile-followers {
    color: #616b74;
    font-size: 0.9rem;
}


/* blog page css close  */

.tf_copyright a {
    color: white;
}

.tf_copyright a:hover {
    color: #00b1ef;
}