.contact-us-page {
  background-color: #fff3cf;
}

.contact-us-container {
  max-width: 1238px;
  margin: 0 auto;
  padding: 138px 0;
}

.contact-us-layout {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.contact-us-info-col {
  background-color: #fff3cf;
  padding: 24px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-us-form-col {
  padding: 27px 12px;
}

.contact-us-form-wrapper {
  max-width: 697px;
  margin: 0 auto 0 100px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-us-info {
  width: 100%;
}

.contact-us-info__image {
  width: 100%;
  height: 213px;
  display: block;
  border-radius: 16px;
  margin-top: 3px;
  margin-bottom: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-us-info__title {
  font-size: 48px;
  font-weight: 700;
  color: #444;
  line-height: 1.2;
  margin-bottom: 30px;
}

.contact-us-info__desc {
  font-size: 14px;
  color: #444;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-us-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact-us-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.contact-us-info__item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-us-info__item-text {
  font-size: 14px;
  color: #444;
  line-height: 1.2;
  max-width: 273px;
}
.contact-us-info__item-text strong {
  font-weight: 600;
}

.contact-us-form-col .form-group {
  margin-bottom: 10px;
}
.contact-us-form-col .form-control {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  font-size: 14px;
  color: #444;
  padding: 0 14px;
  height: 44px;
  background-color: #fff;
}
.contact-us-form-col .form-control:focus {
  border-color: #008c4b;
  -webkit-box-shadow: 0 0 0 3px rgba(21, 158, 95, 0.1019607843);
          box-shadow: 0 0 0 3px rgba(21, 158, 95, 0.1019607843);
  outline: none;
}
.contact-us-form-col .form-control.is-invalid {
  border-color: #ce3333;
}
.contact-us-form-col select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 9L12 5L16 9M16 15L12 19L8 15' stroke='%23444444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.contact-us-form-col textarea.form-control {
  resize: vertical;
  height: auto;
  min-height: 103px;
  padding: 10px 14px;
}

.contact-us-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 10px;
  padding-left: 0;
  margin-bottom: 10px;
}
.contact-us-check .form-check-input {
  margin-top: 3px;
  margin-left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid #e2e2e2;
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.contact-us-check .form-check-input:checked {
  background-color: #008c4b;
  border-color: #008c4b;
}
.contact-us-check .form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-us-check .form-check-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 12px;
  color: #444;
  cursor: pointer;
  line-height: 1.4;
  margin-bottom: 0;
}
.contact-us-check .form-check-label a {
  color: #008c4b;
  text-decoration: underline;
  font-weight: 600;
}
.contact-us-check .form-check-label a:hover {
  color: #005f32;
}

.contact-us-submit {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-us-submit .subscribe-contact-us {
  display: block;
  width: 100%;
  max-width: 402px;
  height: 44px;
  padding: 0 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  background-color: #e8f5ef;
  border: 1.5px solid #e8f5ef;
  color: #005f32;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.contact-us-submit .subscribe-contact-us:hover:not(:disabled) {
  background-color: #c0e6d4;
  border-color: #c0e6d4;
}
.contact-us-submit .subscribe-contact-us:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-us-container {
    padding: 80px 30px;
  }
  .contact-us-form-wrapper {
    margin: 0 auto 0 60px;
    padding: 50px 24px 30px;
  }
  .contact-us-info__title {
    font-size: 35px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-us-container {
    padding: 50px 30px;
  }
  .contact-us-form-wrapper {
    margin: 0 auto 0 20px;
    padding: 40px 20px 24px;
  }
  .contact-us-info__image {
    height: 180px;
  }
  .contact-us-info__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .contact-us-container {
    padding: 32px 0 40px;
  }
  .contact-us-info-col {
    padding: 0;
  }
  .contact-us-info__image {
    width: 100%;
    height: 260px;
    margin-bottom: 20px;
  }
  .contact-us-info__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .contact-us-form-col {
    padding: 0 16px;
  }
  .contact-us-form-wrapper {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .contact-us-submit .subscribe-contact-us {
    max-width: 100%;
  }
}
.contact-us-form-wrapper {
  padding: 70px 24px 30px;
}

.contact-us-info__item-text {
  padding-top: 0;
}
.contact-us-info__item-text a {
  color: #444;
  text-decoration: none;
}
.contact-us-info__item-text a:hover {
  text-decoration: underline;
}

.form-label-inside {
  position: relative;
}
.form-label-inside .form-control {
  height: 44px;
  min-height: 44px;
}
.form-label-inside .form-control::-webkit-input-placeholder {
  color: transparent;
}
.form-label-inside .form-control::-moz-placeholder {
  color: transparent;
}
.form-label-inside .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-label-inside .form-control::-ms-input-placeholder {
  color: transparent;
}
.form-label-inside .form-control::placeholder {
  color: transparent;
}
.form-label-inside .form-control-label {
  position: absolute;
  top: 22px;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: top 0.15s ease, font-size 0.15s ease, background-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: top 0.15s ease, font-size 0.15s ease, background-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: top 0.15s ease, font-size 0.15s ease, transform 0.15s ease, background-color 0.15s ease;
  transition: top 0.15s ease, font-size 0.15s ease, transform 0.15s ease, background-color 0.15s ease, -webkit-transform 0.15s ease;
  pointer-events: none;
  font-size: 14px;
  color: #aeaeae;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 28px);
  padding: 0 4px;
}
.form-label-inside .form-control:focus ~ .form-control-label, .form-label-inside.has-value .form-control-label {
  top: 0;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}

.form-label-inside--select select.form-control {
  padding-top: 0;
  padding-bottom: 0;
}
.form-label-inside--select .form-control-label {
  top: 0;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}

.form-label-inside--textarea .form-control-label {
  top: 12px;
  -webkit-transform: none;
          transform: none;
}
.form-label-inside--textarea textarea.form-control {
  padding-top: 28px;
  -webkit-transition: padding-top 0.15s ease;
  transition: padding-top 0.15s ease;
}
.form-label-inside--textarea textarea.form-control:focus {
  padding-top: 10px;
}
.form-label-inside--textarea textarea.form-control:focus ~ .form-control-label {
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 12px;
  background-color: #fff;
}
.form-label-inside--textarea.has-value textarea.form-control {
  padding-top: 10px;
}
.form-label-inside--textarea.has-value .form-control-label {
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 12px;
  background-color: #fff;
}

.contact-us-form-col .form-label-inside--textarea {
  margin-bottom: 10px;
}
.contact-us-form-col textarea.form-control {
  text-align: left;
}
.contact-us-form-col .invalid-feedback {
  display: block;
  font-size: 12px;
  color: #ce3333;
  margin-top: 4px;
  visibility: hidden;
  height: 18px;
  overflow: hidden;
}
.contact-us-form-col .invalid-feedback.visible {
  visibility: visible;
}

.contact-us-checkboxes {
  margin-top: 28px;
  min-height: 64px;
  -ms-flex-line-pack: center;
      align-content: center;
}

.contact-us-check .form-check-input.is-invalid {
  border-color: #ce3333;
}
.contact-us-check .form-check-input.is-invalid ~ .form-check-label {
  color: #444;
}
.contact-us-check .invalid-feedback {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(100% - 28px);
  margin-left: 28px;
  font-size: 12px;
  color: #ce3333;
  margin-top: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.contact-us-check .invalid-feedback.visible {
  height: auto;
  visibility: visible;
}

.contact-us-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-us-signup-message {
  margin-top: 16px;
}

.contact-us-signup-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}
.contact-us-signup-alert.alert-success {
  background-color: #e8f5ef;
  color: #005f32;
  border: 1px solid #c0e6d4;
}
.contact-us-signup-alert.alert-danger {
  background-color: #fee;
  color: #660e1a;
  border: 1px solid #fce3e3;
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact-us-info__desc {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .contact-us-info__list {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .contact-us-info {
    padding: 0 30px 8px;
  }
  .contact-us-info__image {
    border-radius: 0;
  }
  .contact-us-info__desc {
    margin-bottom: 16px;
  }
  .contact-us-info__list {
    gap: 16px;
    margin-bottom: 8px;
  }
  .contact-us-form-col {
    padding: 0;
  }
  .contact-us-form-wrapper {
    margin: 0 30px;
  }
  .contact-us-checkboxes {
    margin-top: 20px;
    row-gap: 10px;
  }
  .contact-us-submit {
    margin-top: 20px;
  }
}
