/* When this section reaches the top of the viewport, ar23-zoom-stick  */
/* becomes fixed positioned until this element goes out of viewport. */
.ar23-lock {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ar23-zoom {
  display: none;
}

html.js .ar23-zoom {
  display: block;
  width: 100vw;
  height: 100vh;
}

@media all and (max-width: 1000px) {
  html.js .ar23-zoom {
    height: 200vh;
  }
}

.ar23-zoom-stick {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  overflow: hidden;
}

.ar23-zoom-image,
.ar23-zoom-tint,
.ar23-zoom-title {
  display: block;
  width: 100%;
  height: 100%;
}

.ar23-zoom-image {
  background: center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.ar23-zoom .ar23-credit {
  left: 14px;
  bottom: 14px;
  z-index: 2;
}

.ar23-zoom-tint,
.ar23-zoom-title {
  position: absolute;
  top: 0;
  left: 0;
}

html.js .ar23-zoom-tint,
html.js .ar23-zoom-title {
  opacity: 0;
}

.ar23-zoom-tint {
  background: rgba(34, 52, 66, 0.75);
  z-index: 3;
}

.ar23-zoom-title {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 1;
}

.ar23-zoom-title-inner {
  padding-top: 26px;
}

@media (min-width: 980px) {
  .ar23-zoom-title-inner {
    margin-top: -200px;
  }
}

.ar23-zoom-title-logo {
  display: block;
  width: 104px;
  height: 48px;
  margin: 0 auto 24px;
}

.ar23 .ar23-zoom-title h2 {
  padding: 0;
  font-size: 48px;
  line-height: 56px;
}

.ar23-zoom-scroll-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 30px;
  left: calc(50% - 12px);
  z-index: 4;
}

.ar23-zoom-scroll-icon div {
  content: '';
  width: 100%;
  height: 100%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transform: rotate(45deg) translate(-5px, -5px);
}

.ar23-lock-content {
  position: relative;
  z-index: 2;
}

@media all and (min-width: 1000px) {
  .ar23-zoom-scroll-icon {
    bottom: 45px;
  }
}