/* -------------------- MISC -------------------- */
html, body {
  font-size: 20px;
  background: white;
  font-family: "Helvetica Neue", "Neue Helvetica W05", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
  hyphens: auto;
  word-break: break-word;
}

a {
  color: inherit;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}

a:focus, a:hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

h5 {
  font-size: 1.1em;
  color: #0062FF;
  margin-bottom: 0;
}

h5 a {
  color: #000;
}

.bigger {
  font-size: 22px;
}

.mt-20vh {
  margin-top: 20vh;
}

.pullup-5rem {
  margin-top: -5rem;
}

.pullup-15rem {
  /* this got changed later on and it would be cumbersome to change the class name too */
  margin-top: -10rem;
}

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  color: #000;
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  color: #000;
}

.p-no-margin p {
  margin: 0;
}

.row-add-1rem {
  margin-left: calc(-15px - 1rem);
  margin-right: calc(-15px - 1rem);
}
.mt-5, .my-5 {
  margin-top: 4rem!important;
}

/* -------------------- HEADER -------------------- */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
}

.logo {
  background-color: #00FFC3;
  border-radius: 0rem 0rem 1rem 0rem;
}

.logo a {
  display: block;
  color: #000;
  padding: 1rem;
}


/* -------------------- CONTENT -------------------- */

main.content{
  min-height: 30vh;
}

.brand-title {
  font-size: 6rem;
  word-break: normal;
}

.register-left,
.register-left-short,
.register-right,
.register-right-short,
.register-bottom {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  z-index: 15;
  pointer-events: none;
}

.register-left div,
.register-left-short div,
.register-right div,
.register-right-short div,
.register-bottom {
  pointer-events: all;
}

.register-left-short {
  z-index: 4;
}

.register-bottom {
  height: auto;
  padding: 5rem 0;
}

.register-right,
.register-right-short {
  z-index: 10;
}

.register-dark-blue {
  z-index: 15;
}

.register-left:before,
.register-left-short:before,
.register-right:before,
.register-right-short:before,
.register-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.register-left:before {
  left: 0;
  right: 30%;
  border-radius: 0 12rem 12rem 0;
}

.register-left-short:before {
  left: 0;
  right: 40%;
  border-radius: 0 12rem 12rem 0;
}

.register-right:before {
  left: 30%;
  right: 0;
  border-radius: 12rem 0 0 12rem;
}

.register-right-short:before {
  left: 50%;
  right: 0;
  border-radius: 12rem 0 0 12rem;
}

.register-bottom:before {
  left: 0;
  right: 0;
  border-radius: 10rem 10rem 0 0;
}

.register-blue {
  z-index: 4;
}

.register-variable:before {
  background-color: var(--color);
}

.register-variable-dark:before {
  background-color: var(--color);
  filter: brightness(85%);
}

.register-green:before {
  background-color: #00FFC3;
}

.register-blue:before {
  background-color: #67A1FF;
}

.register-dark-blue:before {
  background-color: #1D74FF;
}

.register-dark-green:before {
  background-color: #00B998;
}

.register-yellow:before {
  background-color: #FFF07E;
}

.register-dark-yellow:before {
  background-color: #FEE101;
}

.register-grey:before {
  background-color: #E0DEE2;
}

.form-control {
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  outline: none;
}

.form-control:active, .form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #00FFC3;
}

input.form-control:invalid {
  box-shadow: none;
  border-bottom: 1px solid red;
}

.form-check-input {
  margin-top: 0.5rem;
}

.form-check-label {
  padding-left: 0.5rem;
}

.two-columns {
  column-width: 450px;
  column-gap: 60px
}

.swiper-container {
  padding-bottom: 2rem;
}

.swiper-slide {
  padding-left: 4rem;
}

.swiper-slide h3 {
  margin-bottom: 1.5em;
}

.swiper-container > .swiper-pagination-bullets {
  text-align: left;
  left: 4rem;
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  border: 1px solid #000;
  border-radius: 0.25rem;
  transition: all 300ms ease;
}

.swiper-pagination-bullet-active {
  background-color: rgba(0, 0, 0, 1);
}

.news-swiper-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.25rem;
  line-height: 0.7;
}

.staff-image {
  position: relative;
}

.staff-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.staff-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 3rem;
}

.staff-intro {
  margin-top: 2rem;
  font-size: 0.9em;
}


.staff-text {
  font-size: 0.85em;
}

#categories .tab-pane.active {
  display: flex;
  flex-wrap: wrap;
}

.topic-category-selection {
  font-size: 1.1rem;
}

.topic-category-selection a {
  margin-bottom: 0.5em;
}

.topic-category-selection .active {
  text-decoration: underline;
}

.topics a,
.category-option {
  display: inline-block;
  border-radius: 1.5em;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}

.topics a.active,
.category-option.active {
  background-color: #E6E6E6;
}

.w2rem, .collapse-plus, .collapse-minus {
  width: 2rem;
}

[aria-expanded="false"] .collapse-minus {
  display: none;
}

[aria-expanded="true"] .collapse-minus {
  display: inline-block;
}

[aria-expanded="true"] .collapse-plus {
  display: none;
}



/* -------------------- PUBLICATIONS -------------------- */
.publication {
  height: 25rem;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0 3px 20px rgba(0,0,0,0.7);
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  transition: all 300ms ease;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* Chrome */
.publication::-webkit-scrollbar {
  display: none;
}

.publication > a > div:first-child,
.publication-moveable > div:first-child >a {
  font-size: 0.95rem;
  line-height: 1.15;
  display:inline-block;
}

.publication-moveable {
  position: relative;
}

.publication-moveable:hover .publication {
  transform: translateX(110%);
}

.publication-overlay,
.publication-overlay-moveable,
.video-publication-moveable {
  background-color: #fff;
  border-radius: 0 5rem 5rem 0;
  position: absolute;
  top: 3.5rem;
  right: 0;
  bottom: 0;
  left: 0;
  padding-right: 6rem;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  transition: all 300ms ease;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.publication-overlay,
.publication-overlay-moveable {
  display: flex;
  align-items: flex-start;
}

.publication:hover .publication-overlay-moveable {
  left: -100%;
  right: 100%;
}

.publication-overlay img,
.publication-overlay-moveable img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.publication-abstract .authors p{
  display:inline;
}
.publication-abstract,
.publication-abstract-moveable
{
  font-size: 0.9rem;
  padding: 2rem 2.5rem 2rem 0rem;
  transition: all 300ms ease;
}

.publication-moveable .publication-abstract {
  padding-top: 1.0rem;
}

.publication:hover .publication-abstract-moveable {
  transform: translateX(100%);
}
.publication-abstract p{
  margin-bottom:0.5rem;
}

.video-publication-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.video-publication-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-publication-wrapper .color-tile {
  position: absolute;
  top: -2.5rem;
  right: 0;
  bottom: 0;
  left: 50%;
  padding: 0.5rem;
  box-shadow: 0 3px 20px rgba(0,0,0,0.4);
}

.video-publication-wrapper .video-publication-preview-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border-radius: 0 5rem 5rem 0;
  overflow: hidden;
  transition: all 300ms linear;
}

.video-publication-wrapper:hover .video-publication-preview-wrapper {
  width: 100%;
  border-radius: 5rem 5rem 5rem 5rem;
}

.video-publication-wrapper.play .video-publication-preview-wrapper {
  width: 100%;
  border-radius: 0;
}

.video-publication-wrapper .video-publication-preview-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.video-publication-wrapper.play .video-publication-preview-wrapper img {
  opacity: 0;
}

.video-publication-wrapper .video-publication-preview-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: all 300ms linear;
}

.video-publication-wrapper.play .video-publication-preview-wrapper svg {
  opacity: 0;
}

.video-publication-wrapper .video-publication-preview-wrapper iframe {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
  z-index: 3;
}

.video-publication-wrapper .video-publication-preview-wrapper.play iframe {
  display: block;
}

.video-publication-wrapper.play .video-publication-preview-wrapper iframe {
  display: block;
}

.video-publication-description {
  width: 50%;
  margin-left: 50%;
}


.video-publication {
  position: relative;
  margin: 2.5rem 0 0rem;
}

.video-publication-subtitle {
  width: 50%;
  margin-left: 50%;
}

.publication-video > div:before,
.video-publication:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-publication-card {
  position: absolute;
  top: -2.5rem;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0 0 0.5rem;
  box-shadow: 0 3px 20px rgba(0,0,0,0.4);
  left: 50%;
  z-index: 1;
}

.video-publication:hover .video-publication-video,
.video-publication.play .video-publication-video
{
  left: 0;
}

.video-publication-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms linear;
}

.publication-vide.play,
.video-publication.play .video-publication-video {
  cursor: initial;
}

.publication-video .video-preview,
.video-publication-preview {
  position: absolute;
  top: 0;
  right:0;
  width: 200%;
  height: 100%;
  right: 0;
  transition: all 300ms linear;
  z-index: 5;
}

.publication-video .video-preview,
.video-publication:hover .video-publication-preview,
.video-publication.play .video-publication-preview {
  width: 100%;
}

.publication-video .video-preview img,
.video-publication-video img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5rem;
  z-index: 5;
}

.publication-video .video-preview svg,
.video-publication-preview svg {
  position: absolute;
  top: 50%;
  left: 75%;
  z-index: 10;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 300ms linear;
}

.publication-video .video-preview svg,
.video-publication:hover .video-publication-preview svg,
.video-publication.play .video-publication-preview svg {
  left: 50%;
}

.publication-video iframe,
.video-publication-video iframe {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
  z-index: 3;
}

.publication-video.play iframe,
.video-publication.play .video-publication-video iframe {
  display: block;
}

.publication-video {
  position: relative;
  cursor: pointer;
}
.iframe-wrapper{
  box-shadow: 5rem 0 0 green;
}
.iframe-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color);
  z-index: 100;
  height: 50vh;
}

.iframe-header > .container {
  height: 2.5rem;
  display: flex;
  align-items: center;
}

.iframe-header p {
  margin-bottom: 0;
}

.loading-publication-iframe {
  position: absolute;
  top: 30vh;
  left: 50vw;
  transform: translateX(-50%);
  z-index: -1;
}

.publication-container {
  min-height: calc(100vh - 2.5rem);
  z-index: 200;
  background: white;
  border-radius: 0 5rem 0 0;
  position: relative;
  top: 2.5rem;
  padding-top: 1rem;
}

iframe {
  border: none;
}

/*.publication-image {
  position: relative;
  top: -4rem;
  width: 75%;
}*/

.newsletter-form input.form-control,
.newsletter-form input.form-control::placeholder {
  font-size: 1.5rem;
  color: #000;
}

#pdfs{
  margin-bottom:5rem;  
}
.pdf-list-group h5{
  color: #000;
  font-family:"Helvetica Neue", "Neue Helvetica W05", Arial, sans-serif;
  font-weight:400;
}
.pdf-list-group .list-group-item{
  border-color:black;
  padding:2.5rem 0;
}
.pdf-list-group .list-group-item:hover{
  background:none;  
}
.paper-logo{
  width: 100%;
  max-width: 80px;
}
.paper-logo-container {
    width: 80px;
    margin-right: 40px;
    flex-grow: 0;
    flex-shrink: 0;
}

.doc-download {
  display: block;
  padding-bottom: 5px;
}

/* --- NAVIGATION --- */
.main-nav ul{  
  display: flex;
  margin: 1rem 0 0;
  padding: 0;
}

.main-nav ul li{  
  list-style: none;
  margin-right: 1.5rem;
}

.main-nav a.active, .main-nav a:hover {
  border-bottom: 2px solid rgba(0, 0, 0, 1);
}

/* --- SLIDE NAV --- */
#slide_nav{
  display: none;
}

#slide_nav a {
  font-size: 1.5rem;
  color: #fff;
}

#slide_nav a:hover, #slide_nav a.active {
  border-bottom: 2px solid rgba(255, 255, 255, 1);
}

#slide_content{
  background-color: white;
}


/* --- HAMBURGER ANIMATION --- */
.burger-wrapper{
  display: none;
  padding-top: 10px;
}

.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity,-webkit-filter;
  transition-property: opacity,-webkit-filter;
  transition-property: opacity,filter;
  transition-property: opacity,filter,-webkit-filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger .hamburger-inner, .hamburger .hamburger-inner:after, .hamburger .hamburger-inner:before {
  background-color: black;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 4px;
  background-color: #000;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger--arrow .hamburger-inner{
  background-color: rgba(0, 0, 0, 0) !important;
}

.hamburger--arrow .hamburger-inner:before {
  -webkit-transform: translate3d(-8px,2px,0) rotate(40deg) scaleX(.7);
  transform: translate3d(-8px,2px,0) rotate(40deg) scaleX(.7);
}

.hamburger--arrow .hamburger-inner:after {
  -webkit-transform: translate3d(-8px,-2px,0) rotate(-40deg) scaleX(.7);
  transform: translate3d(-8px,-2px,0) rotate(-40deg) scaleX(.7);
}

.banner {
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  width:100%;
  height:40vh;
}

#map {
  width: 100%;
  position: relative;
}

#map:before {
  content: "";
  display: block;
  padding-top: 56.54%;
}


/* -------------------- FOOTER -------------------- */

footer {
  margin-top: 10rem;
}
footer img{
 margin-left: -72px;
}
ul {
  list-style: none;
  padding: 0;
}



/* -------------------- BOOTSTRAP 4 MEDIAQUERIES -------------------- */

/* This is the top-down version of bootstrap mediaquery where large desktop is the default (no mediaquery) version */

@media (max-height: 700px) {
.register-right,
.register-left {
  min-height: 700px;
}
}


/* Large devices (desktops, less than 1200px) */
@media screen and (max-width: 1199.98px) {

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
.register-left:before {
  right: 10%;
  border-radius: 0 10rem 10rem 0;
}

.register-right:before {
  left: 10%;
  border-radius: 10rem 0 0 10rem;
}

.register-left-short:before {
  right: 25%;
  border-radius: 0 10rem 10rem 0;
}

.register-right-short:before {
  left: 10%;
  border-radius: 10rem 0 0 10rem;
}

.publication-image {
  width: calc(100% - 5rem);
}

.iframe-header h1 {
  font-size: 1.5rem;
}

.pullup-15rem {
  margin-top: -3rem;
}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
.publication-moveable:hover .publication {
  transform: translateX(0);
}

.publication-moveable:hover .publication {
  box-shadow: none;
}

.publication-moveable {
  box-shadow: 0 3px 20px rgba(0,0,0,0.7);
  overflow: hidden;
}

.publication-moveable:hover .publication-overlay {
  transform: translateX(-100%);
}

.video-publication-wrapper .video-publication-preview-wrapper {
  width: 100%;
  border-radius: 2rem 2rem 2rem 2rem;
}

.video-publication-wrapper, .video-publication-preview-wrapper {
  width: 100%;
  border-radius: 2rem 2rem 2rem 2rem;
}

.video-publication-wrapper .color-tile {
  left: 0;
}

.video-publication-description {
  width: 100%;
  margin-left: 0;
}

.publication-image {
  width: calc(100% - 5rem);
}

.brand-title {
  font-size: 4rem;
}

.register-bottom:before {
  border-radius: 0;
}

.register-left,
.register-right {
  height: auto;
  padding: 8.5rem 0;
}

.register-left-short:before {
  right: 10%;
}

.register-left-short:before {
  left: 0;
}
.register-right-short:before{
  left: 10%;
}
.register-right-short,
.register-left-short {
  height: auto;
  padding: 7rem 0;
  /*margin-top: 0;*/
}

.publication {
  min-height: 20rem;
  height: auto;
}

.publication-overlay {
  top: 3.5rem;
  padding-top: 3rem;
  padding-left: 0.2rem;
  padding-bottom: 3rem;
  padding-right: 0.2rem;
}

.video-publication-card {
  top: -3.5rem;
}

#map {
  border-radius: 0;
}

.newsletter-form input.form-control,
.newsletter-form input.form-control::placeholder {
  font-size: 1rem;
}


.iframe-header h1 {
  font-size: 1.1rem;
}
footer img{
 margin-left: 0;
}
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
.brand-title {
  font-size: 2.8rem;
}

.row-add-1rem {
  margin-left: -15px;
  margin-right: -15px;
}

.publication-image {
  top: -1rem;
  width: 100%;
}

/* --- SLIDE NAV --- */
header .container {
  text-align: right;
}

#slide_nav{
  height: 100%;
  width: 100%;
  display: block;
  background: #424242;
  position: fixed;
  top: 0;
  right: 0;
  padding-left: 30vw;
}

#slide_content{
  Background: white;
  min-height: 100vh;
  box-shadow: -6px 0px 40px rgb(0, 0, 0);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: 0.4s -webkit-transform;
  transition: 0.4s -webkit-transform;
  transition: 0.4s transform;
  transition: 0.4s transform, 0.4s -webkit-transform;
}

#slide_content.open{
  -webkit-transform: translateX(-70vw);
  transform: translateX(-70vw);
}

#slide_nav.open .side-nav-content{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";  
}

.side-nav-content{
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  margin: 26px;
  margin-top: 75px;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.side-nav-content .active{
  color: white;
}

.side-nav-content ul{
  padding: 0;
  list-style: none;
}

.side-nav-content a:hover {
  color: white !important;
}

.burger-wrapper{
  display: inline-block;
}

.logo{
  float: right;
}

.logo img{
  height: 50px;
}

.iframe-header {
  padding-right: 0;
}

.iframe-header > .container {
  height: 2.5rem;
}

.publication-container {
  top: 2.5rem;
  border-radius: 0;
  padding-right: 0;
}
.swiper-slide{
  padding-left:0;
}
.news-swiper-number{
  position:relative;  
}
}
.publication-container h2 {
  margin-top: 20px;
}

.vimeo iframe {
  max-width: 100%;
}