
.section-welcome {
    padding-top: 7vw;
    overflow: hidden;
    position: relative;
    height: 100vh;
    color: #fff;
}
.section-welcome:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    opacity: 0.66;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.welcome-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}
.welcome-logo {
    width: 562px;
    max-width: 80%;
    margin-bottom: -5%;
}
.section-welcome h1,
.section-welcome .h1 {
    margin-top: 0;
    margin-bottom: 0;
}


.down {
    position: absolute;
    width: 216px;
    height: 122px;
    top: 100%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icons/down-bg.svg) no-repeat center;
    background-size: 100%;
    left: 50%;
    padding-bottom: 32px;
}
.down a {
    width: 26px;
    height: 37px;
    background: url(../img/icons/down-arrow.svg) no-repeat center;
    background-size: 100%;
    display: block;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) scale(.8);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1199px) {
  .section-welcome {
    padding-top: 14vw;
    height: auto;
    min-height: 90vh;
  }
  
}
@media (max-width: 767px) {
  .welcome-logo {
    width: 340px;
    margin-bottom: -12px;
}
 .section-welcome {
    padding-top: 140px !important;
  }
}
