.hamburger-menu-open .ar-menu-header {
	background-color: white;
}
body.hamburger-menu-open .ar-menu-logo.on-not-hamburger-menu-open {
	display: inline-block;
}
body.hamburger-menu-open .ar-menu-logo.on-hamburger-menu-open {
	display: none;
}
body.hamburger-menu-open .header-hamburger .on-hamburger-menu-open line {
	stroke: var(--main);
}

body.hamburger-menu-open #main.page {
	filter: blur(10px);
	transition: filter 0.3s ease;
}

body.is-homepage #rotate-page {
	display: none !important;
}

.hp-container {
	width: 100%;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}
.hp-container-col {
	padding: 0 15px;
}

.homepage-page {
	height: 100vh;
	height: 100svh;
	font-size: 20px;
	font-weight: 400;
	overflow: scroll;
}

.homepage-page a {
	color: inherit;
}

.homepage-page .text-uppercase {
	text-transform: uppercase;
}

.homepage-page .text-center {
	text-align: center;
}

.homepage-page .img-fluid {
	max-width: 100%;
	height: auto;
}

.homepage-page .color-primary {
	color: var(--other);
}

.homepage-page .color-secondary {
	color: var(--main);
}

.homepage-page .font-light {
	font-weight: 300;
}
.homepage-page .font-thin {
	font-weight: 100;
}

.homepage-page .font-bold {
	font-weight: 700;
}

.homepage-page h1,
.homepage-page .h1 {
	margin: 0 0 0.5em 0;
	font-size: 50px;
}

.homepage-page h2,
.homepage-page .h2 {
	margin: 0 0 0.5em 0;
	font-size: 30px;
}

.homepage-page .btn-pill {
	display: inline-block;
	padding: 10px 40px;
	color: white;
	background-color: var(--other);
	border: 1px solid var(--other);
	border-radius: 23px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	transition: all 0.3s ease;
}

.homepage-page .btn-pill:hover,
.homepage-page .btn-pill:active,
.homepage-page .btn-pill:focus {
	background-color: white;
	color: var(--other);
	transition: all 0.3s ease;
}

.homepage-page .home-hero {
	min-height: 100vh;
	background-color: var(--main);
	color: white;
	display: flex;
	flex-direction: column;
}

.homepage-page .home-hero .hero-main {
	padding-top: 75px;
	display: flex;
	align-items: center;
	flex: 1;
}

.homepage-page .home-hero .hero-main .hero-main-content {
	padding-top: 30px;
	padding-bottom: 30px;
	width: 100%;
}

.homepage-page .home-hero .hero-main .hero-main-content .hero-content {
	width: 55%;
}

.homepage-page .home-hero .hero-main .hero-main-content .hero-main-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.homepage-page .home-hero .hero-main .hero-main-content .hero-main-columns .hero-left-column {
	width: 50%;
}

.homepage-page .home-hero .hero-main .hero-main-content .hero-main-columns .hero-right-column {
	width: 30%;
	text-align: center;
	display: flex;
	align-items: center;
}

.homepage-page .home-hero .btn-box {
	margin-top: 45px;
}

.homepage-page .home-hero .hero-footer {
	padding-bottom: 90px;
}

.homepage-page .home-hero .btn-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
}

.homepage-page .home-hero .hero-btn {
	border: 1px solid var(--other);
	padding: 15px 25px 15px 30px;
	font-size: 30px;
	font-weight: 300;
	color: var(--other);
	text-decoration: none;
	transition: all 0.3s ease;
}

.homepage-page .home-hero .hero-btn:hover,
.homepage-page .home-hero .hero-btn:active,
.homepage-page .home-hero .hero-btn:focus {
	background-color: var(--other);
	color: white;
	transition: all 0.3s ease;
}

.homepage-page .home-hero .hero-btn .arrow {
	margin-left: 5px;
	display: inline-block;
	height: 20px;
	width: 10px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.285' height='15.155' viewBox='0 0 8.285 15.155'%3E%3Cpath d='M884.216,598.737l6.87,6.87,6.87-6.87' transform='translate(-598.03 898.663) rotate(-90)' fill='none' stroke='%23cb9804' stroke-linecap='round' stroke-width='1'/%3E%3C/svg%3E%0A");
	transition: all 0.3s ease;
}

.homepage-page .home-hero .hero-btn:hover .arrow,
.homepage-page .home-hero .hero-btn:active .arrow,
.homepage-page .home-hero .hero-btn:focus .arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.285' height='15.155' viewBox='0 0 8.285 15.155'%3E%3Cpath d='M884.216,598.737l6.87,6.87,6.87-6.87' transform='translate(-598.03 898.663) rotate(-90)' fill='none' stroke='white' stroke-linecap='round' stroke-width='1'/%3E%3C/svg%3E%0A");
	transition: all 0.3s ease;
}

.homepage-page .home-product-list {
	padding-top: 150px;
	padding-bottom: 230px;
}

.homepage-page .home-product-list .product-list {
	padding-top: 60px;
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(4, 1fr);
}

.homepage-page .home-product-list .product-list .single-product {
	display: flex;
	flex-direction: column;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
	transition: transform 0.2s ease;
}

.homepage-page .home-product-list .product-list .single-product .single-product-inner {
	padding: 35px;
	display: flex;
	flex-direction: column;
	flex: 1;
	text-decoration: none;
}

.homepage-page .home-product-list .product-list .single-product .single-product-inner .single-product-container {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.homepage-page .home-product-list .product-list .single-product .single-product-inner .single-product-main {
	flex: 1;
}

.homepage-page .home-product-list .product-list .single-product .single-product-inner .single-product-footer {
	padding: 30px 0;
}

.homepage-page .home-product-list .product-list .single-product:hover,
.homepage-page .home-product-list .product-list .single-product:active,
.homepage-page .home-product-list .product-list .single-product:focus {
	transform: scale(1.03);
	transition: transform 0.2s ease;
}

.homepage-page .home-product-list .product-list .single-product .product-category {
	margin: 0;
	font-size: 12px;
	font-weight: 900;
	color: var(--main);
}

.homepage-page .home-product-list .product-list .single-product .product-title {
	margin: 0;
	margin-top: 5px;
	font-size: 22px;
	font-weight: 300;
	color: var(--main);
}

.homepage-page .home-product-list .product-list .single-product .product-description {
	margin: 0;
	margin-top: 5px;
	font-size: 14px;
	font-weight: 300;
	color: var(--main);
}

.homepage-page .home-product-list .product-list .single-product .product-image-container {
	margin-top: 10px;
	padding-top: 100%;
	height: 0;
	position: relative;
}

.homepage-page .home-product-list .product-list .single-product .product-image-container .product-image {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.homepage-page .home-browse {
	padding-top: 175px;
	padding-bottom: 175px;
	position: relative;
}

.homepage-page .home-browse::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.07;
	background-color: var(--other);
	z-index: -1;
}

.homepage-page .small-container {
	margin-left: auto;
	margin-right: auto;
	width: 800px;
	max-width: 100%;
}

.homepage-page .home-footer {
	padding-top: 75px;
	padding-bottom: 90px;
	width: 100%;
	background-color: var(--main);
	color: white;
}

.homepage-page .home-footer .footer-columns {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
}

.homepage-page .home-footer .footer-columns .col-first {
	width: 15%;
}

.homepage-page .home-footer .footer-columns .col-second {
	width: 45%;
}

.homepage-page .home-footer .footer-columns .col-second a {
	text-decoration: none;
	white-space: nowrap;
}

.homepage-page .home-footer .footer-columns .col-second .categories-list {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 25px 0;
}

.homepage-page .home-footer .footer-columns .col-second .categories-list .single-category {
	width: 50%;
}

.homepage-page .home-footer .footer-columns .col-second .categories-list .single-category .arrow {
	margin-left: 5px;
	display: inline-block;
	height: 12px;
	width: 7px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.285' height='15.155' viewBox='0 0 8.285 15.155'%3E%3Cpath d='M884.216,598.737l6.87,6.87,6.87-6.87' transform='translate(-598.03 898.663) rotate(-90)' fill='none' stroke='%23cb9804' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E%0A");
	transition: all 0.3s ease;
}

.homepage-page .home-footer .footer-columns .col-third {
	width: 20%;
}

.homepage-page .home-footer .footer-columns .col-fourth {
	width: 20%;
	text-align: right;
}

@media (max-width: 1500px) {
	.hp-container {
		max-width: 1200px;
	}
	.homepage-page .home-product-list {
		padding-top: 90px;
		padding-bottom: 120px;
	}
	.homepage-page .home-product-list .product-list {
		padding-top: 30px;
	}
	.homepage-page .home-browse {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.homepage-page .home-hero .hero-btn {
		padding: 10px 20px 10px 20px;
		font-size: 24px;
	}
	.homepage-page .home-hero .hero-btn .arrow {
		height: 16px;
	}
}

@media (max-width: 1200px) {
	.hp-container {
		max-width: 992px;
	}
	.homepage-page .home-hero .hero-main .hero-main-content .hero-main-columns .hero-left-column {
		width: 100%;
	}
	.homepage-page .home-hero .hero-main .hero-main-content .hero-main-columns .hero-right-column {
		display: none;
	}
	.homepage-page .home-product-list .product-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.hp-container {
		max-width: 768px;
	}
	.homepage-page .home-footer {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.homepage-page .home-footer .footer-columns {
		gap: 45px 0;
	}
	.homepage-page .home-footer .footer-columns .col-first {
		width: 100%;
	}
	.homepage-page .home-footer .footer-columns .col-second {
		width: 100%;
		margin-bottom: 30px;
	}
	.homepage-page .home-footer .footer-columns .col-third {
		width: 50%;
	}
	.homepage-page .home-footer .footer-columns .col-fourth {
		width: 50%;
		text-align: left;
	}
}

@media (max-width: 768px) {
	.hp-container {
		max-width: 576px;
	}
	.homepage-page h1,
	.homepage-page .h1 {
		font-size: 35px;
	}
	.homepage-page h2,
	.homepage-page .h2 {
		font-size: 25px;
	}
	.homepage-page .home-product-list {
		padding-top: 45px;
		padding-bottom: 90px;
	}
	.homepage-page .home-browse {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.homepage-page .home-product-list .product-list .single-product .single-product-inner {
		padding: 30px 25px;
	}
	.homepage-page .home-product-list .product-list .single-product .single-product-inner .single-product-footer {
		padding: 20px 0 0 0;
	}
	.homepage-page .btn-pill {
		padding: 7px 20px;
		font-size: 15px;
	}
	.homepage-page .home-footer .footer-columns .col-first {
		width: 100%;
	}
	.homepage-page .home-footer .footer-columns .col-second {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.hp-container {
		max-width: 100%;
	}
	.homepage-page h1,
	.homepage-page .h1 {
		font-size: 27px;
	}
	.homepage-page h2,
	.homepage-page .h2 {
		font-size: 20px;
	}
	.homepage-page {
		font-size: 16px;
	}
	.homepage-page .home-hero .hero-main .hero-main-content .hero-content {
		width: 100%;
	}
	.homepage-page .home-hero .hero-footer {
		padding-bottom: 30px;
	}
	.homepage-page .home-hero .hero-btn {
		padding: 8px 16px;
		font-size: 18px;
	}
	.homepage-page .home-hero .hero-btn .arrow {
		height: 12px;
	}
	.homepage-page .home-product-list .product-list {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	.homepage-page .home-product-list .product-list .single-product {
		width: calc(50% - 10px);
	}
	.homepage-page .home-product-list .product-list .single-product .single-product-inner {
		padding: 25px 15px;
	}
	.homepage-page .home-footer .footer-columns .col-third {
		width: 100%;
	}
	.homepage-page .home-footer .footer-columns .col-fourth {
		width: 100%;
		text-align: left;
	}
}
@media (max-width: 400px) {
	.homepage-page .home-footer .footer-columns .col-second .categories-list .single-category {
		width: 100%;
	}
}
