@media screen and (max-width: 1080px) {


    /***** Structure *****/
    #company {
        position: relative;
    }
    #company section {
        margin: 50px 0;
    }

    /***** Intro *****/
    #companyIntro {
        position: relative;
    }
    #companyIntro {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    #companyIntro {
        padding: 50px 30px;
    }
    #companyIntro div {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #companyIntro div h6, #companyIntro h2, #companyIntro div p {
        font-weight: 100;
        color: #fff;
    }
    #companyIntro h6 {
        font-family: 'content-font';
        font-size: 10px;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 4px;
    }
    #companyIntro h2 {
        font-family: 'title-font';
        font-size: 28px;
        text-transform: uppercase;
        letter-spacing: 4px;
    }
    #companyIntro div p {
        font-family: 'content-font';
        font-size: 16px;
        text-align: justify;
        line-height: 25px;
    }

    /***** Image *****/
    #companyImage {
        position: relative;
    }
    #companyImage {
        width: 100%;
        height: 500px;
    }
    #companyImage {
        object-fit: cover;
        object-position: center;
    }

    /***** Values / Strutcture *****/
    #companyValues {
        position: relative;
    }
    #companyValues {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /***** Values / Intro *****/
    #companyValuesIntro {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    #companyValuesIntro div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    #companyValuesIntro h2, #companyValuesIntro div h6 {
        font-weight: 400;
        text-align: center;
        color: #fff;
    }
    #companyValuesIntro h2 {
        font-family: 'title-font';
        font-size: 26px;
        text-transform: uppercase;
        letter-spacing: 4px;
    }
    #companyValuesIntro div h6 {
        font-family: 'content-font';
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 4px;
    }


    /***** Values / Grid *****/
    #companyValuesGrid {
        position: relative;
    }
    #companyValuesGrid {
        margin: 20px;
    }
    #companyValuesGrid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #companyValuesGridRowOne, #companyValuesGridRowTwo div {
        padding: 30px 20px;
        /* border: 1px solid #fff; */
    }
    #companyValuesGridRowOne {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    /*
    #companyValuesGridRowOne {
        border: 1px solid #fff;
    }
    */
    #companyValuesGridRowTwo {
        display: flex;
        flex-direction: column;
    }
    #companyValuesGridRowTwo div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    #companyValuesGridRowTwo div {
        border-top: none;
    }
    #companyValuesGrid img {
        width: 35px;
        height: 35px;
    }
    #companyValuesGrid img {
        background: var(--secondary);
        padding: 10px;
        border-radius: 50%;
    }
    #companyValuesGrid div h4, #companyValuesGrid div p {
        text-align: center;
        color: #fff;
    }
    #companyValuesGrid h4 {
        font-family: 'content-font';
        font-size: 18px;
    }
    #companyValuesGrid div p {
        width: 90%;
    }
    #companyValuesGrid div p {
        font-family: 'content-font';
        font-size: 12px;
        line-height: 22px;
        letter-spacing: 1px;
    }

    /***** Illustrations *****/
    #companyIllustrations {
        position: relative;
    }
    #companyIllustrations {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    #companyIllustrations img {
        width: 100%;
        height: 300px;
    }
    #companyIllustrations img {
        object-fit: cover;
        object-position: center;
    }


    


}