/* ====================
1. resets & defaults
2. base styles
3. layout
4. components
5. content by pages
==================== */


/* ==================== 1. resets & defaults ==================== */
body{
    background-color: #fff;
}



/* ==================== 2. base styles ==================== */


/* ----------- row ----------- */
.grid-items-stretch > div{
    display: flex;
    flex-direction: column;
}
.grid-items-stretch > div > *{
    flex-grow: 1;
}
/* ----------- /row ----------- */



/* ==================== 3. layout ==================== */


/*.app{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
}*/


/* ---------- header ---------- */
.app-header{
    width: 100%;
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 300;
}
.app-header .main-wrap{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    height: 60px;
    background-color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 1rem;
    padding: 0 44px;
    margin: 0 auto;
}
.app-header .logo{
    display: block;
    max-width: 135px;
    position: relative;
    top: 3px;
}
.app-header .logo img{
    width: 100%;
}
/* ---------- /header ---------- */


/* ---------- page ---------- */
/*.app-page{
    flex-grow: 1;
    width: 100%;
    position: relative;
}*/
/* ---------- /page ---------- */


/* ---------- footer ---------- */
.landing-footer .logo{
    display: block;
    max-width: 135px;
}
.landing-footer .logo img{
    width: 100%;
}
/* ---------- /footer ---------- */



/* ==================== 4. components ==================== */


/* ---------- title,text ---------- */
h1,.h1,
h2,.h2{
    line-height: 1.25;
}
/* ---------- /title,text ---------- */



/* ==================== 5. content by pages ==================== */


/* ---------- landing ---------- */
.landing-hero{
    padding-top: 9.5rem;
}
.landing-hero .hero-animation-img {
    margin-bottom: 0;
}

.landing-video-container{
    max-width: 1000px;
}
.landing-video-container .ratio{
    border-radius: 1rem;
    overflow: hidden;
}
/* ---------- /landing ---------- */


/* ---------- sizing ---------- */
.height-600px {
    height: 600px
}
/* ---------- /sizing ---------- */

