@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
* {
	font-family: 'Montserrat', sans-serif;
}
body {
	background: #ffffff;
}
.section-padding {
	padding: 100px 0;
}

.hero-container {
	background-image: url("../img/imagebg.png");
	background-size: cover;
	height: 700px;
}

.carousel-item {
	height: 100vh;
	min-height: 300px;
}
.carousel-caption {
	bottom: 220px;
	z-index: 2;
}
.carousel-caption h5 {
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 25px;
}
.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}
.carousel-inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background: rgba(0, 0, 0, 0.7); */
	z-index: 1;
}
.navbar .getstarted {
	background: #106eea;
	margin-left: 30px;
	border-radius: 4px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	padding: .5rem 1rem;
	line-height: 2.3;
}
.navbar-nav a {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
}
.navbar-light .navbar-brand {
	color: #000;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
	color: #000;
}
.navbar-light .navbar-nav .nav-link {
	color: #030284;
	font-weight: bold;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #ffc107;
}
.w-100 {
	height: 100vh;
}
.navbar-toggler {
	padding: 1px 5px;
	font-size: 18px;
	line-height: 0.3;
	background: #fff;
}
.portfolio .card {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}
.team .card {
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}
.services .card-body i {
	font-size: 50px;
}
.team .card-body i {
	font-size: 20px;
}
footer {
	position: relative;
	width: 100%;
	height: auto;
	padding: 50px 100px;
	background: #fff;
}
footer .container {
	width: 100%;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	grid-gap: 20px;
}
footer .container .sec h2 {
	position: relative;
	color: #333;
	font-weight: 600;
	margin-bottom: 15px;
}
footer .container .sec p {
	color: #555;
}
footer .container .sci {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(4,50px);
}
footer .container .sci li {
	list-style: none;
}
footer .container .sci li a {
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #333;
	display: grid;
	align-content: center;
	justify-content: center;
	text-decoration: none;
}
footer .container .sci li a i {
	color: #fff;
	font-size: 20px;
}
footer .container .quicklinks {
	position: relative;
}
footer .container .quicklinks ul li {
	list-style: none;
}
footer .container .quicklinks ul li a {
	color: #555;
	text-decoration: none;
	margin-bottom: 10px;
	display: inline-block;
}
footer .container .contact .info {
	position: relative;
}
footer .container .contact .info li {
	display: grid;
	grid-template-columns: 30px 1fr;
	margin-bottom: 16px;
}
footer .container .contact .info li span {
	color: #555;
	font-size: 20px;
}
footer .container .contact .info li a {
	color: #555;
	text-decoration: none;
}
.copyrightText {
	width: 100%;
	background: #fff;
	padding: 20px 100px 30px;
	text-align: center;
	color: #555;
	border: 1px solid rgba(0,0,0,0.15);
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
	.carousel-caption {
		bottom: 370px;
	}
	.carousel-caption p {
		width: 100%;
	}
	.card {
		margin-bottom: 30px;
	}
	.img-area img {
		width: 100%;
	}
	.hero-container {
		background-position: top;
		height: 500px; /* Mengubah tinggi sesuai kebutuhan pada layar yang lebih kecil */
	}
	footer {
		padding: 40px;
	}
	footer .container {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 20px;
	}
	.copyrightText {
		padding: 20px 40px 30px;
	}
}
@media only screen and (max-width: 767px) {
	.navbar-nav {
		text-align: center;
	}
	.carousel-caption {
		bottom: 125px;
	}
	.carousel-caption h5 {
		font-size: 17px;
	}
	.carousel-caption a {
		padding: 10px 15px;
		font-size: 15px;
	}
	.carousel-caption p {
		width: 100%;
		line-height: 1.6;
		font-size: 12px;
	}
	.about-text {
		padding-top: 50px;
	}
	.card {
		margin-bottom: 30px;
	}
	.hero-container {
		background-position: top;
		height: 700px; /* Mengubah tinggi sesuai kebutuhan pada layar yang lebih kecil */
	}
	footer .container {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(1,1fr);
		grid-gap: 20px;
	}
}