* {
	padding:0;
	margin:0;
	font-family: sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}
.medsos {
	padding:5px 0;
	background-color: #bb1010;
}
.medsos ul li {
	display: inline-block;
	color: #fff;
	margin-right: 10px;
}

.container {
	width:80%;
	margin:0 auto;
}

.containerr {
	display: flex;
	justify-content: center;
	align-items: center ;
}
.container:after {
	content:'';
	display: block;
	clear: both;
}

.boxx {
	display: flex;
    width: 200px;
    height: 150px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    margin-right: 10px; /* Memberikan margin antara kotak */
    padding: 10px; /* Memberikan ruang di dalam kotak */
}
header h1 {
	float: left;
	padding:15px 0;
	color: #bb1010;
}
header ul {
	float: right;
}
header ul li {
	display: inline-block;
	position: relative;
}
header ul li a {
	padding:25px 20px;
	display: inline-block;

	transition: all 0.3s;
}
header ul li a:hover {
	background-color: #bb1010;
	color: #fff;
}
.active {
	background-color: #bb1010;
	color: #fff;
}

.dropdown_menu {
	display: none;
}

header ul li:hover .dropdown_menu {
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: white;
} 

header ul li:hover .dropdown_menu ul {
	display: block;
	margin: 10px;
}

header ul li:hover .dropdown_menu ul li {
	width: 150px;
	padding: 10px;
}
.banner {
	height: 40vh;
	background-image: url('../img/banner.png');
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner h2 {
	color: #fff;
	background-color: #EB4747;
	z-index: 1;
	padding: 20px 25px;
	border:3px solid #fff;
}
section {
	padding:50px 0;
}
section h3 {
	text-align: center;
	padding:20px 0;
	color: #080808;
	margin-bottom: 25px;
}
.aboutt,
.service {
	padding-bottom: 100	px;
}
.aboutt p {
	color: #666;
	word-spacing: 2px;
	line-height: 25px;
	margin-bottom: 20px;
	text-align: justify;
}
.service {
	background-color: #f9f9f9;
}
.box {
	color: #0c0a0a;
}
.box:after {
	content: '';
	display: block;
	clear: both;
}
.box .col-4 {
	width:25%;
	padding:20px;
	box-sizing: border-box;
	text-align: center;
	float: left;
}
.icon {
	width:70px;
	height:70px;
	border:1px solid;
	border-radius: 50%;
	text-align: center;
	line-height: 70px;
	font-size: 20px;
	margin:0 auto;
}
.box .col-4 h4 {
	margin:20px 0;
}

ul ,li {
	list-style-type: none;
}

footer {
	background-color: rgb(34, 34, 34);
	color: #fff;
}

.footer_info {
	width: 90%;
	margin: 0 auto;
	display: flex;
	padding: 50px 0;
}
.footer_info .footer_width {
	padding: 0 15px;
}

.footer_info h2 {
	margin-bottom: 20px;
}

.about , .contact {
	width: 40%;
}

.link {
	width: 20%;
}

.social-media {
	margin-top: 30px;
}

.social-media{
	display: flex;
}

.social-media ul li  {
	display: inline-block;
	margin-right: 50px;
	width: 50px;
	height: 50px;
	padding-top: 12px;
	background-color: transparent;
	text-align: center;
}

.social-media ul li a:hover {
	background-color: #fff;
	color: #000;
}

.link ul li a {
	display: block;
	margin-bottom: 15px;
	font-size: 18px;
}

.link ul li a:hover {
	color: #000;
} 

.link ul li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.contact ul li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact ul li span {
	margin-right: 15px;
}

.copy-right {
	padding: 15px 0;
	text-align: center;
	background-color: rgb(72, 72, 72);
}

.bg-loader {
	background-color: #eee;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bg-loader .loader {
	width:100px;
	height: 100px;
	border:3px solid #fff;
	border-radius: 50%;
	border-top-color: #148F77;
	border-right-color: #148F77;
	border-bottom-color: #148F77;
	animation: puterin .8s linear infinite;
}
.label {
	background-color: #bb1010;
	color: #fff;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px; /* Adjust the gap as needed */
    margin-top: 20px;
}

.grid-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


@keyframes puterin {
	100% {
		transform: rotate(360deg);
	}
}
@media screen and (max-width: 768px){
	.container {
		width:90%;
	}
	header h1 {
		text-align: center;
		float: none;
	}
	header ul {
		text-align: center;
		float: none;
	}
	.box .col-4 {
		width:100%;
		float: none;
		margin-bottom: 20px;
	}
}
@media screen and (max-width:992px){
	.about, .contact {
		width: 35%;
	}

	.link {
		width: 30%;
	}
}

@media screen and (max-width:767px) {
	.about , .contact , .link {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer_info{
		flex-direction: column;
	}
}