/********** Template CSS **********/
:root {
--primary: #009CFF;
--secondary: #777777;
--light: #F8F8F8;
--dark: #252525;
}


body {
margin: 0;
font-family: "Open Sans", sans-serif;
font-size: 17px;
font-weight: 400;
line-height: 1.5;
color: #000;
background-color: #aff4c8;
}

.back-to-top {
position: fixed;
display: none;
right: 30px;
bottom: 30px;
z-index: 99;
}


/*** Button ***/
.btn {
font-weight: 500;
transition: .5s;
}

.btn.btn-primary {
color: #000;
}

.btn-square {
width: 38px;
height: 38px;
background: #009CFF;
color: #fff !important;
}

.btn-sm-square {
width: 32px;
height: 32px;
}

.btn-lg-square {
width: 48px;
height: 48px;
background:#009CFF;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
border: none;
content: "\f107";
font-family: "Font Awesome 5 Free";
font-weight: 900;
vertical-align: middle;
margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
margin-right: 35px;
padding: 15px 0;
color: #fff;
font-weight: 600;
outline: none;
font-size: 17px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
color: #fff;
}

.navbar.sticky-top {
top: -100px;
transition: .5s;
}

@media (max-width: 991.98px) {
.navbar .navbar-nav .nav-link {
margin-right: 0;
padding: 8px 0;
}

.navbar .navbar-nav {
margin-top: 8px;
border-top: 1px solid rgba(256, 256, 256, .1);
padding: 10px 10px 0px 20px;
background: #333;	
}
}

@media (min-width: 992px) {
.navbar .nav-item .dropdown-menu {
display: block;
visibility: hidden;
top: 100%;
transform: rotateX(-75deg);
transform-origin: 0% 0%;
transition: .5s;
opacity: 0;
background:#009CFF;
}

.navbar .nav-item:hover .dropdown-menu {
transform: rotateX(0deg);
visibility: visible;
transition: .5s;
opacity: 1;
}
}


/*** Header ***/
#header-carousel .carousel-caption {
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, .5);
z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
width: 3rem;
height: 3rem;
}

@media (max-width: 768px) {
#header-carousel .carousel-item {
position: relative;
min-height: 100px;
}

#header-carousel .carousel-item img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
}
}

#header-carousel .carousel-indicators [data-bs-target] {
width: 60px;
height: 60px;
text-indent: 0;
margin-bottom: 15px;
border: 2px solid #FFFFFF;
border-radius: 60px;
overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
width: 100%;
height: 100%;
object-fit: cover;
}

.page-header {
background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
color: var(--light);
}


/*** Section Title ***/
.section-title {
position: relative;
display: inline-block;
text-transform: uppercase;
}

.section-title::before {
position: absolute;
content: "";
width: calc(100% + 80px);
height: 2px;
top: 4px;
left: -40px;
background: var(--primary);
z-index: -1;
}

.section-title::after {
position: absolute;
content: "";
width: calc(100% + 120px);
height: 2px;
bottom: 4px;
left: -60px;
background: var(--primary);
z-index: -1;
}

.section-title.text-start::before {
width: calc(100% + 40px);
left: 0;
}

.section-title.text-start::after {
width: calc(100% + 60px);
left: 0;
}



/*** Img Border ***/
.img-border {
position: relative;
height: 100%;
min-height: 400px;
}

.img-border::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 3rem;
bottom: 3rem;
border: 5px solid var(--primary);
border-radius: 6px;
}

.img-border img {
position: absolute;
top: 3rem;
left: 3rem;
width: calc(100% - 3rem);
height: calc(100% - 3rem);
object-fit: cover;
border-radius: 6px;
}


/*** Facts ***/
.fact-item {
transition: .5s;
}

.fact-item:hover {
margin-top: -10px;
background: #009CFF !important;
box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}
.left-area a {color: #fff;}

/*** Service ***/
.service-item {
box-shadow: 0 0 45px rgba(0, 0, 0, .07);
border: 1px solid transparent;
transition: .5s;
background: #009CFF;
}
.service-item:hover {
margin-top: -10px;
box-shadow: none;
border: 1px solid #DEE2E6;
}

.certificate {
border: 1px solid transparent;
transition: .5s;
}
.certificate:hover {
margin-top: -10px;
box-shadow: none;
border: 1px solid #DEE2E6;
}

/*** Footer ***/
.footer .btn.btn-link {
display: block;
margin-bottom: 5px;
padding: 0;
text-align: left;
color: #fff;
font-weight: normal;
text-transform: capitalize;
transition: .3s;
}
.footer p {color: #fff;}

.footer .btn.btn-link::before {
position: relative;
content: "\f105";
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #fff;
margin-right: 10px;
}

.footer .btn.btn-link:hover {
color: var(--primary);
letter-spacing: 1px;
box-shadow: none;
}

.footer .copyright {
padding: 25px 0;
font-size: 15px;
border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
color: var(--light);
}

.footer .copyright a:hover {
color: var(--primary);
}

.logo img {width: 115px;}
.logo p {font-size: 15px;color: #333;font-weight: 600;}
.service-item h4 {font-size: 19px;color: #fff;}
#ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input {
font-size: 17px !important;
}
.logo h4 {
font-weight: 700;
font-size: 23px;
}
#ajaxsearchlite1 .probox, div.asl_w .probox {
width: 87% !important;
}
.number h6 {font-size: 20px;margin-left: 10px;}	
.left-area {
    text-align: left;
    padding: 6px 10px 0;
    padding-bottom: 0;
    border: 1px solid #cccccc;
    margin: 5px 0 0;
}	
.category {
    background: #009cff;
    color: #fff;
    text-align: center;
    font-size: 23px;
    font-weight: normal;
    padding: 8px;
}
#header-carousel {margin: 5px 0 0;}

.left-area ul {list-style: none;padding: 0;}
.left-area ul li {
    background: #009CFF;
    color: #fff;
    padding: 15px;
    border-bottom: 1px dotted #fff;
    font-size: 17px;
    font-weight: 600;
}
.ournumber {margin-left: 40px;}
.fact-item h1 {color: #fff;}
.fact-item h5 {color: #fff;}

.marquee {
width: 100%;
overflow: hidden;
padding: 10px 0;
}
.marquee-content {
white-space: nowrap;
animation: marquee 10s linear infinite;
font-size: 22px;
color: #fff;
font-weight: 600;
background: #009CFF;
padding: 3px;
}
@keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
.blog-text .table-bordered {
    border: 1px solid #000 !important;
}
.blog-text .table-bordered td {
    color: #000;
}
.blog-text {margin: 20px 10px 0;}
.instrument-sec img {
    width: 100%;
    margin-bottom: 25px;
}

.single-blog-img {
    border: 1px solid #d3d3d3;
    padding: 10px;
    width: 90%;
    height: auto;
}

.content-part.surgical img {
    width: 50% !important;
    border: 1px solid #c3c3c3;
    padding: 10px;
    border-radius: 10px;
}