/* #region INIT */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	font: inherit;
	padding: 0;
	margin: 0;
}

:root {
	--theme-primary: #e22621;
	--theme-primary-fc: #fff;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #000;
}

select,
button,
a,
input,
textarea {
	border-radius: 0;
	background-color: inherit;
	color: inherit;
}

a {
	text-decoration: none;
}

img {
	display: block;
}

/* #endregion */

/* #region LAYOUT */

.container {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
}

/* #endregion */

/* #region UTILS */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.page-section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section-alt-bg {
	background-color: #f7f7f7;
}

.link-btn {
	display: inline-block;
	padding: 8px 20px;
	background-color: #fff;
	color: #000;
	font-weight: 600;
	border: 2px solid #000;
	border-radius: 50px;
	transition: ease 0.25s;
	transition-property: color, background-color, border-color;
}

.link-btn:hover {
	background-color: var(--theme-primary);
	border-color: var(--theme-primary);
	color: #fff;
}

.page-section-title {
	text-align: center;
	font-weight: 600;
	font-size: 26px;
}

.home-section-text {
	text-align: center;
	font-weight: 500;
	line-height: 1.5;
}

.home-section-text + .home-section-text {
	margin-top: 0.7em;
}

.btn-swiper-nav {
	width: auto;
	background-color: #fff;
	/* opacity: 0.9; */
	color: #000;
	padding: 40px 15px;
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	font-weight: 600;
	--swiper-navigation-size: 24px;
	margin-top: 0;
	transform: translateY(-50%);
}

.btn-swiper-nav.swiper-button-next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.btn-swiper-nav.swiper-button-prev {
	left: 0;
	border-radius: 0 5px 5px 0;
}

/* #endregion */

/* #region DESIGN */

/* #region HEADER */

.header-container {
	position: relative;
	position: sticky;
	top: 0;
	z-index: 10;
	transition: ease 0.25s top;
}

.top-header {
	background-color: #000;
	color: #fff;
	height: 40px;
}

.top-header>.container {
	height: 100%;
}

.top-header-links {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
}


.top-header-group {
	margin-left: 15px;
}

.header-link-label {
	margin-left: 7px;
}

.main-header {
	/* height: 70px; */
	background-color: #fff;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}

.main-header-group {
	display: flex;
	align-items: center;
	height: 100%;
}

.header-brand {
	height: 100%;
	/* padding: 5px 0; */
}

.header-brand img {
	width: auto;
	height: 80px;
	padding: 7px 0;
}

.header-nav-links {
	margin-left: auto;
}

.header-nav-item {
	margin-left: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.header-nav-item.active {
	color: var(--theme-primary);
	font-weight: 700;
}

.page-title-ribbon {
	padding: 20px 0;
	background-color: var(--theme-primary);
	color: var(--theme-primary-fc);
}

.page-title {
	font-size: 22px;
	font-weight: 500;
	text-align: right;
}

/* #endregion */

/* #region BANNER */

.home-banner-img {
	width: 100%;
	height: auto;
}

/* #endregion */

/* #region ABOUT */

.home-about-section {}

.home-counterup-group {
	display: flex;
	justify-content: space-around;
	margin-bottom: 50px;
}

.home-counter-item {
	text-align: center;
}

.home-counter-img {
	width: 60px;
	margin: auto;
	margin-bottom: 5px;
}

.home-counter-img img {
	width: 100%;
}

.home-counter-label {
	font-weight: 700;
	color: #000;
	font-size: 25px;
}

.counter-num {
	text-align: right;
    display: inline-flex;
    justify-content: flex-end;
}

.home-about-content {
	margin-bottom: 10px;
}

.home-about-text {
	text-align: center;
}

.home-about-text .link-btn {
	margin-top: 30px;
}

/* #endregion */

/* #region HOME PRODUCTS */

.page-section-title+.home-products-text {
	margin-top: 20px;
}

.home-products-swiper {
	margin-top: 30px;
	margin-bottom: 20px;
}

.home-product-slide {
	height: auto;
}

.home-product-slide-wrapper {
	display: block;
	height: 100%;
}

.home-product-slide-img {
	position: relative;
	overflow: hidden;
}

.home-product-slide img {
	height: 360px;
	width: 100%;
	object-fit: contain;
	transition: ease 0.3s transform;
	background-color: #fff;
}

.home-product-slide-img:hover img {
	transform: scale(1.1);
}

.home-product-slide-label {
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	padding: 10px;
}

/* #endregion */

/* #region HOME BRANDS */

.home-brand-swiper {
	margin-top: 30px;
	height: 100px;
}

.home-brand-slide {
	height: auto;
}

.home-brand-slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	padding: 5px;
}

/* #endregion */

/* #region HOME TESTIMONIALS */

.home-testimonial-swiper {
	margin-top: 30px;
}

.home-testimonial-slide {
	padding: 40px;
	background-color: #fff;
	border-radius: 5px;
	height: auto;
	display: flex;
	flex-direction: column;
}

.testimonial-slide .quot::before {
	content: "\201C";
	font-size: 100px;
	line-height: 1;
	color: #999;
	font-family: fantasy, "Times New Roman", Times, serif;
	height: 0.5em;
	display: block;
}

.testimonial-text {
	margin-bottom: 1em;
	font-weight: 500;
}

.testimonial-title {
	font-weight: 600;
	color: #444;
	font-size: 18px;
	/* margin-bottom: 0.3em;
	margin-top: auto; */
}

.testimonial-sub {
	font-weight: 500;
	color: #666;
}

.testimonial-auth {
	display: flex;
	align-items: center;
	margin-top: auto;
}

.testimonial-img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	margin-right: 10px;
}

/* #endregion */

/* #region FOOTER */

.page-footer {
	background-color: #000;
	color: #fff;
	padding: 11px 0;
}

.footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copy {
	font-weight: 500;
}

.footer-social-links {
	display: flex;
	align-items: center;
	list-style: none;
}

.footer-list-item {
	margin-left: 15px;
}

.footer-social-link {
	display: block;
	/* padding: 4px; */
	/* border-radius: 50px; */
	/* width: 30px;
	height: 30px; */
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: center; */
	/* border: 2px solid #666; */
}

.footer-social-link i {
	margin-right: 5px;
}

/* #endregion */

/* #region MEDIA QUERIES */

@media(min-width:768px) {

	body.scroll-down .header-container {
		top: -40px;
	}

	.nav-menu-btn,
	.responsive-menu {
		display: none;
	}
}

@media(max-width:768px) {
	body {
		font-size: 14px;
	}

	.top-header {
		display: none;
	}

	.header-brand img {
		height: 70px;
	}

	.header-nav-links {
		display: none;
	}

	.nav-menu-btn {
		margin-left: auto;
	}

	.menu-btn {
		font-size: 42px;
		border: 0;
		background-color: transparent;
		line-height: 1;
	}

	.page-section {
		padding-top: 25px;
	}

	.page-section-title {
		font-size: 20px;
	}

	.home-counterup-group {
		flex-wrap: wrap;
		margin-bottom: 25px;
		padding-right: 20px;
	}

	.home-counter-item {
		width: 50%;
		margin: 10px 0;
	}

	.home-counter-label {
		font-size: 16px;
	}

	.counter-num {
		width: auto;
	}

	.home-about-text .link-btn {
		margin-top: 20px;
	}

	.home-section-text {
		padding-left: 10px;
		padding-right: 10px;
	}

	.btn-swiper-nav {
		padding: 35px 12px;
	}

	.home-products-swiper,
	.home-brand-swiper,
	.home-testimonial-swiper {
		margin-left: -10px;
		margin-right: -10px;
	}

	.home-product-slide-label {
		font-size: 14px;
	}

	.page-footer {
		display: none;
	}

	.responsive-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: 50;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 20px;
		transition: ease 0.25s transform;
		transform: translateX(-100%);
	}

	.menu-brand-logo {
		margin-bottom: 0;
	}

	.menu-brand-logo img {
		height: 75px;
		margin-bottom: 30px;
	}

	.menu-open .responsive-menu {
		transform: translateX(0);
	}

	.close-menu-btn {
		position: absolute;
		top: 20px;
		right: 20px;
		border: 0;
		background-color: transparent;
		font-size: 24px;
		padding: 5px;
	}

	.header-nav-item {
		font-size: 16px;
		margin-bottom: 10px;
		margin-left: 0;
		display: block;
	}

	.menu-social-links {
		margin-top: auto;
		display: flex;
		font-size: 22px;
	}

	.footer-social-icon {
		margin-right: 20px;
	}

	.menu-copy {
		font-size: 16px;
		margin-top: 30px;
		font-weight: 500;
	}

}

/* #endregion */

/* #endregion */