@media only screen and (max-width: 1340px){
    header .wrapper{
        display: none;
    }
}

@media only screen and (max-width: 1240px){
    header nav{
        background-color: white;
        min-height: 8vh;
        padding: 0.5em 1em;
    }
    header .wrapper{
        display: none;
    }
    header .wrapper .row{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1em;
        display: none;
    }
    header .header-content{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 10em;
        text-align: center;
        line-height: 1.2;
    }
    
main .wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3em;
    margin-top: 5em;
}
footer .wrapper{
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
    justify-content: center;
    margin-top: 3em;
    padding: 1em 1em;
}
header{
    background-position-x: -60px;
}
}
@media only screen and (max-width: 740px){

    header .header-content h1{
        font-size: 4em;
        color: white;
    }
    main .wrapper .item img{
        height: 150px;
    }
    
 }