@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;
	display: flex;
	justify-content: center;
}


.container-hero{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: 100%;
	display: flex;
	column-gap: 100px;
	padding-top: 80px;
	padding-bottom: 100px;
	width: calc(100% - 90px);
}

.container-hero>div{
	display: flex;
	flex-direction: column;
}

.container-hero>div>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 50px;
	color: #fff;
}

.container-hero>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 26px;
	color: #fff;
	margin-top: 30px;
}

.container-hero>div>a{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #fff;
	border-radius: 7px;
	width: 240px;
	height: 70px;
	align-self: center;
	margin-top: 60px;
	transition: 0.3s all;
}

.container-hero>div>a:hover{
	background: #fff;
	color: #3C8044;
}


@media only screen and (max-width: 1350px) {
	.container-hero{
		flex-direction: column-reverse;
		row-gap: 40px;
	}
}

@media only screen and (max-width: 600px) {
	.container-hero{
		text-align: center;
		max-width: calc(100% - 40px);
		padding-left: 20px;
		padding-right: 20px;
	}
	.container-hero>div>h1{
		font-size: 35px;
	}
	.container-hero>div>p{
		font-size: 20px;
		margin-top: 15px;
	}
	.container-hero>div>a{
		margin-top: 30px;
	}
}

@media only screen and (max-width: 450px) {
	.container-hero{
		text-align: center;
		max-width: calc(100% - 40px);
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 40px;
		padding-bottom: 30px;
	}
	.container-hero>div>h1{
		font-size: 25px;
	}
	.container-hero>div>p{
		font-size: 16px;
		margin-top: 15px;
	}
	.container-hero>div>a{
		margin-top: 30px;
	}
}

.text{
	display: flex;
	justify-content: center;
}

.container-text{
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	max-width: 1440px;
	margin-top: 60px;
}

.container-text>p{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	color: #262626;
}


.numbers{
	display: flex;
	justify-content: center;
}

.container-numbers{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
	background: linear-gradient(225deg, #fff 0%, #ededed 100%);
	display: flex;
	justify-content: space-around;
	padding: 40px 0;
	border-radius: 10px;
	margin-top: 30px;
}

.container-numbers>div{
	text-align: center;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 25px;
	text-align: center;
	color: #3c8044;
}
.container-numbers>div>p{
	font-weight: 500;
	font-size: 20px;
	color: #333;
}

@media only screen and (max-width: 1100px) {
	.container-text>p{
		font-size: 25px;
	}
	.container-numbers>div{
		font-size: 18px;
	}
	.container-numbers>div>p{
		font-size: 14px;
	}
}

@media only screen and (max-width: 900px) {
	.container-text>p{
		font-size: 20px;
	}
	.container-numbers{
		flex-direction: column;
		row-gap: 30px;
	}
}

@media only screen and (max-width: 600px) {
	.container-text>p{
		text-align: center;
		font-size: 18px;
	}

	.container-numbers, .container-text{
		padding-left: 20px;
		padding-right: 20px;
		width: calc(100% - 40px);
	}
}



.review{
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 100px;
}

.container-review{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	display: flex;
	column-gap: 65px;
	margin-top: 40px;
	width: calc(100vw - 90px);
}
.review>h1{
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;
}
.slider{
	width: calc(100% - 170px);

}
.slider-item{
	background: linear-gradient(209deg, #fff 0%, #ededed 100%);
	/*height: 345px;*/
	border-radius: 10px;
	display: flex !important;
	flex-direction: column;
	padding-top: 50px;
	padding-left: 25px;
	padding-bottom: 25px;
	width: 90% !important;
}

.slick-slide>div{
	display: flex;
	justify-content: center;
}
.slider-item>.top{
	display: flex;
	column-gap: 45px;
	padding-right: 65px;
	position: relative;
	width: calc(100% - 90px);
}
.slider-item>.top>.fb{
	position: absolute;
	top: 0;
	right: 80px;

}

.slider-item>.top>div>h3{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	color: #262626;
}
.slider-item>.top>div>.glob{
	display: flex;
	column-gap: 5px;
	font-family: var(--font-family);
	color: #8c8c8c;
	margin-top: 10px;
}
.slider-item>.top>div>.glob>h4{
	font-weight: 500;
	font-size: 20px;
}
.slider-item>.top>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	color: #262626;
	margin-top: 15px;
}

.slider-item>.bottom{
	display: flex;
	margin-top: 40px;
	border-top: 1px solid #A1A1A1;
	padding-top: 20px;
	column-gap: 130px;
	justify-content: flex-end;
	padding-right: 80px;
	width: calc(100% - 185px);
}

.slider-item>.bottom>a:nth-child(1){
	margin-right: auto;
}


.slider-item>.bottom>a{
	text-decoration: none;
	display: flex;
	column-gap: 15px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	color: #8c8c8c;
	align-items: center;
}

.prev, .next{
	cursor: pointer;
}

.slider-item>.youtube{
	min-height: 350px;
}

.slider-item>.youtube>.avatar>.img{
	width: 230px;
	height: 320px;
	background-size: cover  !important;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider-item>.youtube>.avatar>.img:hover>img{
	transition: all 0.3s;
	transform: scale(1.3);
}

.slider-item>.youtube>.avatar{
	cursor: pointer;
}

@media only screen and (max-width: 1340px) {
	.slider-item>.bottom{
		column-gap: 60px;
	}
}

@media only screen and (max-width: 1110px) {
.avatar>img{
	width: 150px;
}
.slider-item>.bottom{
	column-gap: 20px;
}
}
.slider-item>.top{
	padding-right: 20px;
	width: calc(100% - 45px);
}

.slider-item>.bottom{
width: calc(100% - 125px);
}
.fb-icon-mob{
	display: none;
}
.slider-item>.top>div>h3>.line{
	display: none;
}

@media only screen and (max-width: 1000px) {
.slider-item>.top{
	flex-direction: column;
}

.slider-item>.top>div>.glob, .slider-item>.top>.fb{
	display: none;
}
.fb-icon-mob{
	display: block;
}
.avatar{
	display: flex;
	column-gap: 30px;
	justify-content: space-between;
}
.avatar>img{
	width: 100px;
}
.slider-item>.top>div>h3>.line{
	display: inline ;
}
.slider-item>.bottom>a{
	display: none;
}
.slider-item>.bottom>a:nth-child(1){
	display: block;
}
.review>h1{
	padding-left: 30px;
	padding-right: 30px;
	font-size: 30px;
}
.slider-item>.youtube>.avatar{
	align-items: center;
}

.slider-item>.youtube>.avatar>.img{
	height: 150px;
}

}
.mob-arr{
	display: none;
	/*border-bottom-right-radius: 10px;*/
	/*border-bottom-left-radius: 10px;*/
	width: calc(100% - 40px);
	/*padding: 20px;*/
	margin-top: 20px;
	justify-content: space-between;
	background: linear-gradient(91deg, #ededed 0%, #f6f2f2 100%);
}
@media only screen and (max-width: 660px) {
.mob-arr{
	display: flex !important;
}
.desk-arr{
	display: none !important;
}
.slider-item>.bottom{
	display: none;
}
.slider-item{
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
.container-review{
	flex-direction: column;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	width: calc( 100vw - 40px);
	margin-top: 20px;
}
.review>h1{
	padding-left: 20px;
	padding-right: 20px;
	font-size: 25px;
}

.slider-item>.top>div>h3{
	margin-top: 20px;
}

.slider{
	width: calc(100% - 40px);
}
.slider-item>.youtube>.avatar{
	flex-direction: column;
	align-items: center;
	row-gap: 20px
}

.slider-item>.youtube>.avatar>.img{
	height: 250px;
	width: 300px;
}
}

@media only screen and (max-width: 450px) {
.slider-item>.youtube>.avatar{
	align-items: flex-start;
}
.slider-item>.youtube>.avatar>.img{
	height: 250px;
	max-width: 100%;
}
}

@media only screen and (max-width: 400px) {
	.fb-icon-mob>img{
		width: 100px;
	}
	.fb-icon-mob{
		display: flex;
		align-items: center;
	}
}

.mask2{
	background: rgba(0,0,0,0.5);
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: all 0.4s;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mask2>iframe{
	width: 50%;
	height: 50%
}

.about{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 100px;
}
.about>.container-about{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	
}
.about>.container-about>.first{
	display: flex;
	column-gap: 20px;
}

.container-about>.first>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	color: #525252;
	margin-top: 80px;
}
.container-about>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	color: #525252;
}

.container-about>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #3c8044;
	padding-bottom: 20px;
	border-bottom: 10px solid #dbdbdb;
}


.container-about>.first>img{
	max-height: 520px;
	float: right;
	margin-top: 50px;
}


@media only screen and (max-width: 1200px) {
	.container-about>.first>img{
		width: 400px;
		height: 450px;
	}
}

@media only screen and (max-width: 1000px) {
	.container-about>h1{
		font-size: 25px;
	}
	.container-about>.first>div>p{
		margin-top: 30px;
	}
	.container-about>p{
		margin-top: 30px;
	}
	.container-about>.first>img{
		max-width: 100%;
		width: 100%;
		height: auto;
		margin-top: 30px;
	}
	.about>.container-about>.first{
		flex-direction: column;
		row-gap: 20px;

	}
}

@media only screen and (max-width: 767px) {
.about>.container-about{
	padding-left: 20px;
	padding-right: 20px;
}
.about{
	margin-top: 60px;
}

}

.castig{
	display: flex;
	justify-content: center;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
	background: #3c8044;
	margin-top: 60px;
}

.container-castig{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	padding-top: 30px;
	padding-bottom: 30px;
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	justify-content: center;
	align-items: center;
}

.container-castig>h1{
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 40px;
	text-align: center;
	color: #fff;
}
.container-castig>img{
	width: 915px;
	max-width: calc(100% - 90px);
}
.container-castig>p{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	line-height: 130%;
	color: #fff;
	align-self: flex-start;
}
.container-castig>p>a{
	color: #fff;
}

@media only screen and (max-width: 600px) {
.container-castig{
	padding-left: 20px;
	padding-right: 20px;
	width: calc(100% - 20px);
}
.container-castig>img{
	width: 915px;
	max-width: calc(100% - 40px);
}
.container-castig>p{
	font-size: 16px;
}
}

.poate{
	display: flex;
	justify-content: center;
}

.container-poate{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	width: calc(100% - 90px);
	margin-top: 40px;
}

.container-poate>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 30px;
	text-align: center;
	color: #333;
}
.container-poate>mark{
	font-size: 40px;
}
.container-poate>a{
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.07);
	background: #3c8044;
	border-radius: 10px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 20px;
	padding-bottom: 20px;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 40px;
	text-align: center;
	color: #fff;
	flex-direction: column;
	row-gap:20px;
	margin-top: 40px;
	animation: pulse 2s infinite;
}

.container-poate>a>b{
	font-weight: 700;
}

@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*/

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-castig>h1{
		font-size: 25px;
	}
	.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;
}
}

