/* ---------->  WIDE PROPERTIES */
body,html { width:100%; height:100%; margin:0; border:0; }


body * { margin:0; border:0; }


/* ---------->  Main Structure */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.full-size-image {
    width: 100%;
}

.section {
    display: flex;
    justify-content: center;
    min-width: 1440px;
}

.mob-small,
.mob {
     display: none;
}

/*
.desk {
    display: none;
}
*/

/*--- Mobile */
@media screen and (max-width: 1000px) {
    .section {
        min-width: 768px;
        width: 100%;
    }

    .desk {
        display: none;
    }

    .mob {
        display: block;
    }
}

/*--- Mobile - Extra Small */
@media screen and (max-width: 560px) {
    .mob-large {
        display: none;
    }

    .mob-small {
        display: block;
    }
}


/*--- Mobile - Extra Small */
@media screen and (max-width: 320px) {
    .section {
        min-width: 600px;
    }
}
/*
@media screen and (max-width: 280px) {
    .container {
        overflow-x: auto;
    }
}*/