.contact-container{
    background-color: aliceblue;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh;
    padding: 30px;
}
.contact-information{
    display: flex;
    justify-content: center;
    text-align: start;
    flex-direction: column;
    width: 30%;
    height: 100%;
    color: #5d3b85;
}
.contact-title-container{
    display: flex;
    align-items: center;
    font-size: clamp(2.4rem, 5vw, 2.7rem);
    font-weight: bold;
    width: 100%;
    min-height: 10%;
}
.contact-title{
    width: 100%;
}
.contact-number-container, .contact-email-container, .contact-location-container{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-top: 20px;
    width: 100%;
    min-height: 10%;
}
.contact-text-imagen{
    display: flex;
    justify-content: center;
    text-align: left;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.contact-imagen{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 10%;
    margin-right: 10px;
}
.contact-text{
    width: 90%;
    margin-left: 30px;
    font-weight: bold;
}
.contact-social-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 80%;
    min-height: 12%;
}
.contact-social-box{
    background-color: #C4B7E1;
    border-radius: 100px;
    width: 15%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-social{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(2.4rem, 5vw, 2.7rem);
    width: 100%;
    height: 100%;
    color: #5d3b85;
}
.contact-social i {
    font-size: 60%;
    width: 60%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-social-container .contact-social-box:nth-of-type(1) .contact-social:hover {
    text-decoration: none;
    color: blue;
    transition: 1s color;
}
.contact-social-container .contact-social-box:nth-of-type(2) .contact-social:hover {
    text-decoration: none;
    color: black;
    transition: 1s color;
}
.contact-social-container .contact-social-box:nth-of-type(3) .contact-social:hover {
    text-decoration: none;
    color: purple;
    transition: 1s color;
}
.contact-social-container .contact-social-box:nth-of-type(4) .contact-social:hover {
    text-decoration: none;
    color: red;
    transition: 1s color;
}
.contact-social-container .contact-social-box:nth-of-type(5) .contact-social:hover {
    text-decoration: none;
    color: black;
    transition: 1s color;
}

.contact-forms{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 30%;
    height: 100%;
    color: #5d3b85;
}
.contact-forms-nombre, .contact-forms-correo, .contact-forms-asunto, .contact-forms-mensaje, .contact-forms-enviar{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    min-height: 10%;
}
.contact-forms-mensaje{
    min-height: 25%;
}
.contact-forms input{
    width: 90%;
    height: 85%;
    background-color: #C4B7E1;
    border-radius: 0;
    border-width: 0;
    padding: 10px;
}
.contact-forms-text{
    width: 100%;
    height: 85%;
    background-color: #C4B7E1;
    border: none;
    border-radius: 0;
    padding: 10px;
    resize: none;
    overflow-y: auto;
    color: #333;
}
.contact-forms button{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 85%;
}
.boton{
    background-color: #5d3b85;
    color: white;
    font-weight: bold;
}
.icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C4B7E1;
    width: 10%;
    height: 85%;
}
.auto-text {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1024px) {
    .contact-container{
        flex-direction: column;
        gap: 30px;
    }
    .contact-information{
        width: 90%;
        height: auto;
    }
    .contact-social-container{
        width: 50%;
        justify-content: start;
        gap: 20px;
    }
    .contact-social-box {
        width: 40px;
        height: 40px;
    }
    .contact-forms{
        width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .contact-container{
        flex-direction: column;
    }
    .contact-information{
        width: 280px;
    }
    .contact-social-container{
        width: 80%;
        justify-content: start;
        gap: 20px;
    }
    .contact-social-box {
        width: 40px;
        height: 40px;
    }
    .contact-forms{
        width: 90%;
    }
}