@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{
	display: flex;
	justify-content: center;
	background: #3c8044;
	padding-top: 50px;
	padding-bottom: 60px;
}

.container-hero{
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	max-width: 1440px;
}

.container-hero>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.5625rem, 0.8601rem + 3.211vw, 3.75rem);
	text-align: center;
	color: #fff;
}

.container-hero>h2{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	text-align: center;
	color: #fff;
}


.text{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.container-text{
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	max-width: 1440px;
}

.container-text>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1rem, 0.7993rem + 0.9174vw, 1.625rem);
	line-height: 150%;
	color: #525252;
}

.container-text a{
	color: #525252;
}

.container-text>h1{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: clamp(1.25rem, 0.8486rem + 1.8349vw, 2.5rem);
	line-height: 107%;
	color: #3c8044;
	text-align: center;
}

@media only screen and (max-width: 1000px) {
	.container-hero{
		padding-left: 20px;
		padding-right: 20px;
		width: calc(100% - 40px);
	}
	.container-text{
		padding-left: 20px;
		padding-right: 20px;
		width: calc(100% - 40px);
	}
}


.why{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.why>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;
	margin-top: 50px;
	opacity: 0;
	animation: fadeIn 2s forwards;
}



.container-why{
	max-width: 1440px;
	display: flex;
	padding-left: 45px;
	padding-right: 45px;
	flex-wrap: wrap;
	column-gap: 30px;
	margin-top: 75px;
	row-gap: 30px;
	align-items: center;
	justify-content: center;
}

.container-why>div{
	border-radius: 10px;
	max-width: 560px;
	min-height: 430px;
	min-width: calc(50% - 120px);
	padding: 50px;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
	background: linear-gradient(225deg, #fff 0%, #ededed 100%);
	display: flex;
	row-gap: 20px;
	flex-direction: column;

}

.text2>a{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #fff;
	width: calc(100% - 220px);
	padding-left: 110px;
	padding-right: 110px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.07);
	background: #3c8044;
	border-radius: 10px;
	padding-top: 30px;
	padding-bottom: 30px;
	display: flex;
	text-decoration: none;
	margin-top: 30px;
	animation: pulse 2s infinite;
}
.text2{
	border-top: 10px solid #dbdbdb;
	padding-top: 50px;
	margin-top: 50px;
}
.container-why>div:nth-child(2n){
	animation-delay: 0.5s;
}

.container-why>div>h2{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 30px;
	color: #333;
}

.container-why>div>p{
font-family: var(--font-family);
font-weight: 400;
font-size: 16px;
color: #525252;
}

.container-why>div>img{
	margin-top: 20px;
}

.container-why>div>h3{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 45px;
	color: #333;
}
.container-why>div>a{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	border-radius: 10px;
	width: 100%;
	height: 100px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
	background: #3c8044;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff;
	animation: pulse 2s infinite;
}

.container-why>div>a:hover{

}

.container-why>div>svg{
	align-self: center;
	margin-bottom: 45px;
	margin-top: 45px;
}

@media only screen and (max-width: 767px) {
	.text2{
	border-top: 10px solid #dbdbdb;
	padding-top: 30px;
	margin-top: 30px;
}
	.container-why>div{
		max-width: calc(100vw - 60px);
		padding: 20px;
	}
	.container-why{
	max-width: 100vw;
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 40px;
}
.why>h1{
	font-size: 25px;
	padding-left: 30px;
	padding-right: 30px;
}

.container-why>div>h2{
	font-size: 20px;
}
.container-why>div>p{
font-size: 14px;
}
.container-why>div>h3{
	font-size: 25px;
	text-align: center;
}
.container-why>div>svg{
	margin-bottom: 20px;
	margin-top: 20px;
}

.container-why>div>a{
	font-size: 16px;
	height: 70px;
}
.container-why>div {
    min-height: 200px;
}
}


@keyframes pulse {
	0% {
		transform: scale(0.99);
		box-shadow: 0 0 0 0 rgba(60, 128, 68, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(60, 128, 68, 0);
	}

	100% {
		transform: scale(0.99);
		box-shadow: 0 0 0 0 rgba(60, 128, 68, 0);
	}
}

@media only screen and (max-width: 1000px) {
	.container-poate>h1{
		font-size: 20px;
	}
	.container-poate>mark{
		font-size: 30px;
	}
	.container-poate>a{
		font-size: 30px;
		row-gap: 10px;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 600px) {
	.container-poate{
		padding-left: 20px;
		padding-right: 20px;
		width: calc(100% - 40px);
	}
	.container-poate>h1{
		font-size: 18px;
	}
	.container-poate>mark{
		font-size: 20px;
	}
	.container-poate>a{
		font-size: 20px;
		row-gap: 10px;
		margin-top: 20px;
	}
}


footer{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #222;
	margin-top: 100px;
}

.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) {
	footer{
		margin-top: 50px;
	}
	.container-footer{
		padding-top: 45px;
		padding-bottom: 25px;
	}
}



@media only screen and (max-width: 1000px) {
.main{
	width: 100vw;
	overflow-x: hidden;
	min-height: 100vh;
}
}

