/*	# SECTION CONTACTO
===================================*/
.section-contacto {
margin: 6.25rem 0 4rem;
position: relative;
}
.section-contacto .section-header {
margin-bottom: 1rem;
}
.section-contacto__text {
text-align: center;
margin-bottom: 2.5rem;
}
.section-contacto .contacto-info__field:last-child {
border-bottom: 0px solid transparent;
}
.section-contacto__media {
display: none;
}
.section-contacto__figuras {
position: absolute;
top: 3.75rem;
left: 0;
width: 100%;
z-index: -1;
}
@media (min-width: 768px) {
.section-contacto .section-header {
    max-width: unset;
    text-align: start;
}
}
@media (min-width: 1024px) {
.section-contacto__wrapper {
    display: flex;
    justify-content: space-between;
}
.section-contacto__info {
    width: 35%;
}
.section-contacto__media {
    display: block;
    width: 21.25rem;
    height: 16.25rem;
}
.section-contacto__media img {
    object-fit: cover;
}
.section-contacto__form {
    width: 55%;
}
.section-contacto__figuras {
    position: absolute;
    top: unset;
    bottom: 20%;
    left: 0;
    width: 100%;
}
}

/*	# CONTACTO FORM
===================================*/
.contacto-form {
font-family: var(--mwm--font-family-alt);
}
.contacto-form input,
.contacto-form textarea,
.contacto-form select {
background: white;
border: 1px solid black;
border-radius: 10px;
padding: 0.625rem 0.875rem;
}
.contacto-form label {
font-size: 0.875rem;
color: var(--mwm--color--black);
font-weight: var(--mwm--font-weight--medium);
}
.contacto-form ul {
margin: 0 0 0.25rem;
}
.contacto-form__checkboxes span, .contacto-form__checkboxes a {
color: var(--mwm--color--black);
font-weight: var(--mwm--font-weight--medium);
}
.contacto-form__select {
position: relative;
}
.contacto-form__select:after {
content: url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.38672 11.4277L0.190566 0.177734L10.5829 0.177735L5.38672 11.4277Z' fill='black'/%3E%3C/svg%3E%0A");
line-height: 0;
position: absolute;
top: 1rem;
right: 0.875rem;
}
.contacto-form button {
padding: 0.1875rem 2.5rem;
}
@media (min-width: 768px) {
.contacto-form__group {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}
.contacto-form__group > * {
    flex: 1;
}
}