.contact {
    display: grid;
    gap: 1.5rem;
    grid-template-areas: "contact__phone"
    "contact__appointment"
    "contact__agency";
    grid-template-columns: 100%;
    .btn {
        width: 100%;
        text-align: center;
        @media (min-width: 768px) {
            width: auto;
            text-align: initial;
        }
    }
    img {
        margin: auto;
        display: block;
        width: 4rem;
        @media (min-width: 768px) {
            width: auto;
        }
    }
    h3 {
        color: var(--gray-500);
    }
    ul {
        text-align: left;
    }
    &>div {
        padding: 1.5rem;
        background: var(--gray-100);
        border-radius: var(--radius-8);
    }
    &.contact__page {
        grid-template-areas: "contact__phone"
            "contact__pixy"
            "contact__facebook"
            "contact__faq"
            "contact__agency";
        @media (min-width: 768px) {
            grid-template-areas:
                'contact__phone contact__agency'
                'contact__faq contact__agency'
                'contact__facebook contact__agency';
        }
    }
    @media (min-width: 768px) {
        grid-template-areas:
            'contact__phone contact__agency'
            'contact__appointment contact__agency';
        grid-template-columns: 50%;
    }
}
.contact__phone,
.contact__appointment,
.contact__pixy,
.contact__facebook,
.contact__faq {
    display: flex;
    column-gap: 1.5rem;
    row-gap: 1rem;
    flex-direction: column;
    @media (min-width: 768px) {
        flex-direction: row;
    }
}
.contact__pixy {
    display: none;
}
.contact__phone {
    grid-area: contact__phone;
    text-align: center;
    @media (min-width: 768px) {
        text-align: left;
    }
}
.contact__appointment {
    grid-area: contact__appointment;
    text-align: center;
    @media (min-width: 768px) {
        text-align: left;
    }
}
.contact__agency {
    grid-area: contact__agency;
    gap: 1rem;
}
.contact__content {
    gap: 1rem;
}
.contact__form {
    width: 100%;
    @media (min-width: 768px) {
        background-color: var(--white);
        border-radius: var(--radius-8);
        padding: 0.5rem;
        border: 1px solid var(--gray-500);
    }
}
.contact__location {
    padding: .75rem 1rem;
    input {
        width: inherit;
        position: relative;
        border: none;
        height: 1.5rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}