@import url(https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap);
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial; }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0; }

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px; }

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box; }

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none; }

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto; }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none; }

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top; }

/*** End of RESET styles ******/
.stop-scroll {
  height: 100%;
  overflow: hidden; }

.mediabox-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 999;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: mediabox;
  animation-name: mediabox; }

@-webkit-keyframes mediabox {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes mediabox {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.mediabox-image-wrap .mediabox-content {
  outline: none; }

.mediabox-content {
  max-width: 853px;
  display: block;
  margin: 0 auto;
  height: 100%;
  position: relative; }
  .mediabox-content .img {
    position: relative;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%; }
    .mediabox-content .img img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto;
      -o-object-fit: contain;
         object-fit: contain;
      -o-object-position: center;
         object-position: center; }

.mediabox-content iframe {
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  height: 480px !important;
  border: none !important;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0; }

.mediabox-hide {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: mediaboxhide;
  animation-name: mediaboxhide; }

@-webkit-keyframes mediaboxhide {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes mediaboxhide {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.mediabox-close {
  position: absolute;
  top: 0;
  cursor: pointer;
  bottom: 528px;
  right: 0px;
  margin: auto 0;
  width: 24px;
  height: 24px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAMvSURBVHja7Js9aBRBFMd/d1lPY6FiJVjY+Fkoxl7wA1Q0prQRS6tgoZV2MWIRRVHUUq3U+JnESrS2sBXBzipREWMlATXwt8gFznC5nd15M7Nn8uC45nZnfr/dY96+N1uTxFKOOks8lgUU/H2t4tJqIQUcAiaBGeBymcECRgO4B/wBPgJ9zkdKcvkclfRL/8ZtSTXH40N+GpLGF8zth6Q9Lse7DHCsDXxVJLSDLyQhb4B+Sb/VOVJJ6ATfKqGvrIDjDvCpJLjAz8d0JwmLDTBQAD62hIakiYJzm5a021VAfwn4WBLKwLdK2JUnIJP0XX4RSoIP/Hy8W3jeepv1dL3nmjwI3DLOExrAU2DA8zwb8xKhGeCuwYQtJTSAZwbwAHdcEqFM0mPZhO/foSHppdFcrraby2IDV0FCcPi8PCClhCjwLplgCgkrDeGv5I3pcjViSogK7yogloTo8EUEhJaQBL6oAGsJ9yVtkrRD0qsU8JKolagKZ8AD4ETFymFXgPOAQpXE5mMWOAk86XZ4n6pwlSSUhvcti1dBghe8RV8gpYQRX3irxkgKCSPABV94y85QTAlm8NatsRgSTOGBUnmAS57w3KiA0Ro3gHOW8KEEAOwE3hvfXWubFauu6A6vCND07OmW9viq5vpsGT3AtRAN2XoA+BfAwQBiTweoNpMZw48BRwKuAoPN7zNVWwZjwAfpO9S7DN5cQmYAPw4cTvAsYPJ3qHcpvNmdUO9ieBMJZQT0AhMVgfeWUC8BP87cjjHfuA6sATY0c4c0EgpUUHslvTaq3l5aUL1N1oarAnxSCVWBTyYhJvyw41XJJI3GkpAH/yYyfHQJi01gdUL4qBKqCh9NQrtBx4wGvGi0XS6T9MhoTkN5AtZVDN5awlTePsGfwDfPjGwYGDKu3s4Cp4BRz/N8cskED0iaqciVt7wTvkra5roKlJEQGt5HwhdJ24vmAUUkDEV+VyCT9NBxbp/bXXnXTNBFQmz4IhI6wrs+C+zvICEVvIuEKUlbrZ4G97WRkBq+k4RJSVusd4ntlfSheVudrQh8q4SbmntH6K2kzSF3if1Xsfzq7LKAJR5/BwCdAQBJn4egPgAAAABJRU5ErkJggg==") no-repeat;
  background-size: 24px 24px; }

.mediabox-image-wrap .mediabox-close {
  bottom: 66%;
  right: -60px; }

.mediabox-close:hover {
  opacity: 0.5; }

@media all and (max-width: 1030px) {
  .mediabox-image-wrap .mediabox-close {
    bottom: 66%;
    right: 0; } }

@media all and (max-width: 768px) {
  .mediabox-content {
    max-width: 90%; } }

@media all and (max-width: 600px) {
  .mediabox-content iframe {
    height: 320px !important; }
  .mediabox-close {
    bottom: 362px; }
  .mediabox-image-wrap .mediabox-close {
    top: -40%;
    bottom: 0; } }

@media all and (max-width: 480px) {
  .mediabox-content iframe {
    height: 220px !important; }
  .mediabox-close {
    bottom: 262px; }
  .mediabox-image-wrap .mediabox-close {
    top: -35%;
    bottom: 0; } }

/*** Fonts ***/
/* new 2023 regular font to replace Lato
  font-family: 'Libre Franklin', sans-serif;
 */
/* new 2023 header font to replace Weizmann 
  font-family: "Weizmann";
 */
@font-face {
  font-family: "Weizmann";
  src: url("/static/fonts/wei-web/Weizmann-Regular.woff2") format("woff2"), url("/static/fonts/wei-web/Weizmann-Regular.woff") format("woff"), url("/static/fonts/wei-web/Weizmann-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

/*** Colors ****/
.bg-stats-orange {
  background: #F79521;
  background: -webkit-gradient(linear, left bottom, left top, from(#9F5600), to(#F79521));
  background: -webkit-linear-gradient(bottom, #9F5600 0%, #F79521 100%);
  background: -o-linear-gradient(bottom, #9F5600 0%, #F79521 100%);
  background: linear-gradient(0deg, #9F5600 0%, #F79521 100%); }

.bg-stats-blue {
  background: #3A81C3;
  background: -webkit-gradient(linear, left bottom, left top, from(#003A68), to(#015699));
  background: -webkit-linear-gradient(bottom, #003A68 0%, #015699 100%);
  background: -o-linear-gradient(bottom, #003A68 0%, #015699 100%);
  background: linear-gradient(0deg, #003A68 0%, #015699 100%); }

.bg-stats-green {
  background: #3AAC49;
  background: -webkit-gradient(linear, left bottom, left top, from(#0D6419), to(#3AAC49));
  background: -webkit-linear-gradient(bottom, #0D6419 0%, #3AAC49 100%);
  background: -o-linear-gradient(bottom, #0D6419 0%, #3AAC49 100%);
  background: linear-gradient(0deg, #0D6419 0%, #3AAC49 100%); }

.bg-stats-purple {
  background: #843B94;
  background: -webkit-gradient(linear, left bottom, left top, from(#43174C), to(#843B94));
  background: -webkit-linear-gradient(bottom, #43174C 0%, #843B94 100%);
  background: -o-linear-gradient(bottom, #43174C 0%, #843B94 100%);
  background: linear-gradient(0deg, #43174C 0%, #843B94 100%); }

.bg-articles-blue {
  background: #015699;
  background: -webkit-gradient(linear, left bottom, left top, from(#003A68), to(#015699));
  background: -webkit-linear-gradient(bottom, #003A68 0%, #015699 100%);
  background: -o-linear-gradient(bottom, #003A68 0%, #015699 100%);
  background: linear-gradient(0deg, #003A68 0%, #015699 100%); }

.bg-greenish {
  background: #3D4D47; }

.text-white {
  color: #ffffff; }
  .text-white *:not(a) {
    color: #ffffff; }

.text-blue {
  color: #0073cb; }
  .text-blue *:not(a) {
    color: #000000; }

.text-lightblue {
  color: #17aefa !important; }

.text-greenish {
  color: #12496D; }
  .text-greenish *:not(a) {
    color: #12496D; }

.text-redish {
  color: #B15200; }
  .text-redish *:not(a) {
    color: #B15200; }

.text-baige {
  color: #F0EDDB !important; }

.text-black {
  color: #000000 !important; }

a {
  color: #434343;
  text-decoration: underline;
  font-weight: 600; }
  a:hover {
    color: #121212;
    text-decoration: underline; }
  a:focus {
    color: #121212;
    text-decoration: underline; }

.background-blue {
  background-color: #0073cb; }

.background-white {
  background-color: #ffffff; }

.background-black {
  background-color: #000000; }

.background-darkgrey {
  background-color: #272727; }

.background-grey {
  background-color: #f9f9f9; }

.background-baige {
  background-color: #F0EDDB; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

/*** Typography ***/
.img-v-align-center .img-fit, .img-v-align- .img-fit {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: 'object-fit: cover; object-position: center;'; }

.img-v-align-top .img-fit {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  font-family: 'object-fit: cover; object-position: top;'; }

.img-v-align-bottom .img-fit {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  font-family: 'object-fit: cover; object-position: bottom;'; }

.svg-responsive {
  width: 100%;
  height: auto;
  display: block; }
  .svg-responsive svg {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%; }

.svg-container {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: hidden; }
  .svg-container.svg-aspect-16-9 {
    padding-bottom: 56.25%; }
  .svg-container.svg-aspect-4-3 {
    padding-bottom: 75%; }
  .svg-container.svg-aspect-3-2 {
    padding-bottom: 66.66%; }
  .svg-container.svg-aspect-2-1 {
    padding-bottom: 50%; }
  .svg-container svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.svg-viewbox svg {
  width: 100%;
  height: auto;
  display: block; }
  .svg-viewbox svg[viewBox] {
    preserveAspectRatio: xMidYMid meet; }

.svg-text svg text {
  text-rendering: geometricPrecision; }

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  width: 100%; }
  @media screen and (max-width: 768px) {
    .split-heading {
      grid-template-columns: 1fr;
      grid-gap: 20px; } }
  .split-heading__left, .split-heading__right {
    -ms-flex-item-align: center;
        align-self: center; }
  .split-heading svg {
    width: 100%;
    height: auto; }

.responsive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 60px;
  width: 100%; }
  .responsive-grid__col-6 {
    grid-column: span 6; }
  .responsive-grid__col-4 {
    grid-column: span 4; }
  .responsive-grid__col-8 {
    grid-column: span 8; }
  .responsive-grid__col-12 {
    grid-column: span 12; }
  .responsive-grid__col-3 {
    grid-column: span 3; }
  @media screen and (max-width: 991px) and (min-width: 770px) {
    .responsive-grid {
      grid-gap: 40px; } }
  @media screen and (max-width: 769px) {
    .responsive-grid {
      grid-template-columns: 1fr;
      grid-gap: 0; }
      .responsive-grid__col-6, .responsive-grid__col-4, .responsive-grid__col-8, .responsive-grid__col-3 {
        grid-column: span 12;
        margin-bottom: 30px; } }

.alternating-layout {
  margin-bottom: 0;
  padding-bottom: 60px; }
  .alternating-layout .layout-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 60px; }
    .alternating-layout .layout-row:first-child {
      margin-top: 0;
      padding-top: 60px; }
    .alternating-layout .layout-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }
    .alternating-layout .layout-row:nth-child(even) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
      .alternating-layout .layout-row:nth-child(even) .image-column {
        padding-left: 60px;
        padding-right: 0; }
        @media screen and (max-width: 769px) {
          .alternating-layout .layout-row:nth-child(even) .image-column {
            padding-left: 0; } }
      .alternating-layout .layout-row:nth-child(even) .text-column {
        padding-right: 0;
        padding-left: 0; }
    .alternating-layout .layout-row .image-column {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 50%;
              flex: 1 1 50%;
      padding-right: 0; }
      .alternating-layout .layout-row .image-column img, .alternating-layout .layout-row .image-column svg {
        width: 100%;
        display: block; }
    .alternating-layout .layout-row .text-column {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 50%;
              flex: 1 1 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-left: 60px; }
      .alternating-layout .layout-row .text-column .inner-text {
        padding: 60px; }
        @media screen and (max-width: 769px) {
          .alternating-layout .layout-row .text-column .inner-text {
            padding: 30px; } }
      .alternating-layout .layout-row .text-column h2, .alternating-layout .layout-row .text-column h3 {
        margin-top: 0;
        margin-bottom: 10px; }
      .alternating-layout .layout-row .text-column h3 {
        font-family: "Libre Franklin", sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; }
        @media screen and (max-width: 769px) {
          .alternating-layout .layout-row .text-column h3 {
            font-size: 20px;
            line-height: 1.3; } }
      .alternating-layout .layout-row .text-column p {
        font-family: "Libre Franklin", sans-serif;
        margin-bottom: 15px;
        line-height: 1.2;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; }
      .alternating-layout .layout-row .text-column *:last-child {
        margin-bottom: 0; }
    @media screen and (max-width: 991px) and (min-width: 770px) {
      .alternating-layout .layout-row .image-column {
        padding-right: 0; }
      .alternating-layout .layout-row .text-column {
        padding-left: 40px; }
      .alternating-layout .layout-row:nth-child(even) .image-column {
        padding-left: 40px;
        padding-right: 0; }
      .alternating-layout .layout-row:nth-child(even) .text-column {
        padding-right: 0;
        padding-left: 0; } }
    @media screen and (max-width: 769px) {
      .alternating-layout .layout-row {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
            -ms-flex-direction: column !important;
                flex-direction: column !important;
        margin-bottom: 0;
        padding-bottom: 30px; }
        .alternating-layout .layout-row .image-column,
        .alternating-layout .layout-row .text-column {
          -webkit-box-flex: 1;
              -ms-flex: 1 1 100%;
                  flex: 1 1 100%;
          padding: 0;
          width: 100%; }
        .alternating-layout .layout-row .image-column {
          margin-bottom: 0;
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1; }
          .alternating-layout .layout-row .image-column img {
            max-height: 400px; } }
      @media screen and (max-width: 769px) and (max-width: 500px) {
        .alternating-layout .layout-row .image-column img {
          max-height: 280px; } }
    @media screen and (max-width: 769px) {
        .alternating-layout .layout-row .text-column {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; } }

.responsive-grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%; }
  .responsive-grid-item__image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
    .responsive-grid-item__image img, .responsive-grid-item__image svg {
      width: 100%;
      height: auto;
      display: block; }
  .responsive-grid-item__text {
    padding: 20px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    .responsive-grid-item__text h2, .responsive-grid-item__text h3 {
      margin-top: 0;
      margin-bottom: 15px; }
    .responsive-grid-item__text p {
      margin-bottom: 15px;
      line-height: 1.5; }
  @media screen and (max-width: 769px) {
    .responsive-grid-item {
      margin-bottom: 20px; }
      .responsive-grid-item__image {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
      .responsive-grid-item__text {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        padding: 15px 10px; } }

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -30px; }
  .flex-grid__col {
    padding: 0 30px;
    margin-bottom: 40px; }
    .flex-grid__col--6 {
      width: 50%; }
    .flex-grid__col--4 {
      width: 33.333%; }
    .flex-grid__col--8 {
      width: 66.666%; }
    .flex-grid__col--12 {
      width: 100%; }
    .flex-grid__col--3 {
      width: 25%; }
  @media screen and (max-width: 991px) and (min-width: 770px) {
    .flex-grid {
      margin: 0 -20px; }
      .flex-grid__col {
        padding: 0 20px; } }
  @media screen and (max-width: 769px) {
    .flex-grid {
      margin: 0; }
      .flex-grid__col {
        width: 100%;
        padding: 0;
        margin-bottom: 30px; }
        .flex-grid__col .flex-item {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; }
          .flex-grid__col .flex-item__image {
            -webkit-box-ordinal-group: 2;
                -ms-flex-order: 1;
                    order: 1; }
          .flex-grid__col .flex-item__text {
            -webkit-box-ordinal-group: 3;
                -ms-flex-order: 2;
                    order: 2; } }

.flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%; }
  .flex-item__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .flex-item__image img, .flex-item__image svg {
      max-width: 100%;
      height: auto;
      display: block; }
  .flex-item__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 20px; }
    .flex-item__text h2, .flex-item__text h3 {
      margin-top: 0;
      margin-bottom: 15px; }
    .flex-item__text p {
      margin-bottom: 15px; }

.gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px; }
  .gap--xs {
    gap: 10px; }
  .gap--sm {
    gap: 20px; }
  .gap--md {
    gap: 30px; }
  .gap--lg {
    gap: 40px; }
  .gap--vertical, .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

.banner {
  background: #f5f5f5;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0; }

.grid-2, .grid-3 {
  display: grid;
  gap: 30px; }

.grid-2 {
  grid-template-columns: repeat(2, 1fr); }

.grid-3 {
  grid-template-columns: repeat(3, 1fr); }

.image-placeholder {
  background: #ddd;
  height: 200px;
  width: 100%; }

.light-grey {
  background: #f5f5f5; }

.guideline {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
  background: #000;
  -webkit-transform: translateZ(0);
          transform: translateZ(0); }

.horizontal-line {
  height: 1px;
  width: 100vw; }

.vertical-line {
  width: 1px; }

.section.how-you-can-help {
  background-color: #1a1a1a;
  padding: 60px 0; }
  @media (max-width: 769px) {
    .section.how-you-can-help {
      padding: 30px 0 0 0 !important; } }
  .section.how-you-can-help .section-header {
    padding: 60px 0; }
    @media (max-width: 769px) {
      .section.how-you-can-help .section-header {
        padding: 30px 15px 30px 15px; } }
  .section.how-you-can-help .section-title {
    margin-bottom: 10px; }
  .section.how-you-can-help .section-subtitle {
    padding: 0;
    margin: 0; }
  .section.how-you-can-help .help-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    padding-bottom: 0; }
    @media (max-width: 769px) {
      .section.how-you-can-help .help-grid {
        padding-bottom: 5px; } }
    .section.how-you-can-help .help-grid .help-card {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 60px; }
      @media (max-width: 769px) {
        .section.how-you-can-help .help-grid .help-card {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 100%;
                  flex: 0 0 100%;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          margin-bottom: 30px; } }
      .section.how-you-can-help .help-grid .help-card .card-image {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 35%;
                flex: 0 0 35%;
        margin-right: 0; }
        .section.how-you-can-help .help-grid .help-card .card-image img {
          display: block; }
          @media screen and (min-width: 770px) {
            .section.how-you-can-help .help-grid .help-card .card-image img {
              width: 100%;
              height: 225px;
              max-height: 240px;
              -o-object-fit: cover;
                 object-fit: cover; } }
          @media (max-width: 769px) {
            .section.how-you-can-help .help-grid .help-card .card-image img {
              width: 100%;
              max-height: 240px;
              -o-object-fit: cover;
                 object-fit: cover; } }
        @media (max-width: 769px) {
          .section.how-you-can-help .help-grid .help-card .card-image {
            margin-right: 0;
            margin-bottom: 0; } }
      .section.how-you-can-help .help-grid .help-card .card-content {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding: 30px 30px 0 30px; }
        .section.how-you-can-help .help-grid .help-card .card-content h3 {
          margin-bottom: 10px;
          color: #fff; }
        .section.how-you-can-help .help-grid .help-card .card-content p {
          color: #f5f5f5; }
  .section.how-you-can-help .help-alternating-layout {
    margin-bottom: 0;
    padding-bottom: 60px; }
    .section.how-you-can-help .help-alternating-layout .layout-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding-bottom: 0;
      position: relative; }
      .section.how-you-can-help .help-alternating-layout .layout-row.layout-div-heading {
        padding: 30px !important; }
        @media screen and (max-width: 769px) {
          .section.how-you-can-help .help-alternating-layout .layout-row.layout-div-heading {
            padding: 30px !important; } }
        .section.how-you-can-help .help-alternating-layout .layout-row.layout-div-heading .layout-header {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 100%;
                  flex: 0 0 100%;
          max-width: 100%; }
          .section.how-you-can-help .help-alternating-layout .layout-row.layout-div-heading .layout-header h3 {
            font-size: 38px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            text-transform: uppercase; }
            @media screen and (max-width: 769px) {
              .section.how-you-can-help .help-alternating-layout .layout-row.layout-div-heading .layout-header h3 {
                font-size: 20px; } }
      .section.how-you-can-help .help-alternating-layout .layout-row:first-child {
        margin-top: 0;
        padding-top: 0; }
      .section.how-you-can-help .help-alternating-layout .layout-row:last-child {
        margin-bottom: 0;
        padding-bottom: 0; }
      .section.how-you-can-help .help-alternating-layout .layout-row.reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; }
        .section.how-you-can-help .help-alternating-layout .layout-row.reverse .image-column {
          padding-left: 0;
          padding-right: 0; }
          @media screen and (max-width: 769px) {
            .section.how-you-can-help .help-alternating-layout .layout-row.reverse .image-column {
              padding-left: 0; } }
        .section.how-you-can-help .help-alternating-layout .layout-row.reverse .text-column {
          padding-right: 0;
          padding-left: 0; }
      .section.how-you-can-help .help-alternating-layout .layout-row .image-column {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 50%;
                flex: 1 1 50%;
        padding-right: 0; }
        .section.how-you-can-help .help-alternating-layout .layout-row .image-column img {
          width: 100%;
          display: block;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; }
          @media screen and (min-width: 1200px) {
            .section.how-you-can-help .help-alternating-layout .layout-row .image-column img {
              max-height: 340px; } }
          @media screen and (max-width: 769px) {
            .section.how-you-can-help .help-alternating-layout .layout-row .image-column img {
              max-height: 240px; } }
      .section.how-you-can-help .help-alternating-layout .layout-row .text-column {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 50%;
                flex: 1 1 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding-left: 60px; }
        .section.how-you-can-help .help-alternating-layout .layout-row .text-column .inner-text {
          padding: 60px; }
          @media screen and (max-width: 769px) {
            .section.how-you-can-help .help-alternating-layout .layout-row .text-column .inner-text {
              padding: 30px; } }
          .section.how-you-can-help .help-alternating-layout .layout-row .text-column .inner-text h3 {
            margin-top: 0;
            margin-bottom: 10px;
            color: #fff;
            font-family: "Libre Franklin", sans-serif;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal; }
            @media screen and (max-width: 769px) {
              .section.how-you-can-help .help-alternating-layout .layout-row .text-column .inner-text h3 {
                font-size: 20px;
                line-height: 1.3; } }
          .section.how-you-can-help .help-alternating-layout .layout-row .text-column .inner-text p {
            color: #f5f5f5;
            font-family: "Libre Franklin", sans-serif;
            margin-bottom: 15px;
            line-height: 1.2;
            font-size: 16px;
            font-style: normal;
            font-weight: 400; }
            .section.how-you-can-help .help-alternating-layout .layout-row .text-column .inner-text p:last-child {
              margin-bottom: 0; }
      @media screen and (max-width: 991px) and (min-width: 770px) {
        .section.how-you-can-help .help-alternating-layout .layout-row .image-column {
          padding-right: 0; }
        .section.how-you-can-help .help-alternating-layout .layout-row .text-column {
          padding-left: 40px; }
        .section.how-you-can-help .help-alternating-layout .layout-row.reverse .image-column {
          padding-left: 40px;
          padding-right: 0; }
        .section.how-you-can-help .help-alternating-layout .layout-row.reverse .text-column {
          padding-right: 0;
          padding-left: 0; } }
      @media screen and (max-width: 769px) {
        .section.how-you-can-help .help-alternating-layout .layout-row {
          -webkit-box-orient: vertical !important;
          -webkit-box-direction: normal !important;
              -ms-flex-direction: column !important;
                  flex-direction: column !important;
          margin-bottom: 0;
          padding-bottom: 30px; }
          .section.how-you-can-help .help-alternating-layout .layout-row .image-column,
          .section.how-you-can-help .help-alternating-layout .layout-row .text-column {
            -webkit-box-flex: 1;
                -ms-flex: 1 1 100%;
                    flex: 1 1 100%;
            padding: 0;
            width: 100%; }
          .section.how-you-can-help .help-alternating-layout .layout-row .image-column {
            margin-bottom: 0;
            -webkit-box-ordinal-group: 2;
                -ms-flex-order: 1;
                    order: 1; }
            .section.how-you-can-help .help-alternating-layout .layout-row .image-column img {
              height: 240px; } }
      @media screen and (max-width: 769px) and (max-width: 500px) {
        .section.how-you-can-help .help-alternating-layout .layout-row .image-column img {
          height: 200px; } }
      @media screen and (max-width: 769px) {
          .section.how-you-can-help .help-alternating-layout .layout-row .text-column {
            -webkit-box-ordinal-group: 3;
                -ms-flex-order: 2;
                    order: 2; } }

.research-lights-way .section-bg {
  background-color: #F0EDDB;
  color: #333; }

.research-lights-way h2 {
  text-align: left; }

.research-lights-way .research-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 60px 0; }
  .research-lights-way .research-grid .research-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 769px) {
      .research-lights-way .research-grid .research-item {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .research-lights-way .research-grid .research-item:nth-child(even) {
      border-right: none; }
    .research-lights-way .research-grid .research-item h3 {
      margin-bottom: 10px;
      color: #333; }
    .research-lights-way .research-grid .research-item p {
      color: #333; }

.partner-with-us .section-bg {
  background-color: #334b41;
  color: #fff;
  padding: 0;
  overflow: hidden; }

.partner-with-us .partner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 294px; }
  @media (max-width: 769px) {
    .partner-with-us .partner-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.container .partner-with-us .partner-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px; }
  @media (max-width: 769px) {
    .container .partner-with-us .partner-text {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 60px 30px; } }
  .partner-with-us .partner-text .section-title {
    margin-bottom: 10px;
    padding: 0;
    text-align: left; }
  .container .partner-with-us .partner-text p {
    margin-bottom: 30px; }

.partner-with-us .partner-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  overflow: hidden; }
  @media (max-width: 769px) {
    .partner-with-us .partner-image {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; } }
  .partner-with-us .partner-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block; }

.section.empowering-tomorrow-support .section-bg {
  background-color: #403831;
  color: #F0EDDB;
  padding: 60px 0; }
  @media (max-width: 769px) {
    .section.empowering-tomorrow-support .section-bg {
      padding: 30px 0; } }

.section.empowering-tomorrow-support .section-header {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px; }
  @media (max-width: 769px) {
    .section.empowering-tomorrow-support .section-header {
      padding-left: 0;
      padding-right: 30px;
      text-align: left; } }

.section.empowering-tomorrow-support .section-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px; }
  @media (max-width: 769px) {
    .section.empowering-tomorrow-support .section-title {
      text-align: left; } }

.container .section.empowering-tomorrow-support p {
  margin-bottom: 30px; }

.section.newsletter-signup-section .section-bg {
  background-color: #37483e;
  padding: 60px 0; }
  @media (max-width: 769px) {
    .section.newsletter-signup-section .section-bg {
      padding: 30px 0; } }

.section.newsletter-signup-section .content-container .inner-content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 769px) {
    .section.newsletter-signup-section .content-container .inner-content {
      padding: 0 30px; } }

.section.newsletter-signup-section h3 {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 30px; }
  @media (max-width: 769px) {
    .section.newsletter-signup-section h3 {
      font-size: 20px;
      line-height: 26px; } }

.section.newsletter-signup-section .newsletter-form {
  width: 100%;
  max-width: 640px;
  font-family: "Libre Franklin", sans-serif; }
  .section.newsletter-signup-section .newsletter-form input[type="email"] {
    padding: 20px;
    font-size: 16px;
    line-height: 1.1;
    border: none;
    background-color: #fff;
    color: black;
    width: 98%;
    max-width: 100%; }
    @media (max-width: 769px) {
      .section.newsletter-signup-section .newsletter-form input[type="email"] {
        padding: 15px; } }
    .section.newsletter-signup-section .newsletter-form input[type="email"]::-webkit-input-placeholder {
      color: rgba(51, 51, 51, 0.6); }
    .section.newsletter-signup-section .newsletter-form input[type="email"]:-ms-input-placeholder {
      color: rgba(51, 51, 51, 0.6); }
    .section.newsletter-signup-section .newsletter-form input[type="email"]::-ms-input-placeholder {
      color: rgba(51, 51, 51, 0.6); }
    .section.newsletter-signup-section .newsletter-form input[type="email"]::placeholder {
      color: rgba(51, 51, 51, 0.6); }
  .section.newsletter-signup-section .newsletter-form .button-holder {
    margin-top: 30px; }
    .section.newsletter-signup-section .newsletter-form .button-holder .btn {
      text-transform: uppercase;
      max-width: 150px;
      min-width: 120px; }

@media (max-width: 991px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 769px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr; }
  .container {
    padding: 30px 20px; } }

.text-duplicator-container {
  width: 100%;
  position: relative;
  overflow: visible; }
  .text-duplicator-container--left-50 .text-duplicator-wrapper {
    padding-left: 50px; }
  .text-duplicator-container--left-100 .text-duplicator-wrapper {
    padding-left: 100px; }

.duplicate-text {
  white-space: nowrap;
  overflow: visible;
  display: block;
  width: 100%;
  position: relative; }
  .duplicate-text .text-duplicator-wrapper {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    left: 0;
    width: 100vw;
    margin-left: 0; }
  .duplicate-text .duplicate-item {
    display: inline-block;
    margin: 0 4px; }
    .duplicate-text .duplicate-item:nth-child(odd) {
      opacity: 1; }
  .duplicate-text.offset-left-50 {
    margin-left: 50px; }
  .duplicate-text.offset-left-100 {
    margin-left: 100px; }
  .duplicate-text.offset-left-150 {
    margin-left: 150px; }
  .duplicate-text.offset-left-minus-50 {
    margin-left: -50px; }

/*** Content Pages CSS ***/
.mtop-80 {
  margin-top: 80px; }

.mtop-50 {
  margin-top: 50px; }

.mtop-40 {
  margin-top: 40px; }

.mtop-10 {
  margin-top: 10px; }

.mtop-0 {
  margin-top: 0; }

.mbottom-80 {
  margin-bottom: 80px; }

.mbottom-50 {
  margin-bottom: 50px !important; }

.mbottom-40 {
  margin-bottom: 40px !important; }

.mbottom-34 {
  margin-bottom: 34px !important; }

.mbottom-28 {
  margin-bottom: 28px !important; }

.mbottom-24 {
  margin-bottom: 24px !important; }

.mbottom-20 {
  margin-bottom: 20px !important; }

.mbottom-10 {
  margin-bottom: 10px; }

.mbottom-18 {
  margin-bottom: 18px; }

.mbottom-12 {
  margin-bottom: 12px; }

.mbottom-0 {
  margin-bottom: 0; }

.ptop-80 {
  padding-top: 80px; }

.ptop-60 {
  padding-top: 60px; }

.ptop-40 {
  padding-top: 40px; }

.ptop-30 {
  padding-top: 30px; }

.pbottom-80 {
  padding-bottom: 80px; }

.pbottom-60 {
  padding-bottom: 60px; }

.pbottom-40 {
  padding-bottom: 40px; }

.pbottom-30 {
  padding-bottom: 30px; }

.pbottom-20 {
  padding-bottom: 20px; }

.pbottom-0 {
  padding-bottom: 0; }

.pleft-10 {
  padding-left: 10px; }

.pright-10 {
  padding-right: 10px; }

.pRandL-10 {
  padding-left: 10px;
  padding-right: 10px; }

@media screen and (max-width: 1130px) {
  .pRandL-10-m {
    padding-left: 10px;
    padding-right: 10px; } }

@media screen and (max-width: 1130px) {
  .pRandL-20-m {
    padding-left: 20px;
    padding-right: 20px; } }

.cpTop {
  padding-top: 70px; }
  @media screen and (max-width: 768px) {
    .cpTop {
      padding-top: 40px; } }

.cpBottom {
  padding-bottom: 50px; }
  @media screen and (max-width: 768px) {
    .cpBottom {
      padding-bottom: 30px; } }

.stickynav-on .desktopNav, .stickynav-on .mobileNav {
  z-index: 99991 !important; }

.spacer-box {
  width: 100%;
  max-width: 100%;
  height: 60px; }

.spacer-line {
  width: 100%;
  max-width: 100%;
  height: auto; }

.guideline {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
  background: #000000;
  -webkit-transform: translateZ(0);
          transform: translateZ(0); }

.horizontal-line {
  position: absolute !important;
  height: 1px;
  width: 100vw; }

.vertical-line {
  position: absolute !important;
  top: 0;
  width: 1px; }

.skrollr body {
  height: 100% !important; }

.empower-tomorrow-page .footerBottom {
  margin-bottom: 30px;
  padding-bottom: 30px; }

.empower-tomorrow-page .mobileNav, .weizmann-israel-page .mobileNav {
  display: block; }

.empower-tomorrow-page .desktopNav, .weizmann-israel-page .desktopNav {
  display: none; }

.empower-tomorrow-page.body_loaded .slideNav {
  z-index: 9999; }

.empower-tomorrow-page .slideNav input {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

.empower-tomorrow-page.stickynav-on .slideNavOverlay {
  z-index: 10; }

.width970 {
  max-width: 970px;
  width: 100%;
  margin-right: auto;
  margin-left: auto; }

.d-none {
  display: none !important; }

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .d-flex.no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .d-flex.justify-col {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .d-flex .col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .d-flex .col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 560px;
    padding-left: 15px;
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      .d-flex .col-6 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px; }
        .d-flex .col-6:nth-last-child(1) {
          margin-bottom: 0; } }
    .d-flex .col-6 .col-content {
      background: white;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .d-flex .col-6 .text-field {
      padding: 40px; }
      @media screen and (max-width: 767px) {
        .d-flex .col-6 .text-field {
          padding: 20px; } }
  .d-flex .col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33332%;
            flex: 0 0 33.33332%;
    max-width: 33.33332%;
    padding-left: 15px;
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .d-flex .col-4 .col-content {
      background: white;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .d-flex .col-4 .text-field {
      padding: 40px; }
  .d-flex .col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .d-flex .col-3 .col-content {
      background: white;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .d-flex .col-3 .text-field {
      padding: 20px; }
  .d-flex .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%; }
  .d-flex .col-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%; }

.content-container {
  padding-left: 15px;
  padding-right: 15px; }
  .content-container:not(.full-width-cc) {
    max-width: 1320px;
    width: 95%;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 767px) {
      .content-container:not(.full-width-cc) {
        width: 91%; } }
  .content-container.full-width-cc {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%; }
    .content-container.full-width-cc > .inner-container {
      width: 95%;
      margin-left: auto;
      margin-right: auto; }
      @media screen and (max-width: 767px) {
        .content-container.full-width-cc > .inner-container {
          width: 91%; } }

.main-header {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 300px;
  height: 70px;
  background: transparent;
  display: none;
  z-index: -999; }
  @media screen and (max-width: 768px) {
    .main-header {
      width: 200px; }
      .main-header img {
        max-width: 100%;
        height: auto; } }
  @media screen and (max-width: 500px) {
    .main-header {
      top: 30px;
      left: 18px; } }
  .main-header .nav-bar {
    padding: 0 0 20px 0; }

.smooth-animate {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.smooth-animate.linear {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.bottom-border-orange {
  border-bottom: 30px solid #F79521; }

.bottom-border-green {
  border-bottom: 30px solid #3AAC49; }

.bottom-border-blue {
  border-bottom: 30px solid #3A81C3; }

.bottom-border-purple {
  border-bottom: 30px solid #843B94; }

.section {
  display: block;
  padding: 0 !important;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff; }
  .section.z-index-2 {
    position: relative;
    z-index: 2; }
  .section.z-index-3 {
    position: relative;
    z-index: 3; }
  .section.z-index-4 {
    position: relative;
    z-index: 4; }
  .section.z-index-5 {
    position: relative;
    z-index: 5; }
  .section.z-index-6 {
    position: relative;
    z-index: 6; }
  .section.z-index-7 {
    position: relative;
    z-index: 7; }
  .section.z-index-8 {
    position: relative;
    z-index: 8; }
  .section.overflow-hide {
    overflow: hidden; }
  .section .overflow-hide {
    overflow: hidden; }
  .section .width1030 {
    max-width: 1030px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .section .width660 {
    max-width: 660px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .section .section-row:not(.no-pad) {
    padding-left: 10px;
    padding-right: 10px; }
  .section img {
    max-width: 100%;
    height: auto; }
  .section .img-fit {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: 'object-fit: cover; object-position: center;'; }
  .section h1 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 82px;
    letter-spacing: 0;
    margin: 0;
    padding: 0; }
    @media screen and (max-width: 769px) {
      .section h1 {
        font-size: 48px;
        line-height: 52px; } }
  .section h2 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 28px;
    font-weight: normal;
    line-height: 36px;
    margin: 0;
    padding: 0; }
    @media screen and (min-width: 769px) {
      .section h2 {
        font-size: 48px;
        line-height: 50px; } }
    .section h2 a {
      text-decoration: none; }
    .section h2.size-h2 {
      font-family: "Libre Franklin", sans-serif;
      font-size: 28px;
      font-weight: normal;
      line-height: 36px; }
      @media screen and (min-width: 769px) {
        .section h2.size-h2 {
          font-size: 48px;
          line-height: 50px; } }
    .section h2.size-h3 {
      font-family: "Libre Franklin", sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 24px; }
  .section h3 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-style: normal;
    margin: 0;
    padding: 0; }
    .section h3 a {
      text-decoration: none; }
    .section h3.size-h2 {
      font-family: "Libre Franklin", sans-serif;
      font-size: 28px;
      font-weight: normal;
      line-height: 36px; }
      @media screen and (min-width: 769px) {
        .section h3.size-h2 {
          font-size: 48px;
          line-height: 50px; } }
    .section h3.size-h3 {
      font-family: "Libre Franklin", sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 24px; }
  .section h4 {
    font-family: "Weizmann", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
    padding: 0; }
    .section h4 a {
      text-decoration: none; }
  .container .section p {
    font-family: "Libre Franklin", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0;
    margin: 0;
    padding: 0; }
    @media screen and (min-width: 769px) {
      .container .section p {
        font-size: 16px;
        line-height: 22px; } }
  .section .col-title {
    font-family: "Weizmann", serif;
    font-size: 22px;
    font-weight: normal;
    line-height: 26px; }
    @media screen and (min-width: 769px) {
      .section .col-title {
        font-size: 34px;
        line-height: 40px; } }
  .section .pLarge {
    font-family: "Libre Franklin", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0; }
    @media screen and (min-width: 769px) {
      .section .pLarge {
        font-size: 22px;
        line-height: 44px; } }
  .section .eyebrow {
    position: relative;
    font-family: "Libre Franklin", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #212121;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    block-size: -webkit-fit-content;
    block-size: -moz-fit-content;
    block-size: fit-content;
    border-width: 2px;
    text-transform: uppercase; }
    @media screen and (min-width: 769px) {
      .section .eyebrow {
        font-size: 22px;
        line-height: 34px; } }
  .section .bold {
    font-weight: 700 !important; }
  .section .semi-bold {
    font-weight: 600 !important; }
  .section .fontMerri, .section .fontWei {
    font-family: "Weizmann",serif; }
  .section .fontLato, .section .fontLibre {
    font-family: 'Libre Franklin', sans-serif; }
  .container .section .button-holder .btn {
    font-family: "Libre Franklin", sans-serif;
    background-color: #161616;
    color: #ffffff;
    font-weight: 600;
    padding: 17px 30px 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    -webkit-transition: background-color 0.25s ease, border-color 0.25s ease;
    -o-transition: background-color 0.25s ease, border-color 0.25s ease;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: center;
    border: 1px solid #161616;
    min-width: 220px;
    border-radius: 0; }
    @media screen and (max-width: 769px) {
      .container .section .button-holder .btn {
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0.82px;
        padding: 11px 30px 9px 30px; } }
    @media screen and (max-width: 680px) {
      .container .section .button-holder .btn {
        min-width: 170px; } }
    .container .section .button-holder .btn:hover {
      color: #161616;
      border: 1px solid #161616;
      background-color: #ffffff; }
    .container .section .button-holder .btn:focus {
      color: #161616;
      border: 1px solid #161616;
      background-color: #ffffff; }
    .container .section .button-holder .btn.btn-white {
      background-color: #F9F5EA;
      color: #161616;
      border: 1px solid #F9F5EA; }
      .container .section .button-holder .btn.btn-white:hover {
        color: #F9F5EA;
        border: 1px solid #161616;
        background-color: #161616; }
      .container .section .button-holder .btn.btn-white:focus {
        background-color: #F9F5EA;
        color: #161616;
        border: 1px solid #F9F5EA; }
  .section .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden; }
    .section .embed-responsive:before {
      content: "";
      display: block; }
    .section .embed-responsive-1by1:before {
      padding-top: 100%; }
    .section .embed-responsive-16by9:before {
      padding-top: 56.25%; }
    .section .embed-responsive .embed-responsive-item {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }

@media screen and (min-width: 1025px) {
  .main-emptomorrow-wrapper {
    overflow-x: hidden; } }

.section.section-one {
  position: relative;
  background-color: rgba(0, 0, 0, 0.7); }
  .section.section-one .section-bg {
    position: relative;
    z-index: 1;
    background: url("/static/weizmannimages/empower-tomorrow/hero-tall.jpg") no-repeat center center;
    background-size: cover; }
  .section.section-one .content-container .content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 600px; }
    @media screen and (max-width: 1025px) {
      .section.section-one .content-container .content {
        height: 500px; } }
    @media screen and (max-width: 769px) {
      .section.section-one .content-container .content {
        height: auto;
        padding: 60px 0; } }
    .section.section-one .content-container .content .lead-img {
      padding: 60px 0;
      max-width: 804px;
      margin-left: auto;
      margin-right: auto; }
      @media screen and (max-width: 1025px) {
        .section.section-one .content-container .content .lead-img {
          padding: 30px 0; } }

.section.section-one-b .content-container .content {
  padding: 60px 0; }
  @media screen and (max-width: 769px) {
    .section.section-one-b .content-container .content {
      height: auto;
      padding: 30px 0; } }
  .section.section-one-b .content-container .content .set-mw {
    max-width: 970px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px; }
  .section.section-one-b .content-container .content h2 {
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 49px;
    text-transform: uppercase; }
    @media screen and (max-width: 769px) {
      .section.section-one-b .content-container .content h2 {
        font-size: 24px;
        line-height: 32px; } }

@media screen and (max-width: 769px) {
  .section-two .section-bg {
    padding-bottom: 30px; } }

.section-two .split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  width: 100%;
  color: #fff;
  padding: 60px 0;
  font-family: "Libre Franklin", sans-serif; }
  .section-two .split-heading h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0; }
    @media screen and (max-width: 769px) {
      .section-two .split-heading h3 {
        font-size: 24px;
        line-height: 1.3; } }
  .section-two .split-heading__left {
    justify-self: start;
    text-align: right;
    max-width: 600px; }
  .section-two .split-heading__right {
    justify-self: end;
    text-align: left;
    -ms-flex-item-align: end;
        align-self: flex-end;
    max-width: 600px; }
  @media screen and (max-width: 769px) {
    .section-two .split-heading {
      grid-template-columns: 1fr;
      grid-gap: 30px; } }

.section-two .desktop-image {
  display: block; }
  @media screen and (max-width: 767px) {
    .section-two .desktop-image {
      display: none; } }

.section-two .mobile-image {
  display: none; }
  @media screen and (max-width: 767px) {
    .section-two .mobile-image {
      display: block; } }

.section-two .svg-text span {
  display: block; }
  @media screen and (max-width: 769px) {
    .section-two .svg-text span {
      padding-bottom: 0; } }

.section-two .svg-text svg {
  max-width: 100%;
  width: 100%;
  height: auto; }

.section-two .video-holder {
  padding: 60px; }
  @media screen and (max-width: 769px) {
    .section-two .video-holder {
      padding: 30px; } }
  .section-two .video-holder .vid-link {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .section-two .video-holder .vid-link img {
      display: block;
      max-width: 100%;
      width: 100%;
      height: auto; }

.section.section-four {
  position: relative;
  background-color: rgba(0, 0, 0, 0.7); }
  .section.section-four .optics-bg {
    position: relative;
    z-index: 1;
    background: url("/static/weizmannimages/empower-tomorrow/we-invest-in-people-bg.jpg") no-repeat center center;
    background-size: cover; }
  .section.section-four .content-container {
    position: relative; }
    .section.section-four .content-container .content {
      padding: 240px 0 120px 0;
      min-height: 680px;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: end; }
      @media (max-width: 769px) {
        .section.section-four .content-container .content {
          padding: 120px 0 60px 0;
          min-height: 300px;
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: start; } }
      .section.section-four .content-container .content .lead-text {
        padding-right: 60px; }
      .section.section-four .content-container .content h3 {
        font-family: "Libre Franklin", sans-serif;
        font-size: 42px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        letter-spacing: -0.84px;
        text-transform: uppercase;
        white-space: pre-line; }
        @media (max-width: 769px) {
          .section.section-four .content-container .content h3 {
            font-size: 38px;
            white-space: initial; } }
        @media (max-width: 340px) {
          .section.section-four .content-container .content h3 {
            font-size: 34px; } }

.section.section-five .content-cols {
  padding: 60px 0; }
  .section.section-five .content-cols .text-duplicator-container {
    margin-bottom: 60px; }
    .section.section-five .content-cols .text-duplicator-container:last-child {
      margin-bottom: 0; }
    .section.section-five .content-cols .text-duplicator-container h2 {
      margin: 0;
      padding: 0;
      font-family: "Libre Franklin", sans-serif;
      font-size: 80px;
      line-height: 64px;
      font-style: normal;
      font-weight: 400;
      text-align: left;
      max-height: 60px; }

