/* General custom styles */
body {
	font-family: "Inter", sans-serif;
	background-color: #f0f0f0;
	z-index: -1;
}

/* header */
header {
	width: 100%;
}
@media screen and (min-width: 1440px) {
	header {
		width: 1440px;
	}
}
.transform-rotate-45 {
	transform: translateY(10px) rotate(45deg);
}
.transform-rotate--45 {
	transform: translateY(-8px) rotate(-45deg);
}
.opacityToZero {
	display: none !important;
}
@media screen and (max-width: 1024px) {
	.opacityToZero {
		display: block !important;
	}
}

.openlistmenu {
	width: fit-content !important;
	transition: all 0.3s ease-in-out;
	opacity: 1 !important;
	z-index: 1;
	display: flex !important;
}
@media screen and (max-width: 1024px) {
	.openlistmenu {
		width: 100% !important;
		height: fit-content;
		flex-direction: column;
		position: fixed;
		top: 100px;
		left: 0;
		background-color: black;
		text-align: center;
		padding: 20px 0;
	}
}

/* Custom styles for Slick Slider */
.slick-slide {
	color: white;
	font-size: 20px;
	padding: 8px;
	text-align: center;
	margin: 0 8px;
}

/* Custom styles for navigation arrows */
.slick-prev,
.slick-next {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.slick-prev:hover,
.slick-next:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.slick-prev {
	left: -50px;
	width: 44px; /* Ensure the button itself is appropriately sized */
	height: 44px;
}

.slick-prev::before {
	content: "";
	display: block; /* Ensure the pseudo-element takes up space */
	width: 50%; /* Match the size of the button */
	height: 50%;
	background-image: url("../images/Vector2.png");
	background-size: contain; /* Scale the image to fit */
	background-repeat: no-repeat; /* Ensure the image doesn't repeat */
	background-position: center; /* Center the image */
}

.slick-next {
	right: -50px;
	width: 44px; /* Ensure the button itself is appropriately sized */
	height: 44px;
}

.slick-next::before {
	content: "";
	display: block; /* Ensure the pseudo-element takes up space */
	width: 50%; /* Match the size of the button */
	height: 50%;
	background-image: url("../images/Vector.png");
	background-size: contain; /* Scale the image to fit */
	background-repeat: no-repeat; /* Ensure the image doesn't repeat */
	background-position: center; /* Center the image */
}

/* Custom styles for dots */
.custom-dots {
	bottom: -30px;
}

.custom-dots li {
	margin: 0 5px;
}

.custom-dots li button:before {
	font-size: 12px;
	color: black;
	opacity: 1;
}

.custom-dots .slick-active button:before {
	color: red;
	opacity: 1;
}

/* section1 banner */
.section1-banner {
	width: 100%;
	height: 100vh;
	background-image: url("../images/bg_banner.png");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}