.newspaper-item {
  pointer-events: all;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20%);
  transition: transform 0.6s cubic-bezier(0, 0.09, 0, 1), opacity 0.6s ease-in;
  will-change: transform;
}

html[dir='rtl'] .newspaper-item {
  margin-right: auto;
}

.newspaper-item-image {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.5s cubic-bezier(0, 0.09, 0, 1);
}

.newspaper-item-info {
  display: flex;
  align-items: center;
}

html[dir='rtl'] .newspaper-item-info {
  max-width: 170px;
  flex-direction: row-reverse;
}

.newspaper-item-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(247, 148, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.newspaper-item-circle::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #F7941E;
  display: block;
  border-radius: 50%;
}

html[dir='rtl'] .newspaper-item-circle {
  margin-right: 0;
  margin-left: 16px;
}

.newspaper-item-date, .newspaper-item-source {
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  opacity: 0.6;
  display: block;
}

html[dir='rtl'] .newspaper-item-date, html[dir='rtl'] .newspaper-item-source {
  direction: rtl;
}

.newspaper-item:hover .newspaper-item-image {
  filter: grayscale(0%);
  opacity: 1 !important;
}

.newspaper-item.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 60.625em) {
  .newspaper-item-info {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.6s ease-in;
  }
  .newspaper-item-circle {
    width: 46px;
    height: 46px;
  }
  .newspaper-item-circle::before {
    width: 34px;
    height: 34px;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 9'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 4.5L0 8.1V.9l6 3.6z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: 52% 47%;
    background-size: 7px;
    background-repeat: no-repeat;
  }
  .newspaper-item.playing-mobile .newspaper-item-circle::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M0 7.1V.9h6v6.2H0z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: 50% 47%;
  }
  .newspaper-item.show {
    opacity: 0.3;
  }
  .newspaper-item.show .newspaper-item-image {
    opacity: 1 !important;
    filter: grayscale(100%) !important;
  }
  .newspaper-item.show-info {
    z-index: 99;
    position: relative;
    opacity: 1;
  }
  .newspaper-item.show-info .newspaper-item-circle {
    pointer-events: all;
  }
  .newspaper-item.show-info .newspaper-item-image {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
  }
  .newspaper-item.show-info .newspaper-item-info {
    opacity: 1 !important;
  }
}

#langs-section {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  background-color: #0E0E0E;
  background-image: url(../assets/images/loading-texture.webp);
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
  text-align: center;
  transition: opacity 1s;
}

#langs-section #langs-title {
  max-width: 450px;
  font-family: 'Recife Display';
  font-style: normal;
  font-weight: normal;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 1.28571px;
  margin: 0 auto;
  margin-bottom: 100px;
}

html[dir='rtl'] #langs-section #langs-title {
  font-family: 'Tajawal';
}

html[lang='ha'] #langs-section #langs-title {
  font-family: 'Noto Serif';
}

#langs-section .flex {
  display: flex;
  align-items: center;
}

html[dir='rtl'] #langs-section .flex {
  direction: ltr;
}

#langs-section .lang {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F7941E;
  border-radius: 50%;
  margin-right: 24px;
  transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#langs-section .lang:last-child {
  margin-right: 0;
}

#langs-section .lang.active, #langs-section .lang:hover {
  background: #F7941E;
}

#langs-section .lang.active .lang-text, #langs-section .lang:hover .lang-text {
  color: #0E0E0E;
}

#langs-section .lang-text {
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #F7941E;
}

#langs-section.hide {
  pointer-events: none;
  opacity: 0;
}

#langs-section.hide .lang {
  pointer-events: none;
}

#langs-section.none {
  display: none !important;
  pointer-events: none;
}

#langs-section.none .lang {
  pointer-events: none;
}

@media (max-width: 840px) {
  #langs-section #langs-title {
    max-width: 260px;
    font-size: 35px;
    line-height: 42px;
    letter-spacing: -0.04px;
    margin-bottom: 50px;
  }
  #langs-section .flex {
    max-width: 295px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  #langs-section .lang {
    width: auto;
    height: auto;
    padding: 10px 8px;
    border-radius: 0;
    border: none;
    margin-right: 0;
  }
  #langs-section .lang .lang-text {
    color: white;
  }
  #langs-section .lang.active {
    background: transparent;
  }
  #langs-section .lang.active .lang-text {
    color: #F7941E;
  }
}

.map-marker {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-marker-name {
  display: block;
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.38px;
  z-index: 3;
}

.map-marker-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(247, 148, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker-circle::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #F7941E;
  display: block;
  border-radius: 50%;
}

@media (max-width: 580px) {
  .map-marker-name {
    font-size: 12px;
  }
}

#marker-yobe {
  right: 25.5%;
  top: 8%;
}

@media (max-width: 64em) {
  #marker-yobe {
    right: 21.5%;
    top: 5%;
  }
}

@media (max-width: 480px) {
  #marker-yobe {
    right: 21.5%;
    top: -3%;
  }
}

#marker-bakassi {
  right: 45%;
  top: auto;
  bottom: 9%;
}

@media (max-width: 64em) {
  #marker-bakassi {
    right: 44%;
    bottom: 10%;
  }
}

@media (max-width: 480px) {
  #marker-bakassi {
    right: 40%;
    bottom: 12%;
  }
}

#marker-borno {
  right: 9.5%;
  top: 14%;
}

@media (max-width: 64em) {
  #marker-borno {
    right: 7.5%;
    top: 10%;
  }
}

@media (max-width: 480px) {
  #marker-borno {
    right: 4.5%;
    top: 3%;
  }
}

#marker-baga {
  right: 6%;
  top: -4%;
}

@media (max-width: 64em) {
  #marker-baga {
    right: 5%;
    top: -4%;
  }
}

@media (max-width: 480px) {
  #marker-baga {
    right: 2%;
    top: -5%;
  }
}

#marker-maiduguri {
  right: 9%;
  top: 10%;
}

@media (max-width: 64em) {
  #marker-maiduguri {
    right: 9%;
    top: 10%;
  }
}

@media (max-width: 480px) {
  #marker-maiduguri {
    right: 9%;
    top: 10%;
  }
}

#marker-adamawa {
  right: 14.5%;
  top: 37%;
}

@media (max-width: 64em) {
  #marker-adamawa {
    right: 10.5%;
    top: 36%;
  }
}

@media (max-width: 480px) {
  #marker-adamawa {
    right: 8.5%;
    top: 30%;
  }
}

#marker-michika {
  right: 14.5%;
  top: 37%;
}

@media (max-width: 64em) {
  #marker-michika {
    right: 10.5%;
    top: 36%;
  }
}

@media (max-width: 480px) {
  #marker-michika {
    right: 8.5%;
    top: 30%;
  }
}

#marker-gamburu-ngala {
  right: -8%;
  top: 3%;
}

@media (max-width: 64em) {
  #marker-gamburu-ngala {
    right: -8%;
    top: 3%;
  }
}

@media (max-width: 480px) {
  #marker-gamburu-ngala {
    right: -12%;
    top: 0%;
  }
}

#marker-bama {
  right: 6%;
  top: 14%;
}

@media (max-width: 64em) {
  #marker-bama {
    right: 6%;
    top: 14%;
  }
}

@media (max-width: 480px) {
  #marker-bama {
    right: 6%;
    top: 14%;
  }
}

#marker-sambisa {
  right: 6%;
  top: 15%;
}

@media (max-width: 64em) {
  #marker-sambisa {
    right: 6%;
    top: 15%;
  }
}

@media (max-width: 480px) {
  #marker-sambisa {
    right: 6%;
    top: 12%;
  }
}

#marker-monguno {
  right: 8%;
  top: 3%;
}

@media (max-width: 64em) {
  #marker-monguno {
    right: 8%;
    top: 3%;
  }
}

@media (max-width: 480px) {
  #marker-monguno {
    right: 8%;
    top: 0%;
  }
}

#marker-marte {
  right: 5%;
  top: 1%;
}

@media (max-width: 64em) {
  #marker-marte {
    right: 5%;
    top: 1%;
  }
}

@media (max-width: 480px) {
  #marker-marte {
    right: 5%;
    top: -2%;
  }
}

#marker-kulkawa {
  right: 7%;
  top: -6%;
}

@media (max-width: 64em) {
  #marker-kulkawa {
    right: 7%;
    top: -6%;
  }
}

@media (max-width: 480px) {
  #marker-kulkawa {
    right: 6%;
    top: -9%;
  }
}

body, html {
  color: #EFEDED !important;
}

#page {
  background: #0E0E0E;
}

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

#header {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#header-h1 {
  max-width: 850px;
  font-family: 'Recife Display';
  font-size: 60px;
  font-weight: normal;
  line-height: 74px;
  text-align: center;
  letter-spacing: 1.28px;
  margin-bottom: 0;
}

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

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

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

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

#header-skip {
  display: inline-block;
  padding: 9px 0;
  margin-top: 40px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.34px;
  position: relative;
  text-transform: uppercase;
  color: #F7941E !important;
  overflow: hidden;
}

#header-skip::after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
}

#header-skip:hover::after {
  animation: a-underline 2s cubic-bezier(0.46, 0.08, 0, 1);
}

@media (min-width: 1024px) {
  #header-h1 {
    min-width: 850px;
    max-width: 850px;
  }
}

@media (max-width: 60.625em) {
  #header-h1 {
    max-width: 440px;
    font-size: 35px;
    line-height: 42px;
    letter-spacing: -0.04px;
    margin-top: 0;
  }
  #header-skip {
    margin-top: 20px;
  }
}

@media (max-width: 580px) {
  #header-h1 {
    width: calc(100% - 20px * 2);
    max-width: 360px;
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 375px) and (max-height: 580px) {
  #header-h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#header-scroll {
  max-width: 140px;
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  top: -74px;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.34px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.5s ease-in;
}

#header-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  display: block;
  background: currentColor;
  margin-top: 20px;
  pointer-events: none;
  position: relative;
  left: 50%;
}

html[dir='rtl'] #header-scroll::after {
  margin-right: auto;
}

#header-scroll.opacity {
  opacity: 0 !important;
}

#header-scroll .show-in-mobile {
  display: none;
}

@media (max-width: 60.625em) {
  #header-scroll {
    top: -70px;
  }
  #header-scroll .header-scroll-text:not(.show-in-mobile) {
    display: none;
  }
  #header-scroll .header-scroll-text.show-in-mobile {
    display: block;
  }
}

#news {
  margin-top: -200px;
}

html[dir='rtl'] #news {
  direction: ltr;
}

#news .news-row {
  display: flex;
  align-items: flex-start;
}

#news .news-row:nth-child(2) {
  margin-top: -70px;
}

#news .news-row:nth-child(2), #news .news-row:nth-child(3) {
  justify-content: space-between;
}

#news .news-row:nth-child(5) {
  justify-content: flex-end;
  margin-top: -19vw;
}

html[dir='rtl'] #news .news-row:nth-child(5) .newspaper-item {
  margin-left: auto;
  margin-right: 0%;
}

#news.done .newspaper-item {
  transform: none;
  opacity: 1;
  transition: none;
  will-change: none;
}

@media (max-width: 60.625em) {
  #news {
    margin-top: -160px;
  }
  #news .news-row {
    flex-direction: column;
    align-items: center;
    justify-content: initial;
  }
  #news .news-row:nth-child(2), #news .news-row:nth-child(3) {
    flex-direction: column-reverse;
  }
  #news .news-row:nth-child(5) {
    justify-content: center;
    margin-top: -24vw;
  }
}

#newspaper-1 {
  display: inline-block;
  position: relative;
  left: 38%;
}

#newspaper-1 .newspaper-item-image, #newspaper-1 .newspaper-item-info {
  transform: none;
}

#newspaper-1 .newspaper-item-image {
  width: 48.958vw;
  opacity: 0.5;
}

#newspaper-1 .newspaper-item-info {
  position: relative;
  margin-left: 48%;
  margin-top: -85px;
  opacity: 1;
}

@media (max-width: 60.625em) {
  #newspaper-1 {
    left: 0;
  }
  #newspaper-1 .newspaper-item-image {
    width: 130vw;
    max-width: 520px;
    margin-left: 29vw;
  }
  html[dir='rtl'] #newspaper-1 .newspaper-item-image {
    margin-left: auto;
    margin-right: 29vw;
  }
  #newspaper-1 .newspaper-item-info {
    position: relative;
    margin-left: 48%;
    margin-top: -25px;
  }
  html[dir='rtl'] #newspaper-1 .newspaper-item-info {
    margin-left: auto;
    margin-right: 48%;
  }
}

#newspaper-2 {
  display: inline-block;
  position: relative;
}

#newspaper-2 .newspaper-item-image {
  width: 47.91666666666667vw;
}

#newspaper-2 .newspaper-item-info {
  position: relative;
  top: -16vw;
  margin-left: 9%;
}

@media (max-width: 60.625em) {
  #newspaper-2 .newspaper-item-image {
    width: 130vw;
    max-width: 520px;
  }
  #newspaper-2 .newspaper-item-info {
    top: -22vw;
    margin-left: 24%;
  }
}

#newspaper-3 .newspaper-item-image {
  width: 50vw;
}

#newspaper-3 .newspaper-item-info {
  position: relative;
  margin-left: 26%;
}

@media (max-width: 60.625em) {
  #newspaper-3 .newspaper-item-image {
    width: 130vw;
    max-width: 520px;
  }
}

#newspaper-4 .newspaper-item-image {
  width: 40vw;
}

#newspaper-4 .newspaper-item-info {
  position: absolute;
  right: -20%;
  bottom: 161px;
}

@media (max-width: 60.625em) {
  #newspaper-4 .newspaper-item-image {
    width: 130vw;
    max-width: 520px;
  }
  #newspaper-4 .newspaper-item-info {
    bottom: auto;
    top: 12%;
    right: 17%;
  }
  html[dir='rtl'] #newspaper-4 .newspaper-item-info {
    left: 17%;
    right: auto;
  }
}

#newspaper-5 {
  position: relative;
}

#newspaper-5 .newspaper-item-image {
  width: 48vw;
}

#newspaper-5 .newspaper-item-info {
  position: relative;
  margin-left: 55%;
  margin-top: -54px;
}

html[dir='rtl'] #newspaper-5 {
  margin-right: 0;
}

@media (max-width: 60.625em) {
  #newspaper-5 {
    margin-top: -21vw;
  }
  #newspaper-5 .newspaper-item-image {
    width: 130vw;
    max-width: 520px;
  }
  #newspaper-5 .newspaper-item-info {
    margin-left: 47%;
  }
}

#newspaper-6 .newspaper-item-image {
  width: 50vw;
}

#newspaper-6 .newspaper-item-info {
  position: relative;
  margin-left: 53%;
}

@media (max-width: 60.625em) {
  #newspaper-6 .newspaper-item-image {
    width: 130vw;
    max-width: 520px;
  }
  #newspaper-6 .newspaper-item-info {
    margin-left: 33%;
  }
}

#newspaper-7 {
  position: relative;
  margin-left: 15%;
}

#newspaper-7 .newspaper-item-image {
  width: 60.55555555555555vw;
}

#newspaper-7 .newspaper-item-info {
  position: relative;
  margin-left: 50%;
  top: -8vw;
}

@media (max-width: 60.625em) {
  #newspaper-7 {
    margin-left: 0;
  }
  #newspaper-7 .newspaper-item-image {
    width: 150vw;
    max-width: 680px;
  }
  #newspaper-7 .newspaper-item-info {
    top: -22vw;
  }
}

#map-intro {
  text-align: center;
  margin-top: 45px;
}

#map-intro-h3 {
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 120px;
  font-family: 'Recife Display';
  font-style: normal;
  font-weight: normal;
  font-size: 52px;
  line-height: 72px;
  letter-spacing: 1.28571px;
}

html[dir='rtl'] #map-intro-h3 {
  font-family: 'Tajawal';
}

html[lang='ha'] #map-intro-h3 {
  font-family: 'Noto Serif';
}

#map-intro-h3::before {
  content: '';
  width: 1px;
  height: 80px;
  background: currentColor;
  display: block;
  margin: 0 auto;
  margin-bottom: 28px;
}

#map-intro p {
  max-width: 580px;
  margin: 0 auto;
  font-weight: 200;
  font-family: 'Recife Text';
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.1px;
}

html[dir='rtl'] #map-intro p {
  font-family: 'Tajawal';
}

html[lang='ha'] #map-intro p {
  font-family: 'Noto Serif';
}

@media (max-width: 60.625em) {
  #map-intro-h3 {
    max-width: 350px;
    font-size: 35px;
    line-height: 42px;
    letter-spacing: -0.04px;
    margin-bottom: 28px;
  }
  #map-intro-h3::before {
    height: 40px;
  }
  #map-intro p {
    max-width: 340px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.07px;
  }
}

#map {
  margin-top: 120px;
}

#map .flex {
  display: flex;
  justify-content: center;
}

#map-image-container {
  width: calc(100% - 230px * 2);
  max-width: 790px;
  position: relative;
}

#map-image {
  width: 100%;
}

#map .map-marker {
  transform: scale(0.3);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0, 0.09, 0, 1), opacity 0.6s ease-in;
}

#map .map-marker.show {
  transform: none;
  opacity: 1;
}

#map .left, #map .right {
  display: flex;
  flex-direction: column;
}

#map .left {
  margin-right: 30px;
  justify-content: center;
}

html[dir='rtl'] #map .left {
  margin-left: 30px;
  margin-right: 0;
}

#map .right {
  margin-left: 30px;
  justify-content: space-between;
}

#map .right .map-info {
  margin-bottom: 32px;
}

#map .right .map-info:nth-child(2) {
  margin-top: 32px;
}

#map .right .map-info:last-child {
  margin-bottom: 0;
}

html[dir='rtl'] #map .right {
  margin-right: 30px;
  margin-left: 0;
}

#map .map-info {
  max-width: 200px;
  opacity: 0;
  transform: translateY(20%);
  transition: transform 0.6s cubic-bezier(0, 0.09, 0, 1), opacity 0.6s ease-in;
  will-change: transform;
}

#map .map-info-title {
  font-family: 'Recife Display';
  font-style: normal;
  font-weight: normal;
  font-size: 66px;
  line-height: 66px;
  margin: 0;
  margin-bottom: 22px;
}

html[dir='rtl'] #map .map-info-title {
  font-family: 'Tajawal';
}

html[lang='ha'] #map .map-info-title {
  font-family: 'Noto Serif';
}

#map .map-info-title small {
  font-size: 46px;
}

#map .map-info-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.342857px;
  opacity: 0.85;
  margin: 0;
}

#map .map-info.show {
  opacity: 1;
  transform: none;
}

#map .show-in-mobile {
  display: none;
}

@media (max-width: 60.625em) {
  #map {
    text-align: center;
  }
  #map .flex {
    flex-direction: column;
    align-items: center;
  }
  #map .left {
    display: none;
  }
  #map .right {
    margin-left: 0;
    align-items: center;
  }
  html[dir='rtl'] #map .right {
    margin-left: 0;
    margin-right: 0;
  }
  #map .right .map-info:first-child {
    margin-top: 32px;
  }
  #map .right .map-info:nth-child(2) {
    margin-top: 0;
  }
  #map .show-in-mobile {
    display: block;
  }
  #map .map-info {
    max-width: 160px;
  }
  #map .map-info-title {
    font-size: 52px;
    line-height: 55px;
    margin-bottom: 12px;
  }
  #map .map-info-title small {
    font-size: 32px;
  }
  #map .map-info-text {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.25px;
  }
  #map-image-container {
    width: 100%;
    max-width: 590px;
  }
}

#map-outro {
  text-align: center;
  margin-top: 90px;
}

#map-outro p {
  max-width: 630px;
  margin: 0 auto;
  margin-bottom: 40px;
  font-weight: 200;
  font-family: 'Recife Text';
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.1px;
}

#map-outro p:last-child {
  margin-bottom: 0;
}

#map-outro p:last-child::after {
  content: '';
  width: 1px;
  height: 80px;
  background: currentColor;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

html[dir='rtl'] #map-outro p {
  font-family: 'Tajawal';
}

html[lang='ha'] #map-outro p {
  font-family: 'Noto Serif';
}

@media (max-width: 60.625em) {
  #map-outro p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.071px;
    margin-bottom: 30px;
  }
}

#footer {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 150px;
}

#footer .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

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

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

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

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

#footer-scroll {
  max-width: 150px;
  display: block;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: normal;
  line-height: 19px;
  letter-spacing: 0.342857px;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: all;
}

#footer-scroll::after {
  content: '';
  width: 1px;
  height: 76px;
  display: block;
  background: currentColor;
  margin-top: 20px;
  pointer-events: none;
  position: relative;
  left: 50%;
}

html[dir='rtl'] #footer-scroll::after {
  margin-right: auto;
}

@media (max-width: 60.625em) {
  #footer-h2 {
    max-width: 340px;
    font-size: 35px;
    line-height: 39px;
    letter-spacing: -0.04px;
  }
  #footer-scroll {
    font-size: 14px;
    line-height: 15px;
  }
  #footer-scroll::after {
    height: 46px;
  }
}

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

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .lang-es #map .map-info-title {
    font-size: 50px;
  }
  .lang-fr #map .map-info-title {
    font-size: 46px;
  }
}