.sims-title-wrapper {
    color: white;
    padding: 40px 0;
    background-color: var(--blue);
}

.sims-title h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.sims-header-wrapper {
    position: relative;
}

.sims-header {
    height: 200px;
    background-repeat: no-repeat;
    background-position: 50% 55%;
    position: relative;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sims-header-logo {
    width: 200px;
    height: 200px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10%;
    bottom: -85px;
    z-index: 1;
}

.sims-header-keyline {
    position: absolute;
    right: -25px;
    top: -2px;
    width: 165px;
}

.sims-header .overlay {
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(90deg, var(--blue) 60%, transparent);
    width: 65%;
    height: 100%;
}

.sims-header-text {
    color: #ffffff;
    position: relative;
    z-index: 9;
    margin-left: auto;
    margin-right: 25%;
}

.sims-header-title {
    font-size: 1.5rem;
    line-height: 1.9rem;
    margin: 8px 0;
}

.sims-header-subtitle {
    font-size: 1rem;
    margin: 8px 0;
    text-transform: uppercase;
    font-weight: 300;
}

.sims-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 350px;
}

.sims-body-info {
    background-image: linear-gradient(var(--blue), var(--light-blue));
    padding: 25px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.sims-body-image-wrapper {
    font-size: 0;
}

.sims-body-image-parallax {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.sims-body-info {
    color: #ffffff;
}

.sims-body-info h3, .sims-body-info p {
    margin: 0 0 20px;
    font-weight: 600;
}

.sims-body-info h3 {
    font-size: 2.5rem;
    line-height: 2rem;
    text-transform: uppercase;
}

.sims-body-info ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

@media(max-width: 1200px) {
    .sims-header-logo {
        left: 0;
        bottom: 0;
    }
}

@media(max-width: 970px) {
    .sims-header-logo {
        display: none;
    }

    .sims-header-text {
        margin: 0 auto;
        padding: 0 25px;
    }

    .sims-body {
        height: auto;
        grid-template-columns: 1fr;
    }

    .sims-body-info {
        padding: 50px 25px;
    }

    .sims-body-image-wrapper {
        height: 300px;
    }
}

@media(max-width: 550px) {

    .sims-header .overlay {
        width: 90%;
    }

    .sims-header-keyline {
        display: none;
    }
}
