/*Fonts*/
@font-face{
	src: url('../fonts/Sykhiv-Regular.woff2') format('woff');
	font-family: 'Sykhiv';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Kamenyar-Light.woff2') format('woff');
	font-family: 'Kamenyar';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Kamenyar-Regular.woff2') format('woff');
	font-family: 'Kamenyar';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

/*Reset*/
*, :after, :before{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, img, ol, ul, li, form, label, footer, header,
section, video, input, button{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
ol, ul{
	list-style: none;
}

/*General*/
::selection{
	background-color: #C87B7C;
	color: #FFF;
}
html{
	scroll-behavior: smooth;
}
body{
	height: 100%;
	min-width: 320px;
	color: #FFF;
	font-family: 'Sykhiv';
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	background-image: url('../photos/body-bg.jpg');
	background-repeat: repeat;
	background-size: contain;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img{
	display: block;
	max-width: 100%;
	height: auto;
}
a{
	display: inline-block;
	color: inherit;
	text-decoration: none;
}
.main-wrapper{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	z-index: 1;
	position: relative;
}
.main-content{
	flex: 1 1 auto;
	position: relative;
	overflow: hidden;
}

/*Margin*/
.mtb-70{
	margin: 70px 0;
}
.mt-16{
	margin-top: 16px;
}

/*Text*/
.title-1{
	font-size: 42px;
	font-weight: 400;
	line-height: 1.4;
}
.text-wrap p + p{
	margin-top: 16px;
}
.text-center{
	text-align: center;
}

/*Images*/
.img{
	width: 100%;
	height: auto;
}

/*Components*/
.btn{
	color: var(--c-btn);
	font-family: 'Kamenyar';
	font-size: 16px;
	line-height: 1;
	padding: 8px 16px;
	background-color: #C87B7C;
	border-radius: 10px;
	transition: background-color 0.35s ease;
}
.btn:hover{
	background-color: #B45B5D;
}

/*Header*/
.header{
	position: fixed;
	top: 0;
	width: 100%;
	background: transparent;
	transition: 0.35s ease;
	z-index: 10;
}
.header.blur{
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.header-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	transition: padding 0.35s ease;
}
.header.blur .header-wrap{
	padding: 10px 0;
}
.header-logo h1{
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}
.header .btn{
	font-size: 16px;
	line-height: 1;
	padding: 8px 16px;
}

/*Hero Section*/
.hero-section{
	height: 375px;
}
.hero-section img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-section .img-spider{
	display: none;
}

/*Left Image Block*/
.image-left{
	display: none;
}

/*Photos*/
.photos-block{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/*Price*/
.price-block{
	display: flex;
	justify-content: center;
	gap: 30px;
	font-family: 'Kamenyar';
}
.price-btn{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}
.price-btn .btn{
	font-size: 24px;
	line-height: 1;
	padding: 15px 30px;
}
.price-btn .text{
	font-size: 16px;
}
.price-block .price{
	font-size: 28px;
	padding-top: 9px;
}
.price-block .image-right{
	display: none;
}

/*Sellers*/
.sellers{
	display: grid;
	gap: 10px;
	font-size: 28px;
	text-align: center;
}
.sellers .sell{
	white-space: nowrap;
}

/*Footer*/
.footer{
	margin-top: 40px;
}
.footer-wrap{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.footer-text{
	font-family: 'Kamenyar';
	font-size: 18px;
	font-weight: 300;
	line-height: 1.2;
}
.footer-logos{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.footer-logo a{
	display: flex;
	width: 120px;
	height: auto;
}
.footer-rabbit{
	width: 75%;
	height: auto;
	margin: auto;
}

/*Media*/
@media(max-width: 575px){
	.container{
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media(min-width: 576px){
	.hero-section{
		height: auto;
	}
}
@media(min-width: 768px){
	body{
		font-size: 28px;
	}
	.header-logo h1{
		font-size: 46px;
	}
	.header .btn{
		font-size: 22px;
		padding: 10px 20px;
	}

	.text-tab-center{
		text-align: center;
	}
	.title-1{
		font-size: 50px;
	}
	.sellers{
		grid-template-columns: repeat(2, 1fr);
		font-size: 40px;
		text-align: left;
		gap: 15px;
	}
	.footer-wrap{
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0;
	}
	.footer-text,
	.footer-logos{
		width: 50%;
	}
	.footer-logos{
		justify-content: flex-end;
	}
	.footer-rabbit{
		width: 40%;
		margin-top: 50px;
	}
}
@media(min-width: 992px){
	.mtb-70{
		margin: 140px 0;
	}
	.mt-lg-60{
		margin-top: 60px;
	}
	.header.blur .header-wrap{
		padding: 10px 0;
	}
	.hero-section{
		position: relative;
		height: 100dvh;
	}
	.hero-section img{
		object-position: center bottom;
	}
	.hero-section .img-spider{
		display: block;
		position: absolute;
		top: -100%;
		right: 15%;
		width: 200px;
		height: auto;
		transition: top 1s;
	}
	.hero-section .img-spider.ready{
		top: 0;
	}
	.image-left-block{
		position: relative;
	}
	.image-left{
		display: block;
		position: absolute;
		bottom: 0;
		left: -200px;
		width: 160px;
	}
	.price-block{
		position: relative;
		gap: 55px;
	}
	.price-btn .btn{
		font-size: 36px;
		padding: 16px 34px;
	}
	.price-btn .text{
		font-size: 22px;
	}
	.price-block .price{
		font-size: 36px;
		padding-top: 11px;
	}
	.price-block .image-right{
		display: block;
		position: absolute;
		width: 250px;
		height: auto;
		bottom: -100px;
		right: -300px;
	}
	.footer{
		margin-top: 100px;
	}
	.footer-wrap{
		position: relative;
		justify-content: center;
		padding-bottom: 20px;
	}
	.footer-rabbit{
		position: absolute;
		bottom: 0;
		width: 30%;
		margin: 0;
		z-index: -1;
	}
}
@media(min-width: 1200px){
	.sellers{
		grid-template-columns: repeat(4, 1fr);
	}
	.footer{
		margin-top: 160px;
	}
	.footer-wrap{
		padding-bottom: 60px;
	}
	.footer-logos{
		gap: 55px;
	}
	.footer-rabbit{
		width: 40%;
	}
}
@media(min-width: 1400px){
	.footer{
		margin-top: 600px;
	}
	.footer-rabbit{
		width: 50%;
	}
}