.containerFour {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--bs-gray-900);
  background-size: cover;
  background-position: center;
}

.contentFour {
  padding: 40px;
  margin: 100px 100px 20px;
  background: rgba(0, 12, 28, 0.8784313725);
  position: relative;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 7px 9px 20px 1px rgba(150, 175, 225, 0.42);
  border-top: 1px solid rgba(150, 175, 225, 0.15);
  backdrop-filter: blur(3px);
  overflow: hidden;
}

.contentFourDescription {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contentFourDescription h2 {
  color: var(--bs-gray-500);
  letter-spacing: 1.3px;
  line-height: 1.6;
  font-weight: 200;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.contentFourItems {
  margin-top: 40px;
  width: 100%;
  min-height: 250px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.block {
  max-width: 600px;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.block h3 {
  color: var(--bs-gray-500);
  font-weight: 200;
  padding: 10px;
  text-transform: uppercase;
}
.block__right {
  display: flex;
  justify-content: flex-end;
  transform: translateX(100%);
  transition: all 1s ease 0.3s;
}
.block__right::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(15, 176, 240, 0.89));
  margin-right: 10px;
}
.block__right.active {
  transform: translateX(0);
  transition: all 1s;
}
.block__left {
  display: flex;
  align-items: start;
  justify-content: flex-end;
  transform: translateX(-100%);
  transition: all 1s ease 0.6s;
}
.block__left::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(15, 176, 240, 0.89));
}
.block__left.active {
  transform: translateX(0);
  transition: all 1s;
}
.block__left h3 {
  text-align: start;
}

@media (max-width: 716px) {
  .contentFour {
    padding: 10px;
    margin: 20px;
  }
}

/*# sourceMappingURL=containerFour.css.map */
