/**
* Template Name: Medicio - v4.1.0
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body { 
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #3fbbc0;
  text-decoration: none;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

h1, h3, h3, h4, h5, h6 {
  font-family: "Roboto", 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 #3fbbc0;
  border-top-color: #ecf8f9;
  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);
  }
}

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

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

.back-to-top:hover {
  background: #5ec6ca;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  /*background: #fff;*/
  color: #000;
  height: 30px;
  font-size: 13px;
  font-weight: 500;
  z-index: 996;
  transition: all 0.2s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.2s;
  z-index: 997;
  padding: 20px 0;
  top: 40px;
  background: #e5e5e5;
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
  position: fixed;
  right: 0;
  left: 0;
}

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

#header .logo a {
  color: #555555;
}

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

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

.appointment-btn:hover {
  background: #65c9cd;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**

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


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

.navbar li {
  position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 18px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #3fbbc0;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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: #3fbbc0;
}

.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: #555555;
  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(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

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

.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: #3fbbc0;
}

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

/*About*/
.blogg-img img{height: auto;width: 100%;max-height:235px;}





/*crousel*/

.carousel-item img{height: auto:;width:auto;}
.carousel-caption{bottom: 100px;}
.carousel-caption h5{;font-size: 60px;font-weight: bold;}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

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

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  /*align-items: flex-end;*/
}

#hero .container {
  text-align: center;
  background: none;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

#hero p {
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: #b0c5db(63, 187, 192, 0.8);
  border-radius: 50px;
  transition: 0.3s;
  color:#b0c5db(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: #3fbbc0;
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #3fbbc0;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #adb5bd;
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

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

@media (max-width: 768px) {
  #hero h3 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  
}

/*--image section--*/
.mt{margin-top: 30px}


body{width:100%; float:left; ; position:relative; background: #fff;}


a{color:#464646; cursor:pointer; text-decoration:none; font:400 14px 'PT Sans', sans-serif; }
a:hover{color:#464646; text-decoration:none;}

/*  Header styles */
h1,h3,h3,h4,h5,h6{margin:0; width:100%; float:left;}
h1{font:700 48px/48px 'PT Sans', sans-serif; color: #fee801; margin-bottom:14px;}
h3{font:700 48px/48px 'PT Sans', sans-serif; color: #ab1d1d;}
h3{font:700 30px/30px 'PT Sans', sans-serif; color: #32886f;}
h4{font:700 24px/25px 'PT Sans', sans-serif; color: #464646; }
h5{font-size:20px;}
h6{font:300 15px 'PT Sans', sans-serif; color: #a3a3a3;}

.row_m{margin: 0 15px;}
.padL{padding-left: 0;}
.padR{padding-right: 0;}

section {
  
}




section{width:100%;  position:relative; }
footer{width:100%; float:left; position:relative; }

.wrapper{width:100%; float:left; position:relative; }
.wid50{width:50%; float:left; position:relative; }




.ml20{margin-left: 20px;}
.ml60{margin-left: 60px;}

.ImgDiv img{width: 100%;}

.comn_pad{padding: 50px 0;}
.banner_div{width:100%; float: left; position: relative;}
.banner_div img{width:100%;;}

/*Page Loader*/
.loader {position: fixed;left: 0px;top: 0px;width: 100%;height: 100%;z-index: 9999;
  background: url('../images/mepco-logo.jpg') 50% 50% no-repeat rgb(255,255,255);}

/*-------------To Top-------------*/
.backTop { position: fixed; bottom: 52px;right: 20px;z-index: 999;}
.backTop a { width: 28px;height: 28px;padding: 18px;display: block;  background: #fee801;position: relative;
  -webkit-transition: 1s; -moz-transition: 1s; transition: 1s; -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg); -ms-transform: rotate(270deg); -o-transform: rotate(270deg); }
.backTop a span{display: block;bottom: 0;width: 12px;height: 12px; left: 0;right:-3px; margin: auto;
  font: normal normal normal 14px/1 FontAwesome; text-rendering: auto;font-size: 26px; color: #059b9a;position: absolute;
  top:-14px;left: 0;  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale;}
.backTop a span:after {content: "\f105";}
.backTop a:hover span{right:-6px}

/*Header*/
.logo_div{width: 100%; float: left; background: #fff; padding: 10px 0;}
.logo{float: left;}
.lg_left{margin:10px 0 0 20px;}
.mepTxt{width: auto; float: left; margin: 26px 0 0 20%; font:700 26px/16px 'PT Sans', sans-serif; color: #2f2f2f; text-align: center;}
.mepTxt span{font-size: 14px; font-weight: 400; color: #7c7c7c;}

.







.pageNav li a:hover{color: #4baf80;}

/*Home*/
.aacWhyBg{background: #91BBC9; padding: 40px 0; height: 465px;}
.aacAppBg{background: #B2D0D8; padding: 40px 0; height:460px;}
.aacAdvBg{background: #2C3F50; padding: 92px 0; height: 926px;}
.aacDiv_left{width: 350px; float: right; margin-right: 34%;}
.aacDiv_right{width: 350px; float: left; margin-left: 34%;}
.aacText p{font:400 18px 'PT Sans', sans-serif; color: #fff;}
.km_div{width: 120px; margin: 0 auto;}
.kMore{width: 120px; float: left; font:400 18px 'PT Sans', sans-serif; color: #fee801; padding: 8px 0;
text-align: center; border:#fee801 1px solid;}
.kMore:hover{color: #fff; border-color:#fff;}
.kMoreBlk{width: 120px; float: left; font:400 18px 'PT Sans', sans-serif; color: #000; padding: 8px 0;
text-align: center; border:#000 1px solid;}
.kMoreBlk:hover{color: #059b9a; border-color:#059b9a;}
.kMoreWht{width: 120px; float: left; font:400 18px 'PT Sans', sans-serif; color: #fff;  padding: 8px 0;
text-align: center; border:#fff 1px solid;}
.kMoreWht:hover{color: #fee801; border-color:#fee801;}
.downLoad{width: 180px; float: left; margin-left: 30px; text-align: center; padding: 8px 0; border-radius: 5px; font:400 18px 'PT Sans', sans-serif; color: #000; background: #ffd05b;}
 .downLoad:hover{background: #059b9a; color: #fff;}
.appList{width: 100%; float: left;}
.appList li{width: 100%; float: left; position: relative; padding-left: 20px; font:400 18px/25px 'PT Sans', sans-serif; color: #fff;}
.appList li::before{width: 13px; height: 11px; content: ""; position: absolute; top: 8px; left: 0; background: url('../images/sprite.png') -44px -12px no-repeat;}
.advDiv{width: 100%; float: left; padding-left: 90px; position: relative; margin-bottom: 30px;}

.advDiv h3{font:400 24px/28px 'PT Sans',
 sans-serif; color: #fff;padding-top: 10px}
 .ican-redeus{clip: yellow;margin-top: 10px;width:100%;

 }

.advDiv p{font:400 18px/25px 'PT Sans', sans-serif; color: #fff;}
.advIcon{width: 70px; height: 70px; position: absolute; top: 0; left: 0;background: url('../images/sprite.png')  no-repeat;}
.lwIcon{background-position: -1px -44px;}
.ceIcon{background-position: -77px -44px;}
.frIcon{background-position: -156px -44px;}
.bsiIcon{background-position: -233px -43px;}
.aisIcon{background-position: 0px -244px;}
.fastIcon{background-position: -72px -244px;}
.energyIcon{background-position: -144px -244px;}
.longIcon{background-position: -216px -244px;}
.waterIcon{background-position: -288px -244px;}
.bearthIcon{background-position: -360px -244px;}
.envIcon{background-position: 0px -318px;}
.normsIcon{background-position: -72px -318px;}
.insuIcon{background-position: -144px -318px;}
.workIcon{background-position: -216px -318px;}

.aacImg_div{width: 450px; margin: 0 auto;}
.accImg{width: 100%; float: left; margin-top: -575px; position: relative;}
.pro_div{width: 265px; float: left;}
.hmMep{background: #ecf3f1;}
.abt_mep{width: 375px; float: right; padding:50px 0; margin-right: 30%;}
.mepcrete{background: url('../images/about-mep.jpg')no-repeat;width: 100%;min-height: 400px;  background-size: cover;}
.mep_infra{width: 375px; float: right; padding:50px 0; margin-right: 22%;}
.hm_infra{background: url('../images/infrastructure.jpg')no-repeat;width: 100%;min-height: 400px;  background-size: cover;}
.mep_quality{width: 430px; float: left; padding:50px 0; margin-left: 10%;}
.hm_quality{background: url('../images/quality-policy.jpg')no-repeat;width: 100%;min-height: 400px;  background-size: cover;}
.aacStamp{width: 185px; margin: 0 auto;}
.aacStamp_img{width: 100%; float: left; margin-top: -265px; position: relative;}
.mep_block{width: 370px; float: right; margin: -110px 20px 0 0;}
.mep_pannel{width:280px; float: right; margin-top: 63px;}
.hmServicebg{background: #059b9a; padding: 50px 0;}
.hmServicebg h3{font:400 30px/30px 'PT Sans', sans-serif; color: #fee801; margin: 15px 0;}
.hmServicebg p{font:400 18px 'PT Sans', sans-serif; color: #fff; padding: 0 8%; margin-bottom: 25px;}
.servicePara p{padding: 0 !important;}
.serIcon_div{width: 70px; margin: 0 auto;}
.ser_icon{width: 70px; height: 70px; float: left; background: url('../images/sprite.png') no-repeat;}
.onSite{background-position: -1px -121px;}
.estimate{background-position: -77px -121px;}
.masons{background-position: -156px -121px;}
.analysis{background-position: -233px -121px;}


/*..........Why Conecc/Us image.......*/
.buttom{margin-bottom: 40px; padding: 40px 0;}
.texr-g1{margin-top: 30px}
.ican-light i{margin-top: 30px}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

#hero {
  padding: 0!important;
 
}

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

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

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

.section-title h3 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #212121;
}

.section-title h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00348d;
  bottom: 0;
  left: calc(50% - 25px);
}

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

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

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

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

@media (max-width: 992px) {
  .breadcrumbs h3 {
    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;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: linear-gradient(to bottom, #33ccff 0%, #015feba1 100%);
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3fbbc0;
  transition: all 0.3s ease-in-out;
}

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

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

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #3fbbc0;
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #3fbbc0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3fbbc0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

h4.title {
  text-align: center;
}

.icon {
  text-align: center;
}

.icon i{/*margin-left:90px*/}

.count-box h5{padding-top:15px;
padding-bottom:15px;}
 /*!-- ====== call us section ======= --*/

 .buttom{margin-bottom: 30px}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #00348d;
  /*float: left;*/
  /*margin-left: 80px;*/
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  /*display: block;*/
  font-weight: 700;
  color: #555555;
  margin-left: 0px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #3fbbc0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #3fbbc0;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #3fbbc0;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #3fbbc0;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #3fbbc0;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

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

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

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

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

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

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

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #3fbbc0;
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
  background: #3fbbc0;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background: #52c2c6;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #fff;
  cursor: pointer;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #3fbbc0;
}

.departments .nav-link.active {
  background: #f7fcfc;
  border-color: #3fbbc0;
}

.departments .nav-link.active h4 {
  color: #3fbbc0;
}

.departments .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3fbbc0;
}

.departments .tab-pane p {
  color: #777777;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 220px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

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

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

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #b2e4e6;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials {
    background: #f3f3f3;
}
.testimonials .testimonial-item p {
    box-shadow: 0 2px 20px #00000021;
    font-style: italic;
    margin: 11px 15px 9px 15px;
    padding: 20px 20px 60px 20px;
    background: #f5f5f5;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3fbbc0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3fbbc0;
}
.container.buttom marquee {
    margin-top: 29px;
    margin-bottom: -28px;
}
/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a i {
  line-height: 0;
}

.doctors .member .social a:hover {
  color: #3fbbc0;
}

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

.doctors .member .member-info {
  padding: 25px 15px;
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
}

.doctors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.doctors .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3fbbc0;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3fbbc0;
}

.gallery .swiper-slide-active {
  text-align: center;
}

.swiper-slide {
   
    height: auto!important;
    display: flex!important;
    align-items: stretch!important;
}

.testimonials .testimonial-item {
   
    display: flex!important;
    align-items: stretch!important;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }
  .gallery .swiper-slide-active {
    border: 6px solid #3fbbc0;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #3fbbc0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #3fbbc0;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #3fbbc0;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #65c9cd;
}

.pricing .featured h3 {
  color: #fff;
  background: #3fbbc0;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #3fbbc0;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d9f1f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #3fbbc0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #32969a;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #3fbbc0;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #3fbbc0;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

.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 {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #3fbbc0;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #3fbbc0;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

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

.mt-3 {
  margin-top: 0px;
  margin-bottom: 12px;
}

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

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

/*--------------------------------------------------------------
# coll us
--------------------------------------------------------------*/

.coll-text h3{color: black;font-size: 18px;text-align: center;
  }
.link-1 li{list-style: none;}
.link-1 a{list-style: none;text-align: center;color: #17d5d4 }

.link-1{;text-align: center;}
.w{width: 70px;padding: 2px;color: #17d5d4 }


#footer {
  background: #eeeeee;
 
  color: #555555;
  font-size: 14px;
}

#footer .footer-top {
  background: #e5e5e5;
  /*background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);*/
  padding: 45px 0 7px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-links ul a {
    color: #000;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
 font-weight: 500;
    font-family: "Roboto", sans-serif!important;
}

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

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

#footer .footer-top .social-links a:hover {
  color:#fff;
  text-decoration: none;
}
#footer .footer-top .social-links a.facebook:hover{
    background:	#4267B2;
}
#footer .footer-top .social-links a.instagram:hover{
   background: rgb(96,71,200);
    background: linear-gradient(170deg, rgba(96,71,200,1) 0%, rgba(188,42,166,1) 56%, rgba(224,41,113,1) 78%, rgba(254,215,112,1) 100%);
}
#footer .footer-top .social-links a.Youtube:hover{
    background:	#FF0000;
}
#footer .footer-top .social-links a.linkedin:hover{
    background:	#0077b5;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  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: #3fbbc0;
  font-size: 18px;
  line-height: 1;
}

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

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

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

#footer .footer-top .footer-links ul a:hover {
  color: #3fbbc0;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

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

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

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #65c9cd;
}

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

#footer .credits {
  padding: 20px 0;
    text-align: center;
    font-size: 14px;
    float: right;
    color: #000;
    font-weight: 600;
}



























/*About us css*/

@font-face {
    font-family:'Crimson-BoldItalic';
    src:url('../fonts/CrimsonText-BoldItalic.ttf');
}
/* Add here all your CSS customizations */
a:hover{
    text-decoration: none!important;
}

}

.
/*---25-07----*/
.secondary-banner .container-fluid{
  padding-left: 0!important;
  padding-right: 0!important;
}
.secondary-banner .banner-div{
  width: 100%;
  text-align: center;
  position: relative;
}
.secondary-banner .banner-div img{
  width: 100%;
  max-height: 200px;
  position: relative;
}
.secondary-banner .banner-content-box{
  position: absolute;
}
#secondary-banner{
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
}
#secondary-banner .page-header{
  background: rgba(0, 0, 0, 0.5);
    padding: 55px 0px;
    border-bottom: 0;
    border-top: 0;
    min-height: 200px;
}
#secondary-banner .page-header h1{
  border-bottom: 0; 
    border-left: 5px solid #CCC;
    padding: 28px 15px;
}
#secondary-banner  .page-header .breadcrumb{
  padding:30px 0px;
  color: #fff
}
#secondary-banner .breadcrumb a{
  color: #fff;
}
.a-content:hover, .a-content:focus{
  text-decoration: none;
}
.a-content:hover .heading-content, .a-content:focus .heading-content{
  padding-left: 10px;
}
.heading-content p{
  margin: 0;
}
.a-content .heading-color{
  margin: 0;
    font-weight: 600;
    color: #000;
    font-size: 15px;
}
.a-content:hover .heading-color,.a-content:focus .heading-color, .a-content:active .heading-color{
  color: #41b8ec;
}
.price-section{
  text-align: center;
}
.price-content{
  font-size: 12px;
  margin: 0;
}
.price-tag{
  font-size: 16px;
  font-weight: bold;
}
.a-border-left{
  border-left: 1px solid #41b8ec;
}
.a-border-bottom{
  border-bottom: 1px solid #41b8ec;
}
.sort-destination .isotope-item{
  background-color: #fff;
}
.portfolio-list .portfolio-item{
  margin: 0;
}

/* sriti*/

#tabbing-box .tabs .nav-tabs li.active .nav-link
{
    background-color: #169fe6!important;
    color: #fff!important;
}

#tabbing-box .tabs .nav-tabs li .nav-link
{
    border-top-color: #169fe6;
}

.w-80 {
  width: 80%;
}

#tabbing-box .card-body span{
  float: right;
}

.back-about-img img{width: 100%;
  height: 500px;

}
/* common css */
#secondary-banner .page-header{
background: rgba(0, 0, 0, 0.61);
   padding: 55px 0px;
   border-bottom: 0;
   border-top: 0;
   min-height: 200px;
}
#secondary-banner .page-header h1{
border-bottom: 0; 
   border-left: 5px solid #CCC;
   padding: 28px 15px;
}
#secondary-banner  .page-header .breadcrumb{
padding:30px 0px;
color: #fff
}
#secondary-banner .breadcrumb a{
color: #fff;
}
/* common css end */
/* team css*/
.about_page .about_company_detail h1, .about_page .about_team_detail h5, .about_page .about_investor .investor_wrap h5{
  font-size: 24px;
    font-weight: 600;
    text-align: left;
    color: #333333;
    margin: 5px 0px;
}
.about_page .about_team_detail p{
  color: #4d4d4d;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}
.about_page .about_team_detail .ceo_section{
  margin: 20px -15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.about_page .about_team_detail .ceo_section .founder{
  flex: 0 0 50%;
    max-width: 50%;
    padding: 0px 15px;
    position: relative;
}
.about_page .about_team_detail .ceo_section .founder .founder_info {
    border-radius: 8px;
    box-shadow: 3px 5px 20px 0 rgba(0, 0, 0, 0.13);
    background-color: #ffffff;
    padding: 20px 20px 0px 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.about_page .about_team_detail .fonder_name {
    max-width: 45%;
    flex: 0 0 45%;
}
.text_midle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.about_page .about_team_detail .fonder_name h6 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.about_page .about_team_detail .fonder_name p {
    font-size: 18px;
    color: #808080;
}
.about_page .about_team_detail .fonder_photo {
    max-width: 55%;
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}
.about_page .about_team_detail .fonder_photo img {
    width: auto;
    object-fit: contain;
    object-position: left;
    position: relative;
    top: 5px;
    height: 270px;
    max-width: 100%;
}
.about_page .about_team_detail .fonder_photo.yd-photo img.with_hover {
    height: 320px;
    bottom: 0;
    top: auto;
}

.img-div-1 img{
  margin-top: 6px;
    height: 356px;
  
}

.img-div-2 img {
  margin-top: 94px;
    margin-left: 111px;
    border-radius: 32px;
    width: 403px;
}
.ican-light-5 p{
  margin-top: 100px;
}

.contentBox {
    padding: 29px 15px 20px 15px;
    position: absolute;
    top: 100%;
    z-index: 100;
    display: none;
    left: 0;
    right: 0;
}
.clearfix::after {
    display: block;
    content: '';
    clear: both;
}
.contentBox .tooltip {
    font-size: 16px;
    box-shadow: 3px 5px 20px 0 rgba(0, 0, 0, 0.13);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    color: #7f7f7f;
    line-height: 22px;
    opacity: 1;
}

.about_page .about_team_detail .members_row {
    width: 100%;
    position: relative;
}
.about_page .about_team_detail .ceo_section .founder {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0px 15px;
    /* position: relative; */
}
.about_page .about_team_detail .members_row .members_details .first_child, .about_page .about_team_detail .members_row.item3_inrow .members_details.first_child, .about_page .about_team_detail .members_row.item2_inrow .members_details.first_child {
    margin-left: 0px;
}
.about_page .about_team_detail .members_row.item3_inrow .members_details {
    width: 31.1%;
}
.about_page .about_team_detail .members_row .members_details {
    width: 21.5%;
    margin: 15px 1.65%;
    float: left;
    min-height: 345px;
}
.about_page .about_team_detail .members_details .member_img {
    border-radius: 8px;
    box-shadow: 3px 5px 20px 0 rgba(0, 0, 0, 0.13);
    background-color: #ffffff;
    position: relative;
}
.about_page .about_team_detail .members_details h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 20px 0px 5px 0px;
}
.about_page .about_team_detail p {
    color: #4d4d4d;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}
.about_page .about_team_detail .others_members .contentBox .tooltip h5 {
    font-size: 20px;
    font-weight: 600;
    color: #323232;
    margin: 0px 0px 10px 0px;
    text-align: left;
}
.about_page .about_team_detail .others_members .contentBox .tooltip p {
    font-size: 15px;
    font-weight: normal;
    text-align: left;
    padding-left: 0px;
    margin-bottom: 12px;
    line-height:26px;
}
.about_page .about_team_detail .others_members .first_pointer:hover .contentBox::before {
  display: block;
  left: 5%;
}
.about_page .about_team_detail .others_members .second_pointer:hover .contentBox::before {
  display: block;
  left: 30%;
}
.about_page .about_team_detail .others_members .third_pointer:hover .contentBox::before {
  display: block;
  left: 55%;
}
.about_page .about_team_detail .others_members .fourth_pointer:hover .contentBox::before {
  display: block;
  left: 80%;
}
.about_page .about_team_detail .others_members .contentBox {
    padding: 36px 0px 20px 0px;
    top: 66%;
}
.about_page .about_team_detail .ceo_section .founder.active .founder_info::after, .about_page .about_team_detail .others_members .members_details.active .member_img::after {
    display: block;
}
.about_page .about_team_detail .others_members .members_details .member_img::after {
    right: 0;
    margin: 0 auto;
    top: 104%;
    left: 0px;
}
.about_page .about_team_detail .ceo_section .founder .founder_info::after, .about_page .about_team_detail .others_members .members_details .member_img::after {
    content: '';
    position: absolute;
    top: 103%;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.13);
    width: 30px;
    height: 30px;
    z-index: 1;
    background: #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    display: none;
    left: 0%;
}

.close_it {
    background: url(../images/team/close-icn.svg);
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
    width: 50px;
    background-repeat: no-repeat;
    background-position: 87% center;
    height: 30px;
    cursor: pointer;
}
/** mobile view **/

@media screen and (max-width: 1024px){
.about_page .about_team_detail .members_row .members_details {
    min-height: 350px;
  }
  .about_page .about_team_detail .members_details .member_img {
    min-height: 270px;
  }
  .about_page .about_team_detail .others_members .members_details .member_img::after {
    top: 103%;
  }
  .about_page .about_team_detail .members_details p {
    font-size: 14px;
    padding: 0px;
  }
  .about_page .about_team_detail .others_members .contentBox {
    padding: 25px 0px 20px 0px;
  }
  .members_row .contentBox {
    top: 70%;
    }
    .close_it {
    display: block;
  }

  .about_page .about_team_detail .members_details .member_img img {
    height: 270px;
  }
}


@media screen and (max-width: 980px){
  .about_page .about_team_detail .members_row {
      position: static;
  }
  .about_page .about_team_detail .members_row .members_details {
    width: 47.5%;
  }
  .about_page .about_team_detail .members_row .members_details {
    position: relative;
  }
  .about_page .about_team_detail .members_row .members_details {
    margin: 8px 1.65%;
  }
  .about_page .about_team_detail .members_row .members_details {
    min-height: 347px;
  }
  .about_page .about_team_detail .members_details p {
    padding: 0px;
  }
  .about_page .about_team_detail .others_members .contentBox {
    top: 77%;
  }
  .members_row .contentBox {
    top: 72%;
  }
  .about_page .about_team_detail .others_members .contentBox .tooltip h5 {
    font-size: 18px;
  }
  .about_page .about_company_detail h1, .about_page .about_team_detail h5 {
    font-size: 18px;
  }
  .about_page .about_team_detail .others_members .contentBox .tooltip p {
    font-size: 16px;
  }

  .about_page .about_team_detail .members_details p {
    padding: 0px;
  }
}

@media screen and (max-width: 768px){
.members_row .contentBox {
    top: 72%;
  }
  .about_page .about_team_detail .members_details h6, .about_pag.about_team_detail .members_details p {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px){
  .about_page .about_team_detail .members_details h6, .about_page .about_team_detail .members_details p {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .about_page .about_team_detail .members_row .members_details {
      min-height: 340px;
  }

  .about_page .about_team_detail .members_row .members_details {
    width: 100%;
    margin: 10px 0px;
  }

  .about_page .about_team_detail .others_members .contentBox {
    top: 79%;
  }
  .members_row .contentBox {
    top: 75%;
  }
  .contentBox .tooltip {
    padding: 40px 30px 30px 30px;
  }
  .contentBox .tooltip {
    font-size: 14px;
  }
}
.about_page .about_team_detail .members_details .member_img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    /* margin-bottom: -5px; */
    transition: ease all 0.5s;
    border-radius: 8px;
    overflow: hidden;
}

/* team css end*/
html section.section-primary2{
    background-color: #1d7aa3 !important;
    border-color: #1d7aa3 !important;
}
.left-image{
    float: left;
    width: 45%;
    margin-right: 5%;
}
.right-content{
    float: left;
    width: 50%
}
.latest-news{
    list-style-type: none;
    padding: 0;
}
.latest-news i{
    color:#ff8d00;
}
.heading h1{
    text-transform: capitalize;
}
/*----servives icons-----*/
#services .featured-box .box-content{
   padding: 10px;
}
#services .featured-box  .icon-featured{
width: 70px;
    height: 70px;
    margin: 0;
    font-size: 26px;
    line-height: 70px;
}
#services .featured-box-effect-1 .icon-featured:after{
   top: -3px;
   left: -3px;
   padding: 3px;
}
#services .featured-box h4{
font-size: 16px;
}
#services .feature-box{
margin-bottom: 10px;
}
#services .feature-box .feature-box-icon{
font-size: 10px;
    top: 3px;
}
#services .feature-box .feature-box-info h4{
margin-top: 3px;
    font-size: 15px;
    color: #777!important;
}

.a-content:hover .a-border-bottom, .a-content:focus .a-border-bottom{
border-left: 2px solid;
}
.a-content .feature-box .feature-box-icon{
font-size: 12px!important;
}
.a-content .feature-box .feature-box-info{

padding-left: 10px;
}

#contact-us .list.list-icons.list-icons-style-3 li{
padding-top: 0px;
    padding-left: 25px;
    margin-bottom: 0px;
}
#contact-us .list.list-icons.list-icons-style-3 li > .fas:first-child, .list.list-icons.list-icons-style-3 li > .far:first-child{
background-color: transparent;
color: #169fe6;
    border-radius: 50%;
    width: 20px;
    height: 25px;
    text-align: center;
    padding: 0px;
    font-size: 0.8em;
    line-height: 1.3;
}
#contact-us .featured-box .box-content{
padding: 10px;
border-bottom: 1px solid #169fe6;
    border-width: 4px;
    font-size: 12px;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  border-radius: 6px;
  background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
  background: linear-gradient(45deg, #ff89e9 0%,#05abe0 100%);
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  padding: 3em;
  text-align: left;
  background: rgba(0, 0, 0, 0.4196078431372549);
}

.hovereffect img {
  display: block;
  position: relative;
  max-width: none;
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-40px,0,0);
  transform: translate3d(-40px,0,0);
}

.hovereffect h3 {
  text-transform: uppercase;
    color: #fff;
    position: relative;
    font-size: 25px;
    background-color: transparent;
    padding: 0% 0 10px 0;
    text-align: left;
    font-weight: 600;
    margin-bottom: 15px;
}

.hovereffect .overlay:before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #fff;
  content: '';
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-20px,0,0);
  transform: translate3d(-20px,0,0);
}

.hovereffect a, .hovereffect p {
  color: #FFF;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-10px,0,0);
  transform: translate3d(-10px,0,0);
}

.hovereffect img {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.hovereffect .overlay:before,
.hovereffect a, .hovereffect p {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.hovereffect1 {
  width: 100%;
  height: 89%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect1 .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: rgba(75,75,75,0.7);
  -webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  padding: 0;
}

.hovereffect1:hover .overlay {
  background-color: rgba(0, 20, 33, 0.69);
}

.hovereffect1 img {
  display: block;
  position: relative;
}

.hovereffect1 h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
}

.hovereffect1:hover h3 {
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
}

.hovereffect1 .info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  font-weight: normal;
  margin: -38px 26px 12px 21px;
  padding: 80px 1% 5%;
}

.hovereffect1:hover .info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect1 .info:hover {
  box-shadow: 0 0 5px #fff;
}
.hovereffect2 {
  width: 100%;
  height: 89%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect2 .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 0;
}

.hovereffect2:hover .overlay {
  background-color: rgba(170,170,170,0.4);
}

.hovereffect2 h3, .hovereffect2 img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect2 img {
  display: block;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.hovereffect2:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect2 h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.hovereffect2 .info {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: normal;
  height: 85%;
  width: 85%;
  position: absolute;
  top: -12%;
  left: 8%;
  padding: 60px 10px 10px;
}

.hovereffect2:hover .info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: rgba(0,0,0,0.4);
}

.marquee-with-options{
    width: 100%;
    height: 275px;
    overflow: hidden;
}
.enquire-now-button{
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 999;
}
.enquire-now-button img{
    width: 100%;
}
.tabs_menu{
    text-align: center;
    /*width: 600px;
    border-radius: 8px;
    box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    margin: -35px auto 35px auto;*/
}
.tabs_menu ul{
    padding: 15px ;
    width: auto;
    display: inline-block;
    margin: -75px auto 35px auto!important;
    border-radius: 8px;
    box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
}
.tabs_menu ul li{
    list-style: none;
    float: left;
    width: auto;
    text-align: center;
    padding: 0px 15px;
}
.tabs_menu1 button:hover{background: gray}
.tabs_menu1 button{padding: 12px 45px;border-radius: 10px;font-weight: bold;font-size: 22px;margin-top: 15px;
background: #9b2021;border: none;color: white;}

.conference .tabs ul.nav-tabs{
    padding: 12px;
    width: auto;
    display: inline-block;
    margin: -35px auto 35px auto!important;
    border-radius: 8px;
    box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
}
.conference .tabs ul li.nav-item{
    list-style: none;
    float: left;
    width: auto;
    text-align: center;
    padding: 0px 5px;
}
.tabs_menu ul li a{
        font-size: 18px;
    color: #818181;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 19px 45px;
    font-weight: 700;
    cursor: pointer;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}
.tabs_menu ul li.active a{
    background-color: #9b2021;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}
.conference .tabs .nav-tabs li.active .nav-link{
    border: none;
    background: #169fe6;
    color: #fff!important;
}
.conference .tabs .nav-tabs li .nav-link{
    color: #818181;
    background: transparent;
    border: 0;
}
.conference .tabs .tab-content{
    border: none;
}

.counter img{
    width: 35px;
}
.service-steel-img{
    width: 65%;
    padding-bottom: 15px;
}
.navbar-right{
    padding: 0px 20px;
    margin: 0;
    display: inline-block;
    list-style-type: none;
}
.navbar-right li{
    margin:0;
}
.cart-link{
    position: relative;
}

.cart_checkout_button {
  background: #1d7aa3;
  color:white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  display: block;
  border-radius: 3px;
  font-size: 16px;
  margin: 5px 0 15px 0;
}

.cart_num{
    position: absolute;
    right: 5px;
    top: 0px;
    color: #fff;
    background: #ee7700;
    border: 1px solid #ee7700;
    border-radius: 50%;
    padding: 0px;
    font-size: 10px;
    height: 16px;
    width: 16px;
    text-align: center;
    line-height: 15px;
}
#header .header-nav-main nav > ul > li.dropdown:hover > a.cart-link{
    background: transparent!important;
}
#header .header-nav-main nav > ul > li.dropdown:hover > a.cart-link:before{
    border-bottom-color: transparent!important;
}
.cart-link i{color:#fff;}
.actions .actions-continue a{display: inline-block!important;}
.shopping-cart-header{margin: 0px 0px 14px 0px;}
.shopping-cart-total{display: inline;float: right;}
.actions .actions-continue a.btn-light{    
    border-bottom: 1px solid #f4f4f4!important;
    background-color: #f2f2f2!important;
    border-color: #d9d9d9 #d9d9d9 #bfbfbf!important;
    color: #777!important;
    padding: 0.47rem 0.75rem!important;
    font-size: 0.9rem!important;
}
.actions .actions-continue a.btn-primary{
        background-color: #0088cc!important;
    border-color: #0088cc #0088cc #006699!important;
    color: #ffffff!important;
    padding: 0.47rem 0.75rem!important;
    font-size: 0.9rem!important;
}
.product-name a{color:#1d7aa3!important;}
.product-name a:hover{color:#1d7aa3!important;background: transparent!important;}
.product-actions .remove{font-size: 22px!important;
    background: red!important;
    padding: 0px 6px!important;
    color: #fff!important;
    border-radius: 5px!important;}
.woocommerce-cart-form__cart-item .product-thumbnail{
    width: 100px!important;
}
.woocommerce a.remove{
    background: red!important;
    padding: 0px 6px!important;
    color: #fff!important;
    border-radius: 5px!important;
    width: 30px!important;
    line-height: 30px!important;
    height: 30px!important;
}
.actions-continue .product-thumbnail a img{
    height: auto!important;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt{
    background-color: #1d7aa3!important;
    color: #fff!important;
    -webkit-font-smoothing: antialiased;
}
.coupon input[type='text']{
    display: inline-block;
    width: 200px!important;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease;
}

.quantity input[type='number']{
    display: inline-block;
    width: 65px!important;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease;
}
.woocommerce-billing-fields input{
    display: inline-block;
    width: 255px!important;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease;
}
.woocommerce-additional-fields__field-wrapper textarea{
    display: inline-block;
    width: 255px!important;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    width: 255px!important;
}
.woocommerce-billing-fields label{
    margin-right: 20px;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1{
    max-width: 48%!important;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
    max-width: 48%!important;
}
.checkout_coupon input[type='text']{
    display: inline-block;
    width: 100%!important;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease;
}
.yith-ajaxsearchform-container input[type='search']{
    display: inline-block;
    width: 80%!important;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease;
}
.yith-ajaxsearchform-container input[type='submit']{
        height: 38px;
    width: 18%;
    background: #1d7aa3;
    border-radius: 7px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.js-marquee li p{
    display: inline;
    margin-bottom: 5px;
    margin-left: 5px;
}
@media (max-width: 767px) {
    .navbar-right{
        padding: 0px 0px;
        margin: 0;
        display: inline;
        list-style-type: none;
        position: inherit!important;
        height: auto!important;
        width: auto!important;
        top: inherit!important;
        -webkit-transform: inherit!important;
        transform: inherit!important;
        left: inherit!important;
    }
    #header .header-nav-main.navbar-right:before{
        display: block; 
         position: inherit!important;
         top: inherit!important;
         left: inherit!important;
         width: inherit!important;
         height: inherit!important;
         background: inherit!important;
         z-index: inherit!important;
         -webkit-transform: inherit!important;
         transform: inherit!important;
    }
    /*..............my bolg pages....................*/


.wire-backimg img{width: 100%;
 }



    
