/* import red hat display black */
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700;900&display=swap");
/* reset */
*,
*::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: "Red Hat Display", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  color: #87879d;
}

.flow-content > * + * {
  margin-top: var(--flow-space, var(--spacer));
}

.flow-content--large {
  --flow-space: 3rem;
}

.shadow {
  box-shadow: var(--box-shadow);
}

.bg-dark {
  background: var(--clr-neutral-900);
  color: var(--clr-neutral-100);
}

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

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

.split {
  display: flex;
}

@media (min-width: 40rem) {
  .container {
    padding: 0 2.5rem;
  }
}
@media (min-width: 60rem) {
  .container {
    padding: 0;
  }
}
.button {
  display: block;
  color: #ffffff;
  background: #4d96a9;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
}
.button:hover, .button:focus {
  background: #71c0d4;
}
.button.button--secondary {
  background: #855fb1;
}
.button.button--secondary:hover, .button.button--secondary:focus {
  background: #b18bdd;
}
.button span {
  color: #8fe3f9;
}

.vl {
  display: grid;
  place-items: center;
}
.vl__line {
  border-left: 1px solid #d1d1df;
  height: 5rem;
}
.vl__number {
  border-radius: 50%;
  border: 1px solid #d1d1df;
  background: #ffffff;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.main-nav {
  margin-top: 2.5rem;
}
.main-nav .logo img {
  margin: 0 auto;
}

footer {
  margin-top: 3.5rem;
}

.footer {
  margin-top: -1.75rem;
  padding-bottom: 2.5rem;
  background: #4d96a9;
  color: #ffffff;
  position: relative;
  background: url("../assets/mobile/image-footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.footer h2,
.footer p,
.footer .button {
  position: relative;
  z-index: 2;
}
.footer__inner {
  padding: 2.5rem 2rem;
}
.footer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4d96a9;
  opacity: 0.85;
  z-index: 1;
}
.footer h2 {
  font-size: clamp(1.8rem, 4.75vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.footer p {
  max-width: 47ch;
  margin-inline: auto;
}
.footer .button {
  margin-top: 1.5rem;
}

@media (min-width: 40rem) {
  .footer {
    background: url("../assets/tablet/image-footer.jpg") no-repeat;
    background-size: cover;
  }
}
@media (min-width: 60rem) {
  .footer {
    padding-bottom: 3.5rem;
    background: url("../assets/desktop/image-footer.jpg") no-repeat;
    background-size: cover;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    align-items: top;
    text-align: left;
    max-width: 70rem;
    margin-inline: auto;
    padding-top: 7rem;
  }
  .footer__inner h2 {
    max-width: 12ch;
  }
  .footer__inner p {
    max-width: 30ch;
  }
  .footer__inner .button {
    margin-top: unset;
  }
}
.hero {
  margin-top: 3.5rem;
}
.hero__image-right {
  display: none;
}
.hero__image-left img {
  min-width: 120%;
  margin-left: -7%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  margin-top: 3.5rem;
}
.hero__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #28283d;
  line-height: 110%;
  max-width: 10ch;
  margin-inline: auto;
}
.hero__subtitle {
  max-width: 38ch;
  margin-inline: auto;
}
.hero__buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main {
  margin-top: 3.5rem;
}
.main__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3.5rem;
}
.main img {
  border-radius: 0.5rem;
}
.main__content {
  margin-top: 3.5rem;
}
.main__content h3 {
  color: #4d96a9;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: clamp(0.775rem, 2vw, 1rem);
  font-weight: 900;
}
.main__content h2 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 4.75vw, 2.5rem);
  color: #28283d;
  font-weight: 900;
  max-width: 18ch;
  margin-inline: auto;
}
.main__content p {
  margin-top: 1rem;
  max-width: 47ch;
  margin-inline: auto;
}

@media (min-width: 40rem) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
  .hero .button {
    margin: unset;
  }
  .main__gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
  }
}
@media (min-width: 60rem) {
  .hero {
    display: flex;
  }
  .hero__image-left img {
    min-width: unset;
    margin-left: -2%;
    -o-object-fit: unset;
       object-fit: unset;
  }
  .hero__image-right {
    display: block;
    margin-right: -2%;
  }
  .main {
    margin-top: 7rem;
  }
  .main__gallery {
    gap: 2rem;
  }
}/*# sourceMappingURL=main.css.map */