.inverted-icons{
  padding: 10rem 10px;
}

.inverted-icons--blue{
  background-color: #EFF1FF;
}

.row{
  max-width: 1400px;
  margin: auto;
}

.container__superheader{
  width: 100%;
  height: 200px;
}

.inverted-icons--white{
  background-color: #ffff
}

.row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: var(--gap);
  padding: 0px 5rem;
}

.row__content-block img,
.row__content-block--full-span img{
  max-width: 80px;
  max-height: 80px;
}

.row__content-block{
  padding: 1rem;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 300px
}

.container--wide{
  width: calc(100vw - 50px);
}

.row__content-block--full-span{
  grid-column: 1 / span 3;
  text-align: center;
}

.row__content-block--full-span h3{
  font-size: 1.8rem;
}

.video-hero,
.image-hero{
  height: 100svh;
}

.video-hero__video-wrap:after,
.image-hero__image-wrap:after{
  background-image: linear-gradient(70deg, #0D0155 50%, #3A83F3 80%);
  opacity: 0.5;
}

@media (width >= 960px){
  .video-hero__video-wrap:after,
  .image-hero__image-wrap:after{
    background-image: linear-gradient(90deg, #000000 .50%, #000000 50%);
    opacity: 0.7;
  }
}

/*NEW CSS ATTRIBUTES
.parent h1,
.child h2{
  color: var(--header-corporate-colour);
}*/

/*---------------------------------------------------------------*/

@keyframes chevron-animation {
  0%      {margin-bottom: 0px;}
  50%     {margin-bottom: 10px;}
  100%    {margin-bottom: 0px;}
}

.downward-chevron{
  animation-name: chevron-animation;
  animation-duration: 1s;
  margin-bottom: 0px;
  animation-iteration-count: infinite;
}

.video-hero__row,
.image-hero__row{
  align-items: flex-end;
}

.video-hero__content{
  width: 450px;
} 

.video-hero__content h2{
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.video-hero__content a.btn{
  font-size: 16px;
  padding: 12px 20px;
  font-weight: 500;
  margin-top: 2rem;
  border-radius: 60px;
}

@media (width >= 621px){

  .video-hero__content h1{
    font-size: 2.625rem;
  }

}

@media (width >= 678px){
  .video-hero__row,
  .image-hero__row{
    align-items: center;
  }

  .video-hero__content{
    width: 600px;
  }

}

@media screen and (max-width: 700px){
  .container--wide{
    width: 100%;
  }
}

@media (width >= 900px){
  .video-hero__content{
    max-width: 35.625rem;
  }

  .video-hero__row{
    margin-left: 6rem;
  }
}