.hero {
  position: relative;
  background: rgba(86, 151, 69, 0.05);
  overflow: hidden;
}

.hero__cta {
     display: flex;
    align-items: center;
  justify-content: center;
}

.hero__cta.white {
  background-color: #fff; 
  line-height: 1.5;
}

.hero__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 115px 20px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hero__title {
  margin-bottom: 20px;
  font-family: "Poppins Regular";
  font-weight: 400;
  font-size: 42px;
    color: #fff;
}

.hero__title strong {
    font-family: "Poppins Bold";
}

.hero__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
/*   color: #172a9a; */
  color: #fff;
  margin-bottom: 25px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
}

/* .hero__image {
  position: absolute;
  top: 0;
  right: -50px;
  z-index: -1;
  height: 100%;
} */

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000523;
  opacity: 0.35;
  pointer-events: none;
}

.hero__image img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__image img {
  height: 100%;
}

@media (max-width: 1024px) {
/*   .hero__image {
    display: none;
  } */

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 20px ;
  }

  .hero__buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero__cta {
    width: 100%;
  }
}

/* ========================= */
/* NEW FORM BLOCK */
/* ========================= */

.text-form-2__right {
  width: 100%;
  max-width: 640px;
  background: #172a9ac9;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 24px 36px;
}

/* TOP BLOCK */
.text-form-2__top {
  text-align: center;
  margin-bottom: 22px;
}

.text-form-2__top-title {
  display: block;
  color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.text-form-2__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.text-form-2__logos img {
  max-height: 75px;
  object-fit: contain;
  max-width: 47.5%;
}

/* TITLE */
.text-form-2__title {
  font-family: "Poppins Regular";
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

/* FORM */
.text-form-2__right form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-form-2__right form > label,
.text-form-2__right form > fieldset {
  padding: 0 15px;
}

.text-form-2__right fieldset {
  border: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.text-form-2__right fieldset label {
  padding: 0;
  flex: 1;
}

.text-form-2__right label {
  color: #fff;
  font-size: 12px;
  display: block;
  margin-bottom: 10.5px;
}

.text-form-2__right label span {
  font-weight: 400;
}

/* INPUTS */
.text-form-2__right input,
.text-form-2__right textarea {
  width: 100%;
  padding: 12px 20px;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #d0d3df;
  color: #5b6590;
  font-size: 16px;
  font-family: "Montserrat";
}

.text-form-2__right input:hover,
.text-form-2__right textarea:hover {
  border-color: #9aa3c3;
}

.text-form-2__right textarea {
  min-height: 140px;
  resize: vertical;
}

.text-form-2__right input::placeholder,
.text-form-2__right textarea::placeholder {
  color: #5b6590;
  font-style: italic;
}

.text-form-2__right input:focus,
.text-form-2__right textarea:focus {
  outline: none;
  border-color: #172a9a;
}

.text-form-2__right input[type="submit"] {
  width: 325px;
  max-width: 100%;
  margin: 10px auto 0;
  padding: 12px 60px;
  border-radius: 100px;
  background: #569745;
  color: #fff;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
}

.text-form-2__right input[type="submit"]:hover {
  background: #4e8c3f;
}

/* BOTTOM TEXT */
.text-form-2__bottom {
  text-align: center;
  color: #fff;
      font-size: 22px;
    margin-top: 24px;
  line-height: 1.2;
}

.text-form-2__bottom span {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  
  
  .text-form-2__right {
    width: 100%;
    max-width: 100%;
    padding: 24px 10px;
  }

  .text-form-2__right input[type="submit"] {
    margin: 0 auto;
  }
  
  
}

/* HUBSPOT FIX (FIRST + LAST NAME IN ROW) */
.text-form-2__right form.hs-form {
  position: relative;
}
/* 
.text-form-2__right form.hs-form > .hs-form-field:nth-of-type(1) {
  margin-bottom: -92.5px;
  width: calc(50% - 15px);
}

.text-form-2__right form.hs-form > .hs-form-field:nth-of-type(1) .hs-error-msgs {
  position: absolute;
}

.text-form-2__right form.hs-form > .hs-form-field:nth-of-type(2) {
  width: calc(50% - 15px);
  margin-left: auto;
}
 */

.hero__left {
/*  background-color: #fff;
  border-radius: 16px;
  height: fit-content */
}

.hero__left-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__left-item {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.4;
    color: #fff;
/*   color: #172a9a; */
  text-align: left;
}

.hero__left-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
/*   color: #172a9a; */
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.hero__text.italic,
.text-form-2__bottom.italic{
  font-style: italic;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .hero__left-item {
    width: fit-content;
  }