@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stint+Ultra+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    #wrapper{
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
    }
    /* SET COLOR OF EACH TOP PAGE */

    /* NAV */
    .nav-wrapper{
        width: 100%;
        height: 150px;
        max-width: 1440px;
        margin: 0 auto;
        background-color: #facd89;
        display: flex;
        flex-direction: row;
        position: fixed;
        /* top: 5%;     */
        z-index: 9999;
        }
    .container{
        width: 100%; 
        padding: 10px 30px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        position: relative;
    }
    .nav-left{
        width: 50%;
        display: flex;
        align-items: center;
        font-family: "Noto Serif", serif;
    }
    .nav-right{
        width: 50%;
        display: flex;
        align-items: center;
        height: 110px;
        z-index: 1000;
        overflow: visible;
    }
    /* HAMBURGER MENU  */
    .hamburger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        top: 18px;
        right: 20px;
    }
    .hamburger-menu .bar {
        width: 25px;
        height: 3px;
        margin: 5px 20px;
        transition: 0.4s;
        border: #000000 solid 3px;
    }
    .clear{
        clear: both;
    }
    .nav-left h1{
        font-size: 50px;
        font-family: "Tinos", serif;
        font-weight: 600;
        font-style: normal;
        margin-top: -20px;
        position: absolute;
        left: 10%;
    }
    .nav-right ul{
        display: flex;
        position: relative;
        z-index: 10;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    #nav-right-items.show {
        display: flex;
    }
    .nav-right ul li{
        list-style: none;
        padding: 20px;
        min-height: 40px;    
    }
    .nav-right ul li a {
        font-family: "Tinos", serif;
        position: relative;
        display: block;
        color: #000;
        font-size: 30px;
        font-weight: 600;
        text-decoration: none ;  
        pointer-events: auto;    
        margin-left: -20px;
    }
    .nav-right ul li a:hover {
        color: rgb(206, 8, 8);
        cursor: pointer;
    }

    /* SET COLOR OF EACH TOP PAGE */
    .nav-right a.active{
        color: rgb(206, 8, 8);
    }




    /* FOOTER */
    .footer{
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer img{
        width: 100%;
        height: 200px;
        object-fit: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute; 
        left: 0;  
        right: 0;    
        margin-top: 0;
        opacity: 80%;
        z-index: -1;
    }
    .footer p{
        color: #0e8ac3;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 60px;    
    }

@media(max-width: 768px){
    *{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}

@media(max-width: 480px){
    *{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}

@media(max-width: 380px){
    *{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}

@media(max-width: 320px){
    *{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}