.contact-section {
  padding: 40px 0 80px;
}
.contact-section .container{
	max-width:1280px
}
.contact-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.contact__box {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 32px;
  background: #000;

  width: calc(50% - 40px);
}
.contact__intro {
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 32px;
}
.contact__field {
  width: 100%;
  margin-bottom: 12px;
}
.contact__field input,
.contact__field textarea {
  display: flex;
  padding: 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: #2a2b2f;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  width: 100%;
  border: none;
  outline: none;
}
.contact__field textarea {
  height: 180px;
  resize: block;
}
.contact__field input::placeholder,
.contact__field textarea::placeholder {
  text-transform: capitalize;
  color: #777985;
}
.contact__form {
  width: 100%;
}
.contact__field--submit input {
  color: #fff;
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  cursor: pointer;
  background: none;
}
.contact__field--submit {
  padding: 0;
  margin: 12px 0 0;
  cursor: pointer;
}
.contact__eyebrow {
  color: #777985;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.contact__title {
  color: #000;
  font-family: "Plus Jakarta Sans";
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 115.385%;
  margin-bottom: 16px;
  text-transform: capitalize;
}
.contact__desc {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
}
.contact__trusted-label {
  color: #777985;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.contact__logos {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #000000 12.5%,
    #000000 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #000000 12.5%,
    #000000 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
}
.contact__logos-track {
  margin: 10px 0 9px;
  display: flex;
  height: 50px;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: contact-logos-scroll 20s linear infinite;
}

.contact__logos-track img {
  max-height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

@keyframes contact-logos-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.contact__trusted {
  width: 100%;
}

@media (max-width: 992px) {
  .contact__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper {
    display: flex;
    gap: 32px;
    flex-direction: column;
  }
  .contact__intro {
    width: 100%;
  }
  .contact__box {
    width: 100%;
  }
  .contact__title {
    font-size: 36px;
    text-align: center;
    line-height: 125%;
    margin-bottom: 10px;
  }
  .contact-section {
    padding: 32px 0 60px;
  }
  .contact__eyebrow {
    text-align: center;
    color: #777985;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .contact__desc {
    text-align: center;
    font-size: 16px;
  }
  .contact__trusted-label {
    margin-bottom: 12px;
    text-align: center;
    font-size: 12px;
  }
  .contact__field input,
  .contact__field textarea {
    font-size: 16px;
    line-height: normal;
  }
  .contact__box {
    padding: 20px;
  }
}

.legal-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.legal-page {
  padding: 40px 0 80px;
}
.legal-page__title {
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 115.385%;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.legal-page__updated {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
}
.legal-page__header {
  margin-bottom: 40px;
}
.legal-page__content {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  max-width: 880px;
  margin: 0 auto;
}
.legal-page__content ul,
.legal-page__content ol {
  margin-bottom: 24px;
  margin-left: 25px;
}
.legal-page__content p {
  margin-bottom: 24px;
}
.legal-page__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .legal-page__title {
    font-size: 36px;
    line-height: 125%;
  }
  .legal-page__updated {
    font-size: 16px;
    line-height: 125%;
  }
  .legal-page__content {
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857%;
  }
  .legal-page__header {
    margin-bottom: 32px;
  }
  .legal-page {
    padding: 32px 0 60px;
  }
  .contact__field--submit input {
    font-size: 20px;
    line-height: 24px;
  }
  .legal-page__content p {
    margin-bottom: 20px;
  }
  .legal-page__content ul,
  .legal-page__content ol {
    margin-bottom: 20px;
  }
}

.contact__box p,
.contact__box .wpcf7 {
  width: 100%;
}
.contact__box .wpcf7-spinner {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.contact__box .wpcf7 form .wpcf7-response-output {
  color: #fff;
}
