* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face {
	font-family: 'CarismaLight';
	src: url(/fonts/CarismaClassic-300Light.ttf);
}
@font-face {
	font-family: 'CarismaMedium';
	src: url(/fonts/CarismaClassic-500Medium.ttf);
}
@font-face {
	font-family: 'CarismaBold';
	src: url(/fonts/CarismaClassic-600DemiBold.ttf);
}

html,
body {
	height: 100%;
	width: 100%;
	font-family: 'CarismaLight';
}

main {
	height: 100%;
	width: 100%;
}

nav {
	height: 14%;
	width: 100%;
	display: flex;
	flex-direction: column;
}

#nav1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	font-size: 1vw;
}

#logo {
	width: 2rem;
	height: 1rem;
	position: relative;
}

#logo::before,
#logo::after {
	content: '';
	width: 1rem;
	height: 1rem;
	background-color: black;
	border-radius: 50%;
	position: absolute;
	top: 0;
}

#logo::before {
	left: 0;
}

#logo::after {
	right: 0;
}

#region {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

#region h5:nth-child(2) {
	color: #aaaaaa;
}

.menu {
	display: none;
}

#menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

#nav2 {
	width: 60%;
	display: flex;
	gap: 2rem;
	align-items: center;
	padding: 1rem 2rem;
	font-size: 1vw;
}

#top {
	height: 40%;
}

.top-slider {
	width: 100%;
	height: 100%;
	display: flex;
	overflow-x: auto;
}

#top .content {
	flex-shrink: 0;
	width: 60%;
	height: 100%;
	padding: 4rem;
	text-align: center;
	background: #fff;
	display: flex;
	gap: 10vw;
	align-items: start;
	justify-content: center;
}

.content-main {
	display: flex;
	flex-direction: column;

	gap: 1rem;
	text-align: left;
}

#top .content-main h1 {
	font-size: 5vw;
}

#top h3:first-child {
	font-family: 'CarismaBold';
	font-size: larger;
}

.top-slider::-webkit-scrollbar {
	height: 0.6vw;
	background-color: transparent;
	background-clip: content-box;
}

.top-slider::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #ec774f;
}

#bottom {
	height: 46%;
	position: relative;
}

.slider-next,
.slider-prev {
	position: absolute;
	top: 50%;
	font-size: 3rem;
	cursor: pointer;
	font-weight: 100;
}

.slider-next {
	right: 2%;
	color: white;
}

.slider-prev {
	left: 2%;
	color: gray;
}

.bottom-slider {
	width: 100%;
	height: 100%;
	display: flex;
	overflow-x: auto;
}

.bottom-slider img {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.bottom-slider::-webkit-scrollbar {
	display: none;
}

@media screen and (max-width: 768px) {
	nav {
		height: 20vh;
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.menu {
		display: block;
		font-size: 1.2rem;
	}

	#menu {
		display: none;
	}

	#nav1 {
		height: 50%;
	}

	#nav2 {
		height: 50%;
		width: 100%;
		gap: 0;
		justify-content: space-around;
		padding: 1rem;
		font-size: 2vw;
	}

	#top {
		height: 30%;
	}

	.content {
		margin-left: 10vw;
	}

	#top h3:first-child {
		font-size: 4vw;
	}

	#top .content-main h1 {
		font-size: 10vw;
	}

	#bottom {
		height: 50%vh;
	}

	.bottom-slider img {
		height: 100%;
	}
}
