.footer {
  --padding: 50px 0;
  background: rgb(var(--color-accent));
  color: rgb(var(--color-light));
  padding: var(--padding);
  text-align: center;
}
.footer img {
  width: 60%;
  margin: 0 auto;
}

.footer__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  row-gap: 50px;
}

.footer__row {
  --gap: 50px;
  --row-gap: 50px;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: var(--gap);
  row-gap: var(--row-gap);
}

.footer-font-small {
  font-size: 75%;
}

.footer__row + .footer__row {
  border-top: 1px solid rgba(var(--color-light), 0.5);
  padding: 50px 0;
}

.footer__col {
  -ms-flex: 1;
      flex: 1;
}

.footer__menu {
  margin-top: 50px;
}
.footer__menu ul {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: center;
      justify-content: center;
}
.footer__menu ul li + li {
  margin-top: 0;
}
.footer__menu ul li:before {
  display: none;
}

.footer__social a {
  --iconSize: 40px;
  color: rgb(var(--color-secondary));
}
.footer__social ul {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.footer__social ul li + li {
  margin-top: 0;
}
.footer__social ul li:before {
  display: none;
}

@media (min-width: 992px) {
  .footer {
    --padding: 100px 0;
    text-align: left;
  }
  .footer img {
    width: 100%;
  }
  .footer__row {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .footer__menu ul {
    -ms-flex-pack: start;
        justify-content: start;
  }
  .footer__social {
    margin-left: auto;
  }
}
.accreditations {
  -ms-flex-align: center;
      align-items: center;
  background: rgb(var(--color-accent));
  gap: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 30px;
}

.site-ctas {
  --cta-font-size: 15;
  --cta-padding: 10px 20px;
  --arrow-size: 20px;
  display: -ms-flexbox;
  display: flex;
}

.site-ctas__cta {
  -ms-flex-align: center;
      align-items: center;
  color: rgb(var(--color-primary));
  display: -ms-flexbox;
  display: flex;
  font-weight: 800;
  -ms-flex: 1;
      flex: 1;
  font-size: calc(var(--cta-font-size) / var(--base) * 1rem);
  -ms-flex-pack: center;
      justify-content: center;
  padding: var(--cta-padding);
  text-align: center;
  transition: 250ms background ease, 250ms color ease;
}
.site-ctas__cta:first-of-type {
  background: rgb(var(--color-accent));
}
.site-ctas__cta:last-of-type {
  background: rgb(var(--color-light));
}
.site-ctas__cta .icon {
  display: none;
  height: var(--arrow-size);
  margin-left: 7px;
  transform: rotate(-90deg);
  width: var(--arrow-size);
}

@media (min-width: 992px) {
  .site-ctas {
    --cta-font-size: 23;
    --cta-padding: 15px 20px;
  }
  .site-ctas__cta:last-of-type {
    display: none;
  }
}
@media (min-width: 992px) and (pointer: fine) {
  .site-ctas__cta:hover:first-of-type {
    background: rgb(var(--color-light));
    color: rgb(var(--color-primary));
  }
}
@media (min-width: 992px) {
  .site-ctas__cta .icon {
    display: block;
  }
}
html {
  font-weight: 300;
}

.button {
  letter-spacing: 1.5px;
}

.header {
  --hamburger-color: var(--color-dark);
  max-width: var(--site-width);
  margin: 0 auto;
}

.block[type=column-content].image-full-width .column-content {
  --gap: 15px;
}
.block[type=column-content].image-full-width .column-content h2 {
  line-height: 1;
}
.block[type=column-content].image-full-width .column-content img {
  width: 100%;
}

.block[type=column-content].favorites .column-content {
  -ms-flex-pack: center;
      justify-content: center;
}

img.rounded-corners {
  border-radius: 40px;
}
