*{
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	font-family: "montserrat"; 
	background: url('../images/BG.jpg');
	background-size: 100%;
	padding-top: 8.6vw;
}
@font-face {
	font-family: "montserrat-light"; 
	src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "montserrat"; 
	src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "montserrat-Bold"; 
	src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "roboto"; 
	src: url("../fonts/roboto/Roboto-Light.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "roboto-Regular"; 
	src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "roboto-Bold"; 
	src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
header{
	background: url('../images/header-background.png');
	background-size: 100% 100%;
	padding:  2.5vw 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}
header .logo{
	width: 16.4vw;
	display: flex;
}
header .logo img{
	width: 100%;
}
header .container{
	width: 94vw;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .nav{
	display: flex;
	align-items: center;
	margin-left: 4.5vw;
}
header .container .first-time{
	width: 8.3vw;
	display: flex;
	transition: .3s;
	padding: 0;
	margin-right: 2vw;
}
header .container .first-time img{
	width: 100%;
}
header .container .first-time:hover{
	transform: scale(1.1);
}
header .nav a,
header .nav div,
.footer-nav a,
.footer-nav div{
	color: #fff;
	font-size: 1vw;
	text-decoration: none;
	padding: .8vw;
	transition: .3s;
}
header .nav a span,
header .nav div span,
.footer-nav a span,
.footer-nav div span{
	display: flex;
	align-items: center;
}
header .nav a span .img,
header .nav div span .img,
.footer-nav a span .img,
.footer-nav div span .img{
	width: .6vw;
	margin-left: .3vw;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	padding: 0;
}
header .nav a span .img img,
header .nav div span .img img,
.footer-nav a span .img img,
.footer-nav div span .img img{
	width: 100%;
	position: absolute;
	transition: opacity .3s;
}
header .nav a span .img img:nth-child(1),
header .nav div span .img img:nth-child(1),
.footer-nav a span .img img:nth-child(1),
.footer-nav div span .img img:nth-child(1){
	z-index: 2;
}
header .nav a span .img img:nth-child(2),
header .nav div span .img img:nth-child(2),
.footer-nav a span .img img:nth-child(2),
.footer-nav div span .img img:nth-child(2){
	z-index: 1;
	opacity: 0;
}
header .nav a:hover,
header .nav div:hover,
.footer-nav a:hover,
.footer-nav div:hover{
	color: #24FF00;
}
header .nav a:hover .img img:nth-child(2),
header .nav div:hover .img img:nth-child(2),
.footer-nav a:hover .img img:nth-child(2),
.footer-nav div:hover .img img:nth-child(2){
	opacity: 1;
}
header .nav a:hover .img img:nth-child(1),
header .nav div:hover .img img:nth-child(1),
.footer-nav a:hover .img img:nth-child(1),
.footer-nav div:hover .img img:nth-child(1){
	opacity: 0;
}
header .nav a:hover .img,
header .nav div:hover .img,
.footer-nav a:hover .img,
.footer-nav div:hover .img {
	transform: translateY(.2vw);
}
header .nav .drop-down,
.footer-nav .drop-down{
	position: relative;
	cursor: pointer;
}
header .nav .drop-down .drop-down-list,
.footer-nav .drop-down .drop-down-list{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%);
	background: #fff;
	flex-direction: column;
	border-radius: .3vw;
	color: #2E282A;
	padding: .3vw 0;
	display: none;
}
.footer-nav .drop-down .drop-down-list{
	top: unset;
	bottom: 100%;
}
header .nav .drop-down:hover .drop-down-list,
.footer-nav .drop-down:hover .drop-down-list{
	display: flex;
}
header .nav .drop-down .drop-down-list .drop-down-list-item,
.footer-nav .drop-down .drop-down-list .drop-down-list-item{
	display: flex;
	align-items: center;
	height: 2.4vw;
	padding: 0 1vw 0 .5vw;
	font-size: .9vw;
	border-bottom: 1px solid #F1F2F4;
	transition: .3s;
	position: relative;
	color: #2E282A;
	cursor: pointer;
}
header .nav .drop-down .drop-down-list .drop-down-list-item:last-child,
.footer-nav .drop-down .drop-down-list .drop-down-list-item:last-child{
	border-bottom: none;
}
header .nav .drop-down .drop-down-list img,
.footer-nav .drop-down .drop-down-list img{
	width: 1.2vw;
	margin-right: .5vw;
	transition: .3s;
}
header .nav .drop-down .drop-down-list .drop-down-list-item:before,
.footer-nav .drop-down .drop-down-list .drop-down-list-item:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
	left: 0;
	background: linear-gradient(93.53deg, #00B11C 0%, #3EDC58 100%);
	opacity: 0;
	transition: .3s;
}
header .nav .drop-down .drop-down-list .drop-down-list-item:hover:before,
.footer-nav .drop-down .drop-down-list .drop-down-list-item:hover:before{
	opacity: 1;
}
header .nav .drop-down .drop-down-list .drop-down-list-item:hover img,
.footer-nav .drop-down .drop-down-list .drop-down-list-item:hover img{
	filter: invert(100%);
}
header .nav .drop-down .drop-down-list .drop-down-list-item:hover,
.footer-nav .drop-down .drop-down-list .drop-down-list-item:hover{
	color: #fff;
}
.main-btn{
	position: relative;
	width: 14vw;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 1.2vw;
	overflow: hidden;
	border-radius: 10vw;
	background: linear-gradient(268.2deg, #3AEB56 3.48%, #008916 97.8%);
	padding: 1.2vw 0;
	transition: .3s;
	color: #fff;
}
.main-btn:before{
	width: 100%;
	height: 25%;
	content: '';
	position: absolute;
	left: -60%;
	top: -30%;
	transform: rotate(-60deg);
	background: #fff;
	z-index: 3;
	transition: .5s;
}
.main-btn:hover:before{
	left: 75%;
}
.main-btn:hover{
	transform: scale(1.1);
}
.main-btn span{
	z-index: 2;
	position: relative;
}	
.main-title{
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: relative;
	height: 4vw;
}
.main-title h2{
	font-size: 2.5vw;
	font-family: "montserrat-Bold"; 
	text-transform: uppercase;
	background: linear-gradient(90deg, #FDFC47 0%, #24FE41 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main-title h2:before{
	position: absolute;
	content: '';
	width: 100%;
	height: 1.5vw;
	background: linear-gradient(90deg, #FDFC47 0%, #24FE41 100%);
	filter: blur(1.4vw);
}
.main-title .img-line-1{
	bottom: 1.5vw;
	position: absolute;
	left: 2.6vw;
	width: 31vw;
	z-index: -1;
}
.main-title .img-line-2{
	top: 1.5vw;
	position: absolute;
	right: 2.6vw;
	width: 31vw;
	z-index: -1;
}
.main-title .img-line-3{
	top: 1.5vw;
	position: absolute;
	left: 2.6vw;
	width: 39vw;
	z-index: -1;
}
.main-title .img-line-4{
	top: 1.5vw;
	position: absolute;
	right: 2.6vw;
	width: 39vw;
	z-index: -1;
}
.main-title .img-line-5{
	top: 1.5vw;
	position: absolute;
	left: 2.6vw;
	width: 24vw;
	z-index: 1;
}
.main-title .img-line-6{
	top: 1.5vw;
	position: absolute;
	right: 2.6vw;
	width: 24vw;
	z-index: 1;
}
.main-title .img-line-7{
	top: 1.5vw;
	position: absolute;
	left: 2.6vw;
	width: 24vw;
	z-index: 1;
}
.main-sub-title{
	font-family: "roboto-Regular"; 
	font-style: italic;
	font-size: 1.25vw;
	color: #fff;
	line-height: 150%;
	margin: 0 auto;
	width: 30vw;
	text-align: center;
	margin-top: 2.1vw;
}
.main-sub-title-light{
	font-family: "roboto"; 
	font-weight: 100;
}
.main-color-sub-title{
	background: linear-gradient(90deg, #FDFC47 0%, #24FE41 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: 39vw;
	font-size: .9vw;
	font-family: "roboto"; 
}
.top-section-footer{
	background: url('../images/BG-footer.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	border-top: 2px solid rgba(255, 255, 255, 0.25);
}
.footer-bottom-section{
	background: url('../images/BG-footer.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.footer-bottom-section .info{
	border-top: 2px solid rgba(255, 255, 255, 0.25);
	padding: 0 6.5vw;
	padding-top: 3.4vw;
	display: flex;
	align-items: flex-start;
}
.footer-nav{
	margin-left: 6.5vw;
	margin-bottom: 3.3vw;
	display: flex;
	align-items: flex-start;
}
.footer-nav .column{
	padding-right: 3.7vw;
	display: flex;
	flex-direction: column;
}
.top-section-footer .info{
	padding-left: 6.2vw;
	padding-top: 6.2vw;
}
.footer-contacts{
	margin-top: 3.1vw;
}

.top-section-footer .info h3{
	margin: 0;
	color: #F6F6F6;
	font-size: 1.2vw;
}
.top-section-footer .map{
	width: 45.6vw;
}
.footer-contacts .contact,
.footer-adress .adress{
	display: flex;
	align-items: center;
	margin-top: 1.3vw;
	font-size: .9vw;
}
.footer-contacts .contact .contact-item,
.footer-adress .adress .adress-item{
	display: flex;
	align-items: center;
	letter-spacing: 0.05em;
	color: #F6F6F6;
	font-family: "roboto"; 
}
.footer-contacts .contact .contact-item img,
.footer-adress .adress .adress-item img{
	width: 1.1vw;
	margin-right: .8vw;
}
.footer-contacts .contact .contact-value,
.footer-adress .adress .adress-value{
	letter-spacing: 0.05em;
	margin-left: 3vw;
	background: linear-gradient(90deg, #FDFC47 0%, #24FE41 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.footer-adress .adress .adress-value{
	margin-left: 0;
}
.soc-media{
	display: flex;
	align-items: center;
	margin: 2.1vw 0;
}
.soc-media a{
	width: 2.1vw;
	margin-right: 1.5vw;
	transition: .3s;
}
.soc-media a img{
	width: 100%;
}
.soc-media a:hover{
	transform: scale(1.2);
}
.footer-bottom-section .rights{
	padding: 1.25vw 6.25vw;
	border-top: 2px solid rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
}
.footer-bottom-section .rights p{
	text-transform: capitalize;
	color: #CECECE;
	font-family: "montserrat-light"; 
	font-size: .9vw;
	margin-right: 2.5vw;
}
footer .logo{
	width: 16vw;
}
footer .logo img{
	width: 100%;
}
.burger{
	display: none;
}
.main-title-cont{
	width: 50vw;
	text-align: center;
	margin: 0 auto;
}
@media(max-width: 500px){
	header{
		padding: 6vw 0;
	}
	.burger{
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		flex-direction: column;
		height: 7vw;
		width: 8vw;
	}
	.burger span{
		width: 100%;
		height: 3px;
		border-radius: 2px;
		background: linear-gradient(90deg, #FDFC47 0%, #24FE41 100%);
		transition: .4s;
		position: relative;
		top: 0;
	}
	.burger span:nth-child(1){
		width: 70%;
	}
	.burger.active span:nth-child(1){
		opacity: 0;
	}
	.burger.active span:nth-child(2){
		transform: rotate(45deg);
	}
	.burger.active span:nth-child(3){
		transform: rotate(-45deg);
		top: -3vw;
	}
	header .nav{
		position: absolute;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100vw;
		height: 100vh;
		left: 0;
		top: 0;
		margin: 0;
		background: url('../images/bg-block.png');
		background-repeat: no-repeat;
    	background-size: 100% 100%;
		z-index: -1;
		display: none;
		opacity: 0;
		transition: .5s;
	}
	header .logo,
	footer .logo{
		width: 44vw;
	}
	footer .logo{
		margin-top: 5vw;
	}
	body{
		padding-top: 21vw;
	}
	header .container .first-time{
		margin: 0;
		width: 35vw;
		margin-bottom: 4.5vw;
	}
	header .nav a span .img,
	header .nav div span .img,
	.footer-nav a span .img,
	.footer-nav div span .img{
		width: 3vw;
		margin-left: 1vw;
	}
	header .nav .drop-down .drop-down-list, .footer-nav .drop-down .drop-down-list{
		border-radius: 2vw;
		z-index: 10;
	}
	header .nav .drop-down .drop-down-list .drop-down-list-item, .footer-nav .drop-down .drop-down-list .drop-down-list-item{
		height: 10vw;
		font-size: 4vw;
		padding: 0 4vw;
	}
	header .nav .drop-down .drop-down-list img, .footer-nav .drop-down .drop-down-list img{
		width: 4vw;
		margin-right: 1.5vw;
	}
	header .main-btn{
		position: absolute;
		left: 20vw;
		top: 80vh;
		display: none;
		opacity: 0;
		transition: .5s;
	}
	.main-btn{
		width: 60vw;
		padding: 4.5vw 0;
		font-size: 4vw;
	}
	.main-title .img-line-1,
	.main-title .img-line-2,
	.main-title .img-line-3,
	.main-title .img-line-4,
	.main-title .img-line-5,
	.main-title .img-line-6,
	.main-title .img-line-7{
		display: none;
	}
	.main-title{
		height: unset;
	}
	.main-title h2{
		font-size: 7.1vw;
		text-align: center;
		width: 80%;
	}
	.main-title h2:before{
		height: 3vw;
		filter: blur(6vw);
	}
	.main-sub-title{
		font-size: 4vw;
		width: 90%;
		margin-top: 7vw;
	}
	.top-section-footer,
	.footer-bottom-section{
		flex-direction: column;
		background: url('../images/bg-mob-footer.png');
	}
	.top-section-footer .info h3{
		font-size: 4.5vw;
		margin-bottom: 5vw;
	}
	.footer-contacts .contact, .footer-adress .adress{
		font-size: 4vw;
		margin-top: 3vw;
	}
	.footer-contacts .contact .contact-item img, .footer-adress .adress .adress-item img{
		width: 4vw;
		margin-right: 2vw;
	}
	.soc-media a{
		width: 7vw;
		margin-right: 3vw;
	}
	.soc-media{
		margin: 6vw 0;
		margin-bottom: 4vw;
	}
	.top-section-footer .map{
		width: 100%;
		margin-top: 6vw;
	}
	.footer-nav,
	.footer-bottom-section .info,
	.footer-nav .column{
		flex-direction: column;
		align-items: center;
	}
	.footer-nav{
		margin: 5vw 0;
	}
	header .nav a, header .nav div, .footer-nav a, .footer-nav div{
		font-size: 3.5vw;
		padding: 2vw;
	}
	header .nav a,
	header .nav div{
		padding: 8vw 2vw;
		font-size: 4.5vw;
	}
	.footer-nav .column{
		padding: 0;
	}
	.footer-bottom-section .rights p{
		font-size: 3.5vw;
		line-height: 1.7;
	}
	.main-title-cont{
		width: 100vw;
	}
}