*,
*::after,
*::before {
    box-sizing: border-box;
}

button {
    text-transform: uppercase;
}

button {
    position: relative;
    border: none;
    font-size: 18px;
    transition: color 0.5s, transform 0.2s, background-color 0.2s;
    outline: none;
    margin: 0 10px;
    padding: 23px 33px;
    border: 3px solid transparent;
}

button:active {
    transform: translateY(3px);
}

button::after,
button::before {}

.material-bubble {
    background-color: transparent;
    color: #ffff;
    font-size: 20px;
    font-family: century-gothic;
    border: none;
    overflow: hidden;
    box-shadow: none;
}

.material-bubble:hover {
    color: #0E5192;
    background-color: white;
}

.material-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 5px solid #ffff;
    transition: opacity 0.3s, border 0.9s;
}

.material-bubble:hover::before {
    opacity: 0;
}

.material-bubble::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #ffff;
    border-color: transparent;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.material-bubble:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
}

button:focus {
    outline: 0px dotted !important;
    outline: 0px auto !important;
}

.material-bubble2 {
    background-color: transparent;
    color: #0E5192;
    border: none;
    font-size: 20px;
    font-family: century-gothic;
    overflow: hidden;
    box-shadow: none;
}

.material-bubble2:hover {
    color: #ffff;
    background-color: #E90002;
}

.material-bubble2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 5px solid #0E5192;
    transition: opacity 0.3s, border 0.3s;
}

.material-bubble2:hover::before {
    opacity: 0;
}

.material-bubble2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #E90002;
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.material-bubble2:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
}

.material-bubble3 {
    background-color: #E90002;
    color: #ffff;
    border: none;
    font-family: century-gothic;
    overflow: hidden;
    box-shadow: none;
    font-size: 20px;
}

.material-bubble3:hover {
    color: #ffff;
    background-color: #E90002;
}

.material-bubble3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #E90002;
    transition: opacity 0.3s, border 0.3s;
}

.material-bubble3:hover::before {
    opacity: 0;
}

.material-bubble3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #E90002;
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.material-bubble3:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
}