/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#efefef;
    font-family:Arial, Helvetica, sans-serif;
}

/* ===========================
   LANDING
=========================== */

.landing{

    width:100%;

    max-width:1400px;

    margin:0 auto;

    background:#ffffff;

    overflow:hidden;

    box-shadow:0 0 25px rgba(0,0,0,.12);

}

.landing img{

    display:block;

    width:100%;

    height:auto;

}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px){

    .landing{

        box-shadow:none;

    }

}