body {
    margin-bottom: 90px;
}

.heroWrapper {
    width: 100%;
    position: relative;
}

.heroWrapper img {
    width: 100%;
    height: auto;
}

.heroWrapper h2 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3em;
    color: #fff;
}

.layer{
    position: absolute;
    width: 100%;
    height: 99.5%;
    background-color: rgba(8, 114, 186, 0.4);
    top:0;
}

.possitionTabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

.possitionTabs > div {
    padding: 10px 20px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.possitionTabs > div.activeLink {
    background-color: #0872BA;
    color: #fff;
}



.positionsWrapper, .preFooter {
    width: 100%;
    max-width: 1300px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
}

.position p, .position ul {
    margin: 20px 0;
}

.position ul {
    margin-left: 20px;
}

.position {
    height: 100%;
    visibility: visible;
    opacity: 1;
    transition:visibility 0.3s linear,opacity 0.3s linear;
}

.position.hidden {
    visibility: hidden;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.preFooter{
    margin-bottom: 400px;;
}

@media only screen and (max-width: 800px) {
    .heroWrapper h2 {
        font-size: 2em;
    }

    .possitionTabs {
        flex-wrap: wrap;
        padding: 20px;
    }
}