.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.flex-container {
  font-size: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1680px) {
  .flex-container {
    font-size: 16px;
  }
}
@media (max-width: 1240px) {
  .flex-container {
    font-size: 14px;
  }
}
.flex-container .flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5em;
}
@media (max-width: 990px) {
  .flex-container .flex-row {
    flex-direction: column;
  }
}
.flex-container .flex-row .image-container {
  flex-shrink: 0;
  width: 50%;
}
@media (max-width: 990px) {
  .flex-container .flex-row .image-container {
    width: 100%;
  }
}
.flex-container .flex-row .image-container img {
  width: 100%;
  height: auto;
}
.flex-container .flex-row .content-area {
  padding-left: 3.65em;
  padding-right: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .flex-container .flex-row .content-area {
    padding-left: 0;
  }
}
.flex-container .flex-row .content-area .title-container {
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
.flex-container .flex-row .content-area .title-container .number-badge {
  width: 2.85em;
  height: 2.85em;
  background: linear-gradient(270deg, #F4AE00 0%, #D84C21 100%);
  color: white;
  border-radius: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75em;
  font-size: 1.2em;
  font-weight: bold;
}
.flex-container .flex-row .content-area .title-container h2 {
  font-size: 1.8em;
  color: #000;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}
.flex-container .flex-row .content-area .text-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 0.75em 0;
}
.flex-container .flex-row:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 990px) {
  .flex-container .flex-row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.flex-container .flex-row:nth-child(even) .content-area {
  padding-left: 0;
  padding-right: 3.65em;
}