.nav-dropdown {
    position: relative;
}
.nav-dropdown:hover .nav-drop {
    display:  flex;
}
.nav-drop {
    display: none;
    background: white;
    position: absolute;
    top: 100%;
    left: 0px;
    padding: 1.5rem;
    width: 700px;
    box-shadow: 2px 0px 30px -25px black;

    
    flex-wrap: wrap;
}
.nav-drop a {
    flex-basis: 50% !important;
    display: flex !important;
    align-items: flex-start !important;

    font-size: 1rem;
    line-height: 1.5rem;
}
.nav-drop a i {
    margin-right: 1rem;
    line-height: 1.7rem;
}

.single-service {
    background: white;
    transition: all .3s ease-in-out !important;
    display: inline-block;
}
.single-service:hover {
    background: #7c16d9 !important;
    transform: scale(1.05);
}
.single-service:hover i, .single-service:hover h6 {
    color: white !important;
}

.whatsapp-action {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to bottom, #25D366, #1ab151);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px -5px black;
  
    z-index: 20;
    
}
.whatsapp-action img {
    height: 47px;
    width: 47px;
}

.call-action {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(to bottom, #244ad4, #2e56e6);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px -5px black;
    
    z-index: 20;
    
}
.call-action img {
    height: 47px;
    width: 47px;
}

@media(max-width: 1000px) {
    .nav-drop {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}