* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Poppins';
	scroll-behavior: smooth;
}

.container {
	z-index: 0;
	background-color: #8ec5fc;
	background-image: linear-gradient(62deg, #8ec5fc 0%, #e0c3fc 100%);
}

/* Bagian Navbar */
.navbar {
	height: 70px;
	padding-top: 0%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background-color: #8ec5fc;
	background-image: linear-gradient(62deg, #8ec5fc 0%, #e0c3fc 100%);
	z-index: 3;
	position: fixed;
	width: 100%;
}
/* bagian logo */
.section-logo {
	padding-left: 10%;
	cursor: pointer;
}
.logo {
	width: 80px;
	height: 36px;
}
/* bagian menu */
.section-menu {
	padding-right: 10%;
	list-style: none;
}

.link-menu {
	padding: 12px 28px;
	text-decoration: none;
	font-family: 'Poppins';
	font-size: 16px;
	font-weight: 600;
	color: #7d3cfc;
	background-color: #f1f1f5;
	border-radius: 20px;
	box-shadow: 0px 0px 2px 0px #d8d0e9;
	border: none;
	outline: none;
}
.link-menu:hover {
	transition: all ease-in-out 0.4s;
	box-shadow: 0px 0px 5px 0px #ae9bd3;
	background-color: white;
}

@media screen and (max-width: 768px) {
	.container {
		padding-bottom: 5%;
	}
	.navbar {
		padding-right: 2%;
		height: 60px;
		overflow: hidden;
	}
	.section-logo {
		cursor: pointer;
	}
	.logo {
		width: 60px;
		height: 28px;
	}
	/* bagian menu */
	.section-menu {
		padding-right: 2%;
	}
	.link-menu {
		padding: 8px 28px;
		font-size: 16px;
		border-radius: 15px;
	}
}
/* Akhir Navbar */

/* BAGIAN HERO */
.hero {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	padding-top: 10%;
	padding-bottom: 8%;
}

.left-hero {
	justify-content: start;
}

.top-title {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1.2px;
	color: #10254f;
}

.main-title {
	padding-top: 5%;
	font-size: 46px;
	font-weight: 700;
	color: #21243d;
	letter-spacing: 1px;
	line-height: 110%;
}

.span-title {
	color: #7d3cfc;
}

.desc-title {
	padding-top: 2%;
	font-size: 18px;
	font-weight: 400;
	color: #21243d;
	opacity: 70%;
	letter-spacing: 0.3px;
}
.cta-more {
	padding-top: 10%;
}
.link-cta {
	padding: 12px 36px;
	color: #ffff;
	font-size: 16px;
	font-weight: 400;
	background-color: #7d3cfc;
	text-decoration: none;
	border-radius: 20px;
	box-shadow: 0px 0px 2px 0.1px #7d3cfc;
}

.link-cta:hover {
	box-shadow: 0px 1px 8px 0px #5408ec;
	transition: 0.5s;
}

/* HERO RESPONSIVE */
@media screen and (max-width: 768px) {
	.hero {
		flex-direction: column-reverse;
		align-items: flex-start;
		padding-bottom: 8%;
		padding-top: 18%;
		padding-left: 5%;
	}
	.left-hero {
		padding-top: 2%;
		padding-left: 5%;
	}
	.main-title {
		padding-top: 3%;
		font-size: 32px;
	}
	.desc-title {
		font-size: 16px;
	}
	.link-cta {
		padding: 8px 32px;
	}
	.img-hero {
		width: 50%;
		width: 50%;
	}
}

@media screen and (min-width: 769px) and (max-width: 1240px) {
	.hero {
		flex-direction: row;
		align-items: center;
		padding-top: 4%;
	}
	.left-hero {
		padding-top: 2%;
		margin-left: 10%;
	}
	.main-title {
		padding-top: 3%;
		font-size: 36px;
	}
	.desc-title {
		font-size: 16px;
	}
	.link-cta {
		padding: 8px 32px;
	}
	.img-hero {
		width: 80%;
		width: 80%;
	}
}
/* akhir Hero */

/* BAGIAN PROJECTS */
.projects {
	display: flex;
	flex-direction: column;
	padding-top: 1%;
	padding-bottom: 4%;
	padding-left: 10%;
	padding-right: 10%;
	background-color: #f6f8fd;
}

.title-project {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #21243d;
	padding-top: 2%;
}

.card-projects-1,
.card-projects-2 {
	margin-top: 2%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background-color: white;
	padding: 24px 32px;
	border-radius: 20px;
	box-shadow: 0px 1px 4px 0px rgba(99, 99, 99, 0.2);
}

.card-projects-1:hover,
.card-projects-2:hover {
	transform: translateY(-4px);
	transition: 0.5s ease-in-out;
}

.card-left {
	justify-content: start;
}

.card-top-title {
	color: #bebcbc;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.2px;
}

.card-main-title {
	padding-top: 1%;
	font-size: 22px;
	font-weight: 700;
	color: #21243d;
	text-decoration: none;
}

.card-desc {
	margin-top: 8%;
	font-size: 16px;
	color: #21243d;
	opacity: 70%;
}

.card-cta {
	padding-top: 20%;
}

.link-btn {
	text-decoration: none;
	color: #7d3cfc;
	padding: 12px 24px;
	background-color: #ebe6fb;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0px 2px 4px 0px #dbdbe7;
}
.link-btn:hover {
	box-shadow: 0px 1px 5px 0px #adade0;
	transition: 0.5s;
}

.wrap-img {
	background-color: #f1f1f5;
	border-radius: 20px;
}
.wrap-img:hover {
	transform: scale(1.01);
	transition: 0.3s;
	cursor: pointer;
}

.card-img {
	padding: 16px 24px;
	border-radius: 20px;
}

.card-cta-2 {
	padding-top: 25%;
}

.bottom-projects {
	margin-top: 2%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.card-1 {
	background-image: url('./src/assets/img/project-3.png');
	width: 300px;
	height: 250px;
	box-shadow: 0px 1px 4px 0px rgba(99, 99, 99, 0.2);
	cursor: pointer;
	border-radius: 16px;
}
.card-2 {
	background-image: url('./src/assets/img/project-4.png');
	width: 300px;
	height: 250px;
	border-radius: 16px;
	box-shadow: 0px 1px 4px 0px rgba(99, 99, 99, 0.2);
	cursor: pointer;
}
.card-3 {
	background-image: url('./src/assets/img/project-5.png');
	width: 300px;
	height: 250px;
	border-radius: 16px;
	box-shadow: 0px 1px 4px 0px rgba(99, 99, 99, 0.2);
	cursor: pointer;
}
.card-1:hover,
.card-2:hover,
.card-3:hover {
	transform: scale(1.02);
	transition: 0.3s;
}
.title-card {
	color: white;
	font-size: 20px;
	font-weight: 600;
	padding-top: 60%;
	padding-left: 24px;
	text-align: bottom;
	letter-spacing: 1px;
}
.desc-card {
	color: white;
	font-size: 16px;
	font-weight: 500;
	opacity: 80%;
	padding-left: 24px;
	letter-spacing: 1px;
}

/* RESPONSIVE SECTION PROJECTS */
@media screen and (max-width: 768px) {
	.projects {
		padding-left: 2%;
		padding-right: 5%;
	}

	.card-projects-1 {
		margin-bottom: 5%;
	}
	.wrap-projects {
		padding: 8% 10%;
	}
	.wrap-img {
		display: none;
	}
	.card-desc {
		margin-top: 5%;
	}
	.card-cta,
	.card-cta-2 {
		padding-top: 10%;
	}
	.bottom-projects {
		display: none;
	}
}
/* AKHIR PROJECTS */

/* Bagian Skillset */
.skill {
	display: flex;
	flex-direction: column;
	padding: 2% 10%;
	background-color: #8ec5fc;
	background-image: linear-gradient(62deg, #8ec5fc 0%, #e0c3fc 100%);
	background-size: cover;
}

.title-skill {
	font-size: 30px;
	color: #21243d;
	opacity: 90%;
	font-family: 'Poppins';
	font-weight: 700;
}

.desc-skill {
	color: #21243d;
	font-size: 16px;
	opacity: 75%;
}

.wrap-skill {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-top: 2%;
	padding-bottom: 2%;
}

.card-skill {
	width: 100px;
	height: 100px;
	border-radius: 15px;
	justify-content: space-around;
	align-items: center;
	background-color: white;
	box-shadow: 0px 0px 4px 0px #d8d0e9;
	cursor: pointer;
}
.card-skill:hover {
	transform: scale(1.05);
	transition: all ease-in-out 0.4s;
	box-shadow: 0px 0px 8px 0px #e5e1ec;
}

.img-skill {
	width: 25%;
	height: 25%;
	margin-top: 25%;
	margin-left: 35%;
}

.desc-card-skill {
	color: #21243d;
	opacity: 90%;
	padding-top: 5%;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.wrap-skill {
		flex-wrap: wrap;
	}
	.card-skill {
		margin: 2%;
	}
}
@media screen and (min-width: 769px) and (max-width: 1240px) {
	.wrap-skill {
		flex-wrap: wrap;
	}
	.card-skill {
		margin: 2%;
	}
}
/* Akhir Skillset */

/* Awal Experience */
.experience {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
	padding: 2% 10%;
	margin-bottom: 2%;
}
.title-experience {
	color: #21243d;
	font-size: 30px;
	font-weight: 700;
	padding-top: 2%;
}
.desc-experience {
	color: #21243d;
	opacity: 80%;
	font-size: 16px;
}

.main-experience {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-top: 2%;
}

.img-experience {
	width: 150px;
	height: 150px;
	margin-right: 4%;
}

.garis {
	border: 1px solid #21243d;
	opacity: 50%;
	height: 100px;
	margin-right: 2%;
}

.desc-main-experience {
	font-size: 16px;
	font-weight: 400;
	color: #21243d;
	line-height: 200%;
}

@media screen and (max-width: 768px) {
	.main-experience {
		flex-direction: column;
	}
	.img-experience {
		margin-top: 2%;
		width: 33%;
		height: 33%;
	}
	.garis {
		display: none;
	}
	.desc-main-experience {
		padding-top: 4%;
	}
}
/* akhir experience */

/* Awal Education */

.education {
	padding: 2% 10%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 2%;
	background-color: #8ec5fc;
	background-image: linear-gradient(62deg, #8ec5fc 0%, #e0c3fc 100%);
	background-size: cover;
}
.title-education {
	color: #21243d;
	font-size: 30px;
	font-weight: 700;
	padding-top: 2%;
}

.wrap-education {
	padding-top: 2%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.education-1,
.education-2 {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	padding-bottom: 2%;
}
.year {
	width: 27%;
	font-size: 20px;
	font-weight: 500;
	color: #21243d;
	padding-left: 3%;
}
.wrap-1 {
	margin-left: 6.2%;
	width: 100%;
}
.wrap-2 {
	margin-left: 0%;
}
.place-education {
	color: #21243d;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 1px;
}
.spec-education {
	color: #21243d;
	font-size: 16px;
	font-weight: 300;
	padding-top: 2%;
}

@media screen and (max-width: 768px) {
	.education-1,
	.education-2 {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 2%;
	}
	.year {
		width: 50%;
		font-size: 14px;
	}
	.wrap-1,
	.wrap-2 {
		margin-left: 3%;
		padding-top: 2%;
	}
	.spec-education {
		padding-top: 2%;
	}
}
/* AKhir Education */

/* Bagian Awal Contact Us */
.contact {
	padding: 0% 10% 2% 10%;
	display: flex;
	flex-direction: column;
}
.title-contact {
	padding-top: 1%;
	font-size: 28px;
	font-weight: 700;
	color: #21243d;
}
.wrap-card-contact {
	display: flex;
	flex-direction: column;
}
.socmed {
	padding-top: 3%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}

.card-contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 1%;
	width: 100px;
	height: 100px;
	border-radius: 15px;
	background-color: white;
	box-shadow: 0px 0px 4px 0px #d8d0e9;
	cursor: pointer;
}

.card-contact:hover {
	transform: scale(1.05);
	transition: all ease-in-out 0.4s;
	box-shadow: 0px 0px 8px 0px #e5e1ec;
}

.card-contact a {
	text-decoration: none;
	padding-top: 6%;
	font-size: 16px;
	color: #21243d;
	opacity: 80%;
}

.linkedin-logo,
.whatsapp-logo,
.email-logo,
.medium-logo,
.github-logo {
	width: 25%;
	height: 25%;
}
.desc-card-skill {
	color: #21243d;
	opacity: 90%;
	padding-top: 5%;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}
.desc-card-skill:hover {
	opacity: 100%;
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	.socmed {
		padding: 4%;
		flex-wrap: wrap;
		align-items: center;
		flex-wrap: wrap;
	}
	.card-contact {
		margin: 2%;
		width: 96px;
		height: 90px;
	}
	.linkedin-logo,
	.whatsapp-logo,
	.email-logo,
	.medium-logo,
	.github-logo {
		width: 30px;
		height: 30px;
	}
	.card-contact a {
		padding-top: 2%;
		font-size: 16px;
		color: #0b1831;
	}
}

.copyright {
	font-size: 15px;
	text-align: center;
	padding-top: 2%;
	padding-bottom: 1%;
	opacity: 0.6;
}
