:root{
	--main-color:#FC3170;
	--radius: .3vw;
}
*{
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	font-family: "Prompt-light"; 
}
@font-face {
	font-family: "Prompt-regular"; 
	src: url("../fonts/Prompt/Prompt-Regular.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "Prompt-light"; 
	src: url("../fonts/Prompt/Prompt-ExtraLight.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "Arvo-regular"; 
	src: url("../fonts/Arvo/Arvo-Regular.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "Arvo-Bold"; 
	src: url("../fonts/Arvo/Arvo-Bold.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
body{
	padding-top: 6vw;
}
.pt-0{
	padding-top: 0;
}
.mt-0{
	margin-top: 0;
}
.container{
	padding: 0 13.8vw;
}
header.container{
	padding: 1.7vw 13.8vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 30;
}
header.container .header-background{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background: #fff;
	z-index: -1;
	opacity: 0;
}
header.container .right-part{
	display: flex;
	align-items: center;
}
header .logo{
	width: 12.3vw;
}
header .logo img{
	width: 100%;
}
header nav{
	display: flex;
	align-items: center;
}
header nav a{
	font-family: "Prompt-light"; 
	text-decoration: none;
	font-size: 1vw;
	color: #000;
	text-transform: uppercase;
	margin-right: 2.6vw;
	position: relative;
	transition: .4s;
}
header nav a:before{
	width: 110%;
	position: absolute;
	content: '';
	top: 110%;
	background: #000;
	height: 1px;
	border-radius: 1px;
	left: -5%;
	transition: .4s;
	transform: scaleX(0);
}
header nav a:hover:before{
	transform: scaleX(1);
	background: var(--main-color);
}
header nav a:hover{
	color: var(--main-color);
}
header .actions{
	display: flex;
	align-items: center;
}
header .actions .action{
	width: 1.4vw;
	text-decoration: none;
	margin-right: 1vw;
	margin-left: 1.7vw;
	cursor: pointer;
}
header .actions .action svg{
	width: 100%;
}
header .actions .action svg path{
	transition: .4s;
}
header .actions .action:hover svg path{
	fill: var(--main-color);
}
.background{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	background: rgba(0, 0, 0, 0.65);
	opacity: 0;
	display: none;
	transition: opacity .5s;
}
.background.active{
	opacity: 1;
}
.background .cross{
	width: 1.5vw;
	position: absolute;
	top: 1.5vw;
	right: 1.5vw;
	cursor: pointer;
}
.background .cross path{
	transition: .3s;
}
.background .cross:hover path{
	fill: var(--main-color);
}
.overlay{
	position: fixed;
	background: #fff;
	border-radius: .7vw;
	top: 50%;
	left: 50%;
	transform:  translate(-50%, -50%) scale(0);
	display: none;
	opacity: 0;
	z-index: 60;
	transition: .5s;
}
.overlay.active{
	transform:  translate(-50%, -50%) scale(1);
	opacity: 1;
}
.register-overlay{
	width: 35.3vw;
	padding: 2.4vw;
	padding-top: 1.5vw;
}
.register-tabs{
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 1.2vw;
}
.register-tabs:before{
	bottom: 0;
	width: 100%;
	left: 0;
	background: #D6D7DB;
	height: 1px;
	position: absolute;
	content: '';
	z-index: 5;
}
.register-tab{
	display: flex;
	justify-content: center;
	text-transform: uppercase;
	width: 50%;
	letter-spacing: 0.03em;
	padding-bottom: 1vw;
	z-index: 7;
	position: relative;
	cursor: pointer;
	transition: .3s;
}
.register-tab .light{
	font-family: "Prompt-light"; 
	transition: .3s;
}
.register-tab .blod{
	font-family: "Prompt-regular"; 
	position: absolute;
	opacity: 0;
	transition: .3s;
	z-index: 5;
	color: #FC2065;
}
.register-tab:nth-child(1):before{
	bottom: 0;
	width: 100%;
	left: 100%;
	background: #FC2065;
	height: 1px;
	position: absolute;
	content: '';
	z-index: 5;
	transition: .3s;
}
.register-tab.active .blod{
	opacity: 1;
}
.register-tab.active .light{
	opacity: 0;
}
.register-tab:nth-child(1).active:before{
	left: 0;
}
.register-tabs:hover .register-tab:nth-child(1).active:before{
	left: 100%;
}
.register-tab:nth-child(1):hover:before{
	left: 0!important;
}
.register-tab.active{
	color: #FC2065;
}
.soc-netw-reg{
	display: flex;
	justify-content: space-between;
}
.soc-netw-reg a{
	width: 48%;
	display: flex;
	align-items: center;
	font-size: 1vw;
	font-family: "Prompt-regular"; 
	text-decoration: none;
	padding: .6vw .9vw;
	border: 1px solid #D6D7DB;
	border-radius: var(--radius);
	transition: border .3s;
}
.soc-netw-reg a.google{
	color: #518EF8;
}
.soc-netw-reg a.google:hover{
	border-color: #518EF8;
}
.soc-netw-reg a.facebook{
	color: #475993;
}
.soc-netw-reg a.facebook:hover{
	border-color: #475993;
}
.soc-netw-reg a img{
	width: 1.1vw;
	margin-right: .8vw;
}
.register-form p{
	margin: .7vw 0;
	font-size: 1vw;
}
.select{
	width: 100%;
	position: relative;
	background: #F6F4F5;
	font-size: 1vw;
	cursor: pointer;
	border-radius: var(--radius);
}

.selected-block{
	width: 100%;
	padding: .9vw 1.3vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
	position: relative;
	transition: .3s;
	border-bottom: 1px solid #F6F4F5;
}

.selected-block p{
	margin: 0;
	color: rgba(77, 58, 56, 0.5);
}
.selected-block p.active{
	color: #4D3A38;
}
.selected-block .arrow{
	width: 1.1vw;
	transition: .3s;
}
.selected-block .arrow path{
	transition: .3s;
}
.select:hover .arrow{
	padding-top: .6vw;
}
.select:hover .arrow path{
	fill: var(--main-color);
}
.select.active .options{
	box-shadow: 5px 5px 25px -8px #aaa;
}
.select.active .selected-block{
	border-bottom: 1px solid #4D3A38;
}
.select.active .selected-block .arrow{
	padding-top: .6vw;
}
.select.active .selected-block .arrow path{
	fill: var(--main-color);
}
.select .options{
	position: absolute;
	top: 0;
	width: 100%;
	background: #F6F4F5;
	padding-top: 3.5vw;
	transition: .5s;
	border-radius: var(--radius);
	z-index: 8;
	overflow: hidden;
}
.select .options .option{
	padding: .5vw 1.3vw;
	transition: .3s;
	cursor: pointer;
	letter-spacing: 0.03em;
}
.select .options .option:hover{
	background: rgba(77, 58, 56, 0.1);
	color: var(--main-color);
}
.main-dark-title{
    margin: 0;
    font-size: 1.4vw;
    font-family: "Arvo-regular"; 
    font-weight: 400;
}
.main-input{
	width: 100%;
	padding: .9vw 1.7vw;
	border: 1px solid #F6F4F5;
	background: #F6F4F5;
	border-radius: var(--radius);
	font-size: 1vw;
	font-family: "Prompt-light"; 
	font-weight: 800;
	outline: none;
	color: #4D3A38;
	transition: .3s;
	margin-bottom: 1vw;
}
textarea.main-input{
	min-width: 100%;
	max-width: 100%;
	padding: .8vw 1.2vw;
}
.password input{
	margin-bottom: 0;
	padding-right: 3vw;
}
.password{
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 1.2vw;
}
.password svg{
	position: absolute;
	right: 1vw;
	width: 1.2vw;
	cursor: pointer;
}
.password svg path{
	transition: .3s;
}
.password svg:hover path{
	fill: #000;
}
.password svg.active path{
	fill: var(--main-color)
}
.register-forms{
	display: flex;
	overflow: hidden;
}
.register-form{
	min-width: 30.3vw;
	max-width: 30.3vw;
	margin-right: 1vw;
	transition: .3s;
}
.main-input::-webkit-input-placeholder{
	color: rgba(0, 0, 0, 0.5);
	font-weight: 400;
	transition: .3s;
}
.main-input:hover::-webkit-input-placeholder{
	color: rgba(0, 0, 0, .8);
}
.main-input:focus{
	border: 1px solid #FC2065;
}
.register-form .actions{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 1vw;
	height: 5.5vw;
}	
.register-form .actions a{
	font-size: 1vw;
	margin: 0;
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
	white-space: nowrap;
	transition: .3s;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.register-form .actions a:hover{
	color: #000;
}
header .actions .action.basket span{
	position: absolute;
	font-size: .5vw;
	font-weight: 800;
	color: #fff;
	background: var(--main-color);
	width: 1vw;
	height: 1vw;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid #fff;
	margin-left: .8vw;
	margin-top: -.2vw;
}
header .actions .action.basket span:empty{
	display: none;
}
.register-form button{
	width: 100%;
	padding: .7vw 0;
}

.register-form .bottom-form-text{
	margin-bottom: 0;
	color: rgba(0, 0, 0, 0.5);
}
.register-form .bottom-form-text span{
	text-decoration: none;
	color: #000;
	transition: .3s;
	cursor: pointer;
}
.register-form .bottom-form-text span:hover{
	color: var(--main-color);
}
.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: .9vw;
	height: .9vw;
	border: 1px solid rgba(0, 0, 0, 0.35);
	box-sizing: content-box;
	border-radius: 1.5px;
	cursor: pointer;
	background: #fff;
	transition: .3s;
}
.agree-checkbox+label{
	align-items: flex-start;
}
.remember-me-checkbox+label::before,
.agree-checkbox+label::before{
	content: '';
	display: inline-block;
	width: .9vw;
	height: .9vw;
	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)
}
.top-main-section{
	margin-top: 7.6vw;
	position: relative;
}
.main-title{
	font-size: 2.1vw;
	margin: 0;
	font-family: "Arvo-Bold"; 
	color: #4D3A38;
	letter-spacing: 0.01em;
}
.main-text{
	font-size: 1.2vw;
	margin: 0;
	font-family: "Prompt-light"; 
}
.main-title i{
	font-style: normal;
	font-family: "Arvo-regular"; 
	font-weight: 100;
}
span.red{
    font-family: "Prompt-regular"; 
    color: var(--main-color);
}
.top-main-section .main-title{
	width: 32vw;
	margin-bottom: 1.5vw;
}
.top-main-section .main-text{
	width: 32vw;
}
.main-top-img{
	position: absolute;
	top: -10vw;
	right: 0;
	z-index: -1;
	width: 53.2vw;
}
.top-products-cont{
	width: 33vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 4.6vw;
	position: relative;
}
.top-products {
	width: 90%;
}
.top-products .top-product{
	width: 13.4vw;
	margin: 1vw;
	border-radius: var(--radius);
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0px 2px 15px rgba(217, 223, 236, 0.8);
}
.top-products .top-product .img{
	width: 100%;
	padding: 1vw 1.4vw;
	background: var(--main-color);
}
.top-products .top-product .img img{
	width: 4.2vw;
}
.top-products .top-product .info{
	padding: 1.1vw 1.4vw;
}
.top-products .top-product h3{
	font-size: 1.2vw;
	margin: 0;
	margin-top: 1.1vw;
	font-family: "Arvo-regular"; 
	font-weight: 400;
	line-height: 1.3;
}
.top-products .top-product p{
	font-size: 1vw;
	margin-top: .8vw;
	width: 100%;
}
.top-products .top-product a{
	text-transform: uppercase;
	text-decoration: none;
	margin-top: 2.3vw;
	margin-bottom: 1vw;
	font-size: 1vw;
	line-height: 1;
	display: inline-block;
	font-family: "Prompt-light"; 
	color: var(--main-color);
	position: relative;
	transition: .4s;
}
.top-products .top-product a:before{
	width: 105%;
	left: -2.5%;
	top: 100%;
	content: '';
	height: 1px;
	background: var(--main-color);
	position: absolute;
	transition: .4s;
}
.top-products .top-product a:hover:before{
	transform: scale(0);
}
.top-products-cont .arrow{
	width: 1.2vw;
	cursor: pointer;
	z-index: 3;
	height: max-content;
}
.top-products-cont .arrow path{
	transition: .3s;
}
.top-products-cont .arrow:hover path{

	fill: var(--main-color);
}
.top-products-cont .arrow-left{
	transform: rotate(180deg);
}
.right-block{
	margin-top: 3.2vw;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: relative;
}
.right-block .main-title{
	text-align: right;
}
.right-block .main-text{
	width: 60vw;
}
.mt-1{
	margin-top: 3.5vw;
}
.right-block img{
	width: 2.1vw;
	right: 32vw;
	bottom: -1vw;
	position: absolute;
}
.how-it-work{
	margin-top: 9.8vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.how-it-work .img{
	width: 41vw;
	box-shadow: .7vw .7vw 2vw -1.3vw;
}
.how-it-work .info{
	width: 27vw;
}
.how-it-work ul{
	margin: 0;
	padding: 0;
	list-style: none;
	margin-top: 2.6vw;
}
.how-it-work ul li{
	display: flex;
	align-items: flex-start;
	margin-top: 1.3vw;
}
.how-it-work ul li img{
	width: 1.4vw;
	margin-right: 1vw;
	margin-top: .2vw;
}
.how-it-work .main-btn{
	margin-top: 2.8vw;
}
button.main-btn{
	font-family: "Prompt-light"; 
	cursor: pointer;
	outline: none;
}
.main-btn{
	padding: 1vw 3.3vw;
	display: inline-block;
	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.2vw;
	text-decoration: none;
	border: 2px solid var(--main-color);
	position: relative;
	transition: color .3s;
	border-radius: var(--radius);
	font-weight: 800;
}
.main-btn span{
	z-index: 3;
	position: relative;
}
.main-btn:before{
	width: 100%;
	right: unset;
	left: 0;
	top: 0;
	position: absolute;
	content: '';
	height: 100%;
	transition: .3s;
	background: var(--main-color);
	z-index: 2;
}
.main-btn:hover:before{
	width: 0;
	left: unset;
	right: 0;
}
.main-btn:hover{
	color: var(--main-color);
}
.text-block{
	padding-right: 4.6vw;
	margin-top: 5.2vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.text-block .info{
	width: 31vw;
}
.text-block .info .main-btn{
	margin-top: 6vw;
}
.text-block .img{
	width: 48vw;
}
.text-center{
	text-align: center;
}
.products-section{
	margin-top: 5.6vw;
}
.products{
	display: flex;
	justify-content: flex-start;
	margin-top: 3.9vw;
	flex-wrap: wrap;
}
.products .product{
	width: 31%;
	margin-left: 3.4%;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 3.5vw;
}
.products .product:nth-child(3n-2){
	margin-left: 0;
}
.products .product .product-img{
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.products .product .product-img:before{
	width: 100%;
	height: 100%;
	position: absolute;
	content: '';
	z-index: 3;
	background: #fff;
	opacity: 0;
	transition: .4s;
}
.products .product .product-img .img{
	width: 100%;
	height: 26vw;
	object-fit: cover;
}
.products .product .product-img .paw{
	position: absolute;
	width: 30%;
	z-index: 4;
	transform: scale(0);
	transition: .4s;
}
.products .product:hover .product-img .paw{
	transform: scale(1);
}
.products .product:hover .product-img:before{
	opacity: .4;
}
.products .product h3{
	font-size: 1.5vw;
	color: #000;
	margin: 0;
	font-family: "Prompt-regular"; 
	font-weight: 400;
	margin-top: .5vw;
}
.products .product .price{
	font-size: 1.5vw;
	color: #00000050;
	margin: 0;
}
.products .product .textures{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.products .product .textures img{
	width: 10.5%;
	margin-right: 4.3%;
	margin-top: .8vw;
	display: block;
	border-radius: 100%;
}
.products .product .textures img:nth-child(7n){
	margin-right: 0;
}
.products-section .more{
	display: flex;
	align-items: center;
	font-size: 1.2vw;
	text-align: center;
	color: #FC2065;
	text-decoration: none;
	margin-left: 50%;
	transform: translateX(-50%);
	font-family: "Prompt-regular";
	transition: .3s;
	width: max-content;
	margin-top: 5vw;
}
.products-section .more img{
	width: 1.2vw;
	margin-left: .5vw;
}
.products-section .more:hover{
	padding-left: 1vw;
}
.crumbs{
    padding-top: 9vw;
    display: flex;
    align-items: center;
	flex-wrap: wrap;
}
.crumbs a,
.crumbs p{
    font-size: 1vw;
    color: #000000;
    text-decoration: none;
    transition: .3s;
    margin: 0;
	font-weight: 800;
}
.crumbs p{
    text-decoration: underline;
}
.crumbs a:hover{
    color: var(--main-color);
}
.crumbs span{
    width: .4vw;
    height: 1px;
    background: #000;
    margin: 0 1vw;
}
footer{
	background: #4D3A38;
	margin-top: 8vw;
	color: #fff;
	padding-top: 5vw;
}
footer .container{
	display: flex;
	align-items: flex-start;
}
footer .main-col{
	width: 37.5vw;
}
footer .nav-col{
	width: 13.3vw;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
footer .soc-col{
	width: 10vw;
}
footer p, footer a{
	color: #fff;
	font-size: 1vw;
	line-height: 1.5;
	margin: 0;
}
footer .nav-col a{
	text-decoration: none;
	display: inline-block;
	margin-bottom: .5vw;
	text-transform: capitalize;
	position: relative;
}
footer .nav-col a:before{
	width: 100%;
	position: absolute;
	top: 110%;
	height: 1px;
	background: #fff;
	content: '';
	left: 0;
	transition: .3s;
	transform: scaleX(0);
	transform-origin: left;
}
footer .nav-col a:hover:before{
	transform: scaleX(1);
}
footer h3{
	margin: 0;
	font-size: 1.2vw;
	margin-bottom: 1vw;
}
footer p{
	margin-bottom: 4.9vw;
}
footer .main-col p{
	width: 70%;
}
footer .logo{
	width: 6vw;
	margin-bottom: 2.1vw;
	display: block;
}
footer .logo img{
	width: 100%;
}
footer .soc-netw{
	display: flex;
	align-items: center;
}
footer .soc-netw a{
	width: 1.4vw;
	margin-right: 1.4vw;
	display: block;
}
footer .soc-netw a img{
	width: 100%;
}
.burger{
	display: none;
}
.mob{
	display: none;
}
.desc{
	display: block;
}
@media (min-width: 1920px) {
	:root{
		--radius: 5px;
	}
	body{
		padding-top: 115px;
	}
	.container{
		padding: 0 265px;
		width: 1920px;
		margin: auto;
	}
	header.container{
		padding: 32px 265px;
		width: 1920px;
		left: calc(50vw - 960px)
	}
	header .logo{
		width: 177px;
	}
	header nav a{
		font-size: 19px;
		margin-right: 50px;
	}
	header .actions .action{
		width: 27px;
		margin-right: 19px;
		margin-left: 32px;
	}
	.crumbs{
		padding-top: 172px;
	}
	.crumbs a,
	.crumbs p{
		font-size: 19px;
	}
	.crumbs span{
		width: 8px;
		margin: 0 19px;
	}
	.select{
		font-size: 19px;
	}
	.selected-block{
		padding: 17px 25px;
	}
	.selected-block .arrow{
		width: 21px;
	}
	.select:hover .arrow{
		padding-top: 12px;
	}
	.select.active .selected-block .arrow{
		padding-top: 12px;
	}
	.select .options{
		padding-top: 68px;
	}
	.select .options .option{
		padding: 10px 25px;
	}
	.overlay{
		border-radius: 14px;
	}
	.register-overlay{
		width: 677px;
		padding: 46px;
		padding-top: 29px;
	}
	.register-tabs{
		margin-bottom: 23px;
	}
	.register-tab{
		padding-bottom: 19px;
	}
	.soc-netw-reg a{
		font-size: 19px;
		padding: 12px 17px;
	}
	.soc-netw-reg a img{
		width: 21px;
		margin-right: 16px;
	}
	.register-form p{
		margin: 14px 0;
		font-size: 19px;
	}
	.main-input{
		padding: 18px 32px;
		font-size: 19px;
		margin-bottom: 19px;
	}
	.main-dark-title{
        font-size: 27px;
    }
	.password input{
		padding-right: 57px;
	}
	.password{
		margin-bottom: 23px;
	}
	.password svg{
		right: 19px;
		width: 23px;
	}
	.register-form{
		min-width: 581px;
		max-width: 581px;
		margin-right: 19px;
	}
	.register-form .actions{
		padding: 0 19px;
		height: 105px;
	}	
	.register-form .actions a{
		font-size: 19px;
	}
	.register-form button{
		padding: 14px 0;
	}
	.agreetment{
		height: 105px;
	}
	.remember-me-checkbox+label,
	.agree-checkbox+label,
	.remember-me-checkbox+label::before,
	.agree-checkbox+label::before {
		width: 18px;
		height: 18px;
	}
	.remember-me-checkbox+label p,
	.agree-checkbox+label p{
		font-size: 19px;
		margin-left: 8px;
	}
	.agree-checkbox+label p{
		min-width: 555px;
		max-width: 555px;
		margin-top: -8px;
	}
	.background .cross{
		width: 30px;
		top: 30px;
		right: 30px;
	}
	.top-main-section{
		margin-top: 145px;
	}
	.main-title{
		font-size: 40px;
	}
	.main-text{
		font-size: 23px;
	}
	.top-main-section .main-title{
		width: 615px;
		margin-bottom: 29px;
	}
	.top-main-section .main-text{
		width: 615px;
	}
	.main-top-img{
		width: 1020px;
		top: -192px;
	}
	.top-products-cont{
		width: 630px;
		margin-top: 88px;
	}
	.top-products .top-product{
		width: 257px;
		margin: 19px;
	}
	.top-products .top-product .img{
		padding: 19px 27px;
	}
	.top-products .top-product .img img{
		width: 80px;
	}
	.top-products .top-product .info{
		padding: 21px 27px;
	}
	.top-products .top-product h3{
		font-size: 23px;
		margin-top: 21px;
	}
	.top-products .top-product p{
		font-size: 19px;
		margin-top: 15px;
	}
	.top-products .top-product a{
		font-size: 19px;
		margin-top: 45px;
		margin-bottom: 19px;
		font-size: 19px;
	}
	.top-products-cont .arrow{
		right: -77px;
		width: 23px;
	}
	.right-block{
		margin-top: 61px;
	}
	.right-block .main-text{
		width: 1152px;
	}
	.mt-1{
		margin-top: 67px;
	}
	.right-block img{
		width: 40px;
		right: 615px;
		bottom: -19px;
	}
	.how-it-work{
		margin-top: 188px;
	}
	.how-it-work .img{
		width: 787px;
		box-shadow: 14px 14px 38px -25px;
	}
	.how-it-work .info{
		width: 520px;
	}
	.how-it-work ul{
		margin-top: 50px;
	}
	.how-it-work ul li{
		margin-top: 25px;
	}
	.how-it-work ul li img{
		width: 27px;
		margin-right: 19px;
		margin-top: 4px;
	}
	.how-it-work .main-btn{
		margin-top: 53px;
	}
	.main-btn{
		padding: 19px 64px;
		font-size: 23px;
	}
	.text-block{
		padding-right: 88px;
		margin-top: 100px;
	}
	.text-block .info{
		width: 595px;
	}
	.text-block .info .main-btn{
		margin-top: 115px;
	}
	.text-block .img{
		width: 920px;
	}
	.products-section{
		margin-top: 107px;
	}
	.products{
		margin-top: 75px;
	}
	.products .product .product-img .img{
		height: 500px;
	}
	.products .product h3{
		font-size: 29px;
	}
	.products .product .price{
		font-size: 29px;
	}
	.products-section .more img{
		width: 23px;
		margin-left: 10px;
	}
	.products-section .more{
		font-size: 23px;
		margin-top: 96px;
	}
	.products-section .more:hover{
		padding-left: 19px;
	}
	footer{
		margin-top: 153px;
		padding-top: 96px;
	}
	footer .main-col{
		width: 720px;
	}
	footer .nav-col{
		width: 255px;
	}
	footer .soc-col{
		width: 192px;
	}
	footer p, footer a{
		font-size: 19px;
	}
	footer .nav-col a{
		margin-bottom: 9.6px;
	}
	footer h3{
		font-size: 23px;
		margin-bottom: 19px;
	}
	footer p{
		margin-bottom: 95px;
	}
	footer .logo{
		width: 115px;
		margin-bottom: 40px;
	}
	footer .soc-netw a{
		width: 27px;
		margin-right: 27px;
	}
}
@media(max-width: 1200px) {
	body{
		padding-top: 8vw;
	}
	:root{
		--radius: .4vw;
	}
	.background .cross{
		width: 2vw;
		top: 2vw;
		right: 2vw;
	}
	.container{
		padding: 0 8vw;
	}
	.crumbs{
		padding-top: 12vw;
	}
	.crumbs a,
	.crumbs p{
		font-size: 1.3vw;
	}
	.crumbs span{
		width: .8vw;
		margin: 0 1.2vw;
	}
	.select{
		font-size: 1.2vw;
	}
	.selected-block{
		padding: 1.2vw 1.5vw;
	}
	.selected-block .arrow{
		width: 1.3vw;
	}
	.select:hover .arrow{
		padding-top: 1vw;
	}
	.select.active .selected-block .arrow{
		padding-top: 1vw;
	}
	.select .options{
		padding-top: 4.2vw;
	}
	.select .options .option{
		padding: 1vw 1.5vw;
	}
	header.container{
		padding: 2vw 8vw;
	}
	.overlay{
		border-radius: 1vw;
	}
	.register-overlay{
		width: 43vw;
		padding: 3.2vw;
		padding-bottom: 2.5vw;
	}
	.register-form{
		min-width: 36.3vw;
		max-width: 36.3vw;
	}
	.register-form p{
		margin: 1vw 0;
		font-size: 1.2vw;
	}
	.soc-netw-reg a{
		padding: .8vw 1.1vw;
		font-size: 1.2vw;
	}
	.soc-netw-reg a img{
		width: 1.4vw;
	}
	.main-input{
		padding: 1.2vw 2vw;
		font-size: 1.2vw;
		margin-bottom: 1.5vw;
	}
	.main-dark-title{
        font-size: 1.8vw;
    }
	.password{
		margin-bottom: 1.8vw;
	}
	.password svg{
		width: 1.5vw;
		right: 1.2vw;
	}
	.remember-me-checkbox+label, 
	.agree-checkbox+label,
	.remember-me-checkbox+label::before, 
	.agree-checkbox+label::before{
		width: 1.2vw;
		height: 1.2vw;
	}
	.register-form button{
		padding: 1vw 0;
	}
	.agree-checkbox+label p{
		min-width: 34vw;
		max-width: 34vw;
		font-size: 1.1vw;
		margin-left: .7vw;
	}
	.remember-me-checkbox+label p{
		font-size: 1.1vw;
		margin-left: .7vw;
	}
	.register-form .actions a{
		font-size: 1.1vw;
	}
	.agreetment,
	.register-form .actions{
		height: 7vw;
	}
	.main-title{
		font-size: 2.4vw;
	}
	.main-text{
		font-size: 1.4vw;
	}
	.top-main-section .main-title{
		margin-bottom: 2vw;
	}
	.mt-1{
		margin-top: 4.5vw;
	}
	.right-block{
		margin-top: 4vw;
	}
	.right-block .main-text{
		width: 70vw;
	}
	.right-block img{
		bottom: -4vw;
		width: 3vw;
	}
	.text-block,
	.products-section .more{
		margin-top: 6vw;
	}
	.products-section{
		margin-top: 7vw;
	}
	.main-top-img{
		top: -6vw;
		width: 55vw;
	}
	.how-it-work .img{
		width: 45vw;
	}
	header nav a{
		font-size: 1.2vw;
	}
	header .actions .action{
		width: 1.7vw;
	}
	header .logo{
		width: 14vw;
	}
	.top-products-cont{
		width: 38vw;
	}
	.top-products .top-product{
		width: 15vw;
		margin: 1.5vw;
	}
	.top-products .top-product .img{
		padding: 1.4vw 2vw;
	}
	.top-products .top-product .img img{
		width: 5vw;
	}
	.top-products .top-product h3{
		font-size: 1.4vw;
	}
	.top-products .top-product p{
		font-size: 1.2vw;
	}
	.how-it-work .info{
		width: 32vw;
	}
	.top-products .top-product a,
	.main-btn,
	.products-section .more{
		font-size: 1.4vw;
	}
	.products .product .product-img .img{
		height: 30vw;
	}
	.products .product h3,
	.products .product .price{
		font-size: 1.7vw;
	}
	.products-section .more img{
		width: 1.6vw;
		margin-left: .7vw;
	}
	.products .product .textures img{
		margin-top: 1.2vw;
	}
	.text-block .info{
		width: 35vw;
	}
	.top-products-cont .arrow{
		width: 1.5vw;
	}
	footer{
		margin-top: 10vw;
	}
	footer p, footer a{
		font-size: 1.2vw;
	}
	footer h3{
		font-size: 1.5vw;
	}
	footer .nav-col{
		width: 16vw;
	}
	footer .soc-col{
		width: 13vw;
	}

	footer .main-col{
		width: 40vw;
	}
	footer .soc-netw a{
		width: 1.8vw;
	}
	footer .logo{
		width: 7vw;
	}
}
@media(max-width: 800px) {
	body{
		padding-top: 13vw;
	}
	:root{
		--radius: .6vw;
	}
	.background .cross{
		width: 2.5vw;
	}
	header nav a{
		font-size: 1.7vw;
	}
	header .actions .action{
		width: 2.2vw;
	}
	header .logo{
		width: 17vw;
	}
	header.container{
		padding: 3vw 4vw;
	}
	.overlay{
		border-radius: 1.2vw;
	}
	.register-overlay{
		width: 55vw;
		padding: 4vw;
		padding-bottom: 3vw;
	}
	.register-form{
		min-width: 47vw;
		max-width: 47vw;
		margin-right: 2vw;
	}
	.register-form p{
		margin: 1.5vw 0;
		font-size: 1.7vw;
	}
	.soc-netw-reg a{
		padding: 1vw 1.5vw;
		font-size: 1.5vw;
	}
	.soc-netw-reg a img{
		width: 1.8vw;
	}
	.register-form button{
		padding: 1.2vw 0;
	}
	.main-input{
		padding: 1.6vw 2.4vw;
		font-size: 1.6vw;
		margin-bottom: 2vw;
	}
	.main-dark-title{
        font-size: 2.2vw;
    }
	.password{
		margin-bottom: 2.2vw;
	}
	.password input{
		padding-right: 4.5vw;
	}
	.password svg{
		width: 2vw;
		right: 1.5vw;
	}
	.remember-me-checkbox+label, 
	.agree-checkbox+label,
	.remember-me-checkbox+label::before, 
	.agree-checkbox+label::before{
		width: 1.8vw;
		height: 1.8vw;
	}
	.agree-checkbox+label p{
		min-width: 43vw;
		max-width: 43vw;
		font-size: 1.4vw;
		margin-left: 1vw;
	}
	.remember-me-checkbox+label p{
		font-size: 1.4vw;
		margin-left: 1vw;
	}
	.register-form .actions a{
		font-size: 1.4vw;
	}
	.agreetment,
	.register-form .actions{
		height: 8vw;
	}

	.container{
		padding: 0 4vw;
	}
	.crumbs{
		padding-top: 14vw;
	}
	.crumbs a,
	.crumbs p{
		font-size: 1.8vw;
	}
	.crumbs span{
		width: 1vw;
	}
	.select{
		font-size: 1.6vw;
	}
	.selected-block{
		padding: 1.4vw 1.8vw;
	}
	.selected-block .arrow{
		width: 1.6vw;
	}
	.select:hover .arrow{
		padding-top: 1.2vw;
	}
	.select.active .selected-block .arrow{
		padding-top: 1.2vw;
	}
	.select .options{
		padding-top: 5.5vw;
	}
	.select .options .option{
		padding: 1.4vw 1.8vw;
	}
	.main-title{
		font-size: 3vw;
	}
	.top-main-section .main-title{
		width: 65%;
	}
	.top-main-section .main-text{
		width: 38vw;
	}
	.top-products-cont{
		width: 44vw;
	}
	.top-main-section .main-title{
		margin-bottom: 3vw;
	}
	.main-text{
		font-size: 1.8vw;
	}
	.top-products .top-product{
		width: 18vw;
		box-shadow: 0px 2px 1vw rgb(217 223 236 / 80%);
	}
	.top-products .top-product .img img{
		width: 6vw;
	}
	.top-products .top-product h3{
		font-size: 1.8vw;
	}
	.top-products .top-product p{
		font-size: 1.5vw;
	}
	.main-top-img{
		top: unset;
		bottom: 0;
	}
	.top-products-cont .arrow{
		width: 2vw;
		right: -5vw;
	}
	.top-products .top-product a, .main-btn, .products-section .more{
		font-size: 1.6vw;
	}
	.right-block{
		margin-top: 6vw;
	}
	.right-block .main-text{
		width: 100%;
	}
	.right-block img{
		width: 5vw;
		bottom: -5vw;
	}
	.how-it-work{
		margin-top: 11vw;
	}
	.how-it-work .img{
		width: 48vw;
	}
	.how-it-work .info{
		width: 37vw;
	}
	.how-it-work ul li img{
		width: 1.8vw;
	}
	.how-it-work ul li{
		margin-top: 1.7vw;
	}
	.how-it-work .main-btn{
		margin-top: 3.5vw;
	}
	.text-block, .products-section .more{
		margin-top: 7vw;
	}
	.text-block .info{
		width: 42vw;
	}
	.text-block .img{
		width: 50vw;
	}
	.products{
		margin-top: 4.3vw;
	}
	.products .product .product-img .img{
		height: 32.8vw;
	}
	.products .product h3{
		margin-top: 1vw;
	}
	.products .product h3, .products .product .price{
		font-size: 2vw;
	}
	.products-section .more img{
		width: 1.8vw;
		margin-left: .9vw;
	}
	footer{
		padding-top: 6vw;
	}
	footer h3{
		font-size: 2vw;
		margin-bottom: 1.3vw;
	}
	footer p, footer a{
		font-size: 1.5vw;
	}
	footer .nav-col a{
		margin-bottom: .8vw;
	}
	footer .nav-col{
		width: 18vw;
	}
	footer .soc-col{
		width: 16vw;
	}
	footer .main-col p{
		width: 80%;
	}
	footer .logo{
		width: 9vw;
		margin-bottom: 3vw;
	}
	footer p{
		margin-bottom: 6vw;
	}
	footer .soc-netw a{
		width: 2.5vw;
		margin-right: 1.6vw;
	}
}
@media(max-width: 500px) {
	:root{
		--radius: 1vw;
	}
	.mob{
		display: block;
	}
	.desc{
		display: none;
	}
	.background .cross{
		width: 5vw;
		top: 4vw;
		right: 5vw;
	}
	header.container{
		padding: 4vw;
		padding-bottom: 3vw;
	}
	.crumbs{
		padding-top: 22vw;
	}
	.crumbs a,
	.crumbs p{
		font-size: 3.5vw;
		line-height: 2.5;
	}
	.crumbs span{
		width: 3vw;
		margin: 0 2vw;
	}
	.main-dark-title{
        font-size: 5.5vw;
    }
	.select{
		font-size: 3.5vw;
	}
	.selected-block{
		padding: 2vw;
	}
	.selected-block .arrow{
		width: 3vw;
	}
	.select:hover .arrow{
		padding-top: 2vw;
	}
	.select.active .selected-block .arrow{
		padding-top: 2vw;
	}
	.select .options{
		padding-top: 9.5vw;
	}
	.select .options .option{
		padding: 2.2vw 3vw;
	}
	.overlay{
		border-radius: 1.5vw;
	}
	.register-overlay{
		width: 90vw;
		padding: 5vw;
		padding-bottom: 5vw;
	}
	.register-form{
		min-width: 80vw;
		max-width: 80vw;
		margin-right: 4vw;
	}
	.register-form p{
		margin: 2vw 0;
		font-size: 3.5vw;
	}
	.register-form .bottom-form-text{
		margin-top: 4vw;
	}
	.soc-netw-reg a{
		padding: 1.5vw 2vw;
		font-size: 3.5vw;
	}
	.soc-netw-reg a img{
		width: 4vw;
		margin-right: 1.8vw;
	}
	.register-form button{
		padding: 1.5vw 0;
	}
	.main-input{
		padding: 2vw 3vw;
		font-size: 3.2vw;
		margin-bottom: 4vw;
	}
	.password{
		margin-bottom: 5vw;
	}
	.password input{
		padding-right: 4.5vw;
	}
	.password svg{
		width: 4vw;
		right: 3vw;
	}
	.remember-me-checkbox+label, 
	.agree-checkbox+label,
	.remember-me-checkbox+label::before, 
	.agree-checkbox+label::before{
		width: 4vw;
		height: 4vw;
		border-radius: .5vw;
	}
	.agree-checkbox+label p{
		min-width: 75vw;
		max-width: 75vw;
		font-size: 3vw;
		margin-left: 2vw;
	}
	.remember-me-checkbox+label p{
		font-size: 3vw;
		margin-left: 2vw;
	}
	.register-form .actions a{
		font-size: 3vw;
	}
	.agreetment,
	.register-form .actions{
		height: 25vw;
	}
	.register-tab{
		padding-bottom: 3vw;
	}
	body{
		padding-top: 12vw;
	}
	.burger{
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: column;
		width: 8vw;
		height: 6vw;
		z-index: 25;
		margin-left: 2vw;
	}
	.burger span{
		width: 100%;
		height: 2px;
		background: #4D3A38;
		position: relative;
		transition: .4s;
		top: 0;
		border-radius: 5vw;
	}
	.burger.active span:nth-child(1){
		top: calc(3vw - 1px);
		transform: rotate(45deg);
	}
	.burger.active span:nth-child(2){
		opacity: 0;
	}
	.burger.active span:nth-child(3){
		top: calc(-3vw + 1px);
		transform: rotate(-45deg);
	}
	header nav{
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: #fff;
		z-index: 20;
		flex-direction: column;
		justify-content: center;
		filter: blur(50px);
		transform: scale(.7);
		opacity: 0;
		transition: .5s;
		display: none;
	}
	header nav.active{
		filter: none;
		transform: scale(1);
		opacity: 1;
	}
	header nav a{
		margin-right: 0;
		font-size: 5vw;
		margin: 7vw 0;
	}
	header .logo{
		width: 30vw;
		position: relative;
		z-index: 25;
	}
	header .actions{
		position: relative;
		z-index: 25;
	}
	header .actions .action{
		width: 6vw;
		margin: 0 2vw;
		display: flex;
		align-items: center;
	}
	.main-top-img{
		position: static;
		width: 90%;
		margin-left: 5%;
		margin-bottom: 5vw;
	}
	.top-main-section{
		margin-top: 0;
	}
	.main-title{
		font-size: 6vw;
	}
	.mt-1{
		margin-top: 6vw;
	}
	.top-main-section .main-title,
	.top-main-section .main-text,
	.top-products-cont{
		width: 100%;
	}
	.top-products-cont .arrow{
		width: 3vw;
	}
	.top-main-section .main-title{
		margin-bottom: 6vw;
	}
	.main-text{
		font-size: 3.5vw;
	}
	.top-products-cont{
		margin-top: 10vw;
	}
	.top-products .top-product{
		width: 47%;
	}
	.top-products .top-product .img{
		padding: 3vw 5vw;
	}
	.top-products .top-product .img img{
		width: 12vw;
	}
	.top-products .top-product .info{
		padding: 2vw 4vw;
	}
	.top-products .top-product h3{
		font-size: 3.5vw;
	}
	.top-products .top-product p{
		font-size: 3vw;
		margin-top: 2vw;
	}
	.top-products .top-product a{
		margin-top: 4vw;
		font-size: 3vw;
		margin-bottom: 2.5vw;
	}
	.right-block{
		margin-top: 15vw;
	}
	.right-block img{
		width: 10vw;
		right: 10vw;
		bottom: -10vw;
	}
	.how-it-work{
		margin-top: 20vw;
		flex-direction: column;
	}
	.text-block{
		margin-top: 10vw;
		flex-direction: column-reverse;
	}
	.how-it-work .img,
	.text-block .img{
		width: 80%;
	}
	.how-it-work .info,
	.text-block .info{
		width: 90%;
		margin-top: 8vw;
	}
	.how-it-work ul{
		margin-top: 5vw;
	}
	.how-it-work ul li img{
		width: 4vw;
		margin-top: .8vw;
		margin-right: 3vw;
	}
	.how-it-work ul li{
		margin-top: 3.5vw;
	}
	.how-it-work .main-btn,
	.text-block .info .main-btn{
		display: block;
		margin-top: 9vw;
	}
	.main-btn{
		padding: 3vw 7vw;
		font-size: 4vw;
	}
	.products-section{
		margin-top: 12vw;
	}
	.products{
		flex-direction: column;
		align-items: center;
		margin-top: 8vw;
	}
	.products .product{
		width: 70%;
		margin-left: 0;
		margin-bottom: 7vw;
	}
	.products .product .product-img .img{
		height: unset;
	}
	.products .product .product-img .paw,
	.products .product .product-img:before{
		display: none;
	}
	.products .product h3, .products .product .price{
		font-size: 4.2vw;
		margin-top: 2vw;
		margin-bottom: 0;
	}
	.products-section .more{
		margin-top: 2vw;
		font-size: 4vw;
	}
	.products-section .more img{
		width: 4.5vw;
		margin-left: 1.5vw;
	}
	.products .product .textures img{
		margin-top: 2vw;
	}
	footer{
		margin-top: 13vw;
		padding-top: 10vw;
	}
	footer .container{
		flex-wrap: wrap;
		justify-content: space-between;
	}
	footer .main-col{
		width: 100%;
		margin-bottom: 7vw;
		order: 1;
	}
	footer .nav-col{
		width: 47%;
	}
	footer .nav-col:nth-child(2){
		order: 3;
	}
	footer .nav-col:nth-child(3){
		order: 2;
	}
	footer .logo{
		width: 20vw;
		margin-bottom: 7vw;
	}
	footer .main-col p{
		width: 100%;
	}
	footer p, footer a{
		font-size: 4vw;
	}
	footer .soc-col{
		width: 100%;
		margin-top: 10vw;
		order: 4;
	}
	footer .bottom-section{
		width: 100%;
		margin-top: 5vw;
		order: 5;
	}
	footer h3{
		font-size: 5vw;
		margin-bottom: 3vw;
	}
	footer .nav-col a{
		margin-bottom: 1.5vw;
	}
	footer .soc-netw a{
		width: 6vw;
		margin-right: 4vw;
	}
}