@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');
 
:root {
    --orange: #EE7402;
    --dark-green: #166818;
    --light-green: #13aa00;
    --grey: #808080;
    --red: #D60000;
}

::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

/* navbar */

.nav-mobile {
    display: none;
}

nav {
    display: flex;
    align-items: center;
    width: 1440px;
    height: 120px;
    justify-content: space-between;
}

.mobile-nav {
    display: none;
    width: 200px;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    box-shadow: 0 0 0 9999px #0000008e;
}

.ri-close-line {
    display: none;
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 18px;
}

.ri-close-line:hover,
.ri-menu-line:hover {
    cursor: pointer;
}


.ri-menu-line {
    display: none;
}

ul,
a {
    list-style: none;
    text-decoration: none;
    color: inherit;
}

.nav-items {
    display: flex;
    justify-content: space-between;
    width: 870px;
    height: 70px;
}

.nav-items li {
    font-weight: 600;
    height: 70px;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-items li:hover {
    font-weight: 600;
    background-color: #EE7402;
    text-align: center;
    cursor: pointer;
}

.doneer-btn {
    width: 190px;
    height: 40px;
    border-radius: 100px;
    border: none;
    background-color: var(--red);
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.doneer-btn:hover {
    background-color: #13aa00;
    cursor: pointer;
}

.sticky{
    position: fixed;
    top: 0;
    z-index: 1;
    background-color: white;
    opacity: 90%;
}

/* main */


/* footer */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 270px;
    width: 100%;
    height: 300px;
    background-color: #EE7402;
    color: white;
}

.footer-container {
    display: flex;
    width: 1440px;
    align-items: start;
    height: 300px;
    gap: 170px;
    padding-top: 20px
}

.footer__logo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
}

.slogan {
    margin-top: -50px;
}

footer a {
    width: max-content;
}

.footer__quick-links a:hover {
    border-bottom: #fff 2px solid;
    cursor: pointer;
}

.schiedam {
    display: flex;
    align-items:center;
    gap: 30px;
    margin-bottom: 20px
}

.footer__quick-links,
.footer__anbi,
.footer__adress {
    display: flex;
    flex-direction: column;;
    gap: 8px;
    padding-top: 15px;
}

.footer__quick-links h4,
.footer__anbi h4 {
    margin-bottom: 10px;
}

.mobile-footer {
    display: none;
}

@media only screen and (max-width: 650px) {
    body {
        overflow-x: hidden;
    }

    nav {
        display: none;
        height: 75px;
        width: 480px;
        position: relative;
    }

    .nav-items {
        display: none;
    }
    .doneer-btn {display: none;}

    .mobile-nav.active {
        display: flex;
    }

    .nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 95%;
        height: 70px;
    }

    .mobile-nav-items {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 300px;
        width: 200px;
        margin-top: 50px;
    }

    .mobile-nav-items li:hover {
        cursor: pointer;

        color: orange;
    }

    .ri-menu-line {
        display: flex;
        font-size: 20px;
    }

    .ri-close-line {
        display: flex;
    }

   

footer {
    height: 800px;
}


.footer-container {
    display: none;
}

.mobile-footer {
    display: flex;
    flex-direction: column;
}

.footer__logo-mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.schiedam-mobile {
    display: flex;
    align-items:center;
    gap: 30px;
    margin-bottom: 20px
}

.footer__quick-links-mobile,
.footer__adress-mobile,
.footer__anbi-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 15px; 
    margin-top: 20px;
}

}

