﻿/*Header*/
.overview {
    color: green;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}


#menu {
    display: none;
}

#menubar {
    position: absolute;
}

#amazingcarousel-container-1 {
    background: #9099A2;
    padding-bottom: 64px !important;
}

#amazingcarousel-1 {
    padding-bottom: 0px;
}

footer {
    background-color: #9099A2 !important;
    text-align: center;
    overflow: hidden;
}

/*hr {
    display: none;
}*/

#footer-link {
    color: #23527c !important;
}

.body-content{
    padding-top: 20px;
}



body {
    background: #D5D5D5;
    /* font-family: 'Muli'; */
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0px;
}

main {
    /* padding: 60px 15px; */
    text-align: center;
    /* max-width: 100%; */
}

h1 {
    font-size: 2.5em;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 10px;
}

@media screen and (min-width: 600px) {
    h1 {
        font-size: 3em;
    }
}

h2 {
    margin: 0 0 50px;
    font-size: 2.5em;
    font-weight: 200;
    color: rgba(255, 255, 255, .6);
}

aside {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(200deg, #96858F, #9099A2, #D5D5D5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 2;
}

.open {
    opacity: 1;
    visibility: visible;
}

nav {
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    align-items: center;
    flex: 1;
    line-height: 15vh;
}

nav ul li a {
    /*font-size: 1.5em;*/
    transition: all 0.5s ease;
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
}

nav ul li a:hover {
    color: rgba(255, 255, 255, .9);
    transform: scale(1.1);
}

nav ul li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

nav ul li a:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 25%;
    background: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 600px) {
    nav ul li a {
        font-size: 3em;
    }
}

.close {
    position: fixed;
    top: 40px;
    right: 60px;
    color: white;
    z-index: 3;
    cursor: pointer;
    font-family: sans-serif;
}

.close span,
.close span:before,
.close span:after {
    border-radius: 4px;
    height: 5px;
    width: 35px;
    background: white;
    position: absolute;
    display: block;
    content: '';
}

.close span {
    background: transparent;
}

.close span:before {
    transform: rotate(45deg);
}

.close span:after {
    transform: rotate(-45deg);
}

.outer-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100px;
    cursor: pointer;
}