.contact--section {
    position: relative;
    overflow: hidden;
}

.contact--image-and-copy-wrap {
    position: relative;
    overflow: hidden;
}

.contact--image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact--image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.contact--copy {
    position: relative;
    color: #fff;
    padding: 60px var(--theme-content-padding);
}

.contact--copy-title {
    margin-bottom: 50px;
}

.contact--social-title {
    margin-bottom: 50px;
}

.contact--social-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    color: var(--theme-sand);
}

.contact--social-wrap a {
    width: 28px;
    height: 28px;
    transition: all .3s;
    position: relative;
}

.contact--social-wrap a:after {
    content: "";
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
}

.contact--social-wrap a:hover {
    color: var(--theme-red);
}

.contact--form-wrap {
    padding: 50px var(--theme-content-padding);
    background-color: var(--theme-off-white);
    position: relative;
}

.contact--form-inside {
    max-width: 490px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact--container {
        max-width: var(--theme-content-width);
        padding: 60px var(--theme-content-padding);
        position: static;
        display: flex;
        margin: 0 auto;
    }

    .contact--image-and-copy-wrap {
        position: static;
        overflow: visible;
        display: flex;
    }

    .contact--copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact--form-wrap {
        margin-left: auto;
    }
}