.deft-contact_form {
   background-color: #f5f5f5;
   .container {
      .hold {
         background-color: #2e2e2e;
         border-radius: 10px;
         padding: 50px;
         display: flex;
         gap: 50px;
         position: relative;
         @media only screen and (max-width: 767px) {
            padding: 25px;
         }

         .hold-content {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            z-index: 1;
         }
         .hold-form {
            width: 50%;
            position: relative;
            z-index: 1;
            .fm-form-container {
               width: 100%;
               .fm-header-bg {
                  display: none;
               }
            }
            .wysiwyg {
            }
         }
         .hold-image {
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: absolute;
            z-index: 0;
            border-radius: 10px;
            filter: saturate(0);
            opacity: 0.1;
         }

         @media only screen and (max-width: 767px) {
            flex-direction: column;
            align-items: start;
            .hold-content {
               width: 100%;
            }
            .hold-form {
               width: 100%;
            }
         }
      }
   }
}
