body {
    margin: 0;
    font-family: sans-serif;
    font-size: 0.9em;
}

.nav-bar-wrapper {
    justify-content: center;
    background-color: #899878;
}

.nav-bar-wrapper > .links {
    width: 850px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 20px;
}

.links > a > img {
    height: 40px;
    margin: 0 10px;
}

.link {
    text-decoration: none;
    color: #2b3773;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: 0.5s;
    padding: 5px;
    border-radius: 5px;
}

.nav-link:hover {
    border-right: 1px solid #2b3773;
    border-left: 1px solid #2b3773;
}

.image-wrapper {
    background-image: url(../img/Building-cropped.jpg);
    padding: 10px 100px;
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #2b3773;
}

.image-wrapper > h1 {
    background-color: #e4e6c3;
    width: 350px;
    padding: 10px;
    border-radius: 10px;
}

.image-wrapper > h2 {
    background-color: #e4e6c3;
    width: 350px;
    padding: 10px;
    border-radius: 10px;
}

.content-wrapper {
    margin: 5px;
}

.overview {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.overview-item {
    position: relative;
    padding: 5px;
}

.overview-img-background {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1s;
}

.text-wrapper {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: center;
}

.text-wrapper .subtitle {
    transition: 1s;
    color: transparent;
}

.text-wrapper:hover .subtitle {
    color: #58a5d9;
}

.img-darken {
    filter: brightness(40%);
}

.detail-wrapper {
    display: flex;
    justify-content: center;
}

.detail {
    width: 75%;
}

.detail > .detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
    row-gap: 5px;
}

.detail-item > a {
    padding: 0;
    border: 0;
}

.detail-item > img {
    width: 100%;
}

.detail-item > ul {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    padding: 15%;
    color: #2b3773;
}

hr {
    margin: 25px 0 20px 0;
}

.footer {
    background-color: #899878;
    color: #2b3773;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
}

.footer > .logo-footer img {
    height: 50px;
}

.footer > .footer-address-phone {
    text-align: center;
    margin: 10px 10px;
}

.footer > .links {
    margin-top: 40px;
    margin-bottom: 40px;
}

#facebook:hover {
    color: #58a5d9;
}

.footer > .copyright-wrapper {
    margin-bottom: 20px;
    font-size: 0.8em;
}

/*
Colors
58A5D9
2B3773
F7F7F2
E4E6C3
899878
*/