.pncq-logo {
    width: 150px;
}

@media (max-width: 768px) {
    .pncq-logo {
        width: 100px;
    }

    .slick-arrow {
        display: none !important;
    }
}

/* WhatsApp button */

.whats-link {
    z-index: 100;
}

.whats-ballon-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: fixed;
    font-size: 25px;
    text-decoration: none;
    width: auto;
    height: 43px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: 0.2s ease-out;
}

.whats-can-we-help {
    font-size: 0px;
    opacity: 0;
    animation: cwh-animation;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;

    text-decoration: none;
}

.whats-icon {
    padding: 0px 11px;
    text-decoration: none;
}

.whats-ballon-container:hover {
    transform: scale(1.1);
    background-color: #21c05b;
}

@keyframes cwh-animation {
    from {
        font-size: 0px;
        opacity: 0;
    }

    to {
        font-size: 16px;
        opacity: 1;
        padding-left: 13px;

    }
}