.landing-text span {
  display: block;
}

.landing-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.landing-section:before {
  content: " ";
  display: block;
  width: 100%;
  padding-bottom: 40%;
}

.landing-section-content {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  z-index: 5;
}

.landing-section .landing-video {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

@media screen and (max-width: 1280px) {
  .landing-section .landing-video {
    width: 105%;
    right: auto;
    left: 0px;
  }

  .landing-text {
    width: 50%;
  }

  .landing-text span {
    display: inline;
  }
}

@media screen and (max-width: 820px) {
  .landing-section .landing-video {
    width: 150%;
  }

  .landing-section {
    min-height: 0px;
  }

  .landing-section:before {
    display: none;
  }

  .landing-section-content {
    position: relative;
    left: auto;
    top: auto;
    width: inherit;
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .landing-section .landing-video {
    display: none;
  }

  .landing-text {
    width: 100%;
  }
}

.insights-cols {
  padding-top: 40px;
}

.insights-cols .insight {
  display: block;
}

.insights-cols .insight:before {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-dark-blue);
  margin-bottom: 15px;
}

.insights-cols .insight h4,
.insights-cols .insight h3 {
  padding-bottom: 20px;
}


/* New code  */

/* .border-left{
  border-left: 1px solid #5a4691;
} */

.left{
  margin-left: 45px;
  text-align: right;
  padding-left: 10px;
}


.left h3:hover{
  color: black;
  
  }

  section.header-section-partner img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: fill;
    pointer-events: none;
  }

  @media screen and (max-width: 986px){
    .left{
      margin-left: 0px;
      text-align: left;
      padding-left: 0;
      padding-top: 20px;
    }
    .border-left{
      border-left: none;
      
    }
    section.header-section-partner img {
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      z-index: 1;
      object-fit: cover;
      pointer-events: none;
    }
  }