/* Loading screen */
body, html {
    height: 100%;
    margin: 0;
}
  
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
  
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #17a2b8;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1.8s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Isi */
*{
    font-family: Arial;
}

.font{
    font-family: "Protest Riot", sans-serif;
    font-weight: 500;
    font-style: normal;
} 

body{
    background: #EFEFEF;
}

h2{
    font-weight: bold;
}

.section-padding{
    padding: 100px 0;
}

.carousel-caption{
    z-index: 2;
}

.carousel-caption h5{
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 20px;
}

.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-nav a{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-dark .navbar-brand{
    color: #FFFFFF;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover{
    color: #FFFFFF;
}

.navbar-dark .navbar-nav .navbar-link{
    color: #FFFFFF;
}

.services .card-body i{
    font-size: 50px;
}

.team .card-body i{
    font-size: 20px;
}

.feature .card{
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}

.team .card{
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.4);
}


form{
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

/* Responsive */

@media only screen and (min-width: 768px) and (max-width: 991px){

    .carousel-caption p{
        width: 100%;
    }

    .card{
        margin-bottom: 30px;
    }

    .img-area img{
        width: 100%;
    }
}

@media only screen and (max-width: 767px){
    
    .navbar-nav{
        text-align: center;
    }
    .carousel-caption h5{
        font-size: 17px;
    }

    .carousel-caption a{
        padding: 5px 8px;
        font-size: 13px;
    }

    .carousel-caption p{
        width: 100%;
        line-height: 1.6;
        font-size: 12px;
    }

    .about-text{
        padding-top: 50px;
    }

    .card{
        margin-bottom: 30px;
    }

}

/* Product - Shop*/
.menu{
    width: 100%;
    background: #EFEFEF;
    font-family: 'Roboto', sans-serif;
}

.heading3{
    text-align: center;
    font-size: 40px;
    color: black;
    font-weight: bold;
    border-bottom: 3px solid;
}

.menu .card{
    background: white;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 22px;
}

.menu h3{
    text-align: center;
    margin-top: 10px;
    font-size: 22px;
}

  .menu p{
    font-size: 19px;
    padding-top: 10px;
}

.menu p span{
    float: right;
    cursor: pointer;
}

.menu img{
    border-radius: 5px;
}
  
strike{
    color: rgba(0, 0, 0, 0.5);
}

.dropdown-item:hover{
    background: rgba(128, 128, 128, 0.7);
}

.dropdown-item:active{
    background: #17a2b8;
}