/* mobile */
@media screen and (max-width: 600px) {
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }
    body {
        width: 100%;
    }

    .grid-4{
        display: grid;
        grid-template-columns: auto auto auto auto;
        text-align: center;
    }

    .box1{
        width: 70px;
        height: 60px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 38px;
        height: 36px;
    }

    .imgSlide{
        display: none;
        width: 0%;
    }

    .imgAnuntT{
        width: 80%;
        border-radius: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        border: 2px solid black;
    }

    .anuntPhone{
        display: block;
    }

    .anuntTableta{
        display: none;
    }

    .gridPC{
        display: none;
    }
}

/* tableta */
@media (min-width: 601px) and (max-width: 768px) {
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }

    .anuntPhone{
        display: none;
    }

    .anuntTableta{
        display: block;
    }

    .gridPC{
        display: none;
    }

    .imgAnuntT{
        width: 80%;
        border-radius: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        border: 2px solid black;
    }

    body {
        width: 100%;
    }

    .imgSlide{
        width: 100%;
    }

    .grid-4{
        display: grid;
        grid-template-columns: auto auto auto auto;
        text-align: center;
    }

    .box1{
        margin-top: 20px;
        width: 90px;
        height: 80px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 45px;
        height: 47px;
    }

    .imgGrid3{
        width: 100px;
        height: 100px;
        border: 2px solid black;
        padding: 2px;
        border-radius: 10px;
        background-color: #EDEDED;
    }
}

/* laptop mic */
@media (min-width: 769px) and (max-width: 1024px) {
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }

    .anuntPhone{
        display: none;
    }

    .anuntTableta{
        display: none;
    }

    body {
        width: 100%;
    }

    .imgSlide{
        width: 100%;
    }

    .gridPC{
        display: grid;
        grid-template-columns: 50% 50%;
        margin: 10px;
        text-align: center;
    }
    
    .grid-4{
        margin-left: 20%;
        display: grid;
        grid-template-columns: 20% 20% 20% 20%;
        text-align: center;
    }

    .box1{
        margin-top: 20px;
        width: 115px;
        height: 95px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 60px;
        height: 64px;
    }

    .imgGrid3{
        width: 100px;
        height: 100px;
        border: 2px solid black;
        padding: 2px;
        border-radius: 10px;
        background-color: #EDEDED;
    }

    .imgAnuntPC{
        width: 370px;
        height: 350px;
        border: 2px solid black;
        border-radius: 10px;
        object-fit: fill;
    }
}

/* ecran mare */
@media only screen and (min-width: 1025px){
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }

    .anuntPhone{
        display: none;
    }

    .anuntTableta{
        display: none;
    }

    .gridPC{
        display: grid;
        grid-template-columns: auto auto;
        margin: 10px;
        text-align: center;
    }

    body {
        width: 100%;
    }

    .grid-3{
        display: none;
    }

    .imgSlide{
        width: 100%;
    }

    .grid-4{
        margin-left: 25%;
        display: grid;
        grid-template-columns: 17% 17% 17% 17%;
        text-align: center;
    }

    .gridPC{
        display: grid;
        grid-template-columns: 50% 50%;
        margin: 10px;
        text-align: center;
    }

    .box1{
        margin-top: 20px;
        width: 130px;
        height: 100px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 60px;
        height: 64px;
    }

    .imgGrid3{
        width: 100px;
        height: 100px;
        border: 2px solid black;
        padding: 2px;
        border-radius: 10px;
        background-color: #EDEDED;
    }

    .imgAnuntPC{
        width: 600px;
        height: 550px;
        border: 2px solid black;
        border-radius: 10px;
        object-fit: fill;
    }
}