.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: 40px 24px 30px;
}

.contact-us-checkboxes {
  margin-top: 20px;
}

.lr-section {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f4f4f4;
}
.lr-section:last-of-type {
  border-bottom: none;
}

.lr-section__title {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 12px;
  padding-top: 16px;
}

.lr-label {
  font-size: 12px;
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
  display: block;
}

.lr-required {
  color: #ce3333;
}

.lr-field {
  margin-bottom: 4px;
}

.lr-error {
  display: block;
  font-size: 12px;
  color: #ce3333;
  margin-top: 4px;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.lr-error.is-visible {
  visibility: visible;
  height: auto;
}

.lr-readonly {
  background-color: #fafafa !important;
  color: #aeaeae;
  cursor: default;
}

.contact-us-check .lr-error {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(100% - 28px);
  margin-left: 28px;
  height: 0;
}
.contact-us-check .lr-error.is-visible {
  height: auto;
}

@media (max-width: 767px) {
  .contact-us-info {
    padding: 0 16px 24px;
  }
  .contact-us-form-wrapper {
    margin: 0;
  }
}
