.headerFlex {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    box-shadow: 0px 0px 5px black;
    height: 100px;
    justify-content: space-between;
    position: fixed;
    z-index: 1000;
    top: 0;
    background-color: white;
}

.headerFlex div img {
    height: 90px;
    padding: 20px 15px;
}

.navBar {
    display: flex;
    gap: 1%;
}

.navBar a {
    text-decoration: none;
    color: black;
    font-family: "Source Sans Pro";
    font-weight: bolder;
    font-size: 24px;
    width: 175px;
    padding: 5px;
}

.heroImage {
    margin-top: 100px;
    background-image: linear-gradient(to right, rgb(255, 85, 0) , #DB9353);
    margin-bottom: 35px;
}

.heroImage img{
    opacity: 0.2;
    width: 100%;
    height: 365px;
    object-fit: cover;
    object-position: center;
}

.homeContent {
    display: flex;
    width: 75%;
    margin: auto;
}

.maps {
    margin-right: 15px;
}

.maps img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px 120px 90px 120px;
}

.content {
    font-family: "Inter";
    font-size: 18px;
    line-height: 24px;
}
.content p{
    padding: 10px;
    text-align: center;
}

footer {
    background-color: white;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0px -1px 5px black;
    margin-top: 10px;
    font-family: "Source Sans Pro";
    font-weight: bolder;
}

body {
    background-color: #FAFAFA;
}