.jumbotron {
  height: 1000px;
  position: relative;
  padding-top: 0;
}

.jumbotron::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 89, 255, 0.7), rgba(0, 89, 255, 0.3));
  z-index: 1;
}

.jumbotron-caption {
  margin-bottom: 40px;
  z-index: 5;
  padding: 0 15px;
}

.jumbotron-caption h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

.jumbotron span {
  background: linear-gradient(to bottom, white 1%, #3cff00 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jumbotron-caption label {
  font-size: 1rem;
  padding-right: 0;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.jumbotron-caption a {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 100px;
  color: #1357D5;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: white;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.jumbotron-caption a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  border-radius: 100px;
}

.jumbotron-caption a img {
  height: 25px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}

.jumbotron-caption a img:first-of-type {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.jumbotron-caption a img.hover-image {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  opacity: 0;
  margin-right: 0;
}

.jumbotron-caption a span {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #1357D5, #1357D5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: color;
}

.jumbotron-caption a:hover {
  background: linear-gradient(90deg, #1357D5, #1eff00);
  border: 2px solid white;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.jumbotron-caption a:hover::before {
  opacity: 0;
}

.jumbotron-caption a:hover span {
  background: linear-gradient(90deg, #fff, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jumbotron-caption a:hover img:first-of-type {
  opacity: 0;
  transform: scale(0.85);
}

.jumbotron-caption a:hover img.hover-image {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.jumbotron-caption p {
  font-size: 0.9rem;
  margin-top: 15px;
}

.jumbotron video {
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  object-fit: cover;
}

.jumbotron .jumbotron-caption {
  bottom: 0;
  left: 0;
}

.img-line-cut {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  border-bottom: 1px solid white
}

@media (min-width: 576px) {
  .jumbotron {
    height: 600px;
  }

  .jumbotron::before {
    width: 70%;
    background: linear-gradient(to right, rgba(0, 89, 255, 0.65), transparent);
  }

  .jumbotron-caption {
    margin-bottom: 50px;
  }

  .jumbotron-caption h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .jumbotron-caption label {
    font-size: 1.2rem;
    padding-right: 20%;
    margin-bottom: 25px;
  }

  .jumbotron-caption a {
    font-size: 1.2rem;
    padding: 12px 25px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .jumbotron-caption a img {
    height: 30px;
    margin-right: 15px;
  }

  .jumbotron-caption a img.hover-image {
    left: 25px;
  }

  .jumbotron-caption p {
    font-size: 1.1rem;
    margin-top: 20px;
  }

  .img-line-cut {
    bottom: -10px;
  }
}

@media (min-width: 768px) {
  .jumbotron {
    height: 750px;
  }

  .jumbotron::before {
    width: 60%;
  }

  .jumbotron-caption {
    margin-bottom: 70px;
  }

  .jumbotron-caption h1 {
    font-size: 4rem;
    margin-bottom: 25px;
  }

  .jumbotron-caption label {
    font-size: 1.5rem;
    padding-right: 30%;
    margin-bottom: 30px;
  }

  .jumbotron-caption a {
    font-size: 1.4rem;
    padding: 12px 28px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .jumbotron-caption a img {
    height: 35px;
    margin-right: 18px;
  }

  .jumbotron-caption a img.hover-image {
    left: 28px;
  }

  .jumbotron-caption p {
    font-size: 1.3rem;
    margin-top: 25px;
  }

  .img-line-cut {
    bottom: -10px;
  }
}

@media (min-width: 992px) {
  .jumbotron {
    height: 900px;
  }

  .jumbotron::before {
    width: 55%;
  }

  .jumbotron-caption {
    margin-bottom: 80px;
  }

  .jumbotron-caption h1 {
    font-size: 5rem;
    margin-bottom: 30px;
  }

  .jumbotron-caption label {
    font-size: 1.8rem;
    padding-right: 45%;
    margin-bottom: 35px;
  }

  .jumbotron-caption a {
    font-size: 1.6rem;
    padding: 10px 30px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .jumbotron-caption a img {
    height: 38px;
    margin-right: 20px;
  }

  .jumbotron-caption a img.hover-image {
    left: 30px;
  }

  .jumbotron-caption p {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .img-line-cut {
    bottom: -10px;
  }
}

@media (min-width: 1200px) {
  .jumbotron {
    height: 1000px;
  }

  .jumbotron::before {
    width: 50%;
    background: linear-gradient(to right, rgba(0, 89, 255, 0.568), transparent);
  }

  .jumbotron-caption {
    margin-bottom: 100px;
  }

  .jumbotron-caption h1 {
    font-size: 6rem;
    margin-bottom: 35px;
  }

  .jumbotron-caption label {
    font-size: 2rem;
    padding-right: 60%;
    margin-bottom: 40px;
  }

  .jumbotron-caption a {
    font-size: 1.7rem;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .jumbotron-caption a img {
    height: 40px;
  }

  .jumbotron-caption p {
    font-size: 1.7rem;
    margin-top: 35px;
  }

  .img-line-cut {
    bottom: -15px;
    border-bottom: 5px solid white
  }
}

@media (min-width: 1400px) {

  .jumbotron-caption h1 {
    font-size: 6.5rem;
  }

  .jumbotron-caption label {
    font-size: 2.2rem;
    padding-right: 65%;
    margin-bottom: 0;
  }

  .jumbotron-caption a {
    font-size: 1.8rem;
  }

  .jumbotron-caption a img {
    height: 42px;
  }

  .jumbotron-caption p {
    font-size: 1.8rem;
  }
}