* {
    font-family: 'Montserrat';
}

a {
    text-decoration: none;
    cursor: pointer;
}

body {
    margin: 0;
    padding: 0;
}

button.buy-btn {
    background-color: #ef8b52;
    font-size: 16px;
    letter-spacing: 2px;
    color: #f3f3fa;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    border: 0;
    padding: 10px 20px;
    overflow: hidden;
    font-style: italic;
}

a.buy-btn {
    background: #0D47B6;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    padding: 12px 25px;
    margin: 0 25px;
}

.buy-btn {
    padding: 24px 40px;
    background: #0D47B6;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-top: 30px;
}

.button_su .buy-btn {
    margin: 0 0;
}

.button_su {
    overflow: hidden;
    position: relative;
    display: inline-block;
    border-radius: 3px;
    margin: 0;
    margin-bottom: 30px;
}

.bnr-rht .button_su {
    margin: 0 25px 0px;
}

.su_button_circle {
    background-color: red;
    border-radius: 1000px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    /*animation-timing-function: ease-in-out; */
}

.button_su_inner {
    display: inline-block;
    transition: .4s;
}

.button_text_container {
    position: relative;
    z-index: 10000;
}

.explode-circle {
    animation: explode-large 0.6s forwards;

}

.desplode-circle {
    animation: desplode-large 0.6s forwards;
}


@keyframes explode-large {
    0% {
        width: 0;
        height: 0;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80, 0.2);
    }
    100% {
        width: 700px;
        height: 700px;
        margin-left: -350px;
        margin-top: -350px;
        background-color: rgba(0, 0, 0, 1);
    }
}

@keyframes desplode-large {
    0% {
        width: 700px;
        height: 700px;
        margin-left: -350px;
        margin-top: -350px;
        background-color: rgba(0, 0, 0, 1);
    }
    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(0, 0, 0, 0.6);
    }
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    flex: 1;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.content img {
    max-width: 400px;
    width: 100%;
}

.content p {
    text-align: center;
    margin: 100px 0px 50px;
    max-width: 800px;
    font-size: 23px;
    font-weight: 600;
    color: gray;
    line-height: 1.4;
}


footer {
    display: flex;
    align-items: center;
    max-width: 87%;
    margin: auto;
    border-top: 1px solid #d1d1d1;
    padding: 25px 3%;
    width: 100%;
}

footer > div:first-child {
    flex: 1;
}

.nav,
.nav a {
    color: black;
}

.nav a {
    opacity: 0.8;
}

.nav a:hover {
    opacity: 1;
}

.footnote {
    font-size: 13px;
    text-align: right;
    line-height: 1;
}