.whyUsContainer {
  width: 100vw;
  height: 100vh;
  position: relative;
  padding: 15vh 5vw 5vh 5vw;
  display: grid;
  grid-template-rows: 1fr 3fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 5vh;
  font-family: 'IBM Plex Sans', sans-serif;
  overflow-x: hidden;
}

h2 {
  grid-row: 1 / 2;
  grid-column: 1 / -1;
}

#whyUsDescription {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  align-self: center;
  justify-self: start;
  z-index: 1;
}

.whyUsImg {
  /*display: none; !* Temporal *!*/
  position: absolute;
  top: 10vh;
  right: 0;
  width: 55vw;
  height: auto;
  object-fit: contain;
  margin-bottom: 3vh;
}

h2 {
  font-family: 'IBM Plex Sans Bold', serif;
  font-size: 6vw;
}

p {
  font-size: 1.8vw;
  line-height: 1.5;
}

.cta-btn {
  width: 20vw;
  font-size: 2vw;
  background-color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}

h3 {
  font-size: 3vw;
  font-family: 'IBM Plex Sans Bold', serif;
}

.carousel {
  width: 100%;
  overflow: hidden;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.slides {
  display: flex;
  flex-wrap: nowrap;
  gap: 5vw;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.pagination {
  display: flex;
  gap: 1vw;
  justify-content: center;
  margin-top: 2vh;
}

.pagination div {
  width: 3vw;
  height: 3vw;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.pagination .active {
  background-color: #007BFF;
}

@media only screen and (max-width: 761px) {
  .whyUsContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 110vh;
  }

  .whyUsImg {
    /*display: none;*/
    position: absolute;
    top: 50vh;
    right: 0;
    width: 95vw;
  }

  h2 {
    font-size: 10vw;
  }

  #whyUsDescription {
    font-size: 5.5vw;
  }

  .carousel {
    width: 100%;
    align-self: flex-end;
  }

  .slide p {
    font-size: 4.5vw;
  }

  .cta-btn {
    font-size: 6vw;
    width: 55vw;
    padding: 0;
    height: 10vw;
  }

  h3 {
    font-size: 6vw;
  }

  .pagination div {
    width: 1vw;
    height: 1vw;
  }
}
