/* What We Do Section */

.content {
  position: absolute;
  z-index: 1;
}

.next-section {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
}

#what-we-do {
  display: flex;
  height: 100vh;
}

.left-col {
  flex: 1;
  opacity: 0;
}

.left-col p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #000;
}

/* Right Column */
/* .right-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding-left: 5%;
} */
.right-col {
  flex: 1;
  position: relative;
  overflow: visible;
  padding-left: 0;
  margin-right: -5%;
}
/* Skewed Divs Container */
.skew-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: space-around;
}

/* Individual Skewed Divs */
.skew-div {
  flex: 1;
  height: 103vh;
  margin: 5px;
  background-size: cover;
  background-position: center;
  transition: flex 0.3s ease, transform 0.3s ease;
  transform: skew(-5deg, 5deg);
}

/* Hover Effect */
.skew-div:hover {
  flex: 6;
  /* transform: skew(-5deg, 5deg); */
}

.skew-div:not(:hover) {
  flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  #what-we-do {
    flex-direction: column;
    height: auto;
    margin-top: 25%;
  }

  .left-col,
  .right-col {
    flex: none;
    width: 100%;
  }

  .skew-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .skew-div {
    width: 100%;
    height: 200px;
    margin: 0;
    transform: none;
  }
}

section#what-we-do .left-col {
  padding-left: 5%;
}
.content p {
  color: #000;
}

.text-container h1 {
  font-family: Lato;
  font-size: 20px;

  font-weight: 500;
  line-height: 21px;
  text-align: left;
  margin-bottom: 16px;
}
.text-container h2 {
  font-family: Lato;
  font-size: 20px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  margin-bottom: 16px;
}
.text-container p {
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 18.9px;
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .text-container h1,
  .text-container h2,
  .text-container p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .text-container {
    padding-right: 0;
  }
  /* .content {
    width: 60%;
  }
  .video-bg {
    width: 40%;
  } */
  img.img-expand {
    transform: skew(0) !important;
    height: 200px !important;
  }
  #img-container {
    height: 200px !important;
  }
}
