.voice {
	background-color: #f4f7f7;
	padding: 3em 1em;
}

.voice_inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.customer-satisfaction-wrp {
	background-color: #f4f7f7;
	margin: 0 auto 4em;
	padding: 2em 1em;
}

.customer-satisfaction {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;

}

.customer-satisfaction-title,
.voice-title {
	width: 100%;
	max-width: 800px;
	margin: 1em auto 2em;
}

.customer-satisfaction-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.customer-satisfaction-card {
	display: flex;
	justify-content: space-between;
	width: 50%;
	padding: 1em 0;
	position: relative;
	box-sizing: border-box;
	margin-bottom: 2%;
}

@media screen and (max-width:767px) {
	.customer-satisfaction-card {
		width: 100%;
	}
}

.customer-satisfaction-lead-wrp {
	width: 60%;
	height: 100%;
}

.customer-satisfaction-lead {
	width: fit-content;
	font-size: min(.9em, 3.3vw);
	background-color: #fdf3dd;
	color: #466A7E;
	border: 2px solid;
	border-radius: 5px;
	padding: 1.5em;
	position: relative;
	margin-left: auto;
	transform: translateY(-10%);
}

.customer-satisfaction-lead::after {
	content: '';
	width: 1.25em;
	height: 1.5em;
	position: absolute;
	top: 50%;
	left: 100%;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	overflow: hidden;
	background-color: #466A7E;
}

.customer-satisfaction-lead::before {
	content: '';
	width: calc(1.25em - 4.5px);
	height: calc(1.5em - 5px);
	position: absolute;
	top: calc(50% + 3px);
	left: 100%;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	overflow: hidden;
	background-color: #fdf3dd;
	z-index: 2;
}

@media screen and (max-width:767px) {
	.customer-satisfaction-lead {
		line-height: 1.6;
	}
}


.customer-satisfaction-img {
	width: 35%;
	height: 100%;
}

.customer-satisfaction-img img {
	scale: 1.1;
}

.voice-comments {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5%;
}

.voice-card {
	width: 33%;
	display: flex;
	align-items: end;
	flex-wrap: wrap;
	box-sizing: border-box;
}

@media screen and (max-width:767px) {
	.voice-card {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

.voice-card .voice-icon {
	display: block;
	width: 33%;
	margin: 1em auto;
}

@media screen and (max-width:767px) {
	.voice-card .voice-icon {
		width: 15%;
		margin: 0;
	}
}

#lodina .voice-comment {
	border: 1px solid #466A7E;
	background-color: #fff;
	border-radius: 5px;
	padding: 1em;
	font-size: min(.88em, 3.3vw);
	line-height: 1.5;
	width: 70%;
	margin: 0 auto .5em;
	position: relative;
	z-index: 3;
	text-align: justify;
}

@media screen and (max-width:767px) {

	#lodina .voice-comment {
		width: 70% !important;
		margin: 0 0 1em;
	}
}

.voice-comment:after,
.voice-comment:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.voice-comment:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #fff;
	border-width: 12px;
	margin-left: -12px;
}

.voice-comment:before {
	border-color: rgba(204, 204, 204, 0);
	border-top-color: #466A7E;
	border-width: 13px;
	margin-left: -13px;
}

@media screen and (max-width:767px) {

	.voice-comment:after,
	.voice-comment:before {
		left: 100%;
		top: 50%;
		border: solid transparent;
		content: "";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
	}

	.voice-comment:after {
		border-color: rgba(255, 255, 255, 0);
		border-left-color: #fff;
		border-width: 12px;
		margin-top: -12px;
		margin-left: unset;
	}

	.voice-comment:before {
		border-color: rgba(204, 204, 204, 0);
		border-left-color: #466A7E;
		border-width: 13px;
		margin-top: -13px;
		margin-left: unset;
	}
}

#lodina .voice-comment.w100 {
	width: 100%;
}

#lodina .voice-comment.w90 {
	width: 90%;
}

#lodina .voice-comment.w80 {
	width: 80%;
}

#lodina .voice-comment.w70 {
	width: 70%;
}