img{
    max-width: 100%
}

.sticky-button {
    opacity: 0;
    visibility: hidden;
}

.menu__icon {
    display: none;
}

@media (max-width: 768px) {
    .menu__icon {
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
        z-index: 5;
    }

    .menu__icon span,
    .menu__icon::before,
    .menu__icon::after {
        left: 0;
        position: absolute;
        height: 10%;
        width: 100%;
        transition: all 0.3s ease 0s;
        background-color: #000;
    }
    .menu__icon::before,
    .menu__icon::after {
        content: "";
    }

    .menu__icon::before {
        top: 0;
    }

    .menu__icon::after {
        bottom: 0;
    }

    .menu__icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }

    .menu__icon.active span {
        transform: scale(0) translate(0px, -50%);
    }

    .menu__icon.active::before {
        top: 50%;
        transform: rotate(-45deg) translate(0px, -50%);
    }

    .menu__icon.active::after {
        bottom: 50%;
        transform: rotate(45deg) translate(0px, 50%);
    }

    .menu__body {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: 100%;
        background-color: #628ed9;
        padding: 30px;
        transition: left 0.3s ease 0s;
        overflow: auto;
    }

    .menu__body.active {
        left: 0;
    }

    .menu__body::before {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #fff;
        z-index: 2;
    }

    .menu__list > li {
        margin: 0px 0px 30px 0px;
    }

    .menu__list > li:last-child {
        margin-bottom: 0;
    }

    .menu__link {
        font-size: 24px;
        color: #fff;
    }

    body.lock {
        overflow: hidden;
    }
}

@media only screen and (max-width: 600px) {
    .sticky-button{
    position: fixed;
    justify-content: center;
    align-items: center;
    background: #5534a5;
    font-weight: 700;
    line-height: 138.46154%;
    text-align: center;
    transition: all 0.5s ease 0s;
    display: flex;
    border-radius: 5px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    padding: 20px;
    font-size: 16px;
    color: white;
    opacity: 1;
    visibility: visible;
z-index:100000;
}
}