/*

LightBlue: #ddd9ed
DarkBlue: #27233f - rgba(39,35,63,255)

*/


html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #ddd9ed;
    overflow: hidden;
}



/* PLACEHOLDER */

.logo {
    width: 15vw;
}

.placeholder {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.placeholder .qr {
    width: 40%;
}

/* font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Source Sans Pro', sans-serif; */

/* h1 {
    font-size: 3vh;
}

h2 {
    font-size: 2.5vh;
}

h3 {
    font-size: 2vh;
}

h4 {
    font-size: 1.8vh;
}

h5 {
    font-size: 1.5vh;
}

.smaller-h1 {
    font-size: 1.5vh;
} */

/* p, button, a, li {
    font-size: 1.5vh;
} */

@media only screen and (max-width: 980px) {
    p, button, a, li {
        font-size: 1.8vh;
    }
}

a {
    color: #27233f;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #564d8a;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

button, .button {
    display: inline-block;
    background-color: #ecf8ff;
    color: #505050;
    border: none;
    border-radius: 5px;
    padding: 1vh 2vh;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 1px 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top: 1%;
}



/* ### HEADER ### */

#header {
    width: 100%;
    height: 80px;
    background: rgba(255,255,255,0.2);
    display: table;
    table-layout: fixed;
    
}

#header .header-subject {
    height: 100%;
    padding: 5px;
    display: table-cell;
    vertical-align: middle;
}

#header .header-subject#logo {
    width: 120px;
}

#header .header-subject#logo img {
    width: 100%;
    height: auto;
}

#header .header-subject#menu {
    width: 100%;
    text-align: right;
    padding-right: 10px;
    color: rgba(39,35,63,255);
    font-weight: 400;
}

#header .header-subject#menu .menu-item {
    display: inline-block;
    width: 110px;
    text-align: center;
}

#header .header-subject#menu .menu-item.active a {
    color: #564d8a;
}

#header .header-subject#menu .menu-item .menu-chevron i {
    position: absolute;
    font-size: 10px;
    margin-left: -12px;
    margin-top: 4px;
}


/* ### PRE-BANNER ### */
#welcome {
    text-align: center;
    width: 80%;
    display: table;
    table-layout: fixed;
    margin: 0 auto;
    padding: 50px 0 20px 0;
}

#welcome #welcome-main {
    font-size: 20px;
    text-align: center;
    width: 100%;
    color: rgba(39,35,63,255);
    font-weight: 500;
}

#welcome #welcome-sub {
    text-align: center;
    width: 100%;
}

#welcome #welcome-left, 
#welcome #welcome-right {
    display: table-cell;
    vertical-align: middle;
}

#welcome #welcome-action {
    width: 100%;
    display: table;
}

#welcome #welcome-action-left,
#welcome #welcome-action-right,
#welcome #welcome-action-middle {
    display: table-cell;
    vertical-align: middle;
}

#welcome #welcome-action-left a,
#welcome #welcome-action-right a {
    border: 1px solid rgba(39, 35, 63, 1);
    border-radius: 10px;
    padding: 10px;
    background: rgba(39, 35, 63, 0.1);
    transition: all 0.3s ease-out;
}

#welcome #welcome-action-left a:hover,
#welcome #welcome-action-right a:hover {
    background: rgba(39, 35, 63, 0.7);
    color: #ddd9ed;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

#welcome #welcome-action-left a i,
#welcome #welcome-action-right a i {
    font-size: 15px;
}

/* ### BANNER ### */
#banner {
    height: 50%;
    width: 100%;
    overflow: hidden;
}

#banner #banner-image img {
    width: 100%;
}

#qr {
    position: absolute;
    left: 5px;
    bottom: 5px;
}

#qr img {
    width: 100px;
    height: auto;
}