body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 14px;
    line-height: 2;
    background-color: #fff;
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
}
:root{
    --dark-blue:#ca0e03;
    --orange:black;
    --high-blue:black;
    --white:white;
    --black:black;
    --whitesmoke:whitesmoke;
   }
.blue{
    color:var(--high-blue);
}
/*-----------------Ganeral-Style-----------------*/
   a{
    -ms-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; 
   }
   a{
    color:var(--white);
    text-decoration: none;
   }
   a:hover {
    color: var(--dark-blue);
   }
   .navDiv a,.footer a,.first-header a,.footer-last a{
    color:var(--white);
    outline: 0;
    text-decoration: none;
   }
   .h-100{
    height:100%;
   }
   h1 {
       font-size: 35px;
       color:var(--high-blue);
      }
   h2 {
      font-size: 25px;
      color:var(--high-blue);
      }
   h3 {
       font-size:25px;
       color: var(--high-blue);
      }
   h4 {
       font-size: 20px;
       color:var(--white);
      }
   h5 {
      font-size: 18px;
      line-height:25px;
      color:var(--high-blue);
      }
   h5:hover{
       color:var(--dark-blue);
    }
   h6 {
      font-size:35px;
      color:var(--white);
      }
    p {
      margin:0;
      padding:0;
      font-size:1em;
      line-height:20px;
    }
   h1,h2,h3,h4,h5,h6 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
   }
   .button{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    padding: 4px 20px;
    cursor: pointer;
    display: block;
   }
   .btnColor1{
    color: #fff;
    background: #000;
   }
   .btnColor2{
    color:var(--white);
    border-radius:5px;
    border:2px solid var(--white);
   }
   ul{
    padding: 0;
    margin: 0;
    list-style: none;
   }
@media (max-width:768px){
    h1 {
        font-size: 20px;
       }
    h6 {
        font-size:20px;
       }
}   
/*------------------------Nav-bar----------------*/
.first-header{
    background-color:black;
    color:var(--white);
}
.first-header a{
    color:var(--white);
}
.logo a{
    display: block;
}
.logo img{
    display: block;
    height: 80px;
}
.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.navDiv{
    z-index:100000000;
    background:var(--dark-blue);
}
.navbar-nav{
    display: flex; 
    justify-content: left;
}
.navbar-nav li a{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 0px 15px;
    display: block;
}
.navbar-nav a{
    color:var(--white);
}

li.dropdown:hover .dropdown-menu{
    display: block;
}
.dropdown-menu{
    position: absolute;
    z-index: 10;
    padding: 0;
    margin: 0;
    background:var(--orange);
    padding: 15px;
    border-radius: 5px;
    width: 250px;
    display: none;
}
li:hover{
    color: var(--dark-blue);
}
.dropdown-menu ul li{
    padding-left: 20px;
}
.dropdown-menu ul li::before{
    content: "\f105";   
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    margin-left: -20px;
    line-height: 32px;
    color:var(--white);
}
.dropdown-menu ul a{
    padding: 5px 10px;
    line-height: 22px;
    /*
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    */
}
#menu-bars-btn{
    display: none;
    position: absolute;
    right:3%;
    top: 25px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #333;
}
#menu-bars-btn a{display: block;}
#menu-bars-btn .fa-bars{
    color:var(--high-blue);
    font-size:24px;
    line-height: 40px;
}
@media (max-width:768px){
    .first-header{
        display: none;
    }
    .adress-menu{
        display: none;
    }
    #menu-bars-btn{
        display: block;
    }
    .inqBlock{display: none;}
    #header{display: none;}
    .navbar-nav{
        display: block;
        width: 100%;
    }
    .dropdown-menu{
        position: relative;
        display: none;
        width: 100%;
    }
    .dropdown{position: relative;}
    
    .dropdown::before{
        content: '+';
        position: absolute;
        height: 32px;
        width: 32px;
        right: 0;
        top: 0;
        cursor: pointer;
        color: #fff;
        text-align: center;
        background: #11333a;
    }
    .dropdown.open::before{
        content: '-';
    }
    .dropdown > a{
        margin-right: 50px;
    }
    .dropdown-menu ul a{
        padding:5px 10px;
    }
    .navbar-nav li a{
        padding: 5px 15px;
    }
}
.contentDiv h1,.contentDiv h2,.contentDiv h3,.contentDiv h4,.contentDiv h5,.contentDiv h6 {
    font-size: 16px;
    margin-bottom:5px;
    margin-top: 5px;
}
.contentDiv p{
    margin:10px 0px;
}
.contentDiv ul{
    margin-bottom: 15px;
    margin-top: 15px;
}
.contentDiv ul li{
    padding-left: 15px;
}

.contentDiv ul li::before{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: -15px;
    position: absolute;
}
.contentDiv table{
    margin-bottom:15px;
    border: 1px solid var(--black);
    border-spacing: 0;
}
.contentDiv table td,.contentDiv table th{
    border: 1px solid var(--black);
    border-spacing: 0;
    padding: 5px 8px;}

.contentDiv table p{
    margin: 0;
}

.iconText{
    padding-left: 25px;
}
.iconText::before{
    margin-left: -25px;
    position: absolute;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro";
    font-weight: 900;
    color:var(--dark-blue);
}
.big-icon{
    padding-left: 60px;
    margin-left: 15px;
    line-height: 25px;
}
.big-icon::before{
    line-height:45px;
    font-size: 24px;
    width: 45px;
    margin-left: -60px;
    text-align: center;
    border: 2px solid var(--dark-blue);
    border-radius:5px;
}
/*------------------BreadCrumb------------------*/
.bg-ganral{
    background-image: url("../images/sakir-bg.jpg");
    background-attachment: fixed;
    background-size:cover;
    background-repeat: no-repeat;
}
/*--------------------welcome-------------------*/
.card{
    border:1px solid darkgray;
    background-color:var(--white);
}
.card img{
    width:100%;
}
.card-hover:hover{
    border:1px solid var(--orange);
}
.orange-text{
    color:var(--orange);
}
.orange-text:hover{
    color:var(--white);
}
.btn-ganeral{
    background-color:var(--white);
    color:var(--orange);
    line-height:45px;
    border:2px solid var(--orange);
    border-radius: 5px;
    width:170px;
    height:45px;
    text-align: center;
}
.btn-ganeral:hover{
   background-color: var(--orange);
}
.welcome-icon i{
    font-size:70px;
    color:var(--dark-blue);
}
.welcome-icon i:hover{
    color: var(--orange);
}
/*--------------------footer-------------------*/
.footer{
    background-color:var(--high-blue);
    color: var(--white);
}
.iconfooter{
    font-size:17px;
}
.iconfooter:hover{
    color:var(--dark-blue);
}
.footer-last{
    background-color:var(--dark-blue);
    color:var(--white);
}
/*------------------Counter-----------------*/
.counter-bg{
    background: linear-gradient(to right,#19bcdb 0%,#ec5c42 100%);
    color:var(--white);
}
.counter-icon{
    font-size:35px;
}
/*------------------Clients-----------------*/
.clients{
    background: linear-gradient(to right,#19bcdb 0%,#ec5c42 100%);
}
/*------------------L-Products-----------------*/
.latest-product{
    background-image:url("../images/jpg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.l-pro{
    border:2px solid var(--dark-blue);
}
.pro-range{
    background-color:var(--dark-blue);
}
.img-high{
    height:400px;
}
.pro-group a{
    color:var(--black);
}
.pro-group a:hover{
    color: var(--dark-blue);
}