/**
* Template Name: Medilab
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {

  font-family: Poppins;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  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: #1977cc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #298ce5;
  color: #fff;
}

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

.datepicker-dropdown {
  padding: 20px !important;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  /* top: 40px; */
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 80px;
}

/**
* Appointment Button *
*/
.appointment-btn {
  margin-left: 25px;
  background: #0C5152;
  color: #fff;
  /* border-radius: 50px; */
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #166ab5;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }

}

/*--------------------------------------------------------------
# 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>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", Sans-serif;
  color: #2C3532;

  white-space: nowrap;
  transition: 0.3s;
  /* border-bottom: 2px solid #fff; */
  padding: 7px 7px;
  /* font-family: 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: #1977cc;
  border-color: #1977cc;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.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: #1977cc;
}

.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: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.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(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 15px;
}

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

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.contact_card_h {
  height: 201px;
}

.surgery_img {
  height: 300px;
  width: 100%;
}

@media (max-width: 1024px) and (min-width: 992px) {

  .navbar>ul>li {
    padding: 8px 0 8px 6px;
  }

  .navbar a {
    font-size: 14px;
  }

  .contact_card_h {
    height: 250px;
  }

  .appointment-btn {
    margin-left: 20px !important;
    padding: 8px 15px !important;
    font-size: 12px !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  margin-bottom: -200px;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c4964;
}

#hero h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1977cc;
}

#hero .btn-get-started:hover {
  background: #3291e6;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

@media (max-width: 576px) {
  .main_banner section {
    padding: 0px 0 !important;
  }

  .surgery_img {
    height: 180px;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #ffffff;
  font-size: 14px;
  background: #000;
}

#footer .footer-top {
  padding: 60px 0 0px 0;
  background: #000;
  color: white;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #ffffff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #1977cc;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1977cc;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #1c84e3;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1977cc;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1c84e3;
  color: #fff;
  text-decoration: none;
}

.slider_img {
  /* height: 350px; */
  width: 100%;
}

.slider_h1 {
  color: #0C5152;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 39px;
  font-weight: 600;
  line-height: 48px;
}

@media(max-width:576px) {
  .slider_h1 {
    color: #0C5152;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-top: 32px;
  }

  section {
    padding: 30px 0;
    overflow: hidden;
  }

  .slider_img {
    /* height: 250px !important; */
    width: 100%;
  }

  .btn_home {

    font-size: 10px !important;

  }

  .btn_home2 {

    font-size: 10px !important;

  }

  .home_about_img {
    height: 327px !important;
  }

  .dr_img_h {
    height: 290px !important;
  }

  #blog .left {
    position: absolute;
    top: 131px !important;
  }

  #blog .blog-top {

    height: 189px !important;
  }
}

.btn_home {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  fill: #FFFFFF;
  color: #FFFFFF;

  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-radius: 0px 0px 0px 0px;
  padding: 14px 45px 14px 45px;
}

.btn_home2 {
  font-family: "Lato", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  fill: #116466;
  color: #116466;
  background-color: #2C417900;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #116466;
  border-radius: 0px 0px 0px 0px;
  padding: 14px 30px 14px 30px;
}

.btn_home2:hover {
  font-family: "Lato", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  fill: #ffffff;
  color: #ffffff;
  background-color: #116466;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #116466;
  border-radius: 0px 0px 0px 0px;
  padding: 14px 30px 14px 30px;
}

.know_more {
  color: #ffffff;
  background-color: #116466;
}

.know_more:hover {
  color: #ffffff;
  background-color: #116466;
}

.home_about_img {
  height: 530px;
}

.department_home {
  color: #919191;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.department_img_home {
  height: auto;
  width: 100%;
}

.text_color {
  color: #082744;
}

.services_img_home {
  height: 234px;
  width: 100%;
}

.home_services_card {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.paragraph_font {
  font-family: emoji;
  font-size: 18px;
}

.img_h_home {
  height: 280px;
}

.cancer_home_img {
  height: 240px;
  width: 100%;
}

.cancer_home_card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.about-info h3 {
  font-size: 17px;
  font-weight: 700;
}

.about_breadcrumb_img {
  height: 250px;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start
}

.about_breadcrumb {
  position: absolute;
  top: 25%;
}

.f_right {
  float: right;
}

@media(max-width:576px) {
  .f_right {
    text-align: center !important;
  }
}

.icon_about {
  font-size: 30px;
}

.design_form {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px black solid;
  background-color: #F6F6F6 !important;
  box-shadow: none !important;
}

.form_btn {
  background-color: #116466;
  color: white;
  padding: 7px 31px;
  font-size: 25px;

}

.form_btn:hover {
  background-color: #116466;
  color: white;
}


.abt_app_btn {
  font-family: "Lato", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  background-color: #E0394E;
  border-radius: 0px 0px 0px 0px;
  padding: 15px 30px 15px 30px;
}

.appontment_card {
  padding: 16px;
}

@media (min-width: 1000px) {
  .appontment_card {
    width: 700px;
  }
}



#appoint_banner {
  background-color: #cc7c8629;
}


#reviews .box {
  background-color: #06999c4f;
}

#reviews .owl-carousel .owl-item img {
  display: inline-block !important;
  width: auto;
}

#reviews .author-img img {
  width: 70px !important;
  height: auto;
  border-radius: 100%;
}

#reviews .font-medium {
  font-weight: 500;
}

#reviews .border-radius-new {
  border-radius: 20px;
}

#reviews img.comms {
  width: 40px !important;
  height: auto;
}

/* contact ============================= */
.contact-blog-top {
  background-image: url(blog.png);
  background-position: 90% 20px;
  background-repeat: no-repeat;
  background-size: 32% auto;
  opacity: 1;
  height: 350px;
  background-color: #E2ECED;
}

/* ========================================blog start ========================================== */
#blog .blog-top {
  background-image: url(blog.png);
  background-position: 90% 20px;
  background-repeat: no-repeat;
  background-size: 32% auto;
  opacity: 1;
  height: 350px;
  background-color: #E2ECED;
}

#blog .left {
  position: absolute;
  top: 189px;
}

#blog .blog-main .card {
  border-radius: 10px;
  /* height: 237px; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#blog .blog-main .health {
  background-color: #777;
  color: #ffffff;
  width: 62px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#blog .blog-main .zoom-effect-container {
  float: left;
  position: relative;
  width: 100%;
  height: 216px !important;
  margin: 0 auto;
  overflow: hidden;
}

#blog .blog-main .image-card {
  position: absolute;
  top: 0;
  left: 0;
}

#blog .blog-main .image-card img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  /* width: 100%; */
  height: 215px;
  border-radius: 10px 0 0 10px !important;
}

#blog .blog-main .zoom-effect-container:hover .image-card img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}


@media(max-width:576px) {
  #blog .blog-main .zoom-effect-container {
    width: 100%;
    height: 182px;
  }

  #blog .blog-main .image-card img {
    border-radius: 10px 10px 0 0 !important;
  }
}

@media(max-width:768px) {
  #blog .blog-main .zoom-effect-container {
    width: 100%;
    /* height: 321px; */
  }

  #blog .blog-main .image-card img {
    border-radius: 10px 10px 0 0 !important;
  }

  .contact-blog-top {

    height: 200px !important;

  }
}

/* ========================================blog end ========================================== */


/* *******************************************single prod start************************************** */

.nav-pills-custom .nav-link {
  color: #aaa;
  background: #fff;
  position: relative;
}

.nav-pills-custom .nav-link.active {
  color: #45b649;
  background: #fff;
}


/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
  .nav-pills-custom .nav-link::before {
    content: '';
    display: block;
    border-top: 8px solid transparent;
    border-left: 10px solid #fff;
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    opacity: 0;
  }
}

.nav-pills-custom .nav-link.active::before {
  opacity: 1;
}

#singleprod .nav .nav-link img {
  border: 1px solid rgb(210, 204, 30);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

@media (max-width: 447px) {
  #singleprod .row {
    /* flex-direction: column-reverse !important; */
  }

  #singleprod .tab-content {
    margin-bottom: 20px;
  }
}

/* *******************************************single prod end************************************** */
.home_blog_img {
  height: 200px;
  width: 100%;
}



.line_clmp2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line_clmp1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line_clmp3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line_clmp4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line_clmp5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dr_img_h {
  height: 400px;
}

.font_blog {
  color: #0c5152;
  font-size: 17px;
  font-weight: bold;
}

/* @media(min-width:1024px) and (max-width:1280px) {
  .slider_h1 {
    color: #0C5152;
    font-family: "Poppins", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 33px;
  }
} */

@media(min-width:992px) and (max-width:1024px) {
  .slider_h1 {
    color: #0C5152;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 33px;
    font-weight: 600;
    line-height: 40px;
  }

  .slider_padding {
    padding: 6px 0 0 0 !important;
  }

  .img_h_home {
    height: 388px;
  }
}

.blog_imgg {
  /* height: 450px; */
  width: 100%;
}

.contact_icon {
  color: #0C5152;
  font-size: 38px;
}