/*!
 * Theme Name: RNA Society
 * Theme URI: https://www.rnasociety.org/
 * Description: Custom theme built with underscores
 * Version: 1.0
 * Author: Chad Phillips
 * Author URI: https://chadphillips.dev
 * Tags: underscores, HTML5, CSS3
 * 
 */

@charset "UTF-8";
/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/* all weights */
/**
 * Colors
 */
/**
 * layout
 */
/**
 * modules/mixins
 * ---
 */
.blog .site-main .inner h3 {
  font-size: 20px;
}
.blog .site-main .inner a {
  text-decoration: none;
}
.blog article.hentry {
  background: #fff;
  border: 1px solid #c9d8c2;
  border-left: 5px solid #3C375D;
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.blog article.hentry:hover {
  border-left-color: #385E37;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  background: #C4D6BE;
}
.blog article.hentry .entry-header {
  margin: 0;
}
.blog article.hentry .entry-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  padding-left: 0 !important;
  border-left: none !important;
}
.blog article.hentry .entry-title a {
  color: #3C375D;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog article.hentry:hover .entry-title a {
  color: #385E37;
}

.diversity {
  /*.element-nav-item:hover .element-nav-button-label {
  	transform-origin:center;
  	transform:scale(1.05);
  }*/
}
.diversity .nav-icon {
  position: absolute;
  top: 26px;
  right: 36px;
  transform: scale(0);
  transition: all 0.4s ease-out;
  cursor: pointer;
  z-index: 10000;
  max-width: 150px;
}
.diversity .nav-icon.show {
  transform: scale(1);
}
.diversity .nav-icon.show:hover {
  transform: scale(1.1);
}
.diversity .title {
  font-size: 21px;
  font-weight: 700;
  color: #889099;
  padding-bottom: 12px;
}
.diversity .element-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  transition: all 0.6s linear;
}
.diversity .element-nav-item {
  flex: 1 1 auto;
  cursor: pointer;
  transition: all 0.3s ease-out;
  display: flex;
  justify-content: space-between;
  padding: 9px 15px;
  border: 1px solid #f1f1f1;
  background-color: #e5e5e5;
}
@media screen and (max-width: 767px) {
  .diversity .element-nav {
    flex-wrap: wrap;
  }
  .diversity .element-nav-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.diversity .element-nav-item.active {
  background-color: #fff;
  border-color: #ccc;
  color: #000;
  border-bottom: 1px solid #fff;
}
.diversity .element-nav-item:last-child {
  margin-right: 0;
}
.diversity .element-nav-button {
  transition: all 0.6s linear;
  max-height: 30px;
  margin-left: 15px;
}
.diversity .element-nav-button img {
  max-height: 100%;
  width: auto;
}
.diversity .element-nav-button-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}
.diversity .element-nav-item:hover .element-nav-button {
  transform-origin: 50% 50%;
  transform-origin: center;
  transform: rotate(-360deg) scale(1.1);
}
.diversity .working-group {
  padding: 0;
  width: 100%;
  transition: all 0.6s linear;
  transform: scale(0);
  transform-origin: top;
  border: none;
  height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #fff;
}
.diversity .working-group.show {
  padding: 3px 0 52px 20px;
  transform: scale(1);
  opacity: 1;
  height: auto;
  border: 1px solid #ccc;
  border-top: none;
}
.diversity .working-group-category {
  display: none;
  /* padding-left:71px;
  background-repeat:no-repeat;
  background-position:0 50%;
  height:60px;
  width:488px;	
  font-size:26px;
  font-weight:700;
  line-height:60px;
  max-width:100%; */
}
.diversity .working-group-people .working-group-category {
  background-image: url(images/diversity/icon-people.svg);
  color: #F09F21;
}
.diversity .working-group-data .working-group-category {
  background-image: url(images/diversity/icon-data.svg);
  color: #7DA33F;
}
.diversity .working-group-outreach .working-group-category {
  background-image: url(images/diversity/icon-outreach.svg);
  color: #00726B;
}
.diversity .working-group-new-initiatives .working-group-category {
  background-image: url(images/diversity/icon-new-initiatives.svg);
  color: #59307F;
}
.diversity .working-group-funding .working-group-category {
  background-image: url(images/diversity/icon-funding.svg);
  color: #8A1A33;
}
.diversity .working-group-title {
  font-size: 21px;
  font-weight: 700;
  color: #889099;
  padding-top: 36px;
  width: 488px;
  border-bottom: 1px solid #889099;
  padding-bottom: 8px;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .diversity {
    /* .working-group-title {
    	margin-top:150px;
    }
    .nav-icon {
    	top:96px;
    } */
  }
}
.diversity .working-group-people .working-group-title {
  border-color: #F09F21;
}
.diversity .working-group-data .working-group-title {
  border-color: #7DA33F;
}
.diversity .working-group-outreach .working-group-title {
  border-color: #00726B;
}
.diversity .working-group-new-initiatives .working-group-title {
  border-color: #59307F;
}
.diversity .working-group-funding .working-group-title {
  border-color: #8A1A33;
}
.diversity .working-group-new-initiatives .working-group-content {
  margin-top: 50px;
}
.diversity .people {
  display: flex;
  flex-wrap: wrap;
}
.diversity .person {
  flex: 50% 1 1;
  max-width: 50%;
  box-sizing: border-box;
  padding: 0 10px 0 0;
}
@media screen and (max-width: 600px) {
  .diversity .person {
    flex: 100% 1 1;
    max-width: 100%;
  }
}
.diversity .person {
  margin-top: 36px;
}
.diversity .person-left {
  width: 109px;
  float: left;
}
.diversity .person-left-no-image {
  height: 109px;
  background-color: #f0f0f0;
}
.diversity .person-right {
  float: right;
  width: calc(100% - 109px);
  padding: 0 23px 0 14px;
  font-size: 16px;
  color: #666;
}
@media screen and (max-width: 400px) {
  .diversity .person-left {
    width: 100%;
  }
  .diversity .person-right {
    width: 100%;
    float: left;
    padding: 10px 0 0 0;
  }
}
.diversity .person-name {
  font-weight: 700;
}
.diversity .clear:after {
  clear: both;
}
.diversity .clear:before,
.diversity .clear:after {
  content: "";
  display: table;
}

.featured-salon img {
  margin-bottom: 10px;
}
.featured-salon .clear > img {
  display: block;
}

.burger-container {
  position: absolute;
  width: 54px;
  height: 45px;
  top: 80px;
  right: 5%;
  display: none;
  z-index: 20000002;
  cursor: pointer;
}
@media (min-width: 768px) {
  .burger-container {
    top: 120px;
    right: 5%;
  }
}
@media (max-width: 1110px) {
  .burger-container {
    display: block;
  }
}

.hamburger,
.hamburger:after,
.hamburger:before {
  position: absolute;
  display: block;
  height: 4px;
  width: 50px;
  background-color: #385E37;
  border-radius: 0px;
  right: 0;
}
@media (min-width: 768px) {
  .hamburger,
.hamburger:after,
.hamburger:before {
    background-color: #385E37;
  }
}

.light .hamburger,
.light .hamburger:after,
.light .hamburger:before {
  background-color: #385E37;
}

.hamburger {
  top: 22px;
  transform-origin: center;
  transition: all 0.3s;
}

.hamburger:after,
.hamburger:before {
  content: "";
  transition: transform all 0.3s;
}

.hamburger:before {
  top: -10px;
}

.hamburger:after {
  top: 10px;
}

.toggled .hamburger:after,
.toggled .hamburger:before {
  top: 0;
  transition: all 0.3s;
}

.toggled .hamburger {
  background-color: transparent;
  transition: all 0.3s;
}

.toggled .hamburger:before {
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .toggled .hamburger:before {
    background-color: #385E37;
  }
}

.toggled .hamburger:after {
  transform: rotate(-45deg);
  width: 100%;
}
@media (max-width: 767px) {
  .toggled .hamburger:after {
    background-color: #385E37;
  }
}

.home-featured-info {
  background-color: #2F292A;
  color: #fff;
  max-width: 1556px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  border-radius: 0 0 25px 0;
}
.home-featured-info__inner {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1023px) {
  .home-featured-info__inner {
    flex-wrap: nowrap;
  }
}
.home-featured-info__conference {
  background-color: #F6EBD9;
  color: #385E37;
  position: relative;
  padding: 0 38px 12px 38px;
  margin-top: -74px;
  min-height: calc(100% + 74px);
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .home-featured-info__conference {
    flex: 1 1 319px;
    max-width: 319px;
  }
}
.home-featured-info__conference a {
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #385E37;
}
.home-featured-info__conference a:hover {
  opacity: 0.8;
}
.home-featured-info__conference__heading {
  position: relative;
  z-index: 4;
  background-image: url(images/icon-calendar.svg);
  background-repeat: no-repeat;
  background-size: 80px auto;
  padding: 0 0 0 100px;
  min-height: 86px;
  font-size: 30px;
  font-weight: 500;
  max-width: 256px;
  margin-left: -13px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}
.home-featured-info__conference__details {
  font-size: 20px;
}
.home-featured-info__conference__details strong {
  font-size: 23px;
}
.home-featured-info__conference:before {
  content: "";
  width: calc(100% + 1px);
  height: 85px;
  background-image: url(images/bg-conference.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  position: absolute;
  top: -56px;
  left: 0;
  z-index: 3;
}
.home-featured-info__conference strong {
  color: #385E37;
}
.home-featured-info__membership {
  padding: 6px 0 0 0;
  position: relative;
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .home-featured-info__membership {
    padding: 26px 0 0 0;
    flex: 1 1 calc(100% - 339px);
    max-width: calc(100% - 339px);
  }
}
@media (min-width: 1023px) {
  .home-featured-info__membership {
    padding: 56px 0 0 0;
    flex: 1 1 45%;
    max-width: 45%;
  }
}
@media (min-width: 1500px) {
  .home-featured-info__membership {
    flex: 1 1 502px;
    max-width: 502px;
  }
}
.home-featured-info__membership__join {
  display: block;
  color: #F6EBD9;
  font-size: 20px;
  font-weight: 500;
  padding: 24px 68px 25px 56px;
  background-image: url(images/btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: 46px auto;
  background-position: calc(100% - 10px) 50%;
  line-height: 1.25;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 404px;
}
@media (min-width: 768px) {
  .home-featured-info__membership__join {
    background-position: 100% 50%;
    padding: 4px 68px 5px 56px;
  }
}
@media (min-width: 1023px) {
  .home-featured-info__membership__join {
    font-size: 24px;
  }
}
.home-featured-info__membership__join:hover {
  opacity: 0.8;
}
.home-featured-info__membership__login {
  display: block;
  height: 101px;
  width: 100%;
  background-image: url(images/bg-login-link.svg);
  background-size: auto 101px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 4px 68px 5px 56px;
  position: relative;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .home-featured-info__membership__login {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 1023px) {
  .home-featured-info__membership__login {
    font-size: 24px;
  }
}
@media (min-width: 1500px) {
  .home-featured-info__membership__login {
    width: 502px;
  }
}
.home-featured-info__membership__login:hover {
  opacity: 0.8;
}
.home-featured-info__membership__login:before {
  content: "";
  width: calc(100% - 300px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #B6A1A7;
  z-index: -1;
}
.home-featured-info__membership__login:after {
  content: "";
  width: 46px;
  height: 46px;
  background-image: url(images/btn-login.svg);
  background-repeat: no-repeat;
  background-size: 46px auto;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .home-featured-info__membership__login:after {
    right: 0;
  }
}
.home-featured-info__news {
  padding: 46px 20px 0 20px;
  color: #F6EBD9;
  display: flex;
  justify-content: center;
  flex: 1 1 calc(100% - 821px);
  max-width: 821px;
}
.home-featured-info__news__heading {
  font-size: 30px;
  font-weight: 500;
}
.home-featured-info__news__list {
  padding: 0;
  list-style: none;
}
.home-featured-info__news__list li {
  font-size: 21px;
  padding-left: 20px;
  background-image: url(images/bullet.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
  background-position: 0 16px;
}
.home-featured-info__news__list li a {
  color: #F6EBD9;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px 0;
}
.home-featured-info__news__list li a:hover {
  text-decoration: underline;
}

.home-hero {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center center;
}
.home-hero__slides-container {
  height: 100%;
}
.home-hero__slide {
  display: block !important;
  background-size: cover;
  background-position: center center;
}
.home-hero__slide--simple {
  height: 100%;
  display: none !important;
}
@media (min-width: 768px) {
  .home-hero__slide--simple {
    display: inline-block !important;
  }
}
.home-hero__slide__inner {
  max-width: 1556px;
  width: 84%;
  margin: 0 auto;
}
@media (min-width: 1700px) {
  .home-hero__slide__inner {
    max-width: 1556px;
    width: 90%;
  }
}
.home-hero__slide__inner--simple {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
@media (min-width: 1023px) {
  .home-hero__slide__inner--simple {
    width: 84%;
  }
}
.home-hero__slide__inner--simple a, .home-hero__slide__inner--simple img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1249px) {
  .home-hero__slide__inner--simple a, .home-hero__slide__inner--simple img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.home-hero__slide__inner--simple--contain a, .home-hero__slide__inner--simple--contain img {
  -o-object-fit: contain;
     object-fit: contain;
}
.home-hero__slide__inner--conference {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  width: 90%;
  padding-top: 50px;
}
@media (min-width: 1023px) {
  .home-hero__slide__inner--conference {
    padding-top: 0;
  }
}
.home-hero__slide__inner--conference a {
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 530px) {
  .home-hero__slide__inner--conference a {
    display: flex;
  }
}
@media (min-width: 1023px) {
  .home-hero__slide__inner--conference a {
    align-items: center;
  }
}
.home-hero__slide__inner__conference-emblem {
  margin: 0 auto;
  max-width: 400px;
  flex: 1 1 60%;
}
@media (min-width: 530px) {
  .home-hero__slide__inner__conference-emblem {
    margin: 0;
  }
}
.home-hero__slide__inner__conference-emblem img {
  width: 100%;
  display: block;
}
@media (min-width: 1023px) {
  .home-hero__slide__inner__conference-emblem {
    max-width: 550px;
    width: 100%;
    margin-right: 20px;
  }
}
.home-hero__slide__inner__conference-info {
  margin: 20px auto;
  max-width: 200px;
  flex: 1 1 40%;
}
@media (min-width: 1023px) {
  .home-hero__slide__inner__conference-info {
    align-self: flex-start;
    margin: 100px 0 0 0;
    max-width: 250px;
    width: 100%;
    flex: 1 1 auto;
  }
}
.home-hero__slide__inner__conference-info img {
  width: 100%;
  display: block;
}
.home-hero__slide__content {
  padding: 76px 0;
}
@media (min-width: 768px) {
  .home-hero__slide__content {
    display: flex;
    justify-content: space-between;
  }
}
.home-hero__slide__content__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .home-hero__slide__content__left {
    flex: 1 1 46%;
    max-width: 46%;
    margin-bottom: 0;
  }
}
@media (min-width: 1023px) {
  .home-hero__slide__content__left {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
.home-hero__slide__content__left h3 {
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin: 0 0 24px 0;
}
.home-hero__slide__content__left h2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) {
  .home-hero__slide__content__left h2 {
    font-size: 30px;
  }
}
@media (min-width: 1023px) {
  .home-hero__slide__content__left h2 {
    font-size: 46px;
  }
}
@media (min-width: 1700px) {
  .home-hero__slide__content__left h2 {
    font-size: 59px;
  }
}
.home-hero__slide__content__right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .home-hero__slide__content__right {
    justify-content: flex-end;
    flex: 1 1 48%;
    max-width: 48%;
    margin-bottom: 0;
  }
}
.home-hero__slide__awardee__image {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #C4D6BE;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 1023px) {
  .home-hero__slide__awardee__image {
    width: 213px;
    height: 213px;
    max-width: 213px;
    max-height: 213px;
  }
}
.home-hero__slide__awardee__image--double {
  flex: 1 1 100px;
}
@media (min-width: 1023px) {
  .home-hero__slide__awardee__image--double {
    flex: 1 1 213px;
  }
}
.home-hero__slide__awardee__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero__slide__awardee__award {
  font-size: 15px;
  text-transform: uppercase;
}
.home-hero__slide__awardee__name {
  color: #385E37;
  font-size: 24px;
  font-weight: 600;
  padding: 18px 0 10px 0;
}
@media (min-width: 768px) {
  .home-hero__slide__awardee__name {
    font-size: 41px;
  }
}
.home-hero__slide__awardee__institution {
  font-size: 20px;
}
.home-hero__slide__awardee__info {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-hero__slide__awardee__info--single {
  background-color: #C4D6BE;
  padding: 67px 28px 54px 28px;
  margin-top: -67px;
  border-radius: 15px;
  text-align: center;
}
@media (min-width: 1023px) {
  .home-hero__slide__awardee__info--single {
    padding: 67px 58px 54px 58px;
  }
}
.home-hero__slide__awardee__info--double {
  flex: 1 1 calc(100% - 100px);
  max-width: calc(100% - 100px);
  padding: 20px 35px 20px 12px;
  position: relative;
}
@media (min-width: 1023px) {
  .home-hero__slide__awardee__info--double {
    flex: 1 1 calc(100% - 213px);
    max-width: calc(100% - 213px);
  }
}
@media (min-width: 1700px) {
  .home-hero__slide__awardee__info--double {
    padding: 12px 35px 12px 12px;
  }
}
.home-hero__slide__awardee__info--double:after {
  content: "";
  width: calc(100% + 90px);
  height: calc(100% - 30px);
  background-color: #C4D6BE;
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 15px;
}
.home-hero__slide__awardee--single {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-hero__slide__awardee--double {
  display: flex;
  padding: 0 0 15px 0;
}
.home-hero__slide--light-theme .home-hero__slide__content__left h3 {
  color: #000;
}
.home-hero__slide--light-theme .home-hero__slide__content__left h2 {
  color: #000;
}
.home-hero__slide--light-theme .home-hero__slide__awardee__info--double:after, .home-hero__slide--light-theme .home-hero__slide__awardee__info--single {
  background-color: #fff;
}
.home-hero .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 38px;
  height: 53px;
  text-indent: -9999px;
  overflow: hidden;
  background: none;
  border: none;
  opacity: 0.4;
  transition: all 0.3s ease;
  z-index: 999;
}
.home-hero .slick-arrow:hover {
  opacity: 0.8;
}
.home-hero .slick-prev {
  left: 20px;
  background-image: url("images/slider-arrow.svg");
  background-repeat: no-repeat;
}
.home-hero .slick-next {
  right: 20px;
  background-image: url("images/slider-arrow.svg");
  background-repeat: no-repeat;
  transform: translateY(-50%) rotate(180deg);
}
.home-hero .slick-list,
.home-hero .slick-track {
  height: 100%;
}
.home-hero .slick-slide {
  height: 100%;
  min-height: 100%;
}
.home-hero .slick-slide > div {
  height: 100%;
  min-height: 100%;
}

.home-intro {
  position: relative;
  padding: 70px 0 230px 0;
  font-size: 26px;
}
.home-intro h1 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .home-intro h1 {
    font-size: 50px;
  }
}
.home-intro:after {
  content: "";
  position: absolute;
  background-image: url(images/assets/hero-bg2.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 195px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.home-quote {
  position: relative;
}
.home-quote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/bg/bg1.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}
.home-quote:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B6A1A7;
  opacity: 0.2;
  z-index: -1;
}
.home-quote__inner {
  max-width: 1556px;
  margin: 0 auto;
  padding: 70px 20px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media (min-width: 768px) {
  .home-quote__inner {
    flex-direction: row;
    padding: 180px 20px;
  }
}
.home-quote__left {
  flex: 1 1 100%;
  max-width: 100%;
  margin-right: 0;
}
@media (min-width: 768px) {
  .home-quote__left {
    flex: 1 1 66%;
    max-width: 66%;
    margin-right: 6.8%;
  }
}
.home-quote__text {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.36;
  margin-bottom: 30px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .home-quote__text {
    font-size: 36px;
    margin-top: 0;
  }
}
.home-quote__author {
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .home-quote__author {
    font-size: 27px;
  }
}
.home-quote__author__title {
  font-size: 18px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .home-quote__author__title {
    font-size: 24px;
  }
}
.home-quote__right {
  flex: 1 1 268px;
  max-width: 268px;
  align-items: center;
}
.home-quote__photo {
  width: 268px;
  height: 268px;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
}
.home-quote__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-salons {
  padding: 200px 0 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .home-salons {
    padding: 529px 0 0 0;
  }
}
.home-salons:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url(images/bg/home-salons.jpg);
  background-size: cover;
  background-position: 0% 0%;
}
@media (min-width: 768px) {
  .home-salons:before {
    height: 529px;
  }
}
.home-salons:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .home-salons:after {
    height: 529px;
  }
}
.home-salons__inner {
  background-color: #2F292A;
}
@media (min-width: 768px) {
  .home-salons__inner {
    display: flex;
  }
}
.home-salons__left {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .home-salons__left {
    flex: 1 1 35.4%;
    max-width: 35.4%;
    padding-right: 0;
  }
}
@media (min-width: 1023px) {
  .home-salons__left {
    padding-left: 90px;
  }
}
.home-salons__cta.cta {
  z-index: 5;
  font-size: 18px;
  max-width: 480px;
  margin-top: -84px;
  padding: 0 85px 0 20px;
}
@media (min-width: 1023px) {
  .home-salons__cta.cta {
    padding: 0 105px 0 46px;
  }
}
.home-salons__cta.cta:hover {
  opacity: 1;
  background-color: #385E37;
}
@media (min-width: 1440px) {
  .home-salons__cta.cta {
    font-size: 26px;
  }
}
.home-salons__description {
  font-size: 20px;
  color: #fff;
  max-width: 570px;
  padding-right: 0;
  padding-top: 44px;
}
@media (min-width: 1023px) {
  .home-salons__description {
    font-size: 26px;
  }
}
@media (min-width: 1440px) {
  .home-salons__description {
    padding-top: 24px;
    padding-right: 50px;
  }
}
.home-salons__right {
  background-image: url(images/bg/angular-green.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 50%;
  padding-bottom: 86px;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .home-salons__right {
    flex: 1 1 64.6%;
    max-width: 64.6%;
    padding-left: 165px;
  }
}
@media (min-width: 1150px) {
  .home-salons__right {
    flex-direction: row;
  }
}
.home-salons__featured {
  padding: 25px 20px 0 0;
  color: #fff;
  text-align: right;
  max-width: 100%;
  flex: 1 1 100%;
}
@media (min-width: 1023px) {
  .home-salons__featured {
    padding: 65px 56px 0 0;
  }
}
@media (min-width: 1150px) {
  .home-salons__featured {
    max-width: 40%;
    flex: 1 1 40%;
  }
}
.home-salons__featured__heading {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .home-salons__featured__heading {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .home-salons__featured__heading {
    font-size: 30px;
  }
}
.home-salons__featured__name {
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .home-salons__featured__name {
    font-size: 32px;
  }
}
@media (min-width: 1023px) {
  .home-salons__featured__name {
    font-size: 28px;
  }
}
@media (min-width: 1250px) {
  .home-salons__featured__name {
    font-size: 32px;
  }
}
@media (min-width: 1920px) {
  .home-salons__featured__name {
    font-size: 43px;
  }
}
.home-salons__featured-photo {
  flex: 1 1 100%;
  max-width: 100%;
  padding-right: 20px;
}
@media (min-width: 1023px) {
  .home-salons__featured-photo {
    padding-right: 56px;
  }
}
@media (min-width: 1150px) {
  .home-salons__featured-photo {
    flex: 1 1 47.7%;
    max-width: 47.7%;
    padding-right: 0;
  }
}
.home-salons__featured-photo img {
  display: block;
  border: 8px solid #75AA74;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}
@media (min-width: 1440px) {
  .home-salons__featured-photo img {
    margin-top: -40px;
  }
}
@media (min-width: 1920px) {
  .home-salons__featured-photo img {
    margin-top: -120px;
  }
}

.home-side-by-side {
  padding: 73px 0 88px 0;
}
.home-side-by-side__inner {
  max-width: 1724px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1023px) {
  .home-side-by-side__inner {
    flex-direction: row;
  }
}
.home-side-by-side__left, .home-side-by-side__right {
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 1023px) {
  .home-side-by-side__left, .home-side-by-side__right {
    flex: 1 1 47.96%;
    max-width: 47.96%;
  }
}
.home-side-by-side__right {
  margin-top: 60px;
}
@media (min-width: 1023px) {
  .home-side-by-side__right {
    margin-top: 0;
  }
}
.home-side-by-side__content {
  background-color: #DFE8DB;
  font-size: 20px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .home-side-by-side__content {
    font-size: 26px;
  }
}
.home-side-by-side__content__inner {
  width: 100%;
}
.home-side-by-side__content__inner::after {
  content: "";
  clear: both;
  display: table;
}
.home-side-by-side__content__inner p {
  margin: 0;
}
@media (max-width: 767px) {
  .home-side-by-side__content__inner {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .home-side-by-side__cta a.cta {
    margin-top: -10px;
    width: 100%;
    padding: 0 85px 0 20px;
    font-size: 18px;
  }
}
.home-side-by-side__left__content {
  border-radius: 20px;
  padding: 36px 20px 34px 20px;
}
@media (min-width: 768px) {
  .home-side-by-side__left__content {
    padding: 36px 64px 64px 64px;
  }
}
.home-side-by-side__left__content img {
  margin-bottom: 20px;
}
@media (min-width: 1250px) {
  .home-side-by-side__left__content img {
    float: left;
    max-width: 40%;
    margin-right: 55px;
    margin-left: -64px;
    margin-bottom: 30px;
    margin-top: -36px;
  }
}
.home-side-by-side__right__content {
  border-radius: 20px;
  padding: 36px 20px 34px 20px;
}
@media (min-width: 768px) {
  .home-side-by-side__right__content {
    padding: 36px 64px 64px 64px;
  }
}
.home-side-by-side__right__content img {
  margin-bottom: 20px;
}
@media (min-width: 1250px) {
  .home-side-by-side__right__content img {
    float: right;
    max-width: 40%;
    margin-left: 55px;
    margin-right: -64px;
    margin-bottom: 30px;
    margin-top: -36px;
  }
}
@media (min-width: 1023px) {
  .home-side-by-side__right__cta {
    display: flex;
    justify-content: flex-end;
  }
}

.home-spotlights {
  padding: 36px 0 33px 0;
}
@media (min-width: 768px) {
  .home-spotlights {
    padding: 72px 0 66px 0;
  }
}
.home-spotlights__inner {
  max-width: 1566px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1023px) {
  .home-spotlights__inner {
    flex-wrap: nowrap;
  }
}
.home-spotlights__left {
  width: 100%;
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1023px) {
  .home-spotlights__left {
    width: 40%;
    flex: 1 1 40%;
    max-width: 40%;
  }
}
@media (min-width: 1330px) {
  .home-spotlights__left {
    width: calc(100% - 809px);
    flex: 1 1 calc(100% - 809px);
    max-width: calc(100% - 809px);
    padding-right: 30px;
  }
}
@media (min-width: 1700px) {
  .home-spotlights__left {
    width: 40%;
    flex: 1 1 40%;
    max-width: 40%;
    padding-right: 0;
  }
}
.home-spotlights__right {
  width: 100%;
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (min-width: 1023px) {
  .home-spotlights__right {
    width: 55%;
    flex: 1 1 55%;
    max-width: 55%;
  }
}
@media (min-width: 1330px) {
  .home-spotlights__right {
    width: 809px;
    flex: 809px;
    max-width: 809px;
  }
}
@media (min-width: 1700px) {
  .home-spotlights__right {
    width: 55%;
    flex: 1 1 55%;
    max-width: 55%;
  }
}
.home-spotlights__heading {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .home-spotlights__heading {
    font-size: 30px;
  }
}
.home-spotlights__subheading {
  font-size: 30px;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .home-spotlights__subheading {
    font-size: 43px;
  }
}
.home-spotlights__content {
  font-size: 20px;
}
@media (min-width: 1330px) {
  .home-spotlights__content {
    font-size: 26px;
  }
}
.home-spotlights__item {
  width: 100%;
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  background-color: #F2EDEF;
  border-radius: 0 30px 0 0;
  padding-right: 20px;
  order: 1;
}
@media (min-width: 768px) {
  .home-spotlights__item {
    width: calc(100% - 68px);
    flex: 1 1 calc(100% - 68px);
    max-width: calc(100% - 68px);
  }
}
.home-spotlights__item--1 {
  border-bottom: 10px solid #fff;
}
@media (min-width: 768px) {
  .home-spotlights__item--1 {
    border-bottom: none;
  }
}
.home-spotlights__item--2 {
  border-radius: 0 0 30px 0;
  order: 2;
}
@media (min-width: 768px) {
  .home-spotlights__item--2 {
    order: 3;
  }
}
@media (min-width: 1330px) {
  .home-spotlights__item {
    width: 81.35%;
    flex: 1 1 81.35%;
    max-width: 81.35%;
    padding-right: 11%;
  }
}
.home-spotlights__item__image {
  width: 33.6%;
  flex: 1 1 33.6%;
  max-width: 33.6%;
}
.home-spotlights__item__image img {
  display: block;
}
.home-spotlights__item__content {
  width: 66.4%;
  flex: 1 1 66.4%;
  max-width: 66.4%;
  padding: 15px 0 15px 20px;
}
@media (min-width: 1330px) {
  .home-spotlights__item__content {
    padding: 35px 0 0 48px;
  }
}
.home-spotlights__item__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 1330px) {
  .home-spotlights__item__title {
    font-size: 35px;
    margin-bottom: 24px;
  }
}
.home-spotlights__item__blurb {
  font-size: 17px;
  line-height: 1.25;
}
@media (min-width: 1330px) {
  .home-spotlights__item__blurb {
    font-size: 19px;
    line-height: 1.5;
  }
}
.home-spotlights__cta {
  width: 100%;
  flex: 1 1 100%;
  max-width: 100%;
  min-width: 100%;
  order: 3;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .home-spotlights__cta {
    order: 2;
    margin-top: 0;
  }
}
.home-spotlights__cta a.cta {
  background: none;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding-left: 68px;
  background-image: url("images/angle-purple.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: auto 100%;
  position: relative;
  font-size: 14px;
  padding-right: 55px;
}
@media (min-width: 530px) {
  .home-spotlights__cta a.cta {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .home-spotlights__cta a.cta {
    font-size: 24px;
    padding-right: 105px;
  }
}
.home-spotlights__cta a.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: calc(100% - 68px);
  height: 100%;
  background-color: #3C375D;
  z-index: -1;
}
.home-spotlights__cta a.cta:after {
  background-size: 33px 33px;
  background-position: 50% 50%;
  width: 33px;
  height: 33px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .home-spotlights__cta a.cta:after {
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    right: 30px;
  }
}
.home-spotlights__cta a.cta:hover {
  opacity: 0.8;
  background: none;
  background-image: url("images/angle-purple.svg");
}

.job-postings__list {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.job-postings__item {
  background: #fff;
  border: 1px solid #c9d8c2;
  border-left: 5px solid #3C375D;
  border-radius: 6px;
  padding: 24px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.job-postings__item:hover {
  border-left-color: #385E37;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  background: #C4D6BE;
}
.job-postings__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #3C375D;
  margin: 0 0 10px;
  transition: color 0.2s ease;
  padding-left: 0 !important;
  border-left: none !important;
}
.job-postings__item:hover .job-postings__title {
  color: #385E37;
}
.job-postings__description {
  font-size: 0.95rem;
  color: #535954;
  margin: 0 0 16px;
  line-height: 1.6;
}
.job-postings__read-more {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #3C375D;
  padding: 7px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: none;
}
.job-postings__item:hover .job-postings__read-more {
  background: #385E37;
}
.job-postings__date {
  font-size: 0.85rem;
  color: #3C375D;
  margin-bottom: 12px;
  font-weight: 700;
}

.junior-scientists h2 {
  margin-top: 60px;
}
.junior-scientists .committee-representatives {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
}
.junior-scientists .committee-representatives .committee-representative {
  background: #F2EDEF;
  padding: 15px;
  border-radius: 6px;
  flex: 1 1 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .junior-scientists .committee-representatives .committee-representative {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (min-width: 1440px) {
  .junior-scientists .committee-representatives .committee-representative {
    flex: 1 1 calc(25% - 20px);
  }
}
.junior-scientists .committee-representatives .committee-representative__photo {
  text-align: center;
}
.junior-scientists .committee-representatives .committee-representative__photo img {
  border-radius: 8px;
}
.junior-scientists .committee-representatives .committee-representative__name {
  font-weight: bold;
  margin: 5px 0 10px 0;
  font-size: 21px;
  text-align: center;
  color: #3C375D;
}
.junior-scientists .committee-representatives .committee-representative__name::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #3C375D;
  margin: 8px auto 0;
}
.junior-scientists .committee-representatives .committee-representative__title {
  color: #666;
  font-size: 17px;
  margin-bottom: 20px;
  text-align: center;
}
.junior-scientists .committee-representatives .committee-representative__bio {
  font-size: 16px;
}
.junior-scientists__middle {
  padding: 50px 0 0 0;
}
.junior-scientists__bottom {
  padding: 50px 0 0 0;
}
.junior-scientists .alumni-representatives {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .junior-scientists .alumni-representatives {
    grid-template-columns: repeat(4, 1fr);
  }
}
.junior-scientists .alumni-representatives .alumni-representative {
  background: #C4D6BE;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.junior-scientists .alumni-representatives .alumni-representative__photo {
  margin-bottom: 12px;
}
.junior-scientists .alumni-representatives .alumni-representative__photo img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}
.junior-scientists .alumni-representatives .alumni-representative__name {
  font-weight: bold;
  font-size: 18px;
  color: #385E37;
}

.main-navigation {
  margin-left: 40px;
  margin-top: 54px;
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
}
@media (min-width: 1500px) {
  .main-navigation {
    margin-left: 70px;
  }
}
@media (max-width: 1110px) {
  .main-navigation {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
  }
  .main-navigation ul.nav-menu {
    transition: all 0.3s ease;
  }
  .main-navigation.toggled {
    background-color: #fff;
    padding: 10px 0;
    width: calc(92% - 58px);
    min-height: 100%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  }
  .main-navigation.toggled .burger-container {
    position: fixed;
  }
  .main-navigation.toggled ul {
    flex-direction: column;
    transform: translateX(0);
    padding-top: 30px;
  }
  .main-navigation.toggled ul li {
    display: block;
    border-bottom: 1px solid #C4D6BE;
    position: relative;
  }
  .main-navigation.toggled ul li.main-navigation__login {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    left: 12px;
    margin-top: 30px;
    border-bottom: none;
  }
  .main-navigation.toggled ul li a {
    display: block;
    width: 100%;
    padding: 12px 30px;
    text-align: left;
    max-width: 100%;
  }
  .main-navigation.toggled ul li .mega-menu-close {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url("images/icon-close.svg") no-repeat center center;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #385E37;
  }
}
.main-navigation ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.main-navigation ul li {
  display: flex;
  align-items: center;
}
@media (max-width: 1110px) {
  .main-navigation ul li {
    display: none;
  }
}
.main-navigation ul li a {
  font-weight: 300;
  text-decoration: none;
  color: #000;
  max-width: 242px;
  display: block;
  text-align: center;
  padding: 0 16px;
  font-size: 22px;
}
.main-navigation ul li a:hover {
  color: #385E37;
}
@media (min-width: 1023px) {
  .main-navigation ul li a {
    padding: 0 12px;
    font-size: 18px;
  }
}
@media (min-width: 1150px) {
  .main-navigation ul li a {
    padding: 0 12px;
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  .main-navigation ul li a {
    padding: 0 16px;
    font-size: 22px;
  }
}
@media (min-width: 1920px) {
  .main-navigation ul li a {
    padding: 0 36px;
    font-size: 26px;
  }
}
@media (max-width: 1110px) {
  .main-navigation ul li a {
    font-size: 24px;
  }
}
@media (max-width: 1110px) {
  .main-navigation ul li.main-navigation__login {
    display: block;
    position: absolute;
    right: 305px;
    top: 5px;
  }
}
@media (max-width: 767px) {
  .main-navigation ul li.main-navigation__login {
    display: none;
  }
}
.main-navigation .menu > li.active {
  position: relative;
}
.main-navigation .menu > li.active:after {
  content: "";
  width: 36px;
  height: 18px;
  background-image: url(images/menu-triangle.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 40px);
}
@media (max-width: 1110px) {
  .main-navigation .menu > li.active:after {
    top: calc(100% - 17px);
  }
}
.main-navigation__login {
  width: 60px;
  min-width: 60px;
  height: 60px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("images/icon-profile.svg") no-repeat center center;
  background-size: 60px 60px;
  margin-left: 18px;
  margin-right: 14px;
}
.main-navigation__login:hover {
  opacity: 0.7;
}
.main-navigation .mega-menus {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.main-navigation .mega-menus__bg {
  background-color: #fff;
  position: absolute;
  top: 0;
}
.main-navigation .mega-menus__mega-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 80%;
}
.main-navigation .mega-menus__mega-menu.active {
  display: flex;
  border-top: 1px solid #535954;
  padding: 26px 2.8%;
}
@media (max-width: 1110px) {
  .main-navigation .mega-menus__mega-menu.active {
    display: block;
    background-color: #fff;
  }
}
.main-navigation .mega-menus__mega-menu a {
  font-size: 23px;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 14px;
}
.main-navigation .mega-menus__mega-menu a:hover {
  color: #385E37;
}
@media (max-width: 1110px) {
  .main-navigation .mega-menus__mega-menu a {
    border-bottom: 1px solid #C4D6BE;
  }
}
@media (min-width: 1111px) {
  .main-navigation .mega-menus__mega-menu a {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .main-navigation .mega-menus__mega-menu a {
    font-size: 19px;
  }
}
@media (min-width: 1700px) {
  .main-navigation .mega-menus__mega-menu a {
    font-size: 23px;
  }
}
.main-navigation .mega-menus__mega-menu__col {
  margin-right: 5.6%;
  flex: 1 1 33.33%;
  max-width: 33.33%;
}
.main-navigation .mega-menus__mega-menu__col:last-child {
  margin-right: 0;
}
@media (max-width: 1110px) {
  .main-navigation .mega-menus__mega-menu__col {
    flex: 1 1 90%;
    max-width: 90%;
    margin-right: 0;
  }
}
.main-navigation .mega-menus__renew-membership {
  border-left: 1px solid #535954;
  padding-left: 15%;
  font-weight: 600;
}
.main-navigation .mega-menus__renew-membership a {
  color: #759573;
}
.main-navigation .mega-menus__renew-membership a.black-link {
  color: #000;
}
.main-navigation .mega-menus__renew-membership a:hover {
  color: #385E37;
}
@media (max-width: 1110px) {
  .main-navigation .mega-menus__renew-membership {
    border-left: 0;
    padding-left: 0;
  }
  .main-navigation .mega-menus__renew-membership p {
    margin: 0;
  }
}

.meetings h2 {
  margin-top: 80px;
}
.meetings h2:first-child {
  margin-top: 0;
}
.meetings h3 {
  margin-top: 50px !important;
}
@media (min-width: 768px) {
  .meetings__row td:first-child {
    width: 160px;
  }
}

.page-banner {
  background-size: cover;
  background-position: 50% 50%;
  padding: 60px 0;
  margin-top: 40px;
}
.page-banner h1 {
  font-size: 30px;
}
@media (min-width: 768px) {
  .page-banner h1 {
    font-size: 40px;
  }
}

.poster-prize-winners {
  padding: 20px 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.poster-prize-winners__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #cedcc8;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.poster-prize-winners__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
  border-color: #759573;
}
.poster-prize-winners__item__photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #DFE8DB;
}
.poster-prize-winners__item__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 0.4s ease;
}
.poster-prize-winners__item:hover .poster-prize-winners__item__photo img {
  transform: scale(1.04);
}
.poster-prize-winners__item__name {
  padding: 12px 10px 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3C375D;
  line-height: 1.3;
  border-top: 3px solid #DFE8DB;
}

.ppw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ppw-modal.is-open {
  display: flex;
}
.ppw-modal__inner {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 520px;
  width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  -webkit-animation: ppw-modal-in 0.2s ease;
          animation: ppw-modal-in 0.2s ease;
  display: flex;
  flex-direction: column;
}
.ppw-modal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  color: #3C375D;
  border: 2px solid #3C375D;
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.ppw-modal__close:hover {
  background: #3C375D;
  color: #fff;
}
.ppw-modal__photo {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DFE8DB;
}
.ppw-modal__photo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.ppw-modal__prev, .ppw-modal__next {
  position: fixed;
  top: calc(50% - 26px);
  width: 52px;
  height: 52px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  color: #3C375D;
  border: 2px solid #3C375D;
  border-radius: 50%;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.ppw-modal__prev:hover, .ppw-modal__next:hover {
  background: #3C375D;
  color: #fff;
}
.ppw-modal__prev {
  left: 16px;
}
.ppw-modal__next {
  right: 16px;
}
.ppw-modal__name {
  padding: 16px 20px 18px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3C375D;
  text-align: center;
  border-top: 3px solid #DFE8DB;
}

@-webkit-keyframes ppw-modal-in {
  from {
    opacity: 0;
    transform: scale(0.93);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ppw-modal-in {
  from {
    opacity: 0;
    transform: scale(0.93);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.rna-day-winners {
  padding: 20px 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.rna-day-winners__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #cedcc8;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.rna-day-winners__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
  border-color: #759573;
}
.rna-day-winners__item__photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #DFE8DB;
}
.rna-day-winners__item__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 0.4s ease;
}
.rna-day-winners__item:hover .rna-day-winners__item__photo img {
  transform: scale(1.04);
}
.rna-day-winners__item__name {
  padding: 12px 10px 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3C375D;
  line-height: 1.3;
  border-top: 3px solid #DFE8DB;
}

.ppw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ppw-modal.is-open {
  display: flex;
}
.ppw-modal__inner {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 520px;
  width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  -webkit-animation: ppw-modal-in 0.2s ease;
          animation: ppw-modal-in 0.2s ease;
  display: flex;
  flex-direction: column;
}
.ppw-modal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  color: #3C375D;
  border: 2px solid #3C375D;
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.ppw-modal__close:hover {
  background: #3C375D;
  color: #fff;
}
.ppw-modal__photo {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DFE8DB;
}
.ppw-modal__photo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.ppw-modal__prev, .ppw-modal__next {
  position: fixed;
  top: calc(50% - 26px);
  width: 52px;
  height: 52px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  color: #3C375D;
  border: 2px solid #3C375D;
  border-radius: 50%;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.ppw-modal__prev:hover, .ppw-modal__next:hover {
  background: #3C375D;
  color: #fff;
}
.ppw-modal__prev {
  left: 16px;
}
.ppw-modal__next {
  right: 16px;
}
.ppw-modal__name {
  padding: 16px 20px 0 20px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3C375D;
  text-align: center;
  border-top: 3px solid #DFE8DB;
}
.ppw-modal__scientist {
  padding: 8px 20px 0 20px;
  font-size: 0.95rem;
  color: #3C375D;
  text-align: center;
}
.ppw-modal__year-and-category {
  padding: 2px 20px 18px 20px;
  font-size: 0.95rem;
  color: #3C375D;
  text-align: center;
}

@keyframes ppw-modal-in {
  from {
    opacity: 0;
    transform: scale(0.93);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
body.search .site-main__content a {
  text-decoration: none;
}

.seminars__list {
  padding: 10px 0 30px;
}
.seminars .no-seminars {
  color: #535954;
  font-style: italic;
  padding: 20px 0;
}

.seminar {
  border-left: 4px solid #385E37;
  background: #DFE8DB;
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.seminar__when {
  font-size: 1.05rem;
  font-weight: 700;
  color: #385E37;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seminar__host {
  font-size: 0.95rem;
  color: #2F292A;
  margin-bottom: 10px;
}
.seminar__host a {
  color: #385E37;
  text-decoration: underline;
}
.seminar__host a:hover {
  color: #75AA74;
}
.seminar__zoom {
  font-size: 0.9rem;
  color: #2F292A;
  margin-bottom: 10px;
  word-break: break-all;
}
.seminar__zoom a {
  color: #3C375D;
  text-decoration: underline;
  margin-left: 6px;
}
.seminar__zoom a:hover {
  color: #385E37;
}
.seminar__speakers {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #C4D6BE;
  font-size: 0.95rem;
  color: #231F20;
}
.seminar__speakers p {
  margin: 0 0 6px;
}
.seminar__speakers img {
  max-width: 80px;
  border-radius: 50%;
  float: left;
  margin: 0 14px 10px 0;
}
.seminar__moderators {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #535954;
}
.seminar__moderators p {
  margin: 0 0 4px;
}
.seminar__moderators em {
  color: #385E37;
}

@-webkit-keyframes sidebar-banner-pan {
  from {
    background-position: 0px 0%;
  }
  to {
    background-position: -694px 0%;
  }
}

@keyframes sidebar-banner-pan {
  from {
    background-position: 0px 0%;
  }
  to {
    background-position: -694px 0%;
  }
}
.sidebar {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 1023px) {
  .sidebar {
    flex: 1 1 260px;
    max-width: 260px;
    margin-top: 0;
  }
}
@media (min-width: 1250px) {
  .sidebar {
    flex: 1 1 300px;
    max-width: 300px;
  }
}
.sidebar__inner {
  max-width: 100%;
  width: 100%;
  background: #F2EDEF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
}
.sidebar__conference-banner {
  background-image: url(images/rna-2026-background.jpg);
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  -webkit-animation: sidebar-banner-pan 60s linear forwards;
          animation: sidebar-banner-pan 60s linear forwards;
  position: relative;
}
.sidebar__conference-banner img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.sidebar__conference-banner a {
  transition: all 0.3s ease;
}
.sidebar__conference-banner a:hover {
  opacity: 0.8;
}
.sidebar__nav {
  padding: 6px 0 10px;
}
.sidebar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__nav li {
  border-bottom: 1px solid rgba(196, 214, 190, 0.6);
}
.sidebar__nav li:last-child {
  border-bottom: none;
}
.sidebar__nav li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #231F20;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  background: transparent;
}
.sidebar__nav li a:hover, .sidebar__nav li a:focus {
  color: #385E37;
  background: rgba(196, 214, 190, 0.35);
  padding-left: 26px;
}
.sidebar__nav li.current-menu-item > a, .sidebar__nav li.current-page-ancestor > a {
  color: #385E37;
  border-left: 3px solid #385E37;
  padding-left: 17px;
}

.single-spotlight__thumbnail {
  margin: 10px 0 20px 0;
}
@media (min-width: 768px) {
  .single-spotlight__thumbnail {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .single-spotlight .page-banner .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.single-spotlight .spotlight-meta {
  font-size: 20px;
  line-height: 1.4;
}
.single-spotlight .spotlights-nav {
  position: relative;
  padding-top: 20px;
  margin: 40px 0 20px 0;
}
.single-spotlight .spotlights-nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #75AA74;
  border-radius: 2px;
}
.single-spotlight .spotlights-nav a {
  margin: 5px 0;
  display: inline-block;
}

.site {
  font-family: "Montserrat", sans-serif;
  color: #000;
  line-height: 1.2;
}
.site-main {
  padding: 60px 0;
  font-size: 20px;
  line-height: 1.44;
}
@media (min-width: 1023px) {
  .site-main > .inner {
    display: flex;
    justify-content: space-between;
  }
}
.site-main.junior-scientists .inner {
  display: block;
}
.site-main__content {
  max-width: 940px;
  font-size: 18px;
}
@media (min-width: 1023px) {
  .site-main__content {
    flex: 1 1 calc(100% - 300px);
    max-width: calc(100% - 300px);
  }
}
@media (min-width: 1250px) {
  .site-main__content {
    flex: 1 1 calc(100% - 360px);
    max-width: calc(100% - 360px);
  }
}
@media (min-width: 1440px) {
  .site-main__content {
    max-width: 940px;
  }
}
.site-main__content .cta {
  margin-top: 15px;
  width: 100%;
  padding: 0 55px 0 20px;
  font-size: 16px;
  height: 70px;
}
.site-main__content .cta:after {
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
  right: 15px;
}
@media (min-width: 768px) {
  .site-main__content .cta {
    width: 90%;
    height: 102px;
    padding: 0 105px 0 46px;
    font-size: 24px;
  }
  .site-main__content .cta:after {
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    right: 30px;
  }
}
.site-main__content a {
  word-break: break-word;
}
.site-main__content h1 {
  font-size: 30px;
  font-weight: 700;
  color: #3C375D;
  margin: 0 0 36px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .site-main__content h1 {
    font-size: 36px;
  }
}
@media (min-width: 1250px) {
  .site-main__content h1 {
    font-size: 52px;
    letter-spacing: -1px;
  }
}
.site-main__content h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #3C375D, #759573);
  border-radius: 3px;
}
.site-main__content h1.centered:after {
  left: 50%;
  transform: translateX(-50%);
}
.site-main__content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #385E37;
  margin: 36px 0 14px;
  line-height: 1.3;
  letter-spacing: -0.25px;
  padding-left: 14px;
  border-left: 4px solid #75AA74;
}
.site .inner {
  width: 90%;
  max-width: 1556px;
  margin: 0 auto;
}
.site * {
  box-sizing: border-box;
}

html, body {
  min-height: 101%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
  line-height: 1.2;
}

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

p {
  margin: 0 0 30px 0;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  color: #385E37;
  margin: 40px 0 30px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 36px;
  }
}
h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #75AA74;
  border-radius: 2px;
}

a {
  color: #385E37;
}
a:hover {
  color: #75AA74;
}

a.cta {
  display: block;
  background-color: #75AA74;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  width: 90%;
  max-width: 611px;
  height: 102px;
  display: flex;
  align-items: center;
  padding: 0 105px 0 46px;
  transition: all 0.3s ease;
  position: relative;
  margin-top: -46px;
}
a.cta:hover {
  opacity: 1;
  background-color: #385E37;
}
a.cta:after {
  content: "";
  position: absolute;
  background-image: url(images/btn-arrow-dark.svg);
  background-repeat: no-repeat;
  background-size: 46px 46px;
  background-position: 50% 50%;
  width: 46px;
  height: 46px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

blockquote {
  margin: 40px 0;
  padding: 30px 40px 30px 80px;
  background-color: #f8f9fa;
  border-left: 5px solid #75AA74;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: #2c3e50;
  position: relative;
}
blockquote:before {
  content: '"';
  position: absolute;
  left: 20px;
  top: 10px;
  font-size: 60px;
  color: #385E37;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
blockquote p {
  margin-bottom: 15px;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  font-style: normal;
  color: #385E37;
  font-weight: 600;
}
blockquote cite:before {
  content: "— ";
}

.table-wrapper {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  font-size: 16px;
}
table thead {
  background-color: #385E37;
  color: #fff;
}
table thead th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 15px;
  text-transform: uppercase;
}
table tbody tr {
  border-bottom: 1px solid #C4D6BE;
  transition: all 0.3s ease;
}
table tbody tr:nth-child(even) {
  background-color: rgba(223, 232, 219, 0.5);
}
table tbody tr td {
  padding: 16px 20px;
  color: #535954;
  vertical-align: top;
}
table tfoot {
  background-color: #C4D6BE;
  color: #231F20;
}
table tfoot td {
  padding: 16px 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  table {
    font-size: 14px;
  }
  table thead th {
    padding: 12px 12px;
    font-size: 13px;
  }
  table tbody tr td {
    padding: 12px;
  }
  table tfoot td {
    padding: 12px;
  }
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #535954;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  outline: none;
  border-color: #75AA74;
  box-shadow: 0 0 0 3px rgba(117, 170, 116, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}
input[type=text]:disabled,
input[type=email]:disabled,
textarea:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

input[type=radio],
input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 4px 8px 4px 0;
  cursor: pointer;
  accent-color: #75AA74;
  vertical-align: middle;
}
input[type=radio]:disabled,
input[type=checkbox]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #535954;
  margin-bottom: 12px;
}
label input[type=radio],
label input[type=checkbox] {
  margin: 0 8px 0 0;
}
label:hover {
  color: #385E37;
}

input[type=submit],
button {
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  background-color: #75AA74;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
input[type=submit]:hover,
button:hover {
  background-color: #385E37;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
input[type=submit]:active,
button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
input[type=submit]:disabled,
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

button.secondary {
  background-color: #C4D6BE;
  color: #231F20;
}
button.secondary:hover {
  background-color: #75AA74;
  color: #fff;
}
button.tertiary {
  background-color: transparent;
  color: #385E37;
  border: 2px solid #385E37;
  box-shadow: none;
}
button.tertiary:hover {
  background-color: #385E37;
  color: #fff;
}

.hidden-element {
  display: none;
}

label {
  display: block;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
}

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

figcaption {
  font-size: 14px;
}

.site-footer {
  width: 100%;
  background-color: #2F292A;
  color: #F6EBD9;
  padding: 130px 0 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 260px 0 0 0;
  }
}
.site-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 111px;
  background-image: url(images/bg/bg3.jpg);
  background-size: cover;
  background-position: 50% 50%;
}
@media (min-width: 768px) {
  .site-footer:before {
    height: 191px;
  }
}
.site-footer .inner {
  justify-content: space-between;
}
@media (min-width: 768px) {
  .site-footer .inner {
    display: flex;
  }
}
.site-footer h3 {
  margin: 0 0 22px 0;
  font-size: 26px;
  font-weight: 300;
}
.site-footer__right {
  position: relative;
}
.site-footer__info {
  padding-bottom: 34px;
  display: flex;
}
.site-footer__copyright {
  background-color: #231F20;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .site-footer__copyright {
    font-size: 24px;
  }
}
.site-footer__copyright .inner {
  height: 78px;
  display: flex;
  align-items: center;
}
.site-footer__login {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .site-footer__login {
    margin-bottom: 0;
  }
}
.site-footer__login .home-featured-info__membership__login {
  background-color: #535954;
  background-image: none;
  padding-right: 100px;
  height: 98px;
  right: 0;
  left: auto;
}
.site-footer__login .home-featured-info__membership__login:before {
  display: none;
}
.site-footer__login .home-featured-info__membership__login:after {
  right: 42px;
}
.site-footer__login .home-featured-info__membership__login:hover {
  opacity: 1;
  background-color: #759573;
  color: #fff;
}
.site-footer #menu-footer-menu, .site-footer #menu-footer-menu-1 {
  border-top: 1px solid #535954;
  margin-left: 45px;
  position: relative;
  margin-top: 42px;
  list-style: none;
  margin: 42px 0 20px 0;
  padding: 16px 0 0 0;
}
@media (min-width: 768px) {
  .site-footer #menu-footer-menu, .site-footer #menu-footer-menu-1 {
    margin: 42px 0 20px 45px;
  }
}
.site-footer #menu-footer-menu:before, .site-footer #menu-footer-menu-1:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 18px;
  background-image: url(images/triangle-green.svg);
  background-repeat: no-repeat;
  background-size: 36px 18px;
  left: 0;
  top: -19px;
}
.site-footer #menu-footer-menu li a, .site-footer #menu-footer-menu-1 li a {
  display: flex;
  font-size: 20px;
  color: #F6EBD9;
  padding: 8px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #C4D6BE;
}
@media (min-width: 768px) {
  .site-footer #menu-footer-menu li a, .site-footer #menu-footer-menu-1 li a {
    font-size: 22px;
    border-bottom: none;
  }
}
.site-footer #menu-footer-menu li a:hover, .site-footer #menu-footer-menu-1 li a:hover {
  opacity: 0.8;
}
.site-footer #menu-footer-menu li:last-child a, .site-footer #menu-footer-menu-1 li:last-child a {
  border-bottom: none;
}
.site-footer__logo {
  max-width: 158px;
}
.site-footer__logo a {
  display: block;
  transition: all 0.3s ease;
  position: relative;
}
.site-footer__logo a:before {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
  left: 3px;
  top: 3px;
}
.site-footer__logo a:hover {
  opacity: 0.8;
}
.site-footer__logo img {
  position: relative;
  z-index: 2;
}
.site-footer__contact-info {
  font-size: 20px;
  color: #8FB78B;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .site-footer__contact-info {
    display: flex;
    align-items: center;
    text-align: right;
    padding-right: 46px;
    font-size: 24px;
  }
}
.site-footer__contact-info p {
  margin: 0 0 12px 0;
}
@media (min-width: 768px) {
  .site-footer__contact-info p {
    margin: 0;
  }
}
.site-footer__contact-info a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.site-footer__contact-info a:hover {
  opacity: 0.8;
}
.site-footer__social {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-bottom: 34px;
  padding-right: 14px;
}
.site-footer__social img {
  width: 40px;
}
@media (min-width: 768px) {
  .site-footer__social {
    display: flex;
    padding-bottom: 164px;
  }
}
.site-footer__social a {
  transition: all 0.3s ease;
  margin-left: 12px;
}
.site-footer__social a:hover {
  opacity: 0.8;
}

.site-header {
  background-color: #fff;
  width: 100%;
  padding-bottom: 16px;
}
.site-header__top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.site-header__top-bar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-image: url("images/search-bg.svg");
  background-repeat: no-repeat;
  background-size: auto 62px;
  height: 60px;
  padding-left: 50px;
}
.site-header__top-bar__donate {
  display: flex;
  align-items: center;
}
.site-header__top-bar__donate a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 0 10px 0 0;
  position: relative;
}
@media (min-width: 530px) {
  .site-header__top-bar__donate a {
    padding: 0 30px 0 0;
    font-size: 24px;
  }
}
.site-header__top-bar__donate a:after {
  content: "";
  width: 1px;
  height: 24px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.site-header__top-bar__donate a:hover {
  opacity: 0.85;
}
.site-header__top-bar .search-form {
  height: 60px;
  padding: 0 6px 0 4px;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 530px) {
  .site-header__top-bar .search-form {
    padding-right: 32px;
    padding-left: 30px;
  }
}
.site-header__top-bar .search-form:after {
  content: "";
  width: calc(100% - 50px);
  height: 60px;
  background-color: #2F292A;
  position: absolute;
  right: 0;
  top: 0;
}
.site-header__top-bar .search-form label {
  width: 2px;
}
.site-header__top-bar .search-form.active label {
  width: 120px;
}
@media (min-width: 768px) {
  .site-header__top-bar .search-form.active label {
    width: 177px;
  }
}
.site-header__top-bar .search-field {
  transition: all 0.3s ease;
  transform: scale(0, 1);
  width: 2px;
  transform-origin: right;
  position: relative;
  z-index: 1;
  height: 30px;
  padding: 4px 14px;
  border-radius: 6px;
}
.site-header__top-bar .search-field.active {
  transform: scale(1, 1);
  width: 120px;
}
@media (min-width: 768px) {
  .site-header__top-bar .search-field.active {
    width: 177px;
  }
}
.site-header__top-bar .search-submit {
  border: none;
  background: none;
  background-image: url(images/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 26px 26px;
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  margin: 0 0 0 10px;
}
.site-header__top-bar .search-submit:hover {
  background: none;
  background-image: url(images/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 26px 26px;
  opacity: 0.8;
}
.site-header .inner {
  max-width: 100%;
  width: 92%;
  display: flex;
}
.site-header .site-branding {
  width: 122px;
  height: 122px;
  margin-top: -40px;
}
@media (min-width: 768px) {
  .site-header .site-branding {
    width: 172px;
    height: 172px;
    margin-top: 0;
  }
}
.site-header .site-branding a {
  transition: all 0.3s ease;
}
.site-header .site-branding a:hover {
  opacity: 0.85;
}
.site-header .site-branding img {
  display: block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.spotlights {
  padding: 0 0 33px 0;
}
.spotlights .spotlight-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .spotlights .spotlight-item {
    flex-wrap: nowrap;
  }
}
.spotlights .spotlight-item__image {
  flex: 0 0 auto;
  padding-right: 30px;
  max-width: 200px;
}
.spotlights .spotlight-item__blurb {
  flex: 1 1 auto;
}

/**
 * partials/wordpress
 * ---
 * Wordpess core classes
 */
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignnone {
  clear: none;
  display: inline-block;
}

.alignleft {
  display: block;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: block;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after {
  clear: both;
}
