@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,4B8r3B4p7yhRXuBWLqsQ546WR43cqQwrbXMDFnBi6vSJBeif8tPW85a7r7DM961Jvk4hdryZoByEp8GC8HzsqJpRN4FxGM9,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');

@font-face {
    font-family: 'silk_italic_medium';
    src: url(../fonts/Silk\ Serif\ Medium\ Italic.otf) format('truetype');
}
@font-face {
    font-family: 'silk_italic_light';
    src: url(../fonts/Silk\ Serif\ Light\ Italic.otf) format('truetype');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    font-family: sans-serif;
}

body{
    overflow-x: hidden;
    background-color: rgb(63, 63, 63);
}


.menu_toggle{display: none;}

.desktop_menu{
    padding-inline: 10px;
    padding-block: 15px;
    position: fixed;
    width: 100%;
    height: 9vh;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.desktop_logo img {height: 7vh; transition: .6s;}
.desktop_logo img:hover {height: 7.2vh;}

.desktop_lista ul{
    display: flex;
    gap: 30px;
}

.desktop_lista a{
    color: #002d62;
    transition: .4s;    
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.desktop_lista a:hover{
    color: #653600;
    font-size: 16px;

}

@media screen and (max-width:800px){
    .desktop_menu{display: none;}

    .menu_toggle{
        padding: 5px 15px 0 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100vw;
        height: 10vh;
        background-color: rgba(237, 237, 237, 0.9);
        backdrop-filter: blur(5px);
        position: fixed;
        z-index: 10;
    }
    .mobile_logo img{
        height: 7.5vh;
    }

    .menu_toggle_social{
        display: flex;
        gap: 17px;
    }
    .menu_toggle_social img{
        width: 25px;
        /* opacity: .85; */
    }

    .menu_toggle p{
        padding: 0 15px 0 15px;
        font-size: 30px;
        color: #002d62;
    }

    .mobile_lista{
        display: none;
        width: 100vw;
        text-align: center;
        background-color: rgba(237, 237, 237, 0.9);
        position: absolute;
        top: 10vh;
        left: 0;
        z-index: 10;
    }

    .menu_toggle ul{
        display: none;
    }

    .mobile_lista li{
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #002e627c;
    }

    .mobile_lista a{
        color: #002d62;
        font-size: 23px;
        font-family: Poppins;
        font-weight: 300;
        font-size: 18px;
    }


}