@media (min-width:1024px){

    .header-container__logo{
        position: fixed;
        top: 8px;
        right: 0px;
        width: 150px;
        z-index: -100;
    }
    .container__card{
        width: 100%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .card{
        width: 90%;
        max-width: 540px;
        height: auto;
        display: flex;
        justify-content: space-between;
        margin: 14px 6px;
        padding: 12px 14px;
        border-radius: 10px;
        background-color: #fff;
        margin-left: auto;
        margin-right: auto;
        text-align: start;
        box-shadow: 0px 4px 10px rgba(112, 144, 176, 0.2);
    }
    
    .card__demo{
        width: 90%;
        max-width: 540px;
        height: auto;
        margin: 14px 6px;
        padding: 12px 14px;
        border-radius: 10px;
        background-color: #fff;
        margin-left: auto;
        margin-right: auto;
        text-align: start;
        box-shadow: 0px 4px 10px rgba(112, 144, 176, 0.2);
    }


    .container__photos{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 18px 12px;
        padding: 12px 14px;
        
    }
}