

/*Novedades*/

.novedades{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    padding-top: 200px;
    padding-bottom: 200px;
}

.novedades .cont{
    width: 90%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 1600px;
}

.novedades .cont .tittles{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 3rem;
}


.novedades .cont .card-cont{
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
}

.novedades .cont .card-cont iframe{
  width: 450px;
  height: 520px;
}




/*Medias Querys*/

@media screen and (max-width: 1215px) {
    .novedades .cont .card-cont{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    }
}

@media screen and (max-width: 730px) {
    .novedades .cont .card-cont{
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    }
}


@media screen and (max-width: 1740px) {
    .novedades .cont .card-cont iframe{
        width: 450px;
    }

}

@media screen and (max-width: 1565px) {    
    .novedades .cont .card-cont iframe{
        width: 400px;
    }
}

@media screen and (max-width: 1390px) {    
    .novedades .cont .card-cont iframe{
        width: 350px;
    }
}

@media screen and (max-width: 1215px) {    
    .novedades .cont .card-cont iframe{
        width: 475px;
    }
}

@media screen and (max-width: 1100px) { 
    .novedades .cont .card-cont iframe{
        width: 430px;
    }
}

@media screen and (max-width: 975px) {    
    .novedades .cont .card-cont iframe{
        width: 400px;
    }
}

@media screen and (max-width: 915px) {    
    .novedades .cont .card-cont iframe{
        width: 375px;
    }
}

@media screen and (max-width: 850px) {    
    .novedades .cont .card-cont iframe{
        width: 350px;
    }
}

@media screen and (max-width: 800px) {    
    .novedades .cont .card-cont iframe{
        width: 320px;
    }
}

@media screen and (max-width: 730px) {    
    .novedades .cont .card-cont iframe{
        width: 100%;
        height: 650px;
    }
}