/**
 * Global push style
 */

.push {
  position: relative;
  -webkit-box-shadow: 5px 5px 40px 5px rgba(217,217,217,0.25);
  box-shadow: 5px 5px 40px 5px rgba(217,217,217,0.25);
  height: 100%;
  padding-left: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 8.688rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: center;
}
.push__wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.push__content {
  display: flex;
  flex-direction: column;
}
.push__title {
  font-weight: var(--title-weight);
  font-size: var(--title-size-m);
  line-height: normal;
}
.push__text p {
  color: var(--color-neutral--7);
  font-size: var(--content-size-m);
  font-weight: var(--content-weight-normal);
  line-height: 180%;
  margin: 1.5rem 0 0 0;
}
.push__link {
  color: var(--color-neutral--0);
  padding: 0.75rem 1rem;
  border-radius: 2px;
  width: fit-content;
  font-size: 0.75rem;
  line-height: normal;
  margin-top: 3rem;
  transition: ease all 150ms;
}
.push--red {
  margin-top: 2rem;
}
.push--red .push__link {
  background-color: var(--color-secondary--6);
}
.push--red .push__link:hover {
  background-color: var(--color-secondary--8);
  text-decoration: none;
}
.push--blue .push__link {
  background-color: var(--color-primary--6);
}
.push--blue .push__link:hover {
  background-color: var(--color-primary--8);
  text-decoration: none;
}
@media all and (min-width: 650px){
  .push {
    padding-top: 7rem;
    padding-bottom: 5.125rem;
  }
  .push__wrapper {
    max-width: 471px;
    padding-right: 3rem;
  }
}
@media all and (min-width: 800px){
  .push {
    padding-top: 4rem;
    padding-bottom: 8.688rem;
  }
  .push--red {
    margin-top: 0;
  }
}
@media all and (min-width: 1000px){
  .push {
    padding-top: 7rem;
    padding-bottom: 5.125rem;
  }
}
@media all and (min-width: 1300px){
  .push {
    padding-top: 7rem;
    padding-bottom: 5.125rem;
  }
  .push__wrapper {
    padding-right: 5.8rem;
  }
}


/**
 * Top shape of push
 */

.push::before {
  content: '';
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  background-position: center;
  background-size: contain;
  width: 100%;
  background-repeat: no-repeat;
}
.push.push--blue::before {
  background-image: url("../../images/push/blue-shape.svg");
  height: 115px;
}
.push.push--red::before {
  background-image: url("../../images/push/red-shape.svg");
  height: 140px;
  top: -65px;
}
@media all and (min-width: 600px){
  .push.push--red::before {
    top: -50px;
  }
}
@media all and (min-width: 1000px){
  .push::before,
  .push.push--red::before {
    top: -40px;
  }
}

/**
 * Bottom visual of push
 */

.push::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}
.push.push--blue::after {
  max-width: 345px;
  width: 70%;
  max-height: 257px;
  height: 100%;
  background-image: url("../../images/push/blue-visual.svg");
}
.push.push--red::after {
  max-width: 428px;
  width: 70%;
  max-height: 338px;
  height: 100%;
  background-image: url("../../images/push/red-visual.svg");
}
@media all and (min-width: 500px){
  .push.push--blue::after {
    width: 60%;
  }
}
@media all and (min-width: 650px){
  .push.push--blue::after {
    width: 40%;
  }
}
@media all and (min-width: 800px){
  .push.push--blue::after {
    width: 70%;
  }
  .push.push--red::after {
    width: 70%;
  }
}
@media all and (min-width: 1000px){
  .push.push--blue::after {
    width: 50%;
  }
}
@media all and (min-width: 1000px){
  .push.push--red::after {
    width: 50%;
  }
}
@media all and (min-width: 1300px){
  .push.push--red::after {
    width: 60%;
  }
}
@media all and (min-width: 1550px){
  .push.push--red::after {
    width: 70%;
  }
}
