* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
}


/* NAVIGATION */

.navbar {
    display: flex;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    justify-content: space-around;
    align-items: center;
    letter-spacing: 1px;
    padding: 20px 0;
    height: 125px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.01);
}


.navbar .navbar__right {
    list-style: none;
    display: flex;
}


.navbar .navbar__right a {
    text-decoration: none;
    color: #909090;
    font-size: 12px;
    padding: 10px 15px;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: border 0.3s, color 0.3s;
}

.navbar .navbar__right a:hover {
    border: 2px solid #AAD4A4;
    color: #AAD4A4;
}


.navbar .navbar__left img {
    width: 350px;
}



/* <!-- POLICY TEXT        POLICY TEXT        POLICY TEXT        POLICY TEXT        POLICY TEXT       --> */

.policy-text-section {
    margin-top: 100px;
    width: 100%;
}

.policy-text-wrapper {
    width: 60%;
    margin: 0 auto;
}

.policy-text-wrapper h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #505050;
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
    padding: 30px;
}

.policy-text-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #505050;
    font-size: 25px;
    text-align: center;
    padding: 20px;
}

.policy-text-wrapper p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    color: #505050;
}

.policy-text-wrapper p.bold {
    font-weight: 400;
}

.policy-text-wrapper p.list {
    font-weight: 300;
}





/* COOKIES-ALERT   COOKIES-ALERTCOOKIES-ALERT  COOKIES-ALERT */


.cookies-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 100px;
    border-top: 10px solid #AAD4A4;
    background-color: #fff;
}

.cookies-alert-wrapper {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.cookies-alert-wrapper p {
    width: 90%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.cookies-alert-wrapper p a {
    color: #AAD4A4;
}

button.cookies-accept {
    display: block;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.1s;
}

button.cookies-accept:hover {
    background-color: #AAD4A4;
}

.cookie-hide {
    display: none;
}

.cookie-show {
    display: block;
}


/* FOOTER      FOOTER      FOOTER      FOOTER      FOOTER      FOOTER      FOOTER      FOOTER       */

.footer-wrapper {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fff;
}


.footer-text-wrapper {
    text-align: center;
    height: 45px;
    line-height: 45px;
    width: 100%;
    background-color: #F5F5F5;
}

.footer-text-wrapper p {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 45px;
    letter-spacing: 0.1em;
    word-spacing: 5px;
    text-transform: uppercase;
    color: #909090;
}


@media (max-width: 1100px) {


    /* NAVIGATION   NAVIGATION  NAVIGATION  NAVIGATION  NAVIGATION  NAVIGATION  NAVIGATION  NAVIGATION*/
    .navbar {
        position: fixed;
        background-color: #222;
    }

    .navbar-container {
        display: none;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        justify-content: center;
        align-items: center;
        border: 1px solid #fff;
    }

    .navbar__left {
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #222;
    }

    .navbar__center img {
        width: 200px;
    }



    /* .navbar__left {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    } */

    .navbar .navbar__right {
        display: none;
    }

    .navbar .navbar-socials {
        position: relative;
        width: 100%;
        left: 0;
        top: 30px;
        padding: 20px;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar__left li,
    .navbar__right li {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        width: 100%;
        background-color: #fff;
    }

    .navbar li.dropdown p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .navbar li.dropdown img.arrow-down {
        display: none;
    }

    .navbar li.dropdown img.arrow-right {
        display: block;
        position: absolute;
        top: 50%;
        left: 60%;
        transform: translate(-50%, -50%);
    }

    .navbar-burger-btn {
        display: block;
    }

    .navbar li.dropdown:hover li.list-item {
        display: none;
    }

    li.dropdown:hover ul,
    li.dropdown ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -30%);
    }

    li.list-item {
        height: 40px;
    }

    li.list-item a {
        padding-top: 0;
        padding-bottom: 0;
    }


    /* <!-- POLICY TEXT        POLICY TEXT        POLICY TEXT        POLICY TEXT        POLICY TEXT       --> */



    .policy-text-section {
        margin-top: 120px;
    }

    .policy-text-wrapper {
        width: 80%;
    }

    .policy-text-wrapper h1 {
        font-size: 20px;
        padding: 15px;
    }

    .policy-text-wrapper h2 {
        font-size: 15px;
        padding: 10px;
    }

    .policy-text-wrapper p {
        font-size: 12px;
        line-height: 20px;
    }






    /* COOKIES         COOKIES         COOKIES         COOKIES      */
    .cookies-alert {
        height: 150px;
    }


    .cookies-alert-wrapper p {
        width: 70%;
        font-size: 10px;
    }



    /* FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER   */

    .footer-text-wrapper p {
        font-size: 6px;
        line-height: 45px;
    }

    .footer-socials-wrapper {
        padding-bottom: 20px;
        height: 71px;
        width: 100vw;
        border-top: 1px solid #C8C6C6;
        text-align: center;
    }

}