.principles {
  margin: 4.8rem 0 5.3rem;
}
@media (min-width: 768px) {
  .principles {
    margin: 6.6rem 0 8rem;
  }
}
.principles__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.principles__visual {
  margin-bottom: 2.5rem;
  min-height: 1px;
}
@media (min-width: 768px) {
  .principles__visual {
    margin-bottom: 3.5rem;
  }
}
.principles__visual img {
  width: 100%;
  display: block;
}
.principles__visual .principles__visual-image {
  width: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.principles__visual-image--privacy {
  aspect-ratio: 1915 / 1859;
}
.principles__visual-image--protection {
  aspect-ratio: 1910 / 1948;
}
.principles__visual-image--commerce {
  aspect-ratio: 2451 / 2750;
}
@media (max-width: 767px) {
  .principles .col-3__item {
    margin-top: 4.6rem;
  }
  .principles .col-3__item:first-child {
    margin-top: 0;
  }
}

/* --------- */
/* Locations */
/* --------- */
.locations {
  padding-top: 0;
}
.locations__map {
  width: calc(100% + calc(var(--page-gutter) * 2));
  margin-left: calc(var(--page-gutter) * -1);
  display: block;
  margin-bottom: 4.8rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 2071 / 757;
}
.locations__map--desktop {
}
.locations__map--mobile {
  aspect-ratio: 750 / 385;
}
@media (min-width: 768px) {
  .locations__map {
    width: 100%;
    margin-left: 0;
    margin-bottom: 6.8rem;
  }
}
.location-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.col-2 + .location-list {
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .location-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .col-2 + .location-list {
    margin-top: 4rem;
  }
}
.location-list__item {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.1428571428571428;
  letter-spacing: 0.02625rem;
  color: #27aae1;
  position: relative;
  margin: 2rem 0 0;
}
.location-list__item:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .location-list__item {
    margin: 0 2rem;
  }
  .location-list__item:hover {
    text-decoration: underline;
  }
  .location-list__item:first-child {
    margin-left: 0;
  }
  .location-list__item:first-child:after {
    display: none;
  }
  .location-list__item:after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #27aae1;
    width: 1px;
    height: 20px;
  }
}

/* Secure uniform typographic scaling for the three principle columns on desktop */
@media (min-width: 768px) {
  .principles p {
    font-size: 1.9rem !important;
    line-height: 1.6 !important;
  }
  .principles h2 {
    font-size: 2.2rem !important;
  }
}

@media (min-width: 1280px) {
  .principles p {
    font-size: 1.8rem !important;
    line-height: 1.6 !important;
    max-width: 90% !important;
  }
  .principles h2 {
    font-size: 2.0rem !important;
  }
}





/* Dynamic scroll-linked floating animation for the commerce visual */
@supports (animation-timeline: scroll()) {
  .principles__visual-image--commerce {
    animation: parallax-commerce-scroll linear;
    animation-timeline: scroll(root);
  }
}

/* We use the independent 'translate' property instead of 'transform' */
/* This ensures it does not override the inline transform transition used for page load reveals */
@keyframes parallax-commerce-scroll {
  from { translate: 0 40px; }
  to { translate: 0 -40px; }
}
