.header {
	background-color: #151515;
	padding: 30px 0 60px 0;
}
.header__top {
	text-decoration: none;
	display: block;
	position: relative;
	border-radius: 100px;
	background-color: #fff;
	box-shadow: 0 8px 8px rgba(255, 255, 255, 0.25);
	padding: 20px 50px;
	margin-bottom: 30px;
	font-size: 32px;
	font-weight: bold;
	font-family: var(--ff);
	line-height: 1.1;
	color: rgba(0, 72, 47, 1);
	z-index: 1;
}
.header__body:before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 40px;
	z-index: 0;
}
.header__image {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	max-height: 100%;
	max-width: 60%;
	z-index: 1!important;
}
.header__body {
	position: relative;
	box-shadow: 0 8px 8px rgba(255, 255, 255, 0.25);
	padding: 65px 50px 50px 50px;
	border-radius: 40px;
}
.header__text {
	font-family: var(--ff);
}
.header__text p {
	font-family: var(--ff);
}
.header__title {
	font-size: 42px;
	font-family: var(--ff-title);
	line-height: 1.2;
	margin-bottom: 30px;
	font-weight: 700;
}
.header__body > div {
	position: relative;
	z-index: 1;
}
.header__btn {
	padding: 20px 0 20px 0;
}

@media(max-width: 800px) {
	.header__title {
	    font-size: 32px;
	    text-align: left;
	}
	.header__text br {
		display: none;
	}
	.header__image {
	    top: 0;
	    bottom: auto;
	    max-width: 100%;
	}
	.header__text {
		text-align: left;
	}
	.header__body {
		padding: 280px 30px 20px 30px;
	}
}