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 {
    background-color: #fff;

    padding: 0;

    text-align: center;

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

    height: 100vh;
}

.comingsoon .container-top {
    width: 100%;
    height: 50vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.comingsoon .container-top p {
    text-align: center;
    color: #000;

    margin-top: 20px;
}

.comingsoon .container-top img {
    width: 250px;
    height: auto;
}

.comingsoon .container-bottom {
    background-color: #1f9289;

    width: 100%;
    height: 50vh;

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

    gap: 15px;
}

.comingsoon .list-unstyled {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 10px;
}

.comingsoon .list-unstyled li {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;

    font-size: 24px;
    line-height: 28px;

    font-weight: 700;

    color: #fff;
}

.comingsoon .list-unstyled li a {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

.comingsoon .list-unstyled li.phone {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;

    font-size: 40px;
    line-height: 44px;

    font-weight: 700;

    color: #fff;
}

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

.comingsoon a:hover,
.comingsoon a:focus {
    color: #373435;
    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;
}

@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) {
    .comingsoon .container-top img {
        width: 180px;
        height: auto;
    }

    .comingsoon .list-unstyled li {
        font-size: 18px;
        line-height: 24px;
    }

    .comingsoon .list-unstyled li.phone {
        font-size: 30px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 480px) {
    .comingsoon .container-bottom {
        padding: 15px;
    }

    .comingsoon .list-unstyled li {
        flex-direction: column;
    }

    .comingsoon .list-unstyled li a {
        flex-direction: column;
    }

    .comingsoon .list-unstyled li.phone {
        flex-direction: row;
    }
}
