* {
    font-family: 'Inter', sans-serif;
    padding: 0;
    margin: 0;
}
.navbar {
    background: white;
    transition: all ease-in-out 0.5s;
    padding-top: 16px;
    padding-bottom: 16px;
    /* min-height: 80px; */
}
.navbar.scrolled {
    background: rgb(0, 133, 141, 0.95);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.navbar ul li .active {
    color: black;
    border-bottom: 3px solid black;
}

.navbar ul li a:hover { 
    border-bottom: 3px solid black;
}
.navbar.scrolled ul li a:hover {
    color: white;
    border-bottom: 3px solid white;
}
.navbar.scrolled .navbar-brand,
.navbar.scrolled ul li a {
    color: rgba(255, 255, 255, 0.5);
}
.navbar.scrolled ul li .active {
    color:white;
    border-bottom: 3px solid white;
}
.navbar ul li {
    margin-left: 10px;
}
.navbar .subtitle {
    font-size: 15px;
    font-weight: 400;
}
.navbar.scrolled .title {
    color: white;
}
.navbar.scrolled .subtitle {
    color: white;
    font-size: 15px;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .navbar {
        background: rgb(0, 133, 141, 0.95);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    }
    .navbar .navbar-brand,
    .navbar ul li a {
        color: #fff !important;
    }
    .navbar ul li .active {
        color: white;
        border-bottom: 3px solid white;
    }
    
    .navbar ul li a:hover { 
        border-bottom: 3px solid white;
    }
    .navbar-toggler,
    .navbar-toggler:focus {
        border-color: #fff !important;
    }
    .navbar .subtitle {
        font-size: 13px;
    }
    .navbar.scrolled .subtitle {
        font-size: 13px;
    }
}

@media only screen and (max-width: 576px) {
    .navbar {
        padding: 5px 0px;
    }
    .navbar.scrolled {
        padding: 8px 0px;
    }
    .navbar .navbar-brand img {
        width: 2rem;
        margin: 0;
        padding: 0;
    }
    .navbar .title {
        font-size: 0.7rem;
        margin: 0;
        padding: 0;
    }
    .navbar .subtitle {
        font-size: 0.5rem;
        margin: 0;
        padding: 0;
    }
    .navbar.scrolled .subtitle {
        font-size: 0.5rem;
        margin: 0;
        padding: 0;
    }
    .navbar .navbar-toggler {
        width: 30px;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    .navbar .navbar-toggler-icon {
        font-size: 15px;
    }
    .navbar ul li a {
        font-size: 13px;
    }
}
/* Landing Page Navbar */
/* .navbar {
    height: 113px;
    left: 0px;
    top: 0px;
    background: #00858D;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding-left: 5rem;
    overflow: hidden;
}

.navbar .navbar-collapse {
    padding-right: 174px;
}

.navbar ul li {
    margin: 45px;
    font-size: 20px;
}

.navbar ul li a {
    padding: 10px 30px;
    font-size: 20sp;
    font-weight: 600;
    transition: all;
    transition-duration: 300ms;
}
*/



/*
.nav {
    background: #00858D;
}

.navbar .btn-login {
    background-color: #09484B;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    font-size: 20px;
    color: white;
    height: 100%;
    width: 10rem;
} */
/* End Landing Page Navbar */



/* Navbar */
/* .top-nav {
    background: #09484B; 
    width: 100vw; 
    padding: 1rem 5rem; 
    z-index: -2;
}

.top-nav .dropdown .btn p {
    font-size: 30px; 
    font-weight: 600; 
    color: #FFFFFF;
} */
/* End Navbar */



/* Admin Sidebar */
.row .side-bar {
    background: #00858D; 
    width: 20rem; 
    z-index: 1; 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100vh;
}

.row .nav .col .row .hr {
    background: #A2C9CB; 
    height:2px; 
    width: 100%;
}

.row .nav .col .row .col-2 i {
    color: #A2C9CB;
}

.row .nav .col .row .active i {
    color: #FFFFFF;
}

.row .nav .col .row .col-10 a {
    text-decoration: none; 
    color: #A2C9CB; 
    font-size: 15px;  
    font-weight: 400;
}

.row .nav .col .row .active a {
    text-decoration: none; 
    color: #FFFFFF; 
    font-size: 15px;  
    font-weight: 700;
}

.row .nav .col .row .label {
    font-size: 12px; 
    font-weight: 700; 
    color: #A2C9CB;
}
/* End Admin Sidebar */






/* Home Page */

/* Carousel */
.carousel .carousel-inner .carousel-item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.carousel .carousel-inner .carousel-item .carousel-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    animation: zoom-in 60s ease infinite;
}
@keyframes zoom-in {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

.carousel .carousel-inner .carousel-item img {
    width: 100%;
}

.carousel .carousel-inner .carousel-item .carousel-caption .title {
    text-align: start;
    position: absolute;
    left: 0;
    bottom: 40vh;
}
.carousel .carousel-inner .carousel-item .carousel-caption h1{
    font-family: 'Balsamiq Sans', cursive;
    /* font-size: 6rem; */
    font-size: 60px; 
    font-weight: 900;
    text-align: left;
    margin-bottom: -10px;
    /* background: rgba(0, 0, 0, 0.3); */
    /* border-width: 4px 1px; */
    /* border-style: solid; */
    /* border-color: #FFFFFF; */
    /* box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25); */
    /* border-radius: 10px; */
    /* padding: 0.5rem 2rem; */
}

.carousel .carousel-inner .carousel-item .carousel-caption h5{
    font-family: 'Balsamiq Sans', cursive;
    /* font-size: 3.1rem; */
    font-size: 30px;
    font-weight: 600;
}
.carousel .carousel-inner .carousel-item .carousel-caption h2{
    font-family: 'Balsamiq Sans', cursive;
    /* font-size: 4rem; */
    font-size: 30px;
    font-weight: 700;
}
.carousel .carousel-inner .carousel-item .carousel-caption p {
    font-size: 1.2em;
    margin-bottom: 3em;
}
.carousel .carousel-inner .carousel-item .carousel-caption .bottom-caption {
    text-align: start;
    white-space: nowrap;
    position: absolute;
    right: -20%;
    bottom: 4rem;
}
.carousel .carousel-inner .carousel-item .carousel-caption a {
    /* font-size: 1rem; */
    font-size: 15px;
    font-weight: 700;
    padding: 1rem 2rem;
    margin-bottom: 6em;
}
.carousel .carousel-inner .carousel-item img {
    height: 100vh;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .carousel {
        margin-top: 90px;
        height: 100vh -90px;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption {
        margin-bottom: 28px;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption .title {
        text-align: center;
        white-space: nowrap; 
        left: 50%;
        bottom: 30vh;
        transform: translateX(-50%);
    }
    .carousel .carousel-inner .carousel-item .carousel-caption .btn {
        position: absolute;
        left: 50%;
        bottom: 10%;
        transform: translateX(-50%);
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h1 {
        font-size: 4rem !important;
        font-weight: 800;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h5 {
        font-size: 2rem !important;
        font-weight: 800;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h2{
        font-size: 1.8rem;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption .bottom-caption {
        text-align: start;
        white-space: nowrap;
        position:relative;
        right: 0;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption p {
        font-size: 16px !important;
        margin-bottom: 1.4em !important;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption a {
        margin-bottom: 22px !important;
    }
    .carousel .carousel-inner .carousel-item {
        height: calc(100vh - 90px) !important;
    }
    .carousel .carousel-inner .carousel-item img {
        height: calc(100vh - 90px) !important;
        width: 100%;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption a {
        padding: 8px 24px !important;
    }
}
@media only screen and (max-width: 576px) {
    .carousel {
        margin-top: 60px;
        height: 100vh - 60px;
    }
    .carousel .carousel-inner .carousel-item {
        height: calc(100vh - 60px) !important;
    }
    .carousel .carousel-inner .carousel-item img {
        height: calc(100vh - 60px) !important;
        width: 100%;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h1 {
        font-size: 2rem !important;
        margin-bottom: 5px;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h5 {
        font-size: 1rem !important;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h2{
        font-size: 1.2rem !important;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption .bottom-caption {
        text-align: center;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption .btn {
        position: absolute;
        left: 50%;
        bottom: 1%;
        transform: translateX(-50%);
    }
}
/*Content */
.illustration {
    margin: 30px 0;
}

@media only screen and (max-width: 768px) {
    .illustration h3 {
        text-align: center;
        font-size: 18px;
    }
    .illustration p {
        text-align: start;
        font-size: 15px;
    }
    .illustration .waste-type {
        padding: 10px 15px;
    }
}

.container .content {
    margin: 80px; margin-bottom: 80px;
}
.container .content .heading {
    font-size: 30px;
    font-weight: 700;
}

.container .content .text p {
    font-size: 25px; 
    font-weight: 400;
    text-align: justify;
}

.container .content .img img {
    width: 55vw;
}

@media only screen and (max-width: 768px) {
    .container .content .heading {
        font-size: 20px;
    }
    /* .carousel .carousel-inner .carousel-item .carousel-caption h1 {
        font-size: 2rem !important;
        margin-bottom: 5px;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h5 {
        font-size: 1rem !important;
    }
    .carousel .carousel-inner .carousel-item .carousel-caption h2{
        font-size: 1.5rem;
    } */

}

@media only screen and (max-width: 576px) {
    .container .content {
        margin: 30px 0;
    }
    .container .content .heading {
        font-size: 18px;
        text-align: center;
    }
}

/* News */
.news {
    margin-top: 80px;
}

.news .container .row img {
    object-fit: cover;
}

@media only screen and (max-width: 765px) {
    .news {
        margin-top: 50px;
    }
}

/*
.news .container .row .col-7 .row .col .tagline {
    font-size: 20px; 
    font-weight: 600;
}

.news .container .row .col-7 .row .col .date {
    font-size: 20px; 
    font-weight: 600;
    color: #8A8A8A;
}

.news .container .row .col-7 .row .col .title {
    font-size: 29px; 
    font-weight: 700;
}

.news .container .row .col-7 .row .col .detail {
    font-size: 25px; 
    font-weight: 400;
} */

/* End Home Page */



/* Laporan Page */
.report {
    margin-top: 10rem;
}
.container .btn-lap {
    background: #00858D; color: #FFFFFF; font-size: 25px; font-weight: 600;
}

#DiagramKomposisiSampah {
    width: 50vw;
}

@media only screen and (max-width: 768px) {
    #DiagramKomposisiSampah {
        width: 80vw;
    }
}

@media only screen and (max-width: 576px) {
    .report {
        margin-top: 6rem;
    }
    .container .btn-lap {
        font-size: 15px; 
    }
}

/* End Laporan Page */


/* Kontak Page */
.contact {
    margin-top: 10rem;
}
.container .row .col .head {
    font-size: 30px; 
    font-weight: 500;
}

.container .row .col .body {
    font-size: 25px; 
    font-weight: 500;
}

.container .row .col .row .col button {
    font-size: 20px;
    font-weight: 700;
}

@media only screen and (max-width: 576px) {
    .contact {
        margin-top: 6rem;
    }
}

/* End Kontak Page */



/* Login Page */
/* .container p {
    font-size: 30px; 
    font-weight: 700;
} */

.container .row .col-8 .d-flex button {
    font-size: 25px; 
    font-weight: 700;
}

.container .row .col-8 p {
    font-size: 25px; 
    font-weight: 400; 
    margin-top: 5rem;
}

.container .row .col-8 a {
    color: #00858D; 
    text-decoration: none;
}
/* End Login Page */



/* Daftar Page */
/* .container p {
    font-size: 30px; 
    font-weight: 700;
} */

.container .row .col .row p {
    font-size: 30px; 
    font-weight: 500;   
}

.container .row .col .row .nb {
    font-size: 20px; 
    font-weight: 400; 
    font-style: italic;
}

.container .row .col .nb {
    font-size: 20px; 
    font-weight: 400; 
    font-style: italic;
}

.container .sub-title {
    font-size: 30px; 
    font-weight: 500;
}

.container button {
    font-size: 25px; 
    font-weight: 700;
}
/* End Daftar Page */



/* Admin Modul Berita Page */
.container button {
    font-size: 20px; 
    font-weight: 500;
}

.container button i {
    color: #FFFFFF;
}

.container table tbody tr td i {
    padding: 0.5rem; 
    margin: 0.2rem; 
    border-radius: 0.3rem; 
    color: #FFFFFF;
}

.container table tbody tr td .fa-pen-to-square {
    background: #4F67E3; 
}

.container table tbody tr td .fa-trash {
    background: #FE3822; 
}

.container table tbody tr td .fa-download {
    background: #00CF8C; 
}
/* End Admin Modul Berita Page */



/* Admin Modul Kelurahan */
.container a {
    font-size: 20px; 
    font-weight: 500;
}

.container button i {
    color: #FFFFFF;
}
/* End Admin Modul Kelurahan */



/* Admin Tambah Modul Kelurahan */
.container .row .col button {
    font-size: 20px; 
    font-weight: 500; 
    color: #FFFFFF; 
}

.container .row .col .btn-btl {
    background: #FE3822;
}

.container .row .col .btn-smp {
    background: #00858D;
}
/* End Admin Tambah Modul Kelurahan */



/* Landing Page Footer */
.footer {
    /* background: #00858D;  */
    background: #09484B; 
    width: 100%; 
    min-height: 296px;
    /* padding: 7rem 0; */
}

.footer .container .row .col-2 .row a {
    text-decoration: none; color:#FFFFFF; font-size: 20px; font-weight: 600;
}

.copyright {
    background: #09484B; 
    width: 100vw; 
    padding: 1.5rem 5rem;
}

.copyright p {
    font-size: 20px; 
    font-weight: 400; 
    color: #FFFFFF;
}

.footer .brand {
    margin-top: 60px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.footer .description {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.footer .section {
    margin: 40px 10px;
    padding: 24px 40px 0 40px;
    border-left: 1px solid #eee;
    min-height: 216px;
}
.footer .section ul {
    margin-bottom: 0;
}
.footer .section ul li {
    list-style: none;
    margin-bottom: 24px;
}
.footer .section ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}
.footer .section .section-title {
    color: #fff;
    margin-bottom: 22px;
}
.footer .footer-end {
    margin-top: 22px;
    background: #063234; 
    width: 100%;
    padding: 14px;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .footer .section {
        border: none;
        margin: 20px 0;
        padding: 0;
    }
    .footer .section ul {
        padding: 0;
    }
}

@media only screen and (max-width: 576px) {
    .footer .brand {
        margin-top: 20px;
        font-size: 20px;
        margin-bottom: 0;
    }
    .footer .section {
        margin: 50px 0 0 0;
    }
    .footer .section ul li{
        margin: 10px 0;
    }
    .footer .footer-end {
        margin-top: 0;
        padding: 10px;
        font-size: 12px;
    }
}
/* End Landing Page Footer */



/* Footer */
.foot {
    background: #09484B; 
    width: 100vw; 
    padding: 1.5rem 5rem; 
    z-index: 2; 
    position: absolute; 
    bottom: 0;
}

.foot p {
    font-size: 20px; 
    font-weight: 400; 
    color: #FFFFFF;
}
/* End Footer */

/** Posts section **/
.news {
    background: #F7F7F7;
}
.post {
    margin-bottom: 2em;
}
.post .post-image {
    min-height: 150px;
}
.post .post-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}
.post .post-date {
    font-size: 12px;
    font-weight: normal;
    color: rgba(0,0,0,0.6);
    margin-bottom: 6px;
}
.post .post-content {
    font-size: 12px;
    font-weight: normal;
    text-align: justify;
    margin-bottom: 6px;
}
.post.featured .post-title {
    margin-top: 18px;
    font-size: 26px;
}
.post.featured .post-date {
    margin-bottom: 12px;
}
.post.featured .post-content {
    font-size: 14px;
}
.post .btn-readmore {
    font-size: 12px;
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
    .post {
        margin-bottom: 2.8em;
    }
    .post .post-image {
        margin-bottom: 12px;
    }
}
.waste-type {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    text-align: center;
    display: inline-block;
    padding: 32px;
    margin-right: 16px;
    transition: all ease-in-out 0.5s;
}
.waste-type:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}