/*##############################################################
                            ## SCROLL TOP
##############################################################*/
#scroll-top {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    background-color: #ebe6d2;
    text-transform: uppercase;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 0 1px #fff inset, 0 0 0 3px #ebe6d2;
    -moz-box-shadow: 0 0 0 1px #fff inset, 0 0 0 3px #ebe6d2;
    box-shadow: 0 0 0 1px #fff inset, 0 0 0 3px #ebe6d2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#scroll-top > * {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
#scroll-top > i {
    margin-top: 5px;
}
#scroll-top:hover {
    -webkit-box-shadow: 0 0 0 20px #fff inset, 0 0 0 3px #ebe6d2;
    -moz-box-shadow: 0 0 0 20px #fff inset, 0 0 0 3px #ebe6d2;
    box-shadow: 0 0 0 20px #fff inset, 0 0 0 3px #ebe6d2;
}

@keyframes whatsapp-animation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp {
    bottom: 3rem;
    position: fixed;
    right: 3rem;
    z-index: 1500;

    .btn-whatsapp {
        align-items: center;
        background-color: #61d466;
        background-image: linear-gradient(to bottom, #61d466 0%, #52b43e 100%);
        border-radius: 50%;
        color: white;
        display: flex;
        justify-content: center;
        height: 6rem;
        position: relative;
        width: 6rem;
        z-index: 1;

        span {
            font-size: 3.5rem;
        }

        &::before,
        &::after {
            background-image: linear-gradient(
                180deg,
                rgba(#075e54, 0.2) 0%,
                rgba(#128c7e, 0.2) 100%
            );
            content: "";
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 8.5rem;
            height: 8.5rem;
            z-index: -1;
            margin-left: -4.3rem;
            margin-top: -4.3rem;
            transform-origin: 50% 50%;
            animation-duration: 1.2s;
            animation-iteration-count: infinite;
            animation-direction: alternate-reverse;
            animation-name: whatsapp-animation;
            animation-delay: 0.2s;
            animation-timing-function: ease-out;
        }

        &::after {
            animation-delay: 0.6s;
            animation-timing-function: ease-in;
        }
    }
}

.my-row {
    width: 1700px @media (max-width: 1600) {
        width: 1400px;
    }
    @media (max-width: 1370) {
        width: 1230px;
    }
    @media (max-width: 1000) {
        width: 960px;
    }
    @media (max-width: 800) {
        width: 740px;
    }
    @media (max-width: 600) {
        width: 540px;
    }
    @media (max-width: 415) {
        width: 380px;
    }
    @media (max-width: 380) {
        width: 320px;
    }
    @media (max-width: 300) {
        width: 260px;
    }
}
