#bannerDeco {
  position: absolute;
  top: -600px;
  right: 220px;
  width: 70vh;
  height: 100vw;
  background: #eaeff7;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-43deg);
          transform: rotate(-43deg);
  z-index: -1;
}

#banner {
  position: relative;
  border-radius: 5px;
  height: 90vh;
  max-height: 760px;
  margin-top: 1em;
  position: relative;
  background-color: #ddd;
  background-size: cover;
  overflow: hidden;
  color: #f9d115;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}

#banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
}

#banner span {
  z-index: 1;
  font-weight: bold;
  font-size: 3.4em;
}

#slider {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #777;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.slide:not(.active) * {
  opacity: 0;
}

.slide span {
  -webkit-transform: translateY(60%);
          transform: translateY(60%);
  opacity: 0;
  transition: none;
}

.slide.active span {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: opacity 0.35s ease-out 0.25s, -webkit-transform 0.5s ease-out 0.25s;
  transition: opacity 0.35s ease-out 0.25s, transform 0.5s ease-out 0.25s;
  transition: opacity 0.35s ease-out 0.25s, transform 0.5s ease-out 0.25s, -webkit-transform 0.5s ease-out 0.25s;
}

.slide.active span:last-child {
  transition: opacity 0.25s ease-out 0.35s, -webkit-transform 0.4s ease-out 0.35s;
  transition: opacity 0.25s ease-out 0.35s, transform 0.4s ease-out 0.35s;
  transition: opacity 0.25s ease-out 0.35s, transform 0.4s ease-out 0.35s, -webkit-transform 0.4s ease-out 0.35s;
  margin-bottom: 0.7em;
}

.slide img,
.slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateX(-3%);
          transform: translateX(-3%);
  transition: opacity 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}

.slide.active ~ .slide img,
.slide.active ~ .slide video {
  -webkit-transform: scale(0.95) translateX(3%);
          transform: scale(0.95) translateX(3%);
}

.slide.active img,
.slide.active video {
  -webkit-transform: none;
          transform: none;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

#banner.playing-slideshow .slide.active img,
#banner.playing-slideshow .slide:not(.has-video).active video {
  -webkit-animation: zoom 35s ease-out;
          animation: zoom 35s ease-out;
}

@-webkit-keyframes zoom {
  to {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
}

@keyframes zoom {
  to {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
}

#sliderNav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 2em;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.4) 95%);
}

#sliderNav:not(.visible) {
  opacity: 0;
}

.slider-nav-item {
  flex: 1;
  max-width: 170px;
  height: 100%;
  font-weight: 100;
  font-size: 0.85em;
  letter-spacing: 0.04em;
  color: transparent;
  text-align: left;
}

.slider-nav-item.active {
  color: #ccc;
}

.slider-nav-item.active,
.slider-nav-item:last-child {
  transition: color 0.4s ease-out;
}

.slider-nav-item .text {
  flex: 1;
  text-align: center;
}

.slider-nav-item:after {
  content: "";
  position: absolute;
  margin: auto 0;
  top: 0;
  bottom: 0;
  height: 1px;
  left: 40px;
  right: 0;
  background: #555;
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.slider-nav-item.active:after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: none;
}

.slider-nav-item small {
  display: none;
  font-weight: 500;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease-out;
}

.slider-nav-item .image {
  position: relative;
  height: 40px;
  width: 40px;
  background: #fff;
  display: flex;
  margin-right: 0.5em;
  border-radius: 50%;
  transition: background 0.25s ease-out;
  box-sizing: content-box;
}

.slider-nav-item:not(.active) .image {
  background: transparent;
  border-color: transparent;
  transition: background 0.1s ease-out;
}

.slider-nav-item .image:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #888;
  transition: all 0.15s ease-in-out;
}

.slider-nav-item.active .image:before {
  -webkit-transform: scale(3.45);
          transform: scale(3.45);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-out, -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, opacity 0.2s ease-out;
  transition: transform 0.25s ease-out, opacity 0.2s ease-out, -webkit-transform 0.25s ease-out;
}

.slider-nav-item .image svg {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 48px;
  height: 48px;
  z-index: 1;
  stroke-dasharray: 131.946 131.946;
  stroke-dashoffset: 131.946;
  transition: stroke-dashoffset 5s linear;
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.slider-nav-item.active .image svg {
  stroke-dashoffset: 0;
}

.slider-nav-item:not(.active) .image svg {
  opacity: 0;
}

.slider-nav-item .image svg circle {
  fill: none;
  stroke: #7bcd8d;
  stroke-width: 3px;
  r: 21;
  cx: 24;
  cy: 24;
}

.slider-nav-item img {
  height: 70%;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  transition: none;
}

.slider-nav-item.active .image img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: opacity 0.15s ease-out, -webkit-transform 0.25s ease-out;
  transition: opacity 0.15s ease-out, transform 0.25s ease-out;
  transition: opacity 0.15s ease-out, transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

#how {
  margin-top: 6em;
  padding: 5em 0;
  background: #eaeff7;
}

#how h2 {
  color: #5f8cfb;
  position: relative;
  margin: auto;
  text-align: center;
  font-size: 1.1em;
  letter-spacing: 0.15em;
}

#programs {
  margin-top: 5.8em;
}

.a-program {
  margin-bottom: 6em;
}

.a-program:nth-child(even) {
  flex-direction: row-reverse;
}

.a-program .image {
  border-radius: 5px;
  min-height: 380px;
  background: #ddd;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  flex: 1;
}

.a-program .image img {
  width: 100%;
  min-height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.a-program .text {
  width: 40%;
  max-width: 380px;
  padding: 3em 0;
  margin-left: 4em;
}

.a-program:nth-child(even) .text {
  margin-left: 0;
  margin-right: 4em;
}

.a-program .text h3 {
  font-size: 2.6em;
  line-height: 1.1em;
  font-weight: bold;
  max-width: 90%;
  margin-bottom: 0.5em;
  color: #243043;
}

.a-program .text p {
  line-height: 1.5em;
  font-weight: 100;
  letter-spacing: 0.02em;
}

.program-stat-box {
  padding: 1.5em 0;
  background: #3062ad;
  border-radius: 5px;
  margin-top: 2em;
}

.program-stat-box .number {
  color: #f9d115;
  font-size: 3.2em;
  font-weight: bold;
  width: 35%;
  text-align: center;
}

.program-stat-box span:not(.number) {
  color: #e6effe;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  font-weight: 100;
}

#impact {
  background-color: #2060c1;
  background-size: 100vw;
  background-repeat: no-repeat;
  background-position: 2vw 90px;
  position: relative;
}

#impact .section-wrapper {
  height: 740px;
}

#impact .text {
  max-width: 530px;
  padding: 5em;
  padding-right: 0;
}

#impact .text h2 {
  color: #fff;
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 0.9em;
}

#impact .text p {
  color: #d7e7ff;
  font-weight: 100;
  line-height: 1.7em;
}

#impact #stats {
  padding: 5em;
  padding-left: 0;
  margin-left: -5em;
  color: #fff;
}

#impact #stats img {
  position: absolute;
  top: 2em;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 680px;
}

.stat-item {
  position: absolute;
  top: 4em;
  right: 10em;
  right: 1em;
  min-width: 120px;
  z-index: 1;
}

.stat-item:nth-child(2) {
  top: 16em;
  right: -1em;
}

.stat-item:nth-child(3) {
  top: 24em;
  left: -16.5em;
  right: auto;
}

.stat-item:nth-child(4) {
  top: 33em;
  left: -8em;
  right: auto;
}

.stat-item:nth-child(5) {
  top: 27em;
  right: 3em;
}

.stat-item:nth-child(3),
.stat-item:nth-child(4) {
  flex-direction: row-reverse;
}

.stat-item .number {
  position: relative;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.stat-item .number input {
  display: none;
}

.stat-item .number .details {
  position: absolute;
  top: -2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  background: #ecf3ff;
  border-radius: 6px;
  overflow: hidden;
  color: #222;
  min-width: 320px;
  z-index: 100;
}

.stat-item:nth-child(2) .number .details {
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
}

.stat-item:nth-child(5) .number .details {
  -webkit-transform: translateX(-70%);
          transform: translateX(-70%);
}

.stat-item .number input:not(:checked) + .details {
  display: none;
}

.stat-item .number .details button {
  background: #222;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
}

.stat-item .number .details button svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.stat-item .number .details h3 {
  font-size: 18px;
  padding: 0.8em 1em;
  border-bottom: 1px solid #dfdfdf;
  border-bottom: 1px solid #d8e0ed;
  font-weight: normal;
  color: #111;
  position: relative;
}

.stat-item .number .details h3 small {
  display: block;
  margin-top: 0.1em;
  font-size: 12px;
  font-weight: 100;
  color: #333;
}

.stat-item .number .details p {
  font-size: 15px;
  padding: 0.85em 1.2em;
  padding-bottom: 1.5em;
  line-height: 24px;
  font-weight: 100;
}

.stat-item .number:after {
  content: "Click to see details";
  position: absolute;
  bottom: -1.2em;
  left: 50%;
  right: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
  min-width: 120px;
  text-align: center;
  color: #f2d800;
  font-size: 11px;
  font-weight: 300;
}

.stat-item:nth-child(1) .number:after {
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

.stat-item:nth-child(3) .number:after {
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
}

.stat-item:nth-child(4) .number:after {
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
}

.stat-item:nth-child(5) .number:after {
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

.stat-item .number:hover:after {
  opacity: 1;
  transition: all 0.25s ease-out;
}

.stat-item .pointer {
  position: relative;
  border: solid #fff;
  border-width: 0 0 3px 0;
  width: 210px;
  font-size: 0.8em;
  font-weight: 100;
  letter-spacing: 0.05em;
  margin-right: 1.5em;
  padding: 1em;
  text-align: right;
}

.stat-item:nth-child(1) .pointer {
  width: 290px;
  border-width: 3px 0 0 3px;
  margin-top: 6em;
  padding-bottom: 4em;
}

.stat-item:nth-child(1) .pointer span {
  display: block;
  margin-top: -4.5em;
}

.stat-item:nth-child(3) .pointer,
.stat-item:nth-child(4) .pointer {
  width: 290px;
  margin-right: 0;
  margin-left: 1.5em;
  border-width: 0 3px 3px 0;
  text-align: left;
}

.stat-item .pointer:after {
  content: "";
  position: absolute;
  bottom: -7.5px;
  left: -7px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
}

.stat-item:nth-child(3) .pointer:after,
.stat-item:nth-child(4) .pointer:after {
  left: auto;
  right: -7px;
  width: 13px;
  top: 0;
  bottom: auto;
}

.stat-item .pointer:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 50%;
  right: 0;
  margin: auto 0;
  border-left: 1px solid #fff;
  height: 83px;
  border-radius: 50%;
}

.stat-item:nth-child(1) .pointer:before {
  top: -5em;
}

.stat-item:nth-child(3) .pointer:before,
.stat-item:nth-child(4) .pointer:before {
  right: auto;
  left: 0;
}

#partners {
  padding: 3em 0;
}

.partners-section {
  padding: 3em 0;
}

.partners-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  position: relative;
  text-align: center;
  margin-bottom: 3em;
}

.partners-section h2:after {
  content: "";
  position: absolute;
  bottom: -1em;
  right: 0;
  left: 0;
  width: 65px;
  height: 4px;
  background: #bbb;
  margin: auto;
  border-radius: 50px;
}

.partners-section img {
  height: 80px;
  margin-right: 2.7em;
}

#cta {
  padding: 8em 0;
  background-color: #000;
  background-size: cover;
  background-position: center;
  display: flex;
  align-content: unset;
  overflow: hidden;
}

#cta video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}

#cta .text {
  z-index: 1;
  margin: auto;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 2px #000;
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
  font-size: 2em;
  color: yellow;
}

#cta h2 {
  font-size: 1.6em;
  letter-spacing: 0.2em;
  margin-bottom: 1.2em;
}

#cta p {
  font-size: 1.05em;
  font-weight: 100;
  line-height: 1.75em;
  margin-bottom: 2em;
  color: #fff;
}

.program-stat-box span {
  text-transform: uppercase;
}

/*
Temporaly remove for website lauch 
*/

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 580px) {
  #bannerWrapper {
    padding: 0;
    margin: 0;
  }

  #banner {
    border: none;
    max-height: 400px;
    border-radius: 0;
  }

  #banner span {
    font-size: 1.8em;
    padding: 0 20px;
  }

  #sliderNav {
    display: none;
  }

  #how {
    margin-top: 0;
  }

  .a-program {
    flex-direction: column;
  }

  .a-program .text {
    width: 100%;
    margin-left: 0;
  }

  .a-program .text h3 {
    font-size: 2em;
    max-width: 100%;
  }

  .a-program .image img {
    min-height: auto;
  }

  .a-program .image {
    min-height: auto;
  }

  .a-program:nth-child(even) {
    flex-direction: column;
  }

  .a-program:nth-child(even) .text {
    margin-left: 0;
    margin-right: 0;
  }

  .a-program {
    margin-bottom: 0;
  }

  #impact {
    display: none;
  }

  #partners {
    padding: 0;
  }

  .partners-section > div {
    flex-wrap: wrap;
  }

  .partners-section img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 30%;
    margin-top: 20px;
  }

  #cta video {
    width: auto;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }

  #cta h2 {
    font-size: 1.4em;
    letter-spacing: 0.05em;
  }

  #partners .section-wrapper {
    padding: 0 1.5em;
  }

  .section-wrapper > .layout {
    flex-wrap: wrap;
  }

  footer .section-wrapper {
    padding: 0;
  }

  .footer-section .text {
    display: none;
  }

  .footer-section h2 {
    margin-top: 2.5em;
  }

  #footerContacts {
    margin-left: 1.5em;
  }

  .donate {
    display: none;
  }

  .a-program .text h3 {
    font-size: 2.3em;
    text-align: left;
  }

  .home-nav .nav-item {
    text-align: left;
    float: left;
    color: #ffd63e;
    margin-top: 2em;
    top: 5em;
  }
}

