/*!
 * Theme Name: RefugePoint
 * Description: Theme with Sass, Timber, & Twig
 * Author: James Macon <james@100danish.com>, Trevor Collins <trev@100danish.com>, Dossy Shiobara <dossy@panoptic.com>
 */
/*! ------------------------------------------------------------------ */
@import 'https://fonts.googleapis.com/css?family=Lato:300,400|Open+Sans:400,700,700i';
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

*, *:before, *:after {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  float: left;
  width: 100%;
}

svg {
  width: 100%;
  height: 100%;
}

img, svg, video, iframe {
  max-width: 100%;
}

ol {
  word-wrap: break-word;
  max-width: 100%;
}

img {
  display: block;
  margin-bottom: 0;
  max-width: 100%;
}

:root {
  --refugepoint-blue: #033347;
  --refugepoint-orange: #ff9300;
  --refugepoint-khaki: #ece6d6;
  --refugepoint-teal: #2c8da9;
  --color-blue-blue-dianne: #033347;
  --color-blue-smalt-blue: #2d5566;
  --color-blue-juniper: #577784;
  --color-blue-alabaster: #8199a3;
  --color-blue-kangaroo: #abbbc2;
  --color-blue-geyser: #d5dde0;
  --color-khaki-alabaster: #f2eee3;
  --color-khaki-baby-powder: #f9f7f1;
  --body-font: "Source Sans Pro", sans-serif;
  --heading-font: TiemposText, "Source Sans Pro", sans-serif;
}

@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-regular-italic.woff2) format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-medium-italic.woff2) format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-semibold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-semibold-italic.woff2) format("woff2");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: TiemposText;
  src: url(../woff2/tiempos-text-bold-italic.woff2) format("woff2");
  font-weight: 700;
  font-style: italic;
}
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 100%;
  padding: 0 15px;
}
@media (max-width: 1440px) {
  .container {
    width: 95%;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 97%;
  }
}
@media (max-width: 749px) {
  .container {
    width: 100%;
  }
}
.container--narrow {
  max-width: 75%;
}
@media (max-width: 540px) {
  .container--narrow {
    max-width: 100%;
  }
}

.grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.grid > * {
  vertical-align: top;
  min-height: 10px;
}

.grid-push-1of1 {
  left: 100%;
}

.grid-pull-1of1 {
  right: 100%;
}

.grid-1of1 {
  width: 100%;
  position: relative;
}

.grid-push-1of2 {
  left: 50%;
}

.grid-pull-1of2 {
  right: 50%;
}

.grid-1of2 {
  width: 50%;
  position: relative;
}

.grid-push-2of2 {
  left: 100%;
}

.grid-pull-2of2 {
  right: 100%;
}

.grid-2of2 {
  width: 100%;
  position: relative;
}

.grid-push-1of3 {
  left: 33.3333333333%;
}

.grid-pull-1of3 {
  right: 33.3333333333%;
}

.grid-1of3 {
  width: 33.3333333333%;
  position: relative;
}

.grid-push-2of3 {
  left: 66.6666666667%;
}

.grid-pull-2of3 {
  right: 66.6666666667%;
}

.grid-2of3 {
  width: 66.6666666667%;
  position: relative;
}

.grid-push-3of3 {
  left: 100%;
}

.grid-pull-3of3 {
  right: 100%;
}

.grid-3of3 {
  width: 100%;
  position: relative;
}

.grid-push-1of4 {
  left: 25%;
}

.grid-pull-1of4 {
  right: 25%;
}

.grid-1of4 {
  width: 25%;
  position: relative;
}

.grid-push-2of4 {
  left: 50%;
}

.grid-pull-2of4 {
  right: 50%;
}

.grid-2of4 {
  width: 50%;
  position: relative;
}

.grid-push-3of4 {
  left: 75%;
}

.grid-pull-3of4 {
  right: 75%;
}

.grid-3of4 {
  width: 75%;
  position: relative;
}

.grid-push-4of4 {
  left: 100%;
}

.grid-pull-4of4 {
  right: 100%;
}

.grid-4of4 {
  width: 100%;
  position: relative;
}

.grid-push-1of5 {
  left: 20%;
}

.grid-pull-1of5 {
  right: 20%;
}

.grid-1of5 {
  width: 20%;
  position: relative;
}

.grid-push-2of5 {
  left: 40%;
}

.grid-pull-2of5 {
  right: 40%;
}

.grid-2of5 {
  width: 40%;
  position: relative;
}

.grid-push-3of5 {
  left: 60%;
}

.grid-pull-3of5 {
  right: 60%;
}

.grid-3of5 {
  width: 60%;
  position: relative;
}

.grid-push-4of5 {
  left: 80%;
}

.grid-pull-4of5 {
  right: 80%;
}

.grid-4of5 {
  width: 80%;
  position: relative;
}

.grid-push-5of5 {
  left: 100%;
}

.grid-pull-5of5 {
  right: 100%;
}

.grid-5of5 {
  width: 100%;
  position: relative;
}

.grid-push-1of6 {
  left: 16.6666666667%;
}

.grid-pull-1of6 {
  right: 16.6666666667%;
}

.grid-1of6 {
  width: 16.6666666667%;
  position: relative;
}

.grid-push-2of6 {
  left: 33.3333333333%;
}

.grid-pull-2of6 {
  right: 33.3333333333%;
}

.grid-2of6 {
  width: 33.3333333333%;
  position: relative;
}

.grid-push-3of6 {
  left: 50%;
}

.grid-pull-3of6 {
  right: 50%;
}

.grid-3of6 {
  width: 50%;
  position: relative;
}

.grid-push-4of6 {
  left: 66.6666666667%;
}

.grid-pull-4of6 {
  right: 66.6666666667%;
}

.grid-4of6 {
  width: 66.6666666667%;
  position: relative;
}

.grid-push-5of6 {
  left: 83.3333333333%;
}

.grid-pull-5of6 {
  right: 83.3333333333%;
}

.grid-5of6 {
  width: 83.3333333333%;
  position: relative;
}

.grid-push-6of6 {
  left: 100%;
}

.grid-pull-6of6 {
  right: 100%;
}

.grid-6of6 {
  width: 100%;
  position: relative;
}

.grid-push-1of7 {
  left: 14.2857142857%;
}

.grid-pull-1of7 {
  right: 14.2857142857%;
}

.grid-1of7 {
  width: 14.2857142857%;
  position: relative;
}

.grid-push-2of7 {
  left: 28.5714285714%;
}

.grid-pull-2of7 {
  right: 28.5714285714%;
}

.grid-2of7 {
  width: 28.5714285714%;
  position: relative;
}

.grid-push-3of7 {
  left: 42.8571428571%;
}

.grid-pull-3of7 {
  right: 42.8571428571%;
}

.grid-3of7 {
  width: 42.8571428571%;
  position: relative;
}

.grid-push-4of7 {
  left: 57.1428571429%;
}

.grid-pull-4of7 {
  right: 57.1428571429%;
}

.grid-4of7 {
  width: 57.1428571429%;
  position: relative;
}

.grid-push-5of7 {
  left: 71.4285714286%;
}

.grid-pull-5of7 {
  right: 71.4285714286%;
}

.grid-5of7 {
  width: 71.4285714286%;
  position: relative;
}

.grid-push-6of7 {
  left: 85.7142857143%;
}

.grid-pull-6of7 {
  right: 85.7142857143%;
}

.grid-6of7 {
  width: 85.7142857143%;
  position: relative;
}

.grid-push-7of7 {
  left: 100%;
}

.grid-pull-7of7 {
  right: 100%;
}

.grid-7of7 {
  width: 100%;
  position: relative;
}

.grid-push-1of8 {
  left: 12.5%;
}

.grid-pull-1of8 {
  right: 12.5%;
}

.grid-1of8 {
  width: 12.5%;
  position: relative;
}

.grid-push-2of8 {
  left: 25%;
}

.grid-pull-2of8 {
  right: 25%;
}

.grid-2of8 {
  width: 25%;
  position: relative;
}

.grid-push-3of8 {
  left: 37.5%;
}

.grid-pull-3of8 {
  right: 37.5%;
}

.grid-3of8 {
  width: 37.5%;
  position: relative;
}

.grid-push-4of8 {
  left: 50%;
}

.grid-pull-4of8 {
  right: 50%;
}

.grid-4of8 {
  width: 50%;
  position: relative;
}

.grid-push-5of8 {
  left: 62.5%;
}

.grid-pull-5of8 {
  right: 62.5%;
}

.grid-5of8 {
  width: 62.5%;
  position: relative;
}

.grid-push-6of8 {
  left: 75%;
}

.grid-pull-6of8 {
  right: 75%;
}

.grid-6of8 {
  width: 75%;
  position: relative;
}

.grid-push-7of8 {
  left: 87.5%;
}

.grid-pull-7of8 {
  right: 87.5%;
}

.grid-7of8 {
  width: 87.5%;
  position: relative;
}

.grid-push-8of8 {
  left: 100%;
}

.grid-pull-8of8 {
  right: 100%;
}

.grid-8of8 {
  width: 100%;
  position: relative;
}

.grid-push-1of9 {
  left: 11.1111111111%;
}

.grid-pull-1of9 {
  right: 11.1111111111%;
}

.grid-1of9 {
  width: 11.1111111111%;
  position: relative;
}

.grid-push-2of9 {
  left: 22.2222222222%;
}

.grid-pull-2of9 {
  right: 22.2222222222%;
}

.grid-2of9 {
  width: 22.2222222222%;
  position: relative;
}

.grid-push-3of9 {
  left: 33.3333333333%;
}

.grid-pull-3of9 {
  right: 33.3333333333%;
}

.grid-3of9 {
  width: 33.3333333333%;
  position: relative;
}

.grid-push-4of9 {
  left: 44.4444444444%;
}

.grid-pull-4of9 {
  right: 44.4444444444%;
}

.grid-4of9 {
  width: 44.4444444444%;
  position: relative;
}

.grid-push-5of9 {
  left: 55.5555555556%;
}

.grid-pull-5of9 {
  right: 55.5555555556%;
}

.grid-5of9 {
  width: 55.5555555556%;
  position: relative;
}

.grid-push-6of9 {
  left: 66.6666666667%;
}

.grid-pull-6of9 {
  right: 66.6666666667%;
}

.grid-6of9 {
  width: 66.6666666667%;
  position: relative;
}

.grid-push-7of9 {
  left: 77.7777777778%;
}

.grid-pull-7of9 {
  right: 77.7777777778%;
}

.grid-7of9 {
  width: 77.7777777778%;
  position: relative;
}

.grid-push-8of9 {
  left: 88.8888888889%;
}

.grid-pull-8of9 {
  right: 88.8888888889%;
}

.grid-8of9 {
  width: 88.8888888889%;
  position: relative;
}

.grid-push-9of9 {
  left: 100%;
}

.grid-pull-9of9 {
  right: 100%;
}

.grid-9of9 {
  width: 100%;
  position: relative;
}

.grid-push-1of10 {
  left: 10%;
}

.grid-pull-1of10 {
  right: 10%;
}

.grid-1of10 {
  width: 10%;
  position: relative;
}

.grid-push-2of10 {
  left: 20%;
}

.grid-pull-2of10 {
  right: 20%;
}

.grid-2of10 {
  width: 20%;
  position: relative;
}

.grid-push-3of10 {
  left: 30%;
}

.grid-pull-3of10 {
  right: 30%;
}

.grid-3of10 {
  width: 30%;
  position: relative;
}

.grid-push-4of10 {
  left: 40%;
}

.grid-pull-4of10 {
  right: 40%;
}

.grid-4of10 {
  width: 40%;
  position: relative;
}

.grid-push-5of10 {
  left: 50%;
}

.grid-pull-5of10 {
  right: 50%;
}

.grid-5of10 {
  width: 50%;
  position: relative;
}

.grid-push-6of10 {
  left: 60%;
}

.grid-pull-6of10 {
  right: 60%;
}

.grid-6of10 {
  width: 60%;
  position: relative;
}

.grid-push-7of10 {
  left: 70%;
}

.grid-pull-7of10 {
  right: 70%;
}

.grid-7of10 {
  width: 70%;
  position: relative;
}

.grid-push-8of10 {
  left: 80%;
}

.grid-pull-8of10 {
  right: 80%;
}

.grid-8of10 {
  width: 80%;
  position: relative;
}

.grid-push-9of10 {
  left: 90%;
}

.grid-pull-9of10 {
  right: 90%;
}

.grid-9of10 {
  width: 90%;
  position: relative;
}

.grid-push-10of10 {
  left: 100%;
}

.grid-pull-10of10 {
  right: 100%;
}

.grid-10of10 {
  width: 100%;
  position: relative;
}

.grid-push-1of11 {
  left: 9.0909090909%;
}

.grid-pull-1of11 {
  right: 9.0909090909%;
}

.grid-1of11 {
  width: 9.0909090909%;
  position: relative;
}

.grid-push-2of11 {
  left: 18.1818181818%;
}

.grid-pull-2of11 {
  right: 18.1818181818%;
}

.grid-2of11 {
  width: 18.1818181818%;
  position: relative;
}

.grid-push-3of11 {
  left: 27.2727272727%;
}

.grid-pull-3of11 {
  right: 27.2727272727%;
}

.grid-3of11 {
  width: 27.2727272727%;
  position: relative;
}

.grid-push-4of11 {
  left: 36.3636363636%;
}

.grid-pull-4of11 {
  right: 36.3636363636%;
}

.grid-4of11 {
  width: 36.3636363636%;
  position: relative;
}

.grid-push-5of11 {
  left: 45.4545454545%;
}

.grid-pull-5of11 {
  right: 45.4545454545%;
}

.grid-5of11 {
  width: 45.4545454545%;
  position: relative;
}

.grid-push-6of11 {
  left: 54.5454545455%;
}

.grid-pull-6of11 {
  right: 54.5454545455%;
}

.grid-6of11 {
  width: 54.5454545455%;
  position: relative;
}

.grid-push-7of11 {
  left: 63.6363636364%;
}

.grid-pull-7of11 {
  right: 63.6363636364%;
}

.grid-7of11 {
  width: 63.6363636364%;
  position: relative;
}

.grid-push-8of11 {
  left: 72.7272727273%;
}

.grid-pull-8of11 {
  right: 72.7272727273%;
}

.grid-8of11 {
  width: 72.7272727273%;
  position: relative;
}

.grid-push-9of11 {
  left: 81.8181818182%;
}

.grid-pull-9of11 {
  right: 81.8181818182%;
}

.grid-9of11 {
  width: 81.8181818182%;
  position: relative;
}

.grid-push-10of11 {
  left: 90.9090909091%;
}

.grid-pull-10of11 {
  right: 90.9090909091%;
}

.grid-10of11 {
  width: 90.9090909091%;
  position: relative;
}

.grid-push-11of11 {
  left: 100%;
}

.grid-pull-11of11 {
  right: 100%;
}

.grid-11of11 {
  width: 100%;
  position: relative;
}

.grid-push-1of12 {
  left: 8.3333333333%;
}

.grid-pull-1of12 {
  right: 8.3333333333%;
}

.grid-1of12 {
  width: 8.3333333333%;
  position: relative;
}

.grid-push-2of12 {
  left: 16.6666666667%;
}

.grid-pull-2of12 {
  right: 16.6666666667%;
}

.grid-2of12 {
  width: 16.6666666667%;
  position: relative;
}

.grid-push-3of12 {
  left: 25%;
}

.grid-pull-3of12 {
  right: 25%;
}

.grid-3of12 {
  width: 25%;
  position: relative;
}

.grid-push-4of12 {
  left: 33.3333333333%;
}

.grid-pull-4of12 {
  right: 33.3333333333%;
}

.grid-4of12 {
  width: 33.3333333333%;
  position: relative;
}

.grid-push-5of12 {
  left: 41.6666666667%;
}

.grid-pull-5of12 {
  right: 41.6666666667%;
}

.grid-5of12 {
  width: 41.6666666667%;
  position: relative;
}

.grid-push-6of12 {
  left: 50%;
}

.grid-pull-6of12 {
  right: 50%;
}

.grid-6of12 {
  width: 50%;
  position: relative;
}

.grid-push-7of12 {
  left: 58.3333333333%;
}

.grid-pull-7of12 {
  right: 58.3333333333%;
}

.grid-7of12 {
  width: 58.3333333333%;
  position: relative;
}

.grid-push-8of12 {
  left: 66.6666666667%;
}

.grid-pull-8of12 {
  right: 66.6666666667%;
}

.grid-8of12 {
  width: 66.6666666667%;
  position: relative;
}

.grid-push-9of12 {
  left: 75%;
}

.grid-pull-9of12 {
  right: 75%;
}

.grid-9of12 {
  width: 75%;
  position: relative;
}

.grid-push-10of12 {
  left: 83.3333333333%;
}

.grid-pull-10of12 {
  right: 83.3333333333%;
}

.grid-10of12 {
  width: 83.3333333333%;
  position: relative;
}

.grid-push-11of12 {
  left: 91.6666666667%;
}

.grid-pull-11of12 {
  right: 91.6666666667%;
}

.grid-11of12 {
  width: 91.6666666667%;
  position: relative;
}

.grid-push-12of12 {
  left: 100%;
}

.grid-pull-12of12 {
  right: 100%;
}

.grid-12of12 {
  width: 100%;
  position: relative;
}

@media (min-width: 3200px) {
  .grid-1of1--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--monitor-cinema {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--monitor-cinema {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--monitor-cinema {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--monitor-cinema {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--monitor-cinema {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--monitor-cinema {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--monitor-cinema {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--monitor-cinema {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--monitor-cinema {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--monitor-cinema {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--monitor-cinema {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--monitor-cinema {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--monitor-cinema {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--monitor-cinema {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--monitor-cinema {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--monitor-cinema {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--monitor-cinema {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--monitor-cinema {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--monitor-cinema {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--monitor-cinema {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--monitor-cinema {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--monitor-cinema {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--monitor-cinema {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--monitor-cinema {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--monitor-cinema {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--monitor-cinema {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--monitor-cinema {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--monitor-cinema {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--monitor-cinema {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--monitor-cinema {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--monitor-cinema {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--monitor-cinema {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--monitor-cinema {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--monitor-cinema {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--monitor-cinema {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--monitor-cinema {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--monitor-cinema {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--monitor-cinema {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--monitor-cinema {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--monitor-cinema {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--monitor-cinema {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--monitor-cinema {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--monitor-cinema {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--monitor-cinema {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--monitor-cinema {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--monitor-cinema {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--monitor-cinema {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--monitor-cinema {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--monitor-cinema {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--monitor-cinema {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--monitor-cinema {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--monitor-cinema {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--monitor-cinema {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--monitor-cinema {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--monitor-cinema {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--monitor-cinema {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--monitor-cinema {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--monitor-cinema {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--monitor-cinema {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--monitor-cinema {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--monitor-cinema {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--monitor-cinema {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--monitor-cinema {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--monitor-cinema {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--monitor-cinema {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--monitor-cinema {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--monitor-cinema {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (min-width: 1800px) {
  .grid-1of1--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--monitor-tele {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--monitor-tele {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--monitor-tele {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--monitor-tele {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--monitor-tele {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--monitor-tele {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--monitor-tele {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--monitor-tele {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--monitor-tele {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--monitor-tele {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--monitor-tele {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--monitor-tele {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--monitor-tele {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--monitor-tele {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--monitor-tele {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--monitor-tele {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--monitor-tele {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--monitor-tele {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--monitor-tele {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--monitor-tele {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--monitor-tele {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--monitor-tele {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--monitor-tele {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--monitor-tele {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--monitor-tele {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--monitor-tele {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--monitor-tele {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--monitor-tele {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--monitor-tele {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--monitor-tele {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--monitor-tele {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--monitor-tele {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--monitor-tele {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--monitor-tele {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--monitor-tele {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--monitor-tele {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--monitor-tele {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--monitor-tele {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--monitor-tele {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--monitor-tele {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--monitor-tele {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--monitor-tele {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--monitor-tele {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--monitor-tele {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--monitor-tele {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--monitor-tele {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--monitor-tele {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--monitor-tele {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--monitor-tele {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--monitor-tele {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--monitor-tele {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--monitor-tele {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--monitor-tele {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--monitor-tele {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--monitor-tele {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--monitor-tele {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--monitor-tele {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--monitor-tele {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--monitor-tele {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--monitor-tele {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--monitor-tele {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--monitor-tele {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--monitor-tele {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--monitor-tele {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--monitor-tele {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--monitor-tele {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--monitor-tele {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 1500px) {
  .grid-1of1--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--monitor-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--monitor-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--monitor-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--monitor-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--monitor-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--monitor-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--monitor-large {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--monitor-large {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--monitor-large {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--monitor-large {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--monitor-large {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--monitor-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--monitor-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--monitor-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--monitor-large {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--monitor-large {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--monitor-large {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--monitor-large {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--monitor-large {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--monitor-large {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--monitor-large {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--monitor-large {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--monitor-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--monitor-large {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--monitor-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--monitor-large {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--monitor-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--monitor-large {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--monitor-large {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--monitor-large {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--monitor-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--monitor-large {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--monitor-large {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--monitor-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--monitor-large {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--monitor-large {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--monitor-large {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--monitor-large {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--monitor-large {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--monitor-large {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--monitor-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--monitor-large {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--monitor-large {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--monitor-large {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--monitor-large {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--monitor-large {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--monitor-large {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--monitor-large {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--monitor-large {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--monitor-large {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--monitor-large {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--monitor-large {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--monitor-large {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--monitor-large {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--monitor-large {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--monitor-large {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--monitor-large {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--monitor-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--monitor-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--monitor-large {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--monitor-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--monitor-large {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--monitor-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--monitor-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--monitor-large {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--monitor-large {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--monitor-large {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 1440px) {
  .grid-1of1--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--monitor-container {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--monitor-container {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--monitor-container {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--monitor-container {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--monitor-container {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--monitor-container {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--monitor-container {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--monitor-container {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--monitor-container {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--monitor-container {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--monitor-container {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--monitor-container {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--monitor-container {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--monitor-container {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--monitor-container {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--monitor-container {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--monitor-container {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--monitor-container {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--monitor-container {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--monitor-container {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--monitor-container {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--monitor-container {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--monitor-container {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--monitor-container {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--monitor-container {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--monitor-container {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--monitor-container {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--monitor-container {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--monitor-container {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--monitor-container {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--monitor-container {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--monitor-container {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--monitor-container {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--monitor-container {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--monitor-container {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--monitor-container {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--monitor-container {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--monitor-container {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--monitor-container {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--monitor-container {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--monitor-container {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--monitor-container {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--monitor-container {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--monitor-container {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--monitor-container {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--monitor-container {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--monitor-container {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--monitor-container {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--monitor-container {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--monitor-container {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--monitor-container {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--monitor-container {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--monitor-container {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--monitor-container {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--monitor-container {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--monitor-container {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--monitor-container {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--monitor-container {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--monitor-container {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--monitor-container {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--monitor-container {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--monitor-container {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--monitor-container {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--monitor-container {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--monitor-container {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--monitor-container {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--monitor-container {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 1199px) {
  .grid-1of1--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--notebook-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--notebook-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--notebook-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--notebook-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--notebook-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--notebook-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--notebook-large {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--notebook-large {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--notebook-large {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--notebook-large {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--notebook-large {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--notebook-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--notebook-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--notebook-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--notebook-large {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--notebook-large {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--notebook-large {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--notebook-large {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--notebook-large {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--notebook-large {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--notebook-large {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--notebook-large {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--notebook-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--notebook-large {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--notebook-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--notebook-large {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--notebook-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--notebook-large {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--notebook-large {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--notebook-large {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--notebook-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--notebook-large {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--notebook-large {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--notebook-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--notebook-large {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--notebook-large {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--notebook-large {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--notebook-large {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--notebook-large {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--notebook-large {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--notebook-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--notebook-large {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--notebook-large {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--notebook-large {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--notebook-large {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--notebook-large {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--notebook-large {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--notebook-large {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--notebook-large {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--notebook-large {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--notebook-large {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--notebook-large {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--notebook-large {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--notebook-large {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--notebook-large {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--notebook-large {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--notebook-large {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--notebook-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--notebook-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--notebook-large {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--notebook-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--notebook-large {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--notebook-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--notebook-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--notebook-large {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--notebook-large {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--notebook-large {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 949px) {
  .grid-1of1--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--notebook-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--notebook-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--notebook-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--notebook-small {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--notebook-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--notebook-small {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--notebook-small {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--notebook-small {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--notebook-small {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--notebook-small {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--notebook-small {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--notebook-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--notebook-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--notebook-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--notebook-small {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--notebook-small {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--notebook-small {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--notebook-small {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--notebook-small {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--notebook-small {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--notebook-small {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--notebook-small {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--notebook-small {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--notebook-small {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--notebook-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--notebook-small {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--notebook-small {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--notebook-small {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--notebook-small {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--notebook-small {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--notebook-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--notebook-small {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--notebook-small {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--notebook-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--notebook-small {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--notebook-small {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--notebook-small {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--notebook-small {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--notebook-small {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--notebook-small {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--notebook-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--notebook-small {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--notebook-small {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--notebook-small {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--notebook-small {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--notebook-small {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--notebook-small {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--notebook-small {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--notebook-small {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--notebook-small {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--notebook-small {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--notebook-small {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--notebook-small {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--notebook-small {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--notebook-small {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--notebook-small {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--notebook-small {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--notebook-small {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--notebook-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--notebook-small {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--notebook-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--notebook-small {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--notebook-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--notebook-small {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--notebook-small {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--notebook-small {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--notebook-small {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 849px) {
  .grid-1of1--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--tablet-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--tablet-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--tablet-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--tablet-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--tablet-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--tablet-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--tablet-large {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--tablet-large {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--tablet-large {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--tablet-large {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--tablet-large {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--tablet-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--tablet-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--tablet-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--tablet-large {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--tablet-large {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--tablet-large {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--tablet-large {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--tablet-large {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--tablet-large {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--tablet-large {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--tablet-large {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--tablet-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--tablet-large {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--tablet-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--tablet-large {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--tablet-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--tablet-large {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--tablet-large {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--tablet-large {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--tablet-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--tablet-large {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--tablet-large {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--tablet-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--tablet-large {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--tablet-large {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--tablet-large {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--tablet-large {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--tablet-large {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--tablet-large {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--tablet-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--tablet-large {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--tablet-large {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--tablet-large {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--tablet-large {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--tablet-large {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--tablet-large {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--tablet-large {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--tablet-large {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--tablet-large {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--tablet-large {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--tablet-large {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--tablet-large {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--tablet-large {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--tablet-large {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--tablet-large {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--tablet-large {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--tablet-large {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--tablet-large {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--tablet-large {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--tablet-large {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--tablet-large {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--tablet-large {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--tablet-large {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--tablet-large {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--tablet-large {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--tablet-large {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 749px) {
  .grid-1of1--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--tablet-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--tablet-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--tablet-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--tablet-small {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--tablet-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--tablet-small {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--tablet-small {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--tablet-small {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--tablet-small {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--tablet-small {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--tablet-small {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--tablet-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--tablet-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--tablet-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--tablet-small {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--tablet-small {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--tablet-small {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--tablet-small {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--tablet-small {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--tablet-small {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--tablet-small {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--tablet-small {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--tablet-small {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--tablet-small {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--tablet-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--tablet-small {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--tablet-small {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--tablet-small {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--tablet-small {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--tablet-small {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--tablet-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--tablet-small {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--tablet-small {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--tablet-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--tablet-small {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--tablet-small {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--tablet-small {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--tablet-small {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--tablet-small {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--tablet-small {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--tablet-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--tablet-small {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--tablet-small {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--tablet-small {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--tablet-small {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--tablet-small {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--tablet-small {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--tablet-small {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--tablet-small {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--tablet-small {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--tablet-small {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--tablet-small {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--tablet-small {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--tablet-small {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--tablet-small {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--tablet-small {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--tablet-small {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--tablet-small {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--tablet-small {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--tablet-small {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--tablet-small {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--tablet-small {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--tablet-small {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--tablet-small {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--tablet-small {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--tablet-small {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--tablet-small {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 540px) {
  .grid-1of1--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--palm {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--palm {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--palm {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--palm {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--palm {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--palm {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--palm {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--palm {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--palm {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--palm {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--palm {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--palm {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--palm {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--palm {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--palm {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--palm {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--palm {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--palm {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--palm {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--palm {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--palm {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--palm {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--palm {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--palm {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--palm {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--palm {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--palm {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--palm {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--palm {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--palm {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--palm {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--palm {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--palm {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--palm {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--palm {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--palm {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--palm {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--palm {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--palm {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--palm {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--palm {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--palm {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--palm {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--palm {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--palm {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--palm {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--palm {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--palm {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--palm {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--palm {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--palm {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--palm {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--palm {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--palm {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--palm {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--palm {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--palm {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--palm {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--palm {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--palm {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--palm {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--palm {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--palm {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--palm {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--palm {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--palm {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--palm {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 420px) {
  .grid-1of1--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--phone {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--phone {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--phone {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--phone {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--phone {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--phone {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--phone {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--phone {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--phone {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--phone {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--phone {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--phone {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--phone {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--phone {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--phone {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--phone {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--phone {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--phone {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--phone {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--phone {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--phone {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--phone {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--phone {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--phone {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--phone {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--phone {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--phone {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--phone {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--phone {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--phone {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--phone {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--phone {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--phone {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--phone {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--phone {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--phone {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--phone {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--phone {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--phone {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--phone {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--phone {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--phone {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--phone {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--phone {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--phone {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--phone {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--phone {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--phone {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--phone {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--phone {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--phone {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--phone {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--phone {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--phone {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--phone {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--phone {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--phone {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--phone {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--phone {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--phone {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--phone {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--phone {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--phone {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--phone {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--phone {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--phone {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--phone {
    width: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 340px) {
  .grid-1of1--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of2--xs {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-2of2--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of3--xs {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of3--xs {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of3--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of4--xs {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-2of4--xs {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-3of4--xs {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-4of4--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of5--xs {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-2of5--xs {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-3of5--xs {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-4of5--xs {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-5of5--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of6--xs {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-2of6--xs {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-3of6--xs {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-4of6--xs {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-5of6--xs {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-6of6--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of7--xs {
    width: 14.2857142857%;
    left: 0;
    right: 0;
  }
  .grid-2of7--xs {
    width: 28.5714285714%;
    left: 0;
    right: 0;
  }
  .grid-3of7--xs {
    width: 42.8571428571%;
    left: 0;
    right: 0;
  }
  .grid-4of7--xs {
    width: 57.1428571429%;
    left: 0;
    right: 0;
  }
  .grid-5of7--xs {
    width: 71.4285714286%;
    left: 0;
    right: 0;
  }
  .grid-6of7--xs {
    width: 85.7142857143%;
    left: 0;
    right: 0;
  }
  .grid-7of7--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of8--xs {
    width: 12.5%;
    left: 0;
    right: 0;
  }
  .grid-2of8--xs {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-3of8--xs {
    width: 37.5%;
    left: 0;
    right: 0;
  }
  .grid-4of8--xs {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-5of8--xs {
    width: 62.5%;
    left: 0;
    right: 0;
  }
  .grid-6of8--xs {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-7of8--xs {
    width: 87.5%;
    left: 0;
    right: 0;
  }
  .grid-8of8--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of9--xs {
    width: 11.1111111111%;
    left: 0;
    right: 0;
  }
  .grid-2of9--xs {
    width: 22.2222222222%;
    left: 0;
    right: 0;
  }
  .grid-3of9--xs {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-4of9--xs {
    width: 44.4444444444%;
    left: 0;
    right: 0;
  }
  .grid-5of9--xs {
    width: 55.5555555556%;
    left: 0;
    right: 0;
  }
  .grid-6of9--xs {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-7of9--xs {
    width: 77.7777777778%;
    left: 0;
    right: 0;
  }
  .grid-8of9--xs {
    width: 88.8888888889%;
    left: 0;
    right: 0;
  }
  .grid-9of9--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of10--xs {
    width: 10%;
    left: 0;
    right: 0;
  }
  .grid-2of10--xs {
    width: 20%;
    left: 0;
    right: 0;
  }
  .grid-3of10--xs {
    width: 30%;
    left: 0;
    right: 0;
  }
  .grid-4of10--xs {
    width: 40%;
    left: 0;
    right: 0;
  }
  .grid-5of10--xs {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-6of10--xs {
    width: 60%;
    left: 0;
    right: 0;
  }
  .grid-7of10--xs {
    width: 70%;
    left: 0;
    right: 0;
  }
  .grid-8of10--xs {
    width: 80%;
    left: 0;
    right: 0;
  }
  .grid-9of10--xs {
    width: 90%;
    left: 0;
    right: 0;
  }
  .grid-10of10--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of11--xs {
    width: 9.0909090909%;
    left: 0;
    right: 0;
  }
  .grid-2of11--xs {
    width: 18.1818181818%;
    left: 0;
    right: 0;
  }
  .grid-3of11--xs {
    width: 27.2727272727%;
    left: 0;
    right: 0;
  }
  .grid-4of11--xs {
    width: 36.3636363636%;
    left: 0;
    right: 0;
  }
  .grid-5of11--xs {
    width: 45.4545454545%;
    left: 0;
    right: 0;
  }
  .grid-6of11--xs {
    width: 54.5454545455%;
    left: 0;
    right: 0;
  }
  .grid-7of11--xs {
    width: 63.6363636364%;
    left: 0;
    right: 0;
  }
  .grid-8of11--xs {
    width: 72.7272727273%;
    left: 0;
    right: 0;
  }
  .grid-9of11--xs {
    width: 81.8181818182%;
    left: 0;
    right: 0;
  }
  .grid-10of11--xs {
    width: 90.9090909091%;
    left: 0;
    right: 0;
  }
  .grid-11of11--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
  .grid-1of12--xs {
    width: 8.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-2of12--xs {
    width: 16.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-3of12--xs {
    width: 25%;
    left: 0;
    right: 0;
  }
  .grid-4of12--xs {
    width: 33.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-5of12--xs {
    width: 41.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-6of12--xs {
    width: 50%;
    left: 0;
    right: 0;
  }
  .grid-7of12--xs {
    width: 58.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-8of12--xs {
    width: 66.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-9of12--xs {
    width: 75%;
    left: 0;
    right: 0;
  }
  .grid-10of12--xs {
    width: 83.3333333333%;
    left: 0;
    right: 0;
  }
  .grid-11of12--xs {
    width: 91.6666666667%;
    left: 0;
    right: 0;
  }
  .grid-12of12--xs {
    width: 100%;
    left: 0;
    right: 0;
  }
}
.grid--gutter {
  margin-left: -15px;
  margin-right: -15px;
}
.grid--gutter > div {
  padding-left: 15px;
  padding-right: 15px;
}

.grid--gutter-lg {
  margin-left: auto;
  margin-right: auto;
}
.grid--gutter-lg > div {
  padding-left: 35px;
  padding-right: 35px;
}

html {
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
}

.container {
  position: relative;
}

.container--sm {
  max-width: 1058px;
  padding: 0 15px;
}

section {
  position: relative;
  padding: 80px 0;
  float: none;
}
@media (max-width: 749px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 540px) {
  section {
    padding: 30px 0;
  }
}

.main-content {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  padding-bottom: 48%;
}
.main-content _:-ms-fullscreen, :root .main-content {
  padding-bottom: 80%;
}

body.page_where_we_work .main-content {
  padding-bottom: 0;
  background-image: none;
}

body ::-webkit-scrollbar {
  width: 8px;
}

body ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}

body ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: none;
  background-color: #ec9d41;
}

article {
  float: none;
  display: block;
}

.centered {
  text-align: center;
}

.righted {
  text-align: right;
}

.lefted {
  text-align: left !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-hide {
  display: none;
}

.u-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.list-reset,
.list-reset ul,
.list-reset li {
  list-style: none;
  padding-left: 0;
}

.u-screenReader {
  position: absolute;
  top: -99999px;
  left: -99999px;
  font-size: 0;
}

.u-circle {
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
}

.u-scroll-lock,
.modal-scroll-lock {
  overflow: hidden;
}

.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

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

.align-end {
  align-items: flex-end;
}

.f-direction-column {
  flex-direction: column;
}

.f-direction-row-r {
  flex-direction: row-reverse;
}

.f-direction-column-r {
  flex-direction: column-reverse;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mt60 {
  margin-top: 60px;
}

.mt30 {
  margin-top: 30px;
}

.mt28 {
  margin-top: 28px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.w100 {
  width: 100%;
}

.mb10 {
  margin-bottom: 10px;
}

.bg--silver {
  background: #dcecf1;
}

.bg--red {
  background: #db504a;
}

.bg--sec {
  background: #ff9300;
}

.bg-teal {
  background: #56a3a6;
}

.bg-teal--l {
  background: #2ec4b6;
}

.bg-teal--d {
  background: #084c61;
}

.bg--orange {
  background: #ff9300;
}

.bg--dark-blue {
  background: #033347;
}

.bg--light-blue {
  background: #2c8da9;
}

body, input, textarea, keygen, select, button, pre {
  font-family: "Source Sans Pro", sans-serif;
}

.body-font {
  font-family: "Source Sans Pro", sans-serif;
}

.heading-font,
.headline-font {
  font-family: TiemposText, "Source Sans Pro", sans-serif;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "kern";
  font-kerning: normal;
  color: #4f4f4f;
}

.page-content p a,
.page-content li a {
  color: #2c8da9;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: TiemposText, "Source Sans Pro", sans-serif;
  line-height: 1.4;
  margin: 0;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #232222;
}
@media (max-width: 749px) {
  h1 {
    font-size: 3.2rem !important;
    line-height: 1.3;
  }
}

h2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #232222;
}
@media (max-width: 749px) {
  h2 {
    font-size: 3.2rem !important;
    line-height: 1.3;
  }
}

h3 {
  color: #232222;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.6px;
}
@media (max-width: 749px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  color: #232222;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.48px;
}
@media (max-width: 749px) {
  h4 {
    font-size: 20px;
    line-height: 1.2;
  }
}

h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.16px;
}

p, span, i, ol, ul, li {
  font-size: 1.8rem;
}

label {
  text-align: left;
  display: block;
}

a {
  font-size: 1.8rem;
  -webkit-text-decoration: none;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.read-more {
  font-family: "Nunito Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  color: #2c8da9;
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.16px;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
}
.read-more span {
  position: relative;
  color: inherit;
  display: inline-flex;
  margin-left: 10px;
  height: 1px;
  width: 10px;
  background: currentColor;
  transition: all 0.2s ease-in-out;
}
.read-more span:before, .read-more span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 1px;
  width: 6px;
  background: currentColor;
  transform-origin: 100% 50%;
}
.read-more span:before {
  transform: rotate(45deg);
}
.read-more span:after {
  transform: rotate(-45deg);
}
.read-more:hover {
  opacity: 0.85;
}
.read-more:hover span {
  transform: translateX(5px);
}
.read-more.read-more--white {
  color: #fff;
}
.read-more.read-more--secondary {
  color: #2c8da9;
}

body.error404 main h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #232222;
}
@media (max-width: 749px) {
  body.error404 main h1 {
    font-size: 3.2rem !important;
    line-height: 1.2;
  }
}

body.home .subtitle_text {
  max-width: 800px;
  margin: 20px auto 64px;
}
body.home .subtitle_text p {
  text-align: center;
  margin-top: 0;
}

.wp-site-blocks article,
.wp-site-blocks aside,
.wp-site-blocks details,
.wp-site-blocks figcaption,
.wp-site-blocks figure,
.wp-site-blocks footer,
.wp-site-blocks header,
.wp-site-blocks hgroup,
.wp-site-blocks menu,
.wp-site-blocks nav,
.wp-site-blocks section {
  float: inherit;
}
.wp-site-blocks a {
  font-size: inherit;
}
.wp-site-blocks h2 {
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.wp-site-blocks .header .container:before {
  content: none;
}
.wp-site-blocks .wp-block-post-excerpt__more-link {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.wp-site-blocks .wp-block-post-excerpt__more-link:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.header {
  position: relative;
  z-index: 2;
  background: #fff;
}
.header .container {
  position: relative;
  padding: 20px 15px;
}
.header .container:before {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 0;
  width: calc(100% - 30px);
  height: 1px;
  background: rgba(79, 79, 79, 0.22);
}
.header ul {
  list-style: none;
  padding-left: 0;
}
.header ul li.current-menu-ancestor a {
  color: #ec9d41;
}
@media (max-width: 749px) {
  .header ul .menu-item:not(.menu-item--donate) {
    display: none;
  }
}
@media (max-width: 749px) {
  .header ul .menu-item.menu-item--donate {
    margin-left: 0;
  }
}
.header .menu-link {
  text-transform: uppercase;
  width: 99px;
  color: #4f4f4f;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.24rem;
  transition: all 0.25s ease;
}
@media (max-width: 849px) {
  .header .menu-link {
    font-size: 13px;
  }
}
.header .menu-link:hover {
  color: #ec9d41;
}
.header .navigation--main {
  position: relative;
}
.header .navigation--main > .menu li {
  margin: 0;
  display: inline-block;
}
.header .navigation--main > .menu > li {
  padding: 12px 0;
}
.header .navigation--main > .menu > li > a.menu__link {
  margin-top: 10px;
  padding-bottom: 12px;
  letter-spacing: 0.14rem;
}
@media (max-width: 899px) {
  .header .navigation--main > .menu li.menu__item {
    display: none;
  }
}
.header .navigation--main > .menu a.menu__link {
  display: block;
  padding: 2px 16px;
  text-transform: uppercase;
  color: #4f4f4f;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.07rem;
  transition: all 0.25s ease;
}
@media (max-width: 849px) {
  .header .navigation--main > .menu a.menu__link {
    font-size: 13px;
  }
}
.header .navigation--main > .menu li.navigation-toggle {
  display: none;
}
@media (max-width: 899px) {
  .header .navigation--main > .menu li.navigation-toggle {
    display: inline-block;
  }
}
.header .navigation--main > .menu .menu li {
  display: block;
  width: 100%;
}
.header .navigation--main > .menu .menu li a.menu__link {
  margin: 12px 0;
  text-transform: none;
  font-weight: normal;
}
.header .navigation--main > .menu .menu li a.menu__link:hover {
  color: #fff;
  background-color: #033347;
}
.header .navigation--main > .menu > .menu__item:hover {
  background-color: #dcecf1;
}
.header .navigation--main > .menu > .menu__item:hover > a {
  color: #033347;
}
.header .navigation--main > .menu > .menu__item:hover > .menu {
  max-height: none;
  display: flex;
  background-color: #dcecf1;
}
.header .navigation--main > .menu > .menu__item > .menu {
  z-index: 1;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-in-out;
  display: none;
  position: absolute;
  left: 0;
  top: 70px;
  right: 0;
  padding: 10px;
  background-color: #fff;
}
.header .navigation--main > .menu > .menu__item > .menu > li > a {
  font-weight: 600;
}

.nav-toggle {
  display: inline-block;
  vertical-align: middle;
  border: 0;
  margin-left: 30px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 749px) {
  .nav-toggle {
    margin-left: 20px;
  }
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 21px;
  background: #4f4f4f;
  transition: all 0.2s ease-in-out;
}
.nav-toggle span:nth-child(1) {
  width: 10px;
}
.nav-toggle span:nth-child(3) {
  width: 16px;
}
.nav-toggle span:not(:nth-child(4)) {
  margin-bottom: 5px;
}
.nav-toggle:hover span:nth-child(1), .nav-toggle:hover span:nth-child(3) {
  width: 21px;
}

.logo {
  line-height: 1;
}
.logo svg {
  max-height: 80px;
}

.logo__link {
  display: block;
  /* svg {
    max-width: 260px; } */
}
@media (max-width: 749px) {
  .logo__link {
    transform: translateY(2px);
  }
}

@media (max-width: 949px) {
  .logo__inner {
    width: 170px;
  }
}
@media (max-width: 749px) {
  .logo__inner {
    width: 140px;
  }
}

.modal-nav {
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 20px;
}
.modal-nav a {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
}
.modal-nav a:hover {
  color: #4f4f4f;
}
.modal-nav__ul-main {
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .modal-nav__ul-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.modal-nav__ul-main > li > a {
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2.52px;
}
.modal-nav__ul-main > li:nth-of-type(1) {
  order: 1;
}
.modal-nav__ul-main > li:nth-of-type(2) {
  order: 0;
}
.modal-nav__ul-main > li:nth-of-type(n+3) {
  order: 2;
}
.modal-nav .has-kids {
  min-width: 40%;
  margin-bottom: 50px;
}
.modal-nav .has-kids li {
  line-height: 1;
}
.modal-nav .has-kids li:not(:last-of-type) {
  margin-bottom: 8px;
}
.modal-nav .has-kids > a {
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2.52px;
}
.modal-nav .has-kids .sub-menu {
  display: block;
  margin-top: 10px;
}
.modal-nav .has-kids .sub-menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.96px;
}
@media (max-width: 540px) {
  .modal-nav .has-kids {
    margin-bottom: 40px;
  }
}

body.page_home .header {
  background: transparent;
}
@media (max-width: 749px) {
  body.page_home .header {
    padding-top: 0;
  }
}
body.page_home .header .container:before {
  display: none;
}

.inner-page-header,
.inner-page-siblings-menu {
  float: none;
}

.footer {
  background: #033347;
  color: #fff;
  padding-top: 52px;
  float: none;
  position: relative;
}
.footer _:-ms-fullscreen, :root .footer {
  padding-bottom: 50px;
}
.footer .js-newsletter-form {
  margin: 0 15px;
}
.footer * {
  font-size: 1.6rem !important;
}
.footer h5 {
  margin-bottom: 8px;
}
.footer p {
  margin-top: 0;
}
.footer__main:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 749px) {
  .footer__main {
    display: block;
  }
}
.footer__connect {
  background: rgba(79, 79, 79, 0.3);
  padding: 15px 40px;
  margin-bottom: 55px;
}
.footer__connect:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 849px) {
  .footer__connect {
    flex-direction: column;
  }
}
.footer__left {
  position: relative;
  padding-right: 60px;
  width: 350px;
}
.footer__left:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 1440px) {
  .footer__left {
    width: 280px;
  }
}
@media (max-width: 1199px) {
  .footer__left {
    width: 200px;
    padding-right: 30px;
  }
}
@media (max-width: 849px) {
  .footer__left {
    padding: 15px;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(79, 79, 79, 0.3);
  }
  .footer__left p {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__left img {
    margin: auto;
  }
}
.footer__left:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 1px;
  height: 120px;
  background: rgba(79, 79, 79, 0.3);
}
@media (max-width: 949px) {
  .footer__left:before {
    height: 300px;
  }
}
@media (max-width: 849px) {
  .footer__left:before {
    display: none;
  }
}
.footer__mid {
  flex: 1;
  padding: 0 60px 50px;
  padding: 0 50px 40px;
}
.footer__mid:after {
  content: "";
  display: table;
  clear: both;
}
.footer__mid .menu__item a {
  color: #fff;
}
@media (max-width: 1199px) {
  .footer__mid {
    padding: 0 20px 30px;
  }
}
@media (max-width: 849px) {
  .footer__mid {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    justify-content: space-around;
  }
}
@media (max-width: 540px) {
  .footer__mid {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 420px) {
  .footer__mid {
    justify-content: center;
  }
}
.footer__mid nav:nth-child(2) {
  flex-basis: 140px;
}
.footer__mid nav {
  width: auto;
  padding-right: 15px;
}
@media (max-width: 949px) {
  .footer__mid nav:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .footer__mid nav {
    min-width: 50%;
  }
}
@media (max-width: 420px) {
  .footer__mid nav {
    min-width: 100%;
    text-align: center;
  }
}
.footer__mid li:not(:last-of-type) {
  margin-bottom: 4px;
}
.footer__right {
  width: 360px;
  padding-left: 60px;
  position: relative;
}
.footer__right:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 1px;
  height: 120px;
  background: rgba(79, 79, 79, 0.3);
}
@media (max-width: 1440px) {
  .footer__right {
    width: 300px;
  }
}
.footer__right:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 1199px) {
  .footer__right {
    padding-left: 30px;
  }
  .footer__right:before {
    height: 300px;
  }
}
@media (max-width: 849px) {
  .footer__right {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    padding-left: 0;
  }
  .footer__right h5,
  .footer__right img {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__right h5 {
    margin-bottom: 10px;
  }
  .footer__right:before {
    display: none;
  }
}
@media (max-width: 749px) {
  .footer__right {
    padding-top: 30px;
  }
}
.footer__btm {
  border-top: 1px solid rgba(79, 79, 79, 0.3);
  padding-top: 20px;
  padding-bottom: 12px;
}
.footer__btm:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 420px) {
  .footer__btm .separator {
    content: "";
    visibility: hidden;
  }
  .footer__btm .separator:after {
    content: "";
    visibility: visible;
    display: block;
  }
}
.footer__btm p {
  letter-spacing: 0.24px;
}
.footer ul {
  padding-left: 0;
  list-style: none;
}
.footer ul li.current-menu-item a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.footer p {
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.24px;
}
.footer a {
  color: #232222;
  letter-spacing: 0.24px;
}
.footer a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.footer__soc ul {
  margin: 0 0 0 40px;
}
.footer__soc li {
  display: inline-block;
  margin: 5px;
}
.footer__soc a {
  display: flex;
  ustify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #4f4f4f;
  transition: all 0.2s ease-in-out;
}
.footer__soc a svg {
  fill: #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 14px;
  max-height: 14px;
}
.footer__soc a svg path {
  fill: #fff;
}
.footer__soc a:hover {
  background: #ff9300;
}
@media (max-width: 949px) {
  .footer__soc {
    display: block;
    text-align: center;
  }
  .footer__soc h5 {
    margin-bottom: 10px !important;
  }
  .footer__soc ul {
    margin: 0;
  }
}

.logo-footer {
  margin-bottom: 25px;
}
@media (max-width: 849px) {
  .logo-footer {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1199px) {
  .newsletter-form--footer input[type=text] {
    width: 180px;
  }
}
@media (max-width: 949px) {
  .newsletter-form--footer {
    margin-bottom: 30px;
    display: block;
  }
}
.newsletter-form--footer h5 {
  margin-right: 40px;
}
@media (max-width: 949px) {
  .newsletter-form--footer h5 {
    line-height: 1.3;
    max-width: 90px;
    margin-right: 20px;
    max-width: none;
    text-align: center;
    margin-bottom: 10px !important;
    margin-right: 0;
  }
}

.js-to-top {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: solid 1px #ff9300;
  ransform: translateX(100px);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.js-to-top.js-is-visible {
  transform: translateX(0);
  opacity: 1;
}
.js-to-top svg {
  width: 14px;
}
.js-to-top svg path {
  fill: #ff9300;
}
.js-to-top:hover {
  border-color: #ffb34d;
}
.js-to-top:hover svg path {
  fill: #ffb34d;
}

.js-newsletter-ty-text {
  display: none !important;
}

.footer-tweets a {
  color: #1da1f2;
  font-weight: 700;
}

.footer-tweet {
  padding: 15px 0;
}
.footer-tweet__icon svg {
  width: 22px;
  height: 24px;
  fill: #1da1f2;
}
.footer-tweet__time {
  text-align: right;
  color: #4f4f4f;
  font-size: 10px;
  font-style: italic;
  font-weight: 700;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
}

.page-content ul {
  list-style: none;
  padding-left: 0;
}
.page-content ul ul {
  list-style: none;
  padding-left: 0;
}
.page-content ul li {
  position: relative;
}
.page-content ul li > ul {
  padding-top: 10px;
}
.page-content ul li:before {
  content: "";
  position: absolute;
  left: 0;
}
.page-content ul > li {
  font-weight: 700;
  padding-left: 22px;
}
.page-content ul > li:before {
  width: 8px;
  height: 8px;
  top: 30px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS41IDIxLjUiPjx0aXRsZT5pY29uLXVub2Rlci1saXN0PC90aXRsZT48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxwb2x5Z29uIHBvaW50cz0iMjEuNSAyMS41IDIxLjUgMCAwIDAgNi4wMyA2LjAzIDAuMDIgMTIuMDQgOS4zNyAyMS4zOSAxNS4zNyAxNS4zOCAyMS41IDIxLjUgMjEuNSAyMS41Ii8+PC9nPjwvZz48L3N2Zz4=");
  top: 9px;
}
.page-content ul > li > ul > li {
  font-weight: 400;
  line-height: 30px;
  padding-left: 16px;
  font-style: italic;
}
.page-content ul > li > ul > li:not(:last-of-type) {
  margin-bottom: 15px;
}
.page-content ul > li > ul > li:before {
  width: 6px;
  height: 6px;
  top: 10px;
  border-radius: 50%;
  background: #ec9d41;
}
.page-content ul > li > ul > li ul > li {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 16px;
  font-style: normal;
}
.page-content ul > li > ul > li ul > li:not(:last-of-type) {
  margin-bottom: 5px;
}
.page-content ul > li > ul > li ul > li:before {
  width: 6px;
  height: 6px;
  top: 10px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #ec9d41;
}

.page-content ul.ul--normal > li {
  font-weight: 400;
}

.acc--trigger {
  cursor: pointer;
  font-weight: 700;
}
.acc--trigger:not(:first-of-type) {
  margin-top: 35px;
}
.acc--content {
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  padding-left: 35px;
  transition: all 0.2s ease-in-out;
}
.acc--active .acc--content,
.acc .acc--content.acc--active {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
}

.acc--ver1 .acc--trigger {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.36px;
}
.acc--ver1 .acc--trigger:before {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 300;
  background-color: #033347;
  border: 2px solid #033347;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='512px' height='512px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cpath fill='%23ffffff' d='M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 15px;
  transition: all 0.2s ease-in-out;
}
.acc--ver1 .acc--trigger.acc--active:before {
  content: "";
  background-color: transparent;
  color: #033347;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='512px' height='512px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cpath fill='%23033347' d='M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z'/%3E%3C/svg%3E");
}

.acc--ver1-2 .acc--trigger {
  font-weight: 400;
}
.acc--ver1-2 .acc--trigger:not(:first-of-type) {
  margin-top: 16px;
}
.acc--ver1-2 .acc--content {
  position: relative;
  margin-top: -4px;
}
.acc--ver1-2 .acc--content p {
  margin-top: 8px;
}
.acc--ver1-2 .acc--content p:last-of-type {
  margin-bottom: 0;
}
.acc--ver1-2 .acc--content:before {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 0;
  height: 100%;
  width: 1px;
  background: #ff9300;
}

.acc--checkbox {
  margin-bottom: 10px;
}
.acc--checkbox .acc--content {
  padding: 10px 0 0;
}
.acc--checkbox .acc--trigger {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 15px;
}
.acc--checkbox .acc--trigger span {
  position: relative;
  display: inline-flex;
  font-weight: 400;
  padding-left: 22px;
}
.acc--checkbox .acc--trigger span:before, .acc--checkbox .acc--trigger span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
}
.acc--checkbox .acc--trigger span:before {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid #ff9300;
}
.acc--checkbox .acc--trigger span:after {
  top: 9px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9300;
  opacity: 0;
}
.acc--checkbox .acc--trigger.acc--active span:after {
  opacity: 1;
}

.hero {
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 0;
  height: 440px;
  border-top: 3px solid #4f4f4f;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 949px) {
  .hero {
    height: 370px;
  }
}
@media (max-width: 849px) {
  .hero {
    height: 310px;
  }
}
@media (max-width: 540px) {
  .hero {
    height: 220px;
  }
}
.hero--map {
  position: relative;
}
.hero #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero h1 {
  position: absolute;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  margin: 0;
  height: 81px;
  padding-left: 100px;
  padding-right: 15px;
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.76px;
  background: #033347;
  /*
  &.color-self-reliance,
  &.color-self-reliance-initiative,
  &.color-self-reliance:before,
  &.color-self-reliance-initiative:before {
    background: $project-teal--d; }
  &.color-self-reliance:after,
  &.color-self-reliance-initiative:after {
    background: #416180; }
  */
}
@media (max-width: 749px) {
  .hero h1 {
    font-size: 28px;
    height: 54px;
    padding-left: 40px;
  }
}
@media (max-width: 420px) {
  .hero h1 {
    font-size: 22px;
    padding-left: 24px;
  }
}
.hero h1:before, .hero h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 10px;
  transform: skewY(45deg) translateY(5px);
}
.hero h1:before {
  left: 100%;
  height: 100%;
  background: #033347;
}
.hero h1:after {
  left: calc(100% + 10px);
  height: calc(100% - 10px);
  background: #ff9300;
}

.button,
button:not(.nav-toggle):not(.button--donate) {
  font-family: "Nunito Sans", sans-serif;
  height: 40px;
  -webkit-appearance: none;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border: none;
  -webkit-text-decoration: none;
  text-decoration: none;
  outline: none;
  border-radius: 20px;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.24px;
  padding: 0 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  transition: background-color 0.25s ease;
}

.button--black {
  color: #fff;
  background-color: #000;
}
.button--black:hover {
  background-color: #0d0d0d;
}
.button--white {
  color: #000;
  background-color: #fff;
}
.button--white:hover {
  background-color: #f2f2f2;
}
.button--rounded {
  color: #fff !important;
  background-color: #ff9300;
}
.button--rounded:hover {
  background-color: #ff9e1a;
}
.button--light-blue {
  color: #fff !important;
  background-color: #2c8da9;
}
.button--light-blue:hover {
  background-color: #319ebd;
}
.button--secondary, .button--donate,
.button #fr-button {
  font-family: "Source Sans Pro", sans-serif;
  color: #033347;
  background-color: white;
  border: 4px solid #ff9300;
  border-radius: 0;
  padding: 0 20px;
  letter-spacing: 0.24rem;
}
.button--secondary:hover, .button--donate:hover,
.button #fr-button:hover {
  background-color: #ff9300;
}
.button--square-secondary {
  border-radius: 3px !important;
  height: 50px;
  width: 128px;
  font-weight: 600;
  letter-spacing: 1.26px;
  color: #fff !important;
  background: #ff9300;
}
.button--square-secondary:hover {
  background: #ff9e1a;
}

.dropdown {
  position: relative;
  z-index: 1;
  width: 200px;
}
.dropdown button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  border: 2px solid #e6e6e6;
  background: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(79, 79, 79, 0.5);
  font-weight: 700;
  letter-spacing: 1.12px;
  transition: all 0.2s ease-in-out;
}
.dropdown button:hover, .dropdown button.option-active {
  border-color: #000;
  color: #000;
}
.dropdown button.dropdown__toggle {
  position: relative;
  justify-content: flex-start;
  padding-left: 20px;
}
.dropdown button.dropdown__toggle:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 6px;
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52.4 29.94' fill='%23818181'%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_2-2' data-name='Layer 2'%3E%3Cpath class='icon-chevron-down-1' d='M26.2,19.92h0L46.58.36a1.34,1.34,0,0,1,1.85,0L52,3.88A1.27,1.27,0,0,1,52,5.7L27.15,29.58a1.2,1.2,0,0,1-.95.35,1.25,1.25,0,0,1-.95-.35L.37,5.7a1.28,1.28,0,0,1,0-1.82L4,.38a1.34,1.34,0,0,1,1.85,0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  transition: all 0.2s ease-in-out;
}
.dropdown__content {
  top: 50px;
  left: 0;
  width: 200px;
  position: absolute;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #e6e6e6;
  display: none;
}
.dropdown__content button {
  width: 180px;
}
.dropdown__content button:not(:last-of-type) {
  margin-bottom: 6px;
}
.dropdown.js-isOpen button.dropdown__toggle {
  border-color: #000;
  color: #000;
}
.dropdown.js-isOpen button.dropdown__toggle:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.dropdown.js-isOpen .dropdown__content {
  display: block;
}

.form-control {
  height: 50px;
  border: 2px solid #d4d8da;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 10px;
  padding: 0 22px;
}

.newsletter-form form {
  display: flex;
  justify-content: center;
}
.newsletter-form input {
  width: 336px;
  height: 34px;
  padding: 0 20px;
  border: 0;
  border-radius: 2px 0 0 2px;
  background: #4f4f4f;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.24px;
  font-style: italic;
}
.newsletter-form input::-moz-placeholder {
  color: #989898;
}
.newsletter-form input::placeholder {
  color: #989898;
}
.newsletter-form button {
  width: 40px;
  height: 34px;
  padding: 0;
  border-radius: 0 2px 2px 0;
  background: #ff9300;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  transition: all 0.2s ease-in-out;
}
.newsletter-form button:hover {
  background: #db7e00;
}

.newsletter-form--light {
  position: relative;
  width: 100%;
  max-width: 444px;
}
.newsletter-form--light input {
  width: 100%;
  height: 56px;
  background: #fff;
  font-style: normal;
  font-size: 16px;
  border-radius: 4px;
  padding-right: 74px;
  color: #232222;
}
.newsletter-form--light [type=submit] {
  position: absolute;
  width: 60px;
  height: 52px;
  border-radius: 2px;
  top: 2px;
  right: 2px;
}

.form-group--switch {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-group--switch b {
  text-transform: uppercase;
  color: #acb9c2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.26px;
  transition: all 0.2s ease-in-out;
}
.form-group--switch b.opt1 {
  color: #232222;
}
.form-group--switch.js-is-active b.opt1 {
  color: #acb9c2;
}
.form-group--switch.js-is-active b.opt2 {
  color: #232222;
}

.form-group--switch span {
  position: relative;
  display: block;
  width: 58px;
  height: 26px;
  margin: 0 16px;
  overflow: hidden;
  border-radius: 14px;
  overflow: hidden;
}

.form-group--switch span input {
  position: absolute;
  left: 30px;
  top: 10px;
  opacity: 0;
}

.form-group--switch span label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #ff9300;
}

.form-group--switch span label:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 22px;
  border-radius: 12px;
  background-color: #fff;
  top: 2px;
  left: 2px;
  transition: all 0.2s ease-in-out;
}

.form-group--switch span input:disabled + label {
  opacity: 0.3;
  cursor: not-allowed;
}

.form-group--switch span input:checked + label:before {
  transform: translateX(26px);
}

.modal {
  position: fixed;
  display: flex;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  padding-top: 0px;
  z-index: 500;
  z-index: 3;
  pointer-events: none;
}
.modal .modal-content {
  z-index: 1;
  width: calc(100% - 50px);
  max-width: 750px;
  height: 100vh;
  background-color: #fff;
  padding: 90px;
  border-radius: 0 0 3px;
  transform: translateX(-100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
  overflow: hidden;
  padding: 0;
  transition: all 0.2s ease-in-out 0.25s;
}
.modal .modal-content__inner {
  padding: 90px;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 540px) {
  .modal .modal-content__inner {
    padding: 15px;
  }
}
.modal .modal-content a {
  color: #2c8da9;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.modal .modal-content a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.modal .modal-content h3 {
  margin-bottom: 20px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 540px) {
  .modal .modal-content h3.mb50 {
    margin-bottom: 20px !important;
  }
}
.modal .modal-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e6e6e6;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 540px) {
  .modal .modal-close {
    top: 30px;
    right: 15px;
  }
}
.modal .modal-close svg {
  fill: #4f4f4f;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.modal .modal-close:hover {
  border-color: #000;
}
.modal .modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.2s ease-in-out;
}
.modal--active {
  pointer-events: all;
}
.modal--active .modal-content {
  transform: translateX(0) !important;
  transition-delay: 0;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}
.modal--active .modal-backdrop {
  opacity: 1;
}
@media (max-width: 540px) {
  .modal .modal-content {
    width: 100%;
    max-width: 100%;
  }
}
.modal.modal--right {
  flex-direction: row-reverse;
}
.modal.modal--right .modal-close {
  right: 90px;
  top: 20px;
}
@media (max-width: 540px) {
  .modal.modal--right .modal-close {
    right: 15px;
  }
}
.modal.modal--right .modal-content {
  position: fixed;
  max-width: 498px;
  right: 0;
  border-radius: 3px 0 0 3px;
  transform: translateX(100%);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0);
}
.modal.modal--right .modal-content__inner {
  padding: 20px 60px 68px;
}
.modal.modal--right .button {
  display: flex;
  width: 160px;
  height: 40px;
  margin: 0 auto 46px;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 0.24rem;
}
.modal.modal--right li.current-menu-ancestor > a {
  color: #ec9d41;
}
.modal.modal--right li.current-menu-item > a {
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
}
@media (max-width: 540px) {
  .modal.modal--right .modal-content__inner {
    padding: 20px 15px 40px;
  }
  .modal.modal--right .button {
    margin: 0 auto 40px;
  }
  .modal.modal--right .modal-nav {
    float: none;
    margin-bottom: 30px;
  }
}
.modal.modal--donate .modal-content {
  padding-bottom: 50px;
}
.modal.modal--donate .modal-content:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 50px;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.newsletter-form--modal {
  clear: both;
}
.newsletter-form--modal [type=text],
.newsletter-form--modal [type=submit] {
  height: 40px;
}
.newsletter-form--modal [type=text] {
  border-radius: 0;
  background: #2c8da9;
  color: #fff;
}
.newsletter-form--modal [type=text]::-moz-placeholder {
  color: #dcecf1;
}
.newsletter-form--modal [type=text]::placeholder {
  color: #dcecf1;
}
.newsletter-form--modal [type=submit] {
  min-width: 40px;
  border-radius: 0;
}
.newsletter-form--modal h5 {
  color: #232222;
  font-weight: 700;
  letter-spacing: 1.08px;
  text-align: center;
  margin-bottom: 6px;
}

.modal-soc {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.modal-soc li:not(:last-of-type) {
  margin-right: 10px;
}
.modal-soc a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #033347;
  transition: all 0.2s ease-in-out;
}
.modal-soc a svg {
  fill: #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 14px;
  max-height: 14px;
}
.modal-soc a svg path {
  fill: #fff;
}
.modal-soc a:hover {
  background: #ff9300;
}

.modal blockquote {
  position: relative;
  margin: 36px 0 36px;
  border: 5px solid #aebd34;
  border-radius: 2px;
}
.modal blockquote p:first-of-type {
  position: relative;
  padding: 24px 32px;
}
.modal blockquote p:first-of-type:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 80px;
  opacity: 0.3;
  background-position: 16px 16px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MC40IDY0LjQiIGZpbGw9IiM4OTk1MjciPjxnIGRhdGEtbmFtZT0iTGF5ZXIgMiI+PGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj48cGF0aCBkPSJNODcuOCw2NC40Yy0yMy44LS40LTM3LTExLTM3LTM3LjRWMEg4My4yVjMySDcwLjhjLTEsMTEuNCw1LjgsMTguNCwxOS42LDE5LjhaTTM3LDY0LjRDMTMuMiw2NCwwLDUzLjQsMCwyN1YwSDMyLjRWMzJIMjBjLTEsMTEuNCw1LjgsMTguNCwxOS42LDE5LjhaIi8+PC9nPjwvZz48L3N2Zz4=");
}
.modal blockquote:before, .modal blockquote:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 74px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 34px 0;
  border-color: transparent #aebd34 transparent transparent;
}
.modal blockquote:after {
  transform: translate(-7px, -14px);
  border-color: transparent #fff transparent transparent;
}
.modal blockquote p {
  margin: 0;
  font-family: Merriweather, serif;
  color: #484e13;
  font-size: 16px;
}

.modal-loader {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.modal-loader.js-is-loading {
  opacity: 1;
  pointer-events: all;
}

.lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #e3b505;
  border-color: #e3b505 transparent #e3b505 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.banner-releases #site-header {
  top: 80px;
}
.banner-releases #site-header.scrolled {
  top: 0px;
}
.banner-releases.banner--closed #site-header {
  top: 0px;
}

.tabs-wrapper {
  position: relative;
}

.tabs-triggers {
  display: flex;
  margin-bottom: 30px;
}

.tab-trigger {
  color: #4f4f4f;
  cursor: pointer;
}
.tab-trigger:not(:last-of-type) {
  margin-right: 34px;
}

.tab-content {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 0px;
  width: 0px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  transition: transform 0.25s ease, visibility 0.25s ease, opacity 0.25s ease;
}
.tab-content.js-active {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
  position: relative;
  transform: translateX(0px);
}

.tabs-wrapper--default .tabs-triggers {
  position: relative;
}
@media (max-width: 749px) {
  .tabs-wrapper--default .tabs-triggers {
    flex-direction: column;
    padding-bottom: 10px;
  }
}
@media (max-width: 749px) {
  .tabs-wrapper--default .tabs-triggers__inner {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 25px;
    display: none;
  }
}
.tabs-wrapper--default .tabs-triggers:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -19px;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
}
@media (max-width: 949px) {
  .tabs-wrapper--default .tabs-triggers:before {
    bottom: -18px;
  }
}
@media (max-width: 749px) {
  .tabs-wrapper--default .tabs-triggers:before {
    bottom: 0;
  }
}
.tabs-wrapper--default .tab-trigger-toggle {
  position: relative;
  padding: 8px 25px;
  font-size: 14px;
  width: 100%;
  background: #ff9300;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
  border-radius: 25px;
  text-transform: uppercase;
  display: none;
  transition: all 0.2s ease-in-out;
}
.tabs-wrapper--default .tab-trigger-toggle:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 749px) {
  .tabs-wrapper--default .tab-trigger-toggle {
    display: block;
  }
}
.tabs-wrapper--default .tab-trigger {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  padding: 10px 0 20px;
  border-bottom: 1px solid transparent;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 949px) {
  .tabs-wrapper--default .tab-trigger {
    font-size: 12px;
    padding: 22px 0;
  }
}
@media (max-width: 749px) {
  .tabs-wrapper--default .tab-trigger {
    border: 2px solid #000;
    text-align: center;
    padding: 6px 0;
    border-radius: 25px;
  }
}
.tabs-wrapper--default .tab-trigger:not(:last-of-type) {
  margin-right: 50px;
}
@media (max-width: 949px) {
  .tabs-wrapper--default .tab-trigger:not(:last-of-type) {
    margin-right: 20px;
  }
}
@media (max-width: 749px) {
  .tabs-wrapper--default .tab-trigger:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.tabs-wrapper--default .tab-trigger:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 4px 4px;
  border-color: transparent transparent #2c8da9 transparent;
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 749px) {
  .tabs-wrapper--default .tab-trigger:before {
    display: none;
  }
}
.tabs-wrapper--default .tab-trigger:hover, .tabs-wrapper--default .tab-trigger.js-active {
  color: #2c8da9;
}
.tabs-wrapper--default .tab-trigger.js-active {
  border-color: #2c8da9;
}
.tabs-wrapper--default .tab-trigger.js-active:before {
  transform: translate(-50%, 0);
  opacity: 1;
}
.tabs-wrapper--default .tabs-content {
  padding-top: 20px;
}
.tabs-wrapper--default .tab-content__title {
  font-family: TiemposText, "Source Sans Pro", sans-serif;
  color: #232222;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-bottom: 30px;
}
@media (max-width: 749px) {
  .tabs-wrapper--default.js-mob-inner-open .tab-trigger-toggle {
    background: #ff9e1a;
  }
  .tabs-wrapper--default.js-mob-inner-open .tab-trigger-toggle:before {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .tabs-wrapper--default.js-mob-inner-open .tabs-triggers__inner {
    display: flex;
  }
}

.tabs-wrapper--btns .tabs-triggers {
  margin-bottom: 30px;
}
.tabs-wrapper--btns .tab-trigger {
  border-radius: 15px;
  border: 1px solid #232222;
  height: 30px;
  padding: 0 25px;
  color: #232222;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 1.44px;
  transition: all 0.2s ease-in-out;
}
.tabs-wrapper--btns .tab-trigger:not(:last-of-type) {
  margin-right: 10px;
}
.tabs-wrapper--btns .tab-trigger:hover, .tabs-wrapper--btns .tab-trigger.js-active {
  background: #232222;
  color: #fff;
}
.tabs-wrapper--btns .tab-content {
  padding-top: 20px;
}

.tabs-wrapper--imgs .tab-trigger {
  display: block;
  text-align: center;
  width: 143px;
}
@media (max-width: 1199px) {
  .tabs-wrapper--imgs .tab-trigger {
    width: 122px;
  }
}
@media (max-width: 949px) {
  .tabs-wrapper--imgs .tab-trigger {
    width: 106px;
  }
}
@media (max-width: 849px) {
  .tabs-wrapper--imgs .tab-trigger {
    width: 140px;
  }
}
.tabs-wrapper--imgs .tab-trigger__img-wrap {
  position: relative;
  padding: 0;
  backface-visibility: hidden;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0);
  min-width: 143px;
  width: 143px;
  height: 143px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1199px) {
  .tabs-wrapper--imgs .tab-trigger__img-wrap {
    min-width: 122px;
    width: 122px;
    height: 122px;
  }
}
@media (max-width: 949px) {
  .tabs-wrapper--imgs .tab-trigger__img-wrap {
    min-width: 106px;
    width: 106px;
    height: 106px;
  }
}
@media (max-width: 849px) {
  .tabs-wrapper--imgs .tab-trigger__img-wrap {
    min-width: 140px;
    width: 140px;
    height: 140px;
  }
}
.tabs-wrapper--imgs .tab-trigger__img-wrap:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: calc(100% - 2px);
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: #033347 transparent transparent transparent;
  opacity: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.tabs-wrapper--imgs .tab-trigger__img {
  position: absolute;
  z-index: 1;
  box-shadow: inset 0 0 0 0 transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
  transition: all 0.2s ease-in-out;
}
.tabs-wrapper--imgs .tab-trigger h4 {
  opacity: 0.55;
  color: #232222;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.44px;
  margin-top: 15px;
  line-height: 1.25;
  transition: all 0.2s ease-in-out;
}
.tabs-wrapper--imgs .tab-trigger:hover .tab-trigger__img-wrap, .tabs-wrapper--imgs .tab-trigger.js-active .tab-trigger__img-wrap {
  box-shadow: 0 14px 25px 1px rgba(0, 0, 0, 0.2);
}
.tabs-wrapper--imgs .tab-trigger:hover .tab-trigger__img, .tabs-wrapper--imgs .tab-trigger.js-active .tab-trigger__img {
  filter: grayscale(0);
  box-shadow: inset 0 0 0 6px #033347;
}
.tabs-wrapper--imgs .tab-trigger:hover h4, .tabs-wrapper--imgs .tab-trigger.js-active h4 {
  color: #033347;
  opacity: 1;
}
.tabs-wrapper--imgs .tab-trigger.js-active .tab-trigger__img-wrap:before {
  transform: translate(-50%, -3px);
  opacity: 1;
}
.tabs-wrapper--imgs .tabs-content {
  border-radius: 2px;
  border: 5px solid #033347;
  padding: 30px 50px;
  background: #fff;
}
.tabs-wrapper--imgs .tabs-content p {
  margin-bottom: 25px;
}

.swiper-container--organization {
  max-width: 1300px;
  width: 100%;
  margin-top: 80px;
}
.swiper-container--organization .swiper-slide {
  padding: 80px 28px 100px;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.swiper-container--organization .swiper-slide .text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 40px 30px;
  font-size: 1.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.swiper-container--organization .swiper-slide h4 {
  line-height: 1;
  padding: 20px 40px 20px;
  background: #dcecf1;
  font-size: 20px;
  font-weight: 400;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 0 0 2px 2px;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.swiper-container--organization .swiper-slide__inner {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0px 17px rgba(0, 0, 0, 0);
  opacity: 0.35;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.swiper-container--organization .swiper-slide__thumb {
  height: 0;
  padding-bottom: 74%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.swiper-container--organization .swiper-slide__content {
  text-align: center;
  border-radius: 0 0 2px 2px;
  overflow: hidden;
}
.swiper-container--organization .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.swiper-container--organization .swiper-slide.swiper-slide-active .text {
  max-height: 300px;
  opacity: 1;
}
.swiper-container--organization .swiper-slide.swiper-slide-active h4 {
  background: #fff;
}
.swiper-container--organization .swiper-slide.swiper-slide-active .swiper-slide__inner {
  transform: scale(1.3);
  opacity: 1;
  box-shadow: 0 8px 17px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1440px) {
  .swiper-container--organization {
    width: 940px;
  }
  .swiper-container--organization .swiper-slide {
    padding-left: 16px;
    padding-right: 16px;
  }
  .swiper-container--organization .swiper-slide .text {
    padding: 0 20px 20px;
  }
}
@media (max-width: 949px) {
  .swiper-container--organization {
    max-width: 740px;
    width: 100%;
    margin: 20px auto 0;
  }
  .swiper-container--organization .swiper-slide.swiper-slide-active .swiper-slide__inner {
    transform: scale(1);
  }
}
@media (max-width: 849px) {
  .swiper-container--organization {
    margin: 10px auto 0;
  }
}

.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  width: 42px;
  height: 42px;
  transition: all 0.2s ease-in-out;
  left: 348px;
  top: 460px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #033347;
  background-size: 9px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%) rotate(135deg);
  width: 16px;
  height: 16px;
  border-left: solid 3px #033347;
  border-top: solid 3px #033347;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.85;
}
@media (max-width: 1440px) {
  .swiper-button-prev,
  .swiper-button-next {
    left: 240px;
  }
}
@media (max-width: 949px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 40px;
  }
}

.swiper-button-prev {
  transform: scaleX(-1);
}
@media (max-width: 949px) {
  .swiper-button-prev {
    left: 16px;
  }
}

.swiper-button-next {
  left: auto;
  right: 348px;
}
@media (max-width: 1440px) {
  .swiper-button-next {
    right: 240px;
  }
}
@media (max-width: 949px) {
  .swiper-button-next {
    right: 16px;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.single-story-block {
  position: relative;
  padding: 0;
  min-height: 54vh;
}
@media (max-width: 1199px) {
  .single-story-block {
    min-height: 350px;
  }
}
@media (max-width: 749px) {
  .single-story-block {
    min-height: auto;
  }
}
.single-story-block .read-more span:before {
  transform: rotate(45deg) translateX(-1px);
}
.single-story-block .read-more span:after {
  transform: rotate(-45deg) translateY(-1px);
}
.single-story-block__thumb-wrap {
  position: relative;
  overflow: hidden;
}
@media (max-width: 749px) {
  .single-story-block__thumb-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.single-story-block__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.2s ease-in-out;
}
.single-story-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ece6d6;
  padding: 60px 104px 60px 94px;
}
@media (max-width: 749px) {
  .single-story-block__content {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.82);
  }
}
@media (max-width: 1199px) {
  .single-story-block__content {
    padding: 36px 52px 30px 47px;
  }
}
.single-story-block__excerpt {
  position: relative;
  font-family: Merriweather, serif;
  font-size: 26px !important;
  line-height: 1.6;
  margin: 0 0 20px;
}
@media (max-width: 1199px) {
  .single-story-block__excerpt {
    font-size: 18px !important;
    line-height: 1.8;
  }
}
.single-story-block__quote-icn {
  position: absolute;
  display: block;
  top: -65px;
  left: -220px;
  width: 300px;
  transform: scaleX(-1);
  opacity: 0.7;
}
@media (max-width: 749px) {
  .single-story-block__quote-icn {
    width: 200px;
    top: -40px;
    left: -154px;
  }
}
.single-story-block__meta {
  color: #232222;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.92px;
  margin-bottom: 6px;
}
@media (max-width: 1199px) {
  .single-story-block__meta {
    font-size: 14px;
  }
}
.single-story-block__meta span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.single-story-block:hover .single-story-block__thumb {
  transform: scale(1.05);
}

.flipping-card {
  position: relative;
  text-align: center;
  min-height: 430px;
  transform-style: preserve-3d;
  margin-bottom: 20px;
  transform: rotateY(0);
  box-shadow: 0 2px 0px rgba(44, 141, 169, 0);
  transition: all 1.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.flipping-card .frontface {
  background-color: #fff;
}
.flipping-card .frontface,
.flipping-card .backface {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  backface-visibility: hidden;
}
.flipping-card .backface {
  background: #222;
  color: #fff;
  text-align: left;
  border-radius: 3px;
  padding: 40px 32px;
  transform: rotateY(180deg);
}
.flipping-card .backface p, .flipping-card .backface a {
  color: #fff;
}
@media (max-width: 749px) {
  .flipping-card .backface p, .flipping-card .backface a {
    font-size: 14px;
  }
}
.flipping-card .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.4);
  background: #222;
}
.flipping-card .icon svg {
  max-width: 80px;
  max-height: 60px;
}
.flipping-card .icon path {
  fill: #fff;
}
.flipping-card h3 {
  color: #222;
  font-size: 60px;
  font-weight: 700;
  line-height: 30.05px;
  letter-spacing: 1.2px;
  padding-bottom: 28px;
  margin: 20px 0 14px;
  border-bottom: 2px solid currentColor;
}
.flipping-card p {
  line-height: 27px;
  margin: 0 0 6px;
}

.flipping-card.card1 .icon {
  background: #2c8da9;
}
.flipping-card.card1 .flip-card {
  color: #2c8da9;
}
.flipping-card.card1 h3 {
  color: #2c8da9;
}
.flipping-card.card1 .backface {
  background: #2c8da9;
}

.flipping-card.card2 .icon {
  background: #2c8da9;
}
.flipping-card.card2 .flip-card {
  color: #2c8da9;
}
.flipping-card.card2 h3 {
  color: #2c8da9;
}
.flipping-card.card2 .backface {
  background: #2c8da9;
}

.flip-card-wrap:hover .flipping-card {
  transform: rotateY(180deg);
  box-shadow: 0 27px 24px rgba(44, 141, 169, 0.35);
}
.flip-card-wrap:hover .flipping-card .frontface {
  backface-visibility: hidden;
}
.flip-card-wrap:hover .flipping-card .backface {
  backface-visibility: visible;
}

@media (max-width: 540px) {
  .flipping-card {
    box-shadow: 0 27px 24px rgba(44, 141, 169, 0.35);
  }
  .flip-card-wrap:hover .flipping-card {
    transform: rotateY(0);
  }
  .flip-card-wrap:hover .flipping-card .frontface {
    backface-visibility: visible;
  }
  .flip-card-wrap:hover .flipping-card .backface {
    backface-visibility: hidden;
  }
  .flipping-card.js-is-flipped {
    transform: rotateY(180deg) !important;
  }
  .flipping-card.js-is-flipped .frontface {
    backface-visibility: hidden;
  }
  .flipping-card.js-is-flipped .backface {
    backface-visibility: visible;
  }
}
.flip-card-info {
  display: none;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}
@media (max-width: 540px) {
  .flip-card-info {
    display: inline-block;
  }
}

.home-impact .flipping-card.card1 h3 {
  font-size: 2.5em;
}

#mc_embed_signup {
  max-width: 600px;
  margin: 0 auto;
}
#mc_embed_signup .indicates-required {
  margin-bottom: 1em;
}
#mc_embed_signup .asterisk {
  color: #e85c41;
  font-size: 150%;
  top: 5px;
  position: relative;
  font-weight: normal;
}
#mc_embed_signup .mc-field-group {
  margin-bottom: 1em;
}
#mc_embed_signup input[type=text],
#mc_embed_signup input[type=email],
#mc_embed_signup select {
  padding: 0.5em 0 0.5em 0.75em;
  line-height: 3;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0.5em;
  font: inherit;
}
#mc_embed_signup select {
  padding-left: 0.5em;
}
#mc_embed_signup div.mce_inline_error {
  margin-top: 0.3em !important;
}

.page-subscribe #mc_embed_signup ul li {
  display: flex;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  margin-bottom: 1em;
  padding-left: 0;
  align-items: start;
}
.page-subscribe #mc_embed_signup ul li:before {
  content: inherit;
}
.page-subscribe #mc_embed_signup ul li label {
  font-weight: normal;
  font-weight: initial;
}
.page-subscribe #mc_embed_signup ul li input {
  margin-top: 0.4em;
}

.error404 .page-content {
  min-height: 100%;
  min-height: 100vh;
}

.section-newsletter {
  color: #fff;
}
@media (max-width: 749px) {
  .section-newsletter {
    padding: 24px 0;
  }
}
@media (max-width: 749px) and (max-width: 749px) {
  .section-newsletter input {
    height: 42px;
  }
}
@media (max-width: 749px) {
  .section-newsletter [type=submit] {
    display: block;
  }
}
@media (max-width: 749px) and (max-width: 749px) {
  .section-newsletter [type=submit] {
    height: 38px;
  }
}
.section-newsletter .grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-newsletter .grid > div:first-of-type {
  position: relative;
}
@media (max-width: 749px) {
  .section-newsletter .grid > div:first-of-type {
    align-items: center;
  }
}
.section-newsletter .grid > div:first-of-type div {
  position: relative;
}
.section-newsletter .grid > div:first-of-type .icon {
  position: absolute;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #fff;
}
.section-newsletter .grid > div:first-of-type .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  fill: #fff;
}
.section-newsletter .grid > div:last-of-type {
  align-items: flex-end;
  padding-left: 30px;
}
@media (max-width: 749px) {
  .section-newsletter .grid > div:last-of-type {
    align-items: center;
    padding-top: 12px;
    padding-left: 0;
  }
}
.section-newsletter h4,
.section-newsletter p {
  padding-left: 108px;
}
.section-newsletter h4 {
  text-transform: uppercase;
  color: #fff;
}
.section-newsletter p {
  margin: 6px 0 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 749px) {
  .section-newsletter p {
    font-size: 16px;
  }
}

.contact-3-cols .grid-1of3 {
  margin-bottom: 40px;
}
.contact-3-cols .icn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background: #033347;
  border-radius: 50%;
  margin-bottom: 10px;
}
.contact-3-cols .icn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 30px;
  max-height: 36px;
  transform: translate(-50%, -50%);
}
.contact-3-cols .icn path {
  fill: #fff;
}
.contact-3-cols h6 {
  color: #232222;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.32px;
}
.contact-3-cols p {
  margin: 6px 0 0;
  font-size: 17px;
  color: #232222;
}
.contact-3-cols p a:not(.read-more) {
  color: #232222;
}
.contact-3-cols p .read-more {
  font-size: 14px;
  font-weight: 700;
}

.home-hero {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  float: none;
}
.home-hero .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 500px;
  max-height: 900px;
  height: 92vh;
}
@media (max-width: 749px) {
  .home-hero .container {
    max-height: 500px;
  }
}
.home-hero .container h1 {
  margin: 80px 0 0;
  color: #fff;
  font-size: 68px;
  font-weight: 900;
  line-height: 78px;
  max-width: 650px;
}
@media (max-width: 749px) {
  .home-hero .container h1 {
    font-size: 48px;
    line-height: 58px;
  }
}

.home-below-hero {
  padding: 75px 15px;
  background: #033347;
  color: #fff;
}
.home-below-hero h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: TiemposText, "Source Sans Pro", sans-serif;
  font-size: 4.2rem;
  line-height: 0.8;
  letter-spacing: 1.68px;
  margin-bottom: 20px;
  color: #fff;
}
.home-below-hero h2:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 147, 0, 0.5);
}
@media (max-width: 749px) {
  .home-below-hero h2 {
    font-size: 3rem;
  }
}
.home-below-hero p {
  max-width: 682px;
  margin: 0 auto 0;
}

.home-section-title {
  color: #232222;
  font-family: TiemposText, "Source Sans Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  letter-spacing: 2.24px;
  margin-bottom: 65px;
}
@media (max-width: 749px) {
  .home-section-title {
    font-size: 20px;
    line-height: 30px;
  }
}
.home-section-title span {
  display: block;
  text-transform: capitalize;
  font-size: 60px;
  letter-spacing: 1.2px;
  margin-top: 4px;
  font-size: 40px;
}
.home-why-refugees {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .home-why-refugees {
    padding: 64px 0;
  }
}
.home-why-refugees .flex {
  padding: 0 15px;
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .home-why-refugees .flex {
    justify-content: center;
  }
}
.home-why-refugees .col:first-of-type {
  flex: 1;
}
@media (max-width: 1199px) {
  .home-why-refugees .col:first-of-type {
    min-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .home-why-refugees .col:first-of-type h2,
  .home-why-refugees .col:first-of-type p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
  .home-why-refugees .col:first-of-type h2 {
    margin-bottom: 40px;
  }
}
.home-why-refugees .col:not(:last-of-type) {
  margin-right: 20px;
}
@media (max-width: 849px) {
  .home-why-refugees .col:nth-child(2) {
    margin: 0 15px 15px;
  }
}
@media (max-width: 749px) {
  .home-why-refugees .col:nth-child(2) {
    margin: 0 0 15px;
  }
}
@media (max-width: 1199px) {
  .home-why-refugees .col:first-of-type, .home-why-refugees .col:last-of-type {
    margin-right: 0;
  }
}
.home-why-refugees .home-section-title {
  margin-bottom: 20px;
}
.home-why-refugees p {
  line-height: 30px;
  max-width: 342px;
  margin-top: 8px;
}
.home-why-refugees__card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  padding: 20px 32px;
  color: #fff;
  border-radius: 3px;
  background: #2c8da9;
}
@media (max-width: 420px) {
  .home-why-refugees__card {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
}
.home-why-refugees__card svg {
  fill: #6c231f;
  opacity: 0.5;
}
.home-why-refugees__card:last-of-type svg {
  fill: #204c4e;
  opacity: 0.4;
}
.home-why-refugees__card h2 {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 150px;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-right: 34px;
  line-height: 0.76;
}
@media (max-width: 420px) {
  .home-why-refugees__card h2 {
    margin-right: 0;
  }
}
.home-why-refugees__card h2 svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-why-refugees__card h2 .txt {
  position: relative;
}
.home-why-refugees__card h2 span {
  display: block;
  font-size: 20px;
  letter-spacing: 1.8px;
  margin-bottom: 0;
  margin-top: 10px;
}
.home-why-refugees__card p {
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  max-width: 200px;
}

.home-tactics {
  padding: 120px 0 130px;
}
@media (max-width: 1199px) {
  .home-tactics {
    padding: 80px 0;
  }
}
@media (max-width: 749px) {
  .home-tactics {
    padding: 64px 0;
  }
  .home-tactics .grid--gutter {
    margin: 0;
  }
  .home-tactics .grid--gutter > div {
    padding: 0;
    margin-bottom: 30px;
  }
}
.home-tactics__card__thumb {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 189px;
  border-radius: 2px 2px 0 0;
}
@media (max-width: 749px) {
  .home-tactics__card__thumb {
    height: 0;
    padding-bottom: 50%;
  }
}
.home-tactics__card__icn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 4px solid #fff;
  bottom: 0;
  transform: translate(-50%, 50%);
  left: 50%;
}
.home-tactics__card__icn svg {
  fill: #fff;
  max-width: 40px;
  max-height: 44px;
}
.home-tactics__card__txt {
  min-height: 200px;
  padding: 46px 62px 34px;
  border: 1px solid #e6e6e6;
  border-top: 0;
  border-radius: 0 0 2px 2px;
}
@media (max-width: 1199px) {
  .home-tactics__card__txt {
    padding: 46px 22px 34px;
  }
}
@media (max-width: 849px) {
  .home-tactics__card__txt {
    min-height: 270px;
  }
}
@media (max-width: 749px) {
  .home-tactics__card__txt {
    min-height: auto;
  }
}
.home-tactics__card__txt p {
  line-height: 27px;
  margin: 0;
}
@media (max-width: 949px) {
  .home-tactics__card__txt p {
    font-size: 16px;
  }
}

.home-solutions {
  padding: 100px 0 20px;
}
@media (max-width: 1199px) {
  .home-solutions {
    padding: 64px 0 20px;
  }
}
.home-solutions .read-more span:before, .home-solutions .read-more span:after {
  transform: rotate(45deg) translateX(-1px);
}
.home-solutions .read-more span:after {
  transform: rotate(-45deg) translateX(-1px);
}
@media (max-width: 540px) {
  .home-solutions .home-section-title {
    margin-bottom: 0;
  }
}
.home-solutions h3 {
  font-size: 24px;
  margin-bottom: -6px;
}
.home-solutions p {
  line-height: 32px;
}
.home-solutions__p--resettlement, .home-solutions__p--reliance {
  max-width: 600px;
  padding-right: 20px;
}
.home-solutions .grid {
  margin-left: auto;
  margin-right: auto;
}
.home-solutions .grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10px;
  padding-right: 10px;
}
.home-solutions .grid > div _:-ms-fullscreen, :root .home-solutions .grid > div {
  display: block;
}
.home-solutions .grid > div > div {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.home-solutions .grid img {
  width: 100%;
  height: auto;
  align-self: flex-end;
}
@media (max-width: 749px) {
  .home-solutions .grid > div {
    flex-direction: column-reverse;
    padding: 0 0 40px;
  }
  .home-solutions .grid img {
    margin: 0 0 20px;
  }
}
.home-solutions__large-img {
  margin: 20px 20px 0;
  padding: 10vh 0;
  min-height: 57vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-solutions__large-img .container {
  padding: 15px;
}
.home-solutions__large-img h3 {
  color: #ff9300;
  font-weight: 700;
  margin-bottom: 18px;
}
.home-solutions__large-img p {
  max-width: 716px;
  color: #fff;
  line-height: 28px;
  margin-bottom: 15px;
}
@media (max-width: 749px) {
  .home-solutions__large-img {
    margin: 0 14px;
    height: auto;
  }
  .home-solutions__large-img .container {
    padding: 40px;
  }
}
@media (max-width: 540px) {
  .home-solutions__large-img .container {
    padding: 20px 30px;
  }
}

.home-impact {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .home-impact {
    padding: 64px 0 0;
  }
}
.home-impact .container {
  border-bottom: 2px solid #e6e6e6;
}
.home-impact .grid--gutter {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 104px;
}
@media (max-width: 1199px) {
  .home-impact .grid--gutter {
    padding-bottom: 0;
  }
}

.partial-news {
  padding-top: 20px;
}
@media (max-width: 1199px) {
  .partial-news {
    padding: 64px 0;
  }
}
.partial-news__read {
  position: absolute;
  bottom: 20px;
  right: 28px;
}
@media (max-width: 849px) {
  .partial-news__read {
    position: static;
    padding-top: 8px;
  }
}
.partial-news .read-more {
  color: #2c8da9;
}
.partial-news .read-more span:before {
  transform: rotate(45deg) translateX(-1px);
}
.partial-news .read-more span:after {
  transform: rotate(-45deg) translateY(-1px);
}
.partial-news .grid > div {
  position: relative;
}
@media (max-width: 949px) {
  .partial-news .grid > div:first-of-type {
    min-width: 100%;
    text-align: center;
  }
  .partial-news .grid > div:first-of-type h2,
  .partial-news .grid > div:first-of-type p {
    max-width: none;
  }
  .partial-news .grid > div:first-of-type h2 {
    text-align: center !important;
  }
}
.partial-news .grid > div:not(:first-of-type) {
  border-left: 1px solid #e6e6e6;
}
@media (max-width: 849px) {
  .partial-news .grid > div:not(:first-of-type) {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border-left: 0;
  }
}
@media (max-width: 949px) {
  .partial-news .grid > div:nth-child(2) {
    border-left: 0;
  }
}
@media (max-width: 849px) {
  .partial-news .grid > div:not(:first-of-type):not(:last-of-type) {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 40px;
  }
}
.partial-news .container {
  position: relative;
}
.partial-news .container:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: calc(100% - 190px);
  background: #e6e6e6;
}
@media (max-width: 849px) {
  .partial-news .container:before {
    display: none;
  }
}
.partial-news__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 490px;
}
@media (max-width: 949px) {
  .partial-news__info {
    min-height: auto;
    margin-bottom: 30px;
  }
}
.partial-news__info .home-section-title {
  margin-bottom: 5px;
}
.partial-news__info p {
  max-width: 200px;
  line-height: 30px;
}
.partial-news__card {
  display: flex;
  flex-direction: column;
  padding: 0 20px 60px;
  height: 100%;
}
@media (max-width: 849px) {
  .partial-news__card {
    padding: 0;
    margin-bottom: 25px;
    height: auto;
  }
}
.partial-news__card__thumb-wrap {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 240px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}
@media (max-width: 540px) {
  .partial-news__card__thumb-wrap {
    height: 300px;
  }
}
@media (max-width: 420px) {
  .partial-news__card__thumb-wrap {
    height: 240px;
  }
}
.partial-news__card__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.2s ease-in-out;
}
.partial-news__card .date {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 132px;
  height: 30px;
  padding-right: 4px;
  padding-left: 20px;
  background: #033347;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.16px;
}
.partial-news__card .date:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 100%;
  width: 15px;
  height: calc(100% + 10px);
  transform: skewY(45deg) translateY(5px);
  background: #033347;
}
.partial-news__card:hover .partial-news__card__thumb {
  transform: scale(1.08);
}
.partial-news__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.4px;
  padding-top: 10px;
}
.partial-news__title a {
  color: #4f4f4f;
}
.partial-news__title a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

body.home .partial-news__excerpt {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin: 8px 0 0;
}
body.home .partial-news__excerpt p {
  margin-bottom: 0;
}
body.home .partial-news__excerpt .read-more {
  display: none;
}

.banner-releases #home--news-banner {
  position: absolute;
  padding: 14px 0px;
  opacity: 1;
  z-index: 2;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  background-color: #084c61;
}
.banner-releases #home--news-banner .release {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-releases #home--news-banner .date h4 {
  color: #fff;
  font-size: 14px;
}
.banner-releases #home--news-banner .title {
  height: 48px;
  padding: 11px 20px;
}
.banner-releases #home--news-banner .title h3, .banner-releases #home--news-banner .title a {
  color: white;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}
.banner-releases #home--news-banner .close {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0 8px;
  border: 1px solid #fff;
  transition: background-color 0.25s ease;
}
.banner-releases #home--news-banner .close button {
  position: absolute;
  top: -3.5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  cursor: pointer;
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  border-style: none;
  transition: color 0.25s ease;
}
.banner-releases #home--news-banner .close:hover {
  background-color: #fff;
}
.banner-releases #home--news-banner .close:hover button {
  color: #db504a;
}
.banner-releases article {
  position: relative;
  top: 60px;
  transition: top 0.25s ease;
}
.banner-releases.banner--closed #home--news-banner {
  opacity: 0;
  visibility: hidden;
}
.banner-releases.banner--closed article {
  top: 0px;
}
@media (max-width: 849px) {
  .banner-releases #home--news-banner .title a, .banner-releases #home--news-banner .title h3 {
    font-size: 16px;
    line-height: 18px;
  }
  .banner-releases #home--news-banner .date h4 {
    font-size: 14px;
    line-height: 18px;
  }
}

.page-content__single {
  padding-top: 60px;
}

.single-post__meta {
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  color: #ec9d41;
  margin-bottom: 0;
}
.single-post__meta .separator {
  display: inline-flex;
  margin: 0 16px;
  transform: translateY(-1px);
  color: #dcecf1;
}

.single-post__title {
  max-width: 560px;
  margin: 14px auto 30px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.single-post__thumb {
  margin: 0 auto 50px;
}

.single-post__content {
  max-width: 820px;
  margin: 0 auto 50px;
  font-size: 18px;
}
@media (max-width: 949px) {
  .single-post__content {
    max-width: 760px;
  }
}
@media (max-width: 849px) {
  .single-post__content {
    max-width: 660px;
  }
}
@media (max-width: 749px) {
  .single-post__content {
    max-width: none;
  }
}
.single-post__content ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
.single-post__content ul > li {
  font-weight: 400;
}
.single-post__content .wp-caption {
  float: left;
  margin: 40px 38px 30px -100px;
}
.single-post__content .wp-caption img {
  margin: 0 auto;
}
.single-post__content .wp-caption p {
  padding: 10px;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  margin: 0;
}
.single-post__content .wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.single-post__content .wp-caption.aligncenter p {
  text-align: center;
}
@media (max-width: 1199px) {
  .single-post__content .wp-caption {
    margin: 40px 40px 30px 0;
  }
}
@media (max-width: 749px) {
  .single-post__content .wp-caption {
    float: none;
    margin: 40px auto 10px;
  }
}
.single-post__content img {
  margin: 38px;
  max-width: 100%;
  height: auto;
}
.single-post__content img.alignleft {
  float: left;
  margin-left: -100px;
  margin-right: 38px;
}
.single-post__content img.alignright {
  float: right;
  margin-right: -100px;
  margin-left: 38px;
}
.single-post__content img.aligncenter {
  margin: 38px auto;
}
@media (max-width: 1199px) {
  .single-post__content img.alignleft {
    margin-left: 0;
  }
  .single-post__content img.alignright {
    margin-right: 0;
  }
}
@media (max-width: 749px) {
  .single-post__content img {
    margin: 20px;
  }
  .single-post__content img.alignleft, .single-post__content img.alignright {
    margin: 40px auto;
    float: none;
  }
}

.single-post__cta {
  position: relative;
  border-radius: 3px;
  padding: 40px 40px 50px;
  background: #ff9300;
  text-align: center;
  max-width: 820px;
  margin: 80px auto 0;
}
.single-post__cta svg {
  position: absolute;
  left: -60px;
  bottom: -30px;
  width: 258px;
  background-size: 258px;
  fill: rgba(255, 255, 255, 0.1);
}
.single-post__cta h3 {
  color: #fff;
  max-width: 422px;
  margin: 0 auto 20px;
  line-height: 1.25;
}
.single-post__cta .button--white {
  color: #ff9300;
}

.single__share {
  position: fixed;
  z-index: 1;
  display: flex;
  flex-direction: column;
  right: 20px;
  top: 50vh;
  transform: translateY(-50%);
}
@media (max-width: 849px) {
  .single__share {
    flex-direction: row;
    bottom: 0;
    top: auto;
    right: 50%;
    transform: translateX(50%) translateY(0);
  }
}
@media (max-width: 540px) {
  .single__share {
    right: auto;
    transform: none;
    left: 14px;
  }
}
.single__share-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 50px;
  background: #fff;
  border: 1px solid #ced8dc;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 849px) {
  .single__share-btn {
    height: 44px;
    border-bottom: 0;
  }
}
.single__share-btn svg {
  max-width: 13px;
  max-height: 12px;
}
.single__share-btn path,
.single__share-btn rect,
.single__share-btn circle {
  fill: #6e7d85;
  transition: all 0.2s ease-in-out;
}
.single__share-btn:hover {
  background: #ff9300;
  border-color: #ff9300;
}
.single__share-btn:hover path,
.single__share-btn:hover rect,
.single__share-btn:hover circle {
  fill: #fff;
}
.single__share-btn:first-of-type {
  border-radius: 3px 3px 0 0;
  border-bottom: 0;
}
@media (max-width: 849px) {
  .single__share-btn:first-of-type {
    border-radius: 3px 0 0 0;
    border-right: 0;
  }
}
.single__share-btn:nth-child(2) {
  border-bottom: 0;
}
@media (max-width: 849px) {
  .single__share-btn:nth-child(2) {
    border-right: 0;
  }
}
.single__share-btn:last-of-type {
  border-radius: 0 0 3px 3px;
  border-top: 0;
}
@media (max-width: 849px) {
  .single__share-btn:last-of-type {
    border-radius: 0 3px 0 0;
    border-top: 1px solid #ced8dc;
    border-left: 0;
  }
}

.inner-page-parent-title {
  color: #232222;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  padding: 36px 0;
  border-bottom: 1px solid rgba(79, 79, 79, 0.2);
}
@media (max-width: 749px) {
  .inner-page-parent-title {
    font-size: 36px;
    padding: 24px 0;
  }
}

.inner-page-siblings-menu .inner-menu-toggle {
  position: relative;
  width: 100%;
  background: #000;
  color: #fff;
  margin-bottom: 10px;
  display: none;
  text-align: left;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.inner-page-siblings-menu .inner-menu-toggle:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  transition: all 0.2s ease-in-out;
}

.inner-page-siblings-menu {
  padding: 15px 0;
}
@media (max-width: 1199px) {
  .inner-page-siblings-menu {
    padding: 20px 0 10px;
  }
}
@media (max-width: 749px) {
  .inner-page-siblings-menu.js-mob-inner-open .inner-menu-toggle {
    background: #4f4f4f;
  }
  .inner-page-siblings-menu.js-mob-inner-open .inner-menu-toggle:before {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .inner-page-siblings-menu.js-mob-inner-open ul {
    display: block;
  }
  .inner-page-siblings-menu .inner-menu-toggle {
    display: block;
  }
}
.inner-page-siblings-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
@media (max-width: 749px) {
  .inner-page-siblings-menu ul {
    flex-direction: column;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 25px;
    display: none;
  }
}
.inner-page-siblings-menu li {
  margin: 5px 0;
}
.inner-page-siblings-menu li:not(:last-of-type) {
  margin: 5px 5px 5px 0;
}
@media (max-width: 1199px) {
  .inner-page-siblings-menu li {
    margin-bottom: 10px;
  }
}
@media (max-width: 749px) {
  .inner-page-siblings-menu li:last-of-type {
    margin-bottom: 0;
  }
}
.inner-page-siblings-menu a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  color: #4f4f4f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.92px;
  height: 40px;
  border-radius: 20px;
  padding: 0 16px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background-color: transparent;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1199px) {
  .inner-page-siblings-menu a {
    font-size: 14px;
  }
}
@media (max-width: 749px) {
  .inner-page-siblings-menu a {
    width: 100%;
  }
}
.inner-page-siblings-menu li a:hover,
.inner-page-siblings-menu li.current-page a {
  background-color: #232222;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  color: #fff;
}

figure.blockquote {
  float: inherit;
  width: 95%;
  margin: 3em auto;
  padding: 1em 2em;
  border-left: 5px solid #2c8da9;
  font-family: Merriweather, serif;
  font-style: italic;
  color: #2c8da9;
}
figure.blockquote blockquote {
  margin: 0;
  line-height: 1.6;
}
figure.blockquote figcaption {
  float: inherit;
  text-align: right;
}

.cont-sm-txt-only {
  padding: 80px 0 40px;
}
.cont-sm-txt-only blockquote {
  margin-left: 0;
  margin-top: 30px;
  font-family: Merriweather, serif;
  border-left: 5px solid #2c8da9;
  padding: 6px 20px;
}
.cont-sm-txt-only blockquote p {
  color: #2c8da9;
  line-height: 1.45;
  margin: 0;
  font-style: italic;
}
@media (max-width: 749px) {
  .cont-sm-txt-only {
    padding: 40px 0;
  }
}
.cont-sm-txt-only p {
  color: #232222;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 949px) {
  .cont-sm-txt-only p {
    font-size: 18px;
  }
}
.cont-sm-txt-only p:not(:last-of-type) {
  margin-bottom: 25px;
}

body.page_self_reliance .cont-sm-txt-only {
  padding-bottom: 0;
}

body.page_partners .cont-sm-txt-only,
body.page_refugee_stories .cont-sm-txt-only {
  padding-bottom: 50px;
}

.stats-3 {
  padding: 0;
}
.stats-3 > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 226px;
  pading: 0 74px;
  color: #fff;
}
.stats-3 > div h2 {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 150px;
  font-size: 60px !important;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-right: 30px;
  line-height: 1;
}
@media (max-width: 540px) {
  .stats-3 > div h2 {
    margin-right: 20px;
  }
}
.stats-3 > div h2 svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.stats-3 > div h2 .txt {
  position: relative;
}
.stats-3 > div h2 span {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1.8px;
}
.stats-3 > div p {
  max-width: 160px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .stats-3 > div {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .stats-3 > div h2 {
    margin-right: 0;
  }
  .stats-3 > div p {
    margin-bottom: 0;
    padding-right: 0;
  }
}
@media (max-width: 540px) {
  .stats-3 > div {
    width: 100%;
  }
}
.stats-3 > div:nth-child(1) {
  background: #033347;
}
.stats-3 > div:nth-child(1) svg {
  max-width: 118px;
}
.stats-3 > div:nth-child(1) path {
  fill: #2c8da9;
}
.stats-3 > div:nth-child(2) {
  background: #ff9300;
}
.stats-3 > div:nth-child(2) svg {
  fill: #743d13;
}
.stats-3 > div:nth-child(3) {
  background: #2c8da9;
}
.stats-3 > div:nth-child(3) svg {
  max-width: 102px;
  fill: #033347;
}

.sec-refugees-crisis {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: left bottom;
  min-height: 660px;
  background-image: url(../why-refugees-man.html);
  padding-top: 70px;
  padding-bottom: 70px;
}
.sec-refugees-crisis__inner {
  margin-left: 420px;
}
.sec-refugees-crisis__inner _:-ms-fullscreen, :root .sec-refugees-crisis__inner {
  margin-left: 0;
  padding-left: 420px;
  width: 100%;
}
@media (max-width: 749px) {
  .sec-refugees-crisis {
    padding: 70px 0 700px;
  }
  .sec-refugees-crisis h2 {
    padding-left: 15px;
  }
  .sec-refugees-crisis__inner {
    margin-left: 0;
  }
}
@media (max-width: 540px) {
  .sec-refugees-crisis {
    background-size: 120vw;
    padding-bottom: 140vw;
  }
}
.sec-refugees-crisis__content {
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .sec-refugees-crisis__content {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 749px) {
  .sec-refugees-crisis__content {
    min-height: auto;
    padding: 0 15px;
  }
}
.sec-refugees-crisis__content p {
  margin-top: 0;
}
.sec-refugees-crisis__content div {
  max-width: 412px;
}
@media (max-width: 1199px) {
  .sec-refugees-crisis__content div {
    max-width: none;
  }
}
.sec-refugees-crisis__content div:first-of-type {
  margin-right: 90px;
}
@media (max-width: 1199px) {
  .sec-refugees-crisis__content div:first-of-type {
    margin-right: 0;
  }
}
.sec-refugees-crisis h2 {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .sec-refugees-crisis h2 {
    margin-bottom: 26px;
  }
  .sec-refugees-crisis h2 br {
    display: none;
  }
}

.sec-who-we-help {
  padding-top: 150px;
}
@media (max-width: 1199px) {
  .sec-who-we-help {
    padding-top: 64px;
  }
}
.sec-who-we-help .button {
  font-size: 15px;
  letter-spacing: 2.16px;
  font-weight: 600;
}
.sec-who-we-help .subtitle {
  max-width: 782px;
  margin: 22px auto 80px;
}
@media (max-width: 849px) {
  .sec-who-we-help .subtitle {
    margin-bottom: 50px;
  }
}

.tabs--who-we-help-sm {
  display: none;
}
.tabs--who-we-help-sm .tab-trigger {
  margin: 0 auto 30px;
}
.tabs--who-we-help-sm .tabs-content {
  padding: 24px;
}
.tabs--who-we-help-sm .tabs-content p {
  margin-top: 0;
}
.tabs--who-we-help-sm .tabs-content p:last-of-type {
  margin-bottom: 0;
}
.tabs--who-we-help-sm .swiper-button-prev,
.tabs--who-we-help-sm .swiper-button-next {
  top: 57px;
  margin-top: 0;
}
.tabs--who-we-help-sm .swiper-button-prev {
  left: calc(50% - 130px);
}
.tabs--who-we-help-sm .swiper-button-next {
  right: calc(50% - 130px);
}

@media (max-width: 849px) {
  .tabs--who-we-help-lg {
    display: none;
  }
  .tabs--who-we-help-sm {
    display: block;
  }
}
.dot-title-content__3-cards {
  flex-wrap: wrap;
}

.dot-title-subtitle-content {
  position: relative;
  padding: 120px 0 140px;
}
@media (max-width: 949px) {
  .dot-title-subtitle-content {
    padding: 64px 0;
  }
}
.dot-title-subtitle-content.with-edge-triangles:before, .dot-title-subtitle-content.with-edge-triangles:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.dot-title-subtitle-content.with-edge-triangles:before {
  right: 0;
  bottom: 100%;
  border-width: 0 0 90px 125px;
  border-color: transparent transparent #fff transparent;
}
.dot-title-subtitle-content.with-edge-triangles:after {
  left: 0;
  top: 100%;
  border-width: 90px 125px 0 0;
  border-color: #fff transparent transparent transparent;
}
.dot-title-subtitle-content__header {
  position: relative;
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .dot-title-subtitle-content__header {
    padding-left: 102px;
  }
}
@media (max-width: 749px) {
  .dot-title-subtitle-content__header {
    margin-bottom: 10px;
  }
}
@media (max-width: 749px) {
  .dot-title-subtitle-content__header {
    display: block;
  }
}
@media (max-width: 540px) {
  .dot-title-subtitle-content__header {
    padding-left: 0;
    padding-top: 102px;
    text-align: center;
  }
}
.dot-title-subtitle-content__header h2 {
  max-width: 284px;
  margin: 0;
}
@media (max-width: 749px) {
  .dot-title-subtitle-content__header h2 {
    max-width: none;
  }
}
.dot-title-subtitle-content__header p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 0 0 10px;
  max-width: 422px;
  margin-top: 20px;
}
@media (max-width: 749px) {
  .dot-title-subtitle-content__header p {
    font-size: 18px;
    margin: 6px 0 0;
  }
}
.dot-title-subtitle-content__header .icon {
  position: absolute;
  top: 18px;
  right: calc(100% + 22px);
  width: 82px;
  height: 82px;
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .dot-title-subtitle-content__header .icon {
    right: auto;
    left: 0;
  }
}
@media (max-width: 749px) {
  .dot-title-subtitle-content__header .icon {
    top: 6px;
  }
}
@media (max-width: 540px) {
  .dot-title-subtitle-content__header .icon {
    left: 50%;
    transform: translateX(-50%);
  }
}
.dot-title-subtitle-content__header .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 46px;
}
.dot-title-subtitle-content__header .icon path,
.dot-title-subtitle-content__header .icon rect,
.dot-title-subtitle-content__header .icon circle {
  fill: #fff;
}
.dot-title-subtitle-content__header.dot--dark-blue .icon {
  background: #033347;
}
.dot-title-subtitle-content__header.dot--light-blue .icon {
  background: #2c8da9;
}
.dot-title-subtitle-content__header.dot--orange .icon {
  background: #ff9300;
}
.dot-title-subtitle-content__header.dot--khaki .icon {
  background: #ece6d6;
}
.dot-title-subtitle-content .grid {
  margin-bottom: 3em;
}
@media (max-width: 949px) {
  .dot-title-subtitle-content .grid {
    margin-bottom: 1.5em;
  }
}
.dot-title-subtitle-content .grid p {
  padding-right: 28px;
}
@media (max-width: 749px) {
  .dot-title-subtitle-content .grid p {
    padding-right: 0;
  }
}
.dot-title-subtitle-content .grid p:not(:last-of-type) {
  margin-bottom: 25px;
}
.dot-title-subtitle-content__card {
  position: relative;
  z-index: 1;
  background-color: #033347;
  border-radius: 3px;
  min-height: 295px;
  width: calc((100% - 44px) / 3);
  padding: 50px 30px 30px;
  color: #fff;
}
.dot-title-subtitle-content__card .long-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #033347;
  padding: 20px;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}
.dot-title-subtitle-content__card:hover .long-text {
  opacity: 1;
}
@media (max-width: 749px) {
  .dot-title-subtitle-content__card {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 749px) {
  .dot-title-subtitle-content__card {
    min-height: 270px;
  }
  .dot-title-subtitle-content__card:hover .long-text {
    opacity: 0;
  }
  .dot-title-subtitle-content__card.js-is-flipped .long-text {
    opacity: 1;
  }
}
.dot-title-subtitle-content__card svg {
  max-width: 72px;
  max-height: 55px;
}
.dot-title-subtitle-content__card path {
  fill: #fff;
}
.dot-title-subtitle-content__card h3 {
  margin-top: 0;
}
.dot-title-subtitle-content__card h3,
.dot-title-subtitle-content__card h4 {
  position: relative;
  color: #fff;
  font-weight: 700;
  margin: 12px auto 35px;
}
.dot-title-subtitle-content__card h3 {
  font-size: 46px;
  letter-spacing: 0.92px;
}
.dot-title-subtitle-content__card h4 {
  font-size: 28px;
  letter-spacing: 0.6px;
}
.dot-title-subtitle-content__card h3:before,
.dot-title-subtitle-content__card h4:before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: #ff9300;
}
.dot-title-subtitle-content__card.story {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  overflow: hidden;
}
.dot-title-subtitle-content__card.story .story-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.2s ease-in-out;
}
.dot-title-subtitle-content__card.story:hover .story-thumb {
  transform: scale(1.08);
}
.dot-title-subtitle-content__card.story a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(3, 51, 71, 0.8);
  border-radius: 3px;
  width: 192px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.32px;
  transition: all 0.2s ease-in-out;
}
.dot-title-subtitle-content__card.story a:hover {
  background: #033347;
}
.dot-title-subtitle-content.bg--silver {
  padding-bottom: 20px;
}
.dot-title-subtitle-content.bg--silver.with-edge-triangles:before {
  border-bottom-color: #dcecf1;
}
@media (max-width: 949px) {
  .dot-title-subtitle-content.bg--silver.with-edge-triangles:before {
    display: none;
  }
}
.dot-title-subtitle-content.bg--silver.with-edge-triangles:after {
  border-top-color: #dcecf1;
}
@media (max-width: 949px) {
  .dot-title-subtitle-content.bg--silver.with-edge-triangles:after {
    display: none;
  }
}

.bg-image-2-col-txt {
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 40px);
  margin-left: 20px;
  min-height: 676px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
@media (max-width: 749px) {
  .bg-image-2-col-txt {
    min-height: auto;
    text-align: center;
    padding: 35px 25px;
  }
}
.bg-image-2-col-txt__inner {
  position: relative;
}
.bg-image-2-col-txt h4 {
  color: #9de2e5;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}
.bg-image-2-col-txt h2 {
  color: #e3b505;
}
.bg-image-2-col-txt h2::first-letter {
  text-transform: capitalize;
}
.bg-image-2-col-txt .grid {
  margin: 20px auto 0;
  max-width: 830px;
}
.bg-image-2-col-txt .grid p {
  margin-bottom: 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 749px) {
  .bg-image-2-col-txt .grid p {
    font-size: 16px;
  }
}

.fading-read-more {
  text-transform: uppercase;
  font-weight: 700;
  display: none;
}
@media (max-width: 749px) {
  .fading-read-more {
    display: inline-block;
  }
}

.partners-list {
  padding-top: 20px;
}
@media (max-width: 749px) {
  .partners-list {
    padding-top: 0;
  }
}
.partners-list .grid {
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 420px) {
  .partners-list .grid {
    justify-content: center;
  }
}
.partners-list .grid > div {
  margin-bottom: 20px;
  width: calc((100% - 80px) / 5);
}
@media (max-width: 749px) {
  .partners-list .grid > div {
    width: calc((100% - 60px) / 4);
  }
}
@media (max-width: 540px) {
  .partners-list .grid > div {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 420px) {
  .partners-list .grid > div {
    width: 100%;
    max-width: 260px;
  }
}
.partners-list .partner-single {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #dde8f0;
  height: 0;
  padding-bottom: 100%;
}
.partners-list .partner-single img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
}

.refugee-stories-list {
  padding-top: 30px;
}
@media (max-width: 749px) {
  .refugee-stories-list {
    padding-top: 0;
  }
}
.refugee-stories-list .grid {
  flex-wrap: wrap;
  justify-content: space-between;
}
.refugee-stories-list .grid > div {
  width: calc((100% - 20px) / 2);
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  .refugee-stories-list .grid > div {
    width: 100%;
  }
}

.refugee-stories-single-card__thumb {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 0;
  padding-bottom: 78%;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.52px;
}
.refugee-stories-single-card__thumb:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 190px;
  background-image: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.9;
}
.refugee-stories-single-card__thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
}
.refugee-stories-single-card__excerpt {
  display: flex;
  flex-direction: column;
  padding: 34px 20px;
}
@media (max-width: 749px) {
  .refugee-stories-single-card__excerpt {
    padding: 15px;
  }
}
.refugee-stories-single-card__excerpt p {
  color: #232222;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 749px) {
  .refugee-stories-single-card__excerpt p {
    font-size: 16px;
  }
}

.modal--story .modal-content {
  overflow: hidden;
  padding: 0;
}
.modal--story .modal-content__inner {
  padding: 90px;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 540px) {
  .modal--story .modal-content__inner {
    padding: 30px 15px;
  }
  .modal--story .modal-content__inner p {
    font-size: 13px;
  }
}
.modal--story .modal-content__inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 750px;
  height: 40px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.65) 100%);
  z-index: 1;
}
.modal--story__title {
  font-size: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.72px;
  margin-bottom: 0 !important;
}
.modal--story__org {
  text-transform: uppercase;
  color: #ec9c3f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.68px;
  margin-bottom: 20px;
}
.modal--story img {
  max-width: 100%;
  height: auto;
  margin-top: 36px;
  margin-bottom: 36px;
}
.modal--story img.modal--story__thumb {
  width: 100%;
  max-width: 300px;
  margin-top: 0;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .our-impact {
    padding: 0;
  }
}
.our-impact__main-grid > div:first-of-type {
  padding-right: 28px;
  border-right: 3px solid #232222;
}
@media (max-width: 1199px) {
  .our-impact__main-grid > div:first-of-type {
    padding-right: 0;
    border-right: 0;
    border-bottom: 3px solid #232222;
    padding-bottom: 80px;
  }
}
.our-impact__main-grid > div:last-of-type {
  padding-left: 28px;
}
@media (max-width: 1199px) {
  .our-impact__main-grid > div:last-of-type {
    padding-left: 0;
  }
}
.our-impact__header {
  max-width: 640px;
  margin: 0 auto;
}
.our-impact__header__inner {
  padding: 60px 15px;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 849px) {
  .our-impact__header__inner {
    padding: 60px 15px 10px;
  }
}
.our-impact__header__inner h3 {
  margin-bottom: 8px;
}
.our-impact__header__inner p {
  font-size: 18px;
  line-height: 32px;
  margin-top: 0;
}
.our-impact__big-impact {
  display: flex;
  padding: 0;
}
.our-impact__big-impact .left, .our-impact__big-impact .right {
  width: 50%;
  padding: 50px;
}
.our-impact__big-impact .left {
  background: #ff9300;
}
.our-impact__big-impact .right {
  background: #2c8da9;
}
.our-impact__big-impact .impact-text {
  margin-left: 112px;
}
@media (max-width: 749px) {
  .our-impact__big-impact .impact-text {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
  }
}
.our-impact__big-impact h4 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2.34px;
  color: #fff;
}
.our-impact__big-impact .icon {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 749px) {
  .our-impact__big-impact .icon {
    position: relative;
    display: block;
    margin: 0 auto;
  }
}
.our-impact__big-impact svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 58px;
  max-height: 46px;
}
.our-impact__big-impact p {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 749px) {
  .our-impact__big-impact {
    display: block;
  }
  .our-impact__big-impact .left, .our-impact__big-impact .right {
    width: 100%;
    padding: 30px 30px 20px;
  }
}
.our-impact__facts {
  min-height: 340px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .our-impact__facts {
    min-height: auto;
  }
}
.our-impact__facts__single {
  padding: 20px 15px;
}
.our-impact__facts__single .icon {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 8px;
  border: 10px solid rgba(255, 255, 255, 0.3);
}
.our-impact__facts__single .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 58px;
  max-height: 46px;
}
.our-impact__facts__single .icon path {
  fill: #fff;
}
.our-impact__facts__single p {
  color: #232222;
  line-height: 27px;
  max-width: 270px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .our-impact__facts__single p {
    font-size: 15px;
  }
}
.our-impact__facts__single p.wider-p {
  max-width: none;
}
.our-impact__image {
  height: 0;
  padding-bottom: 52.17%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.our-impact__list {
  max-width: 540px;
  margin: 76px 0 0 64px;
}
@media (max-width: 1199px) {
  .our-impact__list {
    margin: 38px 0 0 32px;
  }
}
@media (max-width: 1199px) {
  .our-impact__list {
    margin: 38px auto 0;
  }
}
.our-impact__list h4 {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .our-impact__list h4 {
    text-align: center;
  }
}
.our-impact__list ul {
  padding-left: 44px;
}
@media (max-width: 1199px) {
  .our-impact__list ul {
    padding-left: 22px;
  }
}
@media (max-width: 749px) {
  .our-impact__list ul {
    padding-left: 0;
  }
}
.our-impact__list ul li {
  position: relative;
  padding-left: 22px;
  font-weight: 400;
}
.our-impact__list ul li:not(:last-of-type) {
  margin-bottom: 26px;
}

.our-impact__main-grid div:nth-child(2) .our-impact__header__inner h3 {
  font-size: 1.5em;
}

.our-impact__facts__single.theme-1 .icon,
.our-impact__facts__single.theme-1 .backface {
  background-color: #033347;
}
.our-impact__facts__single.theme-1 .flip-card {
  color: #033347;
}
.our-impact__facts__single.theme-1 h3 {
  color: #033347;
  font-size: 2.8em;
}
.our-impact__facts__single.theme-1 h3:before {
  background: #033347;
}

.our-impact__facts__single.theme-2 .icon,
.our-impact__facts__single.theme-2 .backface {
  background-color: #033347;
}
.our-impact__facts__single.theme-2 .flip-card {
  color: #033347;
}
.our-impact__facts__single.theme-2 h3 {
  color: #033347;
}
.our-impact__facts__single.theme-2 h3:before {
  background: #033347;
}

.our-impact__facts__single.theme-3 .icon,
.our-impact__facts__single.theme-3 .backface {
  background-color: #033347;
}
.our-impact__facts__single.theme-3 .flip-card {
  color: #033347;
}
.our-impact__facts__single.theme-3 h3 {
  color: #033347;
  font-size: 2.4em;
}
.our-impact__facts__single.theme-3 h3:before {
  background: #033347;
}

.our-impact__facts__single.theme-4 .icon,
.our-impact__facts__single.theme-4 .backface {
  background-color: #033347;
}
.our-impact__facts__single.theme-4 .flip-card {
  color: #033347;
}
.our-impact__facts__single.theme-4 h3 {
  color: #033347;
}
.our-impact__facts__single.theme-4 h3:before {
  background: #033347;
}

.our-approach-tree .container {
  max-width: 1280px;
  padding-top: 76px;
  position: relative;
}
.our-approach-tree .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0;
  background: #ff9300;
  transition: all 4s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.our-approach-tree.js-startedAnimation .container:before {
  height: calc(100% - 220px);
}
.our-approach-tree__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 949px) {
  .our-approach-tree__row {
    flex-direction: column !important;
    text-align: center;
    background: #fff;
  }
}
.our-approach-tree__row:not(:last-of-type) {
  margin-bottom: 100px;
}
.our-approach-tree__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0 30px;
  background: #ff9300;
  border: 10px solid #f9e1c5;
  box-shadow: 0 0 0 6px #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (max-width: 949px) {
  .our-approach-tree__icon {
    order: -1;
    margin-bottom: 18px;
  }
}
@media (max-width: 540px) {
  .our-approach-tree__icon {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 20px #fff;
  }
  .our-approach-tree__icon:before {
    width: 64px !important;
    height: 64px !important;
  }
}
.our-approach-tree__icon svg {
  position: relative;
  max-width: 65px;
}
@media (max-width: 540px) {
  .our-approach-tree__icon svg {
    max-width: 40px;
  }
}
.our-approach-tree__icon svg g, .our-approach-tree__icon svg path, .our-approach-tree__icon svg rect {
  fill: #ff9300;
}
.our-approach-tree__icon:before {
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
}
.our-approach-tree__row:nth-of-type(4) svg > path {
  fill: transparent !important;
}
.our-approach-tree__img, .our-approach-tree__txt {
  width: calc((100% - 230px) / 2);
}
@media (max-width: 949px) {
  .our-approach-tree__img, .our-approach-tree__txt {
    width: 100%;
    max-width: 550px;
  }
}
.our-approach-tree__img {
  position: relative;
  background-color: #dde8f0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  height: 0;
  border: 4px solid #f9e1c5;
  padding-bottom: 27.42%;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (max-width: 949px) {
  .our-approach-tree__img {
    transform: translateX(0) translateY(50px);
  }
}
@media (max-width: 949px) {
  .our-approach-tree__img {
    margin-bottom: 16px;
    padding-bottom: 50%;
  }
}
@media (max-width: 540px) {
  .our-approach-tree__img {
    padding-bottom: 60%;
    max-width: calc(100% - 80px);
  }
}
.our-approach-tree__img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 11px;
  border-color: transparent transparent transparent #f9e1c5;
}
@media (max-width: 949px) {
  .our-approach-tree__img:before {
    top: 100% !important;
    transform: translateY(0) translateX(-50%) !important;
    left: 50% !important;
    border-width: 12px 12px 0 12px !important;
    border-color: #f9e1c5 transparent transparent transparent !important;
  }
}
.our-approach-tree__txt {
  background: #fff;
  position: relative;
  opacity: 0;
  transform: translateX(50%);
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (max-width: 949px) {
  .our-approach-tree__txt {
    transform: translateX(0) translateY(50px);
  }
}
@media (max-width: 540px) {
  .our-approach-tree__txt {
    max-width: calc(100% - 80px);
  }
}
.our-approach-tree__txt h2 {
  color: #232222;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.76px;
}
@media (max-width: 949px) {
  .our-approach-tree__txt h2 {
    font-size: 28px !important;
  }
}
.our-approach-tree__txt p {
  line-height: 28px;
}
@media (max-width: 949px) {
  .our-approach-tree__txt p {
    font-size: 17px;
  }
}
.our-approach-tree__txt p:not(:last-of-type) {
  margin-bottom: 25px;
}
.our-approach-tree__row:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.our-approach-tree__row:nth-of-type(2n) .our-approach-tree__img {
  transform: translateX(50%);
}
.our-approach-tree__row:nth-of-type(2n) .our-approach-tree__txt {
  transform: translateX(-50%);
}
@media (max-width: 949px) {
  .our-approach-tree__row:nth-of-type(2n) .our-approach-tree__img,
  .our-approach-tree__row:nth-of-type(2n) .our-approach-tree__txt {
    transform: translateX(0) translateY(50px);
  }
}
.our-approach-tree__row:nth-of-type(2n) .our-approach-tree__img:before {
  left: auto;
  right: 100%;
  transform: translateY(-50%) scaleX(-1);
}
.our-approach-tree__row.js-isAppear .our-approach-tree__icon,
.our-approach-tree__row.js-isAppear .our-approach-tree__img,
.our-approach-tree__row.js-isAppear .our-approach-tree__txt {
  opacity: 1;
}
.our-approach-tree__row.js-isAppear .our-approach-tree__icon {
  transform: scale(1);
}
.our-approach-tree__row.js-isAppear .our-approach-tree__img,
.our-approach-tree__row.js-isAppear .our-approach-tree__txt {
  transform: translateX(0);
}

.faqs-page-content h3 {
  color: #232222;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.page-content--careers .acc--ver2:first-of-type {
  margin-top: 25px;
}
.page-content--careers .acc--ver2:last-of-type {
  margin-bottom: 50px;
}
.page-content--careers h4 {
  margin-bottom: 28px;
}
.page-content--careers p {
  margin-top: 0;
  font-size: 17px;
  line-height: 27px;
}

.careers__below-hero {
  padding-top: 95px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .careers__below-hero {
    padding-top: 64px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.careers__pannels {
  margin-bottom: 10px;
}

.careers__pannels__single:not(:last-of-type) {
  margin-bottom: 58px;
}
.careers__pannels__single p {
  margin-bottom: 35px;
}

.career-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  min-width: 100px;
  border-radius: 3px;
  background-color: #dde8f0;
}
@media (max-width: 749px) {
  .career-panel {
    padding: 15px 25px;
  }
}
.career-panel:not(:last-of-type) {
  margin-bottom: 20px;
}
.career-panel h3 {
  font-weight: 300;
}
@media (max-width: 749px) {
  .career-panel h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.career-panel .button--secondary {
  width: 95px;
  height: 32px;
  margin-left: 15px;
}

.career-no-open-positions {
  padding: 20px 30px;
  background: #fbecec;
  color: #db504a;
  border-radius: 5px;
}

.txt-centered-lg p {
  max-width: 876px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.4px;
}

.awards__below-hero {
  padding-top: 80px;
}
.awards__below-hero .grid--gutter {
  margin-left: auto;
  margin-right: auto;
}
.awards__below-hero .grid--gutter > div {
  padding-left: 36px;
  padding-right: 36px;
  margin-bottom: 60px;
}
@media (max-width: 749px) {
  .awards__below-hero .grid--gutter > div {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 420px) {
  .awards__below-hero .grid--gutter > div {
    padding: 0;
  }
}

.award-card__thumb {
  position: relative;
  padding-bottom: 80%;
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  margin-bottom: 20px;
  border: 1px solid #dcecf1;
  overflow: hidden;
}
.award-card__thumb div {
  position: absolute;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 30px;
  padding-right: 4px;
  background: #ff9300;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.16px;
}
.award-card__thumb div:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 100%;
  width: 15px;
  height: calc(100% + 10px);
  transform: skewY(45deg) translateY(5px);
  background: #ff9300;
}
.award-card h5 {
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  line-height: 30px;
  letter-spacing: 0.4px;
}
.award-card p {
  font-weight: 300;
}

.team-tabs {
  padding-top: 100px;
}
.team-tabs .tabs-wrapper {
  position: relative;
}
.team-tabs .tabs-wrapper .dropdown {
  position: absolute;
  top: -8px;
  right: 0;
}
@media (max-width: 749px) {
  .team-tabs .tabs-wrapper .dropdown {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    margin: -15px auto 0;
  }
  .team-tabs .tabs-wrapper .dropdown__content {
    width: 100%;
  }
  .team-tabs .tabs-wrapper .dropdown button {
    width: 100%;
  }
}
.team-tabs__grid {
  margin-top: 68px;
  text-align: center;
}
.team-tabs__grid > div {
  display: flex;
  justify-content: center;
  margin-bottom: 54px;
}

.t-member-col.js-isHiden {
  display: none !important;
}

.team-member {
  padding: 0 10px;
}
.team-member__avatar-wrap {
  display: inline-flex;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #fff, 0 0 0 6px #ff9300;
  margin-bottom: 24px;
  overflow: hidden;
}
.team-member__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.2s ease-in-out;
}
.team-member__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  color: #4f4f4f;
}
.team-member__role {
  font-weight: 600;
  line-height: 18px;
  text-transform: capitalize;
  color: #033347;
  margin: 0;
}
.team-member:hover .team-member__avatar {
  transform: scale(1.08);
}

.team-tabs__grid--only-txt {
  text-align: left;
}
.team-tabs__grid--only-txt .team-member__avatar-wrap {
  display: none;
}

.team-staff,
.team-tabs__grid--only-txt {
  margin-top: 30px;
  padding-top: 0;
}
.team-staff .grid > div,
.team-tabs__grid--only-txt .grid > div {
  margin-bottom: 40px;
}
.team-staff .team-member,
.team-tabs__grid--only-txt .team-member {
  display: block;
  padding-bottom: 34px;
  min-height: 111px;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 1199px) {
  .team-staff .team-member,
  .team-tabs__grid--only-txt .team-member {
    min-height: 165px;
  }
}
.team-staff .team-member__name,
.team-tabs__grid--only-txt .team-member__name {
  font-size: 16px;
  letter-spacing: 1.92px;
}
.team-staff .team-member__role,
.team-tabs__grid--only-txt .team-member__role {
  font-size: 14px;
}
.team-staff__title,
.team-tabs__grid--only-txt__title {
  line-height: 30px;
  margin-bottom: 38px;
}

.modal--t-member .modal-content {
  overflow: hidden;
  padding: 0;
}
.modal--t-member .modal-content__inner {
  padding: 90px;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 540px) {
  .modal--t-member .modal-content__inner {
    padding: 30px 15px;
  }
}
.modal--t-member .modal-content__inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 750px;
  height: 40px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.65) 100%);
  z-index: 1;
}
.modal--t-member__top {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.modal--t-member .team-member__avatar-wrap {
  width: 90px;
  min-width: 90px;
  height: 90px;
  margin-right: 20px;
  margin-bottom: 0;
}
.modal--t-member .team-member__avatar-wrap.js-isHidden {
  display: none;
}
@media (max-width: 540px) {
  .modal--t-member .team-member__avatar-wrap {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
}
.modal--t-member p {
  font-size: 17px;
}

.donate-hero {
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media (max-width: 749px) {
  .donate-hero {
    padding: 0 0 50px;
  }
  .donate-hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  }
}
@media (max-width: 949px) {
  .donate-hero .grid-1of2:first-of-type {
    padding-right: 60px;
  }
}
@media (max-width: 749px) {
  .donate-hero .grid-1of2:first-of-type {
    margin-top: 3em;
    margin-bottom: 0;
    padding-right: 0;
  }
}
.donate-hero h1 {
  color: #232222;
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 749px) {
  .donate-hero h1 {
    font-size: 3.2rem;
  }
}
.donate-hero p {
  color: #232222;
  font-size: 1.8rem;
  line-height: 1.8;
}

.donate-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  background: #fff;
  border-radius: 3px;
  margin-top: 30px;
  margin-left: auto;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}
@media (max-width: 749px) {
  .donate-form {
    margin: 30px auto 0;
  }
}
.donate-form label {
  position: relative;
}
.donate-form label span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.donate-form__once-or-monthly {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 22px 0 18px;
}
.donate-form__once-or-monthly label {
  border-radius: 25px;
  width: 112px;
  height: 30px;
}
.donate-form__once-or-monthly label:first-of-type {
  margin-right: 10px;
}
.donate-form__once-or-monthly span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  border: 1.5px solid #000;
  color: #000;
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.44px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease-in-out;
}
.donate-form__once-or-monthly input[type=radio]:checked ~ span,
.donate-form__once-or-monthly span:hover {
  background: #000;
  color: #fff;
}
.donate-form__sum-top span:before, .donate-form__sum-custom span:before {
  content: "$";
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #4f4f4f;
}
.donate-form__sum-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 420px) {
  .donate-form__sum-top {
    flex-wrap: wrap;
  }
}
.donate-form__sum-top label {
  width: calc((100% - 20px) / 4);
  height: 60px;
}
@media (max-width: 420px) {
  .donate-form__sum-top label {
    flex-wrap: wrap;
    width: calc((100% - 10px) / 2);
  }
  .donate-form__sum-top label:nth-child(1), .donate-form__sum-top label:nth-child(2) {
    margin-bottom: 10px;
  }
}
.donate-form__sum-top span {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 11px;
  border-radius: 3px;
  border: 2px solid #d4d8da;
  color: #ff9300;
  font-size: 22px;
  line-height: 80px;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 849px) {
  .donate-form__sum-top span {
    font-size: 19px;
  }
}
.donate-form__sum-top span:before {
  left: 14px;
  top: 12px;
}
.donate-form__sum-top input[type=radio]:checked ~ span,
.donate-form__sum-top span:hover {
  border-color: #000;
}
.donate-form__sum-custom {
  height: 90px;
}
.donate-form__sum-custom span {
  border-radius: 3px;
  border: 2px solid #d4d8da;
  transition: all 0.2s ease-in-out;
}
.donate-form__sum-custom span:before {
  left: 10px;
  top: 36px;
}
.donate-form__sum-custom span:after {
  content: "USD";
  position: absolute;
  right: 22px;
  top: 46px;
  font-size: 14px;
  text-transform: uppercase;
}
.donate-form__sum-custom i {
  display: block;
  padding: 0 10px 4px;
  text-align: center;
  background: #d4d8da;
  color: #232222;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.donate-form__sum-custom [type=text] {
  width: 100%;
  height: calc(100% - 30px);
  border: 0;
  text-align: right;
  padding-right: 54px;
  padding-left: 25px;
  font-size: 30px;
}
.donate-form__sum-custom input[type=radio]:checked ~ span,
.donate-form__sum-custom span:hover {
  border-color: #000;
}
.donate-form__sum-custom input[type=radio]:checked ~ span i,
.donate-form__sum-custom span:hover i {
  background: #000;
  color: #fff;
}
.donate-form .button {
  display: block;
  margin: 20px auto 0;
  line-height: 50px;
}
.donate-form__top {
  flex: 1;
  padding: 30px;
}
.donate-form__top h5 {
  font-size: 22px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.donate-form__btm {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  min-height: 56px;
  background: #dcecf1;
}
.donate-form__btm * {
  color: #798f9a;
  font-size: 14px;
  font-weight: 600;
}
.donate-form__btm a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.donate-form__btm span.divider {
  display: inline-block;
  margin: 0 14px;
}

.rp-field-has-error {
  border-color: #db504a;
}

.rp-donation-form-error {
  background: #f4cbca;
  color: #db504a;
  padding: 7px 15px;
  border-radius: 3px;
  margin: 10px 0;
  text-align: center;
}

.rp-donation-form-success {
  background: #d1e7c7;
  color: #3f692d;
  padding: 7px 15px;
  border-radius: 3px;
  margin: 10px 0;
  text-align: center;
}

.donate-story {
  padding-top: 158px;
  padding-bottom: 0;
}
@media (max-width: 749px) {
  .donate-story {
    padding-top: 50px;
  }
}
.donate-story__inner {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 0 40px 156px;
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 40px;
}
@media (max-width: 849px) {
  .donate-story__inner {
    padding-bottom: 100px;
  }
}
@media (max-width: 749px) {
  .donate-story__inner {
    padding: 0 15px 100px;
  }
}
.donate-story h2 {
  color: #232222;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 26px;
}
.donate-story__quote {
  position: relative;
  padding: 36px 66px 14px 46px;
  border: 8px solid #aebd34;
}
.donate-story__quote .quote-icn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 118px;
  opacity: 0.3;
  background-position: 34px 34px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MC40IDY0LjQiIGZpbGw9IiM4OTk1MjciPjxnIGRhdGEtbmFtZT0iTGF5ZXIgMiI+PGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj48cGF0aCBkPSJNODcuOCw2NC40Yy0yMy44LS40LTM3LTExLTM3LTM3LjRWMEg4My4yVjMySDcwLjhjLTEsMTEuNCw1LjgsMTguNCwxOS42LDE5LjhaTTM3LDY0LjRDMTMuMiw2NCwwLDUzLjQsMCwyN1YwSDMyLjRWMzJIMjBjLTEsMTEuNCw1LjgsMTguNCwxOS42LDE5LjhaIi8+PC9nPjwvZz48L3N2Zz4=");
}
@media (max-width: 749px) {
  .donate-story__quote {
    padding: 32px;
  }
}
.donate-story__quote:before, .donate-story__quote:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 374px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 78px 46px 0;
  border-color: transparent #aebd34 transparent transparent;
}
@media (max-width: 749px) {
  .donate-story__quote:before, .donate-story__quote:after {
    right: auto;
    left: 50px;
  }
}
.donate-story__quote:after {
  transform: translate(-8px, -15px);
  border-color: transparent #fff transparent transparent;
}
.donate-story__quote img {
  max-width: 350px;
  position: absolute;
  top: -30px;
  right: -76px;
}
@media (max-width: 749px) {
  .donate-story__quote img {
    display: none;
  }
}
.donate-story__quote p {
  position: relative;
  color: #484e13;
  font-family: Merriweather, serif;
  line-height: 30px;
  margin: 0 0 10px;
  max-width: calc(100% - 210px);
}
@media (max-width: 749px) {
  .donate-story__quote p {
    max-width: none;
  }
}
.donate-story__from {
  position: absolute;
  top: calc(100% + 23px);
  right: 276px;
  display: block;
  max-width: 78px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1.92px;
}
@media (max-width: 749px) {
  .donate-story__from {
    right: auto;
    left: 150px;
  }
}
.donate-story__from span {
  color: #743d13;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.1px;
}

.donate-impact-blocks .grid {
  row-gap: 4em;
}
.donate-impact-blocks__image {
  max-width: 200px;
  margin: 0 1em;
}
@media (max-width: 540px) {
  .donate-impact-blocks__image {
    max-width: 170px;
  }
}
.donate-impact-blocks__col-2 {
  margin-left: 1em;
  margin-right: 1em;
  max-width: 50%;
}
.donate-impact-blocks__amount {
  color: #232222;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.donate-impact-blocks__text {
  margin-right: 1em;
}
.donate-impact-blocks__text p {
  margin-top: 0;
}
.donate-other-ways {
  padding-top: 30px;
}
.donate-other-ways .grid-1of3 {
  padding-top: 50px;
  padding: 50px 15px 15px;
}
.donate-other-ways .grid-1of3:nth-child(2) {
  position: relative;
}
@media (max-width: 849px) {
  .donate-other-ways .grid-1of3:nth-child(2) {
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
  }
}
.donate-other-ways .grid-1of3:nth-child(2):before, .donate-other-ways .grid-1of3:nth-child(2):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 290px;
  background: #e6e6e6;
  top: 0;
}
@media (max-width: 849px) {
  .donate-other-ways .grid-1of3:nth-child(2):before, .donate-other-ways .grid-1of3:nth-child(2):after {
    display: none;
  }
}
.donate-other-ways .grid-1of3:nth-child(2):before {
  left: 0;
}
.donate-other-ways .grid-1of3:nth-child(2):after {
  right: 0;
}
.donate-other-ways h2 {
  color: #232222;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 100px;
}
@media (max-width: 849px) {
  .donate-other-ways h2 {
    margin-bottom: 0;
  }
}
.donate-other-ways__icn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #2c8da9;
}
.donate-other-ways__icn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 30px;
  max-height: 28px;
  transform: translate(-50%, -50%);
}
.donate-other-ways__icn path {
  fill: #fff;
}
.donate-other-ways__title {
  color: #232222;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  margin: 14px 0 10px;
}
.donate-other-ways__info p {
  color: #232222;
  letter-spacing: 0.34px;
  margin-top: 0;
}
@media (max-width: 1199px) {
  .donate-other-ways__info.matching-gifts p br {
    display: none;
  }
}
.donate-other-ways__btm {
  color: #232222;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  line-height: 23.94px;
  font-style: italic;
  max-width: 540px;
  margin: 60px auto 0;
}

@media (max-width: 540px) {
  .modal--donate .form-control {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
}
.modal--donate .button {
  width: 130px;
  height: 50px;
  line-height: 50px;
}
.modal--donate .button[disabled] {
  background: #aaa;
  cursor: default;
}
.modal--donate .modal-content__inner {
  padding-top: 62px;
}
@media (max-width: 949px) {
  .modal--donate .modal-content__inner {
    padding-top: 55px;
  }
}
.modal--donate__donation-type {
  position: relative;
  color: #ff9300;
  font-size: 50px;
  padding-left: 14px;
  margin-bottom: 48px;
  line-height: 1;
}
@media (max-width: 540px) {
  .modal--donate__donation-type {
    margin-bottom: 20px;
  }
}
.modal--donate__donation-type:before {
  content: "$";
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 14px;
  font-weight: 700;
}
.modal--donate__donation-type .info-donation-recurring {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.5;
}
.modal--donate .d-form-grid-wrap {
  margin-left: -5px;
  margin-right: -5px;
}
.modal--donate .grid--gutter {
  margin-left: auto;
  margin-right: auto;
}
.modal--donate .grid--gutter > div {
  padding-left: 5px;
  padding-right: 5px;
}
.modal--donate input[readonly] {
  background: #eee;
}

.modal--donate-faq .contact-link {
  margin-bottom: 20px;
}
.modal--donate-faq .contact-link h5 {
  color: #232222;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24px;
  line-height: 1;
  margin-bottom: 0px;
}
.modal--donate-faq .contact-link a {
  color: #232222;
  font-size: 17px;
  letter-spacing: 1.53px;
  line-height: 1;
}
.modal--donate-faq .contact-link a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

@media (max-width: 540px) {
  .modal--donate .modal-content__inner,
  .modal--donate-faq .modal-content__inner {
    padding-top: 55px;
  }
  .modal--donate .modal-close,
  .modal--donate-faq .modal-close {
    top: 15px;
  }
  .modal--donate .tabs-wrapper--btns .tab-trigger {
    font-size: 11px;
    padding: 0 10px;
  }
}
@media (max-width: 420px) {
  .modal--donate .tabs-triggers {
    flex-direction: column;
  }
  .modal--donate .tabs-wrapper--btns .tab-trigger {
    margin-right: 0;
    text-align: center;
  }
  .modal--donate .tabs-wrapper--btns .tab-trigger:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.page-content--where-we-work {
  background: #dcecf1;
  border-top: 3px solid #4f4f4f;
}
.page-content--where-we-work h1 {
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 14.37px;
  margin-bottom: 10px;
  line-height: 1;
  color: #232222;
}
@media (max-width: 749px) {
  .page-content--where-we-work h1 {
    font-size: 60px;
  }
}

.where-we-work__top {
  padding-bottom: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  float: none;
}

.map-switch {
  justify-content: center;
  margin: 30px auto 18px;
}
@media (max-width: 749px) {
  .map-switch {
    display: none;
  }
}

.map-legend-wrap {
  transform-origin: center center;
  transform: scale(0);
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0.1s;
}
@media (max-width: 749px) {
  .map-legend-wrap {
    transform: scale(1);
    opacity: 1;
  }
}

.map-legend-container {
  min-height: 250px;
  padding-top: 0;
  position: relative;
}
@media (max-width: 749px) {
  .map-legend-container {
    min-height: auto;
    padding-top: 0;
  }
}
.map-legend-container .js-year {
  position: relative;
  top: 0;
  left: calc(50% + 12.37px);
  transform: translate(-50%, 100%);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 749px) {
  .map-legend-container .js-year {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
  }
}
.map-legend-container.js-map-legend-is-ready .js-year {
  transform: translate(-50%, 0);
}
.map-legend-container.js-map-legend-is-ready .map-legend-wrap {
  transform: scale(1);
  max-height: 130px;
  opacity: 1;
}

@keyframes dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(210, 0, 67, 0.7), 0 0 0 0 rgba(210, 0, 67, 0.7);
  }
  40% {
    box-shadow: 0 0 0 6px rgba(210, 0, 67, 0), 0 0 0 0 rgba(210, 0, 67, 0.7);
  }
  80% {
    box-shadow: 0 0 0 6px rgba(210, 0, 67, 0), 0 0 0 5px rgba(210, 0, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(210, 0, 67, 0), 0 0 0 5px rgba(210, 0, 67, 0);
  }
}
@keyframes dot-pulse-office {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 156, 63, 0.7), 0 0 0 0 rgba(236, 156, 63, 0.7);
  }
  40% {
    box-shadow: 0 0 0 6px rgba(236, 156, 63, 0), 0 0 0 0 rgba(236, 156, 63, 0.7);
  }
  80% {
    box-shadow: 0 0 0 6px rgba(236, 156, 63, 0), 0 0 0 5px rgba(236, 156, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 156, 63, 0), 0 0 0 5px rgba(236, 156, 63, 0);
  }
}
.country-dot,
.map-legend span,
.country-dot--office,
.mobile-dot--office,
.mobile-dot--activity {
  position: absolute;
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #d20043;
  pointer-events: none;
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 1;
}
@media (max-width: 749px) {
  .country-dot,
  .map-legend span,
  .country-dot--office,
  .mobile-dot--office,
  .mobile-dot--activity {
    width: 10px;
    height: 10px;
  }
}
.country-dot__json-data,
.map-legend span__json-data,
.country-dot--office__json-data,
.mobile-dot--office__json-data,
.mobile-dot--activity__json-data {
  font-size: 0;
}
.country-dot.js-is-placed,
.map-legend span.js-is-placed,
.country-dot--office.js-is-placed,
.mobile-dot--office.js-is-placed,
.mobile-dot--activity.js-is-placed {
  display: inline-flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.country-dot:before,
.map-legend span:before,
.country-dot--office:before,
.mobile-dot--office:before,
.mobile-dot--activity:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(210, 0, 67, 0.8);
  animation: dot-pulse 3s linear infinite;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 749px) {
  .country-dot:before,
  .map-legend span:before,
  .country-dot--office:before,
  .mobile-dot--office:before,
  .mobile-dot--activity:before {
    width: 6px;
    height: 6px;
  }
}

.map-legend {
  text-align: center;
  max-width: 728px;
  margin: 0 auto 16px;
}
.map-legend p {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  color: #232222;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.13px;
  line-height: 1;
  margin: 0 0 18px;
}
@media (max-width: 749px) {
  .map-legend p {
    font-size: 12px;
  }
}
.map-legend p:first-of-type {
  margin-right: 20px;
}
.map-legend p span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
  display: block;
}
.map-legend p:first-of-type span:before {
  background: rgba(236, 156, 63, 0.8);
  animation: dot-pulse-office 3s linear infinite;
}

.country-dot--office,
.map-legend p:first-of-type span {
  display: block;
}
.country-dot--office:before,
.map-legend p:first-of-type span:before {
  background: rgba(236, 156, 63, 0.8);
  animation: dot-pulse-office 3s linear infinite;
}

.country-dot--office {
  transform: translate(-50%, -50%) scale(1);
}
.country-dot--office.js-dot-highlighted {
  opacity: 1;
}

.map-wrap {
  position: static;
  padding-top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0 auto;
  padding-left: 60px;
  padding-top: 343px;
  margin-top: -343px;
  float: none;
  overflow: hidden;
}
@media (max-width: 749px) {
  .map-wrap {
    padding-bottom: 20px;
    padding-left: 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    pointer-events: none;
    margin-top: -372px;
  }
}

.country-dot__popup {
  position: absolute;
  display: none;
  opacity: 0;
  transform-origin: 0 center;
  transform: translate(0, -50%) scale(1);
  background: #fff;
  padding: 16px;
  white-space: nowrap;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.26);
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.country-dot__popup h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.26px;
  margin-bottom: 0 !important;
}
.country-dot__popup ul {
  margin-top: 10px;
  padding-left: 0;
}
.country-dot__popup li {
  padding-left: 0 !important;
  font-size: 13px;
  font-weight: 600 !important;
  color: #d20043;
  line-height: 1;
  letter-spacing: 1.26px;
}
.country-dot__popup li:not(:last-of-type) {
  margin-bottom: 8px;
}
.country-dot__popup li:before {
  display: none;
}
.country-dot__popup.js-popup-is-ready {
  display: block;
}
.country-dot__popup.js-country-dot__popup-active {
  transform: translate(20px, -50%) scale(1);
  opacity: 1;
}

.popup-office {
  margin-top: 20px;
}
.popup-office h6 {
  color: #ec9c3f;
}
.popup-office p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  opacity: 0.8;
  text-transform: lowercase;
  font-weight: 300;
}

body.page_where_we_work {
  overflow-x: hidden;
  overflow-y: scroll;
}
body.page_where_we_work .main-content {
  position: relative;
}

#map {
  position: relative;
  overflow: hidden;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s ease-in-out;
}
#map svg {
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.08));
  transition: all 0.5s ease-in-out;
}
#map svg g {
  transition: all 0.3s ease-in-out;
}
#map.js-africa-only {
  transform: translate(0%, -12%) scale(1.7);
}
#map.js-africa-only svg {
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.17));
}
#map.js-africa-only svg > g:not(#Africa) {
  opacity: 0;
  pointer-events: none;
}
#map.js-africa-only .country-dot__popup {
  transform: translate(0, -50%) scale(0.7);
}
#map.js-africa-only .country-dot__popup.js-country-dot__popup-active {
  transform: translate(20px, -50%) scale(0.7);
}

.js-dot-hidden {
  opacity: 0 !important;
}

#map .map-country {
  transition: all 0.2s linear;
}
#map .map-country.js-country-highlighted {
  fill: #4db3c9;
}
#map .map-country.js-is-hoverable, #map .map-country.js-country-has-office {
  cursor: pointer;
}
#map .map-country.js-is-hoverable:hover, #map .map-country.js-country-has-office:hover {
  fill: #3baac2;
}

.modal--map {
  z-index: 99;
}
.modal--map .modal__close {
  background: transparent;
}
.modal--map .modal-content__inner {
  background: #3b3f42;
}
.modal--map path,
.modal--map rect,
.modal--map polygon {
  fill: #dfeaf1;
}
.modal--map .modal--map__title,
.modal--map li {
  color: #fff;
}

.modal--map__top {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.modal--map__btm {
  margin-left: 111px;
}
@media (max-width: 749px) {
  .modal--map__btm {
    margin-left: 0;
  }
}

.modal--map__title {
  padding-left: 20px;
  padding-right: 50px;
}
@media (max-width: 749px) {
  .modal--map__title {
    font-size: 24px !important;
  }
}

.modal--map ul {
  position: relative;
  padding: 14px 0;
  list-style: none;
}
.modal--map ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  width: 1px;
  height: 100%;
  background: #dcecf1;
}

.modal-activity {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.32px;
}
.modal-activity:not(:last-of-type) {
  margin-bottom: 24px;
}
.modal-activity span {
  display: inline-flex;
}
.modal-activity__icn {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #4f4f4f;
}
.modal-activity__icn:before, .modal-activity__icn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.modal-activity__icn:before {
  width: 18px;
  height: 18px;
}
.modal-activity__icn:after {
  width: 6px;
  height: 6px;
}
.modal-activity__year {
  margin: 0 22px 0 16px;
  min-width: 100px;
}
.modal-activity--self-reliance .modal-activity__icn:before, .modal-activity--child-protection .modal-activity__icn:before, .modal-activity--complementary-pathways .modal-activity__icn:before, .modal-activity--complementary-pathways-education .modal-activity__icn:before, .modal-activity--complementary-pathways-family-reunification .modal-activity__icn:before, .modal-activity--complementary-pathways-labor-mobility .modal-activity__icn:before, .modal-activity--sponsor-circle-program-for-afghans .modal-activity__icn:before {
  background: #c67314;
}
.modal-activity--self-reliance .modal-activity__icn:after, .modal-activity--child-protection .modal-activity__icn:after, .modal-activity--complementary-pathways .modal-activity__icn:after, .modal-activity--complementary-pathways-education .modal-activity__icn:after, .modal-activity--complementary-pathways-family-reunification .modal-activity__icn:after, .modal-activity--complementary-pathways-labor-mobility .modal-activity__icn:after, .modal-activity--sponsor-circle-program-for-afghans .modal-activity__icn:after {
  background: #ec9c3f;
}
.modal-activity--self-reliance .modal-activity__year, .modal-activity--child-protection .modal-activity__year, .modal-activity--complementary-pathways .modal-activity__year, .modal-activity--complementary-pathways-education .modal-activity__year, .modal-activity--complementary-pathways-family-reunification .modal-activity__year, .modal-activity--complementary-pathways-labor-mobility .modal-activity__year, .modal-activity--sponsor-circle-program-for-afghans .modal-activity__year {
  color: #ec9c3f;
}
.modal-activity--resettlement .modal-activity__icn:before {
  background: #800029;
}
.modal-activity--resettlement .modal-activity__icn:after {
  background: #d20043;
}
.modal-activity--resettlement .modal-activity__year {
  color: #d20043;
}

.timeline-year {
  position: relative;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  margin-right: 20px;
  background: #dcecf1;
  border: 2px solid #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.timeline-year:before {
  content: "";
  position: absolute;
  width: 44px;
  height: 56px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-year:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  bottom: calc(100% + 10px);
  left: 50%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiPjxnPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKC03MTYgLTEzODcpIj48aW1hZ2Ugd2lkdGg9IjEwIiBoZWlnaHQ9IjYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDcxNiAxMzg3KSIgeGxpbms6aHJlZj0iZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFBb0FBQUFHQ0FZQUFBRDY4QS9HQUFBQWJVbEVRVlFZVjEzUFFRNUFRQXdGME44d21UcURtNUZZaXdPSnRlQUE3dVFPSXhPcGxDR2x5OS8zbTVUd25jd3hqeHJGRUJvQXg3TW00MjRrcUs2TXNGajhRSXVHVkc0dFZ2aEJjUStkUXVlNUIvQmljc3dUQkRXQUlTRkpGOG5nbVhKZnJBVFpmdWo5UWJHQXloUERTakNKMzNLQm9RQUFBQUJKUlU1RXJrSmdnZz09Ii8+PC9nPjwvZz48L3N2Zz4=") no-repeat center;
  opacity: 0;
  transform: translate(-50%, 4px);
  transition: all 0.2s ease-in-out;
}
.timeline-year:not(:last-of-type) {
  margin-right: 72px;
}
.timeline-year__year, .timeline-year__dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 5px);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.timeline-year__year {
  bottom: calc(100% + 5px);
  opacity: 0.5;
  color: #4f4f4f;
  font-size: 14px;
  letter-spacing: 0.96px;
}
.timeline-year__dots {
  bottom: calc(100% + 32px);
  display: flex;
  flex-wrap: wrap;
  height: 74px;
  flex-direction: column-reverse;
  width: 44px;
  align-items: center;
  padding: 0 10px;
  transition: all 1s ease-in-out;
}
.timeline-year__dots b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d20043;
  margin-top: 4px;
}
.timeline-year__dots b.timeline-dot-office {
  background: #ec9c3f;
}
.timeline-year:hover, .timeline-year.js-active-year {
  background: #232222;
  box-shadow: 0 0 0 3px #fff;
}
.timeline-year:hover:after, .timeline-year.js-active-year:after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.timeline-year:hover .timeline-year__year, .timeline-year.js-active-year .timeline-year__year {
  color: #232222;
  transform: translate(-50%, -10px);
}
.timeline-year:hover .timeline-year__dots, .timeline-year.js-active-year .timeline-year__dots {
  transform: translate(-50%, -10px);
}

.swiper-slide.swiper-slide-active .timeline-year {
  background: #232222;
  box-shadow: 0 0 0 3px #fff;
}
.swiper-slide.swiper-slide-active .timeline-year:after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.swiper-slide.swiper-slide-active .timeline-year .timeline-year__year {
  transform: translate(-50%, -10px);
  font-weight: 700;
  font-size: 18px;
  color: #232222;
  opacity: 1;
}
.swiper-slide.swiper-slide-active .timeline-year .timeline-year__dots {
  transform: translate(-50%, -10px);
}

.timeline-year.js-loaded-all-years .timeline-year__dots {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.2s ease-in-out;
}
.timeline-year.js-loaded-all-years:hover .timeline-year__dots {
  transform: translate(-50%, -14px);
}
.timeline-year.js-loaded-all-years.js-active-year .timeline-year__dots {
  transform: translate(-50%, -14px);
}

.container--timeline {
  position: relative;
}
.container--timeline .swiper-button-prev,
.container--timeline .swiper-button-next {
  opacity: 0;
  outline: none !important;
  top: 100%;
  transform: translateY(-10px);
}
.container--timeline .swiper-button-prev.swiper-button-disabled,
.container--timeline .swiper-button-next.swiper-button-disabled {
  opacity: 0.5 !important;
}
.container--timeline .swiper-button-prev {
  left: auto;
  right: 0;
}
.container--timeline .swiper-button-next {
  left: 0;
  transform: translateY(-10px) scaleX(-1);
}

.map-timeline {
  margin-top: -110px;
  padding-bottom: 200px;
  pointer-events: none;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.map-timeline.js-is-timeline-ready {
  pointer-events: all;
  cursor: auto;
  cursor: initial;
}
.map-timeline.js-is-timeline-ready .swiper-button-prev,
.map-timeline.js-is-timeline-ready .swiper-button-next {
  opacity: 1;
}
@media (max-width: 749px) {
  .map-timeline {
    display: none;
  }
}

.swiper-container-map {
  position: relative;
  max-width: calc(100% - 74px);
  margin: 0 auto;
}
.swiper-container-map:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  height: 2px;
  width: 100%;
  background: #fff;
}
.swiper-container-map .swiper-slide {
  min-height: 130px;
  padding-bottom: 4px;
  width: 56px;
  display: flex;
  align-items: flex-end;
}
.swiper-container-map .swiper-button-prev,
.swiper-container-map .swiper-button-next {
  top: 50%;
}

#modal--map__map {
  width: 100px;
  min-width: 100px;
  height: 100px;
  overflow: hidden;
}

#modal-country-id {
  stroke: none;
}

.offices-wrap {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mobile-activities {
  margin-top: 40px;
}

.country-panel {
  display: flex;
  position: relative;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  height: 60px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.15);
}
.country-panel .panel-left {
  position: relative;
  width: 60px;
  height: 100%;
  background: #4db3c9;
}
.country-panel:not(:last-of-type) {
  margin-bottom: 6px;
}
.country-panel__right {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  flex: 1;
  line-height: 1.2;
}

.panel-left-svg-wrap {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-dot--activity,
.mobile-dot--office {
  display: block;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.mobile-dot--office:before {
  background: #ec9c3f;
  animation: dot-pulse-office 3s linear infinite;
}

.map-data-mobile {
  padding-top: 0;
  display: none;
}
@media (max-width: 749px) {
  .map-data-mobile {
    display: block;
  }
}

.map-dot {
  opacity: 0;
}

.organization__below-hero {
  padding-top: 90px;
  padding-bottom: 50px;
}
@media (max-width: 749px) {
  .organization__below-hero {
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.organization__below-hero h2 {
  color: #232222;
  margin-bottom: 30px;
}

.organization__3-cols {
  display: flex;
  text-align: center;
}
@media (max-width: 949px) {
  .organization__3-cols {
    flex-direction: column;
  }
}
.organization__3-cols__col {
  position: relative;
  width: 33.3333333333%;
  padding: 68px 54px;
  color: #fff;
  min-height: 366px;
}
@media (max-width: 949px) {
  .organization__3-cols__col {
    width: 100%;
    min-height: auto;
    padding: 68px 34px;
  }
}
.organization__3-cols__col .icon {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}
.organization__3-cols__col .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 58px;
  max-height: 55px;
  transform: translate(-50%, -50%);
}
.organization__3-cols__col .icon path {
  fill: #fff;
}
.organization__3-cols__col h4 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.34px;
  margin-bottom: 28px;
  color: #fff;
}
.organization__3-cols__col p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}

.container--values_section {
  min-height: 880px;
}

.news-and-media-sec {
  padding-top: 30px;
}
.news-and-media-sec .tab-content {
  margin-left: -35px;
  margin-right: -35px;
}
@media (max-width: 1199px) {
  .news-and-media-sec .tab-content {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.news-and-media-sec .tab-content--videos {
  margin-left: -15px;
  margin-right: -15px;
}
.news-and-media-sec .tab-content--videos .grid--videos {
  margin-left: auto;
  margin-right: auto;
}

.news-and-media-grid > div {
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .news-and-media-grid > div {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.news-and-media-heading {
  margin: 40px 0 50px;
  padding: 0 35px;
}
.news-and-media-heading h4 {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .news-and-media-heading {
    padding: 0 15px;
  }
}
@media (max-width: 749px) {
  .news-and-media-heading {
    margin: 30px 0 40px;
  }
  .news-and-media-heading:first-of-type {
    margin: 0 0 40px;
  }
}

.news-filter {
  margin-top: 30px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.68px;
  font-weight: 700;
}
.news-filter > * {
  display: inline-block;
  margin: 10px;
  padding: 10px 25px;
  background-color: transparent;
  border: 2px solid #232222;
  color: #232222;
  border-radius: 50px;
  cursor: pointer;
  line-height: 1.5;
  transition: all 0.3s;
}
.news-filter__all {
  border-color: #db504a;
  color: #db504a;
}
.news-filter__all:hover {
  border-color: #e88e8a;
  color: #e88e8a;
}
.news-filter__press {
  border-color: #084c61;
  color: #084c61;
}
.news-filter__press:hover {
  border-color: #0e83a8;
  color: #0e83a8;
}
.news-filter__stories {
  border-color: #232222;
  color: #232222;
}
.news-filter__stories:hover {
  border-color: #4a4848;
  color: #4a4848;
}
.news-filter__social {
  border-color: #1da1f2;
  color: #1da1f2;
}
.news-filter__social:hover {
  border-color: #65bff6;
  color: #65bff6;
}
.news-filter__active {
  color: #fff;
}
.news-filter__active:hover {
  color: #fff;
}
.news-filter__active.news-filter__all {
  background: #db504a;
  border-color: #db504a;
}
.news-filter__active.news-filter__press {
  background: #084c61;
  border-color: #084c61;
}
.news-filter__active.news-filter__stories {
  background: #232222;
  border-color: #232222;
}
.news-filter__active.news-filter__social {
  background: #1da1f2;
  border-color: #1da1f2;
}
@media (max-width: 849px) {
  .news-filter > * {
    padding: 4px 18px;
    margin: 5px 3px;
    font-size: 1.6rem;
  }
}

.single-news-item--hidden {
  display: none;
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 448px;
}
.post-card *,
.post-card .read-more {
  color: #fff;
}
.post-card p {
  margin-top: 0;
}
.post-card h4 {
  text-transform: capitalize;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 400;
  margin-bottom: 18px;
}
.post-card .excerpt {
  margin-bottom: 28px;
  font-size: 1.6rem;
}
.post-card--social {
  justify-content: center;
  background: #1da1fa;
  text-align: center;
  padding: 32px;
}
.post-card--social .twitter-logo {
  width: 24px;
  height: 20px;
  margin: 0 auto 26px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAUCAMAAACgaw2xAAABJlBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////cBqmhAAAAYnRSTlMANoW6oVgEDRdLKHv9/79Fessgw9wjZF0eB988EOTTbQPP/I0UN4KJ6J1GEjWyD+Drxv6i9gHOY2D6LaVv2mGu1N0KkQWZ+aQdfe+9CAZKrCxieZfZ+IATcOLwPnecsL6rHHswypwAAADUSURBVHgBZcvVWsNAGIThoQWKZBASXAi0tDi0JUiA4O7uwv3fBMuGP9J9D+d7Bml1mWx9QyOQawKaWxBptai0tXd0dgG20y17D/9ZvX3odzgwCG1oWIIzMgp3jBzPF6BMMFIEUKIyOTU9g1mKOSjzC9QWy3ZFQvVvL5aWWCsDwFtmxQgrUFZpWPOheOtGKENzNzaZFkArbG0zZWcXoT3zENo/OGTCEWLHJ6cUZ+eIXFzaluxXOYSub27v7ikeHiGenl8oXqs+Ety394/Pr+x3PvhB7BfWWiCzcTXhMQAAAABJRU5ErkJggg==);
}
.post-card--social .twitter-time {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  letter-spacing: 0.24px;
  font-weight: 600;
  margin-bottom: 18px;
}
.post-card--social .twitter-excerpt {
  font-size: 16px;
  font-weight: 300;
  word-break: break-all;
  margin-bottom: 28px;
}
.post-card--story {
  position: relative;
  overflow: hidden;
}
.post-card--story__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #4f4f4f;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.2s ease-in-out;
}
.post-card--story__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 20px 64px;
  background-image: linear-gradient(to top, #232222 0%, rgba(35, 34, 34, 0.7) 50%, rgba(35, 34, 34, 0) 100%);
}
.post-card--story__inner p {
  margin-top: 0;
}
.post-card--story:hover .post-card--story__thumb {
  transform: scale(1.08);
}
.post-card--press .read-more {
  color: #ff9300;
}
.post-card--press__top {
  position: relative;
  height: 162px;
  overflow: hidden;
  border: 1px solid #dcecf1;
}
.post-card--press__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  background-position: center;
  transition: all 0.2s ease-in-out;
}
.post-card--press__date {
  position: absolute;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 30px;
  padding-right: 4px;
  background: #ff9300;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.16px;
}
.post-card--press__date:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 100%;
  width: 15px;
  height: calc(100% + 10px);
  transform: skewY(45deg) translateY(5px);
  background: #db504a;
}
.post-card--press__btm {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  background: #033347;
  padding: 20px 20px 64px;
}
.post-card--press:hover .post-card--press__thumb {
  transform: scale(1.08);
}

.grid--videos > div {
  margin-bottom: 50px;
}

.video p {
  margin-top: 0;
}
.video__date-wrap {
  margin-top: 10px;
  margin-bottom: 20px;
  height: 30px;
  overflow: hidden;
}
.video__date {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 30px;
  padding-left: 14px;
  background: #db504a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.16px;
}
.video__date:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 100%;
  width: 15px;
  height: calc(100% + 10px);
  transform: skewY(45deg) translateY(5px);
  background: #db504a;
}
.video__txt {
  margin-bottom: 0;
}

.publications-sec {
  padding-top: 38px;
}
.publications-sec .read-more {
  font-size: 14px;
}
.publications-sec .ul--normal li:not(:last-of-type) {
  margin-bottom: 14px;
}
.publications-sec .ul--normal p {
  margin: 0;
}

.publications-block h3 {
  margin-bottom: 8px;
}
.publications-block:not(:last-of-type) {
  margin-bottom: 38px;
}

.reports-grid-wrap {
  margin-left: -35px;
  margin-right: -35px;
}
@media (max-width: 949px) {
  .reports-grid-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
  .reports-grid-wrap .grid--gutter-lg > div {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.reports-block:not(:last-of-type) {
  margin-bottom: 100px;
}
@media (max-width: 540px) {
  .reports-block:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.reports-block h3 {
  margin-bottom: 26px;
}

.report-card {
  border-bottom: 1px solid #dcecf1;
  padding-bottom: 34px;
  margin-bottom: 46px;
}
.report-card__thumb {
  display: block;
  height: 0;
  padding-bottom: 81%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid #4f4f4f;
  margin-bottom: 20px;
}
.report-card h5 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 400;
}
.report-card--sm {
  padding-bottom: 14px;
}

.reports-grid-wrapper--sm {
  margin-left: -15px;
  margin-right: -15px;
}
.reports-grid-wrapper--sm .grid--gutter {
  margin-left: auto;
  margin-right: auto;
}

.report-well {
  position: relative;
  display: flex;
  align-items: center;
  background: #dcecf1;
  border-radius: 3px;
  padding: 24px 80px 24px 30px;
  margin-bottom: 30px;
}
@media (max-width: 849px) {
  .report-well {
    padding: 22px 70px 22px 24px;
  }
}
@media (max-width: 749px) {
  .report-well {
    margin-bottom: 20px;
  }
}
.report-well h3,
.report-well h3 p,
.report-well p {
  margin-top: 0;
  margin-bottom: 0;
  color: #232222;
}
.report-well p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
}
.report-well h3 p {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.2;
}
.report-well .icon-plus {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  background-color: #ff9300;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='512px' height='512px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cpath fill='%23ffffff' d='M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256 c0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32 C448,238.3,434.3,224,417.4,224z'/%3E%3C/svg%3E");
  color: #fff;
}
@media (max-width: 849px) {
  .report-well .icon-plus {
    width: 30px;
    height: 30px;
    right: 24px;
  }
}
.report-well--sm {
  padding: 35px 30px;
}
@media (max-width: 849px) {
  .report-well--sm {
    padding: 22px 70px 22px 24px;
  }
}

.fin-statements-img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.page_impact_reports .read-more {
  font-weight: 700;
  font-size: 14px;
}
body.page_impact_reports .read-more span:before, body.page_impact_reports .read-more span:after {
  top: 25%;
}

.page-content--initiative h2 {
  margin-bottom: 10px;
}
.page-content--initiative .lead {
  margin: 0 auto 60px;
  max-width: 720px;
}
.page-content--initiative .lead p {
  margin: 0;
}
@media (max-width: 949px) {
  .page-content--initiative .cont-sm-txt-only {
    padding-bottom: 20px;
  }
}
@media (max-width: 420px) {
  .page-content--initiative .button {
    font-size: 12px;
  }
}

.initiative__3-cols {
  display: flex;
  padding: 40px 0 0;
}
@media (max-width: 1199px) {
  .initiative__3-cols {
    padding-top: 30px;
  }
}
@media (max-width: 949px) {
  .initiative__3-cols {
    flex-direction: column;
  }
}
.initiative__3-cols .col {
  display: flex;
  flex-direction: column;
  width: 33.3333333333%;
  padding: 60px 48px 100px;
  background: orange;
  text-align: center;
}
@media (max-width: 1440px) {
  .initiative__3-cols .col {
    padding: 50px 30px 80px;
  }
  .initiative__3-cols .col .button {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .initiative__3-cols .col {
    padding: 50px 20px 70px;
  }
}
@media (max-width: 949px) {
  .initiative__3-cols .col {
    width: 100%;
    padding: 40px 20px 50px;
  }
  .initiative__3-cols .col .button.w100 {
    width: auto;
  }
}
.initiative__3-cols .col:first-of-type {
  background: #084c61;
}
.initiative__3-cols .col:nth-child(2) {
  background: #ff9300;
}
.initiative__3-cols .col:nth-child(2) .button--white {
  color: #ff9300;
}
.initiative__3-cols .col:last-of-type {
  background: #db504a;
}
.initiative__3-cols .col:last-of-type .button--white {
  color: #db504a;
}
.initiative__3-cols .col h3 {
  line-height: 1.2;
  min-height: 2.4em;
  margin-bottom: 28px;
}
@media (max-width: 949px) {
  .initiative__3-cols .col h3 {
    min-height: auto;
  }
}
.initiative__3-cols .col h3,
.initiative__3-cols .col p {
  color: #fff;
  margin-top: 0;
}
.initiative__3-cols .col p {
  font-size: 18px;
}
.initiative__3-cols .col p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .initiative__3-cols .col p {
    font-size: 15px;
  }
}
@media (max-width: 949px) {
  .initiative__3-cols .col p {
    font-size: 16px;
  }
}
.initiative__3-cols .col img {
  margin: 0 auto 30px;
}
.initiative__3-cols .col .content {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.initiative__3-cols .col .content__inner {
  padding-bottom: 20px;
  flex: 1;
}

.single-story-block--initiative {
  min-height: 646px;
}
@media (max-width: 1199px) {
  .single-story-block--initiative {
    min-height: 500px;
  }
}
@media (max-width: 749px) {
  .single-story-block--initiative .single-story-block__content {
    position: absolute;
  }
}
.single-story-block--initiative .single-story-block__content {
  background: #dcecf1;
}

.reports-sec--initiative,
.team--initiative,
.partners-list--initiative {
  padding-top: 110px;
  padding-bottom: 80px;
}
@media (max-width: 949px) {
  .reports-sec--initiative,
  .team--initiative,
  .partners-list--initiative {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.reports-sec--initiative .report-well {
  margin-bottom: 30px;
  min-height: 100px;
}
.reports-sec--initiative .report-well h3 {
  font-size: 20px;
  line-height: 1.22;
}

.team--initiative .team-tabs__grid {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 540px) {
  .team--initiative .team-tabs__grid {
    justify-content: center;
  }
}
.team--initiative .team-member {
  max-width: 240px;
  margin: 0 auto;
}
.team--initiative .team-member__role {
  letter-spacing: 1px;
}

.partners-list--initiative p.lead {
  max-width: 400px;
}

/*# sourceMappingURL=style.css.map*/