header .logo img {
  width: 52%;
}
header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0px;
    padding: 5px 20px;
}
.menuList {
  align-self: center;
  margin-left: auto;
}
.menuList ul {
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-bottom: 0px;
}
.menuList ul li {
  margin-left: 5%;
}
.menuList ul li img {
  width: 22px;
  margin: auto;
  display: block;
}
.menuList ul li a {
  color: #131212;
  font-size: 16px;
  letter-spacing: 0.16px;
  text-decoration: none !important;
  transition: .3s ease-in-out;
}
.menuList ul li a:hover {
  color: #ff6527;
}
.header-btn {
  align-self: center;
  text-align: right;
}
header .login__btn {
  border-radius: 18.296px;
  background: #131212;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.18);
  color: #FFF;
  font-size: 16px;
  font-family: 'Poppins-Medium';
  letter-spacing: 0.18px;
  text-transform: capitalize;
  padding: 4px 27px;
  text-decoration: none !important;
}

.dropdown-subMenu {
  float: left;
  overflow: hidden;
}

.dropdown-subMenu .dropbtn {
  cursor: pointer;
  /* font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0; */
}
.dropdown-subMenu .dropbtn i {
  font-size: 20px;
  position: relative;
  top: 1px;
  padding-left: 5px;
}
/* .navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: red;
} */

.dropdown-content {
  /* display: none; */
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.03);
  z-index: 1;
  margin-top: 10px;
  border-radius: 9px;
  transform: scaleY(0);
  transition: transform .3s ease 0ms;
  transform-origin:  top;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 14px !important;
}
.dropdown-content a:first-child {
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.dropdown-content a:last-child {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

.dropdown-content a:hover {
  background-color: #efefef4f;
  color: #ff6527;
}

.show_drp {
  /* display: block; */
  transform: scaleY(1);
  transition: transform .3s ease 0ms;
}




@media (max-width: 600px) {
    header .logo {
        padding: 0px;
    }
    header .logo img {
      width: 90px;
    }
    .menuList {
      display: none;
    }
    .header-btn {
      margin-right: 8%;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) {
  header .logo img {
    width: 31%;
  }
  .menuList {
    display: none;
  }
  .header-btn {
    margin-right: 8%;
  }
}


@media screen and (min-width: 992px) and (max-width: 1199px) {
  .menuList ul li a, .dropdown-subMenu .dropbtn {
    font-size: 15px;
  }
  .menuList ul li {
    margin-left: 4%;
  }
}

/************ FOOTER **************/
footer {
    background: #292929;
    padding: 5px 0px;
  }
  footer p {
    color: #ffffffa1;
    font-size: 11px;
    letter-spacing: .5px;
    margin-bottom: 0px;
  }
  footer a {
    color: #ffffffa1 !important;
    text-decoration: none !important;
    font-size: 11px;
    letter-spacing: .5px;
    cursor: pointer;
  }
  footer ul {
    padding-left: 0px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
  }
  footer ul li {
    margin: auto 1% auto 0;
  }
  
  @media (max-width: 600px) {
    footer p {
      text-align: center;
    }
    
    footer ul li {
        margin: auto auto auto 0;  
    }
    footer a {
        font-size: 9px;
    }
}
  