@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
	--yellow: #FCB11A;
	--offwhite: #F9FAFE;
	--darkblue: #142441;
	--green: #8FC879;
	--blue: #1AA7DC;
	--pink: #EB2A79;
	--dark-color: #219150;
	--black: #444;
	--light-color: #666;
	--border: .1rem solid rgba(0, 0, 0, .1);
	--border-hover: .1rem solid var(--black);
	--box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

* {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	text-transform: none;
	transition: all .2s linear;
	transition: width none;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-padding-top: 5rem;
	scroll-behavior: smooth;
}

html::-webkit-scrollbar {
	width: 1rem;
}

html::-webkit-scrollbar-track {
	background: transparent;
}

html::-webkit-scrollbar-thumb {
	background: var(--black);
}

section {
	padding: 5rem 9%;
}

.heading {
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

.heading::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: .01rem;
	background: rgba(0, 0, 0, .1);
	z-index: -1;
}

.heading span {
	font-size: 3rem;
	padding: .5rem 2rem;
	color: var(--black);
	background: #fff;
	border: var(--border);
}

.btn {
	margin-top: 1rem;
	display: inline-block;
	padding: .9rem 3rem;
	border-radius: .5rem;
	color: #fff;
	background: var(--blue);
	font-size: 1.7rem;
	cursor: pointer;
	font-weight: 500;
}

.btn:hover {
	background: var(--pink);
}

.header .header-1 {
	background: #fff;
	padding: 1.5rem 9%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .header-1 .search-form {
	width: 50rem;
	height: 5rem;
	border: var(--border);
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	border-radius: .5rem;
}

.header .header-1 .search-form input {
	font-size: 1.6rem;
	padding: 0 1.2rem;
	height: 100%;
	width: 100%;
	text-transform: none;
	color: var(--black);
}

.header .header-1 .search-form label {
	font-size: 2.5rem;
	padding-right: 1.5rem;
	color: var(--blue);
	cursor: pointer;
}

.header .header-1 .search-form label:hover {
	color: var(--pink);
}

.header .header-1 .icons div,
.header .header-1 .icons a {
	font-size: 2.5rem;
	margin-left: 1.5rem;
	color: var(--darkblue);
	cursor: pointer;
}

.header .header-1 .icons div:hover,
.header .header-1 .icons a:hover {
	color: var(--yellow);
}

#search-btn {
	display: none;
}

.header .header-2 {
	background: var(--yellow);
}

.header .header-2 .navbar {
	text-align: center;
}

.header .header-2 .navbar a {
	color: #fff;
	display: inline-block;
	padding: 1.2rem;
	font-size: 1.7rem;
}

.header .header-2 .navbar a:hover {
	background: var(--pink);
}

.header .header-2.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;

}

#user-menu {
	transition: all 0.3s ease;
}

#user-menu button:hover {
	background: #e60073;
}

.bottom-navbar {
	text-align: center;
	background: var(--yellow);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: none;
}

.book-club-image {
	text-align: center;
}

.book-club-image img {
	max-width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
}

.bottom-navbar a {
	font-size: 2.5rem;
	padding: 2rem;
	color: #fff;
}

.bottom-navbar a:hover {
	background: var(--pink);
}

#register-form .name-fields {
	display: flex;
	gap: 1rem;
}

#register-form .name-fields div {
	flex: 1;
}

.login-form-container {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .9);
	position: fixed;
	top: 0;
	right: -105%;
	z-index: 10000;
	height: 100%;
	width: 100%;
}

.login-form-container.active {
	right: 0;
}

.login-form-container form {
	background: #fff;
	border: var(--border);
	width: 40rem;
	padding: 2rem;
	box-shadow: var(--box-shadow);
	border-radius: .5rem;
	margin: 2rem;
}

.login-form-container form h3 {
	font-size: 2.5rem;
	text-transform: uppercase;
	color: var(--black);
	text-align: center;
}

.login-form-container form span {
	display: block;
	font-size: 1.5rem;
	padding-top: 1rem;
}

.login-form-container form .box {
	width: 100%;
	margin: .7rem 0;
	font-size: 1.6rem;
	border: var(--border);
	border-radius: .5rem;
	padding: 1rem 1.2rem;
	color: var(--black);
	text-transform: none;
}

.login-form-container form .checkbox {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: 1rem 0;
}

.login-form-container form .checkbox label {
	font-size: 1.5rem;
	color: var(--light-color);
	cursor: pointer;
}

.login-form-container form .btn {
	text-align: center;
	width: 100%;
	margin: 1.5rem 0;
}

.login-form-container form p {
	padding-top: .8rem;
	color: var(--light-color);
	font-size: 1.5rem;
}

.login-form-container form p a {
	color: var(--green);
	text-decoration: underline;
}

.login-form-container #close-login-btn {
	position: absolute;
	top: 1.5rem;
	right: 2.5rem;
	font-size: 5rem;
	color: var(--black);
	cursor: pointer;
}

.book-club-container {
	max-width: 1200px;
	margin: 0 auto;
}

.book-club-hero {
	background: linear-gradient(rgba(20, 36, 65, 0.8), rgba(20, 36, 65, 0.8)), url('assets/images/book-club-bg.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 8rem 5%;
	text-align: center;
	margin-bottom: 5rem;
}

.book-club-hero h2 {
	font-size: 4.5rem;
	margin-bottom: 1rem;
}

.book-club-hero p {
	font-size: 1.8rem;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.featured-book {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	align-items: center;
	margin-bottom: 5rem;
	padding: 2rem;
	background-color: #f9fafe;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-book-image {
	flex: 1 1 300px;
}

.featured-book-image img {
	max-height: 350px;
}

.featured-book-info {
	flex: 1 1 500px;
}

.featured-book-info h3 {
	font-size: 3rem;
	color: var(--darkblue);
	margin-bottom: 1rem;
}

.featured-book-info .author {
	font-size: 1.8rem;
	color: var(--light-color);
	margin-bottom: 2rem;
}

.featured-book-info .desc {
	font-size: 1.6rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.meeting-details {
	background-color: #f0f7ff;
	padding: 2rem;
	border-radius: 8px;
	margin-top: 2rem;
}

.meeting-details h4 {
	font-size: 2rem;
	color: var(--darkblue);
	margin-bottom: 1rem;
}

.meeting-details p {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.meeting-details p i {
	color: var(--blue);
	margin-right: 1rem;
	width: 20px;
}

.discussion-forums {
	margin: 5rem 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.forum-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.forum-card:hover {
	transform: translateY(-5px);
}

.forum-card .forum-header {
	background: var(--darkblue);
	color: white;
	padding: 1.5rem;
}

.forum-card .forum-header h4 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.forum-card .forum-header p {
	font-size: 1.4rem;
	opacity: 0.8;
}

.forum-card .forum-body {
	padding: 1.5rem;
}

.forum-card .forum-stats {
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
	color: var(--light-color);
	border-top: 1px solid #eee;
	padding-top: 1rem;
	margin-top: 1rem;
}

.forum-activity {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.forum-activity img {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 1rem;
}

.forum-activity .activity-content {
	flex-grow: 1;
}

.forum-activity .username {
	font-weight: 500;
	font-size: 1.5rem;
	color: var(--darkblue);
}

.forum-activity .snippet {
	font-size: 1.4rem;
	color: var(--light-color);
	margin-top: 0.3rem;
}

.upcoming-events {
	margin: 5rem 0;
}

.event-card {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
}

.event-date {
	flex: 0 0 120px;
	background: var(--yellow);
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.event-date .month {
	font-size: 1.6rem;
	text-transform: uppercase;
}

.event-date .day {
	font-size: 3.5rem;
	font-weight: bold;
	line-height: 1;
}

.event-date .time {
	font-size: 1.4rem;
	margin-top: 0.5rem;
}

.event-details {
	flex: 1;
	padding: 1.5rem 2rem;
}

.event-details h4 {
	font-size: 2rem;
	color: var(--darkblue);
	margin-bottom: 1rem;
}

.event-details p {
	font-size: 1.5rem;
	color: var(--light-color);
	margin-bottom: 1rem;
}

.event-details .location {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	color: var(--black);
}

.event-details .location i {
	color: var(--pink);
	margin-right: 0.8rem;
}

.join-section {
	background: linear-gradient(90deg, var(--darkblue), #1a365d);
	color: white;
	text-align: center;
	padding: 5rem 2rem;
	border-radius: 10px;
	margin-bottom: 5rem;
}

.join-section h3 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.join-section p {
	font-size: 1.8rem;
	max-width: 700px;
	margin: 0 auto 3rem auto;
	line-height: 1.6;
}

.join-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.faq-container {
	margin: 5rem 0;
}

.faq-item {
	border: 1px solid #eee;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.faq-question {
	padding: 2rem;
	background: #f9f9f9;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--darkblue);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question i {
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--light-color);
	padding-bottom: 2rem;
}

.faq-item.active .faq-question {
	background: var(--blue);
	color: white;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
	color: white;
}

.faq-item.active .faq-answer {
	max-height: 1000px;
	padding: 2rem 2rem 0;
}

@media (max-width: 768px) {
	.book-club-hero h2 {
		font-size: 3.5rem;
	}

	.event-date {
		flex: 0 0 100%;
		padding: 1rem;
	}

	.join-buttons {
		flex-direction: column;
		align-items: center;
	}
}

.home {
	background: url(../image/banner-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.home .row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.home .row .content {
	flex: 1 1 42rem;
}

.home .row .books-slider {
	flex: 1 1 42rem;
	text-align: center;
	margin-top: 2rem;
}

.home .row .books-slider a img {
	height: 25rem;
}

.home .row .books-slider a:hover img {
	transform: scale(.9);
}

.home .row .books-slider .stand {
	width: 100%;
	margin-top: -2rem;
}

.home .row .content h3 {
	color: var(--black);
	font-size: 4.5rem;
}

.home .row .content p {
	color: var(--light-color);
	font-size: 1.4rem;
	line-height: 2;
	padding: 1rem 0;
}

.icons-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 1.5rem;
}

.icons-container .icons {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem 0;
}

.icons-container .icons i {
	font-size: 3.5rem;
	color: var(--green);
}

.icons-container .icons h3 {
	font-size: 2.2rem;
	color: var(--black);
	padding-bottom: .5rem;
}

.icons-container .icons p {
	font-size: 1.4rem;
	color: var(--light-color);
}

.featured .featured-slider .box {
	margin: 2rem 0;
	position: relative;
	overflow: hidden;
	border: var(--border);
	text-align: center;
}

.featured .featured-slider .box:hover {
	border: var(--border-hover);
}

.featured .featured-slider .box .image {
	padding: 1rem;
	background: linear-gradient(15deg, #eee 30%, #fff 30.1%);
}

.featured .featured-slider .box:hover .image {
	transform: translateY(6rem);
}

.featured .featured-slider .box .image img {
	height: 25rem;
}

.featured .featured-slider .box .icons {
	border-bottom: var(--border-hover);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 1;
	transform: translateY(-105%);
}

.featured .featured-slider .box:hover .icons {
	transform: translateY(0%);
}

.featured .featured-slider .box .icons a {
	color: var(--black);
	font-size: 2.2rem;
	padding: 1.3rem 1.5rem;
}

.featured .featured-slider .box .icons a:hover {
	background: var(--green);
	color: #fff;
}

.featured .featured-slider .box .content {
	background: #eee;
	padding: 1.5rem;
}

.featured .featured-slider .box .content h3 {
	font-size: 2rem;
	color: var(--black);
}

.featured .featured-slider .box .content .price {
	font-size: 2.2rem;
	color: var(--black);
	padding-top: 1rem;
}

.featured .featured-slider .box .content .price span {
	font-size: 1.5rem;
	color: var(--light-color);
	text-decoration: line-through;
}

.swiper-button-next,
.swiper-button-prev {
	border: var(--border-hover);
	height: 4rem;
	width: 4rem;
	color: var(--black);
	background: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--blue);
	color: #fff;
}

.newsletter {
	background: url(../images/letter-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.newsletter form {
	max-width: 45rem;
	margin-left: auto;
	text-align: center;
	padding: 5rem 0;
}

.newsletter form h3 {
	font-size: 2.2rem;
	color: #fff;
	padding-bottom: .7rem;
	font-weight: normal;
}

.newsletter form .box {
	width: 100%;
	margin: .7rem 0;
	padding: 1rem 1.2rem;
	font-size: 1.6rem;
	color: var(--black);
	border-radius: .5rem;
	text-transform: none;
}

.book-details {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	margin-top: 2rem;
}

.book-image {
	flex: 1 1 300px;
	text-align: center;
}

.book-image img {
	max-width: 100%;
	height: auto;
	max-height: 450px;
}

.book-info {
	flex: 1 1 500px;
}

.book-info h2 {
	font-size: 3rem;
	color: var(--darkblue);
	margin-bottom: 1rem;
}

.book-info .author {
	font-size: 1.8rem;
	color: var(--light-color);
	margin-bottom: 1.5rem;
}

.book-info .rating {
	margin-bottom: 1.5rem;
}

.book-info .rating i {
	color: var(--yellow);
	font-size: 1.6rem;
}

.book-info .rating span {
	font-size: 1.6rem;
	color: var(--light-color);
	margin-left: 1rem;
}

.book-info .price-original {
	font-size: 2.4rem;
	color: var(--black);
	font-weight: bold;
}

.book-info .price-discount {
	font-size: 1.8rem;
	color: var(--light-color);
	text-decoration: line-through;
	margin-left: 1rem;
}

.book-info .save {
	display: inline-block;
	background: var(--pink);
	color: white;
	font-size: 1.6rem;
	padding: 0.5rem 1rem;
	border-radius: 3px;
	margin-left: 1rem;
}

.action-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0;
}

.action-buttons .btn {
	font-size: 1.6rem;
	padding: 1rem 2rem;
	border-radius: 5px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.action-buttons .btn-favorite {
	background: var(--yellow);
}

.action-buttons .btn-favorite:hover {
	background: #e9a012;
}

.action-buttons .btn-compare {
	background: var(--green);
}

.action-buttons .btn-compare:hover {
	background: #7eb569;
}

.book-description {
	margin: 3rem 0;
}

.book-description h3 {
	font-size: 2.2rem;
	color: var(--darkblue);
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #eee;
	padding-bottom: 1rem;
}

.book-description p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--black);
	margin-bottom: 1.5rem;
}

.book-details-tabs {
	margin: 4rem 0;
}

.tabs {
	display: flex;
	border-bottom: 1px solid #eee;
}

.tab-button {
	font-size: 1.8rem;
	padding: 1rem 2rem;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	color: var(--light-color);
}

.tab-button.active {
	color: var(--blue);
	font-weight: 500;
}

.tab-button.active:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--blue);
}

.tab-content {
	display: none;
	padding: 2rem 0;
}

.tab-content.active {
	display: block;
}

.publishers {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
}

.publisher {
	border: 1px solid #eee;
	border-radius: 5px;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.publisher:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.publisher h4 {
	font-size: 1.8rem;
	color: var(--darkblue);
	margin-bottom: 1rem;
}

.publisher p {
	font-size: 1.5rem;
	color: var(--light-color);
	margin-bottom: 0.5rem;
}

.publisher .price {
	font-size: 2rem;
	color: var(--black);
	font-weight: bold;
	margin-top: 1rem;
}

.prices-table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}

.prices-table th,
.prices-table td {
	border: 1px solid #eee;
	padding: 1.5rem;
	text-align: left;
	font-size: 1.5rem;
}

.prices-table th {
	background: #f9f9f9;
	color: var(--darkblue);
}

.prices-table tr:hover {
	background: #f9f9f9;
}

.prices-table .best-price {
	background: #f0f9f0;
}

.prices-table .best-price .price {
	color: var(--green);
	font-weight: bold;
}

.review {
	border-bottom: 1px solid #eee;
	padding: 2rem 0;
}

.review-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.review-user {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.review-user img {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	object-fit: cover;
}

.review-user .name {
	font-size: 1.8rem;
	color: var(--darkblue);
}

.review-date {
	font-size: 1.4rem;
	color: var(--light-color);
}

.review-rating {
	margin-bottom: 1rem;
}

.review-rating i {
	color: var(--yellow);
	font-size: 1.6rem;
}

.review-content {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--black);
}

.write-review {
	margin-top: 3rem;
}

.write-review h4 {
	font-size: 2rem;
	color: var(--darkblue);
	margin-bottom: 1.5rem;
}

.review-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.star-rating {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.star-rating i {
	font-size: 2.5rem;
	color: #ddd;
	cursor: pointer;
}

.star-rating i.active {
	color: var(--yellow);
}

.review-form textarea {
	width: 100%;
	height: 150px;
	padding: 1.5rem;
	font-size: 1.6rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	resize: vertical;
}

.social-share {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2rem;
}

.social-share p {
	font-size: 1.6rem;
	color: var(--black);
}

.social-icons {
	display: flex;
	gap: 1rem;
}

.social-icons a {
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: white;
	font-size: 1.8rem;
}

.social-icons .facebook {
	background: #1877f2;
}

.social-icons .twitter {
	background: #1da1f2;
}

.social-icons .linkedin {
	background: #0077b5;
}

.social-icons .pinterest {
	background: #e60023;
}

.book-club .book-club-slider .box {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem 1rem;
	border: var(--border);
	margin: 1rem 0;
}

.book-club .book-club-slider .box:hover {
	border: var(--border-hover);
}

.book-club .book-club-slider .box .image img {
	height: 15rem;
}

.book-club .book-club-slider .box .content h3 {
	font-size: 2rem;
	color: var(--black);
}

.book-club .book-club-slider .box .content .price {
	font-size: 2.2rem;
	color: var(--black);
	padding-bottom: .5rem;
}

.book-club .book-club-slider .box .content .price span {
	font-size: 1.5rem;
	color: var(--light-color);
	text-decoration: line-through;
}

.book-club .book-club-slider .box .content .stars i {
	font-size: 1.5rem;
	color: var(--yellow);
}

.deal {
	background: #f3f3f3;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.deal .content {
	flex: 1 1 42rem;
}

.deal .image {
	flex: 1 1 42rem;
}

.deal .image img {
	width: 100%;
}

.deal .content h3 {
	color: var(--green);
	font-size: 2.5rem;
	padding-bottom: .5rem;
}

.deal .content h1 {
	color: var(--black);
	font-size: 4rem;
}

.deal .content p {
	padding: 1rem 0;
	color: var(--light-color);
	font-size: 1.4rem;
	line-height: 2;
}

.reviews .reviews-slider .box {
	border: var(--border);
	padding: 2rem;
	text-align: center;
	margin: 2rem 0;
}

.reviews .reviews-slider .box:hover {
	border: var(--border-hover);
}

.reviews .reviews-slider .box img {
	height: 7rem;
	width: 7rem;
	border-radius: 50%;
	object-fit: cover;
}

.reviews .reviews-slider .box h3 {
	color: var(--black);
	font-size: 2.2rem;
	padding: .5rem 0;
}

.reviews .reviews-slider .box p {
	color: var(--light-color);
	font-size: 1.4rem;
	padding: 1rem 0;
	line-height: 2;
}

.reviews .reviews-slider .box .stars {
	padding-top: .5rem;
}

.reviews .reviews-slider .box .stars i {
	font-size: 1.7rem;
	color: var(--yellow);
}

#pblog {
	padding: 3rem 5%;
	background-color: #f9f9f9;
}

#pblog .blog-content {
	max-width: 900px;
	margin: 0 auto;
}

#pblog h3 {
	font-size: 2.5rem;
	color: var(--darkblue);
	text-align: center;
	margin-bottom: 2rem;
}

#pblog .blog-post {
	margin-bottom: 2rem;
}

#pblog .blog-post p {
	font-size: 1.5rem;
	color: var(--darkblue);
	line-height: 1.8;
}

#pblog .blog-post strong {
	font-weight: bold;
	font-size: 1.7rem;
}

.blogs .blogs-slider .box {
	margin: 2rem 0;
	border: var(--border);
}

.blogs .blogs-slider .box:hover {
	border: var(--border-hover);
}

.blogs .blogs-slider .box .image {
	height: 25rem;
	width: 100%;
	overflow: hidden;
}

.blogs .blogs-slider .box .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.blogs .blogs-slider .box:hover .image img {
	transform: scale(1.1);
}

.blogs .blogs-slider .box .content {
	padding: 1.5rem;
}

.blogs .blogs-slider .box .content h3 {
	font-size: 2.2rem;
	color: var(--black);
}

.blogs .blogs-slider .box .content p {
	font-size: 1.4rem;
	color: var(--light-color);
	padding: 1rem 0;
	line-height: 2;
}

.contact .contact-form {
	max-width: 700px;
	margin: 0 auto;
	padding: 2rem;
	background: #fff;
	border-radius: .5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.contact .contact-form .input-box {
	width: 100%;
}

.contact .contact-form .input-box input,
.contact .contact-form .input-box textarea {
	width: 100%;
	padding: 1rem;
	font-size: 1.6rem;
	color: var(--black);
	background: #f9f9f9;
	border: none;
	border-radius: .5rem;
}

.contact .contact-form .input-box:nth-child(3) {
	grid-column: span 2;
}

.contact .contact-form .input-box:nth-child(4) {
	grid-column: span 2;
}

.contact .contact-form .input-box textarea {
	height: 10rem;
	resize: none;
	grid-column: span 2;
}

.contact .contact-form input[type="submit"] {
	width: 100%;
	background: var(--blue);
	color: #fff;
	border: none;
	font-size: 1.7rem;
	cursor: pointer;
	grid-column: span 2;
}

.contact .contact-form input[type="submit"]:hover {
	background: var(--pink);
}

.contact .contact-form input[type="submit"]:hover {
	background: var(--pink);
}

#pinterview {
	padding: 3rem 5%;
	background-color: #f9f9f9;
}

#pinterview .interview-content {
	max-width: 900px;
	margin: 0 auto;
}

#pinterview h3 {
	font-size: 2.5rem;
	color: var(--darkblue);
	text-align: center;
	margin-bottom: 2rem;
}

#pinterview .interview-question-answer {
	margin-bottom: 2rem;
}

#pinterview .interview-question-answer p {
	font-size: 1.5rem;
	color: var(--darkblue);
	line-height: 1.8;
}

#pinterview .interview-question-answer strong {
	font-weight: bold;
}

.interview .interview-slider .box {
	margin: 2rem 0;
	border: var(--border);
}

.interview .interview-slider .box:hover {
	border: var(--border-hover);
}

.interview .interview-slider .box .image {
	height: 25rem;
	width: 100%;
	overflow: hidden;
}

.interview .interview-slider .box .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.interview .interview-slider .box:hover .image img {
	transform: scale(1.1);
}

.interview .interview-slider .box .content {
	padding: 1.5rem;
}

.interview .interview-slider .box .content h3 {
	font-size: 2.2rem;
	color: var(--black);
}

.interview .interview-slider .box .content p {
	font-size: 1.4rem;
	color: var(--light-color);
	padding: 1rem 0;
	line-height: 2;
}

.footer {
	background: var(--darkblue);
}

.footer .box-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 1.5rem;
}

.footer .box-container .box h3 {
	font-size: 2.2rem;
	color: var(--offwhite);
	padding: 1rem 0;
}

.footer .box-container .box a {
	display: block;
	font-size: 1.4rem;
	color: var(--offwhite);
	padding: 1rem 0;
}

.footer .box-container .box a i {
	color: var(--yellow);
	padding-right: .5rem;
}

.footer .box-container .box a:hover i {
	padding-right: 2rem;
}

.footer .box-container .box .m8olty {
	width: 100%;
}

.footer .share {
	padding: 1rem 0;
	text-align: center;
}

.footer .share a {
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	font-size: 2rem;
	color: #fff;
	background: var(--yellow);
	margin: 0 .3rem;
	border-radius: 50%;
}

.footer .share a:hover {
	background: var(--blue);
}

@media (max-width:991px) {

	html {
		font-size: 55%;
	}

	.header .header-1 {
		padding: 2rem;
	}

	section {
		padding: 3rem 2rem;
	}

}

@media (max-width:768px) {

	html {
		scroll-padding-top: 0;
	}

	body {
		padding-bottom: 6rem;
	}

	.header .header-2 {
		display: none;
	}

	.bottom-navbar {
		display: block;
	}

	#search-btn {
		display: inline-block;
	}

	.header .header-1 {
		box-shadow: var(--box-shadow);
		position: relative;
	}

	.header .header-1 .search-form {
		position: absolute;
		top: -115%;
		right: 2rem;
		width: 90%;
		box-shadow: var(--box-shadow);
	}

	.header .header-1 .search-form.active {
		top: 115%;
	}

	.home .row .content {
		text-align: center;
	}

	.home .row .content h3 {
		font-size: 3.5rem;
	}

	.newsletter {
		background-position: right;
	}

	.newsletter form {
		margin-left: 0;
		max-width: 100%;
	}

	.book-details {
		flex-direction: column;
	}

	.tabs {
		flex-wrap: wrap;
	}

	.tab-button {
		font-size: 1.6rem;
		padding: 1rem 1.5rem;
	}

	.contact .contact-form {
		grid-template-columns: 1fr;
	}

}

@media (max-width:450px) {

	html {
		font-size: 50%;
	}

}