/*Ini untuk keadaan saat layar berukuran hp*/
@media only screen and (max-width: 576px) {
	/*Pengaturan text jumbotron supaya muncul*/
	.jumbotron {
		display: flex;
	}

	/*Pengaturan slider supaya gk muncul*/
	#carouselExampleIndicators{
		display: none;
	}

	/*Background biar pas link dropdown nampak pas di klik*/
	#navbarDropdown{
	background-color: black;
	opacity: 0.7;
	}

	.nav-link{
	background-color: black;
	opacity: 0.7;
	}

	.nav-link:hover{
	background-color: #c0c0c0;
	}

	#navbarDropdown:hover{
	background-color: #c0c0c0;
	}
}

@media only screen and (min-width: 580px) {
	.jumbotron {
		display: none;
	}

	.nav-link:hover{
	background-color: #c0c0c0; 
	border-radius: 10px;
	}
}

/*Ini css Jumbotron*/
.jumbotron {
	background-image: url(img/geoquake.png);
	background-size: cover;
	text-align: center;
	height: 780px;
	margin-top: -120px;
}

.jumbotron .display-4 {
	margin-top: 200px;
	color: white;
	font-size: 2em;
}

.jumbotron p {
	color: white;
	margin-top: 30px;
}

.jumbotron hr{
	border-color: #fffafa;
	width: 70px;
	border-width: 3px;
}

.jumbotron .btn{
	background-color: #ffa500;
	border: none;
	border-radius: 20px;
}

/*Ini css slider*/
.carousel-item {
	height: 100vh;
}

.carousel-item img {
	margin-top: -120px;
}

.carousel-item .display-4 {
	margin-top: -400px;
}

.carousel-item hr{
	border-color: #fffafa;
	width: 70px;
	border-width: 3px;
}

.carousel-item .btn{
	background-color: #ffa500;
	border: none;
	border-radius: 25px;
}

/*Footer*/
footer {
	font-family: sans-serif;
}

footer p{
	color: #999;
	line-height: 25px;
	text-align: justify;
}

h2,h3 {
	color: #fff;
}

h2{
	font-size: 18px;
}

.footer-top{
	background: #111;
	padding:50px 0;
}

.segment-one h3{
	color: #fff;
	letter-spacing: 3px;
	margin:10px 0;
}

.segment-two h2{
	color: #fff;
	text-transform: uppercase;
}

.segment-two h2:before{
	content: '|';
	color: #c65039;
	padding-right: 10px;
}

.segment-two ul{
	margin:0;
	padding: 0;
	list-style: none;
}

.segment-two ul li{
	border-bottom: 1px solid rgba(255,255,255,0.3);
	line-height: 40px;
}

.segment-two ul li a{
	color: #999;
	text-decoration: none;
}

.segment-three h2{
	color: #fff;
	text-transform: uppercase;
}

.segment-three h2:before{
	content: '|';
	color: #c65039;
	padding-right: 10px;
}

.segment-three a{
	background:#494848;
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 50%;
}

.segment-three a i{
	font-size: 20px;
	color: #fff;
	padding: 10px 12px;
	
}

.segment-four h2{
	color: #fff;
	text-transform: uppercase;
}

.segment-four h2:before{
	content: '|';
	color: #c65039;
	padding-right: 10px;
}

.segmen-four form input[type=submit]{
	background: #c65039;
	border:none;
	padding: 3px 15px;
	margin-left: -5px;
	color: #fff;
	text-transform: uppercase;
}

.footer-bottom-text{
	text-align: center;
	background: #000;
	line-height: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.sm-mb-30{
		margin-bottom: 30px;
	}

	.footer-top{
		padding:50px 0;
	}
}