
.bloq-contact-us-hero {
  position: relative;
  width: 100%;
  height: 400px;

  .field-bloq-contus-sld-image {
    width: 100%;
    height: 100%;
    position: absolute;

    &::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.43);
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .content-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
  }

  h1 {
    margin-top: 0;
    margin-bottom: 0;
    color: white;
  }
}

.bloq-contact-us-content {
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../images/2.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.015;
    z-index: 0;
    /*mask-image: linear-gradient(
      #f9f9f9 80%,
      transparent
    );*/
  }
}


.contact-us__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

@scope (.path-webform) {
  .block-responsibletrekking-content {
    background: #f9f9f9;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}


.webform-submission-wf-contact-us-form {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  max-width: var(--max-width);

  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.1);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

@scope (.webform-submission-wf-contact-us-form) {
  .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .iti {
    width: 100%;
  }

  label {
    font-weight: 700;
    color: var(--darked);
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #dfdfdf;
    border-radius: 8px;

    &:focus {
      outline: none;
      border-color: var(--accent);
    }
  }

  .form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .button--primary {
    font-size: 14px;
    display: inline-block;
    width: fit-content;
    background-color: var(--brand);
    color: white;
    border-radius: 15px;
    padding: 13px 30px;
    text-transform: capitalize;
    cursor: default;
    box-shadow: 0 4px 10px rgba(5, 61, 56, 0.16);
    border: none;
  }
}

.contact-us-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.item-cct {
  display: grid;
  grid-template-columns: 40px 1fr;

  .values-ct {
    display: flex;
    flex-direction: column;
  }

  .label {
    font-weight: 700;
    font-size: 13px;
    color: var(--darked);
  }

  .icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  path {
    fill: white;
  }
}
