/***** Contact *****/

.contact {
    width: min(1120px, 92%);
    margin: 0 auto 2rem;
}

.contact .contact-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.2rem;
    align-items: stretch;
}

.contact .sec {
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(49, 51, 56, 0.78);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 100%;
}

.contact .inline {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
}

.contact .inline i {
    color: var(--accent);
    font-size: 1rem;
}

.contact .inline h5 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}

.contact p {
    margin: 0.25rem 0 0.7rem;
    color: var(--muted);
    line-height: 1.6;
}

.contact hr {
    border: 0;
    height: 1px;
    background: rgba(148, 163, 184, 0.16);
    margin: 0.8rem 0;
}

.contact iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 18px;
}

/***** Responsive Mobile *****/

@media screen and (max-width: 768px) {
    .contact .contact-head {
        grid-template-columns: 1fr;
    }
}

/***** Responsive Tablette *****/

@media screen and (max-width: 990px) and (min-width: 769px) {
    .contact .contact-head {
        grid-template-columns: 1fr;
    }
}
