*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

h4{
    font-family: montserrat,sans-serif;
    font-weight: bolder;
    
}

.bg_warning{
    background: #ffd119;
}

.sep {
    position: relative;
    display: block;
    clear: both;
    margin: 8px 0 17px;
    min-width: 100%;
    height: 1px;
    border-top: 1px solid;
    color: #dadade;
}
.sep:before {
    width: 70px;
    content: "";
    height: 2px;
    background: #000;
    position: absolute;
    z-index: 55;
    top: -1px;
}
.listing_box {
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
    padding: 10px 20px 10px 10px;
    position: relative;
}
.listing_box:hover, .listing_box:focus {
    background: #fff;
}
.listing_box:after {
    color: #ccc;
    content: '\f105';
    font-family: FontAwesome;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
a{
    text-decoration: none !important;
}
p{
    font-size: 15px;
}
.white_box:before, .listing_box:before {
    background: #2d95e3 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    left: -100%;
    position: absolute;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    width: 100%;
}
.listing_box p {
    margin-bottom: 0;
    color: #171821;
    font-size: 15px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.listing_box:hover, .listing_box:focus {
    background: #fff;
}
.listing_box {
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
    padding: 10px 20px 10px 10px;
    position: relative;
}
.listing_box:hover p, .listing_box:focus p, .listing_box:hover:after, .listing_box:focus:after {
    color: #ffd119;
}
.fa-brands{
    font-size: 30px !important;
}

/* Header section start  */
.menu-bar .mainlogo {
    width: 10%;
  }
  
  .menu-bar .mainlogo .logo img {
    width: 100%;
  }
  
  .menu-bar {
    background-color: #f1f3f4;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 5%;
    position: relative;
  }
  
  #menuBars {
    font-size: 20px;
    color: #000;
    cursor: pointer;
    display: none;
  }
  
  .menu-bar nav {
    list-style: none;
    display: flex;
    margin-bottom: 0;
  }
  
  .menu-bar nav ul {
    list-style: none;
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
  }
  
  .menu-bar ul li {
    /* width: 120px; */
    padding: 10px 10px;
    /* text-align: center; */
    position: relative;
  }
  
  .menu-bar ul li a {
    font-size: 15px;
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .menu-bar ul li:hover a {
    color: #000;
  }
  
  .menu-bar ul li a:hover {
    color: var(--color-primary);
  }
  
  .drop-arrows {
    float: right;
    margin-left: 10px;
    padding-top: 3px;
  }
  
  /* dropdown menu style */
  .dropdown-menu {
    display: none;
  }
  
  .dropdown-menu ul {
    padding-left: 0;
  }
  
  .menu-bar ul li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9999;
    background-color: #f1f3f4;
    box-shadow: 0 1px 4px rgba(0 0 0 / 16%);
  }
  
  .menu-bar ul li:hover .dropdown-menu ul {
    display: block;
    margin: 10px;
  }
  
  .menu-bar ul li:hover .dropdown-menu ul li {
    width: 150px;
    padding: 10px;
  }
  
  .dropdown-menu-1 {
    display: none;
  }
  
  .dropdown-menu ul li:hover .dropdown-menu-1 {
    display: block;
    position: absolute;
    right: 150px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    top: 0;
    background-color: #f1f3f4;
    box-shadow: 0 1px 4px rgba(0 0 0 / 16%);
  }
  
  /* Header section end  */
  
  /* footer section start  */
  .footer .logo {
    width: 85%;
  }
  
  .footer .logo img {
    width: 85%;
  }
  
  .footer {
    background-color: #f1f3f4;
    padding: 50px 50px;
  }
  
  .footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .footer .container::before {
    content: none;
  }
  
  .footer-text p {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer .footer-text .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer .footer-text .social-icons a i {
    margin: 0px 5px;
    font-size: 20px;
  }
  
  .footer .footer-text .social-icons a i:hover {
    color: rgba(53, 114, 228, 0.911);
  }
  
  .footer .container .box h3 {
    font-size: 20px;
    font-weight: 450;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer .container .box ul {
    padding-left: 0;
    list-style: none;
  }
  
  .footer .container .box a {
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
    text-decoration: none;
  }
  
  .footer .credit {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 25px;
  }
  
  /* footer section end  */

  
/* Responsive Queries

/* for Small laptop  */
@media(max-width: 991px) {

    /* Header section start  */
    .menu-bar {
        justify-content: space-between;
    }

    #menuBars {
        display: block;
    }

    .menu-bar nav {
        display: none;
    }

    .menu-bar nav ul{
        display: block;
    }

    .menu-bar nav.active {
        display: block;
        top: 99%;
        right: 0;
        z-index: 9999;
        width: 200px;
        position: absolute;
        box-shadow: 0 1px 4px rgb(0 0 0 / 16%);
        padding: 10px;
        background-color: #fff;
    }
    /* Header section end  */



}


/* for mobile  */
@media (max-width: 478px) {


    .menu-bar .mainlogo {
        width: 25%;
    }

     /* footer section start  */
     .footer {
        padding: 10px;
        text-align: center;
    }

    .footer-text .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer .footer-text p {
        font-size: 14px;
    }

    /* footer section end  */

}
