/* elemen utama */

* {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* akhir elemen utama */


/* elemen pembantu */

body {
	background: greenyellow;
	background: url('./img/bg8.png');
	background-size: cover;
	background-repeat: no-repeat;
}

.header {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to right, ghostwhite, dodgerblue, midnightblue);
	padding: 0 25px;
	transition: 0.3s;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 1;
	opacity: 0.96;
}
/* akhir elemen pembantu */


/* elemen logo */

.logo img {
	display: block;
	width: 100px;
	height: 100px;
	margin-top: -6px;
}
/* akhir elemen logo */


/* elemen menu dan hamburger*/

.navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu {
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
	z-index: 1;
	transition: 0.5s;
}

.menu li {
	list-style-type: none;
}

.menu li a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 40px 25px;
	font-size: 18px;
	line-height: 1;
	transition: 0.3s;
}

.menu li a:hover {
	box-shadow: 0 -5px 0px #fff inset,
	500px 0 0 rgba(255, 255, 255, 0.03) inset;
	padding: 35px 25px 45px 25px;
}

.hamburger {
	position: relative;
	width: 30px;
	height: 4px;
	background: white;
	border-radius: 10px;
	cursor: pointer;
	z-index: 2;
	transition: 0.3s;
}

.hamburger:before,
.hamburger:after {
	content: "";
	position: absolute;
	height: 4px;
	right: 0;
	background: white;
	border-radius: 10px;
	transition: 0.3s;
}

.hamburger:before {
	top: -10px; 
	width: 20px;
}

.hamburger:after {
	top: 10px;
	width: 25px;
}

.toggle-menu {
	position: absolute;
	width: 30px;
	height: 100%;
	z-index: 3;
	cursor: pointer;
	opacity: 0;
}

.hamburger,
.toggle-menu {
	display: none;
}

.navigation input:checked ~ .hamburger {
	background: transparent;
}

.navigation input:checked ~ .hamburger:before {
	top: 0;
	transform: rotate(-45deg);
	width: 30px;
}

.navigation input:checked ~ .hamburger:after {
	top: 0;
	transform: rotate(45deg);
	width: 30px;
}

.navigation input:checked ~ .menu {
	right: 0;
	box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
}
/* akhir elemen menu dan hamburger */


/* elemen responsive menu dan hamburger */

@media screen and (max-width: 960px) {
	.hamburger,
	.toggle-menu {
		display: block;
	}
	.header {
		padding: 10px 20px;
	}
	.menu {
		justify-content: start;
		flex-direction: column;
		align-items: center;
		position: fixed;
		top: 0;
		right: -300px;
		background: dodgerblue;
		width: 225px;
		height: 100%;
		padding-top: 65px;
	}
	.menu li {
		width: 100%;
	}
	.menu li a {
		transition: 0.2s all;
		text-decoration: none;
	}
	.menu li a:hover {
		transform: scale(1.08);
	}
	.menu li a,
	.menu li a:hover {
		padding: 30px;
		font-size: 20px;
		box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	}
}
/* akhir elemen responsive menu dan hamburger */


/* emnoer elevator */

section {
	margin: auto;
	display: flex;
	margin-bottom: 30px;
	margin-top: 0px;
}
.kolom {
	margin-top: 45px;
	margin-bottom: 30px;
	margin-left: 50px;
}
.kolom .deskripsi {
	font-size: 50px;
	font-weight: 700;
	font-family: sans-serif;
	color: black;
}

.emnoer .kolom h1 {
	font-family: sans-serif;	
	font-weight: 700;
	font-size: 36.4px;
	margin-bottom: 20px;
	color: darkblue;
	width: auto;
	line-height: 20px;
}

h2 {
	font-family: monospace;	
	font-weight: 100;
	font-size: 17px;
	margin-bottom: 20px;
	color: darkgreen;
	width: auto;
	line-height: 5px;
	font-weight: bold;
}

.emnoer .kolom p {
	width: 87.5%;
	font-size: 25px;
	line-height: 30px;
	margin-top: 40px;
	color: black;
}

.emnoer .kolom ol {
	font-weight: normal;
	font-size: 25px;
	color: black;
	line-height: 30px;
	margin-left: 25px;
}

.emnoer img {
	width: 900px;
	height: 445px;
	margin-right: 7%;
	transition: 0.2s all;
	margin-top: 50px;
}
/* akhir emnoer elevator */

/* alamat */

.alamat .container .deskripsi1 {
	font-size: 20px;
	font-weight: bold;
	font-family: sans-serif;
	color: steelblue;
	margin-top: 30px;
	text-align: center;
}

.alamat .container .kolom-alamat h3 {
	font-family: sans-serif;
	font-weight: normal;
	font-size: 15px;
	color: darkslategrey;
	line-height: 15px;
	text-align: center;
}
/* akhir alamat */


/* garis horizontal */

.line-horizontal .container hr {
	margin-top: 10px;
	margin-left: 25px;
	margin-right: 25px;
}
/* akhir garis horizontal */


/* social media */

.social-media {
	margin-left: 15px;
	margin-top: 10px;
}

.social-media .container .sosmed-link {
	display: flex;
	justify-content: center;
	padding-bottom: 40px;
	padding-right: 20px;
	padding-left: 20px;
}

.social-media .container .sosmed-link .sosiaLink {
	width: 2.50em;
	height: 2.50em;
	margin-right: 1.25em;
	border-radius: 9999em;
	display: flex;
	justify-content: center;
	align-items: center;
	color: rebeccapurple;
	text-decoration: inherit;
	border-bottom: 1px solid;
	border-right: solid;
}

.social-media .container .sosmed-link .fill-current {
	fill: currentColor;
}

.social-media .container .sosmed-link .sosiaLink:hover {
	color: white;
	background-color: cadetblue;
}
/* akhir social media */


/* footer */

footer {
	margin-top: -30px;
}

footer b {
	color: steelblue;
}
/* akhir footer */


/* elemen responsive */

@media screen and (max-width: 960px) {
	.emnoer {
		width: auto;
		margin-bottom: 15px;
	}
	.emnoer .kolom {
		width: auto;
		margin-left: 25px;
		margin-right: 5px;
	}
	.emnoer .kolom .deskripsi {
		width: auto;
	} 
	.emnoer .kolom h1 {
		width: auto;
		margin-right: 10px;
	}
	.emnoer .kolom h2 {
		width: auto;
		margin-right: 10px;
	}
	.emnoer .kolom p {
		width: auto;
		margin-right: 10px;
		font-size: 21px;
	}
	.emnoer .kolom ol {
		width: auto;
		margin-right: 10px;
		font-size: 21px;
	}
	.emnoer .kolom ol li {
		width: auto;
		margin-right: 10px;
	}
	.emnoer img {
		float: none;
		width: 300%;
		height: 400px;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.alamat .container .deskripsi1 {
		margin-top: 5px;
	}
	.alamat .container .kolom-alamat h3 {
		line-height: 17.5px;
	}
}
/* akhir elemen responsive */


/* elemen responsive menu dan hamburger */

@media screen and (max-width: 640px) {
	.hamburger,
	.toggle-menu {
		display: block;
	}
	.header {
		padding: 10px 20px;
	}
	.menu {
		justify-content: start;
		flex-direction: column;
		align-items: center;
		position: fixed;
		top: 0;
		right: -300px;
		background: dodgerblue;
		width: 175px;
		height: 100%;
		padding-top: 65px;
	}
	.menu li {
		width: 100%;
	}
	.menu li a {
		transition: 0.2s all;
		text-decoration: none;
	}
	.menu li a:hover {
		transform: scale(1.08);
	}
	.menu li a,
	.menu li a:hover {
		padding: 30px;
		font-size: 17px;
		box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
	}
}
/* akhir elemen responsive menu dan hamburger */


/* elemen responsive */

@media screen and (max-width: 640px) {
	.emnoer {
		width: auto;
		margin-bottom: 15px;
	}
	.emnoer .kolom {
		width: auto;
		margin-left: 25px;
		margin-right: 0px;
	}
	.emnoer .kolom .deskripsi {
		width: auto;
	} 
	.emnoer .kolom h1 {
		width: auto;
		margin-right: 10px;
	}
	.emnoer .kolom h2 {
		width: auto;
		margin-right: 10px;
	}
	.emnoer .kolom p {
		width: auto;
		margin-right: 10px;
		font-size: 21px;
	}
	.emnoer .kolom ol {
		width: auto;
		margin-right: 10px;
		font-size: 21px;
	}
	.emnoer .kolom ol li {
		width: auto;
		margin-right: 10px;
	}
	.emnoer img {
		display: flex;
		margin-top: -50px;
		margin-left: -500px;

		
		
		
	}
	.alamat .container .deskripsi1 {
		margin-top: 5px;
	}
	.alamat .container .kolom-alamat h3 {
		line-height: 17.5px;
	}
}
/* akhir elemen responsive */