.hr-header {
	background: #F5F5F5;
	overflow: hidden;
	position: relative;
	margin-bottom: 150px;
}

.hr-header__text-wrapper {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
	position: absolute;
	width: 600px;
	height: 600px;
	background: url("/images/hr/ellipse.png") center center;
	background-size: cover;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;	
	color: #0A0A0A;
	text-align: center;
}

.hr-header__text-title {
	font-weight: 600;
	font-size: 56px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hr-header__text-title span {
	color: #0202B3;
}

.hr-header__text-body {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 30px;
}

.hr-header__wrapper {
	position: relative;
	height: 750px;
	transition-property: transform;
	transition-timing-function: linear;
	transition-duration: 800ms;
	
}

.hr-header__wrapper img {
	position: absolute;
	border-radius: 16px;
}

.hr-header__wrapper img:hover {
	z-index: 2;
	transform: rotate(-5deg);
}

.hr-header__wrapper.blured:before {
	display: block;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 1000%;
	height: 100%;
	z-index: 1;
	background:#FFFFFFB2;
}

@media(max-width: 900px) {
	.hr-header {
		margin: 0 -20px 50px;
	}
}

@media(max-width: 600px) {
	.hr-header__wrapper {
		height: 500px;
	}
	.hr-header__text-wrapper {
		width: 300px;
		height: 300px;
		padding: 0 20px;
	}
	
	.hr-header__text-title {
		font-size: 32px;
	}
}