.inner-section-2-container {
  display: flex;
  justify-content: center;
  margin-bottom: 13.5rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.inner-section-2-container--left {
  width: 28.5%;
  /*height: 66.3rem;*/
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/pexels-jah-nomad-17220238.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s;

}

.inner-section-2-container--left-img, .inner-section-2-container--left::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.inner-section-2-container--left::after {
  border-radius: 0px 20px 20px 0px;
  background: linear-gradient(180deg, rgba(7, 108, 243, 0.27) 0%, rgba(42, 42, 43, 0.56) 100%);
}

.inner-section-2-container--left-img {
  object-fit: cover;
}

.inner-section-2-container--left--content-container {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  color: white;
  z-index: 2;
}

.inner-section-2-container--left--content-container-title {
  margin-bottom: 1.4rem;
  font-size: 2.4rem;
}

.inner-section-2-container--left--content-container-description {
  line-height: normal;
  font-size: 2.0rem;
  text-align: justify;
  display: inline-block;
  width: 100%;
}

.inner-section-2-container--right {
  width: 71.5%;
  padding: 0rem 5rem;
  display: flex;
  flex-direction: column;
}

.inner-section-2-container--content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 80%;

}

.inner-section-2-container--content-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inner-section-2-container--content-top-label {
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4rem;
  background-color: #076CF3;
  align-self: flex-start;
  padding: 0.75rem 3rem;
}

.inner-section-2-container--control-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 1rem 0;
  gap: 2.5rem 0;
  margin-top: 6.4rem;
  height: 36rem;
  overflow-y: scroll;
}

.inner-section-2-container-control-container--itens {
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
}

.inner-section-2-service-itens-list {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.inner-section-2--service-item {
  width: 15.5rem;
  /*height: 10.8rem;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px #1e1e1e38;
  padding: 1rem;
  cursor: pointer;
  transition: 0.25s;

}

.inner-section-2--service-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 4px 0px #076CF3;
  color: #076CF3;
}


.inner-section-2--service-item:hover .inner-section-2--service-item--text {
  color: #076CF3;
}

.inner-section-2--service-item--container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem 0;
}

.inner-section-2--service-item--img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: cover;
}

.inner-section-2--service-item--text {
  color: rgba(30, 30, 30, 0.85);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.inner-section-2--see-more-itens {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  background: #FFF;
  color: rgba(0, 0, 0, 0.62);
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  transition: 0.5s;
}

.inner-section-2--see-more-itens::after {
  content: '';
  position: absolute;
  height: 0.5rem;
  border-radius: 1rem;
  width: 35%;
  background: rgba(0, 0, 0, 0.62);
  bottom: -1.5%;
  left: 0;
  transition: 0.5s;
}

.inner-section-2--see-more-itens:hover {
  color: #000;
}

.inner-section-2--see-more-itens:hover::after {
  background-color: #000;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .inner-section-1-container {
    width: 90%;
  }

  .service-item-card {
    width: 90%;
  }

  .inner-section-2-container--left {
    width: 40%;
  }

  .inner-section-2-container--right {
    width: 60%;
  }
}

@media screen and (max-width: 1024px) {
  .inner-section-2-container {
    width: 95%;
    flex-direction: column;
    align-items: center;
  }

  .inner-section-2-container--content-top {
    margin-top: 1.5rem;
  }

  .inner-section-1-container-bottom {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row-reverse;
  }

  .service-item-card {
    width: 75%;
  }


  .inner-section-2-container--left {
    width: 90% !important;
    border-radius: 2rem;
    height: 22rem;
    overflow-y: scroll;
  }

  .inner-section-2-container--left--content-container {
    bottom: unset;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .inner-section-2-container--right {
    width: 90%;
  }

  .inner-section-2-container--content {
    width: 100%;
  }

}

@media screen and (max-width: 768px) {
  .inner-section-2-container--left {
    width: 90% !important;
    border-radius: 2rem;
    height: 32rem;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 425px) {
  .inner-section-2-container {
    width: 100%;
  }

  .inner-section-2-container--right {
    width: 90%;
    padding: 0rem 2.5rem;
  }

  .inner-section-2-service-itens-list {
    gap: 1rem;
  }

  .inner-section-1-container {
    gap: 3.5rem 0;
  }

  .inner-section-1-container-bottom {
    gap: 7rem 0;
  }

  .service-item-card {
    padding: 2rem 0.5rem;
  }

  .service-item-card:hover {
    transform: scale(1.05);
    border-radius: 10px;
    background: #FFF;
    box-shadow: none;
  }

  .inner-section-2-container--left {
    width: 90% !important;
    border-radius: 2rem;
    height: 32rem;
    overflow-y: scroll;
  }
}


@media screen and (max-width: 375px) {
  .inner-section-2-container--right {
    padding: 2rem 0rem;
  }

  .inner-section-4-container--content-top-label {
    font-size: 1.4rem !important;
  }
}