body {
    font-family: 'Roboto Condensed', sans-serif;
}
.navbar {
    height: 100px;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    z-index: 0;
    padding-left: 10px;
    transition: transform .2s;
}

.navbar-light .navbar-nav .nav-link:hover {
    transform: scale(1.1);
}

.main-pages {
    margin-top: 120px;
}

#carousel {
    height: 650px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.carousel-item img {
    height: 650px;
    width: 100%;
}

.navbar-collapse.show{
    background-color: #fff;
}

#berita {
    margin-top: 2rem;
}

.title {
    font-weight: 700;
}

.grid-container {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#footer {
  background: linear-gradient(360deg, #2e7871 0%, rgba(46, 120, 113, 0) 82.5%);
  padding-bottom: 50px;
  padding-top: 20px;
  background-size: cover;
}

#footer h4 {
  font-weight: 900;
  font-size: 24px;
  line-height: 29px;
}

.contact ul > li {
  display: inline-block;
  padding: 10px;
}

.contact p {
  padding: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

.contact i {
  padding: 20px;
}

.loc ul {
  display: table;
  margin: 0 auto;
}

.loc p {
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

@media only screen and (max-width: 550px) { 
    #carousel {
        width: 100%;
        height: 300px;
    }
    .carousel-item img {
        width: 100%;
        height: 300px;
    }
    .grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 25px;
    }

    .card {
        margin-left: auto;
        margin-right: auto;
    }
    
}