@charset "UTF-8";
.fdpage {
  margin-bottom: 30px;
  max-width: 1100px;
}
@media (min-width: 768px) {
  .fdpage {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .fdpage__sidebar {
    flex: 0 0 263px;
    margin-right: 15px;
  }
}
.fdpage__content {
  position: relative;
}
@media (min-width: 768px) {
  .fdpage__content {
    flex: 1 1 auto;
    min-width: 0;
    /* fixes bug with slick slider and calculated widths */
    margin-left: 15px;
  }
}
.fdpage__content p, .fdpage__content * p {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
.fdpage__content a:only-child {
  color: #4EAB94;
  font-weight: bold;
  text-decoration: none;
}
.fdpage__content a:only-child:hover {
  color: #6fbdaa;
}
.fdpage__content a:only-child:active {
  color: #3e8876;
}
.fdpage__year {
  font-weight: normal;
  font-size: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDD;
  margin-bottom: 20px;
}
.fdpage__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.fdpage__excerpt {
  margin-bottom: 15px;
  line-height: 1.2;
}
.fdpage__excerpt p:last-child {
  margin-bottom: 0 !important;
}
.fdpage__meta {
  font-size: 12px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.fdtitle {
  padding-top: 44px;
  padding-bottom: 44px;
}
@media (min-width: 768px) {
  .fdtitle {
    padding-top: 106px;
    padding-bottom: 60px;
  }
}

.fdticker {
  background-color: #F7F5F6;
  padding: 80px 0 50px 0;
  margin-bottom: 60px;
  display: none;
}
@media (min-width: 768px) {
  .fdticker {
    display: block;
  }
}
.fdticker__wrap {
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
}
.fdticker__wrap .slick-arrow {
  overflow: hidden;
  background-color: #F7F5F6;
  width: 32px;
  height: 32px;
  border: 0;
  text-indent: -999px;
  position: absolute;
  left: -48px;
  top: 50%;
  margin-top: -46px;
}
.fdticker__wrap .slick-arrow:before {
  content: "";
  font-family: dashicons;
  text-decoration: inherit;
  font-weight: 400;
  font-style: normal;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #277aac;
  position: absolute;
  left: 0;
  top: 0;
  text-indent: 0;
  font-size: 24px;
}
.fdticker__wrap .slick-next {
  left: auto;
  right: -48px;
}
.fdticker__wrap .slick-next:before {
  content: "";
}
.fdticker__list-item-meta {
  font-size: 12px;
  margin-bottom: 20px;
}
.fdticker__list-item {
  background-color: white;
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  margin: 0 15px 30px 15px;
}
.fdticker__list-item h3 {
  margin-bottom: 10px;
}
.fdticker__list-item h3 a {
  color: #277aac !important;
  font-size: 23px;
  line-height: 1.5;
}
.fdticker__list-item h4 {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 20px;
}

.fddropdown {
  position: relative;
  margin: 0 0 30px 0;
  display: none;
}
@media (min-width: 768px) {
  .fddropdown {
    display: block;
  }
}
.fddropdown--always-visible {
  display: block;
}
.fddropdown__text {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
  position: relative;
  display: block;
  border: 1px solid #DEDEDE;
  padding: 8px 40px 8px 12px;
  box-shadow: inset 0 0 0 2px #FFF;
  background-color: #EEEEEE;
  text-decoration: none !important;
  cursor: pointer;
}
.fddropdown__text:hover {
  background-color: #f0f7fc;
  color: #277aac !important;
}
.fddropdown__text:after {
  content: "";
  font-family: dashicons;
  text-decoration: inherit;
  font-weight: 400;
  font-style: normal;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -16px;
  text-indent: 0;
  font-size: 16px;
}
.fddropdown__list {
  z-index: 9001;
  display: none;
  list-style: none;
  margin: 0;
  border: 1px solid #DEDEDE;
  border-top: none;
  padding: 2px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFF;
}
.fddropdown__list-item a {
  display: block;
  padding: 6px;
  text-decoration: none !important;
  cursor: pointer;
  color: #444;
}
.fddropdown__list-item a:hover {
  background-color: #f0f7fc;
  color: #277aac !important;
}
.fddropdown.js-active .fddropdown__list {
  display: block;
}

.fddivider {
  border: 0;
  padding: 0;
  display: block;
  background: transparent url("../images/divider.svg") no-repeat 50% 50%;
  height: 20px;
  width: 100%;
  max-width: 85%;
  margin: 0 auto 44px auto;
}
@media (min-width: 1100px) {
  .fddivider {
    max-width: 1100px;
    margin: 0 auto 44px auto;
  }
}

.fdnav {
  margin: 0 0 30px 0;
  position: relative;
}
.fdnav__list {
  border: 1px solid #DDD;
  border-top: 0;
  padding: 2px;
  margin: 0;
  display: none;
  background-color: #FFF;
  z-index: 9001;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .fdnav__list {
    display: block;
    border-top: 1px solid #DDD;
    box-shadow: none;
    position: static;
  }
}
.fdnav.js-active .fdnav__list {
  display: block;
}
.fdnav__item a {
  position: relative;
  display: block;
  padding: 6px 8px;
  color: #444;
  text-decoration: none;
}
.fdnav__item a:hover {
  background-color: #f0f7fc;
  color: #277aac !important;
  text-decoration: none;
}
.fdnav__item--current a {
  color: #277aac;
  background-color: #f0f7fc;
}
.fdnav__item--parent a {
  padding-left: 40px;
}
.fdnav__item--parent a:before {
  content: "";
  font-family: dashicons;
  text-decoration: none;
  font-weight: 400;
  font-style: normal;
  width: 24px;
  height: 24px;
  line-height: inherit;
  text-align: center;
  position: absolute;
  padding: 6px 0;
  left: 0;
  top: 0;
  text-indent: 0;
  font-size: inherit;
}
.fdnav__item--child a {
  padding-left: 40px;
}
.fdnav__current {
  display: block;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
  position: relative;
  display: block;
  border: 1px solid #DEDEDE;
  padding: 8px 40px 8px 12px;
  box-shadow: inset 0 0 0 2px #FFF;
  background-color: #EEEEEE;
  text-decoration: none !important;
  cursor: pointer;
}
.fdnav__current:hover {
  background-color: #f0f7fc;
  color: #277aac !important;
}
.fdnav__current:after {
  content: "";
  font-family: dashicons;
  text-decoration: inherit;
  font-weight: 400;
  font-style: normal;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -16px;
  text-indent: 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .fdnav__current {
    display: none;
  }
}

.fdgallery {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.fdgallery .slick-arrow {
  font-size: 0.1px;
  display: block;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border: 0;
  text-indent: -999px;
  position: absolute;
  left: 16px;
  top: 50%;
  margin-top: -20px;
  z-index: 9001;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.fdgallery .slick-arrow:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.fdgallery .slick-arrow:before {
  content: "";
  font-family: dashicons;
  text-decoration: inherit;
  font-weight: 400;
  font-style: normal;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  position: absolute;
  left: -1px;
  top: 0;
  text-indent: 0;
  font-size: 24px;
}
.fdgallery .slick-next {
  left: auto;
  right: 16px;
}
.fdgallery .slick-next:before {
  left: 1px;
  content: "";
}
.fdgallery__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}
.fdgallery__list-image {
  display: block;
  padding-bottom: 66.7989%;
  background-size: cover;
}
.fdgallery__dots .slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 15px 0 0 0;
}
.fdgallery__dots .slick-dots li button {
  display: block;
  background-color: #DDD;
  border: 0;
  text-indent: -999px;
  overflow: hidden;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  margin: 5px;
  padding: 0;
}
.fdgallery__dots .slick-dots li.slick-active button {
  background-color: #277aac;
}

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

/* Edit azrieli-fellows-program-text on fellows Page*/

.azrieli-fellows-program-text {
  margin-top: -80px;
}

/* Working on Fellows Team Page*/

#fellows-tem-section .avia-team-member {
  /* margin: 60px 30px; */
  font-family: 'Montserrat' !important;
  background: #f6f8f8;
}

#fellows-tem-section .team-member-name {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 800;
  padding-left: 20px;
  padding-top: 20px;
}

#fellows-tem-section .team-member-job-title {

  margin-bottom: 3px;
  margin-top: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  text-transform: none;
  opacity: 1 !important;
  padding-left: 20px;
}

#fellows-tem-section .team-member-description {
  font-style: normal;
  font-weight: 400;
  margin-top: 10px !important;
  color: #3c3c3c;
  font-size: 16px;
  padding-left: 20px;
  padding-bottom: 20px;
}

#fellows-tem-section .team-member-description .hidden-words {
  display: none;
}

#fellows-tem-section .learn-more-fellows, .learn-less-fellows {
  font-size:18px;
  color:#287cad;
  font-weight: 600 !important;
}

/* Work on Sub-menu on Fellows Pages*/
div#sub_menu1 {
  padding:20px;
  background:#287cad;
}

div#sub_menu1 .av-subnav-menu a {
  background-color: transparent !important;
  color:#FFF;
  font-size:16px;
}

div#sub_menu1 .av-subnav-menu a:hover {
  color:#3deed2;
  transition: 0.3s;
}

div#sub_menu1 .av-subnav-menu li ul.sub-menu {
  border-top-color: #287cad !important;
  background-color: #ffffff;
  color: #969696;
}

div#sub_menu1 .av-subnav-menu ul.sub-menu a {
  color: #969696;
}

div#sub_menu1 .av-subnav-menu .current_page_item a {
  color:#3deed2;
}

div#sub_menu1 .av-subnav-menu > li > a {
  border-left-color: #fff;
}

div#sub_menu1 .avia-arrow-wrap .avia-arrow {
border-color:#fff;
}

div#sub_menu1 .avia-arrow {
border-color:#fff;
}

div#sub_menu1 .av-subnav-menu ul.sub-menu a:hover {
  color:#000;
  background-color: #f8f8f8 !important;
  transition: 0.3s;
}

/* Working On The Private Content Login Page */
.um-page-login {
  font-family: "Montserrat", sans-serif !important;
}

.um-page-login .um-login, #top label {
  font-weight: 400 !important;
  color: #444 !important;
}

.um-page-login span.um-field-checkbox-option {
  display: inline-block;
  margin-left: 15px !important;
  font-size: 15px !important;
  font-family: "Montserrat", sans-serif !important;
}

.um-page-login #um-submit-btn {
  width:100% !important;
  font-family: "Montserrat", sans-serif !important;
}

/* Edit Bullets in list for stories page */
ul.custom-bullets {
	list-style-type:disc;
}

ul.custom-bullets li {
	padding-left: 10px;
}

/* Working on Next - Prev Buttons on About Us Page*/

.about-us-slider {
  overflow: visible;
}

.avia-slideshow-arrows a:before {
  background: #287cad;
}

@media (min-width:800px) {
  #top .avia-content-slider .avia-slideshow-arrows a {
    margin: -90px -90px 0;
  }
}

/* Remove all of the boxes from amp-news and make titles that appear in black larger */

.amp-news .slide-image {
  display: none;
}

.amp-news .slide-content .slide-entry-title {
  font-size: 20px;
  font-weight: bold;
}

/* Edit Fellows Team */
#team-images .flex_cell{
  vertical-align: inherit !important;
}

#fellows-tem-section .team-member-name {
  font-weight: 400;
}

/* Edit After Transferring From Staging EN To Live 1/26/2020 */

.home-holocaust-survivors h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  width:70%;
}