
html {
    scroll-behavior: smooth;
}

.header {
    background-color: var(--primary);
    color: var(--light);
    position: relative;
    padding: 2rem 0 2rem 0;
}

    .header:after {
        content: "";
        width: 100%;
        height: 1.5rem;
        background-color: var(--primary);
        position: absolute;
        left: 0px;
        bottom: -1.5rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    }

.europat-logo img {
    height: 75px;
}

.page-container {
    margin-top: 5rem;
}

.map-container {
    position: relative;
}

    .map-container #map-widget {
        height: 300px;
    }

    .map-container .map-content {
        min-height: 120px;
        background-color: var(--light);
        padding: 2rem;
        box-shadow: 1px 1px 15px -5px var(--blue-gray);
        margin-top: 1rem;
    }

    @media screen and (min-width: 576px) {
        .map-container #map-widget {
            width: 70%;
            position: relative;
            top: 0px;
            left: 0px;
            z-index: 1;
        }

        .map-container .map-content {
            width: 60%;
            position: relative;
            margin-top: -120px;
            margin-left: 40%;
            z-index: 2;
        }
    }

.img-logo {
    height: 50px;
}

.img-fade {
    position: relative;
}

.img-fade::before {
    content: "";
    display: block;
    background: var(--light);
    background: linear-gradient(0deg, var(--light) 0%, rgba(255, 255, 255, 0) 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.downloads-section .downloads-title {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    padding: 0.5rem;
}

.footer-separator {
    width: 100%;
    height: 6px;
    background-color: var(--primary);
}