/* GLOBAL RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* GLOBAL CONTAINER */
.container,
.container-fixed{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* PROFESSIONAL SECTION LAYOUT */
.section-center{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:80px 0;
}

/* NORMAL SECTION */
.section-normal{
    padding:100px 0;
}

/* HERO SECTION */
.hero-section{
    height:100vh;
    display:flex;
    align-items:center;
}