*{
    max-width: 1400px;
    box-sizing: border-box;
    height: auto;
}
.img{
    vertical-align: middle;
    font-style: italic;
    width: 60%;
    height: 100%;
    object-fit: cover;
}
.rasm{
    width: 100%;
}
.big{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
}
.card1{
    width: 100%;
    border: solid 5px red;
}
.btn{
    z-index: 3;
    position: relative;
    
}
.rsm{
    right: 0;
    bottom: 0;
    position: absolute;
    border: solid 5px red;
}
.l{
    color: white;
    background-color: black;
    border-radius: 6px;
}
.card2{
    
    grid-column: span 2;
    grid-row: span 2;
    width: 100%;
    border: solid 5px red;

}
.card3{
    width: 100%;
    border: solid 5px red;
}
.card4{
    width: 100%;
    border: solid 5px red;
}
.card5{
    width: 100%;
    border: solid 5px red;
}
p{
    height: auto;
}
@media screen and (max-width:1000px){
    .big{
        grid-template-columns: repeat(2,1fr);

    }
    .card2{
        grid-column: unset;
        grid-row: unset;
    }
    .card3{
        width: 100%;
        grid-column: span 2;
        grid-row: span 2;
    }
}
@media screen and (max-width:550px){
    .big{
        grid-template-columns: 1fr;
    }
    .card3{grid-column: unset;
        grid-row: unset;
    }

}