/* 
      ============================================= BANNER DE CONTACTOS =============================================
*/
.banner__contact__section__img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: top;
    border-radius: 0px;
}

/* 
      ============================================= FORMULARIO DE CONTACTOS =============================================
*/
.form__contact__section {
    background-color: var(--primary-color-50);
}

.form__contact__section__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.form__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__card {
    padding: 1rem;
    border: 1px solid var(--primary-color-200);
    border-radius: 0.5rem;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__contact__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.form__contact__button svg {
    width: 1.5rem;
    height: 1.5rem;
    rotate: -45deg;
}

.contact__rigth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__info h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-color-900);
    text-align: left;
}

.contact__info__numbers {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact__info__numbers img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact__info__numbers__text {
    display: flex;
    flex-direction: column;
}

.contact__info__numbers__text span {
    font-size: 0.875rem;
    color: var(--gray-color-500);
}

.contact__info__numbers__text p {
    font-size: 1rem;
    color: var(--gray-color-900);
    font-weight: 500;
    margin: 0;
}

.contact__address {
    display: flex;
    flex-direction: column;
}

.contact__address h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-color-900);
    display: inline-flex;
    margin-bottom: 0.5rem;
}

.contact__address p {
    font-size: 0.875rem;
    color: var(--gray-color-500);
    margin: 0;
    color: var(--gray-color-900);
}

.contact__social__media {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.contact__social__media__item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-color-50);
    color: var(--primary-color-900);
    transition: all 0.3s ease-in-out;
}

.contact__social__media__item:hover {
    color: var(--primary-color-500);
}

.contact__social__media__item svg {
    width: 1.7rem;
    height: 1.7rem;
}

/* 
      ============================================= XS =============================================
*/
@media (min-width: 320px) {}

/* 
      ============================================= SM =============================================
*/
@media (min-width: 640px) {

    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/
    .banner__contact__section__img {
        height: 220px;
    }


    /* 
      ============================================= FORMULARIO DE CONTACTOS =============================================
*/
    .form__contact__section__content {
        grid-template-columns: 1fr 1fr;
    }
}

/* 
      ============================================= MD =============================================
*/
@media (min-width: 768px) {

    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/
    .banner__contact__section__img {
        height: 270px;
    }

    /* 
      ============================================= FORMULARIO DE CONTACTOS =============================================
*/
    .form__contact__section__content {
        grid-template-columns: 1fr 1fr;
    }

    .contact__info h3 {
        font-size: 1.125rem;
    }

    .contact__info__numbers img {
        width: 100px;
        height: 100px;
    }

    .contact__info__numbers__text span {
        font-size: 1rem;
    }

    .contact__info__numbers__text p {
        font-size: 1.125rem;
    }

    .contact__address h3 {
        font-size: 1.125rem;
    }

    .contact__address p {
        font-size: 1pformrem;
    }




}

/* 
      ============================================= LG =============================================
*/
@media (min-width: 1024px) {
    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/

    .banner__contact__section__img {
        height: 360px;
    }
}

/* 
      ============================================= XL =============================================
*/
@media (min-width: 1280px) {
    /* 
      ============================================= BANNER DE CONTACTOS =============================================
*/

    .banner__contact__section__img {
        height: 450px;
    }
}