.responses_list {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 6rem;
	list-style: none;
	padding: 0 4rem;
	box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.responses_list > div {
    width: 100% !important;
    min-width: 300px !important;
    max-width: 760px !important;
}
.response_item {
	display: block;
	width: 100%;
	height: auto;
	border: 2px solid #c1eaf9;
	border-radius: 2rem;
	box-sizing: border-box;
	padding: 4rem 2rem 2rem 4rem;
	position: relative;
	margin-top: 4rem;
	background: linear-gradient(to bottom,rgba(241,247,252,1) 0,rgba(255,255,255,1) 100%);
}
.response_item:nth-child(1) {
	margin-top: 0;
}
.response_image_container {
	display: block;
	width: 6rem;
	height: 6rem;
	overflow: hidden;
	border: 2px solid #ffaf41;
	border-radius: 50%;
	position: absolute;
	top: -3rem;
	left: -3rem;
	background-color: #FFFFFF;
	z-index: 3;
	box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.2);
}
.response_image_container img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.response_image_container:hover img {
	transform: scale(1.05);
}
.response_name_container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: auto;
	height: 4rem;
	position: absolute;
	z-index: 2;
	left: 0;
	top: -2rem;
	padding: 0 2rem 0 5rem;
	box-sizing: border-box;
	background-color: #FFFFFF;
	border-radius: 1rem;
	box-shadow: 0rem 0.5rem 1rem 0.2rem rgba(0, 0, 0, 0.1);
}
.response_name {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1em;
	font-weight: bold;
}
.response_text {
	display: block;
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.2em;
}
.responce_buttons_container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	margin-top: 4rem;
	padding: 0 4rem;
	box-sizing: border-box;
}
.responce_button {
	width: 30rem;
	margin-right: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.responses_list {
		margin-top: 10rem;
		padding: 0 4rem;
	}
	.response_item {
		border: 2px solid #c1eaf9;
		border-radius: 2rem;
		padding: 7rem 2rem 2rem 7rem;
		margin-top: 8rem;
	}
	.response_image_container {
		width: 12rem;
		height: 12rem;
		border: 2px solid #ffaf41;
		top: -6rem;
		left: -6rem;
		box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.2);
	}
	.response_name_container {
		height: 8rem;
	    top: -3.5rem;
	    padding: 0 2rem 0 9rem;
		border-radius: 1rem;
		box-shadow: 0rem 0.2rem 1rem 0.2rem rgba(0, 0, 0, 0.2);
	}
	.response_name {
		font-size: 3.2rem;
	}
	.response_text {
		font-size: 3.2rem;
	}
	.responce_buttons_container {
		justify-content: space-between;
		margin-top: 8rem;
		padding: 0 4rem;
	}
	.responce_button {
		width: 40rem;
		margin-right: 0;
		margin-bottom: 4rem;
	}
}
