html {
    overflow-x: hidden;
    overflow-y: auto;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;

    margin: 0;
    padding: 0;

    color: #fff;
    background: #AA0A12;
}

.comingsoon {
    padding: 25px;

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

    height: 100dvh;
}

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

    width: 100%;

    margin-top: 60px;
    padding: 25px;

    background-color: #fff;

    border-radius: 40px;
}

.content-header h2 {
    background-color: #D80000;

    width: 80%;

    text-align: center;
    font-weight: 700;

    border-radius: 18px;

    margin-top: -52px;
    margin-bottom: 30px;

    padding: 9px;
}

.content-header .content-cities {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    gap: 15px;
}

.content-header .content-cities .city {
    flex: 1 1 25%;
}

.content-header .content-cities .city h4 {
    color: #979797;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.content-header .content-cities .city .btn {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    background-color: #AA0A12;

    color: #fff;
    text-align: center;

    border-radius: 18px;
}

.content-header .content-cities .city .btn:hover {
    background-color: #D80000;
}

.content-address {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 25px;

    width: 87%;

    margin-bottom: 30px;

    padding: 25px;

    border: 5px #fff solid;
    border-top: 0;

    border-radius: 15px;

    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.content-address .grid {
    flex: 1 1 33.3%;

    padding: 10px;
}

.content-address .grid .title {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 10px;

    margin-bottom: 10px;
}

.content-address .grid .title h4 {
    text-transform: uppercase;

    margin: 0;
    font-weight: 700;
}

.content-address .grid hr {
    border-color: #fff;
}

.content-address .grid a {
    color: #fff;
}

.content-address .grid a:hover {
    color: #fff;
    text-decoration: underline;
}

.content-address .grid ul {
    margin: 0;
}

.content-address .grid ul.list-margin li + li {
    margin-top: 15px;
}

@media only screen and (max-width: 1440px) {
    .comingsoon {
        height: auto;
    }
}

@media only screen and (max-width: 1024px) {
    .comingsoon .logo {
        width: 300px;
        height: auto;
    }

    .content-header .content-cities {
        flex-wrap: wrap;
    }

    .content-header .content-cities .city {
        flex: 0 0 45%;
    }

    .content-address {
        justify-content: center;
        align-items: center;
        flex-direction: column;

        gap: 0;
    }

    .content-address .grid {
        flex: 0 0 100%;

        width: 100%;

        text-align: center;
    }

    .content-address .grid .title {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 10px;
    }

    .content-address .grid ul.list-margin li + li {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 480px) {
    .comingsoon .logo {
        width: 280px;
        height: auto;

        margin-bottom: 20px;
    }

    .content-header {
        padding: 10px;

        border-radius: 18px;
    }

    .content-header h2 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 10px;

        border-radius: 18px;
    }

    .content-header .content-cities .city {
        flex: 0 0 100%;
        width: 100%;
    }

    .content-header .content-cities .city h4 {
        font-size: 18px;
    }

    .content-address .grid .title {
        margin-bottom: 10px;
    }

    .content-address .grid .title h4 {
        font-size: 18px;
        line-height: 1;
    }

    .content-address .grid li {
        font-size: 14px;
        line-height: 18px;
    }

    .content-address .grid ul.list-margin li + li {
        margin-top: 10px;
    }

    .content-address .grid ul li + li {
        margin-top: 10px;
    }
}
