/* Add custom CSS styles below */ 
body:not(.product-index):not(.product-single):after{
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    background:white url(https://i.ibb.co/dC7CHhm/FQQVTv-Owj8ws-AABBy1-Az-Kh-ZLpb-Hr-Z8b-Xyb4-GSKpt.webp);
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 260px;
    animation-name: fade-in;
    animation-duration: 1.5s;
    transform: scale(0);
    border: none;
     
}

   @keyframes fade-in {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    75% {
        opacity: 1;
        transform: scale(1)
    }

    85% {
        opacity: .5;
        transform: scale(1)
    }

    99% {
        opacity: .2;
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: scale(.1)
    }
}


/********/
header.site-header.sticky {
    background-color: #fff;
}
.site-header,.sub-nav {
    background: transparent;
}

ul.main-menu li a {
    color: #294375 !important;
}

.sub-nav .main-menu>li>ul>li a {
    color: #fff !important;
    opacity: 1 !important;
}
section:nth-of-type(1).section .container.banner,section:nth-of-type(4).section .container.banner {
    width: 100%;
    padding: 0;
}
h2.section--title.mb-2.text-white {
    color: #004d77 !important;
}

.footer-main,.footer-sub {
    color: #fff;
    background-color: #004d77;
}
.feature-item {
    border: 2px solid #004d77 !important;
    background: #fff;
    margin: 1%;
    width: 30%;
    border-radius: 10px;
}

.product.contain {
    border-radius: 10px !important;
    border: 2px solid #004d77;
  box-shadow: 0px 0px 10px #33333317;
}
.bg-brand {
    background-color: transparent;
}

@media(max-width: 768px){

.feature-item {
    margin: auto;
    width: 92%;
}
  .footer-main {
    text-align: center;
}

}