*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
  }

@media screen and (min-width: 769px){

    #mobile-nav-bar{
        display: none !important;
    }
    #desktop-nav-bar{
        position: fixed;
        top: 0;
        width: 100%;
        height: 64px;
        background: #FFFFFF;
        box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
        z-index: 1;
        transition: top 0.3s;
    }

    .nav-wrapper{
        max-width: 1200px;
        margin: 0 auto;
        height: 64px;
        display: flex;
        justify-content: space-between;
    }

    #nav-logo{
        display: inline-block;
        margin: 0;
        width: 226px;
        height: 64px;
    }

    #nav-logo img{
        height: 40px;
        width: 226px;
        margin: 12px;
    }

    .nav-link-container{
        height: 64px;
    }

    .nav-link-container ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        height: fit-content;
        width: fit-content;
    }

    .nav-link-container ul li{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        padding-top: 22px;
        line-height: 20px;
        text-align: center;
        color: #000000;
        transition: transform 0.3s;
        margin-right: 28px;
    }

    .nav-link-container ul li:hover{
        color: #0267B1;
        font-weight: 900;
        transform: scale(1.1);
    }


    #hero-section-wrapper{
        background-image: url("../assets/images/banner.jpeg");
        min-height: 720px;
        height: 100vh;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    #hero-section-container{
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        background-color: rgba(0,11,19,0.4);
    }

    #hero-section-content-container{
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        height: 300px;
        width: 750px;
        border: 20px solid #ffffff;
        box-shadow: 3px 3px 2px #0f0f0f;
        background-color: rgba(226, 221, 221, 0.8);
    }

    #hero-section-content img{
        height: auto;
        object-fit: contain;
        width: 90%;
    }

    #hero-section-content hr{
        border: 2px solid white;
        margin: 1rem auto;
        width: 95%;
    }

    #hero-section-content p{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 25px;
    }

    #about-us-section-container{
        min-height: 720px;
        height: fit-content;
        width: 100%;
    }

    .info-section{
        padding: 30px 50px;
        background: rgba(255, 255, 255, 0.35);
        box-shadow: 0px 0.5px 4px rgba(0, 0, 0, 0.1);
        min-width: 375px;
        min-height: fit-content;
        width: calc(100%-100px);
    }

    .section-wrapper{
        max-width: 1200px;
        margin: auto;
    }

    .section-heading{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 36px;
        line-height: 29px;
        margin-bottom: 25px;
        text-align: left;
    }

    .section-content{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
    } 



    .mobile-product-tiles-container{
        display: none !important;
    }

    .product-tiles-container{
        display:flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        width: 100%;
        min-width: 375px;
        max-width: 1200px;
        min-height: 350px;
        overflow-x: scroll;
    }

    .product-tile{
        margin: 25px 25px 0 0 ;
        width: 320px;
        height: 270px;
        border-radius: 10px;
        padding-bottom: 10px;
        transition: all 0.3s;
        box-shadow: 1px 1px 2px #cecece;
    }

    .product-tile:hover{
        box-shadow: 3px 3px 5px #313131;
        transform: scale(1.1);
    }

    .product-image-container{
        height: 190px;
        width: 190px;
        padding: 24px 24px 15px 24px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .product-image-container img{
        max-height: 190px;
        max-width: 190px;
        border-radius: 10px;
    }

    .product-tile-name{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 42px;
        text-align: center;
        color: #000000;
    }



    #our-partners-section{
        padding: 50px 0;
        box-shadow: 0px 0.5px 4px rgba(0, 0, 0, 0.1);
    }

    .partners-tiles-container{
        display:flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        width: 100%;
        min-width: 375px;
        max-width: 1200px;
    }

    .partners-tile{
        display: flex;
        align-items: center;
        margin: 25px 25px 0 0 ;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 15px solid #f8f8fe;
        box-shadow: 3px 3px 5px #0f0f0f;
    }


    .partners-tile img{
        height: auto;
        object-fit: contain;
        width: 90%;
        margin: auto;
    }

    #contact-us-section{
        padding: 50px 0;
    }

    #location-container{
        display: flex;
        align-items:center;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        padding-top: 25px;
    }

    #google-map-pin{
        box-shadow: 2px 2px 5px #cecece;
        width: fit-content;
        height: fit-content;
        border-radius: 25px;
        width: 70%;
        max-width: 700px;
    }
    #google-map-pin iframe{
        border-radius: 25px;
        width: 100%;
        max-width: 700px;
    }

    .address-container{
        padding: 25px;
        min-height: 120px;
        height: fit-content;
        width: 300px;
        border-radius: 25px;
        box-shadow: 2px 2px 5px #cecece;
    }
    .address-container:nth-of-type(1){
        margin-bottom: 40px;
    }

    .address-heading{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 25px;
        text-align: left;
    }

    #bottom-navigation-section{
        width: 100%;
        height: 100px;
        background-color: #0294ff;
    }

    .bottom-bar-wrapper{
        margin: auto;
        height: 100%;
        max-width: 1200px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .copyright-text{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 14px;
        line-height: 29px;
        text-align: left;
        color: #ffffff;
    }

    #brand-logos-container{
        min-width: 500px;
        height: 90px;
    }
    .brands-logo-images-conatiner{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: fit-content;
        min-width: 450px;
    }

    .brand-logo-image img{
        height: auto;
        object-fit: contain;
        height: 28px;
        margin: auto;
        margin-right: 32px;
    }
    .brands-text{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: #ffffff;
        margin-bottom: 12px;
    }

    .social-icons{    
        margin-bottom: 15px;
    }

    .social-icons a img{
        height: 46px;
        width: 46px;
        margin-left: 20px;
        border-radius: 100%;
        border: 0.1px solid #cecece;
        box-shadow: 1px 1px 3px #cecece;
    }

}




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


    #desktop-nav-bar{
        display: none !important;
    }

    .overlay {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        background: #0294ff;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 50px;
    }
    
    .overlay-content {
        width: 100%;
        text-align: center;
        padding-top: 30px;
    }
    
    .overlay-content a {
        margin-top: 15px;
        padding: 8px;
        text-decoration: none;
        font-family: 'Montserrat';
        font-weight: 900;
        font-size: 24px;
        line-height: 38px;
        text-align: center;
        color: #FFFFFF;
        display: block;
        transition: 0.3s;
    }
    
    .overlay a:hover, .overlay a:focus {
        color: #f1f1f1;
    }
    
    .overlay .closebtn {
        width: 100%;
        text-align: center;
        font-size: 60px;
        text-decoration: none;
        color: #f1f1f1;
    }

    #mobile-nav-bar-box{
        width: 100%;
        height: 62px;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
        min-width: 375px;
        margin-bottom: 10px;
        transition: top 0.3s;
    }

    #nav-bar-icon{
        height: 40px;
        width: 40px;
        cursor: pointer;
        position: fixed;
        right: 10vw;
        top: 10px;
        z-index: 1;
        transition: top 0.3s;
        border: 2px solid #FFFFFF;
        border-radius: 3px;
    }
    
    

    #mobile-nav-logo{
        position: fixed;
        top: 10px;
        left: 5vw;
        z-index: 1;
        padding-left: 10px;
        transition: top 0.3s;
    }

    #mobile-nav-logo img{
        width: 205px;
        height: 40px;
    }


    #hero-section-wrapper{
        width: 100%;
        background-image: url("../assets/images/mobile-background.jpg");
        background-color: #ffffff;
        min-height: 720px;
        height: 100vh;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    #hero-section-container{
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        background-color: rgba(0,11,19,0.4);
    }

    #hero-section-content-container{
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        min-height: 250px;
        height: fit-content;
        width: 80%;
        border: 15px solid white;
        box-shadow: 3px 3px 2px #0f0f0f;
        padding: 10px;
        background-color: rgba(226, 221, 221, 0.8);
    }

    #hero-section-content img{
        height: auto;
        object-fit: contain;
        width: 90%;
    }

    #hero-section-content hr{
        border: 2px solid white;
        margin: 1rem auto;
        width: 95%;
    }

    #hero-section-content p{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 25px;
    }

    #about-us-section-container{
        min-height: 720px;
        height: fit-content;
        width: 100%;
    }

    .info-section{
        padding: 30px;
        background: rgba(255, 255, 255, 0.35);
        box-shadow: 0px 0.5px 4px rgba(0, 0, 0, 0.1);
        min-width: 280px;
        min-height: fit-content;
        width: calc(100%-50px);
    }

    .section-wrapper{
        max-width: 720px;
        margin: auto;
    }

    .section-heading{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
        text-align: left;
    }

    .section-content{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
    } 



    #products-section h1{
        margin-top: 2rem;
        margin-left: 2rem;
    }

    .product-tiles-container{
        display: none !important;
    }

    .mobile-product-tiles-container{
        display:flex;
        flex-wrap: no-wrap;
        justify-content: space-evenly;
        width: 100%;
        min-width: 300px;
        max-width: 720px;
        min-height: 260px;
    }

    .product-tile{
        padding-top: 10px;
        width: 150px;
        height: 220px;
        border-radius: 10px;
        padding-bottom: 10px;
        transition: all 0.3s;
        box-shadow: 1px 1px 2px #cecece;
    }

    .product-tile:hover{
        box-shadow: 3px 3px 5px #313131;
        transform: scale(1.1);
    }

    .product-image-container{
        height: 140px;
        width: 140px;
        padding: 10px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-image-container img{
        max-height: 140px;
        max-width: 140px;
        border-radius: 10px;
    }

    .product-tile-name{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        color: #000000;
    }



    #our-partners-section{
        padding: 50px 0;
        box-shadow: 0px 0.5px 4px rgba(0, 0, 0, 0.1);
    }

    #our-partners-section h1{
        padding-left: 2rem;
    }

    .partners-tiles-container{
        display:flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        width: 100%;
        min-width: 375px;
        max-width: 1200px;
    }

    .partners-tile{
        display: flex;
        align-items: center;
        margin: 15px 15px 0 0 ;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 15px solid #f8f8fe;
        box-shadow: 3px 3px 5px #0f0f0f;
    }


    .partners-tile img{
        height: auto;
        object-fit: contain;
        width: 90%;
        margin: auto;
    }

    #contact-us-section{
        padding: 50px 0;
    }
    #contact-us-section h1{
        padding-left: 2rem;
    }

    #location-container{
        padding-top: 25px;
    }

    #google-map-pin{
        box-shadow: 2px 2px 5px #cecece;
        width: 90%;
        height: fit-content;
        border-radius: 25px;
        margin: 0 auto;
    }
    #google-map-pin iframe{
        border-radius: 25px;
        min-width: 280px;
        width: 100%;
    }

    .address-container{
        padding: 25px;
        min-height: 120px;
        height: fit-content;
        width: 300px;
        border-radius: 25px;
        margin: auto;
        margin-top: 40px;
        box-shadow: 2px 2px 5px #cecece;
    }


    .address-heading{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 25px;
        text-align: left;
    }

    #bottom-navigation-section{
        width: 100%;
        height: fit-content;
        min-height: 360px;
        background-color: #0294ff;
    }

    .bottom-bar-wrapper{
        padding-top: 25px;
        margin: auto;
        height: 100%;
        width: 100%;
    }

    .copyright-text{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 14px;
        line-height: 29px;
        text-align: center;
        color: #ffffff;
        margin-top: 15px;
    }

    .brands-text{
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        color: #ffffff;
    }

    .social-icons{    
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #brand-logos-container{
        align-items: center;
        width: 100%;
        padding-top: 32px;
        text-align: center;
    }

    .brand-logo-image{
        width: fit-content;
        margin: auto;
    }

    .brand-logo-image img{
        height: auto;
        object-fit: contain;
        height: 28px;
        margin: 10px 0;
    }

    .social-icons a img{
        height: 46px;
        width: 46px;
        margin-left: 20px;
        border-radius: 100%;
        border: 0.1px solid #cecece;
        box-shadow: 1px 1px 3px #cecece;
    }


}

a{
    text-decoration: none;
}

 /*  Background colors */

 .bg-pyellow{
    background: #FFF0A3;
}

.bg-pgreen{
    background: #B0FFA3;
}

.bg-ppink{
    background: #FFA3B9;
}

.bg-lblue{
    background: #64E3FF;
}

.bg-pink1{
    background: #D685FC;
}

.bg-porange{
    background: #FFCA64;
}

.bg-blue{
    background: #64ABFF;
}

.bg-ppurple{
    background: #C0A3FF;
}

