.footer .footer-widget.widget-about .brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.header .navbar-brand .logo {
    max-width: 100%;
    width: auto;
    height: 134px;
    margin-top: 30px;
    -webkit-filter: (0px 5px 8px #000000);
    filter: drop-shadow(0px 5px 8px #000000);
}

.header.header-transparent-2 .navbar .navbar-brand {
    width: 230px;
    background-color: #fed000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header.header-transparent-2 .navbar .module .module-icon i,
.header.header-transparent-2 .navbar .module .module-icon svg {
    color: #000000;
    font-size: 30px;
}

#navbarContent>div>div.module.module-phone.module-phone-2>div.module-icon>svg {
    color: white !important;

}

nav.navbar-sticky.navbar-fixed #navbarContent>div>div.module.module-phone.module-phone-2>div.module-icon>svg {
    color: black !important;
}

@media screen and (min-width: 1400px) {
    .header.header-transparent-2 .navbar .navbar-nav>li {
        margin-right: 44px;
    }
}

.features.features-3 {
    background: #000000;
}


.heading.heading-18 .heading-title {
    color: white !important;

}

.footer .footer-top {
    padding-top: 20px;
    padding-bottom: 20px;
}

textarea.form-control {

    border: 1px solid #ccc;
}

.pricing-table .pricing-panel {
    padding: 18px;
}

.header.header-transparent-2 .navbar .navbar-brand .logo-mobile {
    display: none;
    height: 108px;
}


button.navbar-toggler {
    background: #fed000;
    color: #000000;
    position: fixed;
    right: 14px;
    top: 18px;
    z-index: 9999;
    padding: 10px;
    display: none;
}

@media screen and (max-width: 768px) {
    button.navbar-toggler {
        display: block;
    }
}



.btn-whatsapp-pulse {
    z-index: 9999;
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}


.btn-whatsapp-pulse:hover {
    color: black;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 20px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}