*{
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}
:root{
    --primary: #0000ff;
    --hoverp:#1919d1;
    --secondary: #000000;
    --background: #efeff2;
    --muted: #6c757d;
}
.section-heading{
    text-align: center;
    margin-bottom: 20px;
}
.button-default{
    padding:20px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 460;
    text-decoration: none;
}
.button-default:hover{
    color: #fff;
    background-color: var(--hoverp);
}
.button-bordered{
    padding:20px;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    font-weight: 460;
    text-decoration: none;
    transition: 0.5s;
}
.button-bordered:hover{
    color: #fff;
    background-color: var(--secondary);
}
.color-text-primary{
    color: var(--primary);
}
.text-transform-uppercase{
    text-transform: uppercase;
}
.text-decoration-none{
    text-decoration: none;
}
.background-color-set{
    background-color: var(--background);
}

/* navigation top design starts here */
.navigation .top{
    background-color: var(--primary);
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
}
.navigation .top a{
    color: white;
    text-decoration: none;
    
}
.navigation .top .center a{
    margin-left: 10px;
    margin-right: 10px;
}
.navigation .top .right a{
    margin-left: 5px;
    margin-right: 5px;
    font-size: 20px;
}

@media (max-width: 1000px) { 
    .navigation .top{
        display: none;
    }
}

/* navigation top design ends here */

/* navigation bar design starts here */
.navigation .bar{
    background-color: var(--background);
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    
}
.navigation .bar .logo img{
    height: 50px;
}
.navigation .bar .links{
    display: flex;
    justify-content: space-between;
}
.navigation .bar .links ul{
    display: flex;
}
.navigation .bar .links ul li{
    list-style-type: none;
    margin: 10px
}
.navigation .bar .contact-button{
    margin: 18px;
}
.navigation .bar .links ul li.has-sublinks ul.nav-sublinks{
    display: none;
}
.navigation .bar .links ul li.has-sublinks ul.nav-sublinks.active{
    display: block;
    position: absolute;
    width: fit-content;
    border-radius: 10px;
    background-color: #fff;
    margin: 0px;
    padding: 0px;
}
.navigation .bar .links ul li.has-sublinks ul.nav-sublinks.active li{
    padding: 10px;
    border-radius: 15px;
}
.navigation .bar .links ul li.has-sublinks ul.nav-sublinks.active li:hover{
    background-color: var(--background);
}
.navigation .bar .links ul li.has-sublinks ul.nav-sublinks.active li.active{
    background-color: var(--primary);
}
.navigation .bar .links ul li.has-sublinks ul.nav-sublinks.active li.active a{
    color: #fff!important;
}

/* .navigation .bar .links ul li.has-sublinks ul.nav-sublinks.active li ul.nav-sub2links{
    display: block;
    margin: 0px;
    padding: 0px;
}
.navigation .bar .links ul li.has-sublinks ul.nav-sublinks.active li ul.nav-sub2links li a{
    font-weight: 100;
} */
.navigation .bar .links ul li a{
    text-decoration: none;
    color: var(--secondary);
    font-weight: 460;

}
.navigation .bar .links ul li a.active{
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}
.navigation .bar .mobile-links{
    display: none;
}
div.mobile-nav-links{
    display: none;
}
@media (max-width: 1000px) { 
    .navigation .bar .mobile-links{
        display: block;
    }
    div.mobile-nav-links{
        display: none;
    }
    .navigation .bar .mobile-links button.hamburger-icon{
        text-decoration: none;
        color: #fff;
        font-size: 18px;
    }
    .navigation .bar .links{
        display: none;
    }
    .navigation .bar .contact-button{
        display: none;
    }

    div.mobile-nav-links.active{
        margin: 20px;
        border-radius: 15px;
        background-color: var(--primary);
        display: flex;
        justify-content: center;
    }
    div.mobile-nav-links.active ul li{
        list-style-type: none;
        margin: 20px;
    }
    div.mobile-nav-links.active ul li a{
        text-decoration: none;
        color: #fff;
        font-size: 25px;
    }
    div.mobile-nav-links.active ul li a.active{
        border-bottom: 3px solid #ffffff;
    }
    div.mobile-nav-links.active ul li.has-sublinks ul.nav-sublinks{
        display: none;
    }
    div.mobile-nav-links.active ul li.has-sublinks ul.nav-sublinks.active{
        display:block;
    }
}


/* navigation bar design ends here */

/* hero section design starts here */
.hero-section{
    padding: 20px;
    /* background-color: var(--background); */
    border-radius: 15px;

}
.hero-section h2 div{
    display: inline;
}
.hero-section h4 div{
    display: inline;
}
.hero-section p{
    margin-bottom: 40px;
}
.hero-section .hero-img img{
    border-radius: 20px;
    height: auto;
    width: 100%;
    animation: fadeIn 2s;
}
.hero-text{
    animation: fadeOut 2s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    50% { transform: translate(-50px); }
    100% { transform: translate(0px); }

  }
  @keyframes fadeOut {
    0% { opacity: 0; }
    50% { transform: translate(50px); }
    100% { transform: translate(0px); }

  }
/* hero section design ends here */

/* who we are design starts here */
.who-we-are{
    background-color: var(--background);
    padding: 50px;
    margin: 20px;
    border-radius: 20px;
}
.who-we-are .section-card{
    margin: 20px;
    cursor: pointer;
}
.who-we-are .section-card .section-image{
    overflow: hidden;
    border-radius: 15px;
}
.who-we-are .section-card .section-image img{
    width: 100%;
    border-radius: 15px;
    /* object-fit: cover; */
    transition: all .3s ease;
}
.who-we-are .section-card:hover .section-image img{
    transform: scale(1.2);
}
.who-we-are .section-card .section-details{
    margin-top: 10px;
}
.who-we-are .section-card .section-details p{
    margin: 10px 0px;
}
.who-we-are .section-card:hover .section-details h5{
    color: var(--primary);
}
/* who we are design ends here */
.contact{
    padding: 20px;
    margin: 20px;
}
.contact input{
    background-color: var(--background);
    border: none;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    margin: 10px 0px;
}
.contact textarea{
    background-color: var(--background);
    border: none;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    margin: 10px 0px;
}
.contact .contact-sections .section{
    display: flex;
    margin: 20px 0px;
}
.contact .contact-sections .section .contact-icon{
    margin-right:20px;
    margin-top:20px;
}



/* counter design starts here */
.counters{
    margin: 20px;
    padding: 20px;
    background-color: var(--primary);
    border-radius: 20px;
}
.counters-detail{
    text-align: center;
    margin: 20px 0px;
}
.counters h4{
    color: #fff;
}
.counters span{
    color: #fff;
}
/* counter design ends here */

/* footer design starts here */
.footer{
    background-color: var(--background);
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
}
.footer .logo img{
    height: 50px;
}
.footer .logo img{
    height: 50px;
}
.footer .copyright p{
    align-items: center;
    height: 50px;
  line-height: 50px;
}
.footer .social{
    display:flex;
    justify-content: end;
    height: 50px;
  line-height: 50px;
}
.footer .social a{
    margin: 10px;
    font-size: 20px;
}
@media (max-width: 1000px) { 
    .footer .footer-logo-div .logo{
        display: flex;
        justify-content: center;
    }
    .footer .copyright{
        margin: 10px 0px;
    }
    .footer .social{
        margin: 0px;
    }
}
@media (max-width: 767px) { 
    .footer .copyright{
        display: flex;
        justify-content: center;
    }
    .footer .social{
        justify-content: center;
        margin: 10px 0px;
    }
    .footer .copyright p{
        text-align: center;
        line-height: 30px;
    }
}
/* footer design ends here */

/* page title starts here */
section.page-title{
    background-image: url('../images/page-title/about.jpg');
    padding: 60px;
    margin: 20px;
    border-radius: 20px;
}
section.page-title.hdpe-barrel{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-title/hdpe-barrel.jpg');
    
}
section.page-title.ms-barrel{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-title/ms-barrel.jpg');
    
}
section.page-title h2{
    color: #fff;
    text-align: center;
}
section.page-title nav{
    display: flex;
    justify-content: center;
}
section.page-title nav ol.breadcrumb li.breadcrumb-item{
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}
section.page-title nav ol.breadcrumb li.breadcrumb-item a{
    color: #fff;
    text-decoration: none;
}
/* page title ends here */



/* about section starts here */
section.about-us{
    margin: 20px;
    padding: 60px;
}
section.about-us h3 span{
    color: var(--primary);
}
section.about-us .about-scripts{
    margin: 20px;
}
section.about-us .container .row img.about-img1{
    width: 100%;
    border-radius: 20px;
}
/* about section ends here */

/* contact starts here */
section .container .row iframe.map{
    width: 100%;
    height: 50vh;
    border-radius: 20px;
}
/* contact ends here */

/* popular products starts here */

section.popular-products .container .row a .product{
    position: relative;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
}
section.popular-products .container .row a .product .description{
    display: none;
}
section.popular-products .container .row a .product:hover .description{
    display:block;
}

section.popular-products .container .row a .product .image img{
    width: 100%;
    border-radius: 20px;
    transition: all .3s ease;

}
section.popular-products .container .row a .product .image{
    overflow: hidden;
    border-radius: 20px;

}
section.popular-products .container .row a .product:hover .image img{
    filter: brightness(50%);
    transform: scale(1.2);

}
section.popular-products .container .row a .product:hover .description{
    position: absolute;
    bottom: 10px;
}
/* 768 */
@media (max-width: 768px) { 
    section.popular-products .container .row a{
        text-decoration: none;
    }
    section.popular-products .container .row a .product{
        color: #000000;
        padding: 20px;
    }
    section.popular-products .container .row a .product{
        display: block;
    }
    section.popular-products .container .row a .product .description{
        padding: 10px;
        display: block;
        position: relative;
        
    }
    section.popular-products .container .row a .product:hover .description{
        position: relative;
        bottom: 0px;
    }
    section.popular-products .container .row a .product .description h2{
        text-decoration: none;
    }
    section.popular-products .container .row a .product .description span{
        color: var(--muted);
    }

}
/* popular products ends here */
section.product-details{
    padding: 50px;
}
section.product-details .container .row .col-md-6.product-information{
    padding: 20px;
}
section.product-details .container .row .col-md-6 img.product-img{
    width: 100%;
    border-radius: 20px;
}




/* upcoming projects starts here */
section.projects{
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
}
section.projects .project{
    padding: 20px;
}
section.projects .project .project-img img{
    border-radius: 20px;
    width: 100%;
}
/* upcoming projects ends here */


/* gallery starts here */
section.gallery .gallery-img img{
    width: 100%;
    border-radius: 20px;
    margin: 20px;
}
/* gallery ends here */

