:root {
  --vh: 1vh;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
  background-color: #001049;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  font-size: 36px;
  line-height: 28px;
  letter-spacing: 1px;
}


p {
  margin: 20px 0;
}

.text-center {
  text-align: center;
}

#nav-logo {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#nav-logo img:first-child {
  margin-bottom: 10px;
}

#menu-button {
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url('/against-harassment/menu.svg');
  background-repeat: no-repeat;
  background-position: center center;
}

#menu-button.open {
  background-image: url('/against-harassment/close.svg');
}

#side-nav {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  -webkit-transform: translateX(-250px);
      -ms-transform: translateX(-250px);
          transform: translateX(-250px);
  background-color: #001049;
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: -webkit-transform .25s ease-in-out;
  -o-transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}
[dir="rtl"] #side-nav {
  left: auto;
  right: 0;
  -webkit-transform: translateX(250px);
      -ms-transform: translateX(250px);
          transform: translateX(250px);
}
#side-nav-scrim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  opacity: 0;
  z-index: 75;
  pointer-events: none;
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
}

#side-nav.open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

#side-nav.open + #side-nav-scrim {
  opacity: 1;
  pointer-events: initial;
}

#top-nav {
  width: 100%;
  height: 57px;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  background-color: #001049;
  z-index: 200;
}

@media (min-width: 800px) {
  #nav-logo {
    height: 141px;
  }

  #top-nav {
    display: none;
  }

  [dir="rtl"] #side-nav, #side-nav {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

#side-nav ol {
  border-bottom: 1px solid #142252;
  counter-reset: nav-counter;
}

#side-nav ol li a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: #404a6c;
  height: 48px;
  line-height: 48px;
  border-top: 1px solid #142252;
  letter-spacing: 2px;
  counter-increment: nav-counter;
  -webkit-transition: color .25s ease-in-out;
  -o-transition: color .25s ease-in-out;
  transition: color .25s ease-in-out;
}

@media (min-width: 800px) {
  #side-nav ol li a {
    height: 70px;
    line-height: 70px;
  }
}

#side-nav ol li a:hover {
  color: #ffffff;
  background-color: #142252;
}

#side-nav ol li a::before {
  content: counter(nav-counter);
  font-size: 10px;
  margin-left: 20px;
  margin-right: 30px;
  position: relative;
  top: -2px;
}

[dir="rtl"] #side-nav ol li a {
  padding-right: 20px;
}

[dir="rtl"] #side-nav ol li a::before {
  display: none;
}

[dir="rtl"] #side-nav ol li a::after {
  content: ""
}

#side-nav ol li a.active {
  color: #ffffff;
}

main {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-size: 100% 250px, 100% 250px, cover, cover;
  background-position: top 0 center, bottom 0 center, center center, center center;
  background-repeat: no-repeat;
  scroll-snap-align: start;
  padding: 20px;
  padding-top: 77px;
}

@media (min-width: 800px) {
  section {
    width: calc(100% - 250px);
    margin-left: 250px;
    padding-top: 20px;
  }
  [dir="rtl"] section {
    margin-left: 0;
    margin-right: 250px;
  }
}


#survey, #helpline-numbers {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 500;
  background-image: url('/against-harassment/background-pattern.png');
  background-size: auto;
  background-repeat: repeat;
}

#survey .button, #helpline-numbers .button {
  background: #ffffff;
  color: #001049;
  -webkit-transition: color .25s ease-in-out;
  -o-transition: color .25s ease-in-out;
  transition: color .25s ease-in-out;
  margin-top: 40px;
  line-height: 50px;
}

#survey .button:hover, #helpline-numbers .button:hover {
  color: hsl(227, 100%, 24%);
}

#logo {
  margin-bottom: 32px;
}

#play-button {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
}

#play-button img {
  margin-bottom: 17px;
}

#play-button h3 {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 4px;
}

.button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  min-width: 174px;
  height: 54px;
  line-height: 54px;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 3px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0 20px;
  -webkit-transition: background-color .25s ease-in-out;
  -o-transition: background-color .25s ease-in-out;
  transition: background-color .25s ease-in-out;
}

.button:hover {
  background: rgba(255, 255, 255, .4);
}

.video-link {
  display: block;
  position: relative;
  padding-top: 56.25%;
  background-size: cover;
  border: 2px solid #ffffff;
  border-radius: 3px;
}

.video-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  -webkit-transition: background-color .25s ease-in-out;
  -o-transition: background-color .25s ease-in-out;
  transition: background-color .25s ease-in-out;
}

.video-link:hover::before {
  background: rgba(0,0,0,0.25);
}

.video-link img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.grid {
  width: 100%;
  max-width: 920px;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 16px;
  line-height: 20px;
}

.col {
  padding: 20px;
}

.col figure {
  height: 142px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

#interviews h4 {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.facebook, .twitter, .whatsapp {
  height: 49px;
  min-width: 88px;
  max-width: 88px;
  color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  white-space: nowrap;
  overflow: hidden;
}

.facebook {
  background-color: #3C5A99;
  border: 0;
  margin-bottom: 10px;
  background-image: url('/against-harassment/social-facebook.svg');
}

.facebook:hover {
  background-color: hsl(221, 44%, 52%);
}

.twitter {
  background-color: #1DA1F2;
  border: 0;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  background-image: url('/against-harassment/social-twitter.svg');
}

.twitter:hover {
  background-color: hsl(203, 89%, 63%);
}

.whatsapp {
  background-color: #128C7E;
  border: 0;
  margin-bottom: 10px;
  background-image: url('/against-harassment/social-whatsapp.svg');
}

.whatsapp:hover {
  background-color: hsl(173, 77%, 41%);
}

@media (min-width: 800px) {
  .facebook, .whatsapp, .twitter {
    height: 54px;
    min-width: 174px;
    max-width: 100%;
    color: white;
    background-image: none;
    padding: 0 20px;
  }
}

#the-initiative {
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 800px) {
  #the-initiative {
    font-size: 20px;
    line-height: 26px;
  }
}

#in-depth .grid {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  margin-left: -20px;
  width: calc(100% + 40px);
  overflow-x: scroll;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  padding: 20px 0;
}

[dir="rtl"] #in-depth .grid {
  margin-right: -20px;
}

#in-depth .col {
  scroll-snap-align: center;
  width: 100vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100vw;
          flex: 0 0 100vw;
  padding: 0 20px;
}

@media (min-width: 500px) {
  #in-depth .col {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 800px) {
  [dir="rtl"] #in-depth .grid, #in-depth .grid {
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    overflow: hidden;
    width: 100%;
  }

  #in-depth .col {
    width: 33.333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
  } 
}

#helpline-numbers .col {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 50%;
          flex: 0 50%;
  padding: 0;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  padding-right: 10px;
}

#helpline-numbers .col > div:first-child {
  font-size: 12px;
  font-weight: 400;
}

@media (min-width: 800px) {
  #helpline-numbers .grid {
    max-width: 1140px;
    margin-top: 80px;
  }

  #helpline-numbers .col {
    width: 33.333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    font-size: 24px;
    line-height: 22px;
    padding-right: 20px;
  }

  #helpline-numbers .col > div:first-child {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
  }
}

@media (min-width: 1080px) {
  #helpline-numbers .col {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}

#interviews .grid {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  margin-left: -20px;
  width: calc(100% + 40px);
  overflow-x: scroll;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  padding: 20px 0;
}

[dir="rtl"] #interviews .grid {
  margin-right: -20px;
}

#interviews .col {
  scroll-snap-align: center;
  width: 100vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100vw;
          flex: 0 0 100vw;
  padding: 20px;
}

@media (min-width: 800px) {
  [dir="rtl"] #interviews .grid, #interviews .grid {
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    overflow: hidden;
    width: 100%;
  }

  #interviews .col {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  } 
}

#engage .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 0;
  margin-bottom: 20px;
}

#engage p {
  margin-top: 0;
  margin-bottom: 10px;
}

#engage img {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  width: 42px;
  height: 42px;
  margin-right: 20px;
}

[dir="rtl"] #engage img {
  margin-right: 0;
  margin-left: 20px;
}

@media (min-width: 800px) {
  #engage .col {
    width: 33.333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    display: block;
    text-align: center;
    padding: 0 20px;
  }

  #engage img {
    width: 67px;
    height: 67px;
    margin: 0 auto 10px;
  }
}

#summary {
  font-size: 16px;
  line-height: 1.5;
}

#summary p {
  margin-top: 0;
}

@media (min-width: 800px) {
  #summary {
    font-size: inherit;
    line-height: inherit;
  }
}

.swipe {
  display: block;
  margin: -30px auto 40px;
  width: 8px;
  height: 4px;
  border-radius: 2px;
  background: #ffffff;
  -webkit-animation: swipe-right 1.5s ease-in-out infinite;
          animation: swipe-right 1.5s ease-in-out infinite;
}

[dir="rtl"] .swipe {
  -webkit-animation-name: swipe-left;
          animation-name: swipe-left;
}

@media (min-width: 800px) {
  .swipe {
    display: none;
  }
}

@-webkit-keyframes swipe-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  60% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}

@keyframes swipe-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  60% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}
@-webkit-keyframes swipe-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}
@keyframes swipe-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}

#country-selector-button {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #142252;
  border: 0;
  border-radius: 4px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  width: calc(100% - 20px);
  z-index: 3;
  cursor: pointer;
  -webkit-transition: background-color .25s ease-in-out;
  -o-transition: background-color .25s ease-in-out;
  transition: background-color .25s ease-in-out;
}

#country-selector-button:hover {
  background: hsl(226, 61%, 30%);
}

#country-selector-button span {
  margin: 0 10px;
}

#country-selector-button img:last-child {
  margin-left: auto;
}

[dir="rtl"] #country-selector-button img:last-child  {
  margin-left: 0;
  margin-right: auto;
}

#country-selector-scrim {
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

[dir="rtl"] #country-selector-scrim {
  right: 0;
  left: auto;
}

#country-selector {
  position: absolute;
  bottom: 54px;
  left: 10px;
  right: 10px;
  z-index: 3;
  background-color: #142252;
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  pointer-events: none;
  cursor: pointer;
}

#country-selector li a {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-decoration: none;
  background-color: #142252;
  -webkit-transition: background-color .25s ease-in-out;
  -o-transition: background-color .25s ease-in-out;
  transition: background-color .25s ease-in-out;
}

#country-selector li a:hover {
  background-color: hsl(226, 61%, 30%);
}

#country-selector li a img {
  margin-right: 10px;
}

[dir="rtl"] #country-selector li a img {
  margin-right: 0;
  margin-left: 10px;
}

#country-selector-button.open ~ #country-selector-scrim {
  opacity: 1;
  pointer-events: initial;
  cursor: pointer;
}

#country-selector-button.open ~ #country-selector {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: initial;
  cursor: pointer;
}