.whatwe-do {
  width: 100%;
  color: #111;
  font-family: var(--main-font1);
  padding: 100px 0;
  background-image: url("./pattern.svg");
  background-size: cover;
  background-position: center;
  background-color: var(--secondary)
}

.whatwe-do--box {
  display: flex;
  gap: 2rem;
  justify-content: space-between;;
}
.whatwe-do--box h2 {
  font-family: var(--main-font1);
  font-weight: 800;
  max-width: 630px;
  font-size: 36px;
}

.whatwe-do--content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}
.whatwe-do--content p {
  font-weight: 600;
  max-width: 500px;
  font-size: 1.3rem;
  line-height: 2.5rem;
}
.whatwe-do--content button {
  font-size: 18px;
  padding: 14px 20px;
  border: none;
  background-color: var(--dark);
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media only screen and (max-width: 1200px) {
  .whatwe-do--box h2 {
    font-size: 28px;
    max-width: 500px;
  }
}
@media only screen and (max-width: 1023px) {
  .whatwe-do {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 992px) {
  .whatwe-do--box {
    max-width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }
  .whatwe-do--box h2 {
    max-width: 100%;
    font-size: 32px;
  }
  .whatwe-do--content p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .whatwe-do--box {
    max-width: 100%;
  }
  .whatwe-do--box h2 {
    font-size: 26px;
  }
  .whatwe-do--box p {
    font-size: 18px;
  }
  .whatwe-do--content {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .whatwe-do--box h2 {
    font-size: 22px;
  }
  .hero-video-controller {
    bottom: 20px;
    right: 20px;
  }
}
@media only screen and (max-width: 552px) {
  .whatwe-do--box h2 {
    font-size: 18px;
  }
  .whatwe-do--box p {
    font-size: 16px;
    line-height: 34px;
  }
}
