html {
    overflow-x: hidden;
    overflow-y: auto;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;

    margin: 0;
    padding: 0;

    color: #fff;
    background: #FFF;
}

/**	Coming Soon
 *************************************************** **/
.comingsoon {
    padding: 0 25px;

    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;

    height: 100vh;
}

.comingsoon h2 {
    font-size: 40px;
    line-height: 44px;

    font-weight: 700;

    text-shadow: 2px 3px 5px rgba(255,255,255,0.5);
    color: #4a4a4c;

    margin-top: 40px;
}

p {
    color: #4a4a4c;
}

.comingsoon h5 {
    font-size: 12px;
    line-height: 18px;

    font-weight: 400;
    color: #4a4a4c;
}

.comingsoon a {
    color: #fff;
    text-decoration: none;
}

.comingsoon a:hover,
.comingsoon a:focus {
    color: #fff;
    text-decoration: none;
}

a.btn-whatsapp {
    position: fixed;
    z-index: 10;

    bottom: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    text-align: center;

    color: #fff;
    border-radius: 100%;
    background-color: #34af23;

    box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);

    animation: pulse 2s infinite;
}

a.btn-whatsapp i {
    font-size: 2rem;
}

a.btn-whatsapp:hover,
a.btn-whatsapp:focus {
    background-color: #25d366;
    animation: none;

    color: #fff;

    text-decoration: none;
}

a.btn-white {
    background-color: #fff;
    color: #21273d;
}

a.btn-white:hover,
a.btn-white:focus {
    background-color: #ddd;
    color: #21273d;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media only screen and (max-width: 1400px) {

}

@media only screen and (max-width: 480px) {
    .comingsoon h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .comingsoon h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .list-inline {
        display: flex;
        flex-direction: column;

        gap: 10px;

        width: 100%;
    }

    .list-inline .list-inline-item {
        margin: 0;
    }

    .btn {
        width: 75%;
    }
}
