/* Container */
.container {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  box-sizing: border-box;
  background-color: white;
  border-radius: 59px;
  background-clip: padding-box;
}

@media (max-width: 768pt) {
  .container {
    margin-top: 1rem;
  }
}

.content {
  margin: 4rem;
}

@media (max-width: 768pt) {
  .content {
    margin: 3rem;
  }
}

@media (max-width: 568pt) {
  .content {
    margin: 2rem 2rem 2rem 2rem;
  }
}

/* Grid System */
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

@media (min-width: 400px) {
  .container {
    width: 95%;
    padding: 0;
  }
}

@media (min-width: 550px) {
  .container {
    width: 90%;
  }

  .column,
  .columns {
    margin-left: 4%;
  }

  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }

  .one.column,
  .one.columns {
    width: 4.6666666667%;
  }

  .two.columns {
    width: 13.3333333333%;
  }

  .three.columns {
    width: 22%;
  }

  .four.columns {
    width: 30.6666666667%;
  }

  .five.columns {
    width: 39.3333333333%;
  }

  .six.columns {
    width: 48%;
  }

  .seven.columns {
    width: 56.6666666667%;
  }

  .eight.columns {
    width: 65.3333333333%;
  }

  .nine.columns {
    width: 74%;
  }

  .ten.columns {
    width: 82.6666666667%;
  }

  .eleven.columns {
    width: 91.3333333333%;
  }

  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }

  .one-third.column {
    width: 30.6666666667%;
  }

  .two-thirds.column {
    width: 65.3333333333%;
  }

  .one-half.column {
    width: 48%;
  }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.6666666667%;
  }

  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }

  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }

  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }

  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }

  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }

  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }

  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }

  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }

  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-one-half.column,
  .offset-by-one-half.column {
    margin-left: 52%;
  }
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0 none;
  margin-bottom: 0.5rem;
}

img.arrow {
  z-index: 100;
  left: 3rem;
  top: 5rem;
  position: absolute;
  width: 12rem;
  height: 12rem;
}

@media (max-width: 768pt) {
  img.arrow {
    top: 9rem;
    width: 9rem;
    height: 9rem;
  }
}

@media (max-width: 568pt) {
  img.arrow {
    display: none;
  }
}

/* Logo styles */
.logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.logos a:nth-child(3n+2) {
  transform: translateY(2rem);
}

.logos a:nth-child(3n+3) {
  transform: translateY(-2rem);
}

.logos img {
  display: block;
  max-width: 200px;
  max-height: 70px;
  object-fit: contain;
  margin: 0;
}

/* Print styles */
@media all {
  .page-break {
    display: none;
  }
}

@media print {
  .page-break {
    display: block;
    page-break-before: always;
  }
}

/* Clearfix */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}