.primary-section.six{
    gap: 0;
    justify-content: space-between;
    height: 100vh;
    align-items: center;
}

.contact-container.left{
    /* height: 200px; */
    width: 75%;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}

.contact-container.left .title{
    width: 75%;
    margin-bottom: 5rem;
}


.contact-container.left .title span{
    font-size: 45px;
}

.contact-container.right{   
    width: 462px;
    height: 100%;
    background-color: var(--color-negro);
    align-items: center;
    justify-content: center;
}


.contact-container.right ul{
    flex-direction: column;
    width: max-content;
    padding: 30px;
}

.contact-container.right ul li{
    list-style-type: none;
    margin: 2rem 0;
}

.contact-container.right ul li i{
    color: white;
    font-size: 18px;
}

.contact-container.right ul a{
    text-decoration: none;
    text-transform: lowercase;
}


.contact-form-container form{
    gap: 0;
    flex-direction: column;
    justify-content: center;
}


.contact-form-container form input{
    /* background: #eef3fa; */
    background: #efefef;
    width: 600px;
    height: 50px;
    /* margin-left: 40px; */
    outline: none;
    margin: 10px 20px;
    color: #495c6a;
    border: none;
    border-radius: 4px;
    /* margin-bottom: 15px; */
    padding-left: 15px;
    display: block;
}

.contact-form-container textarea{
    width: 600px;
    background: #efefef;
    border: none;
    border-radius: 2px;
    margin: 10px 20px;

    padding-left: 15px;
    padding-top: 15px;
    color: #495c6a;
    outline: none;
    font-size: 14px;
    padding-right: 15px;
    resize: none;
    display: block;
    height: 120px;
}


.btnVerMasProductos{
    height: 2.6rem;
    width: 13.3rem;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: linear-gradient( 135deg, rgba(163, 168, 240, 1) 0%, rgba(105, 111, 221, 1) 100% );
    color: #fff;
    outline: none;
    border: 0;
    font-weight: bold;
    margin: 4rem auto;
    font-family: "Open Sans", sans-serif;

}

.btnVerMasProductos a{
    color: rgb(255, 255, 255);
    font-size: 14px;
    transition: all 500ms ;
}

.btnVerMasProductos:hover{
    opacity: .9;
}

.btnVerMasProductos:hover > a{
    color: var(--text-color );
}

@media screen and (max-width: 850px){
    .primary-section.six{
        flex-direction: column;
        /* height: max-content;
        min-height: 100vh; */
    }

    .contact-container.left{
        width: 100%;
    }

    
    .contact-container.right{
        width: 100%;
        height: 250px;
    }
    
    .contact-form-container{
        width: 100%;
    }

    .contact-form-container form input{
        width: 90%;
    }

    .contact-form-container form textarea{
        width: 90%;
    }

    .contact-container.left .title{
        margin-top: 5rem;
    }

    .contact-container.right{
        display: none;
    }


    .contact-container.right ul li i{
        font-size: 14px;
    }

    .contact-container.right ul a{
        font-size: 14px;
    }

    .contact-container.right ul li{
        margin: 0;
        margin-bottom: 22px;
    }


    .contact-container.right ul{
        padding: 18px;
    }

}


.footer_1{
    background-color: var(--color-negro);
    height: 3rem;
    width: 100%;
    position: relative; 
    bottom: 0; /* Position at the bottom */
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_1 .diseniado{
    position: absolute;
    left: 0;
    display: flex;
    gap: .5rem;
    align-items: center;
}

.footer_1 .diseniado span{
    font-size: 14px;
    color: #fff;
}

.footer_1 .diseniado span.active{
    color: #7278e0;
}



.footer_1 .contenedor-texto{
    width: max-content;
    height: max-content;
    margin: 0 auto;
}

.footer_1 .contenedor-texto span{
    font-size: 14px;
    /* letter-spacing: .5px; */
    color: #fff;
}