.story-item {
  pointer-events: all;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.story-item-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}

.story-item-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s cubic-bezier(0, 0.09, 0, 1);
  transform: scale(1.7);
  /*
    &:first-child{
      position: absolute;
      mix-blend-mode: multiply;
      z-index: 2;
      @include ie(){
        opacity: 0.2;
      }
    }
    &:last-child{
    }
    */
}

.story-item-date {
  max-width: 290px;
  white-space: normal;
  display: block;
  margin: 0 auto;
  margin-bottom: 7px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.3px;
  opacity: 0.6;
  text-transform: uppercase;
}

.story-item-name {
  font-family: 'Recife Display';
  font-weight: normal;
  font-size: 37px;
  line-height: 49px;
  text-align: center;
  letter-spacing: 0.79px;
  margin: 0;
}

html[dir='rtl'] .story-item-name {
  font-family: 'Tajawal';
}

html[lang='ha'] .story-item-name {
  font-family: 'Noto Serif';
}

.story-item.disabled {
  opacity: 0.6;
  pointer-events: none !important;
}

.story-item.disabled .story-item-layer {
  opacity: 0.5;
}

.story-item.show {
  opacity: 1;
}

.story-item.show .story-item-layer {
  transform: none;
}

.story-item.show.disabled {
  opacity: 0.6;
}

.story-item.show:not(.disabled):hover .story-item-layer {
  transform: scale(1.05) !important;
}

@media (min-width: 96em) {
  .story-item-circle {
    width: 25vw;
    height: 25vw;
  }
}

@media (max-width: 80em) {
  .story-item-circle {
    width: 250px;
    height: 250px;
  }
  .story-item-date {
    max-width: 250px;
  }
}

@media (max-width: 840px) {
  .story-item-circle {
    width: 216px;
    height: 216px;
    margin-left: auto;
    margin-right: auto;
  }
  .story-item::after {
    content: '';
    width: 1px;
    height: 37px;
    display: block;
    background: currentColor;
    opacity: 0.18;
    margin: 0 auto;
    margin-top: 25px;
  }
}

body, html {
  color: #0E0E0E;
}

#scroll-bar {
  mix-blend-mode: difference;
}

#page {
  background: #EFEDED;
}

#page-bg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
}

#cursor-text, #cursor-sound {
  color: white;
}

#nav #nav-action:hover {
  background: black;
  color: #EFEDED;
}

#nav #nav-share:hover svg {
  fill: #EFEDED;
}

#nav #nav-share:hover svg .share-circle {
  fill: currentColor;
  stroke: currentColor;
}

#nav #menu-toggle:hover {
  background: currentColor;
}

#nav #menu-toggle:hover .menu-line {
  background: #EFEDED;
}

#header {
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-sizing: border-box;
  padding-top: 220px;
  padding-bottom: 80px;
}

#header-h1 {
  max-width: 680px;
  font-family: 'Recife Display';
  font-size: 80px;
  line-height: 72px;
  letter-spacing: 1.71px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 71px;
}

html[dir='rtl'] #header-h1 {
  font-family: 'Tajawal';
}

html[lang='ha'] #header-h1 {
  font-family: 'Noto Serif';
  line-height: 85px;
}

#header-h1 .line {
  display: block;
}

#header-h1 * {
  font-weight: 300;
}

#header-text-container {
  max-width: 337px;
}

#header-text-mobile-container {
  display: none;
}

#header .header-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  letter-spacing: 0.34px;
  opacity: 0.6;
  margin: 0;
  margin-bottom: 30px;
}

#header .header-text:last-child {
  margin-bottom: 0;
}

#header .header-text-mobile {
  display: block;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.3px;
  opacity: 0.6;
}

@media (max-width: 840px) {
  #header {
    min-height: auto;
    padding-bottom: 0;
    padding-top: 160px;
  }
  #header-h1 {
    max-width: 360px;
    font-size: 44px;
    line-height: 44px;
    letter-spacing: 0.94px;
  }
  #header .header-text {
    display: none;
  }
  #header-text-mobile-container {
    display: block;
  }
}

#stories {
  padding-top: 100px;
}

#stories .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#stories .row:nth-child(odd) {
  justify-content: center;
}

#stories .row:nth-child(odd):not(:first-child) {
  margin-top: -220px;
}

@media (max-width: 80em) {
  #stories .row:nth-child(odd):not(:first-child) {
    margin-top: -200px;
  }
}

@media (max-width: 840px) {
  #stories {
    padding-top: 50px;
  }
  #stories .row {
    flex-direction: column;
    align-items: center;
    margin-top: 0 !important;
  }
  #stories .story-item {
    margin-bottom: 25px;
  }
}

#footer {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
  color: white;
  background: #0E0E0E;
  display: flex;
  align-items: center;
  margin-top: 220px;
}

#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#footer-h5 {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.3px;
  mix-blend-mode: normal;
  opacity: 0.53;
  margin: 0;
}

#footer-h2 {
  max-width: 635px;
  font-family: 'Recife Display';
  font-weight: normal;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 1.28px;
  margin: 24px 0;
  margin-bottom: 60px;
}

html[dir='rtl'] #footer-h2 {
  font-family: 'Tajawal';
}

html[lang='ha'] #footer-h2 {
  font-family: 'Noto Serif';
}

#footer-button {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #F7941E;
}

#footer-button::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border: 1px solid #F7941E;
  border-radius: 50%;
  transition: background 0.3s ease-in;
}

#footer-button-text {
  display: block;
  max-width: 165px;
  white-space: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

#footer-button:hover {
  color: #0E0E0E;
}

#footer-button:hover::before {
  background: #F7941E;
}

@media (max-width: 840px) {
  #footer {
    margin-top: 60px;
  }
  #footer-h5 {
    display: none;
  }
  #footer-h2 {
    max-width: 295px;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0.5px;
    margin-top: 0;
    margin-bottom: 35px;
  }
}

#toolbar-administration, nav.tabs {
    display: none;
}
