.cards-section {
  display: flex;
  justify-content: space-around;
  align-items: normal;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0.25vh 8vw;
  row-gap: 10vw;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  margin-bottom: 15vh;
}
@media (min-width: 600px) {
  .cards-section {
    row-gap: 6vw;
  }
}

.card {
  width: 24vw;
  height: 36vh;
  border-radius: 15px;
  padding: 4vh 1.5vw 0 1.5vw;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 50vw;
  height: 40vh;
  align-items: center;
  text-align: center;
}
.card--special {
  background: linear-gradient(#F02AA6, #FF6F48);
}
.card__img {
  align-self: flex-start;
  position: relative;
  top: -7.75vh;
  bottom: auto;
  left: auto;
  right: auto;
}
.card__h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  width: 20vw;
}
.card__h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #13183F;
  transform: translateY(-8vh);
}
.card__h3--translate {
  transform: translateY(-9vh);
}
.card__p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #83869A;
  line-height: 28px;
  width: 40vw;
  transform: translateY(-8vh);
}
.card__p--translate {
  transform: translateY(-9.85vh);
}
.card__a {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  color: #F74780;
  transform: translateY(-5vh);
  cursor: pointer;
  transition: 0.5s ease-out;
}
.card__a:hover {
  color: #FFA7C3;
}
@media (min-width: 600px) {
  .card {
    width: 30vw;
    height: 40vh;
    text-align: left;
  }
  .card__p {
    font-size: 1rem;
    width: 20vw;
  }
  .card__a {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .card {
    width: 24vw;
    display: flex;
    justify-content: space-between;
    align-items: normal;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.footer {
  background: #13183F;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 2vh;
  padding: 4.3vh 11.5vw;
}
.footer__img {
  width: 20vw;
  height: 3vh;
}
.footer__button {
  background: linear-gradient(#4851FF, #F02AA4);
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: 0.5s ease-out;
}
.footer__button:hover {
  box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.5);
}
@media (min-width: 600px) {
  .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .footer__img {
    width: 15vw;
    height: 3vh;
  }
}
@media (min-width: 900px) {
  .footer__img {
    width: 10vw;
    height: 3vh;
  }
}
@media (min-width: 1200px) {
  .footer__img {
    width: 7.7vw;
    height: 3vh;
  }
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 2vh;
  padding: 4.3vh 11.5vw;
}
.navbar__button {
  background: #13183F;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: 0.5s ease-out;
}
.navbar__button:hover {
  background-color: #666CA3;
}
.navbar__img {
  width: 20vw;
  height: 3vh;
}
@media (min-width: 600px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .navbar__img {
    width: 15vw;
    height: 3vh;
  }
}
@media (min-width: 900px) {
  .navbar__img {
    width: 10vw;
    height: 3vh;
  }
}
@media (min-width: 1200px) {
  .navbar__img {
    width: 7.7vw;
    height: 3vh;
  }
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 2vh 11.5vw;
  height: 150vh;
  margin-bottom: 0;
}
.hero--left {
  height: 19.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  top: 0vh;
  bottom: auto;
  left: auto;
  right: auto;
  text-align: center;
}
.hero__img {
  z-index: -1;
  position: relative;
  top: -10vh;
  bottom: auto;
  left: auto;
  right: -35vw;
}
.hero__h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #13183F;
  width: 80vw;
}
.hero__p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #83869A;
  line-height: 28px;
  margin-bottom: 4vh;
}
.hero__button {
  background: linear-gradient(#F02AA6, #FF6F48);
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: 0.5s ease-out;
}
.hero__button:hover {
  box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.5);
}
@media (min-width: 600px) {
  .hero--left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    top: 0vh;
    bottom: auto;
    left: auto;
    right: auto;
    text-align: center;
  }
  .hero__img {
    top: 0vh;
    left: 10vw;
    transform: scale(0.8);
  }
  .hero__h1 {
    width: 75vw;
  }
}
@media (min-width: 900px) {
  .hero {
    display: flex;
    justify-content: normal;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 60vh;
    margin-bottom: 0;
  }
  .hero--left {
    display: flex;
    justify-content: normal;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 19.5vh;
    position: relative;
    top: -20vh;
    bottom: auto;
    left: auto;
    right: auto;
    text-align: left;
  }
  .hero__img {
    position: relative;
    top: -15vh;
    bottom: auto;
    left: auto;
    right: 2vw;
    transform: scale(0.9);
  }
  .hero__h1 {
    width: 32vw;
    font-size: 2rem;
  }
  .hero__p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .hero {
    margin-bottom: 15vh;
  }
  .hero__img {
    position: relative;
    top: -10vh;
    bottom: auto;
    left: auto;
    right: -5vw;
    transform: scale(1);
  }
  .hero__h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #13183F;
  }
  .hero__p {
    font-size: 1.125rem;
  }
}

body {
  margin: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(#FFFFFF, #dcdde4);
}/*# sourceMappingURL=main.css.map */