/* Base CSS */
a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #002c45;
    font-weight: 400;
    font-family: 'Demo';
}

body {
    color: #787878;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: 'Demo';
    src: url('../fonts/Demo-Regular.woff2') format('woff2'), url('../fonts/Demo-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Demo';
    src: url('../fonts/Demo-Extralight.woff2') format('woff2'), url('../fonts/Demo-Extralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Demo';
    src: url('../fonts/Demo-Medium.woff2') format('woff2'), url('../fonts/Demo-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.container {
    max-width: 1200px;
}

.maintenance {
    text-align: center;
    position: relative;
    height: 100vh;
    background: #002b46;
    color: #ffffff;
    padding: 0 20px;
}

.maintenanceAlign {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.maintenance-logo {
    width: 210px;
    margin-bottom: 40px;
}

.maintenance h2 {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.53;
    text-align: center;
    margin-bottom: 40px;
}

.maintenance p {
    font-size: 18px;
    line-height: 1.17;
    text-align: center;
    margin-bottom: 15px;
}

.maintenance ul {
    padding: 0;
    margin: 0;
}

.maintenance ul li {
    display: inline-block;
    list-style-type: none;
}

.maintenance ul li:not(:last-of-type) {
    margin-right: 25px;
}

.maintenance ul li img {
    width: 32px;
}


@media (max-width: 479px) {
    .maintenance-logo {
        width: 100px;
        margin-bottom: 15px;
    }
    .maintenance h2 {
        font-size: 24px;
    }
    .maintenance p {
        font-size: 16px;
    }
}
