.fl-conditions {
	padding: 100px 0 150px;
}

.fl-conditions .container {
	max-width: 1376px;
}

.fl-conditions .section__header {
	margin-bottom: 51px;
}

.fl-conditions .section__title {
	text-align: center;
	line-height: 42px;
}

.fl-conditions__block {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.fl-conditions__column {
    width: calc(50% - 162.5px);
    text-align: right;
    padding-right: 157.5px;	
}

.fl-conditions__center {
	width: 325px;
	height: 325px;
	border-radius: 100%;
	position: relative;
	left: 4px;
}

.fl-conditions__center::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #009BE8;
	top: 0;
	left: 0;
	border-radius: 100%;
	filter: blur(6px);
}

.fl-conditions__center img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 2;
}

.fl-conditions__column:last-child {
    text-align: left;
    padding-right: 0;
    padding-left: 164.5px;
}

.fl-conditions__item {
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 24px;
	font-family: var(--font-secondary);
	font-weight: 400;
	color: #292929;
	position: relative;
}

.fl-conditions__item::before {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	left: calc( 100% + 15px );
	width: 7px;
	height: 7px;
	border: 1px solid #6494B8;
	border-radius: 100%;
}

.fl-conditions__item::after {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	width: 200px;
	border-bottom: 1px dashed #6494B8;
	height: 1px;
	left: calc( 100% + 24px );
}

.fl-conditions__item:last-child {
	margin-bottom: 0;
}

.fl-conditions__column:last-child .fl-conditions__item::before {
	left: auto;
	right: calc( 100% + 15px );
}

.fl-conditions__column:last-child .fl-conditions__item::after {
	left: auto;
	right: calc( 100% + 24px );
}

.fl-conditions__quote {
	width: calc( 100% - 30px );
	max-width: 1668px;
	margin: 100px auto 0;
	padding: 32px 177px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	background: linear-gradient(180deg, #E4F4F1 0%, #FDEEE7 100%);
	box-shadow: 0px 0px 18px 0px rgba(41, 41, 41, 0.15);
}

.fl-conditions__quote--img {
	width: 200px;
	height: 200px;
	border-radius: 100%;
	overflow: hidden;
	margin-right: 50px;
}

.fl-conditions__quote--img img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}

.fl-conditions__quote--text {
	width: calc( 100% - 250px );
	font-size: 40px;
	line-height: 47px;
	font-weight: 800;
	font-family: var(--font-primary);
	color: #6494B8;
}

.fl-conditions__quote--btn {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	bottom: -50px;
	width: 100px;
	height: 100px;
	margin: 0 auto;
}

.fl-conditions__quote--btn a {
	display: block;
}

.fl-conditions__quote--btn svg {
	display: block;
	max-width: 100%;
	height: auto;
}

.fl-conditions__quote--btn svg path,
.fl-conditions__quote--btn svg circle {
	transition: var(--transition);
}

.fl-conditions__quote--btn svg circle {
	stroke: #E8F6F6;
	fill: #fff;
}

.fl-conditions__quote--btn svg path {
	stroke: #6494B8;
}

.fl-conditions__quote--btn:hover svg circle {
	stroke: #E8F6F6;
	fill: #009CE9;
}

.fl-conditions__quote--btn:hover svg path {
	stroke: #fff;
}

@media screen and (max-width: 1400px) {
	.fl-conditions__quote {
		padding: 30px;
		margin: 50px auto 0;
	}
}

@media screen and (max-width: 1199px) {
	.fl-conditions {
		padding: 50px 0 80px;
	}

	.fl-conditions .section__header {
		margin-bottom: 30px;
	}

	.fl-conditions__quote--img {
		width: 150px;
		height: 150px;
		margin-right: 30px;
	}

	.fl-conditions__quote--text {
		font-size: 32px;
		line-height: 40px;
		width: calc( 100% - 180px );
	}

	.fl-conditions__quote--btn {
		width: 70px;
		height: 70px;
		bottom: -35px;
	}

	.fl-conditions__column {
		padding-right: 75px;
	}
	.fl-conditions__column:last-child {
		padding-left: 75px;
	}

	.fl-conditions__item::after {
		width: 150px;
	}
	.fl-conditions .section__title {
		line-height: 40px;
	}
}

@media screen and (max-width: 992px) {
	.fl-conditions__column {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
		padding: 0;
	}

	.fl-conditions__center {
		left: auto;
		margin-bottom: 30px;
		width: 100%;
		max-width: 325px;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.fl-conditions__column:last-child {
		padding: 0;
		width: 100%;
		margin-bottom: 0;
		text-align: center;
	}

	.fl-conditions__item {
		margin-bottom: 10px;
		font-size: 16px;
	}

	.fl-conditions__item::before,
	.fl-conditions__item::after {
		display: none !important;
	}

	.fl-conditions__quote {
		padding: 30px 15px;
	}

	.fl-conditions__quote--img {
		width: 120px;
		height: 120px;
		margin-right: 20px;
	}

	.fl-conditions__quote--text {
		width: calc( 100% - 140px );
		font-size: 24px;
		line-height: 32px;
	}

	.fl-conditions__quote--btn {
		width: 50px;
		height: 50px;
		bottom: -25px;
	}
}

@media screen and (max-width: 568px) {
	.fl-conditions__quote--img {
		width: 80px;
		height: 80px;
		margin-right: 15px;
	}

	.fl-conditions__quote--text {
		width: calc( 100% - 95px );
		font-size: 20px;
		line-height: 28px;
	}
}