@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

body {
    background: #EBECEC;
    font-family: 'Roboto', sans-serif;
}

.logo {
    margin: 30px;
    display: inline-block;
}

.under-const-box {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .under-const-box figure {
        margin-bottom: 40px;
        position: relative;
    }

    .under-const-box .graphic:before {
        content: "";
        background: url(/images/service_unavailable/under-const_effect.png) no-repeat top center;
        position: absolute;
        height: 144px;
        width: 100%;
        top: -20px;
        animation-duration: 6s;
        animation-iteration-count: infinite;
        animation-name: rotating-text-1;
    }

@keyframes rotating-text-1 {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(20%);
    }

    100% {
        transform: translateY(0%);
    }
}

.under-const-box h2 {
    color: #00A0E3;
    font-size: 50px;
    margin-bottom: 15px;
}

.under-const-box h3 {
    color: #000;
    font-size: 30px;
    margin-bottom: 15px;
}

.under-const-box p {
    font-size: 18px;
    color: #545A5A;
    margin-bottom: 40px;
}

.btn {
    background: #fff;
    line-height: 46px;
    display: inline-block;
    padding: 0px 70px 0px 30px;
    border-radius: 46px;
    color: #00A0E3;
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

    .btn img {
        position: absolute;
        right: 3px;
        top: 3px;
    }

@media only screen and (max-width: 767px) {

.logo {
    margin: 30px;
    display: block;
    text-align: center;
}

.under-const-box {
    width: 80%;
    position: inherit;
    transform: inherit;
    margin: 60px auto;
}

.under-const-box figure {
    width: 100%;
}

.under-const-box figure img {
    width: 100%;
}

    .graphic img {
        width: 100%;
    }

    .under-const-box .graphic::before {
        background-position: 0px;
        background-size: 100%;
    }

    .under-const-box h2 {
        font-size: 30px;
    }

    .under-const-box h3 {
        font-size: 20px;
    }

    .under-const-box p {
        font-size: 16px;
        line-height: 22px;
    }
}
