@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
	background-color: #F5F5F5;
	border-radius: 10px;
}

::-webkit-scrollbar
{
	width: 10px;
	height: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgba(0,0,0,0.2)),
									   color-stop(0.72, rgba(0,0,0,0.3)),
									   color-stop(0.86, rgba(0,0,0,0.2)));
}

html, body, .main-content {
	scroll-behavior: smooth;
}
body {
  font-family: "Libre Franklin", sans-serif;
  color: #333;
  background-color: #fefefe;
  overflow-x: hidden; }

.layout_padding {
  padding: 60px 0; }

.layout_padding2 {
  padding: 75px 0; }

.layout_padding2-top {
  padding-top: 75px; }

.layout_padding2-bottom {
  padding-bottom: 75px; }

.layout_padding-top {
  padding-top: 90px; }

.layout_padding-bottom {
  padding-bottom: 90px; }

.layout_margin-top {
  margin-top: 90px; }

.layout_margin-bottom {
  margin-bottom: 90px; }

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .heading_container h2 {
    position: relative;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: uppercase; }
  .heading_container p {
    margin-top: 10px;
    margin-bottom: 0; }
  .heading_container.heading_center {
    align-items: center;
    text-align: center; }

.form-control.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e) !important;
    background-repeat: no-repeat !important;
    background-position: right calc(.375em + .1875rem) center !important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem) !important;
	box-shadow: 0 0 0px 3px rgba(220, 53, 69, 0.15);
}
.form-control.is-valid {
    border-color: #198754 !important;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e) !important;
    background-repeat: no-repeat !important;
    background-position: right calc(.375em + .1875rem) center !important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem) !important;
	box-shadow: 0 0 0px 3px rgba(25, 135, 84, 0.15);
}

a,
a:hover,
a:focus {
  text-decoration: none; }

a,
a:hover,
a:focus {
  color: #1AAE9B; }

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none; }

.btn>i {
	margin-right: 8px;
}

.btn.btn-success {
    color: #fff;
    background-color: #1aae9b;
    border-color: #1aae9b;
}
	.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
		color: #fff;
		background-color: #119a88;
		border-color: #119a88;
	}

.body-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.main-content {
	margin-top: 72px;
    flex: 1;
    overflow: auto;
}

/*header section*/
.hero_area {
  position: relative;
  height: 100vh;
  max-height: 700px;
  display: flex;
  flex-direction: column; }
  .hero_area .hero_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    z-index: -1; }
    .hero_area .hero_bg_box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: bottom right; }

.sub_page .hero_area {
  min-height: auto;
  background-color: #1AAE9B; }
  .sub_page .hero_area .hero_bg_box {
    display: none;}

.header_section {
	/*height: 72px;*/
    padding: 15px 0;
    position: fixed;
	top: 0;
    z-index: 10001;
    width: 100%;
    background-color: #1AAE9B;
	box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.15);
}
  .header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px; }

.header-logo {
    display: block;
    width: 280px;
    height: 30px;
    background-image: url(/images/logo-512-white.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase; }

.custom_nav-container {
	padding: 0;
	height: 42px;
}
  .custom_nav-container .navbar-nav {
	background-color: #1AAE9B;
    margin-left: auto; }
    .custom_nav-container .navbar-nav .nav-item .nav-link {
      line-height: 32px;
      padding: 5px 20px;
      color: #ffffff;
      text-align: center;
      text-transform: uppercase;
      border-radius: 5px;
      transition: all 0.3s; }

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff; }
  .custom_nav-container .nav_search-btn:hover {
    color: #1AAE9B; }

.custom_nav-container .navbar-toggler {
  outline: none; }

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s; }
  .custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #ffffff;
    margin: 7px 0;
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s; }
    .custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
      content: "";
      position: absolute;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: #ffffff;
      top: -10px;
      border-radius: 5px;
      transition: all 0.3s; }
    .custom_nav-container .navbar-toggler span::after {
      top: 10px; }
  .custom_nav-container .navbar-toggler[aria-expanded="true"] {
    transform: rotate(360deg); }
    .custom_nav-container .navbar-toggler[aria-expanded="true"] span {
      transform: rotate(45deg); }
      .custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
        transform: rotate(90deg);
        top: 0; }

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 45px 0 145px 0; }
  .slider_section .row {
    align-items: center; }
  .slider_section #customCarousel1 {
    width: 100%;
    position: unset; }
  .slider_section .detail-box {
    color: #1AAE9B; }
    .slider_section .detail-box h1 {
      font-size: 3rem;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 15px;
      color: #ffffff; }
    .slider_section .detail-box p {
      color: #fefefe;
      font-size: 18px; }
    .slider_section .detail-box .btn-box {
      display: flex;
      margin: 0 -5px;
      margin-top: 25px; }
      .slider_section .detail-box .btn-box a {
		font-weight: bold;
		  text-transform: uppercase;
        margin: 5px;
        text-align: center;
        width: 200px; }
      .slider_section .detail-box .btn-box .btn1 {
        display: inline-block;
        padding: 0 15px;
		line-height: 50px;
        background-color: #ffffff;
        color: #1AAE9B;
        border-radius: 5px;
        transition: all 0.3s;
        border: 1px solid #ffffff; }
        .slider_section .detail-box .btn-box .btn1:hover {
          background-color: transparent;
          color: #ffffff; }
  .slider_section .img-box {
    display: flex;
    justify-content: center; }
    .slider_section .img-box img {
      width: 100%;
      max-width: 375px; }
  .slider_section .carousel-indicators {
    position: unset;
    margin: 0;
    justify-content: center;
    align-items: center; }
    .slider_section .carousel-indicators li {
      background-color: #ffffff;
      width: 12px;
      height: 12px;
      border-radius: 100%;
      opacity: 1; }
      .slider_section .carousel-indicators li.active {
        width: 20px;
        height: 20px; }

.department_section {
  position: relative;
  background: rgb(26 174 155 / 10%); }
  .department_section .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
	padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    text-align: center; }
    .department_section .box .img-box {
      width: 90px;
      height: 90px;
      margin-bottom: 15px;
      background-color: #eef5f4;
      border-radius: 100%;
      display: flex;
      justify-content: center;
      align-items: center; }
      .department_section .box .img-box img {
        max-width: 55px;
        max-height: 55px;
        transition: all 0.3s; }
    .department_section .box .detail-box h5 {
      font-weight: bold;
      text-transform: uppercase; }
    .department_section .box .detail-box a {
      color: #1AAE9B;
      font-weight: 600; }
      .department_section .box .detail-box a:hover {
        color: #1AAE9B; }
  .department_section .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 45px; }
    .department_section .btn-box a {
      display: inline-block;
      padding: 10px 45px;
      background-color: #1AAE9B;
      color: #ffffff;
      border-radius: 5px;
      transition: all 0.3s;
      border: 1px solid #1AAE9B; }
      .department_section .btn-box a:hover {
		background-color: #1AAE9B;
        color: #fff;
        border: 1px solid #fff;}

.img-box>span {
    font-size: 60px;
    color: #5fab9b;
}

.about_section {
    padding: 40px 0 90px 0;
}
.about_section .row {
  align-items: center; }
.about_section .img-box {
  display: flex;
  justify-content: center; }
  .about_section .img-box img {
    width: 100%;
    border-radius: 15px; }
.about_section .detail-box h3 {
  font-weight: bold; }
.about_section .detail-box p {
  margin-top: 15px; }
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #1AAE9B;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #1AAE9B;
  margin-top: 15px; }
  .about_section .detail-box a:hover {
    background-color: transparent;
    color: #1AAE9B; }

.doctor_section {
  background: #1AAE9B; }
  .doctor_section .heading_container {
    color: #ffffff; }
  .doctor_section .box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 45px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff; }
    .doctor_section .box .img-box {
      width: 100%; }
      .doctor_section .box .img-box img {
        width: 100%; }
    .doctor_section .box .detail-box {
		width: 100%;
		padding: 25px 15px;
		text-align: center;
		position: relative;
		background-color: #f5f5f5;
		border-top: 1px solid #eee;}
      .doctor_section .box .detail-box .social_box {
        position: absolute;
        z-index: 2;
        left: 50%;
        top: 150%;
        transform: translate(-50%, -50%);
        /*background-color: #ffffff;
        padding: 10px;*/
        border-radius: 5px;
        display: flex;
        opacity: 0;
        transition: all .3s; }
        .doctor_section .box .detail-box .social_box a {
			margin: 0;
			display: inline-block;
			padding: 10px 45px;
			background-color: #1AAE9B;
			color: #fff;
			border-radius: 5px;
			transition: all 0.3s;
			border: 1px solid #1AAE9B;
    		box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.3);}
          .doctor_section .box .detail-box .social_box a:hover {
          }
    .doctor_section .box:hover .social_box {
      top: 0;
      opacity: 1; }
  .doctor_section .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 45px; }
    .doctor_section .btn-box a {
      display: inline-block;
      padding: 10px 45px;
      background-color: #fff;
      color: #1AAE9B;
      border-radius: 5px;
      transition: all 0.3s;
      border: 1px solid #1AAE9B; }
      .doctor_section .btn-box a:hover {
        background-color: #1AAE9B;
        color: #fff;
		border: 1px solid #fff;}

.timeline {
    position: relative;
    max-width: 740px;
    margin: 30px auto;
    padding-left: 50px;
}
	.timeline:before {
		content: ' ';
		position: absolute;
		display: block;
		z-index: 1;
		left: 13px;
		top: 0;
		width: 4px;
		height: 100%;
		background-color: #ccc;
		background: linear-gradient(0deg, rgba(26, 174, 155, 0.1) 0%, rgba(26, 174, 155, 1) 15%, rgba(26, 174, 155, 1) 85%, rgba(26, 174, 155, 0) 100%);
	}
	.timeline>div {
		display: flex;
		align-items: center;
		gap: 20px;
		margin: 20px 0;
		box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.2);
		background-color: #1AAE9B;
		border-radius: 8px;
    	overflow: hidden;
	}
		.timeline>div>i {
			position: absolute;
			z-index: 10;
			display: block;
			background-color: #fff;
			color: #1AAE9B;
			border-radius: 32px;
			width: 46px;
			line-height: 46px;
			font-size: 24px;
			text-align: center;
			left: -8px;
			box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.2);
		}
		.timeline>div>.title {
			display: block;
			width: 170px;
			padding: 20px;
			color: #fff;
			font-weight: 600;
		}
		.timeline>div>.description {
			flex: 1;
			padding: 20px 10px;
			background-color: #fff;
	}

ul.product-list {
    list-style: none;
    margin: 20px 30px;
    padding: 0;
}
	ul.product-list>li {
		padding: 10px 0;
		display: flex;
		gap: 20px;
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
	}
		ul.product-list>li>i {
			margin-top: 4px;
			font-size: 22px;
			width: 22px;
		}
			ul.product-list>li>i.fa-check {
				color: #5fab9b;
			}
			ul.product-list>li>i.fa-times {
				color: #ccc;
			}

.contact_section {
  position: relative; }
  .contact_section .heading_container {
    margin-bottom: 25px; }
    .contact_section .heading_container h2 {
      text-transform: uppercase; }
  .contact_section .form_container input,
  .contact_section .form_container textarea {
    width: 100%;
    border: none;
    height: 50px;
    margin-bottom: 15px;
    padding-left: 20px;
    outline: none;
    color: #101010;
    background: #fff;
    border: 1px solid #ccc;}
		.contact_section .form_container textarea {
			padding: 15px;
		}

    .contact_section .form_container input::placeholder,
	.contact_section .form_container textarea::placeholder {
      color: #777; }
    .contact_section .form_container input.message-box {
      height: 175px; }
  .contact_section .form_container button {
    width: 100%;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 55px;
    background-color: #1AAE9B;
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid #1AAE9B; }
    .contact_section .form_container button:hover {
      background-color: transparent;
      color: #1AAE9B; }
  .contact_section .map_container {
    height: 368px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding: 0; }
    .contact_section .map_container .map {
      height: 100%;
      flex: 1; }
      .contact_section .map_container .map #googleMap {
        height: 100%; }

.how_it_works {
    background: rgb(26 174 155 / 10%);
    padding: 90px 0;
}

.client_section {
    background: rgb(26 174 155 / 10%);
    padding: 90px 0;
}
.client_section .heading_container {
  align-items: center; }
.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 45px;
  border-radius: 15px; }
  .client_section .box .img-box {
    margin-bottom: 15px;
    min-width: 145px;
    max-width: 145px;
    overflow: hidden; }
    .client_section .box .img-box img {
      width: 100%;
      border-radius: 100%;
      border: 7px solid rgba(255, 255, 255, 0.45); }
  .client_section .box .detail-box {
    display: flex;
    flex-direction: column; }
    .client_section .box .detail-box .name img {
      width: 25px;
      margin-bottom: 5px; }
    .client_section .box .detail-box .name h6 {
      color: #1AAE9B;
      font-size: 20px; }
.client_section .carousel_btn-container {
  display: flex;
  justify-content: center; }
.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  background-color: #1AAE9B;
  background-position: center;
  border-radius: 5px;
  margin: 0 2.5px; }
  .client_section .carousel-control-prev:hover,
  .client_section .carousel-control-next:hover {
    background-color: #1AAE9B; }
.client_section .carousel-control-next {
  left: initial; }

.footer_section {
  background: #1AAE9B;
  color: #ffffff;
  padding: 60px 0 60px 0;
  position: relative; }
  .footer_section h4 {
    font-weight: 600;
    margin-bottom: 20px; }
  .footer_section .footer_col {
    margin-bottom: 30px; }
  .footer_section .footer_contact .contact_link_box {
    display: flex;
    flex-direction: column; }
    .footer_section .footer_contact .contact_link_box a {
      margin: 5px 0;
      color: #ffffff; }
      .footer_section .footer_contact .contact_link_box a i {
        margin-right: 5px; }
      .footer_section .footer_contact .contact_link_box a:hover {
        text-decoration: underline; }
  .footer_section .footer_social {
    display: flex;
    margin-top: 20px;
    margin-bottom: 10px; }
    .footer_section .footer_social a {
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffffff;
      border-radius: 100%;
      margin-right: 10px;
      font-size: 24px; }
      .footer_section .footer_social a:hover {
        color: #fff; }
  .footer_section .footer_links {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column; }
    .footer_section .footer_links a {
      display: flex;
      align-items: center;
      margin-right: 15px;
      margin-bottom: 15px;
      color: #ffffff; }
      .footer_section .footer_links a:hover {
        text-decoration: underline; }
  .footer_section form input {
    border: none;
    background-color: #fefefe;
    width: 100%;
    height: 45px;
    color: #333;
    outline: none;
    border-radius: 5px;
    padding: 0 15px; }
    .footer_section form input::placeholder {
      color: #777; }
  .footer_section form button {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 55px;
    background-color: #fff;
    color: #1AAE9B;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid #1AAE9B;
    margin-top: 15px; }
    .footer_section form button:hover {
      background-color: #1AAE9B;
      color: #fff;
	  border: 1px solid #fff;}
  .footer_section .footer-info {
    text-align: center; }
    .footer_section .footer-info p {
      color: #ffffff;
      padding: 25px 0;
      margin: 0; }
      .footer_section .footer-info p a {
        color: inherit; }
