/*Fonts*/



@font-face{
	src: url('../fonts/Humus-HeavyItalic.woff') format('opentype');
	font-family: 'Humus';
	font-style: italic;
	font-weight: 700;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Humus-Regular.woff') format('opentype');
	font-family: 'Humus';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Periodica-Regular.otf') format('opentype');
	font-family: 'Periodica';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Periodica-MediumItalic.otf') format('opentype');
	font-family: 'Periodica';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Periodica-Medium.otf') format('opentype');
	font-family: 'Periodica';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Periodica-Bold.otf') format('opentype');
	font-family: 'Periodica';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}
@font-face{
	src: url('../fonts/Periodica-BoldItalic.otf') format('opentype');
	font-family: 'Periodica';
	font-style: italic;
	font-weight: 700;
	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: #A995FF;
	color: #FFF;
}
html{
	scroll-behavior: smooth;
}
body{
	height: 100%;
	min-width: 320px;
	color: #000;
	font-family: 'Periodica';
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	background-color: #FFFAC5;
	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;
}
i{
	font-style: italic;
}
.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;
}
.pt-60{
	padding-top: 60px;
}
.pb-60{
	padding-bottom: 60px;
}
.my-80{
	margin: 80px 0;
}
.mt-16{
	margin-top: 16px;
}
.mt-30{
	margin-top: 30px;
}
.mt-90{
	margin-top: 90px;
}
.title-1{
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
	font-family: 'Periodica';
}
.title-2{
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
}
.text-wrap * + *{
	margin-top: 20px;
}
.text-center{
	text-align: center;
}
.justify-content-center{
	justify-content: center;
}
.img-full-w{
	width: 100%;
	height: auto;
}
.btn{
	color: #FFFAC5;
	font-size: 18px;
	line-height: 1;
	padding: 10px 20px;
	background-color: #000;
	border-radius: 10px;
	transition: background-color 0.35s ease;
}
.btn:hover{
	background-color: #555;
}
.main-btn{
	font-size: 28px;
	line-height: 1.2;
	padding: 16px 32px;
	border-radius: 20px;
}
.hero-section h1.title-1{
    font-style: italic;
    font-size: 66px;
    font-family: 'Humus';
    font-weight: 700;
    line-height: 1;
}
.hero-section .sub-title{
	font-family: 'Humus';
	font-size: 18px;
	line-height: 1;
}
.book-slider{
	width: 100%;
	aspect-ratio: 1.8;
}
.book-slider .swiper-slide,
.book-slider .swiper-slide a,
.book-slider .swiper-slide img{
	width: auto;
	height: 100%;
}
.sellers{
	display: grid;
	gap: 10px;
	font-size: 20px;
	text-align: center;
}
.sellers .sell{
	white-space: nowrap;
}
.footer{
	margin-top: 40px;
	margin-bottom: 40px;
}
.footer-wrap{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.footer-text{
	font-size: 18px;
	font-weight: 300;
	line-height: 1.2;
}
.footer-logos{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.footer-logos a{
	display: flex;
	width: 120px;
	height: auto;
}
.footer-logos svg{
	fill: #000;
}
@media(max-width: 991px){
	.pt-md-30{
		padding-top: 30px;
	}
	.pb-md-30{
		padding-bottom: 30px;
	}
	.hero-section h1.title-1{
	    font-size: 48px;
	}
}
@media(max-width: 575px){
	.container{
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media(min-width: 768px){
	.text-md-left{
		text-align: left;
	}
	.sellers{
		grid-template-columns: repeat(2, 1fr);
		font-size: 30px;
		text-align: left;
	}
	.footer{
		margin-top: 100px;
	}
	.footer-wrap{
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0;
	}
	.footer-text,
	.footer-logos{
		width: 50%;
	}
	.footer-logos{
		justify-content: flex-end;
	}
}
@media(min-width: 992px){
	.my-80{
		margin: 110px 0;
	}
	.mt-90{
		margin-top: 140px;
	}
	.sellers .sell:hover{
		text-decoration: underline;
	}
	.footer-wrap{
		position: relative;
		justify-content: center;
	}
	.footer-logos svg{
		transition: transform .35s;
	}
	.footer-logos a:hover svg{
		transform: scale(1.1);
	}	
}
@media(min-width: 1200px){
	.book-slider{
		height: 640px;
		aspect-ratio: unset;
	}
	.sellers{
		grid-template-columns: repeat(4, 1fr);
	}
	.footer{
		margin-top: 160px;
	}
	.footer-logos{
		gap: 50px;
	}
}
@media(min-width: 1400px){
	.footer{
		margin-top: 200px;
	}
}