.text_multi_column {
  width: 100%;
  height: auto;
  text-align: center;
  color: #000;
  padding: 0;
  position: relative;
}
.text_multi_column .section-cap {
  position: absolute;
  left: 50%;
  right: 0;
  top: -67px;
  transform: translateX(-50%);
  height: 70px;
  color: #000;
  pointer-events: none;
  z-index: 1;
  width: 100vw;
  max-width: none;
  padding: 0 !important;
}
@media only screen and (max-width: 2000px) {
  .text_multi_column .section-cap {
    width: 2000px;
  }
}
.text_multi_column .section-cap .cap-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.text_multi_column.with-top-shape .multi-column-content-container {
  padding: 100px 0;
}
.text_multi_column .multi-column-content-container {
  padding: 100px 0;
}
@media only screen and (max-width: 980px) {
  .text_multi_column .multi-column-content-container {
    padding: 50px 0;
  }
}
.text_multi_column .multi-column-content-container .title {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 4rem;
  z-index: 2;
  width: 65%;
}
@media only screen and (max-width: 900px) {
  .text_multi_column .multi-column-content-container .title {
    width: 75%;
  }
}
@media only screen and (max-width: 540px) {
  .text_multi_column .multi-column-content-container .title {
    margin-bottom: 25px;
  }
}
.text_multi_column .multi-column-content-container .columns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 65%;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  .text_multi_column .multi-column-content-container .columns {
    width: 75%;
  }
}
@media only screen and (max-width: 840px) {
  .text_multi_column .multi-column-content-container .columns {
    flex-direction: column;
  }
}
.text_multi_column .multi-column-content-container .columns .column {
  min-width: 250px;
  max-width: 50%;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 840px) {
  .text_multi_column .multi-column-content-container .columns .column {
    max-width: 100%;
    min-width: 0;
    padding: 0 !important;
    height: auto !important;
  }
}
.text_multi_column .multi-column-content-container .columns .column:nth-child(odd) {
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .text_multi_column .multi-column-content-container .columns .column:nth-child(odd) {
    padding-right: 0;
  }
}
.text_multi_column .multi-column-content-container .columns .column:nth-child(even) {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .text_multi_column .multi-column-content-container .columns .column:nth-child(even) {
    padding-left: 0;
  }
}
.text_multi_column .multi-column-content-container .columns .column hr {
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.text_multi_column .multi-column-content-container .columns .column .text {
  font-size: 0.8rem;
  line-height: 1.6rem;
  text-align: left;
  margin-bottom: 0;
}
@media only screen and (max-width: 840px) {
  .text_multi_column .multi-column-content-container .columns .column .text {
    min-height: unset;
  }
}
.text_multi_column .multi-column-content-container .columns .column .text .aligncenter {
  margin: 0 auto;
  display: block;
}
.text_multi_column .multi-column-content-container .columns .column .text .alignright {
  display: block;
  margin-left: auto;
}
.text_multi_column .multi-column-content-container .columns .column .text p {
  line-height: 1.5;
}
.text_multi_column .multi-column-content-container .columns .column .text p:last-child {
  margin-bottom: 0 !important;
}
.text_multi_column .multi-column-content-container .columns .column .text a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.text_multi_column .multi-column-content-container .columns .column .text a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  opacity: 1;
  width: 100%;
  background: #000;
  transform: translateX(-50%);
  transition: all 0.1s ease-in-out;
}
.text_multi_column .multi-column-content-container .columns .column .text a:hover::after,
.text_multi_column .multi-column-content-container .columns .column .text a:focus-visible::after {
  transform: translate(-50%, 2px);
  opacity: 0.75;
}
.text_multi_column .multi-column-content-container .columns .column .text ul {
  list-style-type: disc !important;
}
.text_multi_column .multi-column-content-container .columns .column .sbtn {
  font-size: 1rem;
  font-weight: 600;
}
.text_multi_column .multi-column-content-container .columns .column .sbtn.btn-dark:hover {
  background-color: white !important;
  color: #004f59 !important;
}
.text_multi_column .multi-column-content-container .columns .column .sbtn.btn-light:hover {
  background-color: #004f59 !important;
  color: white !important;
}
.text_multi_column.black-section .title {
  color: white;
}
.text_multi_column.black-section .columns .column .text {
  color: #fff;
}
.text_multi_column.black-section .columns .column .text p {
  line-height: 1.5;
}
.text_multi_column.black-section .columns .column .text p,
.text_multi_column.black-section .columns .column .text h1,
.text_multi_column.black-section .columns .column .text h2,
.text_multi_column.black-section .columns .column .text h3,
.text_multi_column.black-section .columns .column .text h4,
.text_multi_column.black-section .columns .column .text h5,
.text_multi_column.black-section .columns .column .text h6 {
  color: #fff;
}
.text_multi_column.dark-bg {
  padding: 100px 0;
}
.text_multi_column.dark-bg .title {
  color: white;
}
.text_multi_column.dark-bg .columns .column .text {
  color: #fff;
}
.text_multi_column.dark-bg .columns .column .text p {
  line-height: 1.5;
}
.text_multi_column.dark-bg .columns .column .text p,
.text_multi_column.dark-bg .columns .column .text h1,
.text_multi_column.dark-bg .columns .column .text h2,
.text_multi_column.dark-bg .columns .column .text h3,
.text_multi_column.dark-bg .columns .column .text h4,
.text_multi_column.dark-bg .columns .column .text h5,
.text_multi_column.dark-bg .columns .column .text h6 {
  color: #fff;
}
.text_multi_column.light-bg {
  padding: 100px 0;
}
.text_multi_column.light-bg .title {
  color: #DB7B51;
}
.text_multi_column.light-bg .columns .column .text {
  color: #000;
}
.text_multi_column.light-bg .columns .column .text p {
  color: #000;
  line-height: 1.5;
}
.text_multi_column.light-bg .columns .column .text h1,
.text_multi_column.light-bg .columns .column .text h2,
.text_multi_column.light-bg .columns .column .text h3,
.text_multi_column.light-bg .columns .column .text h4,
.text_multi_column.light-bg .columns .column .text h5,
.text_multi_column.light-bg .columns .column .text h6 {
  color: #004f59;
}
.text_multi_column.white-bg {
  padding: 0;
}
