@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    color: #171a20;
}

.hover-delay:hover{
    box-shadow: 0px 0px 5px #838383;
    transition-delay: 50ms;
}

.card{
    border-radius: 10px;
}

h3,h2{
    font-weight: 700;
}

.shadow-cus{
    text-shadow: 0px 0px 5px #838383;
}

.underline{
    background-color: #dc3545;
    height: 5px;
    width: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.nav-logo{
    width: 150px;
    height: auto;
}

.nav-link {
    border-radius: 5px;
}

.nav-link:hover {
    background-color: rgba(23,26,32, 0.3);
    border-radius: 5px;
}

.section-hero{
    width: 100%;
    background-image: url('../img/img2.jpg');
    background-size: cover;
    padding-top: 25vh;
    padding-bottom: 25vh;
}

.hero-content-wrap{
    max-width: 40%;
}

.section-hero .hero-txt{
    font-size: 50px;
    font-weight: 700;
    text-shadow: 2px 2px 5px #686868;
    color: #ffffff;
    line-height:120%;
}

.section-hero .hero-txt-sub{
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 5px #686868;
}

.section-services{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    text-align: center;
    background-image: url('../img/img10.jpg');
    background-size:cover;
    /* background-image: url('../img/img3.jpg');
    background-size:cover; */
}

.section-services .servicecard{
    height: 180px;
    width: 250px;
    color: #171a20;
    background-color: #ebebeb;
    margin:10px;
    /* background-color: #61210f;
    background-image: linear-gradient(315deg, #61210f 0%, #ee6c4d 74%); */
    padding: 15px;
    text-decoration: none !important;
}

.section-services a .servicecard{
    color: #dc3545;
}

.section-services a .servicecard:hover{
    background-color: #dc3545;
    color: #ffffff;
    box-shadow: 0px 0px 5px #838383;
}

.section-products{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    background-color: #F9F9F9;
}

.section-clients{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    text-align: center;
}

.section-clients .client-logo{
    width: 200px;
}

.section-contact{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    background-image: url('../img/img12.jpg');
    background-size:cover;
}

.footer{
    background-color: #171a20;
    color: #4e5258;
    padding-top: 30px;
    padding-bottom: 30px;
}

.content{
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-hero-services{
    padding-top: 180px;
    padding-bottom: 120px;
    width: 100%;
    background-image: url('../img/img37.jpg');
    background-size:cover;
    background-position: 100% 50%;
}

.section-hero-products{
    padding-top: 180px;
    padding-bottom: 120px;
    width: 100%;
    background-image: url('../img/img11.jpg');
    background-size:cover;
    background-position: 100% 50%;
}

.productcard{
    height: 450px;
    width: 100%;
}

.section-hero-aboutus{
    padding-top: 180px;
    padding-bottom: 120px;
    width: 100%;
    background-image: url('../img/img31.jpg');
    background-size:cover;
}

.section-hero-media{
    padding-top: 180px;
    padding-bottom: 120px;
    width: 100%;
    background-image: url('../img/img35.jpg');
    background-size:cover;
}

.section-hero-contactus{
    padding-top: 180px;
    padding-bottom: 120px;
    width: 100%;
    background-image: url('../img/img38.jpg');
    background-size:cover;
}

.mediaimgwrap{
    border-radius: 10px;
    height: 200px;
    width: 200px;
}

.navbar-desktop{
    display: block;
}

.navbar-mobile{
    display: none;
}

/* mobile view */
@media only screen and (max-width: 991px) {

    .navbar-desktop{
        display: none;
    }

    .navbar-mobile{
        display: block;
    }

    .hero-content-wrap{
        max-width: 100%;
        text-align: center;
    }

    .section-hero{
        margin-top: 50px;
    }

    .section-hero .hero-txt{
        font-size: 40px;
        font-weight: 700;
        text-shadow: 2px 2px 5px #686868;
        color: #ffffff;
        line-height:120%;
    }

    .section-clients .client-logo{
        width: 100px;
    }

    .footer-mobile-align{
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .productcard{
        height: auto;
    }

    .mediaimgwrap{
        height: 130px;
        width: 130px;
    }

}