#hero {
  margin: 0 auto;
  padding: 120px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero_tag {
  margin-bottom: 0px;
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-transform: uppercase;
}
#hero h1 {
  font-size: 3.75rem;
  line-height: 4.5rem;
}

#hero .container {
  display: flex;
/*   flex-wrap: wrap; */
  gap: 60px;
/*   justify-content: space-between; */
  position: relative;
  z-index: 10;
}


.hc_copy {
/*   flex: 0 1 600px; */
  max-width: 600px;
  min-width: 450px;
}

.hc_video {
  margin-bottom: 150px;
  flex: 1;
  min-width: 450px;
  max-width: calc(100% - 660px);
}

.hero_gradient {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  background-color: #4B97CA;
/*   background: var(--gradient-6) no-repeat left center;
  background-size: cover; */
}
.cutout img {
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.frost {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  backdrop-filter: blur(40px);
}

.blob_1 {
  height: 60%;
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(107,215,183,1);
  border-radius: 50px;
  box-shadow: 0 0 40px 10vw rgba(130,215,198,.6), 0 0 50px 14vw rgba(104,186,197,.4);
  filter: blur(10px);
  animation: moveHorizontal 20s linear infinite;
}
.blob_2 {
  height: 40%;
  width: 35%;
  position: absolute;
  bottom: 0;
  right: -10%;
  z-index: 3;
  background-color: rgba(9,37,110, .8);
  border-radius: 50%;
  box-shadow: 0px 0px 40px 6vw rgba(5,51,131,.7), 0px 0px 30px 10vw rgba(5,67,156,.4);
  filter: blur(10px);
  animation: moveEratic 30s linear infinite;
}
.blob_3 {
  height: 8%;
  width: 15%;
  position: absolute;
  top:0;
  left: 0;
  z-index: 4;
  background-color: rgba(234, 250, 255, .9);
  border-radius: 50px;
  box-shadow: 0px 0px 75px 75px rgba(234, 250, 255, .7), 0px 0px 100px 130px rgba(234, 250, 255, .5), 0px 0px 200px 150px rgba(234, 250, 255, .2);
  filter: blur(10px);
  animation: moveVertical 5s linear infinite;
}
.blob_4 {
  height: 10%;
  width: 5%;
  position: absolute;
  top:0;
  right: 0;
  z-index: 1;
  background-color: rgba(154, 198, 237, 1);
  border-radius: 50px;
  box-shadow: 0px 0px 75px 75px rgba(154, 198, 237, 1), 0px 0px 100px 130px rgba(154, 198, 237, .2);
  animation: moveVertical2 20s linear infinite;
}

.cutout {
  height: fit-content;
  width: 100%;
  position: absolute;
  display: flex;
  bottom: -2px;
  z-index: 900;
}


@keyframes moveHorizontal {
  0% {
    right: 0;
    transform: skew(0deg) rotate(0deg);
  }
  50% {
    right: 30%;
    transform: skew(10deg) rotate(180deg);
  }
  100% {
    right: 0;
    transform: skew(0deg) rotate(0deg);
  }
}

@keyframes moveVertical {
  0% {
    top: 0;
    left: 0;
  }
  50% {
    top: 8%;
    left: 3%;
  }
  100% {
    top: 0;
    left: 0;
  }
}

@keyframes moveVertical2 {
  0% {
    top: 0%;
    right: 0%;
  }
  50% {
    top: 5%;
    right: 20%;
  }
  100% {
    top: 0%;
    right: 0%;
  }
}

@keyframes moveEratic {
  0% {
    bottom: 0%;
    right: 0%;
    transform: skew(0deg) rotate(0deg);
  }
  33% {
    bottom: 15%;
    right: 10%;
    transform: skew(10deg) rotate(75deg);
  }
  66% {
    bottom: 15%;
    right: 5%;
    transform: skew(10deg) rotate(150deg);
  }
  100% {
    bottom: 0%;
    right: 0%;
    transform: skew(0deg) rotate(360deg);
  }
}

@media (max-width: 1100px) {
  #hero {
    padding-top: 50px;
  }
  #hero .container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .hc_copy {
    min-width: 0;
    max-width: none;
  }
  #hero h1, #hero .subtitle {

  }
  .hc_video {
    margin-bottom: 75px;
    max-height: 40vh;
    width: calc(40vh * (16 / 9));
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  #hero .container {
    padding-left: 40px;
  }
  #hero h1 {
    font-size: 2.5rem;
    line-height: 2.95rem;
  }