h2, p {
    margin: 0;
}

.contact-us-page::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 0;
    background: url("/wp-content/themes/simplydepo/images/about-us_bg.png") no-repeat top center;
    background-size: cover;
    height: 100vh;

    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.contact-us-page {
    /*background-color: rgb(248, 248, 248);*/
    background: linear-gradient(to bottom, rgb(242, 242, 242) 0%, #ffffff 100%);

    .container {
        max-width: 1300px;
    }

    .hero__wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 48px;
    }

    .hero__left-column {
        max-width: 470px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;

        .button {
            font-weight: 700;
            padding: 12px 27px;
        }
    }

    .hero__text {
        margin-top: unset;
        text-align: left;

        h1 {
            margin-bottom: 32px;
        }
    }

    .company-logo {
        h2 {
            font-weight: 600;
            opacity: 0.5;
        }

        .button {
        display: none;
        }
    }

    .contact-form {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .form-card {
        max-width: 584px;
        margin: 0 auto;
        padding: 32px;
        border-radius: 16px;
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid rgba(119, 119, 119, 0.2);
        box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08);

        .form-card__title {
            text-align: center;
            margin-bottom: 18px;
            font-size: 32px;
            font-weight: 700;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 13px;

            .field-set {
                display: flex;
                gap: 24px;
            }

            .field-submit {

                margin-top: 21px;
            }

            .field-submit .wpcf7-submit {
                font-size: 18px;
                font-weight: 700;
                padding: 16px;
            }

            .field-submit::after {
                display: none;
            }
        }
    }

    @media (max-width: 991px) {
        .hero__wrapper {
            flex-direction: column;
        }

        .contact-form {
            padding-top: 20px;
            padding-bottom: 60px;
        }

        .form-card {
            padding: 24px;
        }

        .form-card__title {
            display: none;
        }
    }
}