html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

* {
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  margin: 0;
  padding: 0;
}

.main {
  position: relative;
  width: 100vw;
  height: 70vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay .focus-left,
.overlay .focus-right {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.overlay .focus-left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,1.55),
    rgba(0,0,0,0)
  );
}

.overlay .focus-right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,1.55),
    rgba(0,0,0,0)
  );
}

.overlay .content {
  position: absolute;
  bottom: 40px;      
  left: 40px;        
  z-index: 3;
  text-align: left;   
  color: white;
  padding: 0;         
  font-family: 'Poppins', sans-serif;
  max-width: 50%;     
}

.title {
  font-size: 3em;
  margin-bottom: 10px;
}

.description {
  font-size: 1.5em;
  max-width: 90%;
}

@media (max-width: 768px) {

  .main {
    height: 60vh;
  }

  .overlay .focus-left,
  .overlay .focus-right {
    width: 20%;
  }

  .overlay::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0)
    );
    z-index: 2;
    pointer-events: none;
  }

  .overlay .content {
    left: 35%;
    bottom: 20px;
    transform: translateX(-50%);
    text-align: left;
    max-width: 90%;
    padding: 0 16px;
    z-index: 3;
  }

  .title {
    font-size: 1.8em;
  }

  .description {
    font-size: 1em;
    max-width: 100%;
  }
}