/*---- Google fonts ---*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Muli:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&family=Muli:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Timmana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700;900&display=swap');
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500&display=swap');


/* universal-selectors */
*,
*::before,
*::after {
  box-sizing: border-box;
  text-decoration: none !important;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-x: hidden;
  font-family: var(--primary-font) !important;
}


:root {
  --primary-font: 'Roboto', sans-serif;
  --roboto: 'Roboto', sans-serif;
  --raleway: 'Raleway', sans-serif;
  --poppins: 'Poppins', sans-serif;
  --muli: 'Muli', sans-serif;
  --rat: 'Montserrat', sans-serif;
  --sans-pro: 'Source Sans Pro', sans-serif;
  --nunito: 'Nunito', sans-serif;
  --oswald: 'Oswald', sans-serif;
  --brand-color_1: #b3213a;
  --brand-color_2: #702c6e;
  --brand-gradient: linear-gradient(to left, #b92034, #8f2858, #682d73);
  --devp_color: #65da08;
  --light-gray: #626262;
  --very-lite-gray: #626262ba;
}

body {
  overflow-x: hidden;
  overflow: hidden;
  font-family: var(--primary-font) !important;
  color: #eee;
  line-height: 1.5;
}

a {
  color: #b01eb7;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #b01eb7;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(to left, #b92034, #8f2858, #682d73);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 999;
}


.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

}

/* Prelaoder */
#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 #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  z-index: 997;
  padding: 26px 0;
  background: rgba(0, 0, 0, 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
}
#header .logo img.sti {
    max-width: 150px;
}



.iso {
    display: flex;
    justify-content: center;
    align-items: center;
   
    border-radius: 10px;
    background-color: #fff;
    width: fit-content;
    margin: auto;
    flex-direction: row;
}

.iso1{
    
  cursor: pointer;
}

#myModal01 img{
    
  width:100%;  
}

#myModal02 img{
    
  width:100%;  
}
#myModal03 img{
    
  width:100%;  
}

#myModal01 span{
    
  z-index:10;  
}

#myModal02 span{
    
   z-index:10;   
}
#myModal03 span{
    
   z-index:10;    
}

.iso img{
/*width: 60%;
    background-color: #fff;
    border-radius: 10px;*/
}

#header .logo {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px;
  border-left: 4px solid var(--brand-color_1);
}

#header .logo a {
  color: #fff;

}

#header .logo img {
  max-width: 210px;
}
 .certih{

    color: #fff;
     text-align: center;
     margin-bottom: 0px;
     font-size: 1.75rem;
  }

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 15px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;

  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu ul li a i {
  font-size: 30px;
  position: absolute;
  top: -7px;
  left: -25px;
  color: #fff;

}

.nav-menu ul li.active a i {
  font-size: 30px;
  position: absolute;
  top: -7px;
  left: -20px;
  background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
}

.nav-menu i:hover,
.nav-menu .active>i,
.nav-menu li:hover>i {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  position: relative;
  transition: 0.3s;
  font-size: 15px;

  text-transform: uppercase;
  font-weight: 500;
}

.weare{

  width: 100%;
}

.wearein h2{
  margin-bottom: 0px;
    margin-top: 20px;
}
.weare1{

  display: none;
}

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

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.axdflex{
margin-top: 25px;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  color: #333333;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #b01eb7;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

.gallery a {
margin-bottom: 20px;
    background-color: #fff;
    color: #333;
    text-align: center;
    font-size: 18px;
    padding: 0px 0px 0px 0px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    border-radius: 10px;
}


.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    
    border-radius: 10px;
}

.gallery p {

margin: 0px;
padding: 10px 0px;
 color: #333;
    text-align: center;
    font-size: 18px;

}
.award_head{
  display: block;
 color: #952751;
 position: relative;
 margin-bottom: 60px;
}


.award_head::before {
    content: '';
    background-color: #952751;
    width: 50px;
    height: 5px;
    position: absolute;
    bottom: -15px;
    border-radius: 50px;
    left: 0px;
}

.award_head::after {
    content: '';
    background-color: #952751;
    width: 10px;
    height: 5px;
    position: absolute;
    bottom: -15px;
    border-radius: 50px;
    left: 60px;
}
.award_head1{
  display: block;
 color: #952751;
 position: relative;
 margin-bottom: 40px;
}


.award_head1::before {
    content: '';
    background-color: #952751;
    width: 50px;
    height: 5px;
    position: absolute;
    bottom: -15px;
    border-radius: 50px;
    left: 0px;
}

.award_head1::after {
    content: '';
    background-color: #952751;
    width: 10px;
    height: 5px;
    position: absolute;
    bottom: -15px;
    border-radius: 50px;
    left: 60px;
}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
  height: 410px;
  text-align: center;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #333333;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  font-size: 17px;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(26, 26, 26, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav ul li a i {
  font-size: 35px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #intro {
    height: 150vh;
  }
}

#intro .carousel,
#intro .carousel-inner,
#intro .carousel-item,
#intro .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



#featured-services svg {
  fill: #b01eb7;
  width: 40px;
  height: 40px;
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#intro .container {
  text-align: center;
  position: relative;
  z-index: 10;
}

#intro h1 {

  color: #fff;
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 700;
  text-align: left;
  max-width: 30ch;

}



#intro p {
  
    margin: auto 0 0 0;
    color: #fff;
    text-align: left;
    max-width: 50ch;
    font-size: 20px;
    font-weight: 300;
}

/* @media (min-width: 1024px) {
  #intro p {
    width: 60%;
  } */
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

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

@media (min-width: 1024px) {

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 60px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0px;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 30px 0px 10px;
    background: var(--brand-gradient);
    color: white;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #942753;
  font-size: 16px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-head {
  text-align: left;
}

.section-header {
  position: relative;
  padding-bottom: 6em
}

.section-header::after {
  position: absolute;
  content: '';
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #ed1c94 50%, #981df0 120%);
  left: 0em;
  margin-top: 2em;
  z-index: 9;
  display: inline-block;
}

.section-header h3 {
  font-size: 34px;
  line-height: 1.375;
  margin-top: 0;
  margin-bottom: 0;

  font-weight: 400;
  text-transform: uppercase;
  color: #29293a;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  padding-left: 0
}

.parallax-text {
  position: absolute;
  font: 900 36px/1 var(--rat);
  top: -20px;
  letter-spacing: .19em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f2f3f9;
  font-size: 80px;
  left: -75px;
  z-index: 1
}

/* .section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
} */

/* .section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--brand-gradient);
  bottom: 0;
  left: calc(50% - 20px);
} */

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

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

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

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

.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;
  }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #18d26e;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #18d26e;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
  background-size: cover;
  position: relative;
  margin-bottom: 10px;
  margin-top: 40px;
}

#about::before {
  /*   content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9; */
}

.about_content li {
    color: #000;
    display: inline;
    font-size: 20px;
    font-weight: 400;
}
.about_content li i {
    color: #000;
    display: inline;
    font-size: 12px;
    font-weight: 400;
}

.project_body{

  margin: 40px 0px;
}

.project_body p{

  font-size: 18px;
  font-weight: 400;
  color: #333;
     text-align: justify;
    margin-bottom: 15px;
}
.project_body li{

  font-size: 18px;
  font-weight: 400;
  color: #a92341;
     text-align: left;
    margin-bottom: 5px;
}

.section_simple_header h2 {
  text-align: center;
  font-size: 35px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-title {
  text-align: center;
  font-size: 35px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_simple_header h3 span {
  font-weight: 300;
  position: relative;
}

.about_content .first {
  padding-top: 1em;
}

.section_simple_header {
  position: relative;
}

.section_simple_header::after {
    content: '';
    position: absolute;
    width: 85px;
    height: 4px;
    border-radius: 30px;
    margin-bottom: 2em;
    left: 50%;
    bottom: -45px;
    transform: translate(-50%);
    background: linear-gradient(
45deg, #6d2c70 30%, #b2213a 100%);
}

#about .row>[class*='col-md-6']:first-child {
  padding: 0;
  position: relative;

}

#about .row>[class*='col-md-6']:first-child::before {
  position: absolute;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, #9d213559, #8f285824, #3c2e8321);
  z-index: 9;
}

#about .row>[class*='col-md-6']:last-child {
  background: #f2f3f9;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_content {
  
  position: relative;
}

.about_content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  content: "";
  background: url(../img/medtech_logo.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
      z-index: -1;
}

.about_content p {
color: #333;
    font-size: 20px;
   text-align: justify;
    margin-bottom: 13px;
    font-weight: 300;
}

.office_img {
  overflow: hidden;

  /*height: 100%;*/
  border-radius: 10px;
}

.office_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  animation: zoomInnn 15s linear alternate infinite;
  display: block;
}

@keyframes zoomInnn {
  from {
    transform: scale(1.3);
  }

  to {
    transform: scale(1);
  }
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #18d26e;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #18d26e;
}

#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #b01eb7;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #18d26e;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #18d26e;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {

  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #18d26e;
  border: 2px solid #18d26e;
}

/* Call To Action Section
--------------------------------*/
#skills {
  padding: 60px 0;
}

#skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

#skills .progress .skill {

  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

#skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

#skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: .9s;
}

/* Facts Section
--------------------------------*/
#facts {
  background: url("../img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {

  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #b01eb7;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;

  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #18d26e;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #18d26e;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #18d26e;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/* Portfolio Details
--------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #18d26e !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

.panel-title a:after {
  font-family: Fontawesome;
  content: "\f077";
  float: right;
  font-size: 10px;
  font-weight: 300;
  margin-top: 10px;
}
.panel-title a.collapsed:after {
  font-family: Fontawesome;
  content: "\f078";
}

/*.collapse.in {
    display: block;
}*/

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }

  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #18d26e;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #18d26e;
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #18d26e;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 30px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #18d26e;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #18d26e;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #18d26e;
}

#contact .php-email-form button[type="submit"] {
  background: #18d26e;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #13a456;
}

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;

  color: #eee;
  font-size: 16px;
  position: relative;
}

#footer .footer-top {
    background: linear-gradient( 
0deg, rgb(0 0 0 / 86%), rgb(0 0 0 / 65%)), url(../../../assets/client/img/we1.png);
    padding: 145px 0 50px 0;
    background-position-x: 50%;
    background-position-y: -58%;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid var(--brand-color_1);
}

#footer .footer-top .footer-info p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: #eee;
    font-weight: 400;
    text-align: justify;
}
#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #eee;
    line-height: 40px;

    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--brand-gradient);

  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: var(--brand-gradient);
  -webkit-text-fill-color: transparent;

  width: 60px;
}

#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: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 0px solid #333;
  padding: 10px 0;
}

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

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

#footer .footer-top .footer-contact p {
  line-height: 26px;
  margin: 0px;
  font-size: 16px;
}
.partners_wrapper{

    background-image: url(../img/light-dotz.png);
}

.footer-newsletter {

  margin: 40px 50px 0px 50px;
}

.footer-newsletter h4{

  margin-bottom: 10px;
    color: #6d2c6f;
    text-align: center;
}

.footer-newsletter input[type="email"] {
  border: 0;
  padding: 10px 8px;
  width: 65%;
  box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 1px 3px 1px;
    border-radius: 5px 0px 0px 5px;

}

.footer-newsletter input[type="submit"] {
  background: var(--brand-gradient);
  border: 0;
  width: 35%;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
   border-radius: 0px 5px 5px 0px;
}

/*.footer-newsletter input[type="submit"]:hover {*/
/*  background: #b01eb7;*/
/*}*/

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

#footer .credits a {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.custom-shape-divider-top-1620724407 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1620724407 svg {
  position: relative;
  display: block;
  width: calc(110% + 1.3px);
  height: 92px;
}

.custom-shape-divider-top-1620724407 .shape-fill {
  fill: #FFFFFF;
}

/*--------------------------------------------------------------
# 
n_section
--------------------------------------------------------------*/
.chairman_section {
  padding: 5em 0 4em;
  position: relative;
}

.

.message_section .small_head {
  margin: 0;

}

.message_section h3 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
}

.message_section p {
    color: #333;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 13px;
    font-weight: 300;
}

.lockadd i{

font-size: 30px;
margin-right: 5px;
background: linear-gradient(to left, #b92034, #8f2858, #682d73);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.lockadd i.fa-phone{

font-size: 25px;
margin-right: 5px;
background: linear-gradient(to left, #b92034, #8f2858, #682d73);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.lockadd i.fa-fax{

font-size: 25px;
margin-right:0px;
background: linear-gradient(to left, #b92034, #8f2858, #682d73);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.message_section .chair_name {

  font-weight: 500;
  color: #626262;
  font-size: 1.1em;
  margin-top: 15px;
  margin-bottom: 5px;
}

.message_section .desig {

  color: rgba(0, 0, 0, 0.5);
  font-size: 1em;
}

.chairman_img {
  text-align: center;
  position: relative;
      padding: 50px 0px 50px 30px;
}

.chairman_img1 {
    text-align: center;
    position: relative;
    padding: 18px 30px 60px 12px;
}

.chairman_img img {
  width: 100%;
  max-width: 470px;
  object-fit: cover;
  /*height: 375px;*/
  border-radius: 10px;
}

.chairman_img1 img {
  width: 100%;
  max-width: 470px;
  object-fit: cover;
  /*height: 375px;*/
  border-radius: 10px;
}

.chairman_photo_bg {
    opacity: 0.1;

    position: absolute;
    bottom: -20px;
    left: 236px;
    transform: scale(1.45) translateX(200px) translateY(-50%) translateZ(-100px);
}

.sign {
  max-width: 120px;
}

.chariman_paralax {
  position: absolute;
  left: -200px;
  transform: translate(0px, -400px);
  animation: parallax-img 5s infinite ease-in-out;
  z-index: -1;
}

@keyframes parallax-img {
  from {
    margin-top: 0;
  }

  50% {
    margin-top: 50px;
  }

  to {
    margin-top: 0;
  }
}

@keyframes pulse {
  from {
    width: 100%;
    height: 100%;
    opacity: .8;
  }

  50% {
    width: 140%;
    height: 140%;
    opacity: 0;
  }

  to {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

.common_btn {
  text-align: center;
  margin-top: 25px;
  transition: 0.3s ease-in-out all;
}

.common_btn a {
  background: var(--brand-gradient);
  color: white;
  padding: 0.6em 2em;
  border-radius: 30px;
  transition: 0.2s ease-in-out all;
  display: inline-block;
}

.common_btn a:hover {
  transform: scale(1.05) !important;
}

.common_btn a:active {
  transform: scale(0.7) !important;
}

.common_btn a i {
  font-size: 0.8em;
  display: inline-block;
  padding-left: 1px;
  color: whitesmoke;
}

.ias{
display: flex;
    justify-content: flex-start;
}

.product_home {
  background: url('../img/1.jpg');
  width: 100%;
  height: 600px;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  background-position: center;
}

.axcontent{

background-color: #fff;
    padding: 30px;
    border-radius: 10px;

}

.axnone{

  display: block;
}



.product_home .content {
  /* background :  rgba(255,255,255,0.3); */
  max-width: 500px
}

.product_home .content h1 {
  color: white;
  line-height: 1.3;
font-size: 45px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 10px;

}

.product_home .content p {
  color: #000;
  font-size: 18px;
font-weight: 300;
  line-height: 30px;
  text-align:justify;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 50px 0;
}

.counts .count-box {
  margin: 30px 0px;
  padding: 70px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  border-radius: 4px;
}

.counts .count-box:hover {
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);

}



.counts .count-box:hover i {}

.counts .count-box i {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    background: #fff;
    color: #b2213a;
    border-radius: 50px;
    border: 2px solid #fff;
 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgb(50 50 105 / 15%) 0px 2px 5px 0px, rgb(0 0 0 / 5%) 0px 1px 1px 0px;
}
.axpart{
    
    margin-bottom:20px;
 
}

.counts .count-box span {
  font-size: 36px;
  display: inline-block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
color: #333;
  font-size: 16px;
}

.counts h1 {
  /* background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
  padding-bottom: 80px; */
}

@media(max-width: 768px) {
    
    .chairman_img {
  text-align: center;
  position: relative;
  padding: 0px;
}
    .chairman_img1 {
  text-align: center;
  position: relative;
  padding: 0px;
}
    
  .counts .row [class^='col-'] {
    padding-right: 10px;
    padding-left: 10px;
  }

  .counts .row [class^='col-'] .count-box {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15)
  }

  .counts .count-box {
    margin-bottom: 30px;
  }
}

/*=========== PARTNERS =============*/
.partners_wrapper {
    padding: 3em 0;
}

.partners_wrapper .section_simple_header {
  margin-bottom: 60px;
}

.partner_bg {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
}

.partner_bg img {
  max-width: 100%;
  width: 100%;
  height: 450px;
  object-fit: cover;
  min-height: 100%;
}

.partner_bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, rgb(157 33 53 / 58%), rgb(143 40 88 / 53%), rgb(60 46 131 / 66%));
  z-index: 9;
}

.partner_bg .partners_heading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0);
  max-width: 230px;
  height: 120px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.2s ease-in-out all;
  /*   border: 3px solid transparent;
  border-image-source: var(--brand-gradient);
  border-image-slice: 1; */
  border: 5px solid #eee;
  z-index: 9;
}

.partner_bg .partners_heading h1 {
  margin: 0;
  font-size: 1.7em;

  color: #fff;
  font-weight: 500;
  line-height: 35px;
  transition: 0.3s ease-in-out all;
}

.partner_bg:hover .partners_heading {
  transform: scale(1.1);
  box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.5);
}

.partner_bg img {
  animation: zoomUpz 45s linear infinite;
}

@keyframes zoomUpz {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

@media(max-width: 768px) {
.counts {
    padding-top: 15px;
}
}

.brand-container .swiper-slide {
  text-align: center;
  padding: 1.3em 0.9em;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
    border-radius: 10px;
}

.brand-container .swiper-slide img {

}

.partners_wrapper .row .col-md-6:first-child {
  position: relative;
}

.partners_wrapper .row .col-md-6:last-child {
  padding: 0 !important;
}

.partners_wrapper .swiper-pagination {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out all;
}

.partners_wrapper .swiper-pagination-bullet {
  background: var(--brand-gradient);
  width: 15px;
  height: 15px;
  transition: 0.3s ease-in-out all;
}

.partners_wrapper .swiper-container {
  padding: 1.8em;
}

@media (max-width: 768px) {
  .brand-container .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: 55px;
    object-fit: initial;
  }

  .partners_wrapper .swiper-container {
    padding: 1em 1em 3.5em 1em;
  }

  .partners_wrapper .swiper-pagination {
    bottom: 20px;
  }

  .brand-container .swiper-slide {
    padding: 1em;
  }

  .partner_bg img {
    height: 200px;
    animation: zoomUpz 30s linear infinite;
  }

  .partner_bg .partners_heading {
    max-width: 160px;
    height: 80px;
    border: 3px solid #eee;
  }

  .partner_bg .partners_heading h1 {
    font-size: 1.2em;
    line-height: 25px;

  }
}

/*--------------------------------------------------------------
# Mision and Vision
--------------------------------------------------------------*/
.mission_vision {
  padding: 50px 0;
  position: relative;
}

/*.mission_vision::before {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  bottom: 0;*/
/*  right: 0;*/
/*  top: 0;*/
/*  content: "";*/
/*  background: url(../img/medtech_logo.png);*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  opacity: 0.2;*/
/*}*/

/* .mission_vision_heading h2{
  text-align: center;
  font-size: 45px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}   */

.mission_vision_content p {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #403e3e;
}

.mission_vision .index_mission_vision h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin: 0;
}

.mission_vision .m_v_cart h3 {
  color: #fff;
  text-align: justify;
  padding-top: 20px;
}

.mission_vision .m_v_cart p {
    color: #fff;
    text-align: justify;
    font-size: 18px;
    font-weight: 100;
 
    line-height: 25px;
        margin-bottom: 0px;
}

.mission_vision .m_v_cart {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to left, #b92034ef, #8f2858e8, #682d73ec);
    border-radius: 10px;
    min-height: 270px;
    box-shadow: 2px 14px 10px #d9d9d9, 7px -12px 10px #ffffff;
}

.mission_vision .m_v_cart:hover {
  transition: 2s ease-in-out;
  background: linear-gradient(to left, #682d73, #8f2858, #b92034);
  -webkit-transition: 2s ease-in-out;
  -moz-transition: 2s ease-in-out;
  -ms-transition: 2s ease-in-out;
  -o-transition: 2s ease-in-out;
}

/*  ======= Service Section =======  */
.index_our_services {
  background-image: linear-gradient(rgb(255 255 255 / 67%), rgb(255 255 255 / 61%)), url('../img/background.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

.index_our_services .index_service {
  padding: 50px 0 20px;
}

.index_our_services .index_service h1 {
  /* text-align: center;
  font-size: 45px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.index_our_services .index_service .service_cart {
  background: #ffffff;
  box-shadow: 0 7px 27px #0000001f;
}

.index_our_services .index_service .service_cart h2 {
  color: #000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  font-size: 20px;
}

.index_our_services .index_service .common_btn {
  display: flex;
  justify-content: center;
}

.index_our_services .index_service .service_cart:hover {
  background: var(--brand-gradient);
}

.index_our_services .index_service .service_cart:hover h2 {
  color: #fff;
}

.form_btn {
  text-align: center;
  margin-top: 25px;
  transition: 0.3s ease-in-out all;
}

  .chatb {
    text-align: center;
    margin-top: 15px;


}

.animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}
.pulse {
  animation-name: pulse;
  animation-duration: 1s;
}
.chatb a{

background: var(--brand-gradient);
    color: white;
    padding: 13px 40px;
    border-radius: 30px;
    transition: 0.2s ease-in-out all;
    display: inline-block;


}

.form_btn a {
  background: var(--brand-gradient);
  color: white;
  padding: 13px 80px;
  border-radius: 30px;
  transition: 0.2s ease-in-out all;
  display: inline-block;
}

.form_btn a:hover {
  transform: scale(1.05) !important;
}

/* ======= Why Us Section =======  */
.Why_medi_tech {
  background: #000;
  padding: 50px 0;
}

.meditech_content {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.meditech_content h1 {
  font-size: 64px;
     background: linear-gradient(to left, #9f254a, #6c2c70, #ad223d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  font-weight: 600;
}

.meditech_content p {
  color: #eee;
  text-align: justify;
}

.meditech_lists h3 {
  color: #fff;

}

.meditech_lists p {
  color: #eee;
  font-weight: 100;
  text-align: justify;
}

/* ======= service_request_form ======= */


.service_form {
     padding: 25px 70px;
     background-image: url(../img/light-dotz.png);
       background-repeat: repeat;
  

}
/*.chairax{*/

/*  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
/*  border-radius: 10px;*/
/*   margin: 20px 30px 20px 30px;*/
/*}*/

/*.service_form {
  padding: 70px;
  background: url('../img/form_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}*/

/* .service_request_form{
  display: flex;
} */
.service_form h2 {
  text-align: center;
  font-size: 35px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service_form form {
  width: 100%;
  background-color: white;
  padding: 30px;
  margin: auto;
}

.service_form .input-group {
  margin: 15px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.service_form .form-group {
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  position: relative;
}

.service_form .input-group label {
  color: #000;
  font-size: 17px;
  margin-right: 25px;
  margin-bottom: 0 !important;

  margin-top: 5px;
}

.service_form .form-group label {
  color: #000;
  font-size: 17px;
  margin-right: 25px;
}

.service_form .input-group input {
  border: none;
  padding: 7px;
  margin-top: 5px;
  outline: none;
  color: #000;
  transition: 0.5s ease-in-out;
  border-bottom: 1px solid #c9c9c98a;
  flex-grow: 1;
      font-size: 16px;
    color:#6c757d;
    width: 100%;
}

.service_form .input-group input::placeholder {
  font-size: 16px;
  color: #6c757d;
}

.service_form .input-group select {
    border: none;
    padding: 0px 0px 7px 0px;
    margin-top: 5px;
    font-size: 16px;
    outline: none;
    color: #6c757d;
    transition: 0.5s ease-in-out;
    border-bottom: 1px solid #c9c9c98a;
    flex-grow: 1;

    font-weight: 400;
}

.service_form .input-group textarea {
  border: none;
  padding: 7px;
  margin-top: 5px;
  outline: none;
  color: #6c757d;
  transition: 0.5s ease-in-out;
  border-bottom: 1px solid #c9c9c98a;
}

.service_form .input-group input:focus~label,
.service_form.input-group input:valid~label {
  color: #000;
  font-size: 12px;
}

.service_form .input-group input:focus,
.service_form .input-group input:valid {
  border-bottom: 2px solid #656060;
}

.service_form .submit-section {
  text-align: center;
}

.service_form .submit-button {
  background-color: #8f2858;
  color: white;
  border: none;
  padding: 10px 50px;
  margin-top: 15px;
  border-radius: 5px;
  cursor: pointer;
}

.service_form .submit-button:hover {
  box-shadow: 0 3px 6px silver;
}

.service_form .form_img img {
  width: 500px;
  height: 600px;
}

.service_form .service_request_form textarea:focus {
  box-shadow: none !important;
}

.enqu{

  font-size: 26px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.axp{

color: #333;
    margin-bottom: 15px;
    padding-bottom: 0px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.axsoci a {
    font-size: 18px;
    display: inline-block;
      background: var(--brand-gradient);
    color: #eee;
    line-height: 40px;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}


.online_form {
  width: 100%;
  background-color: white;
  padding: 30px;
  margin: auto
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background: linear-gradient(to left, #b92034, #8f2858, #682d73);
  color: white;
  display: flex;
  justify-content: center;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #fff;
  width: 100%;
}

.online_btn {
  background-color: #8f2858;
  color: white;
  border: none;
  padding: 10px 0;
  margin-top: 15px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin: auto;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #b0213c;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #b0213c;
}

/* Style the tab content */
.tabcontent {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
}

.service_form_tab {
  height: 100%;
  width: 100%;
}

.form_img {

  flex: 4;
}

.service_form_tab {
  flex: 6;
  box-shadow: 0px -1px 20px 0px rgb(219 219 219);
}

.online_form a {
  text-align: center;
  color: #fff;
}

/* ========== WhatsApp ========= */
.whatsapp {
position: fixed;
    bottom: 100px;
    left: -50px;
    width: 180px;
    height: 40px;
    font-size: 28px;
    background: linear-gradient(to left, #0ca144, #0ca144, #0ca144);
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    offset-rotate: 270;
    -webkit-transform: rotate(
270deg
);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(
270deg
);
}

.whatsapp i {
  
  color: #fff;
  font-size: 26px;
  padding-right: 3px;
  offset-rotate: 0;
    -webkit-transform: rotate( 
0deg
 );
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate( 
0deg
 );
}
.whatsapp a {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  line-height: 23px;
      display: flex;
    justify-content: center;
    align-items: center;
}



/* =================================  ABOUT US PAGE ================================= */
.about_banner .abt_banner_img {
  height: 370px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1.1), rgba(0, 0, 0, 0.46));
  background-size: cover;
  position: relative;
}

.about_banner .about_banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  position: relative
}

.about_banner .about_banner_img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 30%), rgb(16 16 16 / 77%), rgb(0 0 0 / 91%));
}

.carousel-item::before {
  content: '';
  background: linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.4));
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.carousel__bg_img {
  width: 100%;
  height: 100vh;
  object-position: center;
  object-fit: cover;
}

.carousel-item.active .carousel__bg_img {
  animation: zoomInner 7.5s linear infinite alternate;
}

@keyframes zoomInner {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

.about_banner .about_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt_banner_img .abt_banner_img_heading {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.abt_banner_img_heading h1 {
  color: #fff;
  font-size: 44px;
  margin: 0;
  font-weight: 700;
}

.abt_banner_img_heading p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding-top: 10px;
  text-align: justify;
  display: flex;
  justify-content: center;
}

/* ************* About Us Main Banner *****************/
.about_us_main_banner {
  padding: 30px 0;
  position: relative;
  background-color: #f8f5f9;
}

.about_us_content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  content: "";
  background: url(../img/medtech_logo.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
      z-index: -1;
}

.about_us .about_us_content h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
}

.about_us .about_us_content p {
    color: #333;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 13px;
    font-weight: 300;
 

}

.about_us .about_us_images {
  height: 100%;
  width: 100%;
}

.about_us .about_us_images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.our_principle {
  padding: 30px 0;
  background: url('../img/right-bg.png');
  background-repeat: no-repeat;
  background-position: right;
}

.our_principle .our_principle_img {
  height: 100%;
  width: 100%;
}

.our_principle .our_principle_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.our_principle .our_principle_content h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
}

.our_principle .our_principle_content p {
    color: #333;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 0px;
    font-weight: 300;
}

.our_principle .our_principle_content_discription {
  width: 100%;
  height: 100%;
     padding: 20px 15px;
 box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  display: flex;
  flex-direction: column;

  align-items: flex-start;
  background: #fdfdfd;
  border-radius: 10px;
  text-align: left;
}

.message_section{

  padding: 20px 10px;

}

.our_principle_content_discription h4 {
  color: #000;
  text-align: left;
  padding-bottom: 5px;
  margin: 0;
  font-size: 22px;
}

/***************** About Us Mission Vision *****************/
/* mission */
.about_us_mission_vision {
  padding: 50px 0 0;
}

.about_us_mission_vision .about_mission_vision {
  min-height: 288px;
  padding: 16px;
  box-shadow: 0 3px 8px 2px #00000012;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
border-radius: 10px;
    border-bottom: 6px solid #b22139;
        background: var(--brand-gradient);

}
  .header-transparent .sti{

    display: none;
  }
  .header-transparent.header-scrolled .nor{

    display: none;
  }
   .header-transparent.header-scrolled .sti{

    display: block;
  }

.about_us_mission_vision .about_mission_vision:hover {
  box-shadow: 0 5px 10px 4px #00000012;

}

.about_us_mission_vision .about_mission_vision h2 {
  /*   background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  /* text-align: center;
  font-size: 23px;
  
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
  color: rgb(0, 0, 0); */
}

.about_us_mission_vision .about_mission_vision p {
    color: #fff;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 13px;
    font-weight: 300;

}
/*.serbut {
    transform: translateX(39px);
    background-color: #333;
    display: inline-block;
    position: relative;
  background: var(--brand-gradient);
    border-radius: 50px;
    background-color: #ad233f;
}*/
.about_us_mission_vision .about_mission_vision i {
  font-size: 53px;
  color: #fff;
}
.sub-titleax {
    text-align: center;
    font-size: 35px;

    color: #fff;
}

/***************** Our Client *****************/
.our_client {
  background-color: #000;
  padding: 50px;
}

.our_client .testimonail h3 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
}

.testimonial_swiper.swiper-container {
  width: 100%;
  height: 450px;
  background-color: #fdf3f31a;
}

.testimonial_swiper .swiper-slide .one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial_swiper .swiper-image img {
  width: 200px;
  height: 200px;
  clip-path: circle(50% at 50% 50%);
  position: relative;
  margin: 30px;
  object-fit: cover;
}

.testimonial_swiper .swiper-content {
  text-align: center;
}

.testimonial_swiper .swiper-content h6 {
  font-size: 15px;
  color: #fff;
  max-width: 600px;
  margin: auto;

  font-weight: 400;
  padding-bottom: 30px;
}

.swiper-container .swiper-button-next {
  color: #b1b1b1;
}

.swiper-container .swiper-button-prev {
  color: #b1b1b1;
}

.testimonial_swiper .swiper-image {
  width: 100%;
  text-align: center;
}


/***************** Join Us *****************/
.home_join_us {
  padding: 50px;
}

.home_join_us img {
     border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.home_join_us .join_us_btn a {

  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 15px 10px 10px;
  background: var(--brand-gradient);
  color: white;
}

.join_us_column {
 
  justify-content: center;
  align-items: center;
}

.join_us_content h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
}

.join_us_content p {
text-align: center;
    color: #333;
    font-size: 16px;

    margin-bottom: 10px;
}
.home_join_us{

background-image: url(../img/light-dotz.png);
}
.service_request_form {

  padding: 20px 20px;
}

.join_us_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}



.remodal {
  /*background-image: linear-gradient(to left, rgba(0, 0, 0, 67%), rgba(0, 0, 0, 75%)), url('../img/medical.jpg');*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.remodal-close:before {
  top: 20px;
  left: 20px;
  font-size: 40px;
  color: #fff;
}

.remodal h1 {

  color: #fff;
  text-align: center;
  font-size: 38px;
  padding: 20px 5px;
  max-width: 28ch;
  margin:
}

.remodal p {
    font-size: 18px;
    /* letter-spacing: 1px; */
    word-spacing: 1px;
    color: #fff;
    font-weight: 300;
    text-align: justify;
}

@media (max-width: 700px) {
  .healthcare_services .healthcare_services_content h2 {
    font-size: 17px;
  }

  .healthcare_services .healthcare_services_content i {
    font-size: 20px;
  }

  .healthcare_services .healthcare_services_content.active i {
    font-size: 20px;
  }

  .healthcare_services .service_content.active {
    background-size: cover;
    background-position: 0 0 !important;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.8s ease;
  }

  .healthcare_services .service_content.active {
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.8s ease;
  }

  .healthcare_services .service_content.active h2 {
    color: #fff;
    transform: translateX(0);
    font-size: 17px;
  }

  .healthcare_services .service_content.active i {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(0);
  }

  .healthcare_services .service_content.active::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    transition: all 0.8s ease;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.blog {
  padding: 70px 0 40px 0;
}

.certi{

display: flex;
    justify-content: center;
    gap: 35px;
    padding-left: 100px;
    padding-right: 100px;
}

.certi img {
box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.certi img{
    
  width:100%;  
    
}

.axrowc{

  margin-top: 75px;
  margin-bottom: 50px;
}

.blog .event_cart {
  margin-bottom: 60px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: white
}

.blog .event_cart .event_img {
  width: 100%;
  height: 250px;
  position: relative;
}

.blog .event_cart .event_img img {
  width: 100%;
  height: 100%;
}

.blog .event_cart h2 {
    margin: 0;
    padding: 15px 18px;
    font-size: 22px;
    text-align: left;
    color: #5b195b;
    font-weight: 400;
}

.blog .event_cart h2:hover {
  font-weight: 600;
}

.blog .event_cart .time-schedule {
    display: flex;
    justify-content: space-between;
    align-items: center;
     background: var(--brand-gradient);
    padding: 0 1rem;
    margin: 0 0rem;
    height: 2rem;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
}

.blog .event_cart .time-schedule i {
    font-size: 16px;
    color: #fff;
  
}

.blog .event_cart .events_content {
padding: 0px 20px 38px;
}

.blog .event_cart .events_content p {
color: #333;
    font-size: 16px;
    text-align: justify;
    word-break: break-word;
    font-weight: 400;
}
.blog .event_cart .events_content p:empty{
  display: none;
}

.blog .event_cart .events_content .event_btn {
  text-align: center;
}

.blog .event_cart .events_content .event_btn a {
    background: var(--brand-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
}

.event-sidebar {
  padding: 2rem 0;
  margin: 70px 0 40px 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: auto;
  background-image: url(../img/light-dotz.png);
}
.event-sidebar .sub-title {
  padding-bottom: 1rem;
    border-bottom: 1px solid rgba(233, 212, 212, 0.438);
    font-size: 20px;

}
.event-cat-btn{
  margin-top: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px 40px;
}
.event-sidebar-mob .sub-title{
  font-size: 18px;
  margin-top: 1rem;
}
.event-sidebar-mob{
  padding: 2rem 0;
  margin: 0px 0 40px 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: auto;
  background-image: url(../img/light-dotz.png);
}

.event-list{
  padding: 0;
}
.event-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(233, 212, 212, 0.438);
    height: 2rem;
    gap: 1rem;
    padding: 1.5rem;
    color: var(--brand-color_2);
}
.event-list li:hover{
  /* background: rgb(161, 161, 161); */
  color: #000;
}
.event-list li:hover i{
  transition: .2s ease-in-out;
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -ms-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
}
.event-list li p{
  margin: 0;
}
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
#contact {
  padding: 50px 0;
}

.contact_banner .abt_banner_img {
  height: 300px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1.1), rgba(0, 0, 0, 0.46)), url('../img/1.jpg');
  background-size: cover;
  position: relative;
}

.contact_banner_img .contact_banner_img_heading {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact_detail h1 {
  color: #000;
  font-size: 40px;
  margin: 20px 20px 20px 0;
  text-align: left;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact_cart .contact_icon i {
  color: #5b195b;
  font-size: 30px;
}
.axflex{

display: flex;
    flex-direction: row;
    gap: 10px;
}


.contact_cart h1 {
  color: #000;
  font-size: 25px;
  text-align: center;
}

.contact_cart p {
  color: #000;
}

.map_form_cart {
 
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin: 10px 0 20px;
  border-radius: 10px;
}

.social_links {
  display: inline-flex;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 20px 10px;
  display: inline-flex;
  flex-direction: column;
}

.social_links i {
  font-size: 30px;
}

.contact_map .form_cart {
  background-color: white;
  padding: 30px;
  margin: auto;
  
}

.contact_map .form_cart input {
  border: none;
  padding: 7px;
  margin-top: 20px;
  outline: none;
  color: #000;
  transition: 0.5s ease-in-out;
  border-bottom: 1px solid #c9c9c98a;
  flex-grow: 1;
  font-size: 14px;
}

.contact_map .form_cart textarea {
  border: none;
  padding: 7px;
  margin-top: 20px;
  outline: none;
  color: #000;
  transition: 0.5s ease-in-out;
  border-bottom: 1px solid #c9c9c98a;
  font-size: 14px;
}

.contact_map .form_cart .contact_form_btn a {

  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 30px 10px 10px;
  background: var(--brand-gradient);
  color: white;
}

.contact_map .contact_form_btn {
  text-align: center;
}

.map_cart {
  width: 100%;
  overflow: hidden;
}

.map_cart iframe {
  width: 100%;
}

/*------------------------------------------------------------ SUPPORT ------------------------------------------------------------*/
.support_page {
  padding: 70px 0;
}

.support_page h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
  padding-bottom: 20px;
}

.support_page .support_img img {
  border-radius: 10px;
}

.support_content_column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support_page .support_content p {
color: #333;
    text-align: justify;
    font-size: 18px;
    font-weight: 300;

}

/*------------------------------------------------------------ CAREER ------------------------------------------------------------*/
.career_page {
  padding: 70px 0 0;
}

.career_page .career_heading {
  /* padding-bottom: 50px; */
}

.career_page .career_heading h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
  padding-bottom: 20px;
}

.career_page .career_heading p {
  color: #333;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}

.career_page .career_cart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.career_page .career_cart h2 {
  /* background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 40px; */
}

.career_page .career_cart .career_img_cart {
  width: 100%;
  height: 250px;
}

.career_page .career_cart .career_img_cart img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

.career_page .career_cart p {
  color: #333;
  text-align: justify;
  font-size: 18px;
  font-weight: 300;

}

.career_page .career_vacancy {
  padding: 40px 0 0 0;
  margin-bottom: 5rem;
}

.career_page .career_vacancy h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 45px;
  padding-bottom: 20px;
}

.career_page .career_vacancy p {
    color: #333 !important;
    text-align: center;
    font-size: 18px;
}

.career_page .career_vacancy {}

.shape-animation .shape-part {
  position: absolute;
  left: -50px;
  bottom: 150px;
}

.shape-animation {
  position: relative;
}

.shape-animation .shape-process {
  position: absolute;
  left: -100px;
  width: 100px;
  bottom: 150px;
}

.shape-animation .shape-process img {
  position: absolute;
  width: 200px;

}

.dance2 {

  -webkit-animation: dance2 4s alternate infinite;
}

@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
  }
}

.apply-btn {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: fit-content;
  padding: 10px 40px;
  font-size: 16px;
}

.apply-btn:hover {
  /* color: #ffffff; */
  /* background: var(--brand-gradient); */

  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);

}

/* job career */

.job_box-column .job_box {
  background: white;
  padding: 1.7rem 1.7rem 2rem 1.7rem;
  box-shadow: 0 1px 18px 0 rgb(0 0 0 / 11%);
  transition: all .3s ease-in-out;
  margin: 2rem 0 0 0;
  border-radius: 1 rem;
  text-align: center;
  border: none;
  border-bottom: 8px solid #3e3ec6;
  border-radius: 10px;
  border-image: var(--brand-gradient);
  border-image-slice: 1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.job_box-column .job_box .card-header {
  text-align: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}

.job_box-column .job_box .card-header h3 {
  font-size: 22px;
  width: fit-content;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  border-bottom: 2px solid;
  padding-bottom: .5rem;
}

.job-des-list {
  padding: 0;
  display: flex;
  flex-direction: column;

}

.job_box-column .card .card-body {
  padding: 0px;
}

.job-des-list li {
  display: flex;
  flex-direction: row;
  flex: auto;
  text-align: center;
}

.job-des-list li h5 {
  width: 120px;
  text-align: left;
  font-size: 16px;
  color: #333;
}

.job-des-list li p {
  margin: 0;
  color: #9fa1a4 !important;

}

.career_vacancy {
  background-image: url(../img/light-dotz.png);
}

/* job career end */

/************** Home page responsive **************/
/*for tab*/
@media (min-width: 768px) and (max-width: 992px) {

  /* our principles */
  .mission_vision .m_v_cart {
    margin-bottom: 20px;
  }

  /* Why Us Section */
  .meditech_content h1 {
    font-size: 45px;
  }

  .meditech_content p {
    color: #fff;
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 1px;
    line-height: 24px;
  }

  .meditech_lists h3 {
    font-size: 25px;
  }

  .meditech_lists p {
    font-size: 14px;
  }

  .home_join_us {
    padding: 50px 0 0;
  }

  .healthcare_services .service_content:nth-child(5) {
    background-position: -367px 0;
  }

  .healthcare_services .service_content:nth-child(8) {
    background-position: -340px 0;
  }
}


/*for mobile*/
@media (max-width: 767px) {

  .certih{

    color: #fff;
     text-align: center;
     margin-bottom: 0px;
     font-size: 25px;
  }

    .iso img{
width: 100%;
    background-color: #fff;
    border-radius: 10px;
}
    
    .certi {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-left: 70px;
    padding-right: 70px;
    flex: 1;
 
    flex-direction: column;
}

  /* our principles */
  .mission_vision .m_v_cart {
    margin-bottom: 20px;
    box-shadow: 2px 14px 10px #d9d9d9, 7px -12px 10px #ffffff;
    margin: 20px 10px 0;
  }

  .index_our_services .m_v_cart h2 {
    background: var(--brand-gradient);
    color: #fff;
  }

  .counts .row [class^='col-'] .count-box {
    margin-bottom: 40px;
  }

  .counts .count-box p {
    font-size: 2ch;
    margin-bottom: 20px;
  }

  .counts .count-box span {
    font-size: 25px;
    padding-top: 10px;
  }

  /* Why Us Section */
  .meditech_content {
    padding: 0;
  }

  .meditech_content h1 {
    font-size: 40px;
  }

  .meditech_content p {
    font-size: 14px;
  }

  .meditech_lists h3 {
    font-size: 25px;
  }

  .meditech_lists p {
    font-size: 15px;
  }

  .service_form {
    padding: 10px;
  }

  .service_request_form {
    width: 100%;
  }

  .service_form .input-group input {
    flex-grow: 0;
    padding: 0;
  }

  .service_form form {
    padding: 10px 30px;
  }

  .service_form .input-group label {
    font-size: 16px;
  }

  .service_form .form-group label {
    font-size: 16px;
  }

  .service_form .input-group input::placeholder {
    font-size: 14px;
  }

  .service_form .form-group {
    margin: 25px auto;
  }

  .service_form .submit-button {
    padding: 10px 0;
    margin-top: 15px;
  }

  .form_btn {
    margin: 20px 0;
  }

  .form_btn a {
    font-size: 17px;
    font-weight: 500;
  }

  .home_join_us {
    padding: 50px 0 0px;
  }

  .healthcare_services .service_content:nth-child(5) {
    background-position: -357px 0;
  }

  .healthcare_services .service_content:nth-child(8) {
    background-position: -338px 0;
  }
}


/**************  Our Story responsive **************/
/*for tab*/
@media (min-width: 768px) and (max-width: 992px) {
  .about_us .about_us_content p {
    margin-bottom: 10px;
  }

  .about_us .about_us_images img {
    height: 300px;
  }

  .about_us_mission_vision {
    padding: 30px 0 0;
  }

  .counts {
    padding-bottom: 50px;
  }

  .abt_banner_img_heading h1 {
    font-size: 50px;
  }

  .abt_banner_img_heading p {
    font-size: 12px;
  }

  .mobile-nav-toggle {
    top: 35px;
  }

  .our_principle .our_principle_img img {
    margin: 25px 0;
  }
}

/*for mobile*/
@media (max-width: 767px) {
  .about_us .about_us_content p {
    font-size: 16px;
  }

  .abt_banner_img_heading h1 {
    font-size: 28px;
  }

  .abt_banner_img_heading p {
    font-size: 12px;
  }

  #header .logo img {
    max-width: 170px;
  }

  .mobile-nav-toggle {
    top: 16px;
  }
}


/**************  Events responsive **************/
/*for tab*/
@media (min-width: 768px) and (max-width: 992px) {
  .blog .event_cart h2 {
    padding: 10px 5px;
  }

  .blog .event_cart .events_content p {
    font-size: 14px;
  }

  .blog .event_cart .time-schedule i {
    font-size: 16px;
  }

  .blog .event_cart .events_content .event_btn a {
    font-size: 13px;
  }
}

/*for mobile*/
@media (max-width: 767px) {
  .blog .event_cart h2 {
    padding: 10px 5px;
  }
  .event-cat-btn{

        width: 100%;
    margin-bottom: 10px;
  }
  .remodal p {
    font-size: 16px;
 
    word-spacing: 1px;
    color: #fff;
    font-weight: 300;
    text-align: justify;
}
.remodal h1 {
    color: #fff;
    text-align: center;
    font-size: 26px;
    padding: 10px 5px;
    max-width: 28ch;
    margin: 0px;
}
.remodal-close:before {
    top: 10px;
    left: 10px;
    font-size: 40px;
    color: #fff;
}

  .blog .event_cart .events_content {
    padding: 0px 15px 30px;
}
.support_page .support_content p {
    color: #333;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
}
.healthcare_services .service_content {
    background-color: #fff !important;
    background-clip: border-box;
    border: none;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 5%), 0px 4px 8px rgb(0 0 0 / 15%);
    justify-content: center;
    overflow: hidden;
    text-align: center;
    width: 100%;
     max-width: 100% !important; 
    min-height: 129px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}

  .blog .event_cart .events_content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .blog .event_cart .time-schedule i {
    font-size: 14px;
  }

  .blog .event_cart .events_content .event_btn a {
    font-size: 12px;
  }

  .blog .event_cart {
    margin: 0px 0px 20px 0px;
  }
  .blog .event_cart .event_img {
    width: 100%;
    height: 200px;
    position: relative;
}
}


/**************  career responsive **************/
/*for tab*/
@media (min-width: 768px) and (max-width: 992px) {
  .career_page {
    padding: 30px 0 0;
  }

  .career_page .career_cart {
    margin-bottom: 10px;
  }

  .career_page .career_vacancy {
    padding: 0;
  }
}

/*for mobile*/
@media (max-width: 767px) {
  .career_page {
    padding: 30px 0 0;
  }

  .career_page .career_heading h1 {
    font-size: 40px;
  }

  .career_page .career_heading p {
    font-size: 16px;
    text-align: justify;
    padding: 0 5px;
  }

  .career_page .career_heading h1 {
    padding-bottom: 0;
  }

  .career_page .career_heading {
    padding-bottom: 10px;
  }

  .career_page .career_cart p {
    font-size: 16px;
    padding-bottom: 0;
    text-align: justify;
    padding: 0 5px;
  }

  .career_page .career_vacancy p {
    font-size: 16px;
    text-align: justify;
    padding: 0 5px;
    margin-bottom: 0px;
  }

  .career_page .career_cart {
    margin-bottom: 10px;
  }

  .career_page .career_vacancy {
    padding: 0;
  }

  .career_page .career_vacancy h1 {
    padding-bottom: 5px;
  }

  .career_page .career_cart .career_img_cart {
    margin-bottom: 20px;
  }
}

/**************  career responsive **************/
/*for tab*/
@media (min-width: 768px) and (max-width: 992px) {
  #contact .contact_cart {
    margin-bottom: 20px;
  }
}

/*for mobile*/
@media (max-width: 767px) {
  #contact .contact_cart {
    margin-bottom: 20px;
  }

  #contact .contact_cart {
    height: 250px;
  }

  #contact .contact_cart {
    margin-bottom: 20px;
  }
}

/**************  contact responsive **************/
/*for tab*/
@media (min-width: 768px) and (max-width: 992px) {
  .map_form_cart {
    flex-wrap: wrap;
  }

  .map_cart {
    width: 690px;
    overflow: hidden;
  }

  .map_cart iframe {
    width: 100%;
  }

  .contact_map .form_cart input {
    font-size: 16px;
  }

  .contact_map .form_cart textarea {
    font-size: 16px;
  }

  .contact_map .form_cart {
    width: 500px;
  }

  .healthcare_services .service_content {
    max-width: calc(100% / 2 - 50px);
  }

  .healthcare_services .row .service_content:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .healthcare_services .row .service_content:not(:nth-child(2n)) {
    margin-right: 40px;
  }

  .remodal {
    position: absolute;
    top: 150px;
    left: 35px;
  }

  .support_page {
    padding: 70px 0 0;
  }

  .chairman_photo_bg {
    right: -343px;
  }

  .contact_detail h1 {
    font-size: 35px;
  }

  .contact_cart p {
    font-size: 15px;
    text-align: center;
  }

  .about_us_mission_vision .about_mission_vision i {
    font-size: 70px;
  }

  .about_us_mission_vision .about_mission_vision h1 {
    font-size: 40px;
  }

  .about_us_mission_vision .about_mission_vision p {
    font-size: 17px;
  }

  #contact {
    padding: 15px 0;
  }

  .contact_map .contact_detail .contact_cart {
    padding: 0 70px;
  }
}


/*for mobile*/
@media (max-width: 767px) {
  .social_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }

  .map_form_cart {
    flex-wrap: wrap;
  }

  .social_links i {
    padding: 25px;
  }

.contact_map .form_cart {
    padding: 20px 20px 20px;
    margin-top: 35px;
}

  .healthcare_services .service_content {
    max-width: calc(100%);
  }

  .healthcare_services .row .service_content,
  .healthcare_services .row .service_content {
    margin: 10px 30px !important;
  }

  .support_page .support_content p {
    padding: 0;
    margin: 5px 0 0 0;
  }

  .support_content_column {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .support_page {
    padding: 50px 0 0;
  }

  .service_form h2 {
    margin: 20px 0;
  }

  .join_us_content h1 {
    margin-top: 20px;
  }

  .chairman_section {
    padding: 30px 0;
  }

  .our_principle .our_principle_img img {
    margin-top: 0px;
  }

  .about_us_mission_vision .about_mission_vision i {
    font-size: 60px;
  }

  .about_us_mission_vision .about_mission_vision h1 {
    font-size: 40px;
  }

  .about_us_mission_vision .about_mission_vision p {
    font-size: 16px;
  }

  .about_us_mission_vision {
    padding: 50px 0 0;
  }

  .healthcare_services .our_services_heading h1 {
    padding-bottom: 0;
  }

  #contact {
    padding: 10px 0;
  }

  .contact_map .contact_detail .contact_cart {
    padding: 0 10px;
  }

  #intro h1 {
    max-width: 100%;
  }




}


.cls-2 {
  clip-path: url(#clip-path);
}

.cls-3 {
  clip-path: url(#clip-path-2);
}

.cls-4 {
  clip-path: url(#clip-path-3);
}

.cls-5 {
  clip-path: url(#clip-path-4);
}

.cls-6 {
  clip-path: url(#clip-path-5);
}

.cls-7 {
  clip-path: url(#clip-path-6);
}

.cls-8 {
  clip-path: url(#clip-path-7);
}

.cls-9 {
  clip-path: url(#clip-path-8);
}



/*============= PRELOADER =============*/
/*============= PRELOADER =============*/
.preloader__new {
  min-height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999999999999;
}

.preloader__img svg {
  text-align: center;
  max-width: 165px;
  height: auto;
  animation: zoomOutIn 1s ease-in-out infinite alternate;
}

.preloader__img h3 {
  font-size: 1.1em;
  text-align: center;

  margin-top: 1em;
  color: #626262;
}

@keyframes zoomOutIn {
  to {
    transform: scale(1);
  }

  from {
    transform: scale(1.05);
  }
}


@media (max-width: 767px) {
  .preloader__img svg {
    max-width: 130px;
  }

  .preloader__img {
    margin-bottom: 60px;
  }

}

.portfolio {
  padding: 55px 0 !important;
}



.project_detail {
  padding: 50px 0;
}

.project_detail .project_details h1 {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 50px;
  padding-bottom: 20px;
}

/************** Project Detail Page **************/
.project_detail .project_details p {
  font-weight: 400;
  color: #000;
  line-height: 25px;
  font-size: 16px;

}

.project_detail .project_detail_img {
  height: 250px;
  width: 100%;
}

.project_detail .project_detail_img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1299px)
{
.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
}
}
/*for mobile*/
@media (max-width: 767px) {

  .project_detail .row [class*="lg-3"]:not(:first-child) .project_detail_img img {
    display: block;
    margin-top: 20px;
  }

}

/************** Event Detail Page **************/
.events_details {
  padding-top: 50px;
}

.events_details .event_cart {
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: white
}

.events_details .event_cart .event_img {
  width: 100%;
  position: relative;

}

.events_details .event_cart .event_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events_details .event_cart h2 {
    padding: 15px 20px 10px 20px;
    font-size: 22px;
    text-align: left;
    color: #5b195b;
    margin-bottom: 0px;
}

.events_details .event_cart h2:hover {
  font-weight: 600;
}

.events_details .event_cart .time-schedule {
    display: flex;
    
    position: absolute;
    bottom: 0;
  background: var(--brand-gradient);
    padding: 10px 15px;
    color: #fff;
}

.events_details .event_cart .time-schedule i {
  font-size: 17px;
  color: #000000cc;
  padding-bottom: 10px;
}

.events_details .event_cart .events_content {
  padding: 10px 10px 25px;
}

.events_details .event_cart .events_content p {
    color: #333;
    font-size: 16px;
    text-align: left;
    padding: 0px 20px;
    margin: 0px;
}

.events_details .event_cart .events_content .event_btn {
  text-align: right;
}

.events_details .event_cart .events_content .event_btn a {
  background: var(--brand-gradient);
  color: white;
  padding: 10px 10px;
  border-radius: 30px;
  font-size: 13px;
}

.contact_detail .contact_cart p:first-child {
  max-width: 33ch;
}

.contact_detail {
  max-width: 400px;
  width: 100%;
}


/**********************/
.index_our_services .service_cart .service_cart_img {
  height: 235px;
  width: 100%;
}

.index_our_services .service_cart .service_cart_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.index_our_services {
  background: url('../img/left-bg.png');
  background-repeat: no-repeat;
  background-position: left;
}