/* 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: 20px;
	text-align: center;
	border-radius: 10px;
	margin: 0 10px;
}

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

.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: 100%; /* Match the size of the button */
	height: 100%;
	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: 100%; /* Match the size of the button */
	height: 100%;
	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;
}

/* Custom background image */
.background-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.moving-image {
	position: relative;
	animation: moveUpDown 15s infinite alternate ease-in-out;
	z-index: -10;
}

@keyframes moveUpDown {
	0% {
		transform: translateY(-1390px);
	}
	100% {
		transform: translateY(0);
	}
}

.background-gradient {
	background: rgb(0, 0, 0);
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(255, 255, 255, 0) 50%,
		rgba(0, 0, 0, 1) 100%
	);
}
.background-image-url {
	position: relative; /* Ensure the pseudo-element is positioned relative to this element */
	background-image: url("./images/banner_section.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
}

.background-image-url::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
	z-index: 1; /* Ensure the overlay is on top of the background */
}

.background-image-url > * {
	position: relative; /* Ensure the child elements are above the overlay */
	z-index: 2;
}

/* .section {
	height: 800px;
	width: 100%;
}
.content {
	height: 1200px;
	background-color: lightcoral;
}
.fixed-element {
	width: 100%;
	height: 400px;
	text-align: center;
	background: lightblue;
	padding: 20px;
	transition: top 0.3s;
	z-index: 10;
.stopped {
	position: absolute;
}
.absolute-element {
	position: fixed;
	top: 200px;
	left: 0;
}  */

.collapse-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
.collapse-content.show {
	max-height: 500px; /* Set a max height that can fit the content */
}

/* CSS */
.arrow-icon.rotate-180 {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.hr-red {
	border-color: red;
	transition: border-color 0.3s ease;
}
