* {
	box-sizing: border-box;
}
@font-face {
	font-family: poppins;
	src: ('../font/Poppins-Light.ttf');
}
html{
	scroll-behavior: smooth;
	transition: 6s scroll-behavior ease;
	--theme : #3ebeb5;
}
/* theme */
img.object-fit {
	object-fit: cover;
	object-position: top;
	width: 100%;
	height: 100%;
}
.bg-glass {
	background-color: #ffffff99;
	backdrop-filter: blur(10px);
}
.btn {
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	transition: 0.4s ease;
}
.btn-one {
	background-color: rgba(255,255,255,0.2);
	color: #fff;
}
.btn-one:hover {
	background: #fff;
	color: #3ebeb5
}
.btn-two {
	background-color: #3ebeb5;
	color: #fff;
}
.btn-two:hover {
	background-color: #108a9a;
	color: #fff;
}
/* end theme */
#header {
	position: fixed;
	width: 100%;
	z-index: 999;
}
.navbar-nav .nav-link.active {
	color: #108a9a !important;
}
.border-theme {
	border-color: var(--theme) !important;
}


#Beranda {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 100px 0;
	background-image: url('../img/code2.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;  
	background-attachment: fixed;
}

#Beranda .text {
	color: #fff;
	width: 90%;
	max-width: 400px;
	text-align: justify;
}
#Beranda .text h1 {
	font-size: 45px;
	font-weight: normal;
}
#Beranda .avatar {
	display: inluine-block;
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 40% 40% 50% 50%;
	background: #ffffff10;
	backdrop-filter: blur(5px);
	transform: translate(0, 100px);
	text-align: center;
	transition: all 1s ease-in-out ;
}
#Beranda .avatar:hover {
/*	background: #4acfbf;*/
/*	background: #ffffff90;*/
	box-shadow: 0 1rem 3rem #212529;
}
#Beranda .me {
	width: 60%;
/*	border-radius: 0% 0% 100% 100%;*/
	transform: translate(0px, 150px);
	transition: all 1s ease-in-out ;
/*	filter: saturate(70%);*/
}
#Tentang {
	padding: 80px 0;
}
#Tentang .card .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	font-size: 40px;
	margin: 0 auto;
	background: linear-gradient(115deg, #71fdd8, #0e8798) ;
	color: #fff;
	border-radius: 10px;
}
#Tentang .card {
	transition: all 0.7s ease;
}
#Tentang .card:hover {
	transform: translateY(-15px);
	border-color: var(--theme);
	box-shadow: 0 .5rem 1rem #21252915;
}
#Kemampuan {
	background-image: url(../img/code1.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #444;
	background-blend-mode: multiply;
	color: #fff;
	padding: 80px 0;
}
#Karya {
	padding: 80px 0;
	background-color: #fafafa;
}
#Karya [class*='col-'] {
	padding: 15px;
}
#Karya .card {
	border-radius: 0 0 20px 20px;
	transition: .4s all ease;
}
#Karya .card:hover {
	transform: translateY(-15px);
	border-color: var(--theme);
	box-shadow: 0 .5rem 1rem #21252925;
}
#Karya .card .title {
	color: #6266eb;
}

#Kontak {
	padding: 80px 0;
	background-image: url(../img/code2.jpg);
	background-color: #6266eb;
	background-size: cover;
	background-attachment: fixed;
	background-blend-mode: multiply;
	color: #fff;
}
#Kontak .contact-info {
	margin: 10px 0;
	letter-spacing: 3px;
}
#Kontak hr {
	border: none;
	height: 1px;
	background-color: #fff;
}
#Kontak .social-icon {
	width: 40px; 
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center; 
	color: #fff;
	font-size: 20px; text-decoration: none;
	border-radius: 50%;
	border: 1px solid;
	margin: 0 5px; 
	background-color: #ffffff10;
	backdrop-filter: blur(50px);
}
#Kontak .copyright a {
	color: #fff;
	text-decoration: none;
}

@media(max-width: 762px) {
	#Beranda{
		height: 1000px;
	}
	#Beranda .avatar {
		transform: translate(0px);
	}
	#Beranda .me {
		transform: translate(0px);
	}
	#Beranda .text {
		transform: translate(0px, 90px);
	}
}