@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: 30px;
	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: 100%;
	display: flex;
	justify-content: center;
}

.container-hero{
	padding-left: max(calc((100vw - 1440px)/2), 45px);
	width: 100%;
	display: flex;
	position: relative;
}


.hero-text{
	width: 980px;
	display: flex;
	flex-direction: column;
	padding-bottom: 95px;
	position: absolute;
}

.hero-text>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 53px;
	color: #fff;
	margin-top: 150px;
	opacity: 0;
  	animation: fadeIn 2s forwards;
}

.hero-text>hr{
	margin-top: 20px;
	width: 0px;
	animation: grow 1s forwards;
}

.hero-text>.apply{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	border: 3px solid #fff;
	width: 240px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-radius: 7px;
	margin-top: 65px;
	opacity: 0;
	animation: fadeIn 2s forwards;
	transition: all 0.3s;

}

.hero-text>.apply:hover{
	background: #fff;
	color: #3C8044; 
}

.hero-text>.stars{
	width: 247px;
	height: 41px;
	margin-top: 30px;
	opacity: 0;
	animation: fadeIn 2s forwards;
	animation-delay: 0.5s;
}



.hero-img{
	display: flex;
	margin-left: auto;
	position: relative;
}

.hero-img>.main-img{
	margin-top: auto;
	opacity: 0;
	animation: fadeIn 1s forwards;
	max-width: 100%
}

.hero-img>.floating1{
	position: absolute;
	bottom: 0;
	opacity: 0;
	transform: translate(0px, 20px);
	animation: fadeInM 1.3s forwards;
	z-index: 2;
}

.hero-img>.floating2{
	position: absolute;
	right: 80px;
	top: 130px;
	opacity: 0;
	transform: translate(0px, 20px);
	animation: fadeInM 1s forwards;
	animation-delay: 0.5s;
	z-index: 2;
}

.hero-img>.floating3{
	position: absolute;
	border-radius: 20px;
	width: 183px;
	height: 155px;
	box-shadow: 0 0 28px 0 rgba(255, 255, 255, 0.24);
	background: #ffffff;
	padding: 10px;
	bottom: 60px;
	right: 150px;
	opacity: 0;
	transform: translate(0px, 20px);
	animation: fadeInM 1s forwards;
	z-index: 2;
	animation-delay: 1s;
}

.hero-img>.floating3>a{
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	margin-top: 7px;
	text-decoration: none;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
	background: #eaeaea;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #525252;
	transition: all 0.2s;
}

.hero-img>.floating3>a:hover{
	background: #3C8044;
	color: #fff;
}


@media only screen and (max-width: 1800px) {
.hero-text{
	width: 800px;
}
.hero-text>h1 {
	font-size: 40px;
}

.hero-text>.apply{
	margin-top: 40px;
}
}

@media only screen and (max-width: 1470px) {
.hero-text{
	position: static;
}
.container-hero{
	flex-direction: column;
}
.hero-img{
	margin-left: 0;
	max-width: 866px;
}
.hero-text{
	width: 980px;
}
.hero-text>h1 {
	font-size: 53px;
}

.hero-text>.apply{
	margin-top: 65px;
}
}

@media only screen and (max-width: 1000px) {
.hero-text{
	width: 800px;

}
.hero-text>h1 {
	font-size: 40px;
	margin-top: 70px;
}

.hero-text>.apply{
	margin-top: 40px;
}
}

@media only screen and (max-width: 860px) {
	.hero-text{
	width: 600px;

}
.hero-text>h1 {
	font-size: 30px;
	margin-top: 70px;
}

.hero-text>.apply{
	margin-top: 20px;
	width: 170px;
    height: 50px;
    font-size: 16px;
}
.hero-text>.stars>img, .hero-text>.stars{
	width: 170px;
    height: auto;
}

.hero-text>.stars{
	margin-top: 20px;
}

.hero-text{
	padding-bottom: 0px;
}
}

@media only screen and (max-width: 600px) {
	.hero-text{
	width: 500px;

}
.hero-text>h1 {
	font-size: 25px;
	margin-top: 70px;
}

.hero-text>.apply{
	margin-top: 20px;
	width: 140px;
    height: 40px;
    font-size: 14px;
    border: 2px solid #fff;
}
.hero-text>.stars>img, .hero-text>.stars{
	width: 150px;
    height: auto;
}

}


@media only screen and (max-width: 500px) {
	.hero-text{
	width: 400px;

}
.hero-text>h1 {
	font-size: 20px;
	margin-top: 70px;
}

.hero-text>.apply{
	margin-top: 20px;
	width: 120px;
    height: 30px;
    font-size: 12px;
}
.hero-text>.stars>img, .hero-text>.stars{
	width: 150px;
    height: auto;
}

}

@media only screen and (max-width: 400px) {
	.hero-text{
	width: 340px;

}
.hero-text>h1 {
	font-size: 17px;
	margin-top: 70px;
}

.hero-text>.apply{
	margin-top: 20px;
	width: 120px;
    height: 30px;
    font-size: 12px;
}
.hero-text>.stars>img, .hero-text>.stars{
	width: 150px;
    height: auto;
}

}

@media only screen and (max-width: 860px) {
.hero-img>.floating2 {
	right: 20px;
}
.hero-img>.floating3{
	right: 90px;
}
}

@media only screen and (max-width: 767px) {
	.hero-img>.floating3{
	bottom: 0px;
}
.hero-img>.floating2 {
	top: 50px;
}
}


@media only screen and (max-width: 650px) {
.hero-img>.floating1 {
	left: -50px;
}
}


@media only screen and (max-width: 600px) {
	.hero-img>.floating3{
	right: 20px;
}
.hero-img>.floating2 {
	right: 0;
}
}

@media only screen and (max-width: 500px) {
	.hero-img>.floating1 {
	left: -80px;
	bottom: -30px;
}
	.hero-img>.floating3{
	right: 0px;
}
.hero-img>.floating2 {
	right: -40px;
}
}

@media only screen and (max-width: 470px) {
.hero-img>.floating2 {
	top: 0;
}
}

@media only screen and (max-width: 400px) {
	.hero-img>.floating1 {
	left: -100px;
	bottom: -50px;
}
	.hero-img>.floating3{
	right: -20px;
	bottom: -20px;
}
.hero-img>.floating2 {
	right: -60px;
}
}



.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: 470px;
	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;

}

.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) {
	.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;
}
}

.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>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.25rem, 0.6479rem + 2.7523vw, 3.125rem);
	color: #3c8044;
}

.container-about>.first>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(0.875rem, 0.6342rem + 1.1009vw, 1.625rem);
	line-height: 150%;
	color: #525252;
	margin-top: 11px;
}

.container-about>.blok-more{
	border-radius: 20px;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
	background: #3c8044;
	padding: 50px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(0.875rem, 0.6342rem + 1.1009vw, 1.625rem);
	line-height: 150%;
	color: #fff;
	margin-top: 50px;
}

.container-about>.blok-more>ul{
	padding-left: 30px;
}

.container-about>.blok-more>a{
	text-decoration: none;
	color: #333;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	margin-top: 50px;
	text-align: center;
	font-weight: 600;
	/*font-size: 25px;*/
}

.container-about>.first>img{
	max-height: 620px;
	float: right;
}

.container-about>.blok-more>p a{
	color: #fff;
}

.container-about>.blok-more>ul a{
	color: #fff;
}

@media only screen and (max-width: 1200px) {
	.container-about>.first>img{
		width: 400px;
		height: 450px;
	}
}

@media only screen and (max-width: 1000px) {
	.container-about>.first>img{
		max-width: 100%;
		width: 100%;
		height: auto;
	}
	.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;
}
.container-about>.blok-more{
	margin-top: 30px;
	padding: 20px;
}
.container-about>.blok-more>ul{
	padding: 20px;
	display: flex;
	row-gap: 10px;
	flex-direction: column;
}
.container-about>.blok-more>a{
	margin-top: 30px;
	width: calc(100% - 40px);
	padding-right: 20px;
	padding-left: 20px;
}
}

.counter{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
}

.container-counter{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	text-align: center;
}


.container-counter h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 50px;
	text-align: center;
	color: #3c8044;
}
.container-counter p{
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 30px;
	color: #262626;
}

@media only screen and (max-width: 1000px) {
	.container-counter{
	flex-direction: column;
	row-gap: 50px;
}
.counter{
	padding-top: 50px;
}
}

@media only screen and (max-width: 600px) {
.container-counter h1{
	font-size: 40px;
}
.container-counter p{
	font-size: 20px;
}
.counter{
	padding-left: 20px;
	padding-right: 20px;
}
}
.cameon{
	display: flex;
	margin-top: 100px;

}
.cameon>.text{
	background-image: url(images/bggrren.png);
	background-size: cover;
	padding-left: max(calc((100vw - 1440px)/2), 45px);
	padding-right: 80px;
	padding-bottom: 30px;
}

.cameon>.text>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(2.5rem, 2.0986rem + 1.8349vw, 3.75rem);
	color: #fff;
	margin-top: 40px;
}
.cameon>.text>h3{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(1.125rem, 0.8842rem + 1.1009vw, 1.875rem);
	color: #e4e4e4;
	padding-left: 20px;
	margin-top: 50px;
}

.cameon>.text>hr{

	margin-top: 50px;
}

.cameon>.text>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(0.875rem, 0.6342rem + 1.1009vw, 1.625rem);
	line-height: 150%;
	color: #e4e4e4;
	margin-top: 25px;
}

.cameon>.text>ul{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(0.875rem, 0.6342rem + 1.1009vw, 1.625rem);
	line-height: 150%;
	color: #e4e4e4;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}
.cameon>.text>ul b{
	font-weight: 700;
}

.cameon>.img{
	width: 160vw;
	background: url(images/imgai1.png);
	background-position: center center;
	background-size: cover;
}

@media only screen and (max-width: 1000px) {
.cameon{
	display: flex;
	flex-direction: column;
}
.cameon>.img{
	height: 50vh;
	width: 100vw;
}
.cameon>.text{
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}
.cameon>.text>h1{
	text-align: center;
}
.cameon>.text>h3{
	margin-top: 20px;
	text-align: center;
}
.cameon>.text>hr{
	margin-top: 20px;

}
.cameon>.text>ul{
	padding-left: 20px;
}
}


.need{
	display: flex;
	justify-content: center;
	align-items: center;
}

.container-need{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	margin-top: 150px;
}

.container-need>.row1{
	display: flex;
	column-gap: 80px;
}
.container-need>.row1>div{
	border-top: 10px solid #3C8044;
	border-bottom: 10px solid #3C8044;
	padding: 80px 0;
	width: 50%;
}

.container-need>.row1>div>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.875rem, 1.574rem + 1.3761vw, 2.8125rem);
	color: #333;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
	background: #fff;
	padding: 20px 10px;
	border-radius: 20px;
}
.container-need>.row1>ul{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(0.875rem, 0.6542rem + 1.0092vw, 1.5625rem);
	line-height: 156%;
	color: #525252;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.container-need>.row2{
	display: flex;
	column-gap: 80px;
	margin-top: 120px;
}
.container-need>.row2>div{
	width: 50%;
}
.container-need>.row2>img{
	width: 50%;
}
.container-need>.row2>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: clamp(0.875rem, 0.6542rem + 1.0092vw, 1.5625rem);
	line-height: 156%;
	color: #525252;
}
.container-need>.row2>div>h3{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.25rem, 1.0493rem + 0.9174vw, 1.875rem);
	text-align: center;
	color: #333;
	margin-top: 10px;
}
.container-need>.row2>div>h3>mark{
	font-family: var(--font-family);
	font-weight: 800;
	font-size: clamp(1.875rem, 1.6743rem + 0.9174vw, 2.5rem);
	text-align: center;
	color: #3c8044;
}

.container-need>a{
	font-family: var(--font-family);
	font-weight: 300;
	font-size: clamp(1.875rem, 1.6743rem + 0.9174vw, 2.5rem);
	text-align: center;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 10px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.07);
	background: #3c8044;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-top: 30px;
	padding-bottom: 20px;
	margin-top: 40px;
	animation: pulse 2s infinite;
	margin-bottom: 20px;
}

.container-need>a>b{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: clamp(1.875rem, 1.6743rem + 0.9174vw, 2.5rem);
	text-align: center;
	color: #fff;
}

@media only screen and (max-width: 1000px) {
	.container-need{
		margin-top: 70px;
		padding-left: 20px;
		padding-right: 20px;
	}
.container-need>.row2{
	display: flex;
	flex-direction: column-reverse;
	margin-top: 20px;
	row-gap: 20px;
}
.container-need>.row2>div{
	width: 100%;
}
.container-need>.row2>img{
	width: 100%;
}
.container-need>.row1{
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.container-need>.row1>div{
	width: 100%;
	padding: 40px 0;
}
.container-need>.row1>ul{
	width: 100%;

}
}

@media only screen and (max-width: 600px) {
	.container-need>.row1>div>h1{
		font-size: 24px;
	}
	.container-need>.row1>ul{
		padding-left: 25px;
		width: 95%;
	}
	.container-need>.row2>div>h3>mark{
		font-size: 20px;
	}
	.container-need>.row2>div>h3{
		font-size: 18px;
		margin-top: 20px;
	}
	.container-need>a>b{
		font-size: 18px;
	}
	.container-need>a{
		font-size: 18px;
	}
}

.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;
}
}

.orase{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 50px;
}

.orase>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #333;
}

.container-orase{
	max-width: 1440px;
	padding-left: 45px;
	padding-right: 45px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	column-gap: 30px;
	row-gap: 30px;
	justify-content: center;
}

.container-orase>div{
	max-width: 430px;
	position: relative;
	overflow-y: hidden;
	min-height: 400px;
	cursor: pointer;
}

.container-orase>div:hover div{
	top: 60px;
}

.container-orase>div>div{
	background: #3C8044;
	display: flex;
	flex-direction: column;
	row-gap:10px;
	padding: 20px;
	position: absolute;
	top: 150px;
	transition: all 0.4s;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.container-orase>div>div>h2{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 33px;
	color: #fff;
}
.container-orase>div>div>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 195%;
	color: #fff;
}

.container-orase>div>div>a{
	margin-top: 14px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	border: 3px solid #fff;
	border-radius: 10px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.container-orase>div>div>a:hover{
	background: #fff;
	color: #3C8044;
}

.container-orase>.cta{
	display: flex;
	justify-content: space-around;
	max-width: 100%;
	width: 100%;
	min-height: 50px;
}
.container-orase>.cta>.apl{
	border-radius: 20px;
	width: 423px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	background: #3c8044;
}	

.container-orase>.cta>.find{
	border: 3px solid #3c8044;
	border-radius: 20px;
	width: 423px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.container-orase>.cta>.find:hover{
	background: #3c8044;
	color: #fff;
}

@media only screen and (max-width: 1000px) {
	.container-orase>.cta{
		flex-direction: column;
		row-gap: 20px;
		min-height: 60px;
		align-items: center;
	}

	.container-orase{
		padding-left: 20px;
		padding-right: 20px;
	}

}

@media only screen and (max-width: 460px) {
.container-orase>div>img{
	max-width: 100%;
}
.container-orase>div{
	width: 350px;
	min-height: 350px;
}
.container-orase>div:hover div{
	top: 45px;
}
.container-orase>div>div{
	top: 120px;
}
.container-orase>div>div>h2 {
    font-size: 26px;
}
.container-orase>div>div>p{
	font-size: 17px;
}

.container-orase>div>div>a{
	font-size: 16px;
	height: 50px;
	margin-top: 0;
}
.container-orase>.cta>a{
	max-width: calc(100vw - 40px) !important;
	height: 60px !important;
	font-size: 18px !important;
}

}


.referal{
	display: flex;
	width: 100vw;
	margin-top: 100px;
}

.container-referal{
	width: 100vw;
	display: flex;
}

.container-referal>.img{
	background: url(images/referal.png);
	background-position: center;
	background-size: cover;
	width: 55%;
	/*height: 600px;*/
}

.container-referal>.text{
	padding-left: max(calc((100vw - 1440px)/2), 45px);
	padding-top: 50px;
	padding-bottom: 50px;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
	background: linear-gradient(225deg, #fff 0%, #ededed 100%);
	display: flex;
	flex-direction: column;
	width: 45%;
	min-width: 800px;
}

.container-referal>.text>h1{
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 60px;
	color: #333;
}

.container-referal>.text>span{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 30px;
	color: #525252;
	margin-top: 15px;
	border-bottom: 10px solid #3C8044;
	padding-bottom: 35px;
	width: fit-content;
}

.container-referal>.text>p{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 26px;
	line-height: 150%;
	color: #525252;
	margin-top: 45px;
}

.container-referal>.text>ul{
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 26px;
	line-height: 150%;
	color: #525252;
	padding-left: 25px;
	margin-top: 60px;
	margin-bottom: 15px;
}

.container-referal>.text>a{
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	/*align-self: center;*/
	border-radius: 10px;
	width: 560px;
	height: 100px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.06);
	background: #3c8044;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	animation: pulse 2s infinite;
}

@media only screen and (max-width: 1150px) {
	.container-referal{
		flex-direction: column;
	}
	.container-referal>.img{
		height: 1000px;
		width: 100vw;
		/*background-position: top;*/
	}
	.container-referal>.text{
		width: 100vw;
	}
}

.container-referal{
	overflow-x: hidden;
}
@media only screen and (max-width: 850px) {
	.container-referal>.text{
		padding-left: 20px;
		padding-right: 20px;
		max-width: calc(100vw - 40px);
	}
	.container-referal>.text>h1{
		font-size: 40px;
		max-width: calc(100vw - 40px);
	}

	.container-referal>.text>span{
		font-size: 25px;
		max-width: calc(100vw - 40px);
	}
	.container-referal>.text>p{
		font-size: 22px;
		max-width: calc(100vw - 40px);
	}
	.container-referal>.text>ul{
		font-size: 22px;
		margin-bottom: 0px;
		margin-top: 45px;
		max-width: calc(100vw - 65px);
	}
	.container-referal>.text>a{
		max-width: calc(100vw - 65px);
	}
	.container-referal>.img{
		height: 700px;
	}
}

@media only screen and (max-width: 600px) {
	.container-referal>.text{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.container-referal>.text>h1{
		font-size: 30px;
		text-align: center;
	}

	.container-referal>.text>span{
		font-size: 20px;
		text-align: center;
	}
	.container-referal>.text>p{
		font-size: 18px;
		margin-top: 25px;
	}
	.container-referal>.text>ul{
		font-size: 18px;
		margin-bottom: 0px;
		margin-top: 25px;
		max-width: calc(100vw - 65px);
	}
	.container-referal>.text>a{
		font-size: 18px;
		height: 80px;
		text-align: center;
	}
	.container-referal>.img{
		height: 600px;
	}
}

@media only screen and (max-width: 450px) {
	.container-referal>.img{
		height: 400px;
	}
}

.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%
}

.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) {
	footer{
		margin-top: 50px;
	}
	.container-footer{
		padding-top: 45px;
		padding-bottom: 25px;
	}
}

main{
}

.bar{
	background: #222222;
	height: 60px;
	width: 100%;
	position: sticky;
	bottom: -60px;
	display: flex;
	justify-content: center;
	margin-top: 100px;
	transition: all 0.4s;
}

.bar.active{
	bottom: 0;
}

.container-bar{
	max-width: 1440px;
	width: calc(100% - 90px);
	padding-left: 45px;
	padding-right: 45px;
	display: flex;
	justify-content: space-between;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	align-items: center;
}

.container-bar>a{
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	border-radius: 20px;
	padding: 0px 30px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	height: 40px;
	transition: 0.3s all;
}

.container-bar>a:hover{
	background: #fff;
	color: #222222;
}

@media only screen and (max-width: 1000px) {
.bar{
	display: none;
}
.main{
	width: 100vw;
	overflow-x: hidden;
	min-height: 100vh;
}
}

@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);
	}
}

@keyframes fadeIn {
    to {
        opacity:1;
    }
}
@keyframes fadeInM {
    to {
    	opacity:1;
        transform: translate(0px, 0px);
    }
}


@keyframes grow {
    to {
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 767px) {
@keyframes fadeInM {
    to {
    	opacity:1;
        transform: translate(0px, 0px) scale(0.8);
    }
}
}

@media only screen and (max-width: 550px) {
@keyframes fadeInM {
    to {
    	opacity:1;
        transform: translate(0px, 0px) scale(0.6);
    }
}
}

@media only screen and (max-width:430px) {
@keyframes fadeInM {
    to {
    	opacity:1;
        transform: translate(0px, 0px) scale(0.5);
    }
}
}

