  @media (max-width: 600px) {
    .coe-button {
        margin-bottom: 10px;
    }
}

@media (max-width: 330px) {
    .slider-button-area button {
        font-size: 12px;
        width: auto;
        padding: 8px 20px;
        margin: 2px 2px 10px 2px;
    }
}

.coe-button {
    background-color: #860038;
    min-width: 220px;
    width: auto;
    border-radius: 10px;
    border-style: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    padding: 14px 30px;
    text-align: center;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
}

.coe-button:hover {
    background-color: #00416d;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.coe-button:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}