/*header*/
html,body{
    font-family: 'Montserrat', sans-serif;
}
.title-font{
    font-family: 'Merriweather', serif;
}
.burger {
    position: relative;
    width: 45px;
    height: 34px;
    transition: .3s ease-in-out;
}

.burger span{
    position: absolute;
    height: 6px;
    border-radius: 3px;
    width: 100%;
    background: #ffffff;
    top: 0;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}

.burger span:nth-child(1){
    top: 0;
}
.burger span:nth-child(2),
.burger span:nth-child(3){
    top: 13px;
}
.burger span:nth-child(4){
    top: 26px;
}


.burger.active span{
    background: #fff;
}
.burger.active span:nth-child(1),
.burger.active span:nth-child(4){
    opacity: 0;
}

.burger.active span:nth-child(2){
    transform: rotate(45deg);
}

.burger.active span:nth-child(3){
    transform: rotate(-45deg);
}

.overlay{
    position: fixed;
    background: #ffffff;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s, visibility .3s, height .3s;
}

nav {
    font-size: 2rem;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul li{
    opacity: 0;
    margin: 1rem 0;
}
nav ul li a{
    color: #000000;
    text-decoration: none;
    transition: opacity .2s ease;
    opacity: .75;
}
nav ul li a:hover{
    opacity: 1;
    color:#000000;
}

/* Animation */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-25%, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}



.overlay.visible{
    z-index: 2;
    opacity: .85;
    visibility: visible;
    height: 100%;
}
.overlay.visible li {
    animation: fadeInLeft .3s ease forwards;
}
.overlay.visible li:nth-of-type(1){
    animation-delay: .23s;
}
.overlay.visible li:nth-of-type(2){
    animation-delay: .26s;
}
.overlay.visible li:nth-of-type(3){
    animation-delay: .29s;
}
.overlay.visible li:nth-of-type(4){
    animation-delay: .32s;
}
.overlay.visible li:nth-of-type(5){
    animation-delay: .35s;
}


.home-background{
    height: 500px;
}
.custom-logo{
    max-width: 200px;
}
.fixed-top .custom-logo{
    max-width:130px;
}
.fixed-top .burger{
    width: 30px;
    height: 15px;
}
.fixed-top .burger span{
    height: 3px;
}
.fixed-top .burger span:nth-child(2),
.fixed-top .burger span:nth-child(3) {
    top: 7px;
}
.fixed-top .burger span:nth-child(4) {
    top: 14px;
}

/*slider homepage*/
