.blue-button{
	padding: 15px 40px;
	background-color: #2916FC;
	border-radius: 8px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	border: 1px solid #2916FC;
}

.blue-button:hover{
	background-color: transparent;
	color: #2916FC;
}

.experts{
	padding: 36px 0;
	background-color: #F1F4FF;
	background-image: url(../img/get_bg.svg);
	background-position: bottom 0 right 45px;
	background-repeat: no-repeat;
	color: #222222;
}

.experts-wrap{
	display: flex;
	align-items: center;
}

.experts-text{
	width: 40%;
}

.experts-text .title{
	font-family: Fira Mono;
	font-weight: 400;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.experts-text .subtitle{
	font-family: Fira Sans;
	font-weight: 400;
	font-size: 44px;
	line-height: 1.1;
	letter-spacing: -3px;
}

.expert-person{
	display: flex;
	align-items: center;
	position: absolute;
}

.expert-button{
	text-align: right;
}

.expert-person:first-child{
	top: 35px;
	left: 0;
}

.expert-person:nth-child(2){
	bottom: 0;
	left: 35%;
}

.expert-person:last-child{
	top: 0;
	right: 0;
}

.expert-person img{
	width: 100px;
	z-index: 2;
}

.expert-person .person-text{
	max-width: 156px;
	background-color: #fff;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	padding: 12px 20px ;
	margin-left: -10px;
}

.expert-person .person-text span{
	display: block;
	line-height: 1.1;
}

.expert-person .person-text .name{
	font-size: 14px;
	font-weight: 600;
}

.expert-person .person-text .position{
	font-size: 12px;
}

.expert-person-wrap{
	width: 40%;
	position: relative;
	min-height: 230px;
}

.expert-button{
	width: 20%;
}

@media (max-width: 1200px) {

	.experts-wrap{
		flex-wrap: wrap;
	}

	.experts-text{
		width: 100%;
	}

	.expert-person-wrap{
		width: 100%;
		margin: 40px 0;
	}

	.expert-button{
		width: 100%;
		text-align: left;
	}
}

@media (max-width: 992px) {

	.expert-person .person-text {
		text-align: left;
	}

	.expert-person:first-child {
		padding-left: 20px;
	}

	.expert-person:nth-child(2) {
		padding-left: 80px;
	}

	.experts {
		padding: 60px 0;
		background-position: bottom 0 left 45px;
	}

	.experts-text .title {
		font-size: 14px;
	}

	.experts-text .subtitle {
		font-size: 40px;
	}

	.expert-person {
		position: unset;
		margin-bottom: 20px;
	}

	.expert-person:last-child {
		margin-bottom: 0;
	}

	.expert-person-wrap {
		text-align: center;
		padding-left: 20px;
	}

}