
/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
  background-image:url(../img/page_bg.jpg);
}


/*===========HEADER===========*/
#myheader{
  background: #FFF;
}

.header {
  background: #FFF;
  border-bottom:1px solid #edf0f2;
z-index:1;

}

.header-wrapper {
  width:95%;
  margin:0px auto;
}
.content {
  width:90%;
  margin:0px auto;
  z-index:1;

}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 90px;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 112px;
 box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
border-top:3px solid #30b0e5;
  z-index: 99;
  background-color:#ffffff;}
  
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 90px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 10px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  text-transform:uppercase;
}
nav .navbar .links li a:hover{
  color:#30b0e5;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow,
.links li:hover .ig-arrow,
.links li:hover .sg-arrow,
.links li:hover .cp-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height:90px;
  text-align: center;
  display: inline-block;
  color: #000000;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #f2f2f2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  border-top: solid 3px #30b0e5;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu,
nav .navbar .links li:hover .ig-sub-menu,
nav .navbar .links li:hover .sg-sub-menu,
nav .navbar .links li:hover .cp-sub-menu
{
  display: block;
    color: #000000;

}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width:100%;
}
.navbar .links li .sub-menu a{
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu a:hover{
  color: #30b0e5;
  font-size: 15px;
  font-weight: 500;
   display: inline-block;
}

.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 278px;
    width: 100%;
    background:  #ecf0f3;
    line-height: 30px;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
	color:#000000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #000000;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #000;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow,
.links li:hover .ig-arrow,
.links li:hover .sg-arrow,
.links li:hover .cp-arrow
{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu,
  nav .navbar .links li:hover .ig-sub-menu,
nav .navbar .links li:hover .sg-sub-menu,
nav .navbar .links li:hover .cp-sub-menu
  {
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
.navbar .nav-links.show3 .links .js-sub-menu,
.navbar .nav-links.show4 .links .ig-sub-menu,
.navbar .nav-links.show5 .links .sg-sub-menu,
.navbar .nav-links.show6 .links .cp-sub-menu,
	  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow,
	.navbar .nav-links.show4 .links .ig-arrow,
    .navbar .nav-links.show5 .links .sg-arrow,
    .navbar .nav-links.show6 .links .cp-arrow
	{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

/*===========HEADER===========*/
a.button {
  background: #121212;
  color: #fafafa;
  text-align: center;
}

a.button.primary {
  background: #36bae6;
  color: #e0e5eb;
}

a.button.primary:hover{
  background: #121212;
  color: #e0e5eb;
}

/*===========HEADER===========*/

.slider
	{
		position:relative;
	width:100%;
	overflow: hidden;
    margin: 0 auto;
	padding:110px 0px 0px 0px ;
}
/*===========HEADER===========*/


.page-content {
  width:90%;
  margin: 0 auto;
}

.content-wrapper {
  width:90%;
  margin:0px auto;
	padding:30px 30px 30px 30px;
  	overflow: hidden;
	z-index:-4;

}
/*=================Start 3 Box Css========================*/
.Box-container {
  width:100%;
    margin:0px auto;
	justify-content:space-between;

}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.column:last-child {
	padding-bottom: 0px;
}
.column::after {
	content: '';
	clear: both;
	display: block;
}
.column div {
	position: relative;
	float: left;
	width: 360px;
	height: 220px;
	margin: 0 0 0 0px;
	padding: 0;
}
.column div:first-child {
	margin-left: 0;
}
.column div span {
	position: absolute;
	bottom: -20px;
	left: 0;
	z-index: -1;
	display: block;
	width: 360px;
	margin: 0;
	padding: 0;
	font-size: 18px;
	text-decoration: none;
	text-align: center;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0;
}
figure {
	width: 360px;
	height: 220px;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
figure:hover+span {
	bottom: -36px;
	opacity: 1;
}


/* Shine */
.hover14 figure {
	position: relative;
}

.hover14 figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.hover14 figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}


@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.hover14 img{
  width: 100%;
}
/*=================END 3 Box Css========================*/

.container {
  display: flex;
  width: 100%;
  padding:10px;
}

.column-1 {
  flex-shrink: 0; /* shrinks to 0 to apply 70% width*/
  flex-basis: 50%; /* sets initial width to 70%*/
}

.column-2 {
  flex-basis: 50%; /* sets initial width to 70%*/
}

@media only screen and (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .column-1,.column-2 {
    margin: 0 0 1rem;
  }
}

.subheading_light{
	color:#32a6d9;
	text-transform:uppercase;
	font-weight:bold;
	font-size:22px;
	padding:10px;
	line-height:50px;
	}
	
.textheading_dark{
	color:#13395b;
	text-transform:uppercase;
	font-weight:bold;
	font-size:22px;
	padding:5px;

	}
	
.textheading1 {font-weight: 700;
    font-style: normal;
    color: #32a6d9;
    font-size: 20px;
    line-height: 2.0;
    letter-spacing: 0px;
		text-transform:capitalize;

	}
	
	.textheading1_p {
		font-weight: 700;
    font-style: normal;
    color: #13395b;
    font-size: 25px;
    line-height: 2.0;
    letter-spacing: 0px;
		text-transform:uppercase;
}
	
	
.textheading{
	color:#32a6d9/*3ea7c7*/; }
	
	.first-column {
    width:300px;
    float: left;
	padding-top:10px;
}

.second-column {
    width:55%;
    float:left;
		padding-top:10px;

}


@media only screen and (max-width: 800px) {

   .first-column {
        width: 100%;
        padding-bottom: 10px;
        float: none;
    }

    .second-column {
        width: 100%;
        padding-bottom: 10px;
        float: none;
    }
    
}


.abtpage-column {
  float: left;
  width: 50%;
}


/* Clear floats after the columns */
.abtpage-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .abtpage-column {
    width: 100%;
  }
}


/*<!--.know-more-button1 {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.know-more-button1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4bc7f9;
  border-radius: 10rem;
  z-index: -2;
}
.know-more-button1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #4bc7f9;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.know-more-button1:hover {
  color: #fff;
}
.know-more-button1:hover:before {
  width: 100%;
}

-->*/

.know-more-button1 {
  display: inline-block;
  border-radius: 10px;
/*  background-color: #165099;
*/  
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 160px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
background: rgb(50,166,217);
background: linear-gradient(180deg, rgba(50,166,217,1) 9%, rgba(75,199,249,1) 50%, rgba(50,166,217,1) 89%); border: none;

  
  
}
.know-more-button1:hover {
  display: inline-block;
  border-radius: 10px;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 160px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
background: rgb(173,48,146);
background: linear-gradient(180deg, rgba(173,48,146,1) 9%, rgba(215,66,183,1) 50%, rgba(173,48,146,1) 89%);
border: none;
}

.know-more-button1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  
}

.know-more-button1 span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.know-more-button1:hover span {
  padding-right: 25px;

}

.know-more-button1:hover span:after {
  opacity: 1;
  right: 0;
}






.know-more-btn {
  background-color: #fab700;
  line-height: 42px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 25px;
  border: none;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  position: relative;
}

.know-more-btn:focus {
  outline: none;
}

.know-more-btn span {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  right: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.know-more-btn:hover {
  color: #fff;
}

.know-more-btn:hover span {
  color: #fff;
  right: 20px;
}


.top-banner {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 80px;
  background: #000  url(../img/S3_about_us.jpg) center center no-repeat;
  background-size: cover;
max-width:100%;
margin: 0px auto;
}


.top-banner h3, .top-banner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-banner h3 {
  font-size: 36px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 5px;
  text-transform:uppercase;
}

.top-banner ul.breadcumb li {
  display: inline-block;
  vertical-align: middle;
}
.top-banner ul.breadcumb a, .top-banner ul.breadcumb span {
  color: #FFFFFF;
  font-size: 18px;
  text-transform:uppercase;
}

.top-banner ul.breadcumb span.sep {
  margin-left: 10px;
  margin-right: 10px;
  color: #FFFFFF;
  text-decoration:none
}
.top-banner ul.breadcumb span {
  color: #fff;
}

/*=================START ABOUT US PAGE CSS===================*/

.main {
	width:90%;
	margin: 0px auto;
	text-align:left;
height:inherit;
background:#FFFFFF;
			

		}
		
.Page-wrap{
	margin: 0px auto;
	text-align:left;
			height:inherit;
			background:#FFFFFF;
			padding:30px;
			

}
.page-content {
  left: 0;
  width: 100%;

}
.border{  	
padding-top: 16px;
 border-top: 1px solid #ccc;

}
.about-content {
  left: 0;
  width: 100%;

}

.about-content p {
  color: #545454;
  font-size: 16px;
  line-height: 27px;
}

.about-content h3 {
  margin: 0;
  font-family: 'Poppins';
  font-size: 32px;
  line-height: 36px;
  color: #fff;
  font-weight: 700;
  margin-top: 13px;
}

.abt_responsive {
    width: 100%;
    height: auto;
	padding:10px 20px 10px 0px;
 object-fit:fill;
  object-position: 0 0;
}

.Page-left {
    width: 50%;
    padding: 0 10px 0 0;
    float: left;
}

.Page-right {
    width:50%;
    padding: 0 5px 0 0;
    float: right;
	text-align:justify;
}

@media only screen and (max-width: 800px) {

   .Page-left{
        width: 100%;
        float: none;
    }

    .Page-right {
        width: 100%;
        float: none;
    }
    
}


/*====================MISSION TABS ==========================*/
.tabbed {
	overflow-x: hidden; /* so we could easily hide the radio inputs */
	margin: 32px 0;
	padding: 16px;
	border: 1px solid #ccc;
}

.tabbed [type="radio"] {
	/* hiding the inputs */
	display: none;
}

.tabs {
	display: flex;
	align-items: stretch;
	list-style: none;
	padding: 0;
/*	border-bottom: 1px solid #ccc;
*/	background-color:#343a40;
padding-bottom:1px;
}
.tab > label {
	display: block;
	margin-bottom: -1px;
	padding: 12px 15px;
/*	border: 1px solid #ccc;
*/	background: #343a40;
	color: #FFF;
	font-size: 14px; 
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;	
	transition: all 0.3s;
}
.tab:hover label {
	border-top-color: #333;
	color: #FFF;
}

.tab-content {
	display: none;
}

/* As we cannot replace the numbers with variables or calls to element properties, the number of this selector parts is our tab count limit */
.tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
.tabbed [type="radio"]:nth-of-type(5):checked ~ .tabs .tab:nth-of-type(5) label {
	border-bottom-color: #fff;
	border-top-color: #B721FF;
	background: #0492c2;
	color: #FFF;
		width:100%;
}

.tabbed [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4) {
	display: block;
		width:100%;

}
/*start responsive*/

@media screen and (max-width:1024px){.tabs {
		width:/* 800px*/100%;
	}}

@media (min-width: 768px) {

	body {
		font-size: 1.125rem;
	}

	.tabs-container {
		padding: 4rem 4rem;
	}

	.tabs label {
		order: 1;
		width: auto;
	}

	.tabs .tab {
		order: 9;
	}

	.tabs [type=radio]:checked + label {
		border-bottom: none;
	}
}
@media (min-width: 992px) {

	.tabs {
		width:/* 800px*/100%;
	}
}


/*start responsive*/
/*Cardiology*/

.about-mission-content {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display:block;
  margin-left:0px;
}

.about-mission-check-list {
  margin: 0;
  padding-left: 1.2rem;
}

.about-mission-check-list li {
  position: relative;
  list-style-type: none;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}

.about-mission-check-list li:before {
    content: '';
    background: url(../img/manufacturing_icon.png) no-repeat center;
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 15px;
    height: 15px;
    transform-origin: bottom left;
    transform: rotate(45deg);
}
 

/*====================END MISSION TABS==========================*/



/*=================END ABOUT US PAGE  CSS===================*/



/*=================START FOOTER CSS===================*/
.footer{
	background-color:/*#1f2136;#171717*/ #022d5d;
	color: #E5E5E5;
	text-align:left;
/*	  margin-top: 50px;
*/}
	.footer h4{
	font-size:18px;
	color:#3498db;
	font-weight:600;
	padding-bottom:20PX;}

.footer-bottom{
	background-color:/*#3498db;*/ #1683fb;
	color: #003a70;
	text-align:left;
	height:100px;
}
	

/* Container for flexboxes */
.footer-row {
  display: flex;
  flex-wrap: wrap;
}

/* Create four equal columns */
.footer-column {
  flex: 25%;
  padding:0px 10px;
}


.footer-column1 {
  flex: 25%;
  padding:5px;
}


.footer-column2 {
  flex: 25%;
  padding:5px;
}


.footer-column3 {
  flex: 20%;
  padding:5px;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .footer-column, .footer-column1, .footer-column2,.footer-column3 {
    flex: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .footer-row {
    flex-direction: column;
  }
}
.display-p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display:block;
}
	.card-media-icons{
  margin-top: 20px;
    margin-left: auto;
  margin-right: auto;

}
.fa {
	padding:12px;
  font-size: 14px;
  width:2.5rem;
  height:2.5rem;
  text-align: center;
  text-decoration: none;
/*  margin: 5px 2px;*/
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
    border-radius: 1.6875rem;

}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
	background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
  color: white;
}

.fa-pinterest {
  background: #cb2027;
  color: white;
}

.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.fa-skype {
  background: #00aff0;
  color: white;
}

.fa-android {
  background: #a4c639;
  color: white;
}

.fa-dribbble {
  background: #ea4c89;
  color: white;
}

.fa-vimeo {
  background: #45bbff;
  color: white;
}

.fa-tumblr {
  background: #2c4762;
  color: white;
}

.fa-vine {
  background: #00b489;
  color: white;
}

.fa-foursquare {
  background: #45bbff;
  color: white;
}

.fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.fa-flickr {
  background: #f40083;
  color: white;
}

.fa-yahoo {
  background: #430297;
  color: white;
}

.fa-soundcloud {
  background: #ff5500;
  color: white;
}

.fa-reddit {
  background: #ff5700;
  color: white;
}

.fa-rss {
  background: #ff6600;
  color: white;
}

a.footer-list-menu:link::before {
    content: "";
    display: block;
    background: url(../img/footer-list.png) no-repeat center;
    width: 8px;
    height:8px;
    float: left;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	padding:0px 10px 0px  0px;
}
a.footer-list-menu:hover::before {
    content: "";
    display: block;
    background: url(../img/footer-list-over.png) no-repeat center;
    width: 8px;
    height:8px;
    float: left;
	justify-content: center;
	align-items: center;
	

}



a.footer-list-menu:link {  
	display: block;
	text-decoration: none;
	color: #FFFFFF;
  font-size: 14px;
	line-height:10px;
	text-transform:uppercase;
}
  
  
a.footer-list-menu:visited {  
	display: block;
	text-decoration: none;
	color: #FFFFFF;
}

a.footer-list-menu:hover {  
  	color: #cc0099;
}
.address:before {
    content: "";
    display: block;
    background: #FFFFFF url(../img/location-icon.png) no-repeat center;
    width: 3px;
    height:3px;
    float: left;
	padding:10px;
    margin: 0 3px 0 0;
	border-radius:50% ;
	border: 1px solid #efefef;
	justify-content: center;
	align-items: center;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.1);

}


.address-content {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display:block;
  margin-left:35px;
  color:#E5E5E5;
  			text-align:left;

}
 
  
#st-address {
            float:left;
			text-align:left;
        }
		
        #nd-address {
            float:left;
         	width:33.33%;
			max-width:300px;

            margin-left:20px;
        }
		
		.address-ph:before {
			content: "";
			display: block;
			background:#fff url(../img/call-icon.png) no-repeat center;
	    	width:6px;
			height:6px;
			float: left;
			padding:8px;
			margin: 0 6px 0 0;
			border-radius:50% ;
			border: 1px solid #efefef;
			justify-content: center;
			align-items: center;
			box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
		
        #rd-address {
			width:33.33%;
			max-width:300px;

            float:left;
			text-align:left;
        }
		.address-email:before {
			content: "";
			display: block;
			background: url(../img/mail_icon.png) no-repeat center;
	    	width: 15px;
			height:15px;
			float: left;
			padding:8px;
			margin: 0 6px 0 0;
			border-radius:50% ;
			border: 1px solid #efefef;
			justify-content: center;
			align-items: center;
			box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
	


a.copylink {
	  font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	  font-weight:100;
	  text-decoration:none;
	  color:#000000;
	  font-weight:700;
}
  a:hover.copylink {
	  font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	  font-weight:100;
background: #CC0099;
background: linear-gradient(to right, #CC0099 19%, #30B0E5 19%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
	  text-decoration:none;

}

.footer-left{
  float:left;
  margin-top: 10px;
  width:50%;
  text-align:left;
	  color:#000000;
	  font-weight:700;}
.footer-right{
  float:right;
  margin-top: 10px;
  width:25%;
  text-align:right;
}

.footer-right-text{
        text-align:right;
      float:left;
	  margin-right:5px;
	  margin-top:5px;
	  font-weight:700;
      /*max-height: 240px; */
}

  .upshot {
       float: left;
       
 
  }

/*=================END FOOTER CSS===================*/


/*=================START CONTACT PAGE  CSS===================*/

.Contact-flex-container {
  display: flex;
  flex-wrap: wrap;
  font-size: 30px;
  text-align: center;
}

.Contact-flex-left {
  padding: 10px;
  flex: 50%;
}

.Contact-flex-right {
  padding: 10px;
  flex: 50%;
}
/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .Contact-flex-right, .Contact-flex-left {
    flex: 100%;
  }
}

/* container */
.responsive-three-column-grid {
    display:block;
	align-content:center;
}

/* columns */
.responsive-three-column-grid > * {
    padding:1rem;
}

.box_item{
		border:1px solid #e7e7e7;
		display:block;
		padding:10px;
		text-align:center;
		background-color:#f8f8f8;
		
  border-radius: 3px;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.24);		
		
}
	
.text-holder h3 {
		color: #222222;
		font-size: 20px;
		font-weight: 700;
		line-height: 18px;
		text-align:center;
	}
	
/* tablet breakpoint */
@media (min-width:768px) {
    .responsive-three-column-grid {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.map-responsive{
	filter: grayscale(0.2);
	border: 2px solid #FFFFFF;
    width:100%;
    height: 400px ;
	padding:10px;
	
}

.map-responsive iframe{
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;

}

@media(max-width:1100px){
	.map-responsive{
		display: flex;
		width:100%;
	}
	
	
}

/*** 
=============================================
    Contact Form Area style
=============================================
***/

.thm-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  z-index: 1;
}
.thm-btn:before {
  background-color: #2B2C36;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scale(0.5, 1);
  transition: all 0.4s ease 0s;
  width: 100%;
  z-index: -1;
}
.bg-clr1{
  background: #32a6d9;  
  color: #fff;
}
.thm-btn:hover::before{
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.bg-clr2{
  background: #2b2c36;  
  color: #fff;
  position: relative;
}
.bg-clr2:before {
  background-color: #32a6d9;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scale(0.5, 1);
  transition: all 0.4s ease 0s;
  width: 100%;
  z-index: -1;
}
.bg-clr2:hover:before{
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);    
}



.contact-form-area {
    padding-bottom: 80px;
}
.contact-form {
    width: 40%;

}
.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea{
  border: 1px solid #ebebeb;
  	border-radius: 5px;
  color: #848484;
  display: block;
  font-size: 16px;
  height: 55px;
  margin-bottom: 30px;
  padding: 0 20px;
}
.contact-form form textarea{
  height: 120px;
  margin-bottom: 40px;
  padding: 10px 20px;
}
.contact-form form input[type="text"]:focus{
  border-color: #32a6d9;   
}
.contact-form form input[type="email"]:focus{
  border-color: #32a6d9;        
}
.contact-form form textarea:focus{
  border-color: #32a6d9;    
}
.contact-form form button{
  width: 100%;
  padding: 14px 0 12px;
  border: 2px solid transparent;
}
.contact-form form button:hover{
    border: 2px solid #32a6d9;
  
}

.form-right-box{
    background: #f7f7f7;
    padding-top: 40px;
    padding-bottom: 37px;
	  	border-radius: 10px;

}
.img-box {
    display: block;
    margin-bottom: 23px;
	border:1px #AA2E30;
}
.form-right-box h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
}
.form-right-box span {
    color: #ff5353;
    font-size: 16px;
    font-weight: 500;
}
.form-right-box p {
    margin: 20px 0 5px;
}

.border1 {
    height: 1px;
    width: 60px;
    display:inline-block;
    background: #e3e3e3;
}


/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
.contact-form-area .form-right-box {
    margin-top: 50px;
	
}

}
@media only screen and (max-width: 767px) {
	
	
	.contact-form-area .form-right-box {
    margin-top: 50px;
}    
    

	}
/*** 
/*=================END CONTACT PAGE  CSS===================*/


/*=================Start Co2 Section PAGE  CSS===================*/
h1,h2,h3,h4,h5,h6{
position:relative;
font-weight:400;
margin:0 0 15px;
background:0 0;
line-height:1.25em;
}

h1{font-size:72px}

h2{font-size:36px}

h3{font-size:20px;
}

h4{font-size:16px}

h5{font-size:15px}

h6{font-size:14px}

textarea{overflow:hidden;resize:none}

button{outline:none!important;cursor:pointer}

p{font-size:16px;
line-height:1.5em;
font-weight:400;
margin:0 0 15px;
text-align:justify;}

.text{font-size:16px;line-height:1.5em;font-weight:400;margin:0}


.subtitle{
	color:#000000/*09f*/; 
	line-height:46px;
	font-weight:600;
	letter-spacing:-.03em;
	}
	
.subtitle-blue{
	color:#00b0f0/*09f*/; 
	line-height:46px;
	font-weight:600;
	letter-spacing:-.03em;
	}
.subtitle-it{
	color:#00b0f0/*09f*/; 
	line-height:30px;
	font-weight:500;
	letter-spacing:-.03em;
	border-bottom:#Efefef 1px double;
	}
		
	.subtitle-blue-a{
	color:#00b0f0/*09f*/; 
	line-height:46px;
	font-weight:600;
	letter-spacing:-.03em;
	font-size:20px;
	
	}
	
	
#tv {
  position: relative;
  width: 350px;
  height: 250px;
  background: white;
  border-radius: 0% 0% 0% 0% / 0% 0% 0% 0%;
  color: white;
  box-shadow: 20px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}
#tv:hover {
  border-radius: 0% 0% 50% 50% / 0% 0% 5% 5%;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width:768px){
.subtitle{font-size:20px;
line-height:46px}
	}
	
@media only screen and (min-width:992px){
	.subtitle{
		font-size:25px;
	line-height:46px;
letter-spacing: −1px; 	margin:0 0 0 0;}
	}
/* container */

/* Create two equal columns that floats next to each other */
.co2-column {
  float: left;
  width: 50%;
  padding: 10px;
height:inherit;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .co2-column {
    width: 100%;
  }
}



.responsive-two-columns {
    display:flex;
    flex-wrap:wrap;
}

/* columns */
.responsive-two-columns > * {
    width:100%;
}

.co2-card {
  color: #000000;
  padding:20px;
  background-color:#f3f6ff;
  margin:5px;
border-radius: 10px 40px 10px 40px;
}

.sec-title h2{
position: relative;
    display: block;
    font-size: 36px;
    line-height: 1.15em;
    color: #222;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0;
	text-transform:none}
/* tablet breakpoint */
@media (min-width:768px) {
    .responsive-two-columns > * {
        width:50%;
    }
}
.CO2-recovery-check-list {
  margin: 0;
  padding-left: 1.2rem;
}

.CO2-recovery-check-list li {
  position: relative;
  list-style-type: none;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}

.CO2-recovery-check-list li:before {
    content: '';
	background: url(../img/checklist-icon.jpg) no-repeat center;
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 15px;
    height: 15px;
    transform-origin: bottom left;
    transform: rotate(45deg);
}
/*=================END Co2 Section PAGE  CSS===================*/


/*=================Start Co2 Section PAGE  CSS===================*/
.RECOVERY-check-list {
  margin: 0;
  padding-left: 1.2rem;
}

.RECOVERY-check-list li {
  position: relative;
  list-style-type: none;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}

.RECOVERY-check-list li:before {
    content: '';
	background: url(../img/bullet-1.png) no-repeat center;
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 35px;
    height: 35px;
    transform-origin: bottom left;
	line-height:1.8rem;
}



.chlor-check-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size:16px;
}

.chlor-check-list li {
  position: relative;
  list-style-type: none;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}

.chlor-check-list li:before {
    content: '';
	background: url(../img/bullet-1.png) no-repeat center;
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 35px;
    height: 35px;
    transform-origin: bottom left;
	line-height:1.8rem;
}

/*=================END Co2 Section PAGE  CSS===================*/

.about-vision:before {
content: "";
display: block;
background: url(../Images/vision-icon.png) #ffffff no-repeat center;
width: 15px;
height:15px;
float: left;
padding:8px;
margin: 0 6px 0 0;
justify-content: center;
align-items: center;
}
	   
.about-impinfo:before {
content: "";
display: block;
background:url(../Images/imp-info-icon.png) #ffffff no-repeat center;
width: 15px;
height:15px;
float: left;
padding:8px;
margin: 0 6px 0 0;
justify-content: center;
align-items: center;
}
	   
	       
	   		.about-mission:before {
			content: "";
			display: block;
			background: url(../Images/mission-icon.png)  no-repeat center;
	    	width: 15px;
			height:15px;
			float: left;
    padding: 30px 0px 0px 27px;
    text-align: left
				margin: 0 6px 0 0;
			justify-content: center;
			align-items: center;
	
}


.info-title{
  color: #000000;
  text-align:left;
  font-weight:700;
  font-size:22px;
  width:95%}
  
.address-content {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display:block;
  margin-left:35px;
}

.download_btn {
	background: rgb(50,166,217);
	background: linear-gradient(180deg, rgba(50,166,217,1) 9%, rgba(75,199,249,1) 50%, rgba(50,166,217,1) 89%); 
	border: none;
  color: white;
  padding: 20px 20px;
  cursor: pointer;
  font-size: 25px;
  font-weight:700;
}

/* Darker background on mouse-over */
.download_btn:hover {
background: rgb(173,48,146);
background: linear-gradient(180deg, rgba(173,48,146,1) 9%, rgba(215,66,183,1) 50%, rgba(173,48,146,1) 89%);
}

.responsive_img {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.limiter{width:100%;margin:0 auto}
	
	.container-table100{
		width:100%;min-height:100vh;
		display:-webkit-box;display:
		-webkit-flex;display:-moz-box;
		display:-ms-flexbox;
		display:flex;
		align-items:center;
		justify-content:center;
		flex-wrap:wrap;
		padding:33px 30px}
	
	
	.wrap-table100{width:1170px}
	table{
		border-spacing:1;
		border-collapse:collapse;
		border-radius:10px;
		overflow:hidden;width:100%;
		margin:0 auto;
	position:relative}
	
	table *{position:relative}table td,table th{padding-left:8px}table thead tr{height:60px;background:#0492c2}
	
	table tbody tr{height:50px}table tbody tr:last-child{border:0}table td,table th{text-align:left}
	
	table td.l,table th.l{text-align:right}
	
	
	table td.c,table th.c{
		text-align:center}
		
	table td.r,table th.r{text-align:center}
	.table100-head th{
		font-size:18px;color:#fff;line-height:1.2;font-weight:unset}tbody tr:nth-child(even){background-color:#f5f5f5}
	tbody tr{font-size:15px;color:#000;line-height:1.2;font-weight:unset}tbody tr:hover{color:#0492c2;background-color:#f5f5f5;cursor:pointer}
	
	
	.column1{width:260px;padding-left:40px}
	.column2{width:160px}
	.column3{width:200px}	
	.column4{width:155px;text-align:right}
	.column5{width:170px;text-align:right}
	.column6{width:222px;text-align:right;padding-right:62px}
	
	@media screen and (max-width:992px)
	{
		table{display:block}table>*,table tr,table td,table th{display:block}
		table thead{display:none}
	table tbody tr{height:auto;padding:37px 0}
	table tbody tr td{
		padding-left:40%!important;
	margin-bottom:24px}
	table tbody tr td:last-child{margin-bottom:0}
	table tbody tr td:before{font-size:14px;color:#999;
	line-height:1.2;font-weight:unset;position:absolute;width:40%;left:30px;top:0}
	table tbody tr td:nth-child(1):before{content:"MOD"}
	table tbody tr td:nth-child(2):before{content:"S3 –H110"}
	table tbody tr td:nth-child(3):before{content:"S3-H1 50"}
	table tbody tr td:nth-child(4):before{content:"S3 –H1100"}
	table tbody tr td:nth-child(5):before{content:"S3-H1 150"}
	table tbody tr td:nth-child(6):before{content:"S3-H1"}
	.column4,.column5,.column6{text-align:left}
	.column4,.column5,.column6,.column1,.column2,.column3{width:100%}
	tbody tr{font-size:14px}
	}
	@media(max-width:576px){.container-table100{padding-left:15px;padding-right:15px}}
	
	/*=================START Services PAGE  CSS===================*/
.grid {
  display: grid;
  grid-template-columns:  repeat(auto-fit,34rem);
  gap: 1.8rem;
  width:100%;
  margin: 0 auto;
}

.item {
  position: relative;
  overflow-y: hidden;
  box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.1);
}


.item h3 {
  margin: 0;
  display: block;
  background-color: #3498db;
  padding: 1rem;
  color:#fff;
}


.img_s{
  width: 100%;
  height:250px;
  display: block;
  object-fit: cover;
}

.item__body {
  padding:1rem;
}

.item__body p {
  margin: 0;
    color:#000000;

}
@media (min-width:768px) {
    .grid {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}


@media screen and (max-width: 575px) {
  .grid { grid-template-columns: repeat(1, 1fr); }
  
  .contact-form form input[type="text"]:focus{
	  width:50%; 
}

}

/*=================END Services PAGE  CSS===================*/

/* container */
.co2-three-column-grid {
    display:block;
}

/* columns */
.co2-three-column-grid > * {
    padding:1rem;
}

/* tablet breakpoint */
@media (min-width:768px) {
    .co2-three-column-grid {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/*=================three_columns_responsive==================*/
/* Create three equal columns that floats next to each other */
.column_d {
  float: left;
  width: 33.33%;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column_d {
    width: 100%;
  }
}
/*=================three_columns_responsive=================*/
 dispensers {
        border: 1px solid red;
    }

    .dispensers-container {
        display: flex;
        flex-wrap: wrap;
		width:75%;
    }

    .dispensers-child {
        padding: 10px;
        flex: 40%;
		border-bottom: 1px solid #D7D3D3;

    }
/*=================Accordion=================*/
.accordion {
  background-color: #006cb5;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  margin:3px;
  
  	color:#FFFFFF;
	text-transform:uppercase;
	font-weight:bold;
	font-size:16px;
	line-height:20px;


}

.active, .accordion:hover {
  background-color: #00569f;
}

.accordion:after {
  content: '\002B';
  color: #FFFFFF;
  font-weight: bold;
  float: right;
  margin-left: 5px;

}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
/*=================Accordion=================*/


/* ====================================video section=============================== */

.video_bg:hover {
    transition: all 250ms ease;
    transform: scale(1.03);
}

.video_bg {
    margin-top: 30px;
}	

.video_bg {
    box-shadow: 0 0 25px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 0 25px rgb(0 0 0 / 20%);
    transition: all 250ms ease-in-out;
    border: 5px solid #fff;
    padding: 11px;
    border-radius: 15px;
    transition: all 250ms ease-in-out;
	width:500px;
	height:400px;
}

/* ====================================video section=============================== */
.underline-more{
	color:#ff5e13;font-weight:400;
	font-size:16px;
	-webkit-transition:.3s;
	-moz-transition:.3s;-o-transition:.3s;
	transition:.3s}
.underline-more:hover{text-decoration:underline;color:#ff5e13}





/* ====================================WHY S3 ENGINEERS=============================== */
.bdr {
  display: inline-block;
  width: 50px;
  height: 5px;
  background-color: #a8005c;/*#00A7C3*/;
  margin-bottom: 10px;
}

div.card_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin:30px;
    background-size: cover;
}
 
.imag {
  width:50px;
  height:50px;
  
}

h1 {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 15px;
}

div.imag {

}
div.text-container {
  margin: 20px;
}

@media screen and (min-width: 768px) {
  div.card_container {
    flex-direction: row;
    width: 100%;
  }
div.imag {
    height: 80px;
    min-width: 80px;
  }
 div.text-container {
    margin: 0 30px;
    max-width:500px;
  }
}
@media screen and (min-width: 1024px) {
  div.card_container {
    max-width: 1200px;
  }
}

/* ====================================WHY S3 ENGINEERS=============================== */


.DrDetailsCard {
    position:relative;
    background:#f5f4f4  ;
    margin:auto;
	border:1px solid #dedede;
    display: flex;
	flex-wrap: wrap;
	  justify-content: center;
	  bottom:20px;
    }
    
   .info-title{
  color: #000000;
  text-align:left;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 10px;  
  }
  
      .responsive-img {
  width: 100%;
  bottom:-100px;
}
    .Drphoto {
      padding:30px;
		flex: 30%;
      text-align: center;
	  align-items:center; 
      float: left;
	  bottom:20px;
      /*max-height: 240px; */

    }
    
    .Drdescription {
		flex: 70%;
       padding: 20px;
       float: left;
	   line-height:40px;
	   text-align:center;
	  margin-top:20px;
	  bottom:20px;
      /* border-left: 2px solid #efefef;*/}

.img_bx{
	max-width: 100%;
    border: 8px solid #fff;
    box-shadow: 0px 0px 8px #00000040;
	width:520px;}
	
	/* Clear floats after the columns */
.Consulting-row:after {
  content: "";
  display: table;
  clear: both;
}


img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-decoration:none;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
    text-decoration:none;

}


.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
}
.card_image{
  width:100%;
 object-fit:fill;
  object-position: 0 0;}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }

}

@media (min-width: 56rem) {
  .cards_item {
    width:50%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  padding: 1rem;
  background: linear-gradient(to bottom left, #ad3092 40%, #46b8d4 100%);
}

.card_title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
  font-weight: 400;
}

 .tobbar-item{
	 position:relative;
 display:block;
 padding:8px 13px;
 margin-bottom:5px;
 background-color:#f5f5f5;
 border:1px solid #ddd;
 margin-top:5px;
 }
 
 .read_btn{
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-decoration:none;
}

.read_btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
    text-decoration:none;

}