* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

li, a, button {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    list-style-type: none;
}

h6 {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    list-style-type: none;
}

Header {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 25px 35px 15px 35px;
}

a:hover{
    color: rgba(135, 210, 245, 1);
}

.logo {
    height: auto;
    width: auto;
    max-height: 60px;
    min-width: 180px;
    cursor: pointer;
    margin-right: auto;
}

.menu li{
    font-size: 16px;
    padding: 15px 5px;
}

.button{
    border-bottom:1px rgb(88, 89, 89) solid;
}

/* Mobile Menu */

.menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.toggle{
    order: 1;
}

.item.button{
    order: 2;
}

.item{
    width: 100%;
    text-align: center;
    order: 3;
    display: none;
}

.item.active{
    display: block;
}

.toggle{
    cursor:pointer;
}

.bars{
    background: rgb(88, 89, 89);
    display: inline-block;
    height: 2px;
    position: relative;
    width: 18px;
    margin-bottom: 5px;
}

.bars::before,.bars::after{
    background: rgb(88, 89, 89);
    content: "";
    display: inline-block;
    height: 2px;
    position: absolute;
    width: 18px;
}

.bars:before{
    top: 5px;
}

.bars:after{
    top: -5px;
}

.features {
    background: rgb(255, 255, 255);
    padding: 150px 20px 160px 20px;
}

/* Tablet Menu */

@media all and (min-width:468px){
    .menu{
        justify-content: center;
    }
    .item.button{
        width: auto;
        order: 1;
        display: block;
    }
    .toggle{
        order: 2;
    }
    .button{
        border: 0px;
    }
    .button a{
        text-decoration: none;
        padding: 7px 15px;
        background: rgb(88, 89, 89);
        border: 0;
        border-radius: 50em;
    }
    .button a:hover{
        transition: all .3s;
        background: rgba(255, 255, 255, 0.5);
    }

    .features {
        background: rgb(255, 255, 255);
        padding: 50px 50px 160px 50px;
    }
}

/* Desktop View */

@media all and (min-width: 768px){
    .item{
        display: block;
        width: auto;
    }
    .toggle{
        display: none;
    }
    .logo{
        order: 0;
    }
    .item{
        order: 1;
    }
    .button{
        order: 2;
    }
    .menu li{
        padding: 15px 10px;
    }
    .menu li.button{
        padding-right: 0;
    }

    .features {
        background: rgb(255, 255, 255);
        padding: 20px 100px 160px 100px;
    }

}


.features figure {
    margin: 50px auto;
    width: 60vw;
}

.features figure img {
    width: 100%;
    position: absolute;
}

#slideshow {
    background: rgb(255, 255, 255);
    margin: 20px auto;
    position: relative;
    width: 60vw;
    height: 30vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 8px;
    margin-top: auto;
}

/* custom scrollbar safari */

::-webkit-scrollbar{
    width: 15px;
}

::-webkit-scrollbar-track{
    background-color: rgb(0, 0, 0);
}

::-webkit-scrollbar-thumb{
    background-color: rgb(88, 89, 89);
}
