@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format("opentype");
    font-weight: 400;
    font-display: auto;
    font-style: normal;
}

:root {
    --main-white: #ffffff;
    --main-bg: #f5fcff;
    --main-blue: #00aae7;
    --main-text: #313135;
    --main-border: #b7c0c7;
}

body {
    margin: 0;
    font-family: roboto, sans-serif;
    background-color: var(--main-white);
    font-size: 1.125rem;
}

@media (min-width: 64rem) {
    body {
        font-size: 1.125rem;
    }
}

body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Roboto', sans-serif;
    line-height: 1.1;
    margin-top: 0;
    font-weight: 700;
}

h1 {
    font-size: 1.57786rem;
}

@media (min-width: 64rem) {
    h1 {
        font-size: 2.3328rem;
    }
}

h2 {
    font-size: 1.47464rem;
}

@media (min-width: 64rem) {
    h2 {
        font-size: 1.944rem;
    }
}

h3 {
    font-size: 1.37817rem;
}

@media (min-width: 64rem) {
    h3 {
        font-size: 1.62rem;
    }
}

h4 {
    font-size: 1.28801rem;
}

@media (min-width: 64rem) {
    h4 {
        font-size: 1.35rem;
    }
}

p {
    font-size: 1.125rem;
    margin-top: 0;
}

@media (min-width: 64rem) {
    p {
        font-size: 1.125rem;
    }
}

.maintenance-container {
    max-width: 80em;
    margin: 0 auto;
    padding: 0 2em;
}

.maintenance-header-img {
    max-width: 28em;
    display: block;
    margin: 0 auto;
}

.maintenance-header {
    margin-top: 2em;
}

.maintenance-header-main {
    margin-top: 2em;
    text-align: center;
}

.maintenance-description {
    text-align: center;
}

.maintenance-container {
    max-width: 80em;
    margin: 0 auto;
    padding: 0 2em;
}

.flex-left {
    display: flex;
    justify-content: start;
}

.maintenance-phone-box-main {
    display: flex;
    justify-content: center;
}

.maintenance-phone-box h4 {
    margin-bottom: 0;
    margin-right: 1em;
}

.maintenance-phone-box a {
    color: var(--main-text);
}

.maintenance-phone-box svg {
    width: 2em;
    height: 2em;
}

.maintenance-bottom-row {
    display: flex;
    justify-content: space-between;
}

.maintenance-bottom-row-box {
    max-width: 30em;
}

hr {
    border: none;
    background-color: #d3d3d4;
    color: #d3d3d4;
    display: block;
    height: 1px;
    margin-top: 3em
}

.elv-icon {
    justify-content: center;
    height: 8em;
    width: 8em;
    margin: 0 auto;
    display: block;
}

.mobile-separator {
    display: none;
}

/* Mobile */
@media (max-width: 64rem) {
    .maintenance-bottom-row {
        display: block;
    }
    .maintenance-container {
        padding: 0 1em 1em 1em;
    }
    .maintenance-phone-box h4 {
        margin-right: 0.5em;
    }
    .maintenance-phone-box-main {
        justify-content: left;
    }
    .mobile-separator {
        display: block;
    }
}