/*font import*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap");
/*colors*/
/*gradients*/
/*fonts*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  line-height: 1.2;
}

body,
h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #83869a;
  font-size: clamp(1.1rem, 0.8356rem + 0.1826vw, 1.25rem);
}

.flow-content > * + * {
  margin-top: 1rem;
}

.text-accent {
  color: var(--clr-accent-500);
}

.container {
  padding: 0 1rem;
  max-width: 70rem;
  margin: 0 auto;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 40rem) {
  .container {
    padding: 0 2rem;
  }
}
.button {
  padding: 0.75rem 2rem;
  font-size: clamp(1.25rem, 1.1712rem + 0.3653vw, 1.5rem);
  color: #fff;
  background-color: #13183f;
  border-radius: 2rem;
  border: none;
  z-index: 1;
}
.button:hover, .button:focus {
  background-color: #666ca3;
}
.button.button--link {
  background: none;
  padding: 0;
  color: #f74780;
  font-weight: 700;
}
.button.button--link:hover, .button.button--link:focus {
  color: #ffa7c3;
}
.button.button--pink {
  background: linear-gradient(0deg, #f02aa6 0%, #ff6f48 100%);
  transition: background 0.2s ease-in-out;
}
.button.button--pink:hover, .button.button--pink:focus {
  background: linear-gradient(0deg, #ffa7c3 0%, #ff6f48 100%);
}
.button.button--purple {
  background: linear-gradient(0deg, #4851ff 0%, #f02aa6 100%);
  transition: background 0.2s ease-in-out;
}
.button.button--purple:hover, .button.button--purple:focus {
  background: linear-gradient(0deg, #83869a 0%, #4851ff 100%);
}

@media (min-width: 40rem) {
  .button {
    padding: 1rem 2rem;
    font-size: clamp(1.25rem, 1.1712rem + 0.3653vw, 1.5rem);
  }
}
@media (min-width: 60rem) {
  .button {
    padding: 1rem 2rem;
    font-size: clamp(1.1rem, 0.8356rem + 0.1826vw, 1.25rem);
  }
}
.cards {
  margin-top: 4rem;
  display: grid;
  gap: 5rem 1rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: space-between;
  align-items: start;
  padding: 2rem;
  box-shadow: 0 1.5rem 3rem hsla(233, 92%, 29%, 0.042);
  border-radius: 1rem;
  background: #fff;
}
.card h2 {
  font-size: clamp(2rem, 1.8425rem + 0.7306vw, 2.5rem);
}
.card img {
  position: absolute;
  top: -2rem;
}
.card h3 {
  font-size: clamp(1.5rem, 1.3425rem + 0.7306vw, 2rem);
  color: #13183f;
}
.card p {
  font-weight: 700;
}

.card.bg-gradient {
  background: linear-gradient(0deg, #f02aa6 0%, #ff6f48 100%);
  color: #fff;
}

@media (min-width: 40rem) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60rem) {
  .cards {
    margin-top: 8rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 2rem;
  }
  .card {
    padding: 3rem 2rem;
  }
  .card h2 {
    font-size: clamp(1.5rem, 1.3425rem + 0.7306vw, 2rem);
  }
  .card h3 {
    font-size: clamp(1.25rem, 1.1712rem + 0.3653vw, 1.5rem);
  }
  .card p {
    font-weight: 400;
  }
}
.main-nav {
  padding-top: 1rem;
}
.main-nav img {
  width: 5rem;
}

@media (min-width: 60rem) {
  .main-nav img {
    width: 7rem;
  }
}
footer {
  background: #13183f;
  padding: 1rem 0;
}
footer img {
  width: 5rem;
}

main {
  background: linear-gradient(to bottom, #fff, #f0f1ff);
  padding: 4rem 0;
}

.hero {
  flex-direction: column;
}
.hero__title {
  font-size: clamp(2.5rem, 2.1849rem + 1.4612vw, 3rem);
  font-weight: 700;
  color: #13183f;
}
.hero .button {
  margin-top: 2rem;
}
.hero__image {
  margin-top: 5rem;
}

@media (min-width: 40rem) {
  .hero {
    flex-direction: row;
  }
  .hero__image {
    margin-top: -10rem;
    margin-right: -20rem;
  }
  .hero__content {
    max-width: 50%;
  }
}
@media (min-width: 60rem) {
  .hero__image {
    width: 200%;
    margin-top: -17.5rem;
    margin-right: -60rem;
  }
  .hero p {
    max-width: 25ch;
  }
}/*# sourceMappingURL=main.css.map */