@import url('../../assets-custom/root.css');

span{
  color: var(--ea-third-color) !important;
}

/* SECTION: 1 */
.index-section-1 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.index-section-1-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.index-section-1-cards > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  padding: 22px;
  background-color: var(--ea-primary-color);
  border-radius: 20px;
}
.index-section-1-cards > div .card-img img {
  height: 109px;
}

.index-section-1-cards > div h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--ea-text-color-2);
}
.index-section-1-cards > div p {
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-1);
  max-width: 250px;
}
@media screen and (max-width: 990px) {
  .index-section-1-cards {
    flex-direction: column;
  }
  .index-section-1-cards > div {
    width: 100%;
  }
}

/* SECTION: 2 */
.index-section-2 {
  background: var(--ea-primary-color);
  margin-top: 87px;
}
.index-section-2-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.index-section-2-right-container {
  width: 50%;
}
.index-section-2-left-container {
  width: 50%;
}
.index-section-2-left-container img {
  width: 100%;
  margin-top: -81px;
}
.index-section-2-right-container h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--ea-text-color-2);
  max-width: 316px;
}
.index-section-2-right-container p {
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-1);
  max-width: 364px;
}
.index-section-2-right-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 990px) {
  .index-section-2-container {
    flex-direction: column;
  }
  .index-section-2-right-container {
    width: 100%;
  }
  .index-section-2-left-container {
    width: 100%;
  }
  .index-section-2-right-container h3 {
    max-width: 100%;
  }
  .index-section-2-right-container p {
    max-width: 100%;
  }
}

/* SECTION: 3 */
.index-section-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 125px;
  padding-bottom: 125px;
}
.index-section-3-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 66px;
}
.index-section-3-card {
  border-radius: 20px;
  background: var(--ea-primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 40px;
}
.index-section-3 h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--ea-text-color-2);
  max-width: 316px;
}
.index-section-3-card-img img {
  width: 200px;
  height: 200px;
  margin-top: -43px;
}
.index-section-3-button {
  text-align: center;
  padding: 10px;
  background: var(--btn-background-color);
  width: max-content;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  border-radius: 7px;
  cursor: pointer;
  color: white;
  margin-top: 64px;
  text-decoration: none;
}
.index-section-3-button:hover {
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 990px) {
  .index-section-3-cards {
    flex-direction: column;
    width: 100%;
    gap: 72px;
  }
  .index-section-3-card {
    width: 100%;
  }

  .index-section-3-card-img img {
    width: 100%;
    height: 100%;
    margin-top: -53px;
  }
}
