/* Global */
* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
}

html, body{
    min-height: 100vh;
    text-align: center;
}

body{
    display: flex;
    flex-direction: column;
}

/* Header */
#header-maintenance{
    display: flex;
    justify-content: center;
}

#header-box{
    width: 32%;
    margin: 0.9rem 0;

}
@media (max-width: 1120px) {
    #header-box{
        width: 60%;
    }
}

@media (max-width: 720px) {
    #header-box{
        width: 100%;
    }
}


#header-logo{
    margin: 0.5rem auto;
    width: 40%;
}

#header-title{
    color: #2a7eba;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 0.8rem;
}

@media (max-width: 720px) {
    #header-title{
        font-size: 1.1rem;
        padding: 0 0.3rem;
    }
}

/* Main */
#main-maintenance{
    background-image: url("../images/background_maintenance.jpg");
    background-position: bottom 10% center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

@media (max-width: 720px) {
    #main-box{
        padding: 1rem;
    }
}

#main-title{
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.9rem;
}

@media (max-width: 720px) {
    #main-title{
        font-size: 1.5rem;
    }
}

#main-description{
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 2rem;
}


@media (max-width: 720px) {
    #main-description{
        font-size: 0.9rem;
    }
    #main-description br{
        display: none;
    }
}

#main-contact{
    color: white;
    margin: 1.7rem auto 0 auto;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3rem;
}

.text-blue{
 color: #a3d9f5;
}

.arrow{
    margin: 1.2rem auto 0 auto;
    width: 8%;
}

/* Footer */

#footer-maintenance{
    background-color: #226bb0;
    color: white;
    display: flex;
    justify-content: center;
}

#footer-box{
    margin: 1.5rem 0 1.5rem 0;
}

#footer-title{
    text-transform: uppercase;
}

#footer-address{
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 720px) {
    #footer-address{
        display: block;
    }
}

.address-box:not(:last-child){
    border-right: 1px solid white;
}
@media (max-width: 720px) {
    .address-box:not(:last-child){
        border: none;
        margin-bottom: 1.5rem;
    }
}

.address-box:last-child{
    display: flex;
    justify-content: start;
}
@media (max-width: 720px) {
    .address-box:last-child{
        display: block;
    }
}


.address-box{
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.address-title{
    text-transform: uppercase;
}

.address-description{
    font-weight: 600;
    font-size: 0.8rem;
}

.address-phone{
    text-decoration: underline;
}

.address-mail{
    display: inline-block;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    background-color: white;
    width: auto;
    color: #226bb0;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
}
