#home_boxes {
	margin-bottom:24px;
	margin-top:128px;
}
#home_boxes h2 {
	font-size:52px;
	margin-bottom:40px;
	text-align: center;
}
#home_boxes .home_boxes_container {
	display:flex;
}
#home_boxes .home_boxes_container > div {
	display:flex;
	flex: 1;
	justify-content: space-between;
	flex-direction: column;
	width: calc(33.3333% - 16px);
	margin-right:16px;
}
#home_boxes .home_boxes_container > div:last-child {
	margin-right: 0;
}
#home_boxes .home_boxes_container > div > div {
	background-color: #F5F3F0;
	padding:40px;
	margin-bottom:16px;
	transition: 0.3s ease;
	box-sizing: border-box;
}
#home_boxes .home_boxes_container > div > div:hover {
	transition: 0.3s ease;
	background-color: #FFFFFF;
	box-shadow:inset 0px 0px 0px 5px #F5F3F0;
}
#home_boxes .home_boxes_container > div > div h3 {
	font-size:28px;
	margin-bottom:20px;
	line-height: 1.3em;
}
#home_boxes .home_boxes_container > div > div img {
	max-height: 63px;
	margin-bottom:24px;
}
#home_boxes .home_boxes_container > div > div p {
	font-size:16px;
	line-height: 1.4em;
	font-weight: 500;
	color: #000;
	margin-bottom:30px;
}
#home_boxes .home_boxes_container > div > div a {
	font-size:14px;
	font-weight: 700;
	color:#000;
	position: relative;
}
#home_boxes .home_boxes_container > div > div a:after {
	content:'';
	width:17px;
	height:17px;
	background-image:url('ArrowRight.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right:-30px;
	margin-top:4px;
	transition: 0.3s ease;
}

#home_boxes .home_boxes_container > div > div a:hover {
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	text-decoration: underline;
}

.agentBox {
	display:flex;
	align-items: center;
	margin-bottom:128px;
	border:1px solid #A7B2BE;
	border-radius: 4px;
	padding:32px;
}
.agentBox h4 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3em;
	/* margin-bottom:24px; */
}
.agentBox p.desc {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3em;
}
.agentBox .right a, .agentBox .right .working {
	display:block;
	font-size:16px;
	font-weight: 500;
	margin-bottom:4px;
	padding-left: 25px;
	transition: 0.2s ease;
	position: relative;
}
.agentBox .right a:hover {
	transition: 0.2s ease;
	text-decoration: underline;
}
.agentBox .left {
	width:100%;
	max-width: 680px;
}
.agentBox .center {
	padding:0  32px;
}
.agentBox .right .agent {
	font-size:20px;
	font-weight: 700;
	line-height: 1.3em;
	margin-bottom:5px;
}
.agentBox .right .name {
	font-size:16px;
	font-weight: 500;
	line-height: 1.3em;
	margin-bottom:12px;
}
.agentBox .right a:before, .agentBox .right .working:before {
	content:'';
	display:inline-block;
	width:16px;
	height:16px;
	left:0;
	position:absolute;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}
.agentBox .right .phone:before {
	background-image: url(call.svg);
	margin-top:2px;
}
.agentBox .right .mail:before {
	background-image: url(mail.svg);
	margin-top:3px;
}
.agentBox .right .working:before {
	background-image: url(alarm.svg);
	margin-top:2px;
}

@media (min-width:601px) and (max-width:991px) {
	.agentBox {
		flex-direction: column;
	}
	.agentBox .center {
		margin: 40px auto;
	}
	#home_boxes {
		margin-top: 96px;
	}
	#home_boxes h2 {
		font-size: 44px;
		max-width: 600px;
		margin:0 auto 44px auto;
	}
	#home_boxes .home_boxes_container {
		flex-direction: row;
		flex-wrap: wrap;
	}
	#home_boxes .home_boxes_container > div {
		width: 50%;
	}
	#home_boxes .home_boxes_container > div:nth-child(2) {
		margin-right: 0;
	}
	#home_boxes .home_boxes_container > div:last-child {
		width: 100%;
		flex-direction: row;
	}
	#home_boxes .home_boxes_container > div .one_box  {
		flex:1;
	}
	#home_boxes .home_boxes_container > div:last-child .one_box {
		width: calc(50% - 10px);
	}
	#home_boxes .home_boxes_container > div:last-child .one_box:not(:last-child) {
		margin-right: 10px;
	}
}

@media(max-width:991px) {
	.agentBox {
		flex-direction: row;
		align-items: flex-start;
	}
	.agentBox h4 {
		font-size: 24px;
		font-weight: 700;
		line-height: 1.3em;
		margin-bottom:24px;
	}
	.agentBox .left {
		padding-right: 40px;
		max-width: 40%;
	}
}

@media(max-width:600px) {
	#home_boxes h2 {
		font-size: 32px;
	}
	#home_boxes .home_boxes_container {
		flex-direction: column;
	}
	#home_boxes .home_boxes_container > div {
		width: 100%;
		flex-direction: column;
	}
	#home_boxes .home_boxes_container > div .one_box {
		flex-direction: column;
	}
	.agentBox {
		margin-bottom: 96px;
	}
	.agentBox {
		flex-direction: column;
		padding:16px;
	}
	.agentBox .center {
		display:none;
	}
	.agentBox .left, .agentBox .right {
		box-sizing: border-box;
		overflow: hidden;
		width: 100%;
		padding: 0;
	}
	.agentBox .left {
		margin-bottom: 30px;
	}
	.agentBox .left h4 {
		font-size: 24px;
	}
	.agentBox .right a, .agentBox .right .working {
		font-size: 14px;
	}
	.agentBox .right .name {
		margin-bottom: 30px;
	}
	.agentBox {
		flex-direction: column;
		align-items: flex-start;
	}
	.agentBox .left {
		padding:0;
		max-width: 100%;
	}
}