section.content-system {
    max-width: 1120px;
    margin: 18rem auto;
}

section.content-system h1 {
    color: var(--orange);
    font-size: 2.5rem;
}

div.content-system-options {
    position: relative;
    top: 4.5rem;
    background: var(--gray-light);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    width: 45rem; 
    padding: 1rem;
}

div.content-system-options + div.content-system-options {
    margin-top: 1rem;
}

div.content-system-options img {
    width: 5rem;
    height: 5rem;
    margin-right: 1.5rem;
}

div.content-system-options h1 {
    color: var(--purple-text);
    font-size: 1.6rem;
}

div.content-system-options p {
    color: var(--gray-text);
    font-size: 1.1rem;
}

div.content-system-img {
    position: absolute;
    width: 50rem;
    height: 28rem;
    margin: 2rem 30rem;
    background: var(--orange-background);
}

div.content-system-img img {
    width: 25rem;
    margin-left: 20rem;
}

@media only screen and (max-width: 1024px) {
    section.content-system {
        margin: 45rem auto;
    }

    section.content-system > h1 {
        font-size: 3rem;
        text-align: center;
    }

    div.content-system-img {
        width: 100%;
        height: 68rem;
        margin: 2rem 0;
        background: var(--orange-background);
    }

    div.content-system-img img {
        margin-left: 25rem;
    }

    div.content-system-options {
        top: 30rem;
        width: 52rem;
        margin: auto;
    }

    div.content-system-options img {
        width: 8rem;
        height: 8rem;
        margin-top: .8rem;
    }

    div.content-system-options h1 {
        font-size: 2.2rem;
    }

    div.content-system-options p {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 600px) {
    section.content-system {
        margin: 31rem 0;
    }
    
    section.content-system h1 {
        text-align: center;
        font-size: 1.6rem;
    }
    
    div.content-system-img {
        width: 100%;
        height: 21rem;
        margin: 56rem auto;
    }
    
    div.content-system-img img {
        width: 18rem;
        height: 18rem;
        margin-left: 2rem;
    }    
    
    div.content-system-options {
        margin: 0 3rem;
        display: grid;
        grid-template-columns: 1fr;
        top: 2rem;
        width: 80%; 
    }

    div.content-system-options div {
        margin: auto;
    }

    div.content-system-options img {
        width: 5rem;
        height: 5rem;
        margin: 0.5rem 4.5rem;
    }

    div.content-system-options h1 {
        margin-bottom: 0.5rem;
    }
    
    div.content-system-options p {
        font-size: 1.1rem;
        color: var(--gray-text);
    }
}