body {
    margin: 0;
}

#homepage-header {
    font-size: 20px;
}


#header-container {

    box-sizing: border-box;
    background-image: url("/images/banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    height: 1051px;
}

.header-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 301px;
}

.header-logo-container img {
    width: 100%;
    height: auto;
}

.header-column-container {
    display: flex;
}

@media (max-width: 992px) {
    .header-column-container {
        flex-direction: column;
    }
}

.header-column-blank {
    width: 50%;
    height: 100%;
}

.header-column-map {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    height: 100%;
    padding: 20px 10px 10px 26px;
}



.header-column-map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    transition-duration: 0.5s;
    padding: 0 10px;
}



.header-column-map-container:hover {
    box-shadow: -4px 1px 46px 3px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: -4px 1px 46px 3px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: -4px 1px 46px 3px rgba(0, 0, 0, 0.24);

    transform: translateY(-10px);
    transition-duration: 0.5s;
}


.header-column-map-container-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 57px;
    margin-bottom: 6px;
}

.header-column-map-container-email {
    font-family: "Open Sans", sans-serif;
    margin-bottom: 10px;
}

.header-column-map-container-email a {
    color: #27a8df;
    text-decoration: none;
}

.header-column-map-container-address {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 32px;
}

.header-column-map-container-gmap {
    background: none !important;
    width: 100%;
    margin-bottom: 30px;
}

.services-section {
    margin: 80px 0 40px;

}

.services-header {
    font-size: 32px;
    color: #27a7de;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin: 0 auto 40px;
    padding: 0 30px;
    text-align: center;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;


}



.service {
    box-sizing: border-box;
    width: 50%;
    padding: 10px;
    margin-bottom: 40px;
    transition-duration: 0.5s;
}

.service:hover {
    box-shadow: -4px 1px 46px 3px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: -4px 1px 46px 3px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: -4px 1px 46px 3px rgba(0, 0, 0, 0.24);

    transform: translateY(-10px);
    transition-duration: 0.5s;
}

.service-image-title-subtitle-container {
    display: flex;
}



.service-title-subtitle-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.service-title {
    margin-bottom: 15px;
    font-size: 22px;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;

}

.service-title a {
    text-decoration: none;
    font-weight: 700;
    color: #444;
}

.service-subtitle {
    font-size: 14px;
    color: #909090;
    font-family: "Open Sans", sans-serif;
    line-height: 24px;


}

.service-description {
    font-size: 16px;
    margin-top: 10px;
    font-family: "Open Sans", sans-serif;
    color: #444;
    line-height: 24px;
    padding: 0 15px;
}

#footer .copyright {
    font-size: 14px;
    color: white;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    background-color: rgba(39, 168, 223, 0.8);
    padding: 31px 0;
}



@media (max-width: 992px) {
    .header-column-map {
        width: 100%;
        padding-left: 10px;
    }
    .services-header {
        max-width: 690px;
    }
    .services-container {
        flex-direction: column;
        align-items: center;
        max-width: 690px;
    }
    .service {
        width: 100%;
    }
}


@media (max-width: 767px) {
    .service {
        width: 100%;
    }
    .service-image-title-subtitle-container {
        flex-direction: column;
        align-items: center;
    }
    .service-title-subtitle-container {
        flex-direction: column;
        align-items: center;
    }
    .service-subtitle {
        text-align: center;
    }
    .service-description {
        text-align: center;
    }
}