
/*---------------------------------------------------- PRODUCTOS -------------------------------- */
.new,
.newpar {
    display: none;
}

#container-main {
    /* margin-top: 10rem; */
    /* height: 100vh; */
    background-color: #EA002A;
    display: flex;
    flex-direction: column;
    /* gap: 3rem; */
}

#container-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
    /* height: 100vh; */
    position: relative;
    background: #EA002A;
    padding-top: 10rem;
}

#container-text .cmp-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#container-text img {
    max-width: 20%;
    min-width: 300px;
}

#form-title {
    color: white;
    font-size: calc(10px + 1vw);
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

#form-title>p {
    max-width: 400px;
    margin-bottom: 0;
}

#separador {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #E9273A;
    clip-path: polygon(0 0%, 100% 0, 100% 100%, 50% 0%, 0 100%);
    transform: rotate(180deg);
    bottom: -2px;
    height: 3rem;
}


#separador_verde {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #EA002A;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    bottom: -19px;
    height: 15%;
}


#container_sec-productos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#prod_img {}

#prod_text-titulo {
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-size: calc(20px + 1vw);
}

#container_p-1,
#container_p-2,
#container_p-3,
#container_p-4,
#container_p-5{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    height: 100%;
    cursor: pointer;
}

#container_p-1 > .image,
#container_p-2> .image,
#container_p-3> .image,
#container_p-4> .image,
#container_p-5> .image{
    height: 100%;
}

#prod_img{
    height: 100%;
}
#prod_img > img{
    height: 100%;
}

#container_p-1{
    background: #00C8F4;
    transform: translateY(-23px);
}

#container_p-2{
    background: #F2518D;
    transform: translateY(-23px);
}

#container_p-3{
    background: #FF932A;
}

#container_p-4{
    background: #F4423E;
}

#container_p-5{
    background: #42C647;
}

/*---------------------------------------------------- PRODUCTOS -------------------------------- */
/*-------------- KEY FRAMES--------------------------------- */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/*------------------------MEDIA QUERYS---------------------- */
@media screen and (max-width: 768px) {

    #container_sec-productos > div:nth-child(5){
        grid-column: span 2;
    }
    
    #container_p-5{
        flex-direction: row;
        justify-content: center;
    }


}

@media screen and (min-width: 769px) {
    #container_p-3, #container_p-4, #container_p-5 {
        transform: translateY(-23px);
    }

    #container_sec-productos {
        display: flex;
    }

        #container_sec-productos > div{
    width: 20%;
}
}