@media screen and (max-device-width:1023px) {

    /** globals **/

    .margins{
        width: 100vw;
        padding-left: 7vw;
        padding-right: 7vw;
    }

    .inputs{
        padding:0.3vw;
    }

    .errors{
        display: none;
        color:red;
    }

    button{
        border: none;
    }

    .lines{
        width: 6vw;
        height: 0.15vw;
        background-color: #cba38a;
    }

    .text_xxl{
        font-size: 5.5vw !important;
    }

    .text_xl{
        font-size: 4.5vw !important;
    }

    .text_l{
        font-size: 3.5vw;
    }

    .underlined{
        width: fit-content;
        border-bottom: 1.5px solid #cba38a;
        padding-bottom: 0.5vw;
        cursor: pointer;
    }

    a{
        cursor: pointer;
    }
    
    /** header **/

    #header{
        padding-top: 2vw;
        padding-bottom: 2vw;
        justify-content: space-between;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    #logo{
        width: 12vw;
        height: auto;
    }

    .menuItems{
        cursor: pointer;
        position: relative;
        top: 1.5vw;
    }
    
    .menuLines{
        width: 0;
        height: 0.15vw;
        background-color: #cba38a;
        transition: 0.7s;
    }

    .menuItems:hover .menuLines{
        width: 100%;
    }


    /** footer **/

    #footer{
        background-color: grey;
        padding-top: 2.5vw;
        padding-bottom: 2.5vw;
    }

}