
        .mobile-menu-area {
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  */
  /* Horizontal, Vertical, Blur, Color */
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.355);

  z-index: 999;
}


        .mobile-menu-area {
  position: relative;
}

.mobile-menu-button {
  position: absolute;
  top: 10px;
  right: 30px;
  z-index: 999;
}

.mobile-menu-button .quote-btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #f95738;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.mobile-menu-button .quote-btn:hover {
  background-color: #e0492f;
}



.mobile-menu-button {
    display: inline-block;
}

.mobile-menu-button a {
    display: inline-block;
    background: #49AF45;
    padding: 8px 20px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 5px;
    margin-left: 36px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    margin-right: 40px;
}

.mobile-menu-button a:hover {
    color: #fff !important;
    border: 1px #fff solid !important;

}

.mobile-menu-button a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #49AF45;
    /* border: 1px #fff solid; */
    z-index: -1;
    border-radius: 5px;
    transform: scale(0);
    transition: 0.5s;
}

.mobile-menu-button a:hover:before {
    transform: scale(1);
}

.mobile-menu-button i {
    transition: 0.5s;
}

.mobile-menu-button a:hover i {
    color: #fff !important;
    /* border: 1px #fff solid; */

}

@media (min-width: 992px) {
  .mobile-menu-button {
    display: none;
  }
}