@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
`
:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Work Sans", sans-serif;
}

*{
	margin: 0;
	padding: 0;
}

body{
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
}

header{
	background: #222222;
	display: flex;
	justify-content: center;
}
.header{
	width: 100vw;
	overflow-x: hidden;
	/*min-height: 100vh;*/
}

nav{
	display: flex;
	width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	position: relative;
	/*overflow-x: hidden;*/
}
/*nav.active{
	overflow-x: visible ;
}*/

nav ul{
	list-style-type: none;
}

.menu-items{
	height: 100%;
	display: flex;
	align-items: center;
}

.logo>img{
	width: 90px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.menu a{
	color: #D3D3D3;
	text-decoration: none;
}

.menu{
	display: flex;
	column-gap: 75px;
	margin-left: 90px;
	align-items: center;
	font-size: 16px;
}

.menu li {
  position: relative;
}
.menu li::before {
  content: attr(data);
  display: block;
}
.menu li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 30px;
  right: 0;
  height: 1px;
  background-color: #fff;
  transition: width 300ms;
  width: 0;
}
.menu li:hover::after {
  width: 100%;
  left: 0;
}

.mobile-menu>div{
	margin-left: auto;
	display: flex;
	height: 100%;
	align-items: center;
}


nav .contact{
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 122%;
	color: #d3d3d3;
	text-decoration: none;
	column-gap: 10px;
}

nav .contact {
  position: relative;
}
nav .contact::before {
  content: attr(data);
  display: block;
}
nav .contact::after {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  right: 0px;
  height: 1px;
  background-color: #fff;
  transition: width 300ms;
  width: 0;
}
nav .contact:hover::after {
  width: calc(100% - 50px);
  left: 50px;
}
nav .contact>svg>path{
	fill: #CACACA;
	transition: 0.2s all;
}
nav .contact:hover>svg>path{
	fill: #25d366;
}


nav .language{
	margin-left: 45px;
	font-weight: 400;
	font-size: 16px;
	color: #d3d3d3;
	display: flex;
	align-items: center;
	column-gap: 10px;
	position: relative;
	cursor: pointer;
}

nav .language>.list{
	position: absolute;
	background: #222222;
	display: flex;
	flex-direction: column;
	row-gap: 5px;
	top: 60px;
	left: -25px;
	opacity: 0;
	z-index: 100;
	transition: 0.3s all;
}

nav .language>.list>a{
	font-weight: 400;
	font-size: 16px;
	color: #d3d3d3;
	display: flex;
	align-items: center;
	column-gap: 10px;
	padding: 10px 35px;
	text-decoration: none;
}

nav .language>.list>a:hover{
	background: #333333;
}

nav .language>.list.active{
	opacity: 1;
}
.lang-strelka{
	transition: 0.2s all;
	transform: rotate(0deg);
}

.lang-strelka.active{
	transform: rotate(180deg);
}

.mobile-menu{
	display: flex;
	width: 100%;
}

.haburger{
	width: 40px;
	height: 1px;
	position: relative;
	align-self: center;
	display: flex;
	align-items: center;
	margin-left: auto;
	background: #fff;
	transition: 0.4s all;
}

.haburger:after{
	content: '';
	width: 40px;
	height: 1px;
	background: #fff;
	top: -13px;
	position: absolute;
	transition: 0.4s all;
}
.haburger:before{
	content: '';
	width: 40px;
	height: 1px;
	background: #fff;
	top: 13px;
	position: absolute;
	transition: 0.4s all;
}
.haburger.active{
	background: transparent;
	width: 0px;
	margin-right: 30px;
}
.haburger.active:after{
	transform: rotate(45deg);
	top: 0px;
}
.haburger.active:before{
	transform: rotate(-45deg);
	top: 0px;
}
.haburger{
	display: none;
}



@media only screen and (max-width: 1000px) {

.haburger{
	display: block;
}

.mobile-menu{
	display: flex;
	position: absolute;
	flex-direction: column;
	height: calc(100dvh - 85px);
	background: #222222;
	top: 85px;
	width: 320px;
	max-width: 100vw;
	right: -320px;
	transition: 0.4s all;
	z-index: 99;
}

.mobile-menu.active{
	right: 0;
}

.mobile-menu>.menu{
	flex-direction: column;
	margin-left: 0;
	row-gap: 40px;
	margin-top: 40px;
	font-size: 20px;
}

.mobile-menu>div{
	flex-direction: column-reverse;
	margin-left: 0;
	row-gap: 20px;
	margin-bottom: 30px;
}

.logo>img{
	width: 80px;
	padding-top: 15px;
	padding-bottom: 15px;
}
nav{
	padding-left: 30px;
	padding-right: 30px;
}

.menu li::after{
	bottom: 0;
	top: 30px;
}
.lang-strelka{
	transform: rotate(180deg);
}
.lang-strelka.active {
    transform: rotate(0deg);
}
nav .language>.list{
	top: -125px;
	border: 1px solid #333333;
	/*border-bottom: 0;*/
}

nav .language{
	margin-left: 30px;
}
}

mark{
	color: #3c8044;
	background: transparent;
}


.hero{
	background: #3C8044;
	width: 100vw;
	max-width: 100vw;
	height: 500px;
	position: relative;
	overflow:hidden;
}

.hero>img.left{
	position: absolute;
	top: 0;
	left: 0;
	width: 12vw;
}

.hero>img.right{
	position: absolute;
	top: 0;
	right: 0;
}
.hero>img.left2{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 12vw;
}
@media only screen and (max-width: 1420px) {
.hero>img.right{
	right: -120px;
}


}

@media only screen and (max-width: 1300px) {
.hero>img.right{
	right: -200px;
}
}

@media only screen and (max-width: 1200px) {
.hero>img.right{
	display: none;
}
.hero>img.left2{
	display: block;
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
	transform: rotate(180deg);
}
}


.container-hero{
	padding-left: max(calc((100vw - 1440px)/2), 45px);
	padding-top: 110px;
}

.container-hero>h1{
	font-weight: 700;
	font-size: 70px;
	color: #fff;
	z-index: 2;
	position: relative;
}

.container-hero>p{
	font-weight: 600;
	font-size: 24px;
	color: #fff;
	width: 75%;
	margin-top: 50px;
	z-index: 2;
	line-height: 140%;
	position: relative;
}

.container-hero>p>b{
	font-weight: 600; 
	font-size: 30px;
}
@media only screen and (max-width: 1150px) {
.container-hero>h1{
	font-size: 45px;
}

.container-hero>p{
	font-size: 20px;
	width: 100%;
}
.container-hero>p>b{ 
	font-size: 24px;
}

}

@media only screen and (max-width: 800px) {
	.container-hero{
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 40px;
	padding-bottom: 35px;
}
.hero{
	height: auto;
}
}

@media only screen and (max-width: 600px) {
	.container-hero{
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 30px;
}

.container-hero>h1{
	font-size: 30px;
}

.container-hero>p{
	font-size: 16px;
	width: 100%;
	margin-top: 40px;
}
.container-hero>p>b{ 
	font-size: 20px;
}
}
.map{
	display: flex;
	justify-content: center;
}

.grid-map{
	margin-top: 100px;
	max-width: 1440px;
	width: calc(100% - 90px);
	padding-left: 45px;
	padding-right: 45px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: repeat(7, minmax(300px, auto));
	grid-gap: 30px;
}


.grid-map>.item{
	border: 2px solid #eaeaea;
	border-radius: 20px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
	padding: 20px;
	cursor: pointer;
	transition: 0.2s all;
	overflow:hidden;
}


.grid-map>.item.active{
	background: #3c8044;
	color: #fff !important;
	transform: scale(1.02);
	border:0;
}
.svgmap.active{
	background: #fff !important;
	color: #fff !important;
	transform: scale(1.00) !important;
	border:0;
}
.svgmap{
	background: #fff !important;
	color: #fff !important;
	transform: scale(1.00) !important;
	border:0;
}

.grid-map>.item.active h2{
	color: #fff !important;
}
.grid-map>.item.active ul{
	color: #fff !important;
}

.svgmap:hover{
	background: #fff !important;
	transform: scale(1.00) !important;
}

.svgmap{
	grid-column: 1/3;
	grid-row: 1/4;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.dableitem1{
	grid-column: 3/5;
}

.dableitem2{
	grid-column: 1/3;
}
.fullitem{
	grid-column: 1/5;
}

.svgmap>svg{
	width: 100%;
	transform: scale(1.8);
}

.svgmap>svg>path{
	fill: #ccc;
	transition: 0.2s all;
	cursor: pointer;
}
.svgmap>svg>path.active{
	fill: #3c8044;
}

.grid-map>.item>h2{
	font-weight: 600;
	font-size: 33px;
	color: #262626;
}

.grid-map>.item>div{
	display: flex;
	column-gap: 50px;
	font-weight: 400;
	font-size: 14px;
	color: #525252;
	margin-top: 30px;
	margin-left: 20px;
}

@media only screen and (max-width: 1300px) {
.svgmap {
    grid-column: 1 / 5;
}
.dableitem1 {
    grid-column: 1 / 5;
}
.brandenburg{
	grid-column: 1 / 3;
}
.bremen{
	grid-column: 3 / 5;
}
.hessen{
	grid-column: 3 / 5;
}
.rheinland-pfalz{
	grid-column: 1 / 5;
}
.sachsen-anhalt{
	grid-column: 3 / 5;
}
.sachsen{
 	grid-column: 1 / 3;
}
.thuringen{
	grid-column: 3 / 5;
}
.saarland{
	grid-column: 1 / 3;
}
}

.grid-map>.item>div{
	flex-wrap: wrap;
	row-gap: 20px;
}

@media only screen and (max-width: 750px) {
	.grid-map{
		padding-left: 20px;
		padding-right: 20px;
		width: calc(100vw - 40px);
	}
	.grid-map>.item>h2{
		font-weight: 600;
	    font-size: 25px;
	    color: #262626;
	}
	.svgmap>svg{
		width: 100%;
    	transform: scale(1.2);
	}
	.svgmap{
		grid-row: 1 / 3;
	}
	.grid-map>.item{
		grid-column: 1 / 5;
	}
}

@media only screen and (max-width: 550px) {
	.grid-map>.item>h2{
		font-weight: 600;
	    font-size: 25px;
	    color: #262626;
	}
	.svgmap>svg{
		width: 100%;
    	transform: scale(1.0);
	}
	.svgmap{
		grid-row: 1 / 2;
	}
	
}


.process{
	background: #3C8044;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.container-process{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	display: flex;
	width: calc(100% - 90px);
	justify-content: space-between;
	align-items: flex-end;
}

.process>h1{
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #fff;
	margin-bottom: 70px;
}

.container-process>div{
	text-align: center;
	max-width: 400px;
}

.container-process>div:nth-child(1){
	margin-top: 28.5px;
}

.container-process>div:nth-child(3){
	margin-top: 10px;
}

.container-process>div>p{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #e0e0e0;
	margin-top: 20px;
}
.container-process img:nth-child(2){
	margin-top: auto;
	margin-bottom: 100px;
}

.container-process img:nth-child(4){
	margin-top: 30px;
	margin-bottom: auto;
}

@media only screen and (max-width: 1350px) {
	.container-process>div>p{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #e0e0e0;
	margin-top: 20px;
}
}

@media only screen and (max-width: 1220px) {
.container-process{
	flex-direction: column;
	align-items: center;
	row-gap: 80px;
	max-width: 400px;
}

.container-process img:nth-child(2) {
    margin-bottom: 0px;
    transform: rotate(90deg);
    margin-right: auto;
}

.container-process img:nth-child(4) {
    transform: rotate(90deg);
    margin-left: auto;
}
}

@media only screen and (max-width: 600px) {
.container-process{
	row-gap: 40px;
	padding-left: 20px;
	padding-right: 20px;
}
.process>h1 {
    font-size: 30px;
    margin-bottom: 30px;
}
.container-process>div>p {
    font-size: 16px;
    margin-top: 0px;
}
.container-process>div>img{
    transform: scale(0.7);
}

.container-process>img {
    transform: rotate(90deg) scale(0.7) !important;
}
.container-process img:nth-child(2) {
    margin-top: 10px;
}
}

.btcta{
	box-shadow: inset 0 0 92px 0 rgba(0, 0, 0, 0.25);
	background: url("images/btcta.png");
	background-repeat: no-repeat;
	background-size: cover;
	height: 900px;
	display: flex;
	margin-top: 100px;
	align-items: center;
	background-position: center;
}

.container-benefits{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}


.benefits{
	margin-top: 100px;
	width: 1350px;
	max-width: calc(100% - 90px);
	padding-left: 45px;
	padding-right: 45px;
}

.benefits>h1{
	font-family: "Work Sans", sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;

}

.benefits .gridd{
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	column-gap: 30px;
	margin-top: 50px;
}

.benefits .item-gridd{
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
	background: linear-gradient(225deg, #fff 0%, #ededed 100%);
	border-radius: 10px;
	padding: 30px;
	max-width: 600px;
}

.benefits .item-gridd:last-child{
	max-width: 100%;

}

.benefits .item-gridd>h3{
	font-family: "Work Sans", sans-serif;
	font-weight: 700;
	font-size: 19px;
	text-transform: uppercase;
	color: #333;
	margin-top: 30px;
}

.benefits .item-gridd>ul{
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #494949;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 24px;
}



.poly{
	display: flex;
	background: linear-gradient(180deg, #297c53 0%, #3C8044 100%);
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.25);
	
	height: 700px;	
	width: 100%;
	clip-path: polygon(30% 10%, 100% 20%, 100% 80%, 70% 90%, 0 80%, 0 20%);
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 40px;
}

.poly>h1{
	font-family: "Work Sans", sans-serif;
	font-weight: 700;
	font-size: 48px;
	text-align: center;
	color: #fff;
}

.poly>a{
	text-decoration: none;
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	border-radius: 15px;
	padding-left: 20px;
	padding-right: 20px;
	height: 80px;
	background: #00c262;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 800px) {
.poly>h1 {
    font-size: 30px;
}
.poly>a{
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	border-radius: 15px;
	padding: 20px;
	max-width: 80%;
	background: #00c262;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
}

@media only screen and (max-width: 600px) {
.poly>h1 {
    font-size: 25px;
}
.poly>a{
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	border-radius: 15px;
	padding: 20px;
	max-width: 80%;
	background: #00c262;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.poly{
	height: 800px;
}
}

.FAQ{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.FAQ>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;
	margin-top: 100px;
}

.FAQ>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 26px;
	text-align: center;
	color: #525252;
}

.container-faq{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	margin-top: 50px;
	width: calc(100% - 90px);
}

details {
    margin-bottom: 30px;
    overflow: hidden;
    border-bottom: 2px solid #eaeaea;
	border-radius: 7px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
}

summary {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    list-style: none;
    background: #fff;
    font-family: var(--font-family);
	font-weight: 600;
	font-size: 26px;
	color: #262626;
    /*box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);*/
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '';
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
    background: url(images/arr_accordeon.svg);
    width: 22px;
    height: 12px;
    background-position: center;
    background-size: cover;
    top: 35px;
    right: 25px;
}

details[open] summary::after {
    transform: rotate(180deg);
}

.content {
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 0 10px;
    overflow: hidden;
    transition: height 0.3s ease-out;
    padding: 20px;
    font-family: var(--font-family);
	font-weight: 400;
	font-size: 26px;
	color: #525252;
}

.content a{
	color: #525252;
}

@media only screen and (max-width: 1000px) {
	.FAQ>h1{
		font-size: 30px;
	}
	summary{
		font-size: 20px;
	}
	.content{
		font-size: 20px;
	}
	.FAQ>p{
		font-size: 20px;
	}
}

@media only screen and (max-width: 1000px) {
	.FAQ>h1{
		font-size: 25px;
	}
	summary{
		font-size: 18px;
		padding-right: 45px;
	}
	.content{
		font-size: 16px;
	}
	.FAQ>p{
		font-size: 16px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.container-faq{
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 30px;
		width: calc(100% - 40px);
	}
}

footer{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #222;
}

.container-footer{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	padding-top: 90px;
	padding-bottom: 50px;
	display: flex;
	align-items: flex-end;
}
.container-footer>.col{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 400px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	row-gap: 30px;
}

.container-footer>.col>img{
	margin-bottom: 10px;
}

.container-footer>.col>a{
	text-decoration: none;
	color: #fff;
}

.container-footer>a{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 24px;
	color: #fff;
	text-decoration: none;
	margin-left: 100px;
}
.container-footer>.social{
	display: flex;
	column-gap: 70px;
	margin-left: auto;
}



@media only screen and (max-width: 1380px) {
	.container-footer>.col{
		font-size: 16px;
	}
	.container-footer>a{
		font-size: 20px;
	}
}
@media only screen and (max-width: 1300px) {
	.container-footer>a{
		margin-left: 30px;
	}
}

@media only screen and (max-width: 1230px) {
	.container-footer>.social{
		column-gap: 40px;
	}
}
@media only screen and (max-width: 1160px) {
	.container-footer>.social{
		flex-wrap: wrap;
		justify-content: center;
		width: 200px;
		row-gap: 40px;
	}
}

@media only screen and (max-width: 1000px) {
	.container-footer{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		row-gap: 60px;
	}
	.container-footer>.social{
		margin-left: 0;
	}
}

@media only screen and (max-width: 1000px) {
	.container-footer{
		padding-top: 45px;
		padding-bottom: 25px;
	}
}

