.celeste-why-choose__container {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  min-height: 70rem;
  padding: 0 3.25rem;
  background: var(--ds-bg-primary);
}

.celeste-why-choose__container-inner {
  display: flex;
  justify-content: center;
}

.dark .celeste-why-choose__container {
  background: rgb(18, 35, 104);
  background: linear-gradient(180deg, rgba(18, 35, 104, 1) 0%, rgba(32, 34, 62, 1) 100%);
}

.celeste-why-choose__bg-title {
  font-size: clamp(48px, 12vw, 200px);
  font-weight: 300;
  color: #ecf0f2;
  z-index: 0;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 0.6rem;
}

.dark .celeste-why-choose__bg-title {
  color: #0b0e2c;
}

.celeste-why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  z-index: 1;
  position: absolute;
  margin: 0 auto;
  top: 30rem;
  width: 100%;
  max-width: 1220px;
}

.celeste-why-choose__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 293px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  transform: translateY(550px);
}

.celeste-why-choose__item:nth-child(1) {
  top: -35px;
}

.celeste-why-choose__item:nth-child(2) {
  top: 110px;
}

.celeste-why-choose__item:nth-child(3) {
  top: -200px;
}

.celeste-why-choose__item:nth-child(4) {
  top: 110px;
}

.celeste-why-choose__image,
.celeste-why-choose__card {
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.08s linear;
}

.celeste-why-choose__image {
  width: 293px;
  height: 293px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  z-index: 1;
}

.celeste-why-choose__card {
  position: absolute;
  background: #fafcfd;
  border-radius: 50%;
  max-width: 293px;
  min-height: 293px;
  padding: 1.875rem 1.875rem 0.875rem 1.875rem;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 1.25rem 0 1.25rem rgba(160, 147, 147, 0.16);
}

.dark .celeste-why-choose__card {
  background: #0b0e2c;
  box-shadow: 1.25rem 0 1.25rem rgba(0, 0, 0, 0.16);
}

.celeste-why-choose__card h3 {
  font-size: 1.375rem;
  font-weight: var(--ds-font-bold);
  color: var(--ds-text-secondary);
  margin-bottom: 0.5rem;
}

.dark .celeste-why-choose__card h3 {
  color: var(--ds-color-tertiary);
}

.celeste-why-choose__card p {
  font-size: var(--ds-text-base);
  color: var(--ds-text-primary);
  margin-bottom: 1rem;
}

.celeste-why-choose__card a {
  font-weight: 600;
  font-size: var(--ds-text-base);
  text-decoration: none;
  color: var(--ds-text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.celeste-why-choose__card a .chevron-bottom {
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.dark .celeste-why-choose__card a .chevron-bottom {
  background-color: var(--ds-bg-secondary);
}

.dark .celeste-why-choose__card a .chevron-bottom svg {
  fill: var(--ds-text-primary);
}

.celeste-why-choose__card a .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  transform: rotate(90deg);
}

/* Responsive */

@media (max-width: 1280px) {
  .celeste-why-choose__bg-title {
    line-height: 2em;
  }
  .celeste-why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
    top: 14rem;
  }
  .celeste-why-choose__item:nth-child(1) {
    top: -150px;
    right: 50px;
  }
  .celeste-why-choose__item:nth-child(2) {
    top: -50px;
    right: 50px;
  }
  .celeste-why-choose__item:nth-child(3) {
    top: 0;
    left: 50px;
  }
  .celeste-why-choose__item:nth-child(4) {
    top: 1.25rem;
    left: 50px;
  }
}
@media (max-width: 768px) {
  .celeste-why-choose__container {
    min-height: 90rem;
  }
  .celeste-why-choose__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .celeste-why-choose__item:nth-child(1) {
    top: 0px;
    right: 0px;
  }
  .celeste-why-choose__item:nth-child(2) {
    top: 0px;
    right: 0px;
  }
  .celeste-why-choose__item:nth-child(3) {
    top: 0;
    left: 0px;
  }
  .celeste-why-choose__item:nth-child(4) {
    top: 0px;
    left: 0px;
  }
}
