
/*-- -------------------------- -->
<---       Mission         -->
<--- -------------------------- -*/

#mission .cs-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    align-items: center;
    max-width: 540px;
    margin: auto;
}

#mission .cs-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 540px;
    position: relative;
}

#mission .cs-container {
    position: relative;
    gap: clamp(2rem, 4vw, 4rem);
}


#mission .cs-picture img {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(154,160,185,.05), 0 15px 40px rgba(166,173,201,.2);
}

#mission .cs-content .button-solid {
    padding: 20px 50px;
}

#mission #robot {
    position: absolute;
    bottom: 0;
    right: -20px;
}

@media only screen and (min-width: 1024px) {
    #mission .cs-container {
        flex-direction: row;
        max-width: 1200px;
        justify-content: center;
    }

    #mission .cs-content {
        text-align: start;
        align-items: flex-start;
    }

    #mission .cs-picture img {
        margin-bottom: 0px;
        height: 100%;
        width: auto;
    }

}


/*-- -------------------------- -->
<---       imagina         -->
<--- -------------------------- -*/

#imagina {
    background-color: var(--backgroundYellow);
}
#imagina .cs-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 540px;
    margin: auto;
    gap: clamp(2rem, 4vw, 4rem);
}

#imagina .cs-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 540px;
    order: 2;
}

#imagina .cs-picture {
    margin: auto;
    order: 1;
}
#imagina .cs-picture img {
    width: 100%;
    box-shadow: 0 5px 10px rgba(154,160,185,.05), 0 15px 40px rgba(166,173,201,.2);
    border-radius: 10px;
    border: 10px solid #fff;
}

@media only screen and (min-width: 1024px) {

    #slant-section-imagina-top{
        height: 100px;
        background: var(--backgroundYellow);
        clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
        margin-bottom: -1px;
    }
    
    #slant-section-imagina-bottom{
        height: 100px;
        background: var(--backgroundYellow);
        clip-path: polygon(0 100%, 0 0, 100% 0);
        margin-top: -1px;
    }



    #imagina .cs-container {
        flex-direction: row;
        max-width: 1200px;
        justify-content: center;
    }

    #imagina .cs-content {
        text-align: left;
        align-items: flex-start;
        order: 1;
    }

    #imagina .cs-picture img {
        max-height: 350px;
        width: auto;
    }

}
/*-- -------------------------- -->
<---       OWNER         -->
<--- -------------------------- -*/

#owner {
    background-color: #FFFF;
}

#owner #sun {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
}
#owner .cs-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 540px;
    margin: auto;
    position: relative;
    gap: clamp(2rem, 4vw, 3rem);
}

#owner .cs-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 540px;
    order: 2;
}

#owner .cs-picture {
    margin: auto;
    order: 1;
}
#owner .cs-picture img {
    width: 100%;
    box-shadow: 0 5px 10px rgba(154,160,185,.05), 0 15px 40px rgba(166,173,201,.2);
    border-radius: 10px;
}

@media only screen and (min-width: 1024px) {

    #owner #sun {
        display: inline;
    }

    #owner .cs-container {
        flex-direction: row;
        max-width: 1200px;
        justify-content: center;
    }

    #owner .cs-content {
        text-align: left;
        align-items: flex-start;
    }

    #owner .cs-picture img {
        max-height: 350px;
        width: auto;
    }

}

