*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}
body{
	font-size: 16px;

}
.container_items{
	display: grid;
	gap: 1.25em;
	grid-template-columns: repeat(3, 1fr);
	grid-template-areas:"banner_about  banner_about  banner_about"
	                    "wrap_info wrap_info wrap_info"
	                    "ftr_main  ftr_main  ftr_main"
}
.nav-link{
	color: #555;
}
.banner_about{
	grid-area: banner_about;
	width: 100%;
	margin: auto;
	height: 102%;
	background-color: #fff;
}
.bar {
	background-color: #555;
}
.member_box{
	max-width: 75em;
	margin: auto;
}
.about-section{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.about-section h1{
	padding: 0.625em;
	color: #555;
	font-family: 'Roboto Mono', monospace;
}
.about-section p{
	opacity: 0.8;
	padding: 0.625em;
	color: #555;
	font-family: 'Montserrat',sans-serif;
	z-index: 1;
}
.card_title{
	text-align: center;
	padding: 4.375em 0;
	color: #555;	
	font-family: 'DM Serif Display', serif;
}
.member_card{
	display: flex;
	gap: 1.25em;
}
.card_id{
 position: relative;
 width: calc(100%/3);
 height:28.125em;
 background: #fff;
 border-radius: 1.25em;
 box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
 transition: 0.5s;
}
.card_id:hover{
	height: 28.125em;
}
.imgbx{
	left: 50%;
	top: -3.125em;
	transform: translateX(-50%);
	position: absolute;
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 1.25em;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	transition: 0.5s;
}
.card_id:hover .imgbx{
	width: 15.625em;
	height: 15.625em;
}
.imgbx img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card_id .card_details{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;

}
.card_id .card_details .details{
	padding: 3.125em;
	width: 100%;
	transition: 0.5s;
} 
.card_id .card_details .details h2{
	text-align:center;
	font-size: 1.25em;
	font-weight: 600;
	color: #555;
	line-height: 1.2em;
	font-family: 'DM Serif Display', serif;
}
.card_id .card_details .details h2 span{
	font-size:0.75em ;
	font-weight: 500;
	opacity: 0.5;
	font-family: 'DM Serif Display', serif;
}
.card_id .card_details .details .data{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.card_id .card_details .details .data p{
	color: #555;
	line-height: 1.2em;
	text-align: center;
	opacity: 0.8;
	padding: 0.3125em;
	font-family: 'Montserrat', serif;
}

.actionbtn{
	position: relative;
	background-color: #000;
	text-align: center;
	padding: 0.625em;
	border-radius: 0.625em;
	cursor: pointer;
}
.phone {
	text-decoration: none;
	color: #fff;
	font-size: 1.25em;
	font-family: 'Montserrat', serif;
}

.phone:hover  {
	color: #00b0f0;
}
.wrap_info{
	grid-area: wrap_info;
	width: 100%;
	height: auto;
}
.company-info{
	max-width:1200px;
	margin: 1.25em auto;
	display: flex;
	flex-direction: row;
	gap: 1.25em;
}
.compay_items_2,
.compay_items_3{
	flex-basis: 420px;


}
.compay_items{
	width: 100%;
	height: auto;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
	border-radius: 10px;
}
.compay_items img{
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.compay_items h1{
	text-align: center;
	padding: 1.875em;
	color: #00b0f0;
	font-family: 'Roboto Mono', monospace;
}
.compay_items h1 span{
	color:#7030a0;
	font-family: 'Roboto Mono', monospace;
}
.compay_items p{
  color: #555;
  opacity: 0.8;
  padding: 1.875em;
  line-height: 1.5625em;
  font-family: 'Montserrat', serif;
}