.sectionTwo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contentTwo {
  max-width: 1440px;
  width: 100%;
}
.contentTwo_title {
  padding: 20px 40px;
  overflow: hidden;
}
.contentTwo_title h2 {
  color: var(--blue-color);
  font-weight: 300;
  letter-spacing: 1.6px;
  line-height: 1.2;
}
.contentTwo_title h3 {
  color: var(--blue-color);
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.2;
}
.contentTwo_text {
  padding: 20px 40px;
}
.contentTwo_text p {
  font-weight: 300;
  letter-spacing: 1.4;
  line-height: 2;
}

.contentTwoContainer {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contentTwoContainer img {
  width: 60%;
  height: auto;
  object-fit: cover;
}

.containerGrid {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.containerGrid__item {
  padding: 20px;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 4px 10px rgba(149, 168, 181, 0.3019607843);
}
.card__one::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(95, 92, 184, 0.6509803922);
}
.card__two::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 48, 126, 0.4588235294);
}
.card__three::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(131, 67, 168, 0.5058823529);
}
.card__four::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(186, 30, 144, 0.4392156863);
}

.cardContent {
  position: absolute;
  width: 80%;
  height: 100%;
  background: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cardContent h3 {
  color: var(--blue-color);
  font-weight: 300;
  letter-spacing: 1.6px;
  line-height: 1.2;
  padding: 20px 0;
}
.cardContent p {
  font-weight: 300;
  letter-spacing: 1.4;
  line-height: 1.6;
}

@media (max-width: 870px) {
  .containerGrid {
    grid-template-columns: repeat(1, 1fr);
    position: relative;
  }
  .cardContent {
    position: relative;
  }
  .contentTwoContainer img {
    display: none;
  }
}
@media (max-width: 670px) {
  .sectionTwo {
    padding: 0;
  }
}

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