@font-face {
	font-family: 'BNPP Sans';
	font-style: normal;
	font-weight: 400;
	src: url('./../fonts/bnpp_sans/bnpp-sans.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'BNPP Sans';
	font-style: normal;
	font-weight: 700;
	src: url('./../fonts/bnpp_sans/bnpp-sans-bold.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'BNPP Sans Condensed';
	font-style: normal;
	font-weight: 400;
	src: url('./../fonts/bnpp_sans/bnpp-sans-cond.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'BNPP Sans Condensed';
	font-style: normal;
	font-weight: 700;
	src: url('./../fonts/bnpp_sans/bnpp-sans-cond-bold.ttf');
	font-display: swap;
}

* {
	font-family: 'BNPP Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	
	outline: none;
	box-sizing: border-box;
}

html {
	width: 100%;
    -webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body {
	position: relative;
	width: 100%;

	background: #FFFFFF;
	
    margin: 0;
    overflow-x: hidden;
}
body.mainFormOpened .main:before,
body.mainFormOpened .form-wrapper:before,
body.mainFormOpened .aside:after {
	opacity: 1;
	pointer-events: all;
}

.wrapper {
	position: relative;
	width: 1130px;
	max-width: 100%;

	padding: 0 15px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Header */
.header {
	position: relative;
	display: flex;
	align-items: center;

	width: 100%;
	height: 75px;

	padding: 10px 0;
}
.header:before {
	content: '';
	position: absolute;
	width: 100vw;
	height: 1px;
	bottom: 0;
	left: calc((100vw - 100%) / 2 * (-1));
	right: calc((100vw - 100%) / 2 * (-1));
	background: #C0C0C0;
	z-index: 1;
}
.header .logo {
	margin-right: 7px;
}
.header .logo img {
	height: 55px;
	width: auto;
}
.header .description {
	position: relative;
	
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	color: #0A0A0A;
	
	padding-left: 15px;
}
.header .description:before {
	content: '';
	position: absolute;
	width: 1px;
	height: calc(100% + 6px);
	top: -3px;
	left: 0;
	background: #0A0A0A;
}
.header .description br {
	display: none;
}
@media (max-width: 550px) {
	.header .description br {
		display: block;
	}
}
@media (max-width: 380px) {
	.header .logo {
		width: 50%;
	}
	.header .logo img {
		width: 100%;
		height: auto;
	}
}

/* Main - map and searchfield */
.main {
	position: relative;
	z-index: 1;
}
.main:before {
	content: '';
	position: absolute;
	width: 300vw;
	height: 100%;
	top: 0;
	left: -100vw;
	background: rgba(10, 10, 10, 0.16);
	z-index: 15;
	
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s ease-in-out;
}

/* background */
.main .background {
	position: absolute;
	width: 100vw;
	height: calc(100% - 65px);
	
	top: 0;
	left: calc((100vw - 100%) / 2 * (-1));
	right: calc((100vw - 100%) / 2 * (-1));

	overflow: hidden;
	z-index: -1;
}
@media (max-width: 900px) {
	.main .background {
		height: 165px;
	}
}
.main .background img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 100%;
	height: auto;
	min-height: 100%;
	object-fit: cover;
}

/* form */
.main .form {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;

	padding-top: 25px;
	z-index: 25;
}
@media (max-width: 900px) {
	.main .form {
		padding-top: 50px;
	}
}
.main .form__input-wrapper {
	position: relative;

	width: 410px;
	height: 57px;

	z-index: 2;
}
@media (max-width: 550px) {
	.main .form__input-wrapper {
		width: 100%;
	}
}
.main .form__input {
	position: relative;
	display: flex;
	align-items: center;

	width: 100%;
	height: 100%;

	font-size: 16px;
	font-weight: 400;
	line-height: 17px;
	color: rgba(10, 10, 10, 0.75);

	background: #FFFFFF;
	border: 0;
	border-radius: 12px;
	box-shadow: 0 0 6px rgba(10, 10, 10, 0.16);

	padding: 20px 69px 20px 30px !important;
	margin: 0 auto;

	cursor: pointer;
}
.main .form__input:focus {
	border: 2px solid #007C4E;
	padding: 18px 67px 18px 28px !important;
}
.main .form__input::placeholder
.main .form__input::-moz-placeholder,
.main .form__input::-webkit-input-placeholder {
	font-size: 16px;
	font-weight: 400;
	line-height: 17px;
	color: rgba(10, 10, 10, 0.75);
}
@media (max-width: 550px) {
	.main .form .form__input {
		/* font-size: 14px; */
		font-size: 16px;
		padding: 20px 53px 20px 30px !important;
	}
	.main .form__input:focus {
		padding: 18px 51px 18px 28px !important;
	}

	.main .form__input::placeholder
	.main .form__input::-moz-placeholder,
	.main .form__input::-webkit-input-placeholder {
		/* font-size: 14px; */
		font-size: 16px;
	}
}
.main .form__input-button {
	position: absolute;
	
	width: 24px;
	height: 24px;

	top: 50%;
	right: 25px;
	transform: translateY(-50%);

	border: 0;
	border-radius: 0;
	background: transparent;

	padding: 0;
	margin: 0;

	cursor: pointer;
}
@media (max-width: 550px) {
	.main .form__input-button {
		right: 15px;
	}
}
.main .form__input-button:after {
	content: '';
	position: absolute;
	
	width: 24px;
	height: 24px;
	
	top: 0;
	right: 0;

	background-image: url('./../images/arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;

	transition: all 0.4s ease-in-out;
	pointer-events: none;
	z-index: 1;
}
.main .form.active .form__input-button:after {
	transform: rotate(-180deg);
}
.main .form__elements {
	position: absolute;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;

	width: 505px;
	height: auto;

	top: calc(100% + 30px);
	left: 50%;
	transform: translateX(-50%);

	margin: 0;
	padding: 45px 30px 30px;

	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s ease-in-out;
}
.main .form__elements:before {
	content: '';
	position: fixed;

	width: 20px;
	height: 20px;

	top: 20px;
	left: calc(50% - 15px);

	background: #FFFFFF;
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.main .form__elements:after {
	content: '';
	position: absolute;
	width: 100%;
	height: calc(100% - 15px);
	
	top: 15px;
	left: 0;

	background: #FFFFFF;
	border: 0;
	border-radius: 6px;
	box-shadow: 0 0 6px rgba(10, 10, 10, 0.16);

	z-index: -1;
} 
@media (max-width: 550px) {
	.main .form__elements {
		flex-direction: column;
		width: 100%;
		max-height: 350px;

		padding: 15px;
		margin-top: 15px;

		background: #FFFFFF;
		border: 0;
		border-radius: 6px;
		box-shadow: 0 0 6px rgba(10, 10, 10, 0.16);

		overflow: auto;
	}

	.main .form__elements:after {
		display: none;
	}
}
.main .form__elements.active {
	top: 100%;
	opacity: 1;
	pointer-events: all;
}
.main .form__elements.active:before {
	top: 10px;
}
.main .form__elements ul {
	display: block;

	list-style: none;
	margin: 0;
	padding: 0;
}
@media (max-width: 550px) {
	.main .form__elements ul {
		width: 100%;
	}
}
.main .form__elements ul li {
	position: relative;
	padding: 0 15px 0 25px;
}
@media (max-width: 550px) {
	.main .form__elements ul li {
		padding-right: 0;
	}
}
.main .form__elements ul li span {
	position: absolute;
	top: 5px;
	left: 0;

	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: #007C4E;
	text-transform: uppercase;
}
.main .form__elements ul li a {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #333333;
	text-align: left;
	text-decoration: none;
}
@media (max-width: 550px) {
	.main .form__elements ul li span {
		top: 7px;
	}

	.main .form__elements ul li a {
		font-size: 16px;
		line-height: 30px;
	}
}

/* map */
.main .map {
	position: relative;
	display: flex;
	align-items: stretch;

	border: 0;
	border-radius: 6px;
	background: #FFFFFF;
	box-shadow: 0 0 6px rgba(10, 10, 10, 0.16);
	
	margin-top: 25px;

	z-index: 1;
	overflow: hidden;
}
@media (max-width: 900px) {
	.main .map {
		flex-direction: column-reverse;
		width: calc(100% + 30px);
		margin: 50px -15px 0;

		overflow: visible;
	}
}
.main .map__left {
	width: 40%;
	border-right: 1px solid #C0C0C0;
	padding: 30px 20px 30px 25px;
}
@media (max-width: 900px) {
	.main .map__left {
		width: 100%;
		border-right: 0;
		border-top: 1px solid #C0C0C0;

		padding: 15px 15px 30px;
	}
}
.main .map__left .slick-list{
	overflow: visible;
}
.main .map__left .slick-slide {
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s ease-in-out;
}
.main .map__left .slick-slide.slick-active {
	opacity: 1;
	pointer-events: all;
}
.main .map__left .slick-arrow {
	position: absolute;
	width: 28px;
	height: 28px;
	
	font-size: 0;
	padding: 0;

	background: #FFFFFF;
	border: 1px solid #C0C0C0;
	border-radius: 50%;

	top: 30px;

	overflow: hidden;
	cursor: pointer;
	z-index: 1;

	transition: all 0.4s ease-in-out;
}
.main .map__left .slick-arrow:hover {
	border: 1px solid #333333;
}
.main .map__left .slick-arrow:before {
	content: '';
	position: absolute;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 8px;
	height: 14px;

	top: calc((28px - 16px) / 2);
	left: calc((28px - 12px) / 2);

	background-image: url('./../images/slick-arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.main .map__left .slick-arrow.slick-prev {
	right: 53px;
}
.main .map__left .slick-arrow.slick-next {
	right: 20px;
}
@media (max-width: 900px) {
	.main .map__left .slick-arrow {
		top: 15px;
	}
	.main .map__left .slick-arrow.slick-prev {
		right: 48px;
	}
	.main .map__left .slick-arrow.slick-next {
		right: 15px;
	}
}
.main .map__left .slick-arrow.slick-next:before {
	top: calc((28px - 16px) / 2);
	left: calc((28px - 8px) / 2);

	transform: scaleX(-1);
}
.main .map__right {
	position: relative;

	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: 60%;

	background: #FFFFFF;

	z-index: 10;
}
@media (max-width: 900px) {
	.main .map__right {
		width: 100%;
		padding-bottom: 15px;
	}
}
.main .map__right svg {
	position: relative;
}
.main .map__right svg path {
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}
.main .map__right svg g#gb:hover path {
	fill: #797979;
}
.main .map__right svg path:hover,
.main .map__right svg path.hover {
	fill: #797979;
}
.main .map__right svg path.active {
	fill: #00925B;
}
.main .map__right-tooltips {

}
@media (max-width: 520px) {
	.main .map__right-tooltips {
		display: none;
	}
}
.main .map__right-tooltip {
	position: absolute;

	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	color: #FFFFFF;
	text-transform: none;
	white-space: nowrap;

	border: 0;
	border-radius: 4px;
	background: #007C4E;

	padding: 5px 10px;
	z-index: 10;

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease-in-out;
}
.main .map__right-tooltip:before {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	top: -3px;
	left: calc(50% - 5px);
	transform: rotate(45deg);
	background: #007C4E;
	z-index: -1;
}
.main .map__right-tooltip.active {
	opacity: 1;
}
.main .map__map {
	position: relative;
	display: flex;
	align-items: flex-start;
}
@media (max-width: 520px) {
	.main .map__map svg {
		width: 600px;
		height: auto;
	}
}
@media (max-width: 470px) {
	.main .map__map svg {
		width: 550px;
	}
}
@media (max-width: 440px) {
	.main .map__map svg {
		width: 500px;
	}
}
@media (max-width: 390px) {
	.main .map__map svg {
		width: 450px;
	}
}
@media (max-width: 355px) {
	.main .map__map svg {
		width: 400px;
	}
}

/* Slick */
.main .map__item {
	position: relative;
}
.main .map__item-header {
	display: block;

	width: 285px;
	max-width: 100%;
	margin: 0 auto;
}
@media (max-width: 900px) {
	.map .map__item-header {
		width: 100%;
	}
}
.main .map__item-short-name {
	position: absolute;
	top: 6px;
	left: 0;

	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	color: #C0C0C0;
	text-transform: uppercase;
	text-align: left;
}
@media (max-width: 1000px) {
	.main .map__item-short-name {
		top: -15px;
		left: -10px;
	}
}
@media (max-width: 900px) {
	.main .map__item-short-name {
		position: static;

		font-size: 16px;
		line-height: 28px;
	}
}
.main .map__item-name {
	display: block;

	font-size: 24px;
	font-weight: 700;
	line-height: 29px;
	color: #00925B;
	text-align: left;

	margin-top: 3px;
	margin-bottom: 20px;
}
@media (max-width: 900px) {
	.main .map__item-name {
		margin-top: 15px;
	}
}
.main .map__item-flag {
	display: block;

	width: auto;
	height: 40px;

	margin-right: auto;
	margin-bottom: 15px;
}
.main .map__item-documents {
	display: block;
	
	width: 285px;
	max-width: 100%;
	margin: 0 auto;
}
@media (max-width: 900px) {
	.map .map__item-documents {
		width: 100%;
	}
}
.main .map__item-documents-header {
	display: block;
	width: 100%;

	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	color: #00925B;
	text-align: left;
	text-transform: uppercase;

	margin-bottom: 15px;
}
.main .map__item-documents-item {
	display: flex;
	align-items: center;

	border: 0;
	border-bottom: 1px solid #C0C0C0;

	padding: 10px 0;
}
.main .map__item-documents-item:first-of-type {
	border-top: 1px solid #C0C0C0;
}
.main .map__item-documents-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.main .map__item-documents-list .tooltip {
	position: relative;
	margin-right: 10px;
}
.main .map__item-documents-list .tooltip-name {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;

	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	color: #00925B;

	border: 1px solid #C0C0C0;
	border-radius: 50%;
	padding-top: 3px;
	
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.main .map__item-documents-list .tooltip-name:hover {
	border-color: #00925B;
}
.main .map__item-documents-list .tooltip-description {
	position: absolute;

	width: 325px;
	height: auto;

	top: -20px;
	left: calc(100% + 10px);

	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	color: #333333;

	background: #FFFFFF;
	border-radius: 6px;
	box-shadow: 0 0 6px rgba(10, 10, 10, 0.16);

	margin: 0;
	padding: 10px 15px;

	pointer-events: none;
	opacity: 0;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 400px) {
	.main .map__item-documents-list .tooltip-description { 
		width: 260px;
	}
}
.main .map__item-documents-list .tooltip-description span {
	display: block;
}
.main .map__item-documents-list .tooltip-description .name {
	font-weight: 700;
	color: #00925B;
}
.main .map__item-documents-list .tooltip-name:hover + .tooltip-description {
	opacity: 1;
}
.main .map__item-documents-item .document-name {
	display: inline-block;
	
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	color: #333333;
	text-align: left;
	text-transform: lowercase;

	margin-right: 30px;
}
.main .map__item-documents-item .required {
	display: inline-block;
	width: 24px;
	height: 16px;

	margin-left: auto;
}
.main .map__item-documents-item .not-required {
	display: inline-block;
	width: 18px;
	height: 18px;

	margin-left: auto;
	margin-right: 3px;
}
.main .map__item .contact-with-fleed-menager,
.main .map__item .button-show-form {
	display: block;

	width: 285px;
	max-width: 100%;
	margin: 20px auto 0;
}
@media (max-width: 900px) {
	.main .map__item .contact-with-fleed-menager,
	.main .map__item .button-show-form {
		width: 100%;
	}

	.main .map__item .button-show-form br {
		display: none;
	}
}
.main .map__item .contact-with-fleed-menager {
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	color: #FF4F01;
	text-align: center;

	background: #FFFFFF;
	border: 1px solid #FF4F01;
	border-radius: 6px;

	padding: 15px 10px;
}
.main .map__item .button-show-form {
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	color: #ffffff;
	text-align: center;

	background: #007C4E;
	border: 1px solid #007C4E;
	border-radius: 6px;

	padding: 15px 10px;

	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.main .map__item .button-show-form:hover {
	background: #00925B;
	border-color: #00925B;
}

/* Section - form wrapper */
.form-wrapper {
	position: relative;
	padding: 50px 0;

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease-in-out;
}
.form-wrapper:before {
	content: '';
	position: absolute;
	width: 300vw;
	height: 100%;
	top: 0;
	left: -100vw;
	background: rgba(10, 10, 10, 0.16);
	z-index: 15;
	
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s ease-in-out;
}
.form-wrapper.active {
	opacity: 1;
	pointer-events: all;
}
.form__header {
	display: flex;
	justify-content: center;

	font-family: 'BNPP Sans Condensed', sans-serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 43px;
	color: #00925B;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;

	margin-bottom: 15px;
}
@media (max-width: 550px) {
	.form__header {
		font-size: 24px;
		line-height: 32px;
	}
}
.form__subheader {
	display: block;
	width: 900px;
	max-width: 100%;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #333333;
	text-align: center;

	margin: 0 auto 20px;
}
.form-wrapper .form {
	padding-top: 25px;
}
.form-wrapper .form.sent {
	display: none;
}
.form-wrapper .form .form__row {
	display: flex;
	flex-flow: row nowrap;
	width: calc(100% + 30px);
	margin: 0 -15px;
}
.form-wrapper .form .form__item {
	display: flex;
	flex-flow: column;
	
	width: 33.3%;
	padding: 0 15px;
	margin-bottom: 25px;
}
.form-wrapper .form .form__item.form__item--medium {
	width: calc(33.3% / 2);
}
.form-wrapper .form .form__item.form__item--small {
	width: calc(33.3% / 4);
}
@media (max-width: 900px) {
	.form-wrapper .form .form__row {
		flex-flow: wrap;
	}
	.form-wrapper .form .form__item {
		width: 100%;
	}	
	.form-wrapper .form .form__item.form__item--medium {
		width: 50%;
	}
	.form-wrapper .form .form__item.form__item--small {
		width: 50%;
	}
}
.form-wrapper .form .form__label {
	display: block;
	width: 100%;

	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	color: #0A0A0A;
	white-space: nowrap;

	margin-bottom: 8px;
}
.form-wrapper .form .form__input {
	display: block;
	width: 100%;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #0A0A0A;
	text-align: left;

	border: 1px solid #C0C0C0;
	border-radius: 8px;

	padding: 12px 15px;
}
.form-wrapper .form .form__item.error .form__input,
.form-wrapper .form .form__input.error {
	border: 2px solid #FF0000;
	padding: 11px 14px;
}
.form-wrapper .form .form__input:focus {
	border: 2px solid #007C4E;
	padding: 11px 14px;
}
.form-wrapper .form .form__separator {
	width: 100%;
	border-top: 1px solid #C0C0C0;
	margin-bottom: 25px;
}
.form-wrapper .form .form__info {
	padding: 0 15px;
}
.form-wrapper .form .form__info p {
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	color: #333333;
	text-align: left;

	margin: 0;
}

.form-wrapper .form .form__rodo {
	margin-top: 30px;
}
.form-wrapper .form .form__rodo .form__rodo-header,
.form-wrapper .form .form__rodo .form__rodo-subheader {
	display: block;
	width: 100%;
	
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
	color: #007C4E;
	text-align: left;
}
@media (max-width: 550px) {
	.form-wrapper .form .form__rodo .form__rodo-header {
		font-size: 20px;
		line-height: 22px;
	}
}
.form-wrapper .form .form__rodo .form__rodo-subheader {
	font-size: 16px;
	font-weight: 400;
}
.form-wrapper .form .form__rodo .form__rodo-item {
	display: inline-block;
	width: 100%;
	margin-top: 25px;
	
	cursor: pointer;
}
.form-wrapper .form .form__rodo .form__rodo-item .form__input-checkbox {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
.form-wrapper .form .form__rodo .form__rodo-item .form__input-checkbox-desc {
	position: relative;
	display: inline-block;
	max-width: calc(100% - 39px);
	left: 39px;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #0A0A0A;
	text-align: left;
}
.form-wrapper .form .form__rodo .form__rodo-item .form__input-checkbox-desc:before {
	content: '';
	position: absolute;
	top: 50%;
	left: -39px;
	width: 24px;
	height: 24px;
	border: 1px solid #C0C0C0;
	border-radius: 4px;
	transform: translateY(-50%);
}
.form-wrapper .form .form__rodo .form__rodo-item.error .form__input-checkbox-desc:before {
	width: 22px;
	height: 22px;
	border: 2px solid #FF0000;
}

.form-wrapper .form .form__rodo .form__rodo-item .form__input-checkbox:checked + .form__input-checkbox-desc:before {
	width: 24px;
	height: 24px;
	border: 1px solid #C0C0C0;
}
.form-wrapper .form .form__rodo .form__rodo-item .form__input-checkbox-desc:after {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(-39px + 7px);
	width: 12px;
	height: 12px;
	background: #007C4E;
	transform: translateY(-50%);

	opacity: 0;
	transition: all 0.4s ease-in-out;
}
.form-wrapper .form .form__rodo .form__rodo-item .form__input-checkbox:checked + .form__input-checkbox-desc:after {
	opacity: 1;
}
.form-wrapper .form .form__rodo .form__rodo-item .form__input-checkbox-desc .red {
	color: #FF0000;
}
.form-wrapper .form .form__rodo .form__rodo-required-description,
.form-wrapper .form .form__rodo .form__rodo-required-description span {
	display: inline-flex;
	align-items: flex-start;

	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	color: #0A0A0A;
	text-align: left;
}
.form-wrapper .form .form__rodo .form__rodo-required-description {
	width: 100%;
	margin: 25px 0 0;
}
.form-wrapper .form .form__rodo .form__rodo-required-description .red {
	color: #FF0000;
}

.form-wrapper .form .form__more {
	display: block;
}
.form-wrapper .form .form__more-link {
	display: inline-flex;
	align-items: center;
	
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #007C4E;
	text-decoration: none;

	margin-top: 5px;
}
.form-wrapper .form .form__more-link svg {
	margin-top: -4px;
	margin-right: 9px;
	transition: all 0.4s ease-in-out;
}
.form-wrapper .form .form__more-link.active svg {
	transform: rotate(90deg);
}
.form-wrapper .form .form__more-text {
	width: 920px;
	max-width: 100%;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #0A0A0A;
	text-align: left;

	margin: 10px 0 0;
}

.form-wrapper .form .form__submit {
	display: inline-flex;
	align-items: center;
	max-width: 100%;

	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	color: #FFFFFF;
	text-align: center;
	
	border: 0;
	background: #00925B;
	border-radius: 6px;

	margin: 30px 0 0;
	padding: 14px 23px;

	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.form-wrapper .form .form__submit:hover {
	background: #007C4E;
}

.form-sent {
	display: none;
	/* display: flex; */
	align-items: center;
	width: 100%;
	
	padding-top: 50px;
}
.form-sent.sent {
	display: flex;
}
.form-sent svg {
	height: 55px;
	width: auto;
	margin-right: 30px;
}
.form-sent svg path {
	fill: #007C4E;
}
.form-sent span {
	font-size: 24px;
	font-weight: 700;
	line-height: 29px;
	color: #007C4E;
	text-align: left;
}

/* Aside - faqs and downloads */
.aside {
	position: relative;

	padding: 40px 0 85px;
}
@media (max-width: 900px) {
	.aside {
		padding: 40px 0;
	}
}
.aside:after {
	content: '';
	position: absolute;
	width: 300vw;
	height: 100%;
	top: 0;
	left: -100vw;
	background: rgba(10, 10, 10, 0.16);
	z-index: 15;
	
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s ease-in-out;
}
.aside:before {
	content: '';
	position: absolute;
	
	width: 100vw;
	height: calc(100% + 65px);

	top: -65px;
	left: calc((100vw - 100%) / 2 * (-1));
	right: calc((100vw - 100%) / 2 * (-1));

	background: #00925B;
	z-index: -1;
	transition: height 0.4s ease-in-out, top 0.4s ease-in-out;
}
.form-wrapper.active + .aside:before {
	height: 100%;
	top: 0;
}

/* tabs */
.aside .tabs {
	display: flex;
	/* align-items: center; */
	align-items: stretch;
	justify-content: space-between;
}
.aside .tabs .tab-button {
	position: relative;
	display: block;
	width: 100%;

	font-family: 'BNPP Sans Condensed', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 29px;
	letter-spacing: 0.5px;
	color: #EDEFF2;
	text-transform: uppercase;

	border: 0;
	border-radius: 0;
	background: transparent;

	margin: 0;
	padding: 20px 30px;
	
	z-index: 1;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.aside .tabs .tab-button:hover {
	color: rgba(237, 239, 242, 0.75);
}
@media (max-width: 1000px) {
	.aside .tabs .tab-button {
		font-size: 20px;
		line-height: 26px;

		padding: 15px 0;
	}
}
.aside .tabs .tab-button:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	
	width: 100%;
	height: 1px;

	background: #EDEFF2;
	z-index: -1;
}
.aside .tabs .tab-button:hover {

}
.aside .tabs .tab-button.active {
	font-weight: 700;
}
.aside .tabs .tab-button.active:after {
	height: 6px;
}

/* tabs-content */
.aside .tabs-content {

}
.aside .tab-item {

}

/* faq */
.aside .tabs-content .faq {
	
}
.aside .tabs-content .faq__item {
	display: block;
	width: 100%;

	border-bottom: 1px solid #EDEFF2;
}
.aside .tabs-content .faq__item-button {
	position: relative;
	display: block;
	width: 100%;
	height: auto;

	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	color: #EDEFF2;
	text-align: left;

	border: 0;
	background: transparent;

	padding: 30px 36px 20px 0;
	box-sizing: border-box;

	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.aside .tabs-content .faq__item-button:hover {
	color: rgba(237, 239, 242, 0.75);
}
.aside .tabs-content .faq__item-button:after {
	content: '';
	position: absolute;
	
	width: 16px;
	height: 8px;

	top: 50%;
	right: 0;
	transform: translateY(-50%);

	background-image: url('./../images/faq-arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	transition: all 0.4s ease-in-out;
	z-index: 1;
	pointer-events: none;
}
.aside .tabs-content .faq__item-button:hover {
	
}
.aside .tabs-content .faq__item.active .faq__item-button {
	
}
.aside .tabs-content .faq__item.active .faq__item-button:after {
	transform: translateY(-50%) rotate(-180deg);
}
.aside .tabs-content .faq__item-text {
	display: block;
	width: 85%;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #EDEFF2;
	text-align: left;

	margin: 0 auto 0 0;
	padding-bottom: 20px;
}
@media (max-width: 1000px) {
	.aside .tabs-content .faq__item-text {
		width: 100%;
		padding-right: 36px;
	}
}
.aside .tabs-content .faq__item-text a {
	color: #EDEFF2;
	text-decoration: none;
}

/* download */
.aside .tabs-content .download {
	
}
.aside .tabs-content .download__item {
	display: flex;
	align-items: center;
	
	width: 100%;
	height: auto;

	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	color: #EDEFF2;
	text-align: left;
	text-decoration: none;

	border-bottom: 1px solid #EDEFF2;

	margin: 0;
	padding: 20px 0;
}
.aside .tabs-content .download__item-image {
	
}
.aside .tabs-content .download__item-image--file {
	width: 24px;
	height: auto;
	margin-right: 15px;
}
.aside .tabs-content .download__item-image--download {
	width: 18px;
	height: auto;
	margin-left: auto;
}
.aside .tabs-content .download__item-text {
	color: #EDEFF2;

	margin-top: 3px;
	margin-right: 30px;
}