/** BEGIN BANNER **/

.banner {
  min-height: 100vh;
  position: relative;
  background: rgba(4, 4, 9, 0.99);
}

.banner-image {
  position: absolute;
  z-index: 4;
  height: 100vh;
  top: -44vh;
  width: 100%;
  background-image: url("../images/landing-page/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.banner-video-container {
  position: relative;
  z-index: 2;
  height: 50vh;
  width: 100%;
  overflow: hidden;
}

#banner_bg_video {
  height: 100vh;
  position: relative;
  top: -44vh;
  left: 0;
  z-index: 3;
  width: 100%;
  object-fit: cover;
}

.banner-content {
  color: #fff;
  position: relative;
  z-index: 7;
  width: 100%;
  bottom: 8%;
  box-sizing: border-box;
  padding: 20px 8%;
}

.banner-content h1 {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: -30vh;
  font-size: 2.5em;
  letter-spacing: -1px;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 24px;
  font-family: bentonsansregular, sans-serif;
}

.banner-content > a {
  display: block;
  text-align: center;
  font-family: bentonsansregular, sans-serif;
  margin: 40px 0 20px;
  cursor: pointer;
}

.banner-content > a > img {
  display: inline-block;
  margin-left: 10px;
}

.banner-overlay {
  display: block;
  position: absolute;
  z-index: 6;
  background-image: url("../images/landing-page/video_overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.interview-content:hover a::before, 
.article-grid:hover a::before
 {
  width: 50px !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

#home_scholars > ul > li {
  cursor: pointer;
}

.scholars-directory ul {
  padding-left: 14%;
  margin-top: 52px;
}
.scholars-directory ul li.swiper-slide {
  width: 260px !important;
  list-style: none;
  margin-right: 40px;
  padding-bottom: 52px;
  border-radius: 4px;
  background: #ffffff;
  color: rgb(62, 63, 66);
  height: auto;
}
.scholars-directory ul li.swiper-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.scholars-directory ul li .scholar-name {
  box-sizing: border-box;
  padding-left: 26px;
  margin-top: 17px;
  font-size: 16px;
  line-height: 36px;
}
.scholars-directory ul li .scholar-name a {
  font-family: bentonsansbold, sans-serif;
  color: inherit;
}
.scholars-directory ul li .scholar-university-name {
  font-family: bentonsansbook, sans-serif;
  opacity: 0.8;
  font-size: 16px;
  line-height: 34px;
  box-sizing: border-box;
  padding-left: 26px;
}
.scholars-directory ul li .scholar-social-links {
  box-sizing: border-box;
  padding-left: 26px;
  display: flex;
  margin-top: 15px;
}
.scholars-directory ul li .scholar-social-links li {
  margin-right: 15px;
  list-style: none;
}
.scholars-directory.swiper-container-horizontal .swiper-scrollbar {
  background-color: #dedee2;
  height: 1px;
  left: 0;
  margin-left: 14%;
  bottom: 5px;
  position: relative;
  margin-top: 40px;
  width: 56%;
}
.scholars-directory .slick-prev {
  right: 27%;
  left: auto;
  top: auto;
  bottom: 0;
  cursor: pointer;
}
.scholars-directory .slick-next {
  right: 25%;
  bottom: 0;
  top: auto;
  cursor: pointer;
}

.scholars-directory ul li .scholar-social-links li img {
  width: auto;
  height: auto;
}


/** Banner 768px Breakpoint **/
@media only screen and (min-width: 768px) {
  .banner-video-container {
    height: 55vh;
  }

  .banner-image, #banner_bg_video {
    top: -39vh;
  }

  .banner-content {
    padding: 50px 10%;
  }

  .banner-content h1 {
    font-size: 5em;
    top: -32vh;
  }
}

/** Banner 1366px breakpoint **/
@media only screen and (min-width: 1366px) {
  .banner-video-container {
    height: 70vh;
  }

  .banner-image, #banner_bg_video {
    top: -24vh;
  }

  .banner-content {
    padding: 50px 25%;
  }

  .banner-content h1 {
    font-size: 9em;
    top: -40vh;
    letter-spacing: -3.5px;
  }

  .banner-content p {
    font-size: 18px;
    line-height: 27px;
  }
}

/** END BANNER **/

/** START MAIN **/

main {
  font-family: bentonsansregular, sans-serif;
  line-height: 1.5em;
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
}

main > section > h1, main > section > header > h1 {
  font-size: 40px;
  line-height: 50px;
  font-family: bentonsansbold, sans-serif;
}

main > section > * {
  padding: 0 8%;
}

main [data-has-intersected] {
  transition-property: transform, opacity;
  transition-duration: 1000ms;
  transition-delay: 0ms, 200ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

main [data-has-intersected="false"] {
  transform: translateY(40%);
  opacity: 0;
}

main [data-has-intersected="true"] {
  transform: translateY(0);
  opacity: 1;
}

/** Main 1366px breakpoint **/
@media only screen and (min-width: 1366px) {
  main > section > * {
    padding: 0 14%;
  }
}

/** END MAIN **/

/** START UNIVERSITIES **/

#home_universities {
  padding: 50px 0 60px;
  display: flex;
  flex-direction: column;
}

#home_universities > header > p {
  opacity: 0.8;
  letter-spacing: -0.2px;
  margin-top: 7px;
}

#home_universities div.university-icons {
  margin-top: 40px;
}

#home_universities div.university-icons ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

#home_universities div.university-icons ul li {
  width: 33.33%
}

#home_universities div.university-icons ul li a {
  display: block;
  padding-bottom: 25%;
  text-align: left;
}

#home_universities div.university-icons ul li:nth-child(3n+2) a {
  text-align: center;
}

#home_universities div.university-icons ul li:nth-child(3n+3) a {
  text-align: right;
}

#home_universities div.university-icons ul li a img {
  width: 75%;
}

/** Universities 768px breakpoint **/
@media only screen and (min-width: 768px) {
  #home_universities {
    flex-direction: row;
  }

  #home_universities > header {
    padding: 0 4% 0 8%;
    box-sizing: border-box;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #home_universities > header > p {
    font-size: 14px;
    letter-spacing: -0.18px;
  }

  #home_universities div.university-icons {
    margin: 0;
    padding: 0 8% 0 4%;
    box-sizing: border-box;
    width: 50%;
  }
}

/** Universities 1366px breakpoint **/
@media only screen and (min-width: 1366px) {
  #home_universities {
    padding: 160px 0;
  }

  #home_universities > header {
    padding: 0 10% 0 14%;
  }

  #home_universities > header > h1 {
    font-size: 56px;
    line-height: 64px;
  }

  #home_universities > header > p {
    line-height: 36px;
    font-size: 20px;
    letter-spacing: -0.25px;
    margin-top: 16px;
  }

  #home_universities div.university-icons {
    padding: 0 14% 0 4%;
  }
}
/** END UNIVERSITIES **/

/** START CONFERENCES **/

#home_conferences {
  color: #ffffff;
  background: url('/wp-content/themes/twentysixteen/assets/images/landing-page/homePageWd41.png') rgb(11, 16, 18) top no-repeat;
  background-size: contain;
  padding-bottom: 60px;
}

#home_conferences::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vw;
}

#home_conferences > h1 {
  margin-top: 43px;
}

#home_conferences > p {
  margin-top: 18px;
}

#home_conferences > a {
  display: flex;
  color: #fff;
  margin-top: 24px;
  font-family: bentonsansmedium, sans-serif;
}

#home_conferences > a::before {
  content: "";
  display: block;
  width: 21px;
  height: 1px;
  background: #ffffff;
  margin: .75em 18px 0 0;
}

/** Conferences 768px Breakpoint **/
@media only screen and (min-width: 768px) {
  #home_conferences {
    background-position: left;
    height: 567px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }

  #home_conferences::before {
    display: none;
  }

  #home_conferences > * {
    width: 50%;
    padding-left: 0;
    box-sizing: border-box;
  }

  #home_conferences > p, #home_conferences > a {
    font-size: 14px;
  }
}

/** Conferences 1366px breakpoint **/
@media only screen and (min-width: 1366px) {
  #home_conferences {
    height: 800px;
    background-color: #0b1417;
    background-blend-mode: lighten;
  }

  #home_conferences > h1 {
    font-size: 56px;
    letter-spacing: -0.88px;
  }

  #home_conferences > p, #home_conferences > a {
    font-size: 20px;
    line-height: 36px;
  }
}

/** END CONFERENCES **/

/** START SCHOLARS **/

#home_scholars {
  background: rgb(248, 248, 252);
  padding-bottom: 24px;
}

#home_scholars > h1 {
  padding-top: 44px;
  letter-spacing: -0.63px;
}

#home_scholars > p {
  opacity: 0.8;
  margin-top: 15px;
  color: rgb(26, 25, 25);
}

#home_scholars > a {
  color: rgb(11, 109, 201);
  font-family: bentonsansmedium, sans-serif;
  display: flex;
  margin-top: 24px;
}

#home_scholars > a::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: rgb(11, 109, 201);
  margin: .75em 18px 0 0;
}

#home_scholars > ul {
  margin-top: 52px;
  list-style: none;
  display: flex;
  transition: transform 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
  touch-action: none;
}

#home_scholars > ul > li {
  margin-right: 30px;
  padding-bottom: 24px;;
  border-radius: 3px;
  background: #ffffff;
  color: rgb(62, 63, 66);
  transition: opacity 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#home_scholars > ul > li > :not(img) {
  /* use child elements to set width of flex item (li) */
  width: 195px;
  box-sizing: border-box;
  padding-left: 20px;
}

#home_scholars > ul > li > img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#home_scholars > ul > li > div.scholar-name {
  margin-top: 17px;
  font-size: 12px;
  line-height: 27px;
}

#home_scholars > ul > li > div.scholar-name > a {
  font-family: bentonsansbold, sans-serif;
  color: inherit;
}

#home_scholars > ul > li > div.scholar-university-name {
  font-family: bentonsansbook, sans-serif;
  opacity: 0.8;
  font-size: 12px;
  line-height: 18px;
}

#home_scholars > ul > li > ul {
  list-style: none;
  display: flex;
  margin-top: 15px;
}

#home_scholars > ul > li > ul > li {
  margin-right: 15px;
}

#scholar_list_controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

#scholar_list_controls > div.position-bar {
  height: 1px;
  background: rgba(0,0,0,0.1);
  width: 167px;
  position: relative;
  margin-right: 23px;
}

#scholar_list_controls > div.position-bar > div.position {
  position: absolute;
  height: 2px;
  width: 70px;
  top: 0;
  left: 0;
  background: #000;
  transition: transform 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate(0, -50%);
}

#scholar_list_controls > button {
  background: transparent;
  margin-right: 13px;
  cursor: pointer;
}

#scholar_list_controls > button:disabled {
  opacity: 0.3;
  cursor: auto;
}

/** Scholars 768px breakpoint **/
@media only screen and (min-width: 768px) {
  #home_scholars > p, #home_scholars > a {
    width: 50%;
    padding-right: 0;
    box-sizing: border-box;
    font-size: 14px;
  }

  #home_scholars > ul > li {
    margin-right: 40px;
    padding-bottom: 52px;;
    border-radius: 4px;
  }

  #home_scholars > ul > li > :not(img) {
    /* use child elements to set width of flex item (li) */
    width: 260px;
    box-sizing: border-box;
    padding-left: 26px;
  }

  #home_scholars > ul > li > img {
    height: 340px;
    object-fit: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }

  #home_scholars > ul > li > div.scholar-name {
    font-size: 16px;
    line-height: 36px;
  }
  
  #home_scholars > ul > li > div.scholar-university-name {
    font-size: 16px;
    line-height: 34px;
  }

  #scholar_list_controls > div.position-bar {
    width: 583px;
    margin-right: 41px;
  }

  #scholar_list_controls > div.position-bar > div.position {
    width: 244px;
  }
}

/** Scholars 1366px breakpoint **/
@media only screen and (min-width: 1366px) {
  #home_scholars {
    padding: 136px 0;
  }

  #home_scholars > h1 {
    font-size: 56px;
    line-height: 80px;
    letter-spacing: -0.88px;
  }

  #home_scholars > p, #home_scholars > a {
    font-size: 20px;
  }

  #home_scholars > p {
    line-height: 36px;
  }

  #scholar_list_controls > div.position-bar {
    width: 1045px;
    margin-right: 37px;
  }

  #scholar_list_controls > div.position-bar > div.position {
    width: 417px;
  }
}

/** END SCHOLARS **/

/** BEGIN NEWS **/

#home_latest_news {
  background: rgb(248, 248, 252);
}

#home_latest_news > h1 {
  padding-top: 44px;
  margin-bottom: 32px;
}

#home_latest_news > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#home_latest_news > ul > li {
  position: relative;
}

#home_latest_news > ul > li {
  cursor: pointer;
}

#home_latest_news > ul > li > article.latest-news-interview {
  color: #fff;
  width: 100vw;
  position: relative;
}

#home_latest_news > ul > li > article.latest-news-interview > img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}

#home_latest_news > ul > li > article.latest-news-interview > div {
  position: absolute;
  bottom: 0;
  padding: 0 20px;
  font-size: 14px;
}

#home_latest_news > ul > li > article.latest-news-interview h1 {
  font-family: bentonsansbold, sans-serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.5px;
}

#home_latest_news > ul > li > article.latest-news-interview .latest-news-type {
  font-family: bentonsansmedium, sans-serif;
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 11px;
  line-height: 11.3px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

#home_latest_news > ul > li > article.latest-news-interview > div > a {
  color: inherit;
  display: flex;
  align-items: center;
  margin: 20px 0 15px;
}

#home_latest_news > ul > li > article.latest-news-interview > div > a::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-right: 16px;
  transition: all 0.3s ease;
}

#home_latest_news > ul > li > article.latest-news-article {
  width: 50vw;
  height: 100%;
  color: black;
  border-bottom: 1px solid rgb(232, 232, 232);
  display: flex;
  flex-direction: column;
}

#home_latest_news > ul > li > article.latest-news-article > *:not(img) {
  padding: 0 20px;
}

#home_latest_news > ul > li > article.latest-news-article > img {
  height: 120px;
  object-fit: cover;
  object-position: top;
}

#home_latest_news > ul > li > article.latest-news-article .latest-news-type {
  font-family: bentonsansmedium, sans-serif;
  font-size: 11px;
  line-height: 24px;
  letter-spacing: 2.06px;
  text-transform: uppercase;
  padding-top: 15px;
  margin-bottom: 3px;
  opacity: 0.3;
}

#home_latest_news > ul > li > article.latest-news-article h1 {
  font-family: bentonsansbold, sans-serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 62px;
}

#home_latest_news > ul > li > article.latest-news-article > div {
  position: relative;
  flex-grow: 1;
  border: 1px solid rgb(232, 232, 232);
}

#home_latest_news > ul > li > article.latest-news-article > div > a {
  position: absolute;
  bottom: 24px;
  display: flex;
  align-items: center;
  font-family: bentonsansmedium, sans-serif;
  color: rgb(11, 109, 201);
}

#home_latest_news > ul > li > article.latest-news-article > div > a::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: rgb(11, 109, 201);
  margin-right: 16px;
  transition: all 0.3s ease;
}

/** News 768px breakpoint **/
@media only screen and (min-width: 768px) {
  #home_latest_news > ul > li > article.latest-news-interview > img {
    height: 355px;
  }

  #home_latest_news > ul > li > article.latest-news-interview > div {
    width: 50%;
    padding-right: 0;
    box-sizing: border-box;
  }

  #home_latest_news > ul > li > article.latest-news-article > img {
    height: 240px;
  }
}

/** News 1366px breakpoint **/
@media only screen and (min-width: 1366px) {
  #home_latest_news > h1 {
    font-size: 56px;
    line-height: 80px;
    letter-spacing: -0.88px;
  }

  #home_latest_news > ul > li:nth-child(4) {
    order: 6;
  }

  #home_latest_news > ul > li > article.latest-news-interview {
    width: calc(50vw - 9px);
  }

  #home_latest_news > ul > li > article.latest-news-interview > img {
    min-height: 580px;
    height: 100%;
  }

  #home_latest_news > ul > li > article.latest-news-article {
    width: calc(25vw - 4px);
  }

  #home_latest_news > ul > li > article.latest-news-interview .latest-news-type,
  #home_latest_news > ul > li > article.latest-news-article .latest-news-type {
    font-size: 16px;
    line-height: 24px;
    padding-top: 40px;
    margin-bottom: 18px;
  }

  #home_latest_news > ul > li > article.latest-news-interview > *:not(img),
  #home_latest_news > ul > li > article.latest-news-article > *:not(img) {
    padding: 0 44px;
  }

  #home_latest_news > ul > li > article.latest-news-interview h1,
  #home_latest_news > ul > li > article.latest-news-article h1 {
    font-size: 24px;
    line-height: 32px;
  }

  #home_latest_news > ul > li > article > div > a {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1800px) and (min-width: 1200px)  {
  .scholars-directory ul li.swiper-slide {
    width: 230px !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px)  {
  #home_conferences > * {
    width: 45%;
  }
  .scholars-directory ul {
    padding-left: 8%;
  }
  .scholars-directory .slick-next {
    right: 19%;
  }
  .scholars-directory .slick-prev {
    right: 24%;
  }
}

@media only screen and (max-width: 767px) {
  .scholars-directory ul li.swiper-slide {
    width: 195px !important;
    margin-right: 30px;
  } 
  .scholars-directory ul li.swiper-slide img {
    height: 255px;
  }
  .scholars-directory ul li .scholar-name {
    padding-left: 19px;
    margin-top: 16px;
    font-size: 12px;
    line-height: 27px;
  }
  .scholars-directory ul li .scholar-university-name {
    font-size: 12px;
    line-height: 18px;
    padding-left: 19px;
  }
  .scholars-directory ul {
    padding-left: 8%;
  }
  .scholars-directory.swiper-container-horizontal .swiper-scrollbar {
    width: 40%;
    margin-left: 8%;
  }
  .scholars-directory .slick-prev {
    right: 35%;
  }
  .scholars-directory .slick-next {
    right: 25%;
  }
}

/** END NEWS **/