:root{
	--main-color: #9146E7;
}
*{
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	font-family: "raleway-light"; 
	padding-top: 8vw;
}
@font-face {
	font-family: "raleway-light";
	src: url("../fonts/raleway/Raleway-Light.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "quicksand-light";
	src: url("../fonts/Quicksand-Light.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "raleway-regular";
	src: url("../fonts/raleway/Raleway-Regular.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "poppins-bold";
	src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "poppins-medium";
	src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "poppins-light";
	src: url("../fonts/poppins/Poppins-Light.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
.container{
	padding: 0 13.9vw;
	max-width: 1920px;
	margin: auto;
}
header{
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
header .container{
	padding: 2.7vw 13.9vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .logo{
	width: 12.5vw;
}
header .logo img{
	width: 100%;
}
header ul{
	font-family: "poppins-light";
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}
header ul li{
	margin-left: 6vw;
	position: relative;
}
header ul li a{
	text-decoration: none;
	font-size: 1vw;
	color: #000000;

}
header ul li.search{
	color: var(--main-color);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 1vw;
}
header ul li.search img{
	width: 1vw;
	margin-left: .8vw;
}
header ul li:before{
	top: 110%;
	width: 110%;
	height: 1px;
	position: absolute;
	background: #000;
	left: -5%;
	content: '';
	transform: scaleX(0);
	transition: .3s;
}
header ul li.search:before{
	background: var(--main-color);
}
header ul li:hover:before{
	transform: scaleX(1);
}
header ul .user-img{
	width: 1.4vw;
	margin-left: 3.3vw;
	text-decoration: none;
	cursor: pointer;
	transition: .3s;
}
header ul .user-img img{
	width: 100%;
}
header ul .user-img:hover{
	transform: scale(1.2);
}
.top-section{
	display: flex;
	justify-content: space-between;
}
.top-section h1{
	margin: 0;
	font-family: "poppins-bold";
	font-size: 2.9vw;
	line-height: 1.5;
}
.top-section .info{
	width: 26vw;
	margin-top: 5.5vw;
}
.top-section .info .main-text{
	margin-top: 1vw;
	font-size: 1.5vw;
}
.main-text{
	font-size: 1vw;
	margin: 0;
}
.main-btn{
	font-size: 1vw;
	margin: 0;
	margin-top: 3.1vw;
	background: var(--main-color)!important;
	border-radius: 5vw;
	color: #fff!important;
	padding: .8vw 2.1vw;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	border: 2px solid var(--main-color);
	transition: .3s;
	font-family: "poppins-light";
}
.main-btn:hover{
	background: #fff!important;
	color: var(--main-color)!important;
	
}
.top-slider-cont{
	width: 39.4vw;
}
.top-slider img{
	width: 100%;
}
.top-slider-cont .slick-dots{
	display: flex;
	justify-content: flex-end;
}
.top-slider-cont .slick-dots li button::before {
	content: '';
	width: .7vw;
	height: .7vw;
	background: rgba(196, 196, 196, 0.45);
	border-radius: 100%;
	opacity: 1;
	transition: .3s;
}
.top-slider-cont .slick-dots li button:hover::before{
	background: rgba(196, 196, 196, .8);
}
.top-slider-cont .slick-dots li.slick-active button:before{
	background: rgba(164, 88, 252, 0.4);
}
.top-slider-cont .main-text{
	color: rgba(0, 0, 0, 0.6);
	text-align: right;
	margin-top: 1.5vw;
}
.top-slider-cont .main-text span,
.ready-to-work-item .info p span,
.account-settings-info p span{
	color: #EEFF2A;
}
.main-title{
	font-size: 2.1vw;
	margin: 0;
	font-family: "poppins-bold";
	margin-top: 5.5vw;
}

.categories{
	padding: 0 2.7vw;
	margin-top: 2.2vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.category{
	box-shadow: -.7vw .7vw 2.1vw rgba(115, 113, 123, 0.25);
	border-radius: 2px 2px 2.1vw .3vw;
	position: relative;
	padding: 3.3vw 1.7vw 2vw 1.7vw;
	width: 23.5%;
	overflow: hidden;
	transition: .3s;
	margin-top: 2vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.category.active{
	background: rgba(145, 70, 231, 0.55);
	color: #fff;
}
.category.active a{
	color: #fff;
	font-family: "raleway-regular";
}
.category.active:after{
	background: rgba(145, 70, 231, 0.5);
	box-shadow: -10px 10px 30px rgba(115, 113, 123, 0.25);
}
.category:after{
	border-radius: 2px 2px 6vw .3vw;
	width: 100%;
	height: 100%;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	z-index: -2;
	transition: .3s;
}
.category:before{
	width: 77%;
	height: .3vw;
	background: var(--main-color);
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	border-radius: 0 0 0 .7vw;
}
.category.active:before{
	background: #CFFF81;
}
.category h3{
	margin: 0;
	font-size: 2.1vw;
}
.category p{
	margin-top: 1.2vw;
}
.category a{
	color: rgba(0, 0, 0, 0.4);
	font-size: 1vw;
	margin-top: 2vw;
	display: inline-block;
	transition: .3s;
}
.category a:hover{
	padding-left: .5vw;
}
.ready-to-work{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.ready-to-work .arrow,
.inspire-cont .arrow{
	min-width: .8vw;
	max-width: .8vw;
	cursor: pointer;
}
.ready-to-work .arrow.arrow-right,
.inspire-cont .arrow.arrow-right{
	transform: rotate(180deg);
}
.ready-to-work-slider{
	width: 98%;
}
.ready-to-work-slider .slick-list{
	padding: 4.8vw 0;
}
.ready-to-work-cont{
	display: flex;
	flex-wrap: wrap;
	padding: 0 2vw;
	margin-top: 3vw;
}
.ready-to-work-item{
	background: #fff;
	box-shadow: 0 0 1vw rgba(115, 113, 123, 0.25);
	border-radius: 2px;
	padding-top: 1.7vw;
	transition: .3s;
	margin: 0 1.2vw;
	overflow: hidden;
	color: #000;
	text-decoration: none;
}
.ready-to-work-cont .ready-to-work-item{
	width: 22%;
	margin: 1.2vw 1.5% ;
}
.ready-to-work-item .img{
	width: 7vw;
	height: 7vw;
	margin: 0 auto;
	position: relative;
}
.ready-to-work-item .img:before{
	width: 1.2vw;
	height: 1.2vw;
	border-radius: 100%;
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	background: #4AFF67;
	border: .3vw solid #fff;
}
.ready-to-work-item .img img{
	width: 100%;
	height: 100%;
	border-radius: 100%;
	object-fit: cover;
}
.ready-to-work-item .info{
	padding: 0 1.7vw;
}
.ready-to-work-item .info p{
	margin-bottom: 1vw;
}
.ready-to-work-item .info h3{
	font-size: 1.2vw;
	margin: 0;
	text-align: center;
	margin: 1.3vw 0;
	font-family: "raleway-regular";
}
.ready-to-work-item .bottom-section{
	margin-top: 1.4vw;
	display: flex;
	justify-content: space-between;
	padding: .7vw 1.7vw;
	background: #F8F8F8;
	color: rgba(0, 0, 0, 0.7);
}
.ready-to-work-item .bottom-section p span{
	color: #000;
}
.quantities-cont{
	background: #F8F8F8;
	padding: 4.2vw 0;
}
.quantities{
	display: flex;
	justify-content: space-between;
}
.quantity-item{
	width: 30%;
}
.quantity-item h3{
	color: #41BEFC;
	font-size: 2.1vw;
	line-height: 1.5;
	margin: 0;
	font-family: "raleway-regular";
}
.quantity-item p{
	font-size: 1.2vw;
}
.inspire-cont{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.inspire-item{
	box-shadow: 0 0 1vw rgba(115, 113, 123, 0.25);
	margin: 0 1vw;
}
.inspire-item .img{
	width: 100%;
}
.inspire-item .bottom-section{
	display: flex;
	align-items: center;
	padding: .9vw;
}
.inspire-item .bottom-section img{
	width: 2.4vw;
	margin-right: .8vw;
}
.inspire-item .bottom-section p.grey-text{
	color: rgba(0, 0, 0, 0.6);
}
.inspire-item .bottom-section p.grey-text span{
	color: #EEFF2A;
}
.inspire-cont{
	width: 100%;
}
.inspire-slider{
	width: 98%;
}
.inspire-slider .slick-list{
	padding: 3.8vw 0;
}
.show-all-cont{
	display: flex;
	justify-content: flex-end;
	padding: 0 2vw;
	margin-top: 3.9vw;
	margin-bottom: 8vw;
}
.show-all{
	text-decoration: none;
	color: var(--main-color);
	display: flex;
	align-items: center;
	transition: .3s;
	font-family: "raleway-regular";
	cursor: pointer;
}
.show-all img{
	width: 1.5vw;
	margin-left: .3vw;
}
.show-all:hover{
	padding-left: 1vw;
	transform: translateX(1vw);
}
.buisness-block{
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-bottom: 17vw;
}
.buisness-block .blur-img{
	position: absolute;
	width: 100%;
	width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: left;
	z-index: 3;
	left: 0;
	top: -15vw;
}
.buisness-block .main-title{
	width: 23vw;
	z-index: 5;
	position: relative;
}
.buisness-cont{
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: -1vw;
}
.buisness-cont .buisness-info .buisness-info-item{
	width: 28vw;
	display: flex;
	align-items: center;
	margin-left: 2.5vw;
}
.buisness-cont .buisness-info .buisness-info-item h3{
	color: #41BEFC;
	font-size: 2.1vw;
	font-family: "poppins-light";
	margin: 0;
	margin-right: 1.9vw;
}
.buisness-cont .buisness-info .buisness-info-item h4{
	font-family: "poppins-bold";
	margin: 0;
	font-size: 1.5vw;
	margin-bottom: 1vw;
}
.buisness-cont .buisness-info .buisness-info-item p{
	margin-bottom: .4vw;
}
.buisness-info-item-first{
	margin-bottom: 6vw;
	margin-right: 2.1vw;
}
footer{
	background: #211232;
	padding-top: 5vw;
	padding-bottom: 10vw;
}
footer .container{
	display: flex;
	justify-content: space-between;
	color: #fff;
}
footer .container .info{
	width: 25.5vw;
	
}
footer .container .info .top-info{
	margin-bottom: 5.5vw;
}
footer .container .info .logo{
	width: 12.5vw;
	display: block;
	margin-bottom: .5vw;
}
footer .container .info .logo img{
	width: 100%;
}
footer .container .col{
	width: 10vw;
	display: flex;
	flex-direction: column;
}
footer .container .col:nth-child(3){
	width: 11vw;
}
footer .container .col h3{
	margin: 0;
	font-size: 1.3vw;
	font-family: "poppins-light";
	margin-bottom: .8vw;
}
footer .container .col a:not(soc-netw){
	color: #fff;
	text-decoration: none;
	position: relative;
	font-size: 1vw;
	font-family: "poppins-light";
	margin-bottom: .5vw;
	text-transform: capitalize;
	transition: .3s;
}
footer .container .col a:not(soc-netw):hover{
	color: var(--main-color);
}
footer .container .col .soc-netws{
	display: flex;
	align-items: center;
}
footer .container .col .soc-netws a{
	width: 1.4vw;
	margin-right: 1.3vw;
}
footer .container .col .soc-netws a svg{
	width: 100%;
}
footer .container .col .soc-netws a svg path{
	transition: .3s;
}
footer .container .col .soc-netws a:hover svg path{
	fill: var(--main-color);
}
.mob{
	display: none!important;
}
.actions .privacy-policy .remember-me-checkbox+label a{
	color: #000;
}
.actions .privacy-policy .remember-me-checkbox+label a:hover{
	color: var(--main-color);
}
.privacy-policy .remember-me-checkbox+label{
	align-items: flex-start!important;
}
.actions .privacy-policy{
	height: 2vw;
	width: 100%;
}
.privacy-policy .remember-me-checkbox+label p{
	min-width: 28vw;
	max-width: 28vw;
	white-space: normal;
	margin-top: -.3vw;
}
.remember-me, .agreetment{
	width: 50%;
	display: flex;
	align-items: flex-start;
	position: relative;
}
.agreetment{
	width: 100%;
	height: 5.5vw;
}
.remember-me-checkbox,
.agree-checkbox{
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.remember-me-checkbox+label,
.agree-checkbox+label {
	display: inline-flex;
	align-items: center;
	user-select: none;
	width: .8vw;
	height: .8vw;
	border: 1px solid rgba(0, 0, 0, 0.35);
	box-sizing: content-box;
	border-radius: 1.5px;
	cursor: pointer;
	transition: .3s;
}
.agree-checkbox+label{
	align-items: flex-start;
}
.remember-me-checkbox+label::before,
.agree-checkbox+label::before{
	content: '';
	display: inline-block;
	width: .8vw;
	height: .8vw;
	flex-shrink: 0;
	flex-grow: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 70% 75%;
	background-image: url("../images/check.svg");
	opacity: 0;
	transition: .3s;
}
.remember-me-checkbox:checked+label::before,
.agree-checkbox:checked+label::before{
	opacity: 1;
}
.remember-me-checkbox+label p,
.agree-checkbox+label p{
	font-size: 1vw;
	margin: 0;
	white-space: nowrap;
	color: rgba(0, 0, 0, 0.5);
	margin-left: .4vw;
	transition: .3s;
}
.agree-checkbox+label p{
	white-space: normal;
	min-width: 29vw;
	max-width: 29vw;
	margin-top: -.4vw;
}
.agree-checkbox+label p a{
	font-weight: 800;
	color: #000;
	text-decoration: none;
}
.agree-checkbox+label p a:hover{
	text-decoration: underline;
}
.remember-me-checkbox+label:hover,
.agree-checkbox+label:hover{
	border-color: #000;
}
.remember-me-checkbox+label:hover p,
.agree-checkbox+label:hover p{
	color: #000;
}
.remember-me-checkbox:checked+label p,
.agree-checkbox:checked+label p{
	color: var(--main-color);
}
.remember-me-checkbox:checked+label,
.agree-checkbox:checked+label{
	border-color: var(--main-color)
}
.form-cont .actions{
	display: flex;
	justify-content: space-between;
	width: 95%;
	margin: 0 auto;
	align-items: center;
	margin-top: 1.5vw;
}
.form-cont .actions a{
	color: rgba(0, 0, 0, 0.5);
	font-size: 1vw;
	text-decoration: none;
	transition: .3s;
}
.form-cont .actions a:hover{
	color: var(--main-color);
}
@media (min-width: 1920px) {
	body{
		padding-top: 153px;
	}
	.container{
		padding: 0 267px;
	}
	header .container{
		padding: 52px 267px;
	}
	header .logo{
		width: 240px;
	}
	header ul li{
		margin-left: 115px;
	}
	header ul li a{
		font-size: 19px;
	}
	header ul li.search{
		font-size: 19px;
	}
	header ul li.search img{
		width: 19px;
		margin-left: 15px;
	}
	header ul .user-img{
		width: 27px;
		margin-left: 64px;
	}
	.top-section h1{
		font-size: 56px;
	}
	.top-section .info{
		width: 500px;
		margin-top: 105px;
	}
	.top-section .info .main-text{
		margin-top: 19px;
		font-size: 29px;
	}
	.main-text{
		font-size: 19px;
	}
	.main-btn{
		font-size: 19px;
		margin-top: 60px;
		border-radius: 96px;
		padding: 15px 40px;
	}
	.top-slider-cont{
		width: 756px;
	}
	.top-slider-cont .slick-dots li button::before {
		width: 14px;
		height: 14px;
	}
	.top-slider-cont .main-text{
		margin-top: 29px;
	}
	.main-title{
		font-size: 40px;
		margin-top: 105px;
	}
	.categories{
		padding: 0 52px;
		margin-top: 42px;
	}
	.category{
		box-shadow: -14px 14px 40px rgba(115, 113, 123, 0.25);
		border-radius: 2px 2px 40px 6px;
		padding: 64px 33px 39px 33px;
		margin-top: 39px;
	}
	.category:after{
		border-radius: 2px 2px 115px 6px;
	}
	.category:before{
		height: 6px;
		border-radius: 0 0 0 14px;
	}
	.category h3{
		font-size: 40px;
	}
	.category p{
		margin-top: 23px;
	}
	.category a{
		font-size: 19px;
		margin-top: 38px;
	}
	.category a:hover{
		padding-left: 10px;
	}
	.ready-to-work .arrow,
	.inspire-cont .arrow{
		min-width: 16px;
		max-width: 16px;
	}
	.ready-to-work-cont{
		padding: 0 38px;
		margin-top: 58px;
	}
	.ready-to-work-slider .slick-list{
		padding: 92px 0;
	}
	.ready-to-work-item{
		box-shadow: 0 0 19px rgba(115, 113, 123, 0.25);
		padding-top: 33px;
		margin: 0 23px;
	}
	.ready-to-work-item .img{
		width: 135px;
		height: 135px;
	}
	.ready-to-work-item .img:before{
		width: 23px;
		height: 23px;
		border: 6px solid #fff;
	}
	.ready-to-work-item .info{
		padding: 0 33px;
	}
	.ready-to-work-item .info p{
		margin-bottom: 19px;
	}
	.ready-to-work-item .info h3{
		font-size: 23px;
		margin: 25px 0;
	}
	.ready-to-work-item .bottom-section{
		margin-top: 27px;
		padding: 14px 33px;
	}
	.quantities-cont{
		padding: 80px 0;
	}
	.quantity-item h3{
		font-size: 40px;
	}
	.quantity-item p{
		font-size: 23px;
	}
	.inspire-item{
		box-shadow: 0 0 19px rgba(115, 113, 123, 0.25);
		margin: 0 19px;
	}
	.inspire-item .bottom-section{
		padding: 18px;
	}
	.inspire-item .bottom-section img{
		width: 46px;
		margin-right: 15px;
	}
	.inspire-slider .slick-list{
		padding: 73px 0;
	}
	.buisness-block{
		padding-bottom: 326px;
	}
	.buisness-block .blur-img{
		top: -288px;
	}
	.buisness-block .main-title{
		width: 441px;
	}
	.buisness-cont{
		margin-top: -19px;
	}
	.buisness-cont .buisness-info .buisness-info-item{
		width: 537px;
		margin-left: 48px;
	}
	.buisness-cont .buisness-info .buisness-info-item h3{
		font-size: 40px;
		margin-right: 36px;
	}
	.buisness-cont .buisness-info .buisness-info-item h4{
		font-size: 29px;
		margin-bottom: 19px;
	}
	.buisness-cont .buisness-info .buisness-info-item p{
		margin-bottom: 8px;
	}
	.buisness-info-item-first{
		margin-bottom: 115px;
		margin-right: 40px;
	}
	footer{
		padding-top: 96px;
		padding-bottom: 192px;
	}
	footer .container .info{
		width: 490px;
	}
	footer .container .info .top-info{
		margin-bottom: 105px;
	}
	footer .container .info .logo{
		width: 240px;
		margin-bottom: 10px;
	}
	footer .container .col{
		width: 192px;
	}
	footer .container .col:nth-child(3){
		width: 211px;
	}
	footer .container .col h3{
		font-size: 25px;
		margin-bottom: 15px;
	}
	footer .container .col a:not(soc-netw){
		font-size: 19px;
		margin-bottom: 10px;
	}
	footer .container .col .soc-netws a{
		width: 27px;
		margin-right: 25px;
	}
	.agreetment{
		height: 105px;
	}
	.remember-me-checkbox+label,
	.agree-checkbox+label {
		width: 15px;
		height: 15px;
	}
	.remember-me-checkbox+label::before,
	.agree-checkbox+label::before{
		width: 15px;
		height: 15px;
	}
	.remember-me-checkbox+label p,
	.agree-checkbox+label p{
		font-size: 19px;
		margin-left: 8px;
	}
	.agree-checkbox+label p{
		min-width: 556px;
		max-width: 556px;
		margin-top: -8px;
	}
	.actions .privacy-policy{
		height: 38px;
	}
	.privacy-policy .remember-me-checkbox+label p{
		min-width: 537px;
		max-width: 537px;
		margin-top: -6px;
	}
	.form-cont .actions{
		margin-top: 29px;
	}
	.form-cont .actions a{
		font-size: 19px;
	}
	.ready-to-work-cont .ready-to-work-item{
		margin: 23px 1.5%;
	}
	.show-all-cont{
		padding: 0 39px;
		margin-top: 75px;
		padding-bottom: 153px;
	}
	.show-all img{
		width: 29px;
		margin-left: 6px;
	}
	.show-all:hover{
		padding-left: 19px;
		transform: translateX(19px);
	}
}
@media(max-width: 1200px){
	body{
		padding-top: 11vw;
	}
	.container{
		padding: 0 8vw;
	}
	header .container{
		padding: 3vw 8vw;
	}
	header ul li.search,
	header ul li a,
	.main-btn,
	.main-text,
	.category a{
		font-size: 1.4vw;
	}
	header ul .user-img{
		margin-left: 4vw;
	}
	header ul li.search img{
		width: 1.4vw;
	}
	.top-section .info .main-text{
		font-size: 1.8vw;
	}
	header .logo,
	footer .container .info .logo{
		width: 15vw;
	}
	.top-section .info{
		width: 33vw;
	}
	.top-section h1{
		font-size: 3.8vw;
	}
	.top-slider-cont{
		width: 44vw;
	}
	.top-slider-cont .slick-dots li button::before{
		width: 1vw;
		height: 1vw;
	}
	.main-btn{
		padding: 1vw 3vw;
	}
	.category h3,
	.main-title,
	.quantity-item h3,
	.buisness-cont .buisness-info .buisness-info-item h3{
		font-size: 2.4vw;
	}
	.ready-to-work-item .info h3{
		font-size: 1.5vw;
	}
	.inspire-item .bottom-section p.grey-text{
		font-size: 1.2vw;
	}
	.buisness-cont .buisness-info .buisness-info-item h4{
		font-size: 1.9vw;
	}
	footer .container .col{
		width: 15vw;
	}
	footer .container .col h3{
		font-size: 1.7vw;
	}
	footer .container .col a:not(soc-netw){
		font-size: 1.2vw;
	}
	footer .container .col .soc-netws a{
		width: 1.8vw;
		margin-right: 1.8vw;
	}
	.ready-to-work .arrow, .inspire-cont .arrow{
		min-width: 1.2vw;
		max-width: 1.2vw;
	}
	.ready-to-work-cont{
		padding: 0 1vw;
	}
	.form-cont .actions a{
		font-size: 1.4vw;
	}
	.remember-me-checkbox+label p, .agree-checkbox+label p{
		font-size: 1.4vw;
		margin-left: .7vw;
	}
	.form-cont .main-btn{
		margin-top: 5.5vw;
		margin-bottom: 1.5vw;
	}
	.quantity-item p{
		font-size: 1.4vw;
	}
	.remember-me-checkbox+label::before, .agree-checkbox+label::before,
	.remember-me-checkbox+label, .agree-checkbox+label{
		width: 1vw;
		height: 1vw;
	}
	.actions .privacy-policy{
		height: 4vw;
	}
	.privacy-policy .remember-me-checkbox+label p{
		min-width: 33vw;
		max-width: 33vw;
		margin-top: -.5vw;
	}
	.show-all-cont{
		margin-top: 5vw;
		margin-bottom: 10vw;
	}
}
@media(max-width: 800px){
	body{
		padding-top: 13vw;
	}
	.container{
		padding: 0 5vw;
	}
	header .container{
		padding: 4vw 5vw;
	}
	header ul li.search,
	header ul li a,
	.main-btn,
	.main-text,
	.category a{
		font-size: 1.8vw;
	}
	.top-section .info .main-text{
		font-size: 2.2vw;
	}
	header .logo,
	footer .container .info .logo{
		width: 21vw;
	}
	header ul .user-img{
		width: 1.8vw;
		margin-left: 4vw;
	}
	.top-section .info .main-text{
		font-size: 2vw;
	}
	.top-section .info{
		width: 37vw;
	}
	.top-section h1{
		font-size: 4.2vw;
	}
	.top-slider-cont{
		width: 48vw;
	}
	.top-slider-cont .slick-dots li button::before{
		width: 1.4vw;
		height: 1.4vw;
	}
	.main-btn{
		padding: 1.5vw 4vw;
	}
	.categories{
		padding: 0;
	}
	.category h3,
	.main-title,
	.quantity-item h3,
	.buisness-cont .buisness-info .buisness-info-item h3{
		font-size: 2.8vw;
	}
	.ready-to-work-item .info h3{
		font-size: 1.8vw;
	}
	.inspire-item .bottom-section p.grey-text{
		font-size: 1.4vw;
	}
	.quantities-cont{
		padding: 5vw 0;
	}
	.quantity-item p{
		font-size: 1.5vw;
	}
	.buisness-block .main-title{
		width: 35vw;
	}
	.buisness-cont .buisness-info .buisness-info-item{
		width: 37vw;
		margin-left: 4vw;
	}
	.buisness-cont .buisness-info .buisness-info-item h4{
		font-size: 2.2vw;
	}
	footer .container .col{
		width: 18vw;
	}
	footer .container .col h3{
		font-size: 2vw;
	}
	footer .container .col a:not(soc-netw){
		font-size: 1.4vw;
	}
	footer .container .col .soc-netws a{
		width: 1.8vw;
		margin-right: 1.8vw;
	}
	.ready-to-work .arrow, .inspire-cont .arrow{
		min-width: 1.4vw;
		max-width: 1.4vw;
	}
	.ready-to-work-cont{
		padding: 0;
		margin-top: 4vw;
	}
	footer .container .col:nth-child(3){
		width: 14vw;
	}
	.form-cont .actions a{
		font-size: 2vw;
	}
	.remember-me-checkbox+label p, .agree-checkbox+label p{
		font-size: 2vw;
		margin-left: 1.2vw;
	}
	.form-cont .main-btn{
		margin-top: 7vw;
		margin-bottom: 3vw;
		font-size: 2vw;
	}
	.remember-me-checkbox+label::before, .agree-checkbox+label::before,
	.remember-me-checkbox+label, .agree-checkbox+label{
		width: 1.8vw;
		height: 1.8vw;
	}
	.actions .privacy-policy{
		height: 8vw;
		margin-top: 2vw;
	}
	.privacy-policy .remember-me-checkbox+label p{
		min-width: 46vw;
		max-width: 46vw;
		margin-top: -.5vw;
	}
	.show-all img{
		width: 2vw;
		margin-left: 1vw;
	}
}
@media (max-width: 500px) {
	body{
		padding-top: 35vw;
	}
	header .container{
		flex-direction: column;
		align-items: center;
		padding: 7vw 5vw;
	}
	header ul{
		margin-top: 5vw;
	}
	header ul li{
		margin: 0 6vw;
	}
	header .logo, footer .container .info .logo{
		width: 50vw;
	}
	header ul li.search, header ul li a, .main-btn, .main-text, .category a{
		font-size: 4vw;
	}
	header ul li.search img{
		width: 3.7vw;
		margin-left: 2vw;
	}
	.top-section{
		flex-direction: column;
	}
	.top-section .info{
		margin-top: 0;
		width: 100%;
	}
	.top-section h1{
		font-size: 8vw;
	}
	.top-section .info .main-text{
		font-size: 3.5vw;
		margin-top: 4vw;
	}
	header ul .user-img{
		width: 4vw;
	}
	.main-btn{
		padding: 2vw 6vw;
		border-radius: 30vw;
		margin-top: 7vw;
	}
	.top-slider-cont{
		width: 100%;
		margin-top: 8vw;
	}
	.top-slider-cont .slick-dots li button::before{
		width: 2.5vw;
		height: 2.5vw;
	}
	.category{
		width: 48%;
	}
	.category h3, .main-title, .buisness-cont .buisness-info .buisness-info-item h3{
		font-size: 5.5vw;
	}
	.category{
		margin-top: 5vw;
		padding: 4vw ;
		border-radius: 2px 2px 4vw 1vw;
	}
	.category.active:after{
		border-radius: 2px 2px 10vw .3vw;
	}
	.category p{
		margin-top: 3vw;
	}
	.ready-to-work-item .img{
		width: 18vw;
		height: 18vw;
	}
	.main-title{
		margin-top: 10vw;
	}
	.ready-to-work-item .info h3{
		font-size: 4.5vw;
		margin: 3vw 0;
	}
	.ready-to-work-item .info p{
		margin-bottom: 2vw;
	}
	.ready-to-work-item .img:before{
		width: 3vw;
		height: 3vw;
		border: 1vw solid #fff;
	}
	.ready-to-work-item .bottom-section{
		padding: 2vw;
		flex-direction: column;
	}
	.ready-to-work-item .bottom-section p{
		margin: 1vw 0
	}
	.quantities{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.quantity-item{
		width: 80%;
		margin-left: 10%;
		margin-bottom: 4vw;
	}
	.quantity-item h3{
		font-size: 8vw;
	}
	.quantity-item p{
		font-size: 3.5vw;
	}
	.inspire-item .bottom-section img{
		width: 13vw;
		margin-bottom: 2vw;
	}
	.inspire-item .bottom-section{
		padding: 5vw 3vw;
		text-align: center;
	}
	.ready-to-work .arrow, .inspire-cont .arrow{
		min-width: 3vw;
		max-width: 3vw;
	}
	.ready-to-work-slider,
	.inspire-slider{
		width: 90%;
	}
	.inspire-item .bottom-section p.grey-text{
		font-size: 3vw;
		margin-top: 2vw;
	}
	.inspire-item .bottom-section{
		flex-direction: column;
	}
	.buisness-cont{
		flex-direction: column;
		align-items: flex-start;
	}
	.buisness-block .main-title{
		width: 100%;
	}
	.mob{
		display: flex!important;
	}
	.desk{
		display: none!important;
	}
	.inspire-slider .slick-list,
	.ready-to-work-slider .slick-list{
		padding: 8vw 0;
	}
	.buisness-cont .buisness-info .buisness-info-item,
	.buisness-info-item-first{
		width: 100%;
		margin-bottom: 0;
		margin-right: 0;
		margin-left: 0;
		margin-top: 7vw;
		justify-content: space-between;
	}
	.buisness-cont .buisness-info .buisness-info-item .text{
		width: 85%;
	}
	.buisness-cont .buisness-info .buisness-info-item h4{
		font-size: 4.5vw;
	}
	footer .container{
		flex-wrap: wrap;
	}
	footer .container .info{
		width: 100%;
	}
	footer .container .info .logo{
		margin-bottom: 4vw;
	}
	footer .container .col,
	footer .container .col:nth-child(3){
		width: 48%;
	}
	footer .container .col h3{
		font-size: 5vw;
		margin-bottom: 2vw;
	}
	footer .container .info .top-info{
		margin-bottom: 8vw;
	}
	footer .container .col a:not(soc-netw){
		font-size: 3.3vw;
	}
	footer .container .col:nth-child(4){
		width: 100%;
		margin-top: 6vw;
	}
	footer .container .col:nth-child(5){
		width: 100%;
		text-align: center;
		margin-top: 12vw;
	}
	footer .container .col .soc-netws{
		margin-top: 2vw;
	}
	footer .container .col .soc-netws a{
		width: 6vw;
		margin-right: 5vw;
	}
	footer{
		padding: 10vw 0;
	}
	.form-cont .actions a{
		font-size: 3.5vw;
	}
	.remember-me-checkbox+label p, .agree-checkbox+label p{
		font-size: 3.5vw;
		margin-left: 2vw;
	}
	.form-cont .main-btn{
		margin-top: 10vw;
		margin-bottom: 4vw;
		font-size: 3.5vw;
	}
	.remember-me-checkbox+label::before, .agree-checkbox+label::before,
	.remember-me-checkbox+label, .agree-checkbox+label{
		width: 3vw;
		height: 3vw;
	}
	.actions .privacy-policy{
		height: 20vw;
		margin-top: 2vw;
	}
	.privacy-policy .remember-me-checkbox+label p{
		min-width: 70vw;
		max-width: 70vw;
		margin-top: -1vw;
	}
	.ready-to-work-cont{
		padding: 0 4vw;
	}
	.ready-to-work-cont .ready-to-work-item{
		width: 47%;
		margin: 2vw 1.5%;
	}
	.show-all-cont{
		margin-top: 10vw;
		margin-bottom: 20vw;
	}
	.show-all img{
		width: 4vw;
		margin-left: 2vw;
	}
}