.contact-us {
    background-color: #05152D;
    padding: 0px 0px;
    background-position: right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-us__container {
    display: flex;
}

.contact-us__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    margin-top: 120px;
}

.contact-us__image__item {
    max-width: 100%;
}

.product-page__contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.contact-us__title {
    max-width: 55.5rem;
    font-weight: 700;
    font-size: 4.6rem;
    line-height: 5.1rem;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-align: left;
}

.contact-us__description {
    color: #FFFFFFE5;
    font-size: 18px;
    font-family: Gilroy;
    line-height: 26px;
    max-width: 360px;
}

.contact-us__image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-page__contact-form label {
    display: flex;
    justify-content: left;
    width: 100%;
}

.wpcf7-email {
    background-color: #1E2C42;
    border: none;
    padding: 12px 0px;
    width: 100%;
    border-radius: 8px;
    color: #666F7F;
    padding-left: 12px;
    font-size: 16px;
}

.product-page__message-field {
    display: flex;
    justify-content: left;
}

.wpcf7-textarea {
    background-color: #1E2C42;
    border: none;
    padding: 12px 0px;
    width: 100%;
    border-radius: 8px;
    height: 130px;
    color: #666F7F;
    padding-left: 12px;
    font-size: 16px;
    resize: none;
}

.product-page__form-text {
    color: #FFFFFFE5;
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 34px;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-submit {
    background-color: #FFFFFF;
    padding: 15px 57px;
    max-width: 270px;
    border-radius: 120px !important;
    color: #05152D;
    font-weight: 600;
    font-size: 16px;
    border: none;
    margin-top: 40px;
    transition: 0.5s all;
}

.wpcf7-submit:hover {
    background-color: #1E2C42;
    color: #FFFFFF;
    transition: 0.5s all;
    outline: #666F7F;
}

.contact-us__image {
    position: relative;
}

.contact-us__image:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    background: #fff;
    filter: blur(123px);
    opacity: 0.13;
    border-radius: 50%;
    right: -100px;
    top: 39%;
    transform: translateY(-50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .contact-us__container {
        flex-direction: column;
        align-items: center;
    }

    .contact-us__image {
        width: 100%;
    }

    .contact-us__image__item {
        max-width: 100%;
    }
}