.center-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  gap: 60px;
  max-width: var(--site-max-width);
  margin: auto;
  flex-wrap: wrap;
  align-items: stretch;

}

.center-text-container.full-width {
  width: 100%;
}

.center-text-container.centered {
  margin: 0 auto;
}

.center-text-title {
  margin: 0;
  font-weight: 700;
}

.center-text-title:first-of-type {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.center-text-title:last-of-type {
  line-height: 1.2;
  color: #111;
}

.center-text-description {
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}

.afhBtn {
  background-color: var(--text-color);
  color: var(--background-color);
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.afhBtn:hover {
  background-color: var(--text-colortext-color);
}

/* Layout styling */
.center-text-container {
  display: flex;
  flex-direction: row;
}

.center-text-container > div {
  flex: 1;
  padding: 20px;
}



.left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.right-column{
border-left: solid 1px var(--text-color);
}

@media (max-width: 1024px)and (max-width: 1080px) {
  .center-text-container {
    flex-direction: column;
    align-items: center;
  }

  .left-column,
  .right-column {
    width: 100%;
  }
  .left-column{
    min-height: 10px;
  }
  @media (max-width: 480px) {
    .right-column{
      border-left: solid 0px var(--text-color);
      padding: 0 !important;
      margin: 0 !important;
      }
    .center-text-container {
      flex-direction: row;
    }
    .left-column{
      min-height: 10px;
    }
    .center-text-container::before {
      display: none;
    }

    .center-text-title:last-of-type {
      font-size: 36px;
    }
    .center-text-description{
      padding: 0;
      margin: 0;
    }
  }

}

@media (max-width: 768px) {
  .center-text-container {
    flex-direction: row;
  }
  .left-column{
    min-height: 10px;
  }
  .center-text-container::before {
    display: none;
  }

  .center-text-title:last-of-type {
    font-size: 36px;
  }
}


