/* Paragraph Introduction */
.field--name-field-paragraphes > .field__item.with-introduction {
  margin-top: 91vh;
}

header.with-introduction {
  position: absolute !important;
  top: 100vh !important;
}

body.with-introduction.user-logged-in {
  margin-top: -79px
}

body.gin--horizontal-toolbar header.header-fixed {
  top: 113px !important;
}

header.header-fixed {
  position: fixed !important;
  top: 0 !important;
}

.logo-intro {
  filter: invert(1);
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
}

@keyframes hideIntroduction{
  from {
    top: 0;
    bottom: 0;
  }

  to   {
    top: -50vh;
    bottom: 50vh;
  }
  to   {
    top: -100vh;
    bottom: 100vh;
  }
}

@keyframes hideIntroductionForPage{
  from {
    margin-top: 100vh;
  }

  to   {
    margin-top: 50vh;
  }
  to   {
    margin-top: 0;
  }
}

body.no-scroll {
  overflow: hidden;
}

body.without-introduction {
  margin-top: 0;
  animation: hideIntroductionForPage 1s ease;
}

.introduction {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2003;
  color: #fffffd;
  background-color: black;
}

.introduction.hideIntroduction {
  animation: hideIntroduction 1s ease;
  top: -200vh;
  bottom: unset;
}

.introduction .introduction-background {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden
}

.introduction .introduction-background .media-video,
.introduction .introduction-background .media-video iframe{
  width: 100%;
  height: 100%;
}

.introduction .introduction-background img {
  height: fit-content;
  width: 100%;
  max-width: none;
}

.introduction-subtitle {
  position: absolute;
  top: 50%;
  text-align: center;
  width: auto;
  margin: auto;
  font-size: 32px;
  font-family: 'Cormorant Garamond';
  margin: 0;
  width: 100%;
  pointer-events: none;
}

.introduction-chevron-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.introduction .chevron {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding-bottom: 30px;
  /* position: relative; */
}

.introduction .chevron span {
  font-size: 29px;
  font-weight: bold;
  text-shadow: 1px 1px 1px grey;
}

@keyframes bounce{
  from {bottom: 0px;}
  50%  {bottom: 5px;}
  to   {bottom: 0px;}
}

.introduction-chevron-text.chevron:before {
  content: '';
  background-image: url(/themes/aurige_bootstrap/images/lefevre/arrow-white.svg);
  position: absolute;
  width: 100%;
  height: 30px;
  z-index: 10000;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  transform: rotate(90deg);
  animation: bounce 0.5s ease infinite;
  cursor: pointer;
}

@media only screen and (max-width: 1370px){
  .introduction .introduction-background img {
    height: 100%;
    width: auto;
  }
}
