/* Default */
body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #fff;
}

.bold {
    font-weight: 700;
}

.main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('images/maintenance_mobile_default.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main__message {
    width: 98%;
    text-align: center;
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
}

.message {
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 700;
}

.estimate {
    position: relative;
    margin: 40px 0 20px 0;
    font-size: 22px;
    font-weight: 400;
}

.estimate .txt::before {
    content: '';
    margin-left: -30px;
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: #3674e7;
    -webkit-mask-image: url(images/timer.svg);
    mask-image: url(images/timer.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

/* Portrait mode mobile */
@media (orientation: landscape) and (max-width: 767px) {
    .main {
        background-position: top center;
    }

    .main__message {
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Default WEB */
@media (min-width: 768px) {
    .main {
        background-image: url('images/maintenance_web_default.webp');
    }

    .message {
        font-size: 66px;
    }

    .estimate {
        font-size: 30px;
    }

    .estimate .txt::before {
        width: 40px;
        height: 40px;
        margin-left: -50px;
    }

    /* For short screens on web */
    @media (max-height: 700px) {
        .main__message {
            top: 10px;
        } 

        .message {
            font-size: 50px;
        }

        .estimate {
            margin: 0;
        }
    }
}

/* Karamba mobile */
.karamba .main {
    background-image: url('images/maintenance_mobile_karamba.webp');
}

.karamba .message {
    color: #584285;
}

.karamba .estimate {
    color: #000;
}

.karamba .estimate .txt::before {
    background-color: #584285;
}

/* Karamba WEB */
@media (min-width: 768px) {
    .karamba .main {
        background-image: url('images/maintenance_web_karamba.webp');
    }
}