.blue-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #000;
    background-color: var(--wp--preset--color--color-1);
    padding: 5px 40px 5px 20px;
    border-radius: 25px;
    font-size: 1.125rem;
    width: fit-content;
    border: none;
}
.blue-btn:after {
    position: absolute;
    content: "";
    width: 11px;
    height: 100px;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    background-image: url('../images/simple-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.35s all;
}
.blue-btn:hover {
    background-color: var(--wp--preset--color--color-4);
    color: #fff;
    transition: 0.35s all;
}
.blue-btn:hover:after {
    background-image: url('../images/simple-arrow-white.svg');
    transition: 0.35s all;
}

.blue-btn-menu {
    margin-top: 10px;
}
.blue-btn-menu a {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #000 !important;
    background-color: var(--wp--preset--color--color-1);
    padding: 5px 20px 5px 20px;
    border-radius: 25px;
    font-size: 1.125rem;
    width: fit-content;
}
.blue-btn-menu:hover a {
    background-color: var(--wp--preset--color--color-4);
    color: #fff !important;
    transition: 0.35s all;
}
@media screen and (min-width: 991px) {
    .blue-btn-menu {
        margin-top: 0;
    }
}