.form{
  display: flex;
  width: 100%;
  padding: 60px;
  box-sizing: border-box;
}

.address, .contact-form{
  width: 50%;
  box-sizing: border-box;
  padding: 10px;
}

.form-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 150%;
  text-transform: uppercase;
}

.form-title {
  font-size: 36px;
  line-height: 120%;
  margin: 20px 0;
  text-transform: capitalize;
}

.contact-details{
  margin: 15px 0px;
  display: flex;
  /* align-items: center; */
}

.contact-details img{
  height: 30px;
  width: auto;
  margin-right: 15px;
}

  /* .contact-details:first-of-type img{
    display: none;
  } */

.contact-details p{
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
  line-height: 140%;
}

.contact-details p a {
    color: #000;
    text-decoration: none;
}

.social-media{
  list-style: none;
  padding: 0px;
  margin: 40px 0px 0px 0px;
  display: flex;
  gap: 15px;
  display: flex;
}

.social-media li a img{
  width: 40px;
  height: auto;
}

/* Wrapper */
.cf7-custom-wrap {
    max-width: 450px;
    font-family: "Inter", sans-serif;
}

/* Labels */
.cf7-custom-wrap label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #000;
}

/* Inputs */
.cf7-input,
.cf7-textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #cfcfcf;
    background: #fff;
    font-size: 14px;
    border-radius: 0;
    margin-bottom: 18px;
}

.cf7-textarea {
    height: 120px;
    resize: none;
}

/* Row (file + submit) */
.cf7-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.cf7-col-left,
.cf7-col-right {
    flex: 1;
}

.cf7-col-right {
overflow: hidden;
    position: relative;
    display: inline-block;
}

/* .cf7-col-right::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -75px;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0.5;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
} */


/* .cf7-col-right:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
} */

.cf7-col-right:hover {
    text-decoration: none !important;
    color: #0D7C68 !important;
    text-shadow:
    0.5px 0 0 currentColor,
   -0.5px 0 0 currentColor;
}

label.cf7-terms {
    margin: 0;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    max-width: 415px;
}

/* File button */
.file-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0d1a;
    color: #fff;
    padding: 14px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

/* .file-btn::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -75px;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0.5;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
} */


/* hover state */
/* .file-btn:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
} */

.file-btn:hover {
    text-decoration: none !important;
    color: #0D7C68 !important;
    /* text-shadow:
    0.5px 0 0 currentColor,
   -0.5px 0 0 currentColor; */
}

.file-btn input[type="file"] {
    display: none;
}

/* Submit button */
input.wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: #0b0d1a;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0;
    font-size: 15px;
}

input.wpcf7-submit:hover {
    /* opacity: 0.9; */
    color: #0D7C68 !important;
    text-shadow:
    0.5px 0 0 currentColor,
   -0.5px 0 0 currentColor;
}

/* Terms checkbox */
.cf7-terms {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-top: 10px;
}

.cf7-terms input {
    width: 16px;
    height: 16px;
    border: 1px solid #cfcfcf;
}
label.file-btn span {
    color: #fff;
}

label.file-btn span:hover {
color: #0D7C68 !important;
    text-shadow:
    0.5px 0 0 currentColor,
   -0.5px 0 0 currentColor;
}
  
label.cf7-terms span.wpcf7-list-item.first.last {
    margin: 0;
}

@media (max-width: 768px) {
  .form{
    flex-direction: column;
    /* padding: 30px; */
  }

  .form-title {
  font-size: 26px;
  margin-bottom: 3rem;
}

  .address, .contact-form{
    width: 100%;
    padding: 0px;
  }

  .contact-details p{
  font-size: 16px;
}

.cf7-col-left,
.cf7-col-right {
    flex: initial;
}
}

@media (max-width: 425px) {
  .form{
  padding: 30px 20px;
}

.form-title{
  margin-bottom: 1.5rem;
}

.social-media li a img{
  width: 30px;
}
}