/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.page-info {
  padding: 3em 0;
  width: 100%;
}
.page-info__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.page-info__section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.page-info__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.page-info__links a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
  color: hsl(0, 0%, 0%);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
}
.page-info__links a::before, .page-info__links a::after {
  content: "";
  position: relative;
  margin-top: 2px;
}
.page-info__links a::before {
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("/assets/svg/world-fluid.svg");
}
.page-info__links a::after {
  display: block;
  width: 8px;
  height: 12px;
  background-image: url("/assets/svg/short-right-icon.svg");
  margin: 0 0 0 auto;
}
.page-info__links a:hover {
  text-decoration: underline;
}
.page-info h2,
.page-info h3,
.page-info h4 {
  margin: 10px 0 30px;
}
@media screen and (min-width: 768px) {
  .page-info {
    padding: 7em 0;
  }
  .page-info:nth-child(even) {
    background-color: #f58220;
  }
  .page-info:nth-child(even) a::before {
    filter: brightness(0);
  }
  .page-info:nth-child(even) .page-info__wrapper {
    flex-direction: row-reverse;
  }
  .page-info__wrapper {
    flex-direction: row;
    gap: 3em;
  }
  .page-info__section {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .page-info__links a {
    width: 100%;
  }
  .page-info__banner {
    max-width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .page-info:nth-child(even) .page-info__wrapper {
    flex-direction: row-reverse;
    padding-left: 7em;
  }
  .page-info:nth-child(even) .content a {
    color: hsl(0, 0%, 100%);
    text-decoration: underline;
  }
}
@media screen and (max-width: 767.99px) {
  .page-info .content * {
    text-align: center;
  }
}