:root{
    --main-font : "Questrial", Sans-serif;
    --main-color : 'yellow';
    --secondary-font-color : #AAAAAA;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body{
    font-family: var(--main-font);
    background-color: var(--main-color);
}

.header{
    min-height: 5vh;
    max-height: auto;
    background-color: black;
    color: white;
    
}

main{
    background-color: white;
    min-height: 70vh;
    max-height: auto;
}

.secondary-font-color{
    color: var(--secondary-font-color);
}

/* Swiper */



swiper-container {
    width: 100%;
    height: 80vh;
   
  }

  swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center center;
}

/* Content Banner */

.bg-image-contact{
    background: url('../frontend/contact/contact-banner.png');
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    background-size: cover;
}

.location-shadow:hover{
    box-shadow: 2px 2px 10px #8a8282;
    opacity: 1;
    transition: 1s ease-in-out;
}

/* Video Banner */
.video-bg{
    
    background: url('../frontend/videobg/movies-banner.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh;
    background-size: cover;
}

.video-btn{
    color: #ffffff;
    border: none;
    background-color: transparent;
  
}

/* Home */
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

.animated:hover{
    
   
    animation: pulse 1s infinite;
}

.home-btn-about-us{
    background-color: #FFDD00;
    border: none;
    border-radius: 0px;
    padding: 1rem 1.5rem;
    margin: 0 5px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    letter-spacing: 1px;
    color: white;
}

.mission-vision{
    background-color: #FFDD00;
}

.active{
    color: #FFDD00 !important;
}

/* About */

.bg-image-about{
    background: url('../frontend/about/about.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    background-size: cover;
}

/* Headups */

.bg-image-headups{
    background: url('../frontend/headups/headups.png');
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    background-size: cover;
    
}


/* Portfolio */
.bg-image-portfolio{
    background: url('../frontend/portfolio/portfolio.png');
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    background-size: cover;
    
   
}
.portfolio-button{
    background-color: #FFDD00;
    border: none;
    border-radius: 0px;
    padding: 6px 1.5rem;
    margin: 0 5px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    letter-spacing: 1px;
    color: white;
}
.loadmore{
    background-color: #FFDD00;
    border: none;
    border-radius: 0px;
    padding: 6px 5rem;
    margin: 0 5px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    letter-spacing: 0px;
    color: white;
}

.card-image-portfolio{
    cursor: pointer;
}
.card-image-portfolio:hover{
    opacity: 0.7;
    font-size: 10rem;
    
}

/* nav */

.hi{
    color: red;
}

.my-active{
    color: #FFDD00;
}
.my-nav-bar li a:hover{
    color: #FFDD00;
    transition-duration: 0.8s ease-in;
}




/* Articles */
.bg-image-articles{
    background: url('../frontend/articles/articleBanner.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    background-size: cover;
}

/* Service */
.service-title, .banner-service-title{
    font-size: 52px;
    
}
.service-post-title{
    font-size: 19px;
}
.service-post-content{
    font-size: 16px;
}

.bg-image-service{
    background: url('../frontend/service/service.png');
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    background-size: cover;
}

.article-button{
    background-color: #FFDD00;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.hr-article {
    border: none;
    border-top: 6px dotted #FFDD00;
    color: #fff;
    font-weight: bold;
    background-color: #fff;
    height: 1px;
    width: 100%;
}

.article-details-list::marker{
    color: #FFDD00;
}
/* Footer */
.footer{
    background-color: black;
    min-height: 10vh;
    max-height: auto;
    color: white;
    font-weight: 500;
}

.list-group li{
    list-style: none;
}
.footer h5{
    color: #FFDD00;
}

.list-group li a{
    text-decoration: none;
    color: white;
}



@media screen and (min-width: 750px) {
    .footer-logo{
        width: 100%;
    }
}