*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection{
    color: #000;
    background: #1ECD56;
}

html{
    scroll-behavior: smooth;
    font-family: 'Raleway', sans-serif;
}

body{
    overflow-x: hidden !important;
}

nav{
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img{
    width: 70px;
}

nav ul{
    list-style: none;
    display: flex;
    font-family: 'Noto Sans', sans-serif;
}

nav ul li{
    margin-left: 20px;
    padding: 10px 0;
}

nav ul li a{
    color: white;
}

nav ul li a:hover{
    color: #1ECD56;
}

nav ul li:last-child{
    border: 1px solid #1ECD56;
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
}

nav ul li:last-child a{
    color: #1ECD56;
}

nav ul li:last-child:hover a{
    color: white;
}

nav ul li:last-child:hover{
    background-color: #1ECD56;
    transition: background-color ease-in-out .2s;
}

nav ul li a{
    text-decoration: none;
}

.menu{
    display: none;
    cursor: pointer;
}

.menu .line{
    width: 25px;
    height: 2px;
    background-color: #1ECD56;
    margin: 5px 0;
    position: relative;
}

/*Footer*/
footer{
    /* background-color: #181E19; */
    background-color: #000;
    color: #F1F6F1;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 200;
    padding: 4rem 10% 4rem 10%;
}

footer a{
    color: #F1F6F1;
    display: inline-block;
    text-decoration: none;
}

footer .footer-contact a{
    display: block;
}

footer .footer-contact a:last-of-type{
    background-color: #1ECD56;
    border: 1px solid #1ECD56;
    padding: 8px 12px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

footer .footer-contact a:last-of-type:hover{
    background-color: transparent;
    transition: background-color ease-in-out .2s;
}

footer .container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
}

footer section{
    width: calc(100vw/3);
    margin-right: 20px;
}

footer section:last-of-type{
    margin-right: 0;
}

footer .footer-contact address, footer .footer-contact a{
    margin-bottom: 10px;
}

footer .footer-links ul{
    list-style: none;
}

footer section h3{
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 24px;
}

.footer-links ul li{
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #F1F6F1;
}

.footer-links ul li:last-child{
    border: none;
}

.footer-links ul li a:hover{
    color: #1ECD56;
}

footer .copy-right{
    text-align: center;
    font-size: 10px;
    padding: 1rem;
    border-top: 1px solid #F1F6F1;
}

@media screen and (max-width:1000px){
    footer{
        padding: 4rem 5% 4rem 5%;
    }

    footer .container{
       flex-direction: column;
       text-align: center;
    }

    footer section h3{
        margin-top: 1.5rem;
    }

    footer section{
        width: 100%;
    }

}

/*Tablet*/
@media screen and (max-width: 750px){
    nav{
        height: 15vh;
    }

    .logo img{
        width: 50px;
    }

    .nav-links{
        display: none;
    }

    .menu{
        display: block;
    }

    nav .show{
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #000;
        height: 35vh;
        z-index: 1000;
        margin-top: 15vh;
        padding-left: 10%;
        width: 100%;
        padding-left: 0px;
    }

    nav ul li:last-child{
        border: none;
        padding-left: 0px;
    }

    nav ul li:last-child:hover{
        background-color: transparent;
    }

}

@media screen and (max-width: 400px){
    nav{
        height: 20vh;
    }

    nav .show{
        height: 45vh;
        margin-top: 20vh;
        font-size: 12px;
    }

    footer section h3{
        font-size: 18px;
    }

    .footer-links ul li{
        border-bottom: none;
    }
}