* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.maintenance-container {
    display: grid;
    grid-template-columns: auto 583px;
    min-height: 100vh;
    background-color: #ffffff;
}

.maintenance-img {
    background: url("../images/serveurs.webp") no-repeat center center;
    background-size: cover;
}

.maintenance-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Roboto, sans-serif;
    color: #595959;
    text-align: center;
    padding: 4vh 0;
}

.maintenance-gears {
    height: clamp(105px, 20vh, 125px);
    width: auto;
    margin: 3.5vh 0 5vh;
}

.maintenance-content h3 {
    font-size: 20px;
    margin: 0 0 2.5vh;
}

.not-available {
    font-size: 15px;
    line-height: 20px;
}

.hours {
    font-weight: 500;
    margin: 0 0 2.5vh;
}

.hours span {
    font-size: 13px;
}

.maintenance-info {
    font-size: 14px;
    max-width: 300px;
    margin: 0 0 2vh;
}

.maintenance-content hr {
    height: 1px;
    width: 76%;
    border-width: 0;
    background-color: #e8e8ec;
    margin: 1vh 0 2.6vh;
}

.app-btn {
    color: rgba(89, 89, 89, 0.88);
    border: 1px solid #d9d9d9;
    background: #ffffff;
    font-size: 15px;
    height: 33px;
    padding: 0 18px;
    border-radius: 1px;
    cursor: pointer;
    transition: color 0.25s ease-in, border-color 0.25s ease-in;
}

.app-btn:hover {
    color: #29283d;
    border-color: #29283d;
}

@media screen and (max-width: 1299px) {
    .maintenance-container {
        grid-template-columns: auto 500px;
    }
}