/* MAIN WRAPPER */
.safeguard-sections {
  position: relative;
  width: 100%;
  min-height: 450px;
  border-radius: 24px;
  overflow: hidden;
  padding: 5rem 3rem;
  color: #fff;
}

/* TRUE BACKGROUND VIDEO */
video.bg-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -100;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* CONTENT ABOVE VIDEO */
.safeguard-content {
  position: relative;
  z-index: 5; /* IMPORTANT */
}

/* LEFT + RIGHT STYLING */
.borderarea {
  border-right: 1px solid #929292;
  padding: 40px 0;
}

.borderareatext {
  padding: 30px 0 30px 50px;
}

.safeguard-sections .left-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 280px;
}

.safeguard-sections .btn-link {
  color: #fff;
  margin-top: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.safeguard-sections h2 {
  font-size: 66px;
  font-weight: 400;
  line-height: 100px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .safeguard-sections {
     padding: 2rem 1.5rem;
     text-align: center;
  }
  .borderarea {
     border-right: none;
  }
  .borderareatext {
     padding: 20px 0;
  }
  .safeguard-sections h2 {
     font-size: 1.8rem;
     line-height: 2.5rem;
  }
}
a.btn-link.reveal-left.show:after {
    content: "→";
    margin-left: 6px;
    font-size: 1.1rem;
}
