/*Fonts*/
@font-face{
	src: url('../fonts/DiariaSansPro-Light.otf') format('opentype');
	font-family: 'DiariaSansPro';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}
@font-face{
	src: url('../fonts/DiariaSansPro-Regular.otf') format('opentype');
	font-family: 'DiariaSansPro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}
@font-face{
	src: url('../fonts/DiariaSansPro-Italic.otf') format('opentype');
	font-family: 'DiariaSansPro';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
}
@font-face{
	src: url('../fonts/DiariaSansPro-SemiBold.otf') format('opentype');
	font-family: 'DiariaSansPro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
}
@font-face{
	src: url('../fonts/DiariaSansPro-Bold.otf') format('opentype');
	font-family: 'DiariaSansPro';
	font-style: normal;
	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: #FFF;
	font-family: 'DiariaSansPro';
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	background-color: #A995FF;
	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;
}
.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;
}
.text-wrap * + *{
	margin-top: 20px;
}
.text-center{
	text-align: center;
}
.justify-content-center{
	justify-content: center;
}
.justify-content-evenly{
	justify-content: space-evenly;
}
.align-items-center{
	align-items: center;
}
.img-full-w{
	width: 100%;
	height: auto;
}
.rotated-img{
	transform: rotate(10deg);
	filter: drop-shadow(-10px 25px 50px rgb(0, 0, 0, 0.4));
	-webkit-filter: drop-shadow(-10px 25px 50px rgb(0, 0, 0, 0.4));
}
.btn{
	color: #FFF;
	font-size: 18px;
	line-height: 1;
	padding: 10px 20px;
	background-color: #baaaff;
	border-radius: 10px;
	transition: background-color 0.35s ease;
}
.btn:hover{
	background-color: #8d79e1;
}
.main-btn{
	font-size: 28px;
	line-height: 1.2;
	padding: 16px 32px;
	border-radius: 20px;
}
.hero-section{
	position: relative;
	display: flex;
	justify-content: center;
	padding-top: 50px;
	margin-bottom: 80px;
}
.hero-subimg{
	margin-top: 45px;
}
.about-row{
	gap: 50px;
}
.review-block{
	padding: 25px;
	background-color: #baaaff;
	border-radius: 20px;
	margin-bottom: 24px;
}
.review-author{
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 16px;
}
.review-author-desc{
	display: block;
	font-style: italic;
}
.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: #fff;
}
.footer-img{
	width: 75%;
	height: auto;
	margin: auto;
}

@media(max-width: 575px){
	.container{
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media(min-width: 768px){
	.text-md-left{
		text-align: left;
	}
	.hero-section{
		position: relative;
	}
	.reviews-grid{
		column-count: 2;
		column-gap: 24px;
	}
	.review-block{
		padding: 30px;
		break-inside: avoid;
	}
	.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;
	}
	.footer-img{
		width: 40%;
		margin-top: 50px;
	}
}
@media(min-width: 992px){
	.my-80{
		margin: 130px 0;
	}
	.mt-90{
		margin-top: 140px;
	}
	.text-wrap{
		font-size: 28px;
	}
	.hero-section{
		padding: 80px 0;
		margin-bottom: 30px;
	}
	.about-row{
		gap: 0;
	}
	.sellers .sell:hover{
		text-decoration: underline;
	}
	.footer{
		margin-top: 250px;
	}
	.footer-wrap{
		position: relative;
		justify-content: center;
	}
	.footer-img{
		position: absolute;
		bottom: 0;
		width: 30%;
		margin: 0;
		z-index: -1;
	}
	.footer-logos svg{
		transition: transform .35s;
	}
	.footer-logos a:hover svg{
		transform: scale(1.1);
	}
}
@media(min-width: 1200px){
	.hero-text{
		font-size: 28px;
	}
	.hero-background{
		top: -40px;
		width: 80%;
	}
	.book-slider{
		height: 640px;
		aspect-ratio: unset;
	}
	.sellers{
		grid-template-columns: repeat(4, 1fr);
	}
	.footer{
		margin-top: 400px;
	}
	.footer-logos{
		gap: 50px;
	}
	.footer-img{
		width: 375px;
		height: auto;
	}
}
@media(min-width: 1400px){
	/*.footer{
		margin-top: 200px;
	}*/
	/*.footer-img{
		width: 50%;
	}*/
}