:root {
  --color-orange: #e9531d;
  --color-black: #323232;
  --color-slate: #404048;
  --color-offwhite: #f2f2f2;
  --color-white: #ffffff;
}

.gradient-bg {
  background-image: url("./gradient-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.wave-bg {
  background-image: url("./wave-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.rounded-lg{
  border-radius: 20px;
}

.cards-v1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cards-v1 > div {
  background-color: var(--color-offwhite);
  border-radius: 20px;
  padding: 20px;
  min-height: 120px;
  position: relative;
  max-width: 400px;
  min-width: 200px;
  flex: 1 1 calc(33.333% - 20px);
}

.cards-v1 span {
  position: absolute;
  font-size: 8em;
  bottom: -0.3em;
  left: 0.25em;
  user-select: none;
  color: #e9531d10;
  font-weight: 900;
}

.cards-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards-v2 div {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border: 1px #00000010 solid;
  border-bottom: 5px #00000010 solid;
  /* background-color: var(--color-white); */
  border-radius: 20px;
  padding: 20px 40px 20px 20px;
  font-weight: 700;
  width: 100%;
}

.cards-v2 div > img {
  width: 100px;
  border: 1px #e9531d15 solid;
  border-radius: 50px;
}

/* .cards-v2 > :nth-child(even) {
  margin-left: auto;
}
.cards-v2 > :nth-child(odd) {
  margin-right: auto;
} */

.who-are-section figure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.who-are-section figure img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 20px;
  break-inside: avoid; /* important */
}

.why-choose-section figure {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.why-choose-section img {
  border-radius: 20px;
  object-fit: cover;
}

.hgroup {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hgroup h2 {
  color: var(--color-black);
  font-size: 28px;
  line-height: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 35px;
  position: relative;
  text-transform: capitalize;
}

.hgroup h2 span {
  color: var(--color-orange);
}
.hgroup h2:before {
  background: var(--color-orange);
  border-radius: 2px;
  bottom: -20px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: auto;
  top: auto;
  width: 100px;
}
.no-line::before {
  display: none !important;
}
.hgroup p {
  color: var(--color-slate);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 20px;
}

@media (min-width: 560px) {
  .who-are-section figure {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cards-v2 div {
    max-width: 80%;
  }
}

@media (min-width: 992px) {
  .sticky {
    position: sticky;
    height: fit-content;
  }

  .top-sm {
    top: 20px;
  }

  .hgroup h2 {
    padding: 0 3rem 0 0;
    font-size: 38px;
    line-height: 50px;
    text-align: start;
  }
}

@media (min-width: 1200px) {
  .hgroup {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hgroup h2 br {
    display: none;
  }
  .hgroup p {
    line-height: 22px;
    margin: 0 0 10px;
  }
}
