.car-pt{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.car-pt img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.show_on_flat , .show_on_mobile{
    display: none;

}

@media screen and (max-width:1025px){
    .show_on_desk{
        display: none;
    }
    .show_on_flat{
        display: block;
    }

}

@media screen and (max-width:500px){
    .show_on_flat{
        display: none;
    }
    
    .show_on_mobile{
        display: block;
    }

}