.new-contact-form {
    background-color: #F2F0ED;
    padding: 80px 0;
}

.new-contact-form .content_container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.new-contact-form .content {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.new-contact-form .content .title {
    color: #6A6C9D;
    margin-bottom: 30px;
    width: 65%;
}

.new-contact-form .content img {
    max-width: 250px;
}

.new-contact-form .gform_required_legend {
    display: none;
}

.new-contact-form .gfield .gfield_label  {
    color: #4C4C4D;
    font-size: 17px !important;
    margin-bottom: 20px !important; 
}

.new-contact-form .gfield {
    margin-top: 10px;
}

.new-contact-form .gform_wrapper.gravity-theme .gfield input[type="radio"] {
    padding: 0 !important;
}

.new-contact-form .gform_wrapper input[type="text"],
.new-contact-form .gform_wrapper input[type="email"],
.new-contact-form .gform_wrapper input[type="tel"],
.new-contact-form .gform_wrapper input[type="file"],
.new-contact-form .gform_wrapper textarea,
.new-contact-form .gform_wrapper select { 
    background-color: #FFF !important;
    border-radius: 10px;
}


.new-contact-form .gform_wrapper input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;     
  height: 24px;
  border: 1px solid #000 !important;  
  border-radius: 50%;     
  background-color: transparent; 
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  padding: 0 !important;
}

.new-contact-form .gform_wrapper input[type="radio"]:checked::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #6A6C9D;
  border: 1px solid #6A6C9D;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}

.new-contact-form .gchoice {
    display: flex;
}

.new-contact-form .gchoice label {
    padding-left: 15px;
    line-height: 1.4 !important;
}

.new-contact-form #field_21_8 {
    display: flex;
    gap: 250px;
}

.new-contact-form .gform_wrapper.gravity-theme input[type="submit"] {
    background-color: #6A6C9D !important;
    color: #fff;   
    border-radius: 50px;
    padding: 12px 30px !important;
}

@media only screen and (max-width: 1500px) {
    .new-contact-form  { 
        padding: 40px 0;
    }
    .new-contact-form .content .title {
        width: 100%;
    }
}
@media only screen and (max-width: 1250px) {
    .new-contact-form .content {
        gap: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .new-contact-form .gfield .gfield_label {
        margin-bottom: 10px !important
    }
    .new-contact-form #field_21_8 {
        flex-direction: column;
        gap: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .new-contact-form .content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .new-contact-form .content .title {
        font-size: 38px;
    }
    
    .new-contact-form .content_container {
        gap: 30px;
    }
    .new-contact-form .gform_wrapper.gravity-theme .gform_footer {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 500px) {

}