/*
Theme Name: C2 Developer zone
Theme URI: https://c2developerzone.com/
Version: 1.0
Author: Developerzones Team
Author URI: https://c2developerzone.com/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


body {
    color: #444444;
    font-family: "Rubik", sans-serif;
    background: #fff;
}
p {
    color: #636363;
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    line-height: 25px;
}
a {
  color: #fff;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #07132b;
  font-family: "Poppins", sans-serif;
}
a.theme-btn {
    margin: 2rem auto 0.5rem;
    display: inline-flex;
    color: #ffffff;
    padding: 0.5rem 1.4rem 0.5rem 1.4rem;
    border-radius: 100px;
    transition: 0.3s ease;
    background: #2ea6f7;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: -0.2px;
    font-size: 16px;
}
a.theme-btn:hover {
    background: #002261;
}
section{
  position:relative;
}
.pd{
  padding: 0;
}
.pd-left{
  padding-left:0;
}
.pd-right{
  padding-right:0;
}
.owl-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 3rem 0 0;
}
button.owl-prev, button.owl-next {
    border-radius: 7px;
    width: 40px;
    height: 40px;
    background: #47579a !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 33px !important;
    position: relative;
    transform: rotate(45deg);
}
button.owl-prev:hover, button.owl-next:hover {
    background: #2ea6f7 !important;
}
button.owl-prev span, button.owl-next span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    line-height: 5px;
    font-weight: 400;
    font-size: 22px;
}
@media (min-width: 1365px) {
 .col-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47579a;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*Topbar Sec*/

section.topbar-sec {
    padding: 10px 0;
    background: #4C4AB2;
    width: 90%;
    margin: auto;
    border-radius: 0 0 20px 20px;
}
.topbar-left a {
    padding: 2px 5px;
    display: inline-block;
    margin-right: 8px;
    font-family: "Monda", sans-serif;
}
.topbar-left a img {
    margin-right: 5px;
    height: 20px;
}
.topbar-left a:first-child {
    border-right: solid 1px #fff;
    padding-right: 16px;
}
.social-link {
    text-align: right;
}
.social-link a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4c4ab2;
    border: solid 1px #fff;
    margin: 0 3px;
    background: #fff;
    border-radius: 7px;
    font-size: 20px;
}
.topbar-left {
    display: flex;
    align-items: center;
    height: 100%;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: #fff;
}
header .container {
    position: relative;
}
.header-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.2rem;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgb(255 255 255);
  top: 0;
  width: 100%;
  border-radius: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}
#header .logo img {
  width: 73px;
}
#header .logo img:last-child {
    width: 104px;
    border-left: solid 1px rgb(13 29 59 / 8%);
    padding-left: 8px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #192335;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: capitalize;
    font-family: "Rubik", sans-serif;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: #2ea6f7;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ea1826;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: #13192b;
    letter-spacing: -0.2px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background: #3F51B5;
    height: 75px;
    clip-path: polygon(45% 0%, 100% 0, 100% 100%, 0% 100%);
    width: 80px;
    padding: 25px 35px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
    top: 54px;
    right: 14px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ea1826;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}



@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 75px 0 70px;
    overflow: hidden;
}
.theme-heading-sec {
    margin-bottom: 1.5rem;
}
.theme-heading-sec h2 {
    text-transform: capitalize;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
    color: #192335;
}
.theme-heading-sec h5 {
    color: #2ea6f7;
    font-weight: 400;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: -0.1px;
    font-family: "Rubik", sans-serif;
    margin-bottom: 0.7rem;
}


/*Banner*/

#demo {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #0d1d3b;
}
.carousel-inner{
  position: relative;
  z-index: 1;
}
.carousel-item {
    padding: 0rem 0 0rem;
    height: 92vh;
}
div#demo .container-fluid, div#demo .row {
    padding: 0;
    height: 100%;
}
.banner-heading {
    padding: 0 2rem 0 5rem;
}
.banner-heading a.theme-btn {
  margin: 0;
}
.banner-heading h1 {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -0.8px;
    line-height: 61px;
    text-transform: capitalize;
    padding-left: 0px;
    word-spacing: -5px;
    color: #fff;
}
.banner-heading h1 span {
    color: #2ea6f7;
}
.banner-heading p {
    color: #f1f6ff;
    font-size: 14px;
    line-height: 24px;
    margin: 1.8rem 0 0rem;
    letter-spacing: 0px;
    font-weight: 200;
    border-left: 2px solid #2ea6f7;
    padding-left: 13px;
}
.ban-col{
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
}
.banner-rt-col {
    position: relative;
    height: 100%;
}
.banner-rt-col img{
    height: 100%;
}
.carousel-indicators {
    justify-content: center;
    margin-right: 7%;
    margin-left: 7%;
}
.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  margin-right: 4px;
  margin-left: 4px;
  opacity: .5;
  border-radius: 100%;
  border: solid 5px #ffffff;
  box-shadow: 0px 0px 0px 1px #b4b5b5;
  background: #b4b5b5;
}
.carousel-indicators .active {
  opacity: 1;
  box-shadow: 0px 0px 0px 1px #39af91;
  background: #39af91;
}
.carousel-control-next, .carousel-control-prev {
    width: 3%;
}







/*About Section*/

section.about-sec {
  padding-bottom: 7rem;
}
.about-img{
  position: relative;
}
section.about-sec p {
  margin: 0;
}


/*Counter-sec*/

.counter-sec {
    width: 100%;
    background: #002261;
    padding: 2rem;
    margin: -8rem auto 4rem;
    position: relative;
    z-index: 1;
}
.counter-sec:after {
    content: "";
    background-image: url(https://medilo-html.netlify.app/assets/img/counter_shape.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    background-size: 100%;
    background-position: bottom;
    background-repeat: repeat;
    z-index: -1;
}
.counter-wrap {
    text-align: center;
}
.counter-wrap h3 {
    font-size: 43px;
    font-weight: 600;
    color: #fff;
}
.counter-wrap p {
    color: #fff;
    font-size: 18px;
}

/*Service Sec*/

section.service-sec {
    background: #e8edf0;
    overflow: unset;
}
.service-box {
    background: #fff;
    padding: 1.5rem;
    margin: 10px 0;
    border-radius: 15px;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
    overflow: hidden;
}
.service-box:after {
    background: #ffffff;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s ease;
}
.srv-ic {
    width: 50px;
    height: 50px;
    background:#002261;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-box h5 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.6px;
    color: #222;
    margin: 12px 0 7px;
}
.service-box p {
    line-height: 24px;
    margin: 0;
}
.service-box span {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 35px;
    font-weight: 600;
    opacity: 0.1;
    font-family: "Poppins", sans-serif;
    z-index: 1;
    color: #002261;
    -webkit-text-stroke: 1px #fefefe00;
}
.service-box:hover:after{
    background: rgb(0 34 97 / 75%);
}
.service-box:hover h5,
.service-box:hover p{
  color:#fff;
}
.service-box:hover .srv-ic {
    background:#2ea6f7;
}
.service-box:hover span {
    opacity: 1;
    color: #002261;
    -webkit-text-stroke: 1px #fff;
}

/*Doctor*/

.doctor-sec .theme-heading-sec {
    text-align: center;
}
.doctor-wrap {
    background: #e8edf0;
    border-radius: 10px;
    text-align: center;
    padding: 2rem 1rem 0.5rem;
    margin: 12px 0;
	height:100%;
max-height:265px;
}
.doctor-img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background: #ffffff;
    margin: 0 auto 1.4rem;
    border: solid 4px #e8edf0;
    box-shadow: 0px 0px 0px 2px #002261;
}

.doctor-img{
	overflow:hidden;}
	
.doctor-wrap h5 {
    margin-bottom: 3px;
    font-size: 18px;
}

/*Tender*/

section.tender-sec {
    padding-top: 0;
}
section.tender-sec:before {
	width: 100%;
	height: 70%;
	background: #0f244b;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.row.tender-row {
    background: #fff;
    padding: 2rem 4rem 4rem;
    width: 90%;
    margin: auto;
}
.tender-sec .theme-heading-sec {
    margin-bottom: 3.5rem;
    text-align: center;
}
.tender-wrap {
    height: 100%;
    display: flex;
    align-items: center;
}
.tender-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tender-wrap li a {
    color: #07132b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px 20px;
    position: relative;
}
.tender-wrap li a:before {
    content: "\F280";
    font-family: 'bootstrap-icons';
    color: #3abbf3;
    font-weight: 700;
    left: 0px;
    position: absolute;
    font-size: 14px;
}
.helpline-wrap {
	text-align: center;
}
.helpline-wrap .helpline {
    width: calc(100% / 5 - 11px);
    display: inline-block;
    text-align: center;
    padding: 2rem 1rem;
    border: solid 1px rgb(46 166 219 / 22%);
    border-radius: 13px;
    margin: 5px 3px;
    background: #0e2143;
}
.helpline-col .theme-heading-sec {
    margin: 4.2rem 0 3.2rem;
    text-align: center;
}
.helpline-col .theme-heading-sec h2 {
    color: #fff;
}
.helpline h5 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}
.helpline p {
    color: #2ea6f7;
}


/*Achievement Sec*/

.achievement-sec .theme-heading-sec {
    margin-bottom: 4rem;
    text-align: center;
}
.gallery-wrapper img {
    display: block;
    width: 100%;
    max-height: 270px;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/*Contact Sec*/

.contact-sec {
    padding: 0 0 0px;
}
section#contact-us .row {
    background: #002261;
    padding: 2rem 0rem;
}

.info-wrapper.brdr-none {
    border: none;
}
.info-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0rem 0 0rem 3rem;
    border-left: solid 1px #ff9e3a54;
    margin-bottom: 0rem;
    max-height: 92px;
    height: 100vh;
}
.info-img {
    width: 60px;
    height: 60px;
    background: #2ea6f7;
    border-radius: 100px;
    padding: 0.8rem;
    border: solid 1px #494949;
    position: relative;
}
.info-img img {
    filter: brightness(0) invert(1);
}
.info-cont {
    flex: 1;
}
.info-cont h4 {
    color: #2ea6f7;
    margin: 0 0 10px;
    letter-spacing: -0.7px;
    font-size: 22px;
}
.info-cont a {
    font-weight: 600;
    letter-spacing: 0.1px;
    font-size: 16px;
    text-align: center;
    padding: 6px;
    border-radius: 8px;
    border: solid 1px transparent;
    color: #fff;
    font-family: "Poppins", sans-serif;
}
.info-cont p {
    color: #fff;
    margin: 0;
}


/*Footer*/

footer {
    background: #0d1d3b;
    position: relative;
    overflow: hidden;
}
.copyright-wrap {
    display: flex;
    justify-content: center;
    padding: 17px;
    gap: 3px;
    border-top: dashed 1px #5a575d;
}
.copyright-wrap p {
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.2px;
}
.copyright-wrap p a {
    color: #2ea6f7;
    font-weight: 200 !important;
    font-family: "Lexend", sans-serif;
}

.srv-ic img {
    width: 36px;
    filter: brightness(0) invert(1);
}





@media (max-width: 768px) {

/*Header*/
.header-col{
padding:0 0 0 0.4rem;
	}
	
/*Banner*/
	
	div#demo .row{
flex-direction:column-reverse;
height:auto;
	}
	
	

	/*Counter*/

.counter-sec:after {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
display:none;
}
.ban-col{
display:block;
}
.banner-heading{
padding:1.8rem 2rem;
text-align:center;
}
.banner-heading p{
border-left:none;
margin-bottom:0;
	}
	
.banner-heading h1{
font-size:44px;
line-height:54px;
}
.carousel-item{
height:auto;
	}
	
	
	
/*Services*/
.srv-ic {
    width: 67px;
    height: 67px;
}

/*counter*/
.counter-sec {
    padding: 2rem 0.5rem;
}	
.counter-wrap h3 {
    font-size: 38px;
}	
.counter-wrap {
    padding: 6px 0;
}
	
/*doctor*/
.doctor-wrap{
max-height:unset;
height:auto;
	}
	
	
/*Tender*/

.tender-sec .theme-heading-sec {
    margin-bottom: 2rem;
}
.row.tender-row {
    padding: 1rem 1rem 2rem;
    width: 94%;
}
.tender-wrap li a {
    padding: 10px 0px 10px 25px;
}
.helpline-wrap .helpline {
    width: calc(100% / 2 - 11px);
}

/*Footer*/

section#contact-us .row {
    padding: 1rem 0rem;
}
.info-wrapper {
    max-height: unset;
     height: auto;
     padding: 0;
     display:block;
     text-align:center;
     margin: 1rem 0;
     border-left:none;
 }
 .info-img {
    margin: 0 auto 0.6rem;
}

.copyright-wrap p {
    margin: 4px 0;
    letter-spacing: 0.2px;
    line-height: 22px;
}
.copyright-wrap {
    display: block;
    text-align: center;
}
}
