/* Mixins */
/* Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

section {
  text-align: center;
}

img {
  width: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
}

ul {
  list-style: none;
}

.intro {
  background-color: hsl(193deg, 100%, 96%);
  color: hsl(192deg, 100%, 9%);
  background-image: url("../images/bg-hero-mobile.svg");
  background-repeat: no-repeat;
}
.intro img {
  width: 100%;
}
.intro .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
}
.intro .header .logo {
  width: 32%;
}
.intro .header .btn-cta {
  background-color: white;
  box-shadow: 0 0 1px rgba(0, 37, 46, 0.25);
  border-radius: 100vw;
  padding: 0.5rem 1.5rem;
  color: hsl(192deg, 100%, 9%);
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 2px 8px 1px rgba(150, 170, 180, 0.55);
  font-size: 0.7rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.intro .title {
  margin: 3rem auto 1.5rem auto;
  padding: 0 2rem;
}
.intro .paragraph {
  padding: 0 1.2rem;
}
.intro .mockup-img {
  padding: 0 1.8rem;
  margin: 0 auto 1.5rem auto;
}

.btn-pink {
  background-color: hsl(322deg, 100%, 66%);
  box-shadow: 0 0 1px rgba(235, 251, 255, 0.25);
  border-radius: 100vw;
  padding: 0.5rem 1.5rem;
  color: hsl(193deg, 100%, 96%);
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 2px 8px 1px rgba(150, 170, 180, 0.55);
  margin: 1.5rem auto 3rem auto;
  padding: 0.75rem 4.2rem;
  font-size: 0.825rem;
}

.cards {
  background-color: white;
  padding: 3rem 1rem;
}
.cards .card {
  background-color: white;
  box-shadow: 0 0px 9px 2px rgba(150, 170, 180, 0.25);
  margin-bottom: 3rem;
  border-radius: 25px;
  padding: 3rem 1.9rem;
}
.cards .card img {
  margin-bottom: 2.5rem;
}
.cards .card h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(192deg, 100%, 9%);
}
.cards .card p {
  font-size: 1rem;
  color: hsl(208deg, 11%, 55%);
}
.cards .card:nth-child(3) {
  margin-bottom: 0;
}
.cards .started {
  padding: 3rem 20px;
  margin: 0;
  position: relative;
  bottom: -115px;
}
.cards .started h1 {
  font-size: 1.1rem;
}
.cards .started .btn-pink {
  margin: 0;
  margin-bottom: 0;
  padding: 0.8rem 3rem;
  font-size: 0.7rem;
}

footer {
  background-color: hsl(192deg, 100%, 9%);
  color: white;
  padding: 9rem 1rem 4rem 1rem;
}
footer .logo {
  width: 45.3333333333%;
  margin-bottom: 1.5rem;
}
footer li {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
footer .icon {
  width: 18px;
  margin-right: 20px;
}
footer .location {
  align-self: flex-start;
  position: relative;
  top: 5px;
}
footer a {
  color: white;
}
footer .links {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
footer .links li {
  margin-bottom: 1rem;
}
footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}
footer .social li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid white;
  border-radius: 100%;
  font-size: 1rem;
}
footer .copyright {
  font-size: 0.8rem;
  text-align: center;
}/*# sourceMappingURL=main.css.map */