@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;
}





mark{
	color: #029f51;
	background: transparent;
}



.hero{
	background: #EEFFF7 ;
	height: 700px;
	width: 100vw;
	display: flex;
	overflow-x: hidden;
	position: relative;
}
.container-hero{
	padding-left: max(calc((100vw - 1440px)/2), 45px);
	display: flex;
	flex-direction: column;
	min-width: 680px;
	max-width: 900px;
	position: absolute;
	left: 0;
	top: 0;
}

.hero>.img{
	clip-path: polygon(37% 0, 100% 0%, 100% 100%, 0% 100%);
	margin-left: auto;
	background: url(img/hero-img.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
	width: 890px;
	height: 100%;
}
.container-hero>h2{
	font-weight: 700;
	font-size: 32px;
	line-height: 118%;
	color: #333;
	margin-top: 80px;
}

.container-hero>h1{
	font-family: "Work Sans", sans-serif;
	font-weight: 700;
	font-size: 54px;
	color: #333;
	margin-top: 20px;
}

.container-hero>p{
	font-size: 16px;
	line-height: 181%;
	color: #333;
	margin-top: 40px;
}

.container-hero>ul{
	font-size: 16px;
	line-height: 181%;
	color: #525252;
	margin-top: 10px;
	margin-left: 20px;
	margin-bottom: 30px;
}


.buttonsuka{
	background: #029f51;
	padding: 28px 0px;
	width: 423px;
	text-align: center;
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	border-radius: 20px;
	text-decoration: none;
	transition: 0.2s all;
}

.buttonsuka:hover{
	transform: scale(1.05);
}

@media only screen and (max-width: 1700px) {
.hero>.img{
	width: 690px;
}
}

@media only screen and (max-width: 1460px) {
.hero>.img{
	width: 590px;
}
}

@media only screen and (max-width: 1380px) {
.container-hero>h2{
	font-size: 28px;
}
.container-hero>h1{
	font-size: 50px;
}

.container-hero>p{
	font-size: 16px;
}

.container-hero>ul{
	width: 80%;
	font-size: 16px;
}

}


@media only screen and (max-width: 1315px) {
.container-hero>h2{
	font-size: 24px;
}
.container-hero>h1{
	font-size: 40px;
}

.container-hero>p{
	font-size: 14px;
}

.container-hero>ul{
	width: 80%;
	font-size: 14px;
}

}

@media only screen and (max-width: 1250px) {
.container-hero>ul{
	width: 70%;
}
.hero{
	height: 600px;
}
}



@media only screen and (max-width: 1160px) {
.container-hero>h2{
	font-size: 20px;
}
.container-hero>h1{
	font-size: 32px;
	margin-top: 10px;
}

.container-hero>p{
	font-size: 12px;
	margin-top: 25px;
}

.container-hero>ul{
	width: 55%;
	margin-bottom: 20px;
	font-size: 13px;
}

.buttonsuka{
	width: 300px;
	font-size: 16px;
	padding: 24px 0;
}
}

@media only screen and (max-width: 1000px) {
.hero{
	display: flex;
	flex-direction: column;
	height: auto;
}

.container-hero{
	padding-left: 30px;
	padding-right: 30px;
	position: static;
	width: calc(100vw - 60px);
	min-width: 300px;
}

.hero>.img{
	clip-path: none;
	margin-left: auto;
	background: url(img/hero-img.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 500px;
}
.container-hero>ul{
	width: calc(100% - 20px);
}
}


.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%
}

.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;
}

.button{
	font-family: "Montserrat", sans-serif;
	background: rgb(60 128 68);
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 15px;
	text-decoration: none;
	margin-top: 30px;
	text-align: center;
}
.b2{
	display: none;
}
.benefits .item-gridd img{ 
	max-width: 100%;
}

@media only screen and (max-width: 1439px) {
.benefits .gridd{
	display: flex;
	justify-content: center;
}
.benefits .item-gridd img{ 
	width: 100%;
}
.benefits .item-gridd{
	max-width: 650px !important;
}
.b1{
	display: none !important;
}
.b2{
	display: block;
}
}

@media only screen and (max-width: 600px) {
.benefits>h1{
	font-size: 27px;
}
.benefits{
	padding-left: 0px;
	padding-right: 0px;
	margin-top: 30px;
	max-width: calc(100vw - 50px);
	width: calc(100vw - 50px);
}
.benefits .gridd{
	margin-top: 20px;
}
.benefits .item-gridd>h3{
	font-size: 16px;
	margin-top: 20px;
}
.benefits .item-gridd>ul{
	font-size: 12px;
}
.benefits .item-gridd{
	padding: 20px;
}
.benefits .item-gridd>ul{
	row-gap: 20px;
	margin-top: 20px;
	line-height: 150%;
}
.benefits .gridd{
	overflow-x: scroll;
	flex-wrap: nowrap;
	justify-content: flex-start;
	scroll-snap-type: x mandatory;
	padding-bottom: 20px;
}
.benefits .item-gridd{
	max-width: 100% !important;
	min-width: calc(100% - 50px) !important;
	scroll-snap-align: center;
}
.button{
	font-size: 9px;
	height: 50px;
	margin-top: 20px;
}
}


.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;
}
}


.why{
	background: linear-gradient(90deg, #FFFFFF 0%, #EDEDED 100%);
	margin-top: 100px;
	display: flex;
	width: 100%;
}

.why>.ctext{
	padding-left: max(calc((100vw - 1440px)/2), 45px);
	padding-right: 135px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.why>.ctext>h1{
	font-family: "Work Sans", sans-serif;
	font-weight: 700;
	font-size: clamp(20px, 2.6vw, 60px);
	color: #029f51;
}
.why>.ctext>h1>mark{
	color: #13f082;
}
.why>.ctext>p>b{
	font-weight: 700;
}

.why>.ctext>p{
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: clamp(12px, 1.3vw, 20px);
	color: #333;
	margin-top: clamp(11px, 2.9vw, 55px);
}

.why>img{
	max-width: 50%;
	border-top: 20px solid white;
	border-bottom: 20px solid white;
}


.why>.ctext>a{
	font-family: "Montserrat", sans-serif;
	background: #00c262;
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	width: 430px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	text-decoration: none;
	margin-top: 110px;
	text-align: center;
}

@media only screen and (max-width: 950px) {
	.why{
		flex-direction: column;
		align-items: center;
	}
	.why>img{
		max-width: 100%;
		border: 0px;
	}
	.why>.ctext{
		padding-left: 25px;
		padding-right: 25px;
		width: max(50%, 324px);
		padding-top: 32px;
		padding-bottom: 40px;
		max-width: calc(100% - 50px);
	}

.why>.ctext>a{
	font-family: "Montserrat", sans-serif;
	background: #00c262;
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	width: 330px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	text-decoration: none;
	margin-top: 40px;
	text-align: center;
	max-width: calc(100% - 50px);
}
}

.whyh1{
	font-family: "Work Sans", sans-serif;
	text-align: center;
	margin-top: 100px;
	font-weight: 700;
	font-size: clamp(20px, 6vw, 40px);
	text-align: center;
	color: #333;

}

/*//////////////////////////////*/
.bar{
	background: #222222;
	height: 60px;
	width: 100%;
	position: sticky;
	bottom: -60px;
	display: flex;
	justify-content: center;
	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;
}
}


/*/////////////////////////*/

.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;
}

}

/*///////////////////////////*/

.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);
	}
}

/*////////////////////////////////*/


.btcta{
	box-shadow: inset 0 0 92px 0 rgba(0, 0, 0, 0.25);
	background: url("img/btcta.png");
	background-repeat: no-repeat;
	background-size: cover;
	height: 900px;
	display: flex;
	margin-top: 100px;
	align-items: center;
	background-position: center;
}

.poly{
	display: flex;
	background: linear-gradient(180deg, #297c53 0%, #008242 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;
	width: 500px;
	height: 60px;
	background: #00c262;
	display: flex;
	align-items: center;
	justify-content: 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;
	width: 300px;
	height: 60px;
	background: #00c262;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.poly{
	height: 800px;
}
}

/*FOOTER*/

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;
	}
}



@media only screen and (max-width: 1000px) {
.main{
	width: 100vw;
	overflow-x: hidden;
	min-height: 100vh;
}
}

