/* formatting for the about us page as well as the contact us page */

.about-us {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5vh 4vw 3vh 4vw;
   background-color: rgba(31, 46, 46, .8);
}
.about-us ul {
    list-style: none;
}

.about-us p {
    margin: 2vh 5vw;
}

.about-us li {
    margin: 2vh 8vw;
}

.about-us li:before {
    content: '⇀';
    margin-right: 1vw;
}

/* employee cards */

.employeecard {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 2vh 2vw;
    padding-bottom: 2vh;
}

.team {
    text-align: center;
}

.team h1{
    padding: 2vh 0 2vh 0;
}
.employeephoto {
    border-radius: 10px;
    width: 15%;
    height: auto;
    margin-left: 10%;
    margin-right: 2%;
}
.employeephoto img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.employeeinfo {
    display: flex;
    width: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:2% 2% 2% 2%;
     background-color: rgba(31, 46, 46, .8);
     border-radius: 15px;
     margin-right: 10%;
}

.employeeinfo p {
text-align: center;
padding: 0 2vw 0 2vw;
}

/* contact us page */

.contact-us {
    display: flex;
    flex-direction: column;
    background-color: rgba(31, 46, 46, .8);
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: center;
}

.contact-us h1,
.contact-us h2 {
    line-height: 2;
    font-weight: bold;
}

.contact-us p {
    line-height: 1.4;
}

.spacer {
    padding-bottom: 2vh;
}

.spacer button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.visitat {
    margin: 0;
    padding: 0;
    padding-top: 2vh;
}

.map {
    width: 100%;
    /* already set in HTML, but reinforce */
    height: 50vh;
    margin: 0;
    /* kill margins */
    padding: 0;
    /* kill padding */
    border: 0;
    /* clean edge */
    line-height: 0;
}

