#feedback-list {
	scroll-margin-top: 180px;
}

.feedback-container {
	padding-left: 50px;
	padding-right: 50px;
	margin-bottom: 120px;
}

.button-width-100 {
	width: 100%;
}

.feedback-block-wrapper {
	display: flex;
	margin-bottom: 10px;
}

.feedback-block .block-colored {
	background-image: url('../images/feedback/feedback-image.png');
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: top 50% right -10%;
	border-radius:30px;
}

.feedback-block__content {
	display: flex;
	gap: 57px;
	width: 48%;
	flex-direction: column;
	justify-content: space-between;
}

.feedback-back-button {
	width: 33px;
	height: 33px;
	display: block;
	border-radius: 50%;
	background: rgba(65, 115, 242, 0.3);
	position: absolute;
	margin-left: 35px;
	cursor: pointer;
	z-index: 3;
}

.feedback-back-button::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 2px solid transparent;
	border-top-color: #fff;
	border-left-color: #fff;
	transform: rotate(315deg);
	position: absolute;
	top: 38%;
	left: 44%;
}

.feedback-header {
	padding: 100px 50px;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: space-between;
}

.feedback-mobile-bg {
	display: none;
}

.feedback-header-content {
	width: 37%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-shrink: 0;
}

.feedback-cards {
	background: rgb(217, 227, 252);
	min-height: 300px;
	margin-bottom: 120px;
	padding: 70px 0;
	display: flex;
	align-items: center;
	position: relative;
}

.feedback-cards .feedback-container {
	position: relative;
}

.feedback-cards .swiper {
	width: 100%;
	height: 100%;
	cursor: default;
}

.feedback-cards .swiper-button-next,
.feedback-cards .swiper-button-prev {
	background: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.feedback-cards .swiper-button-prev {
	transform: translateX(-15px);
}

.feedback-cards .swiper-button-next {
	transform: translateX(15px);
}

.feedback-cards .swiper-button-next::after,
.feedback-cards .swiper-button-prev::after {
	font-size: 15px;
}

.feedback-cards .swiper-slide {
	border-radius: 12px;
	backdrop-filter: blur(16.56px);
	background: rgb(255, 255, 255);
	padding: 20px 15px;
	display: flex;
	gap: 15px;
	align-items: flex-start;
	font-size: 14px;
	height: auto;
	box-sizing: border-box;
}

.feedback-cards .swiper-slide > div {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.feedback-slider-user {
	flex-shrink: 0;
	width: 75px;
	height: 75px;
	object-fit: cover;
	border-radius: 50%;
}

.feedback-slider-user-name {
	color: #04244280;
}

.feedback-header-image {
	width: 60%;
	display: flex;
	justify-content: flex-end;
	flex-shrink: 1;
	background: #fff;
	background: radial-gradient(circle, rgba(76, 131, 192, 0.2) 0%, rgba(255, 255, 255, 1) 60%);
}

.feedback-header-image img {
	width: 80%;
	display: inline-block;
	margin-right: 30px;
	animation: spin 50s linear infinite;
	position: relative;
	z-index: 1;
}

.feedback-cards {
	background: rgb(217, 227, 252);
	min-height: 300px;
	margin-bottom: 120px;
	padding: 70px 0;
	display: flex;
	align-items: center;
}

.feedback-cards .swiper {
	cursor: default;
}

.feedback-cards .swiper-slide {
	border-radius: 12px;
	backdrop-filter: blur(16.56px);
	background: rgb(255, 255, 255);
	padding: 20px 15px;
	display: flex;
	gap: 15px;
	align-items: flex-start;
	font-size: 14px;
}

.feedback-cards .feedback-container {
	margin-bottom: 0;
}

.feedback-slider-user {
	flex-shrink: 0;
}

.feedback-slider-user-name {
	color: #04244280;
}

.feedback-help-info {
	display: flex;
	justify-content: space-between;
	margin-bottom: 120px;
	padding: 0 50px;
	gap: 30px;
}

.feedback-help-info__left {
	background: url('../images/feedback/feedback-arrow.png') no-repeat;
	background-position: top 50% right 5%;
	min-width: 35%;
}

.feedback-help-info__left h2 {
	font-size: 60px;
	line-height: 120%;
}

.feedback-help-info__right {
	border-radius: 30px;
	padding: 50px 105px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 60%;
	background: rgb(217, 227, 252);
}

.feedback-help-info__item {
	background: url('../images/feedback/check-icon.svg') no-repeat left top;
	padding-left: 70px;
}

.feedback-help-info__item h3 {
	font-size: 19px;
	line-height: 22px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.feedback-header-title {
	font-size: 116px;
	margin-bottom: 50px;
	line-height: 120%;
}

.colored-text {
	color: #4173f2;
}

.feedback-button {
	border-radius: 15px;
	padding: 14px 40px;
	font-size: 19px;
	font-weight: 400;
	line-height: 22px;
	display: inline-flex;
	justify-content: center;
}

.feedback-button--primary {
	color: #fff;
	background: linear-gradient(270deg, rgb(164, 162, 255) 0%, rgb(65, 115, 242) 100%);
}

.feedback-button--secondary {
	background: rgb(217, 227, 252);
	border: 2px solid #a4a2ff;
	color: rgb(65, 115, 242);
}

.feedback-button--primary:hover {
	background: linear-gradient(270deg, rgb(65, 115, 242) 0%, rgb(164, 162, 255) 100%);
}

.feedback-button--secondary:hover {
	background: rgba(217, 227, 252, 0.9);
	border-color: rgba(217, 227, 252, 0.9);
}

.feedback-mail {
	color: #4173f2;
	font-size: 48px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.feedback-mail::before {
	content: '';
	display: block;
	width: 57px;
	height: 57px;
	background: url('../images/feedback/mail-icon.svg') no-repeat left center;
}

.feedback-mail-us {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 30px;
}

.feedback-slide {
	display: flex;
	gap: 30px;
}

@media screen and (max-width: 768px) {
	#feedback-list {
		scroll-margin-top: 150px;
	}

	.feedback-cards,
	.feedback-container {
		margin-bottom: 30px;
	}
	.feedback-block__content {
		width: 100%;
	}

	.feedback-block__content {
		gap: 30px;
	}

	.feedback-block .block-colored {
		height: 400px;
		text-align: center;
		background-size: 140%;
		background-position: bottom 250% right 70%;
		border-radius:30px;
	}

	.feedback-help-info {
		flex-direction: column;
		padding: 30px 15px;
		gap: 25px;
	}

	.feedback-help-info__left {
		background: none;
	}

	.feedback-help-info__left h1 {
		text-align: center;
	}

	.feedback-help-info__right {
		padding: 25px;
		width: 100%;
		background: #ebf0fd;
	}

	.feedback-help-info__item {
		background-size: 31px;
		padding-left: 50px;
		font-size: 12px;
		line-height: 14px;
	}

	.feedback-help-info__item h3 {
		font-size: 14px;
		line-height: 16px;
	}

	.feedback-mail {
		font-size: 35px;
		gap: 12px;
	}

	.feedback-mail::before {
		width: 40px;
		height: 40px;
		background-size: 100%;
	}

	.feedback-mail-us {
		gap: 27px;
	}

	.feedback-header-title {
		font-size: 40px;
		margin-bottom: 30px;
	}

	.feedback-header {
		flex-direction: column;
		padding: 0 15px;
		text-align: center;
	}

	.feedback-header-content {
		width: 100%;
	}

	.feedback-header-title br {
		display: none;
	}

	.feedback-back-button,
	.feedback-header-image img {
		display: none;
	}

	.feedback-header-image {
		width: 100%;
		height: 370px;
		position: relative;
		z-index: 3;
		background: radial-gradient(circle, rgba(76, 131, 192, 0.2) 0%, rgba(255, 255, 255, 1) 70%);
	}

	.feedback-mobile-bg {
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		height: 370px;
		background: url('../images/feedback/feedback-header.png') no-repeat right 100% bottom 120%;
		background-size: 165%;
	}

	.feedback-cards {
		padding-top: 30px;
		padding-bottom: 100px;
	}

	.feedback-cards .swiper-slide {
		flex-direction: column;
	}

	.feedback-cards .swiper-button-next {
		transform: translate(-320%, 680%);
	}

	.feedback-cards .swiper-button-prev {
		transform: translate(320%, 680%);
	}
}

.form__feedback {
	width: 100%;
	height: 100%;
	display: flex
;
	flex-direction: column;
	padding: 45px 40px 50px 40px;
}


.modal-dialog {
	width: 100%;
	max-width: 100%;
}

.modal-header {
	border-bottom: 0;
	width: 100%;
	max-width: 1090px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.modal-content {
	border: none;
	width: 100%;
	border-radius: 0;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.8);
}

.modal-content picture {
	height: 28px;
}

.modal-content .close {
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	/*background: linear-gradient(90deg, #F0F7FB -6.9%, #F0F7FB 103.92%);*/
	background-image: -webkit-gradient(linear, left top, right top, from(#4bc2f9), color-stop(#44dbb5), color-stop(#f0f7fb), to(#f0f7fb));
	background-image: -o-linear-gradient(left, #4bc2f9, #44dbb5, #f0f7fb, #f0f7fb);
	background-image: linear-gradient(to right, #4bc2f9, #44dbb5, #f0f7fb, #f0f7fb);
	background-size: 300%;
	background-position: right;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin: 27px 0 0 0;
}

.modal-content .close:hover {
	background-position: left;
}

.modal-content .close:focus {
	outline: none;
}

.modal.show .modal-dialog {
	margin: 0;
}

.modal.show {
	background-color: #ffffff;
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	-webkit-box-flex: 1;
	padding: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/****************** modal custom ******************/

.dialog__feedback {
	width: 720px;
	height: 650px;
	box-shadow: 0 4px 50px rgba(0, 0, 0, 0.07);
	border-radius: 20px;
	background: #FFFFFF;
}

.modal.show.modal__feedback {
	background-color: unset;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.modal.show .dialog__feedback.modal-dialog {
	/*margin: 150px auto 0;*/
	height: auto;
}

.modal-content.modal-content__feedback {
	border-radius: 20px;
	height: auto;
	background-color: #ffffff;
}

.modal-content__feedback .modal-header {
	background: #EFF4F8;
	border-radius: 20px 20px 0 0;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 24px 42px;
}

.modal-content__feedback .modal-header h5 {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	color: #042442;
	margin: 0;
}

.modal-header .btn_close {
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
}

.modal__feedback .modal-footer {
	border: unset;
}

.form__feedback {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 45px 40px 50px 40px;
}

.form__feedback input {
	background: #FFFFFF;
	border: 2px solid #C5D7E7;
	box-sizing: border-box;
	border-radius: 10px;
	width: 100%;
	height: 60px;
	padding: 0 16px;
	margin-bottom: 40px;
}

.form__feedback input:focus {
	outline: none;
}

.form__feedback textarea {
	background: #FFFFFF;
	border: 2px solid #C5D7E7;
	box-sizing: border-box;
	border-radius: 10px;
	width: 100%;
	height: 150px;
	padding: 20px 16px 16px 16px;
	resize: none;
}

.form__feedback textarea:focus {
	outline: none;

}

.modal-footer__feedback {
	width: 100%;
	height: auto;
}

.modal-footer__feedback {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-footer__feedback > .link__more {
	margin-top: 0;
	width:100%;
	height: 50px;
}
.modal-footer__feedback {
	margin-top: 30px;
}

.fancy-button span {
	width: 100%;
	display: inline-block;
	padding: 0 60px;
	border-radius: 50em;
	position: relative;
	z-index: 2;
	will-change: transform, filter;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}


button.link__more {
	background: linear-gradient(270deg, #A4A2FF 0%, #4173F2 100%);
	background-size: 300%;
	background-position: right;
	border-radius: 30px;
	color: #ffffff;
	border: none;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 16px;
	padding: 0;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
button.bg-gradient-bright{
	background: #efb148;
	background: -webkit-gradient(linear, left top, right top, from(#efb148), to(#e63a24));
	background: -o-linear-gradient(left, #efb148 0%, #e63a24 100%);
	background: linear-gradient(90deg, #efb148 0%, #e63a24 100%);
}
button.link__more:hover {
	background: linear-gradient(270deg, #A4A2FF 0%, #4173F2 100%);

}

button.link__more:focus {
	outline: none;
}

.fancy-button:before {
	content: '';
	display: inline-block;
	height: 40px;
	position: absolute;
	bottom: -5px;
	left: 30px;
	right: 30px;
	z-index: -1;
	border-radius: 30em;
	-webkit-filter: blur(20px) brightness(0.95);
	filter: blur(20px) brightness(0.95);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.forms_succes{
	width: 100%;
	padding: 150px;
}

@media screen and (max-width: 768px) {

	.forms_succes{
		width: 100%;
		padding: 50px;
	}
}