.contact-title-bg {
    background-color: var(--primary-color);
    color: var(--primary-bg-color);
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--contactpage-triangle-height);

    .title {
        h1 {
            margin: 0;
            color: var(--primary-bg-color);
            text-align: center;
        }

        div {
            font-size: 22px;
            line-height: 30px;
            margin-top: 40px;
        }
    }

    .triangle--up {
        width: 100%;
        height: var(--contactpage-triangle-height);
        background: var(--secondary-color);
        clip-path: polygon(50% 0, 0 100%, 100% 100%);
        position: absolute;
        bottom: 0;
    }
}

.contact-content {
    gap: 80px;
    font-size: 20px;
    line-height: 28px;
    margin-top: 80px;

    .contact-info {
        ul {
            li {

                &.extra-spacing {
                    margin-bottom: 24px;
                }
                a {
                    background-color: unset;
                    color: unset;
                    text-transform: lowercase;
                    text-decoration: underline;
                    text-underline-offset: 4px;
                }
            }
        }

        iframe {
            width: 100%;
            border: 0;
        }
    }

    .contact-form {
        form {
            .input_field {
                margin-bottom: 32px;

                label {
                    display: block;
                    margin-bottom: 8px;
                    span {
                        opacity: .7;
                        font-size: 16px;
                        line-height: 24px;
                        vertical-align: text-bottom;
                        margin-left: 4px;
                    }
                }

                input,
                textarea {
                    display: block;
                    height: 48px;
                    line-height: 46px;
                    border: 1px solid var(--primary-color);
                    box-shadow: none;
                    outline: none;
                    padding: 0 12px;
                    font-size: unset;
                    font-family: unset;
                    width: 100%;
                    background-color: #FAFAFA;
                    &:focus {
                        outline: var(--primary-color) solid 2px;
                        outline-offset: 2px;
                    }
                }

                textarea {
                    resize: vertical;
                    height: unset;
                    line-height: 28px;
                    padding: 8px 12px;
                }

                &:last-child {
                    margin-top: 40px;
                }
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .contact-title-bg {
        height: 278px;

        .title {
            div {
                font-size: unset;
                line-height: 26px;
                padding: 0 32px;
                margin-top: 24px;
            }
        }
    }

    label[for="heard_from_us"] span {
        margin-left: 0 !important;
    }
}