*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    font-family: 'Work Sans', sans-serif;

}

h1,h2,h3,h4,h5,h6{
    font-family: 'Oswald', sans-serif;
}

/*  Header Section Start */

.header{
    width: 100%;
    float: left;
    background-color: #0C1062;
}

.header .header__phone{
    border-left: 1px solid #e4e4e4;
    float: left;
    display: block;
    padding: 12px 10px 12px 10px;
    color: #ffffff;
}

.header .header__phone i{
    padding-right: 8px;
    color: white;
}


.header .header__mail{
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    float: left;
    display: block;
    padding: 12px 10px 12px 10px;
    color: #ffffff;
}

.header .header__mail i{
    padding-right: 8px;
    color: white;
}

.header .header__socialicons{
    float: right; 
}

.header .header__socialicons ul{
    margin: 0px;
}

.header .header__socialicons ul li{
    border-left: 1px solid #e4e4e4;
    text-decoration: none;
    display: inline-block;
    padding: 12px 10px 12px 15px;
    text-align: center;
}

.header .header__socialicons ul li:last-child{
    border-right: 1px solid #e4e4e4;
    padding-right: 15px;
}

.header .header__socialicons ul li a{
    color: #ffffff;
    transition: 0.7s;
}

.header .header__socialicons ul li a:hover{
    color: cornflowerblue;
}

.header .header__socialicons ul li a i{}

/*  Header Section End */

/*  Nav Section Start */

.navbar{
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
}

.navbar .navbar-brand{
    position: relative;
}

.navbar .navbar-toggler{
    background-color: #0C1062;
}

.navbar .navbar-toggler .navbar-toggler-icon{
    color: #ffffff;
}

.navbar .navbar-toggler .navbar-toggler-icon i{
    color: #ffffff;
    padding-top: 4px;
    font-size: 25px;
}


.navbar .navbar-nav{
}

.navbar .navbar-nav .nav-item{
    position: relative;
    display: block;
}

.navbar .navbar-nav .nav-item .nav-link{
    font-size: 21px;
    padding: 4px 0px;
    margin-right: 30px;
    color: #0C1062;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.7s;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.navbar .navbar-nav .nav-item .nav-link:hover{
    color: cornflowerblue;
}

.navbar .navbar-nav .nav-item .nav-link::after{
    content: "";
    position: absolute;
    background: cornflowerblue;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    transition: 0.4s linear;
}

.navbar .navbar-nav .nav-item .nav-link:hover::after{
    width: 100%;
}

.navbar .navbar-nav .nav-item .nav-link i{
    margin-left: 3px;
}

.navbar .navbar-nav .nav-item .submenu{
    width: 450px;
    position: absolute;
    background: rgb(255, 255, 255);
    padding: 25px;
    margin-top: 32px;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    list-style: none;
    transition: 0.4s;
}

.navbar .navbar-nav .nav-item .submenu li{
    display: block;
    position: relative;
}

.navbar .navbar-nav .nav-item .submenu li a{
    padding: 5px 0px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 0px;
    color: #0C1062;
    position: relative;
    display: block;
    text-decoration: none;
    transition: 0.7s;
}

.navbar .navbar-nav .nav-item .submenu li a:hover{
    color: cornflowerblue;
}

.navbar .navbar-nav .nav-item .submenu li a::before{
    content: " ";
     display: inline-block;
     height: 2px;
     background-color: cornflowerblue;
     width: 0px;
     vertical-align: middle;
     margin-right: 10px;
     transition: 0.6s;
}

.navbar .navbar-nav .nav-item .submenu li:hover a::before{
    width: 15px;
}

.navbar .navbar-nav .nav-item:hover .submenu{
    visibility: visible;
     transform: scaleY(1);
}

/*  Nav Section End */


/* Top title section Start */

.topTitle{
    width: 100%;
    float: left;
    background: url(../images/banner-1.jpg) top center no-repeat;
    background-size: cover;
}

.topTitle .topTitle__name{
    padding: 70px 0px 70px 0px;
}

.topTitle .topTitle__name h1{
    text-align: center;
    color: #ffffff;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 0px;
}

/* Top title section End */

/* About us  section Start */

.warehouse{
    width: 100%;
    float: left;
    padding: 30px 0px 30px 0px;
}

.warehouse .warehouse__info{
    padding-right: 10px;
}

.warehouse .warehouse__info h1{
    padding-bottom: 20px;
    color: #0C1062;
}

.warehouse .warehouse__info p{
    text-align: justify;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 20px;
    font-weight: 500;
    padding-right: 50px;
}

.warehouse .warehouse__info h3{
    padding-bottom: 20px;
    color: #0C1062;
}

.warehouse .warehouse__info ul{
    list-style: disc;
    line-height: 30px;
}

.warehouse .warehouse__info ul li{
    font-size: 16px;
    font-weight: 500;
}

.warehouse .warehouse__img{}

.warehouse .warehouse__img img{
    width: 100%;
    float: left;
    border-radius: 15px;
}

/* About us  section End */

/* Footer Section Start */

.footer{
    width: 100%;
    float: left;
    background-color: #0C1062;
    padding-bottom: 17px;
    padding-top: 17px;
}

.footer .footer__copyright{
    color: white;

}

.footer .footer__copyright p{
    margin-bottom: 0px;
    font-size: 14px;
}

.footer .footer__copyright p span{
    border-left: 1px solid white;
    padding-left: 5px;
}

.footer .footer__maintain{
    float: right;
}

.footer .footer__maintain a{
    text-decoration: none;
    color: white;
    font-size: 14px;
}

/* Footer Section End */

@media (min-width: 0px) and (max-width: 575px){
    .navbar .navbar-toggler {
        padding: .25rem .75rem;
        font-size: 1.25rem;
        line-height: 1;
        border-radius: .25rem;
        transition: box-shadow .15s ease-in-out;
    }
    .header{
        display: flex;
    }
    
    .header .header__phone{
        border-left: none;
        display: block;
        padding: 12px 0px 12px 0px;
    }
     
    .header .header__mail{
        border-left: none;
        border-right: none;
        float: left;
        padding: 12px 0px 12px 0px;
        color: #ffffff;
    }
    
    .header .header__mail i{
        padding-right: 8px;
        color: white;
    }
    
    .header .header__socialicons{
        float: right; 
    }
    
    .header .header__socialicons ul{
        margin: 0px;
        padding-left: 0px;
    }
    
    .header .header__socialicons ul li{
        border-left: none;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        padding: 12px 10px 12px 10px;
        text-align: center;
    }
    
    .header .header__socialicons ul li:last-child{
        border-right: none;
        padding-right: 10px;
    }
    .footer .footer__maintain{
        padding-top: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767px){
    .navbar .navbar-toggler {
        padding: .25rem .75rem;
        font-size: 1.25rem;
        line-height: 1;
        border-radius: .25rem;
        transition: box-shadow .15s ease-in-out;
    }
    .header{
        display: flex;
    }
    
    .header .header__phone{
        border-left: none;
        display: block;
        padding: 12px 0px 12px 0px;
    }
     
    .header .header__mail{
        border-left: none;
        border-right: none;
        float: left;
        padding: 12px 0px 12px 0px;
        color: #ffffff;
    }
    
    .header .header__mail i{
        padding-right: 8px;
        color: white;
    }
    
    .header .header__socialicons{
        float: right; 
    }
    
    .header .header__socialicons ul{
        margin: 0px;
        padding-left: 0px;
    }
    
    .header .header__socialicons ul li{
        border-left: none;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        padding: 12px 10px 12px 10px;
        text-align: center;
    }
    
    .header .header__socialicons ul li:last-child{
        border-right: none;
        padding-right: 10px;
    }
    .footer .footer__maintain{
        padding-top: 10px;
    }
    .footer .footer__copyright p span {
        border-left: none;
        padding-left: 5px;
    }
}