.region-content {
    padding: 70px clamp(30px, 5.95vw, 90px) 50px clamp(30px, 5.95vw, 90px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}
.contact-form {
  width: 50vw;
  display: flex;
  flex-direction: column;
}

.form-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

label {
  font-size: 24px;
  line-height: 24px;
}

.contact-form input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 24px;
  line-height: 24px;
  padding: 12px 20px;
  border-radius: 10px;
  color: white;
  border: none;
}

.contact-form textarea {
    width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 24px;
  line-height: 24px;
  padding: 12px 20px;
  border: none;
}

.js-form-type-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
}

.form-checkbox {
    width: fit-content!important;
}

.option {
    font-size: 16px;
    line-height: 16px;
}

#edit-preview {
    display: none;
}

#edit-submit {
    background: transparent;
    font-size: 18px;
    line-height: 18px;
    border: 1px solid white;
    border-radius: 45px;
    padding: 20px 30px;
}

.contact-socials-heading {
    margin-bottom: 35px;
}

.contact-social-list-items{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-social-links-list-item {
     display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
}

.contact-social-link-text {
    font-size: 20px;
    line-height: 20px;
}

.contact-social-link-icon-wrapper {
    width: 28px;
    height: 28px;
}

.contact-social-links-list-item-icon {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 769px) {
    .region-content {
        flex-direction: column;
        justify-content: flex-start;
        gap: 40px;
    }
    .contact-form {
      width: 100%;
    }
    #block-enertef-theme-content {
        order: 1;
    }
    #block-enertef-theme-contactsocials {
        order: 0;
    }
    .contact-social-list-items {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .contact-social-link-icon-wrapper {
    width: 18px;
    height: 18px;
}
}