/* =========================
   Push container
   ========================= */
.push {
  background-color: var(--color-primary--clear);
  border-radius: 0.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  overflow: hidden;
  width: 100%;
  line-height: normal;
}

/**
 * first push
 */

.pushs__first .push {
  overflow: visible;
  gap : 16px;
}

/* =========================
   Push Image
   ========================= */
.push__image {
  flex-shrink: 1;
  width: auto;
  object-fit: contain;
  position: relative;
  margin-bottom: -8px;
}

.push__image::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 52%;
  width: 100%;
  height: 100%;
  max-width: 650px;
  min-width: 265px;
  transform: translate(-50%, -50%);
  background: url("../../images/misc/halo.svg") no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.push__image img {
  position: relative;
  z-index: 1;
  object-fit: contain;
}


/**
 * first push
 */
.pushs__first .push__image {
  margin-bottom: 0;
}

.pushs__first .push__image img {
  margin-top: -60px;
}

.pushs__first .push__image::before {
  top: 85%;
  scale: 1.125;
  left: 56%
}

@media all and (min-width:450px) {
  .pushs__first .push__image::before {
    top: 80%;
    scale: 1;
    left: 52%
  }
}

@media all and (min-width:1000px) {
  .pushs__first .push__image {
    padding: 0 50px;
  }
}


/* =========================
   Push Content
   ========================= */
.push__content {
  width: 100%;
  padding: 0 32px;
  z-index: 2;
}

.push__content-wrapper {
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  color: white;
  background-color: var(--color-primary--1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;
  flex-shrink: 0;
  gap: 0.5rem;

  max-width: 350px;
  margin: 0 auto;
}

.pushs__first .push__content {
  padding: 0 16px;
}

.pushs__first .push__content-wrapper {
  gap: 12px;
}

.pushs__first .push__content-wrapper {
  padding: 16px 32px;
}

@media all and (min-width:1000px) {
  .pushs__first .push__content {
    padding: 0 50px;
  }

  .push__content-wrapper {
    max-width: 100%;
  }
}

@media all and (min-width:1300px) {
  .pushs__first .push__content {
    padding: 0 92px;
  }
}

/* =========================
   Push Text
   ========================= */
.push__content-wrapper h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Figtree';
}

/* .push__content-wrapper:nth-child(1) h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
} */


/* =========================
   Push Link / CTA
   ========================= */
.push__content-wrapper .cta {
  background-color: transparent;
  padding: 0;
}

.push__content-wrapper .cta__text {
  background-color: transparent;
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.push__content-wrapper .cta__text::after {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.625rem;
  background: url('../../images/icons/arrow-white.svg') no-repeat center/contain;
  vertical-align: middle;
}

.push__content-wrapper .cta__text {
  background-color: transparent;
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
}

.push__content-wrapper .cta:hover {
  color: #ffffffa1;
}


/**
 * First push
 */
.pushs__first .push__content-wrapper .cta {
  background-color: var(--color-secondary--1);
  border-radius: 20px;
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 9px;
}

.pushs__first .push__content-wrapper .cta:hover {
  filter: brightness(1.1);
}

.pushs__first .push__content-wrapper .cta__text {
  color: #FFF;

  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.pushs__first .push__content-wrapper .cta__text::after {
  display: none;
}

/* =========================
   Responsive - Desktop
   ========================= */
/* @media all and (min-width: 62.5rem) {
  .push:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    max-width: 46.5rem;
    max-height: 35.625rem;
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
    overflow: visible;
    justify-content: space-between;
  }

  .push:nth-child(1) .push__image {
    flex-shrink: 0;
    max-width: 39.6875rem;
    max-height: 28.3125rem;
    width: 100%;
    height: auto;
    margin-top: -3.125rem;
  }

  .push:nth-child(1) .push__image::before {
    width: 26.1341rem;
    height: 34.8454rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .push:nth-child(1) > .push__content-wrapper {
    margin: 0 5.75rem 1.5rem 5.75rem;
    width: calc(100% - 11.5rem);
    height: auto;
    flex-shrink: 0;
    overflow: visible;
    gap: 0.5rem;
  }
} */
