.Columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: var(--spaces, 20px);
}@media screen and (min-width: 769px) {.Columns {
    flex-direction: row;
}
  }.Columns > .Column {
    display: flex;
    flex-direction: column;
    gap: var(--spaces);
    max-width: 100%;
  }.Columns > .Column > .Column:last-child {
      flex: 1;
    }.Columns.Columns-noGap {
    gap: 0;
  }

.Columns--big {
  justify-content: space-between;
}

.Columns-mobile--100-100 {
  flex-direction: column;
}

.Columns-mobile--100-100 > .Column {
    flex-basis: 100%;
  }

.Columns-mobile--50-50 {
  flex-direction: row;
}

.Columns-mobile--50-50 > .Column {
    flex-basis: 50%;
    max-width: calc(50% - var(--spaces));
  }

.Columns-mobile--25-75 {
  flex-direction: row;
}

.Columns-mobile--25-75 > .Column:nth-child(1) {
    flex-basis: 25%;
    max-width: calc(25% - var(--spaces));
  }

.Columns-mobile--25-75 > .Column:nth-child(2) {
    flex-basis: 75%;
    max-width: calc(75% - var(--spaces));
  }

.Columns-mobile--75-25 {
  flex-direction: row;
}

.Columns-mobile--75-25 > .Column:nth-child(1) {
    flex-basis: 75%;
    max-width: calc(75% - var(--spaces));
  }

.Columns-mobile--75-25 > .Column:nth-child(2) {
    flex-basis: 25%;
    max-width: calc(25% - var(--spaces));
  }

.Columns-mobile--33-66 {
  flex-direction: row;

}

.Columns-mobile--33-66 > .Column:nth-child(1) {
    flex-basis: 33%;
    max-width: calc(33% - var(--spaces));
  }

.Columns-mobile--33-66 > .Column:nth-child(2) {
    flex-basis: 67%;
    max-width: calc(67% - var(--spaces));
  }

.Columns-mobile--66-33 {
  flex-direction: row;
}

.Columns-mobile--66-33 > .Column:nth-child(1) {
    flex-basis: 67%;
    max-width: calc(67% - var(--spaces));
  }

.Columns-mobile--66-33 > .Column:nth-child(2) {
    flex-basis: 33%;
    max-width: calc(33% - var(--spaces));
  }

.Columns-mobile--100-100-100 {
  flex-direction: column;
}

.Columns-mobile--100-100-100 > .Column {
    flex-basis: 100%;
  }

.Columns-mobile--33-33-33 {
  flex-direction: row;
}

.Columns-mobile--33-33-33 > .Column {
    flex-basis: 33%;
    max-width: calc(33% - var(--spaces));
  }

.Columns-mobile--16-66-16 {
  flex-direction: row;
}

.Columns-mobile--16-66-16 > .Column:nth-child(1) {
    flex-basis: 16%;
    max-width: calc(16% - var(--spaces));
  }

.Columns-mobile--16-66-16 > .Column:nth-child(2) {
    flex-basis: 66%;
    max-width: calc(66% - var(--spaces));
  }

.Columns-mobile--16-66-16 > .Column:nth-child(3) {
    flex-basis: 16%;
    max-width: calc(16% - var(--spaces));
  }

.Columns-mobile--16-16-66 {
  flex-direction: row;
}

.Columns-mobile--16-16-66 > .Column:nth-child(1) {
    flex-basis: 16%;
    max-width: calc(16% - var(--spaces));
  }

.Columns-mobile--16-16-66 > .Column:nth-child(2) {
    flex-basis: 16%;
    max-width: calc(16% - var(--spaces));
  }

.Columns-mobile--16-16-66 > .Column:nth-child(3) {
    flex-basis: 66%;
    max-width: calc(66% - var(--spaces));
  }

.Columns-mobile--66-16-16 {
  flex-direction: row;
}

.Columns-mobile--66-16-16 > .Column:nth-child(1) {
    flex-basis: 66%;
    max-width: calc(66% - var(--spaces));
  }

.Columns-mobile--66-16-16 > .Column:nth-child(2) {
    flex-basis: 16%;
    max-width: calc(16% - var(--spaces));
  }

.Columns-mobile--66-16-16 > .Column:nth-child(3) {
    flex-basis: 16%;
    max-width: calc(16% - var(--spaces));
  }

.Columns--25-25-25-25 {
  flex-direction: column;
}

.Columns--25-25-25-25 > .Column {
    flex-basis: 100%;
  }

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .Columns-tablet--100-100 {
    flex-direction: column;
  }

    .Columns-tablet--100-100 > .Column {
      flex-basis: 100%;
    }

  .Columns-tablet--50-50 {
    flex-direction: row;
  }

    .Columns-tablet--50-50 > .Column {
      flex-basis: 50%;
      max-width: calc(50% - var(--spaces));
    }

  .Columns-tablet--25-75 {
    flex-direction: row;
  }

    .Columns-tablet--25-75 > .Column:nth-child(1) {
      flex-basis: 25%;
      max-width: calc(25% - var(--spaces));
    }

    .Columns-tablet--25-75 > .Column:nth-child(2) {
      flex-basis: 75%;
      max-width: calc(75% - var(--spaces));
    }

  .Columns-tablet--75-25 {
    flex-direction: row;
  }

    .Columns-tablet--75-25 > .Column:nth-child(1) {
      flex-basis: 75%;
      max-width: calc(75% - var(--spaces));
    }

    .Columns-tablet--75-25 > .Column:nth-child(2) {
      flex-basis: 25%;
      max-width: calc(25% - var(--spaces));
    }

  .Columns-tablet--33-66 {
    flex-direction: row;

  }

    .Columns-tablet--33-66 > .Column:nth-child(1) {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

    .Columns-tablet--33-66 > .Column:nth-child(2) {
      flex-basis: 67%;
      max-width: calc(67% - var(--spaces));
    }

  .Columns-tablet--66-33 {
    flex-direction: row;
  }

    .Columns-tablet--66-33 > .Column:nth-child(1) {
      flex-basis: 67%;
      max-width: calc(67% - var(--spaces));
    }

    .Columns-tablet--66-33 > .Column:nth-child(2) {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

  .Columns-tablet--100-100-100 {
    flex-direction: column;
  }

    .Columns-tablet--100-100-100 > .Column {
      flex-basis: 100%;
    }

  .Columns-tablet--33-33-33 {
    flex-direction: row;
  }

    .Columns-tablet--33-33-33 > .Column {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

  .Columns-tablet--16-66-16 {
    flex-direction: row;
  }

    .Columns-tablet--16-66-16 > .Column:nth-child(1) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns-tablet--16-66-16 > .Column:nth-child(2) {
      flex-basis: 66%;
      max-width: calc(66% - var(--spaces));
    }

    .Columns-tablet--16-66-16 > .Column:nth-child(3) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

  .Columns-tablet--16-16-66 {
    flex-direction: row;
  }

    .Columns-tablet--16-16-66 > .Column:nth-child(1) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns-tablet--16-16-66 > .Column:nth-child(2) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns-tablet--16-16-66 > .Column:nth-child(3) {
      flex-basis: 66%;
      max-width: calc(66% - var(--spaces));
    }

  .Columns-tablet--66-16-16 {
    flex-direction: row;
  }

    .Columns-tablet--66-16-16 > .Column:nth-child(1) {
      flex-basis: 66%;
      max-width: calc(66% - var(--spaces));
    }

    .Columns-tablet--66-16-16 > .Column:nth-child(2) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns-tablet--66-16-16 > .Column:nth-child(3) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

  .Columns--25-25-25-25 {
    flex-direction: row;
    flex-wrap: wrap;
  }

    .Columns--25-25-25-25 > .Column {
      flex-basis: 50%;
      max-width: calc(50% - var(--spaces));
    }
}

@media screen and (min-width: 1026px) {
  .Columns--50-50 {
    flex-direction: row;
  }

    .Columns--50-50 > .Column {
      flex-basis: 50%;
      max-width: calc(50% - var(--spaces));
    }

  .Columns--25-75 {
    flex-direction: row;
  }

    .Columns--25-75 > .Column:nth-child(1) {
      flex-basis: 25%;
      max-width: calc(25% - var(--spaces));
    }

    .Columns--25-75 > .Column:nth-child(2) {
      flex-basis: 75%;
      max-width: calc(75% - var(--spaces));
    }

  .Columns--75-25 {
    flex-direction: row;
  }

    .Columns--75-25 > .Column:nth-child(1) {
      flex-basis: 75%;
      max-width: calc(75% - var(--spaces));
    }

    .Columns--75-25 > .Column:nth-child(2) {
      flex-basis: 25%;
      max-width: calc(25% - var(--spaces));
    }

  .Columns--33-66 {
    flex-direction: row;

  }

    .Columns--33-66 > .Column:nth-child(1) {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

    .Columns--33-66 > .Column:nth-child(2) {
      flex-basis: 67%;
      max-width: calc(67% - var(--spaces));
    }

  .Columns--66-33 {
    flex-direction: row;
  }

    .Columns--66-33 > .Column:nth-child(1) {
      flex-basis: 67%;
      max-width: calc(67% - var(--spaces));
    }

    .Columns--66-33 > .Column:nth-child(2) {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

  .Columns--40-60 {
    flex-direction: row;
  }

    .Columns--40-60 > .Column:nth-child(1) {
      flex-basis: 40%;
      max-width: calc(40% - var(--spaces));
    }

    .Columns--40-60 > .Column:nth-child(2) {
      flex-basis: 60%;
      max-width: calc(60% - var(--spaces));
    }

  .Columns--60-40 {
    flex-direction: row;
  }

    .Columns--60-40 > .Column:nth-child(1) {
      flex-basis: 60%;
      max-width: calc(60% - var(--spaces));
    }

    .Columns--60-40 > .Column:nth-child(2) {
      flex-basis: 40%;
      max-width: calc(40% - var(--spaces));
    }

  .Columns--33-33-33 {
    flex-direction: row;
  }

    .Columns--33-33-33 > .Column:nth-child(1) {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

    .Columns--33-33-33 > .Column:nth-child(2) {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

    .Columns--33-33-33 > .Column:nth-child(2) {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

  .Columns--33-33-33 {
    flex-direction: row;
  }

    .Columns--33-33-33 > .Column {
      flex-basis: 33%;
      max-width: calc(33% - var(--spaces));
    }

  .Columns--16-66-16 {
    flex-direction: row;
  }

    .Columns--16-66-16 > .Column:nth-child(1) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns--16-66-16 > .Column:nth-child(2) {
      flex-basis: 66%;
      max-width: calc(66% - var(--spaces));
    }

    .Columns--16-66-16 > .Column:nth-child(3) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

  .Columns--16-16-66 {
    flex-direction: row;
  }

    .Columns--16-16-66 > .Column:nth-child(1) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns--16-16-66 > .Column:nth-child(2) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns--16-16-66 > .Column:nth-child(3) {
      flex-basis: 66%;
      max-width: calc(66% - var(--spaces));
    }

  .Columns--66-16-16 {
    flex-direction: row;
  }

    .Columns--66-16-16 > .Column:nth-child(1) {
      flex-basis: 66%;
      max-width: calc(66% - var(--spaces));
    }

    .Columns--66-16-16 > .Column:nth-child(2) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

    .Columns--66-16-16 > .Column:nth-child(3) {
      flex-basis: 16%;
      max-width: calc(16% - var(--spaces));
    }

  .Columns--25-25-25-25 {
    flex-direction: row;
  }

    .Columns--25-25-25-25 > .Column {
      flex-basis: 25%;
      max-width: calc(25% - var(--spaces));
    }
}

@media screen and (min-width: 1921px) {

  /* Spacing Big */

  .Columns--big > *:nth-child(2) {
    max-width: 40%;
  }
}

.Columns--100 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

@media screen and (min-width: 769px) {
    .Column.Theme--green,
    .Column.Theme--gray,
    .Column.Theme--pink,
    .Column.Theme--white {
      padding: 50px;
    }
}

@media screen and (min-width: 1026px) {
  .Column.Column-padding {
    padding-left: 120px;
  }
}

.Theme--gray .Text p, .Theme--white .Text p {
    color: var(--font-clr-primary);
  }

.Theme--gray .Text a, .Theme--white .Text a {
    color: var(--clr-primary);
  }
