@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

 * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* cursor: default; */
 }

body {
	/* margin: 0; */
	font-family: monospace;
}

/* width */
/* ::-webkit-scrollbar {
	width: 5px;
} */

/* Track */
::-webkit-scrollbar-track {
	/* box-shadow: inset 0 0 5px grey; */
	border-radius: 100px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgb(100, 100, 100);
	border-radius: 10px;
}

.container {
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
	height: 100vh;
}

section {
	height: 100vh;
	display: flex;
	justify-content: center; /*x-axis*/
	align-items: center; /*y-axis*/
	scroll-snap-align: start;
}










/* HOME CODE START */
.one {
	background-color: white;
	flex-direction: column;
	max-width: 100vw;
	max-height: 100vh;
}

.image {
	padding-top: 0;
}

.slider {
	width: 1250px;
	max-width: 100vw;
	height: 500px;
	margin: auto;
	position: relative;
	overflow: hidden;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.list {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	width: max-content;
	transition: 1s;
}

.list img {
	width: 1280px;
	max-width: 100vw;
	height: 100%;
	object-fit: cover;
}

.buttons {
	/* margin: 0; */
	/* border: 1px solid; */
	position: absolute;
	top: 30%;
	z-index: 9999;
	left: 0%;
	right: 0%;
	width: 100%;
	/* background: red; */
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: space-between;
	
}

.btn-left {
	left: 1%;
	opacity: 0.5;
}

.btn-right {
	right: 10%;
	opacity: 0.5;
}

.btn-left:hover {
	opacity: 1;
}

.btn-right:hover {
	opacity: 1;
}

.buttons button:hover {
	cursor: pointer;
}

.buttons button {
	display: flex;
	justify-content: center;
	align-items: center;
	/* display: none; */
	font-size: 150px;
	padding: 0;
	margin: 0;
	/* width: 200px;
	height: 200px; */
	/* border-radius: 50%; */
	/* background-color: #fff5; */
	background: none;
	color: #595959;
	/* color: #f4bb16; */
	font-family: monospace;
	font-weight: bold;
	border: none;
}

.dots {
	cursor: pointer;
	position: absolute;
	bottom: 10px;
	color: #fff;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.dots li {
	list-style: none;
	width: 7px;
	height: 7px;
	background-color: #fff;
	margin: 20px;
	border-radius: 20px;
	transition: 1s;
	opacity: 30%;
}

.dots li:hover {
	opacity: 1;
}

.dots li.active {
	opacity: 1;
	width: 20px;
}

.home-title {
	text-align: center;
	font-family: 'Poppins';
	font-size: 70px;
	margin: 0;
}

.home-subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	padding: auto;
	font-size: 20px;
	width: 310px;
	height: 50px;
	color: black;
	text-align: center;
	font-family: 'Do Hyeon';
	background-color: #f4bb16;
	/* background-color: #333333; */
	border-radius: 50px;
}

/* @media (min-width: 360px) and (min-height: 640px){
	.home-title {
		font-size: 30px;
	}
	.slider {
		height: 450px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}
}

@media (min-width: 360px) and (min-height: 780px){
	.home-title {
		padding-top: 20px;
		font-size: 35px;
	}
	.slider {
		height: 500px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}
}

@media (min-width: 393px) and (min-height: 873px){
	.home-title {
		padding-top: 20px;
		font-size: 35px;
	}
	.slider {
		height: 600px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}
}

@media (min-width: 412px) and (min-height: 915px){
	.home-title {
		padding-top: 30px;
		font-size: 40px;
	}
	.slider {
		height: 600px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}

	.home-subtitle {
		font-size: 25px;
		width: 380px;
	}
}

@media (min-width: 390px) and (min-height: 844px){
	.home-title {
		padding-top: 30px;
		font-size: 40px;
	}
	.slider {
		height: 600px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}

	.home-subtitle {
		font-size: 25px;
		width: 380px;
	}
} */

@media (min-width: 320px){
	.container {
		scroll-snap-type: none;
	}

	.home-title {
		padding-top: 30px;
		font-size: 30px;
	}
	.slider {
		height: 400px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}

	.home-subtitle {
		margin-top: 1rem;
		font-size: 20px;
		width: 300px;
	}
}

@media (min-width: 375px){
	.container {
		scroll-snap-type: none;
	}	

	.home-title {
		padding-top: 30px;
		font-size: 35px;
	}
	.slider {
		height: 550px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}

	.home-subtitle {
		font-size: 23px;
		width: 350px;
	}
}

@media (min-width: 425px){
	.home-title {
		padding-top: 30px;
		font-size: 40px;
	}
	.slider {
		height: 600px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}

	.home-subtitle {
		font-size: 25px;
		width: 370px;
	}
}

@media (min-width: 768px) {
	.home-title {
		padding-top: 40px;
		font-size: 50px;
	}
	.slider {
		height: 600px;
		border-radius: none;
	}

	.buttons button {
		display: none;
	}

	.home-subtitle {
		font-size: 30px;
		width: 450px;
	}
}

@media (min-width: 1024px) {
	.home-title {
		padding-top: 40px;
		font-size: 50px;
	}
	.slider {
		height: 600px;
		border-radius: none;
	}

	.buttons button {
		display: block;
	}

	.home-subtitle {
		font-size: 30px;
		width: 450px;
	}
}

@media (min-width: 1440px) {
	.container {
		scroll-snap-type: y mandatory;
	}

	.home-title {
		padding-top: 0;
		font-size: 60px;
	}
	.slider {
		height: 500px;
		border-radius: 50px;
		
	}

	.buttons button {
		display: block;
	}

	.home-subtitle {
		margin: auto;
		font-size: 40px;
		width: 620px;
	}
}

/* @media (min-width: 768px) {
	.home-title {
		font-size: 50px;
	}
	.slider {
		height: 450px;
		border-radius: 0px;
	}

	.buttons button {
		display: none;
	}
} */

/* HOME CODE END */










/* TENTANG CODE START */
.two {
	background-color: rgb(255, 255, 255);
	flex-direction: column;
	display: flex;
	justify-content: start;
	max-height: 100vh;
}

.section-two {
	width: 100%;
}

.page-title {
	font-family: 'Do Hyeon';
	font-size: 70px;
	font-weight: 50;
}

.box-title {
	display: flex;
	margin: auto;
	width: 100%;
	/* height: 100px; */
	overflow: hidden;
	justify-content: center;
	align-items: center;
	/* border: 1px solid black; */
	background-color: #f4bb16;
	/* background-color: rgb(210, 210, 210); */
	margin-top: 100px;
}

.box-section-about {
	/* border: 1px solid; */
	margin: 30px 150px 0px 150px;
	display: flex;
	flex-direction: row;
	align-items: flex-start; /* Aligns the items at the top initially */
	position: relative;
}

.about-image img {
	margin-right: 100px;
	aspect-ratio: 16 / 16;
	width: 400px;
	object-fit: cover;
	border-radius: 50px;
}

.about-explain {
    display: flex;
    flex-direction: column; /* Stacks the content vertically */
    justify-content: space-between; /* Spaces out the content */
    height: 400px; /* Set height to match the image */
}

.about-explain h3 {
	font-family: 'Do Hyeon';
	font-size: 25px;
	font-weight: 50;
	background-color: #f4bb16;
	/* background-color: #3b3535; */
	color: black;
	width: 350px;
	height: 45px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-explain h4 {
	font-family: 'Inter';
	font-size: 20px;
	font-weight: 500;
	text-align: justify;
}

.sub-about-explain {
    /* border: 1px solid #333; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.number {
	font-family: 'Inter';
	font-size: 30px;
	font-weight: bolder;
}

.info {
	font-family: 'Inter';
	font-size: 20px;
}

@media (min-width: 320px) {
	.box-title {
		margin-top: 50px;
	}

	.page-title {
		font-size: 40px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 10px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 300px;
	}

	.about-explain {
		height: 360px;
		margin: 0 20px;
		display: flex;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 20px;
		width: 300px;
	}

	.about-explain h4 {
		font-size: 15px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.number {
		font-size: 20px;
	}

	.info {
		font-size: 10px;
	}
}

@media (min-width: 375px) {
	.box-title {
		margin-top: 80px;
	}

	.page-title {
		font-size: 40px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 10px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 300px;
	}

	.about-explain {
		height: 360px;
		margin: 0 20px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 20px;
		width: 300px;
	}

	.about-explain h4 {
		font-size: 15px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		display: flex;
		justify-content: space-between;
		width: 315px;
	}

	.number {
		font-size: 20px;
	}

	.info {
		font-size: 10px;
	}
}

@media (min-width: 425px) {
	
	.box-title {
		margin-top: 80px;
	}

	.page-title {
		font-size: 40px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 10px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 300px;
	}

	.about-explain {
		height: 360px;
		margin: 0 20px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 28px;
		width: 383.6px;
	}

	.about-explain h4 {
		font-size: 15px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		display: flex;
		justify-content: space-between;
		width: 383.6px;
	}

	.number {
		font-size: 20px;
	}

	.info {
		font-size: 10px;
	}
}

@media (min-width: 768px) {
	.box-title {
		margin-top: 80px;
	}

	.page-title {
		font-size: 40px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 10px 30px 0px 40px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		aspect-ratio: 16/9;
		width: 600px;
	}

	.about-explain {
		height: 330px;
		margin: 0 20px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 40px;
		width: 600px;
	}

	.about-explain h4 {
		font-size: 18px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		display: flex;
		justify-content: space-between;
		width: 658px;
	}

	.number {
		font-size: 24px;
	}

	.info {
		font-size: 18px;
	}
}

@media (min-width: 1024px) {
	.box-title {
		display: flex;
		margin: auto;
		width: 100%;
		overflow: hidden;
		justify-content: center;
		align-items: center;
		background-color: #f4bb16;
		margin-top: 100px;	
	}

	.page-title {
		font-family: 'Do Hyeon';
		font-size: 70px;
		font-weight: 50;
	}

	.box-section-about {
		margin: 30px 150px 0px 150px;
		display: flex;
		flex-direction: row;
		align-items: flex-start; 
		position: relative;
	}

	.about-image img {
		margin-right: 50px;
		aspect-ratio: 16 / 16;
		width: 400px;
		object-fit: cover;
		border-radius: 50px;
	}

	.about-explain {
		display: flex;
		flex-direction: column; 
		justify-content: space-between;
		height: 400px; 
		align-items: start;
		margin: 0;
	}

	.about-explain h3 {
		font-family: 'Do Hyeon';
		font-size: 25px;
		font-weight: 50;
		background-color: #f4bb16;
		color: black;
		width: 350px;
		height: 45px;
		border-radius: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-explain h4 {
		font-family: 'Inter';
		font-size: 20px;
		font-weight: 500;
		text-align: justify;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		display: flex;
		justify-content: space-between;
		width: 400px;
	}

	.number {
		font-size: 30px;
	}

	.info {
		font-size: 20px;
	}
}

@media (min-width: 1440px) {
	
}

/* @media (min-width: 1920px) and (min-height: 1080px){
	.two {
		background-color: rgb(255, 255, 255);
		flex-direction: column;
		display: flex;
		justify-content: start;
	}
	
	.section-two {
		width: 100%;
		height: 100%;
	}
	
	.page-title {
		font-family: 'Do Hyeon';
		font-size: 100px;
		font-weight: 50;
	}
	
	.box-title {
		display: flex;
		margin: auto;
		width: 100%;
		overflow: hidden;
		justify-content: center;
		align-items: center;
		background-color: #f4bb16;
		margin-top: 100px;
	}
	
	.box-section-about {
		margin: 50px 150px 0px 150px;
		display: flex;
		flex-direction: row;
		align-items: flex-start; 
		position: relative;
	}
	
	.about-image img {
		margin-right: 100px;
		aspect-ratio: 16 / 16;
		width: 700px;
		object-fit: cover;
		border-radius: 50px;
	}
	
	.about-explain {
		display: flex;
		flex-direction: column; 
		justify-content: space-between; 
		height: 700px; 
	}
	
	.about-explain h3 {
		font-family: 'Do Hyeon';
		font-size: 50px;
		font-weight: 50;
		background-color: #f4bb16;
		color: black;
		width: 750px;
		height: 60px;
		border-radius: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.about-explain h4 {
		font-family: 'Inter';
		font-size: 35px;
		font-weight: 500;
		text-align: justify;
	}
	
	.sub-about-explain {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.number {
		font-family: 'Inter';
		font-size: 40px;
		font-weight: bolder;
	}
	
	.info {
		font-family: 'Inter';
		font-size: 30px;
	}
}

@media (min-width: 1536px) and (max-width: 1919px) and (min-height: 864px) and (max-height: 1079px){
 	.box-title {
		margin-top: 160px;
	}
	
	.about-explain h3 {
		font-size: 40px;
		width: 600px;
	}

	.box-section-about {
		margin: 90px 130px 0px 130px;
	}
}

@media (min-width: 1366px) and (max-width: 1535px) and (min-height: 768px) and (max-height: 863px){
	.box-title {
		display: flex;
		margin: auto;
		width: 100%;
		overflow: hidden;
		justify-content: center;
		align-items: center;
		background-color: #f4bb16;
		margin-top: 140px;	
	}

	.about-explain h3 {
		font-size: 40px;
		width: 600px;
	}
}

@media (min-width: 1280px) and (max-width: 1365px) and (min-height: 720px) and (max-height: 767px){
	.box-title {
		display: flex;
		margin: auto;
		width: 100%;
		overflow: hidden;
		justify-content: center;
		align-items: center;
		background-color: #f4bb16;
		margin-top: 100px;
	}

	.page-title {
		font-family: 'Do Hyeon';
		font-size: 70px;
		font-weight: 50;
	}

	.box-section-about {
		margin: 30px 50px 0px 50px;
		display: flex;
		flex-direction: row;
		align-items: flex-start; 
		position: relative;
	}

	.about-image img {
		margin-right: 50px;
		aspect-ratio: 16 / 16;
		width: 400px;
		object-fit: cover;
		border-radius: 50px;
	}

	.about-explain {
		display: flex;
		flex-direction: column; 
		justify-content: space-between;
		height: 400px; 
		align-items: start;
		margin: 0;
	}

	.about-explain h3 {
		font-family: 'Do Hyeon';
		font-size: 25px;
		font-weight: 50;
		background-color: #f4bb16;
		color: black;
		width: 350px;
		height: 45px;
		border-radius: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-explain h4 {
		font-family: 'Inter';
		font-size: 20px;
		font-weight: 500;
		text-align: justify;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		display: flex;
		justify-content: space-between;
		width: 730px;
	}

	.number {
		font-size: 30px;
	}

	.info {
		font-size: 20px;
	}
}

@media (min-width: 412px) and (max-width: 412px) and (min-height: 915px) and (max-width: 915px){
	.box-title {
		margin-top: 80px;
	}

	.page-title {
		font-size: 40px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 30px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 300px;
	}

	.about-explain {
		height: 360px;
		margin: 0 20px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 20px;
		width: 300px;
	}

	.about-explain h4 {
		font-size: 15px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		width: 370px;
	}

	.number {
		font-size: 20px;
	}

	.info {
		font-size: 10px;
	}
}

@media (min-width: 390px) and (max-width: 391px) and (min-height: 844px) and (max-width: 845px){
	.box-title {
		margin-top: 80px;
	}

	.page-title {
		font-size: 40px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 30px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 300px;
	}

	.about-explain {
		height: 360px;
		margin: 0 30px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 20px;
		width: 300px;
	}

	.about-explain h4 {
		font-size: 15px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		width: 328.4px;
	}

	.number {
		font-size: 20px;
	}

	.info {
		font-size: 15px;
	}
}

@media (max-width: 360px) and (max-width: 800px){
	.box-title {
		margin-top: 75px;
	}

	.page-title {
		font-size: 35px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 30px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 250px;
	}

	.about-explain {
		height: 360px;
		margin: 0 30px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 1.5rem;
		width: 20rem;
	}

	.about-explain h4 {
		font-size: 1rem;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		width: 328.4px;
	}

	.number {
		font-size: 1.5rem;
	}

	.info {
		font-size: 1rem;
	}
}

@media (max-width: 360px) and (max-width: 781px){
	.box-title {
		margin-top: 75px;
	}

	.page-title {
		font-size: 35px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 20px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 250px;
	}

	.about-explain {
		height: 360px;
		margin: 0 30px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 20px;
		width: 300px;
	}

	.about-explain h4 {
		font-size: 15px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		width: 328.4px;
	}

	.number {
		font-size: 20px;
	}

	.info {
		font-size: 15px;
	}
}

@media (max-width: 360px) and (max-width: 641px){
	.box-title {
		margin-top: 75px;
	}

	.page-title {
		font-size: 35px;
		text-align: center;
	}

	.box-section-about {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 30px 1px 0px 1px;
	}

	.about-image {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-image img {
		margin-right: 0;
		width: 200px;
	}

	.about-explain {
		height: 260px;
		margin: 0 30px;
		display: flex;
		align-items: center;
	}

	.about-explain h3 {
		margin-top: 10px;
		font-size: 15px;
		width: 210px;
		height: 30px;
	}

	.about-explain h4 {
		font-size: 12px;
	}

	.about-explain p {
		justify-content: space-between;
	}

	.sub-about-explain {
		width: 298px;
	}

	.number {
		font-size: 15px;
	}

	.info {
		font-size: 12px;
	}
} */

/* TENTANG CODE END */










/* JASA CODE START */
.three {
	background-color: rgb(255, 255, 255);
	flex-direction: column;
	/* box-sizing: border-box; */
	font-family: 'Inter';
	display: flex;
	justify-content: start;
	max-height: 100vh;
}

.three-box-title {
	/* top: 0; */
	/* margin-top: 300px; */
	display: flex;
	/* margin: auto; */
	width: 100%;
	/* height: 180px; */
	/* overflow: hidden; */
	justify-content: center;
	align-items: center;
	/* border: 1px solid black; */
	background-color: #f4bb16;
	/* background-color: rgb(210, 210, 210); */
	margin-top: 100px;
}

.three-page-title {
	font-family: 'Do Hyeon';
	font-size: 80px;
	font-weight: 50;
}

.card-container {
	/* border: 1px solid black; */
	width: 1000px;
	/* height: 1000px; */
	/* margin-bottom: 10px; */
}

.card-wrapper {
    max-width: 1000px;
	max-height: 1080px;
    margin: 0 60px 0px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item {
    list-style: none;
}

.card-list .card-item .card-link {
    user-select: none;
    /* width: 400px; */
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
	cursor: pointer;
    transition: 0.5s ease;
}

.card-list .card-item .card-link:active {
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    border-color: #f4bb16;
}

.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge {
    color: #f4bb16;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #DDE4FF;
    width: fit-content;
    border-radius: 50px;
	transition: 0.5s ease;
}

.card-list .card-link .badge.penyedia-gudang {
    color: black;
    background: #f4bd1677;
}

.card-list .card-link:hover .badge.penyedia-gudang {
	background-color: #f4bb16;
}

.card-list .card-link .badge.trucking {
    color: black;
    background: #f4bd1677;
}

.card-list .card-link:hover .badge.trucking {
	background-color: #f4bb16;
}

.card-list .card-link .badge.manpower {
    color: black;
    background: #f4bd1677;
}

.card-list .card-link:hover .badge.manpower {
	background-color: #f4bb16;
}

.card-list .card-link .badge.karoseri {
    color: black;
    background: #f4bd1677;
}

.card-list .card-link:hover .badge.karoseri {
	background-color: #f4bb16;
}

.card-list .card-link .card-title {
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
}

.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #f4bb16;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #f4bb16;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
    color: #fff;
    background: #f4bb16;
}

.card-wrapper .swiper-paginatioan-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #f4bb16;
}

.card-wrapper .swiper-paginatioan-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: #f4bb16;
    margin-top: -35px;
}

@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}

@media (min-width: 320px) {
	.three-page-title {
		font-size: 40px;
	}
	.card-container {
		width: 300px;
	}
}

@media (min-width: 375px) {
	.three-page-title {
		font-size: 50px;
	}
	
}

@media (min-width: 425px) {
	.three-page-title {
		font-size: 60px;
	}
}

@media (min-width: 768px) {
	.three-page-title {
		font-size: 70px;
	}

	.card-container {
		width: 768px;
	}
}

@media (min-width: 1024px) {
	.three-page-title {
		font-size: 80px;
	}

	.card-container {
		width: 1024px;
	}
}

@media (min-width: 1440px) {
	
}
/* JASA CODE END */









/* BISNIS PARTNER START */
.four {
	background-color: white;
	flex-direction: column;
	position: relative;
	justify-content: start;
	max-height: 100vh;
}



.four-title {
	margin-top: 100px;
	margin-bottom: 20px;
	display: flex;
	/* margin: auto; */
	width: 100%;
	/* height: 100px; */
	overflow: hidden;
	justify-content: center;
	align-items: center;
	/* border: 1px solid black; */
	background-color: #f4bb16;
	/* background-color: rgb(210, 210, 210); */
}

.four-title-txt {
	font-family: 'Do Hyeon';
	font-size: 80px;
	font-weight: 50;
}

.logo-slider {
    width: 100%;
    /* border: 1px solid red; */
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 80%,
        transparent
    );
}

.logo-slider .logo-list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.logo-slider .logo-list .logo-item {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((10s / var(--quantity)) * (var(--position) - 1));
}

.logo-slider .logo-list .logo-item img {
    width: 100%;
}

@keyframes autoRun {
    from {
        left: 100%;
    } to {
        left: calc(var(--width) * -1);
    }
}

.logo-slider:hover .logo-item {
    animation-play-state: paused!important;
    filter: grayscale(1);
}

.logo-slider .logo-item:hover {
    filter: grayscale(0);
}

.business-img-container {
	position: absolute;
    bottom: 0px;
    /* left: 50%; */
    display: flex;
    /* transform: translateX(-100%); */
    width: 900px;
    justify-content: center;
    align-items: center;
    /* height: 100px; */
}

.business-img {
	/* border: 10px solid red; */
	width: 100%;
	bottom: 0;
}

@media (min-width: 320px) {
	.four-title-txt {
		font-size: 40px;
	}
	.business-img-container {
		margin-top: 100px;
		position: relative;
		bottom: auto;
		width: 100%;
		overflow: hidden;
	}

	.business-img {
		width: max-content;
	}
}

@media (min-width: 375px) {
	.four-title-txt {
		font-size: 50px;
	}
	
}

@media (min-width: 425px) {
	.four-title-txt {
		font-size: 60px;
	}
}

@media (min-width: 768px) {
	.four-title-txt {
		font-size: 70px;
	}

}

@media (min-width: 1024px) {
	.four-title-txt {
		font-size: 80px;
	}

	.business-img-container {
		width: 900px;
		margin-top: auto;
		position: absolute;
		bottom: 0px;
	}

	.business-img {
		width: 100%;
	}
}

@media (min-width: 1440px) {
	
}

/* BISNIS PARTNER END */










/* KONTAK CODE START */
.five {
	background-color: white;
	flex-direction: column;
	position: relative;
	justify-content: start;
	max-height: 100vh;
}

.section-five {
	width: 100%;
}

.five-title {
	margin-top: 100px;
	margin-bottom: 20px;
	display: flex;
	/* margin: auto; */
	width: 100%;
	/* height: 100px; */
	overflow: hidden;
	justify-content: center;
	align-items: center;
	/* border: 1px solid black; */
	background-color: #f4bb16;
	/* background-color: rgb(210, 210, 210); */
}

.five-title-txt {
	font-family: 'Do Hyeon';
	font-size: 80px;
	font-weight: 50;
}

.five-box-section {
	margin: 30px 150px 0px 150px;
	display: flex;
	flex-direction: row;
	align-items: flex-start; /* Aligns the items at the top initially */
	/* position: relative; */
}

.five-img-container {
	width: 400px;
}

.five-img {
	width: 400px;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
}

.five-txt-container {
	margin: 0 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 300px;
}

.five-txt-container h2 {
	font-family: 'Inter';
}

.five-txt-container p {
	font-family: 'Inter';
}

@media (min-width: 320px) {
	.five-title {
		margin-top: 70px;
	}

	.five-title-txt {
		font-size: 40px;
	}
	
	.five-box-section {
		margin: 30px 10px 0px 10px;
		flex-direction: column;
	}

	.five-img-container{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.five-img {
		height: 250px;
		width: 250px;
	}

	.five-txt-container {
		margin: 10px 20px;
		height: 150px;
	}

	.five-txt-container h2 {
		font-size: 20px;
		font-family: 'Inter';
	}
	
	.five-txt-container p {
		font-size: 10px;
		font-family: 'Inter';
	}
}

@media (min-width: 375px) {
	.five-title-txt {
		font-size: 50px;
	}
	
}

@media (min-width: 425px) {
	.five-title-txt {
		font-size: 60px;
	}
}

@media (min-width: 768px) {
	.five-title {
		margin-top: 100px;
	}

	.five-title-txt {
		font-size: 70px;
	}
	
	.five-box-section {
		margin: 30px 10px 0px 10px;
		flex-direction: row;
	}

	.five-img-container{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.five-img {
		height: 300px;
		width: 300px;
	}

	.five-txt-container {
		margin: 0px 20px;
		height: 300px;
	}

	.five-txt-container h2 {
		font-size: 30px;
		font-family: 'Inter';
	}
	
	.five-txt-container p {
		font-size: 15px;
		font-family: 'Inter';
	}
}

@media (min-width: 1024px) {
	.five-title {
		margin-top: 100px;
	}

	.five-title-txt {
		font-size: 80px;
	}
	
	.five-box-section {
		margin: 30px 100px 0px 100px;
		flex-direction: row;
	}

	.five-img-container{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 400px;
	}

	.five-img {
		height: 500px;
		width: 400px;
	}

	.five-txt-container {
		margin: 0px 20px;
		height: 420px;
	}

	.five-txt-container h2 {
		font-size: 40px;
		font-family: 'Inter';
	}
	
	.five-txt-container p {
		font-size: 25px;
		font-family: 'Inter';
	}
}

@media (min-width: 1440px) {
	.five-title {
		margin-top: 100px;
	}

	.five-title-txt {
		font-size: 80px;
	}
	
	.five-box-section {
		margin: 30px 100px 0px 100px;
		flex-direction: row;
	}

	.five-img-container{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 400px;
	}

	.five-img {
		height: 400px;
		width: 400px;
	}

	.five-txt-container {
		margin: 0px 30px;
		height: 300px;
	}

	.five-txt-container h2 {
		font-size: 20px;
		font-family: 'Inter';
	}
	
	.five-txt-container p {
		font-size: 16px;
		font-family: 'Inter';
	}
}
/* KONTAK CODE END */










/* FOOTER CODE START */
.six {
	background-color: #f4bd1656;
	/* background: rgb(210, 210, 210); */
	/* flex-direction: column; */
}

.six-container {
	max-width: 100vw;
	width: 100vw;
    margin: auto;
	box-sizing: border-box;
	background-color: red;
}

.footer {
	width: 100%;
	/* padding-top: 70px; */
}

.six-container-col {
	/* display: flex; */
	/* flex-direction: column; */
	flex-wrap: wrap;
	box-sizing: border-box;
	/* justify-content: space-between; */
	margin-bottom: 20px;
}

.six-txt-up {
	font-family: 'Do Hyeon';
	font-weight: 500;
	/* margin: 0 20px; */
}

/* .six-container-up-left {
	margin-right: 20px;
} */

.six-container-col li {
	list-style: none;
	text-decoration: none;
	font-family: 'Inter';
	font-style: none;
	color: black;
}

.six-container-col li a {
	text-decoration: none;
	color: black;
	transition: 0.5s ease;
}


.six-container-col li a:hover {
	margin-left: 5px;
}

.six-container-col li{
	list-style: none;
}

.maps {
	width: 100%;
    height: 300px;
}
/* FOOTER CODE END */