/* Bootstrap */
/* Vendors */
.scroll-animation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  cursor: pointer; }
  @media (max-height: 500px) {
    .scroll-animation {
      display: none; } }
  @media (max-width: 767.98px) {
    .scroll-animation {
      display: none !important; } }
  .scroll-animation__caption {
    margin-left: 0.625rem;
    text-transform: uppercase;
    font-size: 0.625rem;
    font-weight: 700; }
  .scroll-animation__mouse {
    display: inline-block;
    border-radius: 0.9375rem;
    border: 1px solid currentColor;
    text-align: center;
    width: 1.5rem;
    height: 2.75rem;
    -webkit-animation: scrollMouse 1.8s ease-out infinite forwards;
            animation: scrollMouse 1.8s ease-out infinite forwards; }
  .scroll-animation__dot {
    display: inline-block;
    font-size: 0.5rem;
    background-color: currentColor;
    border-radius: 50%;
    content: "";
    -webkit-animation: scrollDot 1.8s ease-out infinite forwards;
            animation: scrollDot 1.8s ease-out infinite forwards;
    width: 0.3125rem;
    height: 0.3125rem;
    left: 0;
    right: 0;
    top: 20%;
    text-align: center;
    margin: 0 auto;
    position: absolute; }

@-webkit-keyframes scrollDot {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes scrollDot {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes scrollMouse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(13px);
            transform: translateY(13px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes scrollMouse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(13px);
            transform: translateY(13px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.header--modal {
  overflow: hidden;
  position: relative; }
  .header--modal::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: inherit;
    z-index: 1; }
  .header--modal .play-button {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: width .2s;
    transition: width .2s; }

.modal-video-embed .modal-content {
  background-color: #000000; }

.modal-video-embed .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.modal-video-embed .close {
  color: #F0E8DB; }
