/* Begin Text align */
.text-align-center {
  text-align: center;
}

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

/* End Text align */
.align-v-center-h-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.align-v-stretch-h-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Begin Margin */
.margin-top-10px {
  margin-top: 10px;
}

/* End Margin */
/* Begin Width */
.max-width-1280 {
  max-width: 1280px;
  margin: auto;
}

/* End Width */
/* Begin Height */
.height-100per {
  height: 100%;
}

/* End Height */
.card-a1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Elements */
  /* Modifiers */
}
.card-a1__title {
  text-align: center;
}
.card-a1__cover {
  width: 100%;
}
.card-a1__cover img {
  max-width: 100%;
  height: auto;
}
.card-a1__content {
  /* Take available height */
  flex: 1;
}
.card-a1--horizontal {
  flex-direction: row;
  justify-content: center;
}

.row-a1 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Modifiers */
}
.row-a1--wrap {
  flex-wrap: wrap;
}

.row-to-column-a1 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Elements */
}
@media screen and (max-width: 768px) {
  .row-to-column-a1 {
    flex-direction: column;
    align-items: center;
  }
}
.row-to-column-a1__item1 {
  order: 1;
}
.row-to-column-a1__item2 {
  order: 2;
}

.row-to-column-reverse-a1 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Elements */
}
@media screen and (max-width: 768px) {
  .row-to-column-reverse-a1 {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.row-to-column-reverse-a1__item1 {
  order: 1;
}
.row-to-column-reverse-a1__item2 {
  order: 2;
}

.responsive-grid-a1 {
  display: grid;
  grid-template-columns: 33.3333333333% 33.3333333333% 33.3333333333%;
}
@media only screen and (max-width: 768px) and ((min-width: 414px)) {
  .responsive-grid-a1 {
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 50% 50%;
  }
  .responsive-grid-a1__item1 {
    grid-column: 2/4;
  }
  .responsive-grid-a1__item2 {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .responsive-grid-a1__item3 {
    grid-column: 3/5;
    grid-row: 2/3;
  }
}
@media only screen and (max-width: 414px) {
  .responsive-grid-a1 {
    grid-template-columns: 100%;
    grid-template-rows: 33.3333333333% 33.3333333333% 33.3333333333%;
  }
}

.image-text-container-a1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.image-text-container-a1__text-area {
  position: absolute;
}
.image-text-container-a1__text-area--center {
  text-align: center;
}
.image-text-container-a1__image-area {
  width: 100%;
}
.image-text-container-a1__image-area img {
  max-width: 100%;
  height: auto;
}

.text-container-a1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.text-container-a1__text-area {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.text-container-a1__text-area--center {
  text-align: center;
}

.table-a1 {
  border-collapse: collapse;
}
.table-a1 tr {
  border-bottom: 1px solid #c2c2c2;
}
.table-a1--vertical-header th {
  text-align: left;
}
@media only screen and (max-width: 414px) {
  .table-a1--vertical-header th, .table-a1--vertical-header td {
    display: block;
  }
}

.rounded-border-a1 {
  border: 1px solid #000000;
  border-radius: 4rem;
}

.view-more-link-a1 {
  position: relative;
  padding: 10px 20px;
  padding-right: calc(5px + 2rem + 20px);
}
.view-more-link-a1 .material-symbols-outlined {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-15px, -50%);
  font-size: 2rem;
}

a.block-link {
  display: block;
}

.flow-chart-a1 {
  position: relative;
}
.flow-chart-a1__item {
  position: relative;
  border: #c2c2c2 1px solid;
  padding: 10px;
}
.flow-chart-a1__arrow {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100px;
  height: 25px;
  border-top: 25px solid #c2c2c2;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
}

.list-a1__item {
  border-bottom: 1px solid #c2c2c2;
}

.flex-column-2-items {
  display: flex;
}
.flex-column-2-items__item1 {
  order: 1;
}
.flex-column-2-items__item2 {
  order: 2;
}/*# sourceMappingURL=utils.css.map */