:root {
  font-size: 1rem;
}

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

img {
  max-inline-size: 100%;
  block-size: 100%;
}

html {
  font-family: "Red Hat Display";
}

body {
  min-height: 100vh;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
}

.header {
  margin-block-start: 50px;
  margin-inline: auto;
  text-align: center;
}

.btn-type1 {
  padding-inline: 40px;
  padding-block: 16px;
  display: inline-block;
  border-radius: 29px;
  background-color: #4d96a9;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 150%;
  border: none;
  transition: background-color 0.4s;
}

.btn-type1:hover {
  background-color: #71c0d4;
}

.btn-type2 {
  padding-inline: 40px;
  padding-block: 16px;
  display: inline-block;
  border-radius: 29px;
  background-color: #855fb1;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 150%;
  border: none;
  transition: background-color 0.4s;
}

.btn-type2:hover {
  background-color: #b18bdd;
}

.hero-img-left {
  display: none;
  max-inline-size: 100%;
  block-size: auto;
}

.hero-img-right {
  display: none;
  max-inline-size: 100%;
  block-size: auto;
}

.version {
  color: #8fe3f9;
  font-weight: 900;
}

.hero {
  margin-inline: auto;
  padding-inline: 32px;
  padding-block-start: 64px;
  padding-block-end: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.hero .hero-img {
  transform: scale(1.4);
}
.hero .hero-bottom {
  margin-block-start: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.hero .hero-title {
  color: #28283d;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  font-weight: 900;
  line-height: 110%;
  padding-inline: 16px;
}
.hero .hero-description {
  color: #87879d;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 150%;
  font-weight: 500;
  text-align: center;
}

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}

.landing-body {
  padding: 32px;
  display: grid;
  gap: 64px;
}

.number-container {
  background-color: #fff;
}

.vertical-line {
  width: 1px;
  height: 80px;
  background-color: #d1d1df;
  margin: 0 auto;
  transform: rotate(180deg);
}

.number {
  border: 1px solid #d1d1df;
  border-radius: 50%;
  background-color: #fff;
  width: 56px;
  height: 56px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 150%;
  color: #87879d;
  position: relative;
  z-index: 5;
}

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.collage img {
  border-radius: 8px;
}

.landing-body-bottom {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 32px;
  padding-block-end: 32px;
}

.body-headings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.body-headings h2 {
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 900;
  line-height: 110%;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4d96a9;
}
.body-headings h3 {
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 900;
  line-height: 110%;
  color: #28283d;
}

.body-description {
  color: #87879d;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 500;
  line-height: 150%;
}

.footer {
  position: relative;
  z-index: 2;
  margin-block-start: -30px;
  padding-inline: 40px;
  padding-block: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
  text-align: center;
  height: 374px;
  background-image: linear-gradient(rgba(77, 150, 168, 0.8), rgba(77, 150, 168, 0.9)), url("./assets/mobile/image-footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.footer-heading {
  font-size: clamp(2rem, 2vw, 2.5rem);
  color: #fff;
  line-height: 110%;
  font-weight: 900;
}

.footer-description {
  margin-block-start: 24px;
  margin-block-end: 32px;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 500;
  line-height: 150%;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .hero .hero-img {
    transform: unset;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-inline-size: 450px;
    margin-inline: auto;
  }
  .btn-container {
    flex-direction: row;
    gap: 24px;
  }
  .collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .landing-body-bottom {
    max-inline-size: 505px;
    margin-inline: auto;
  }
  .footer-bottom {
    max-inline-size: 505px;
  }
  .footer {
    height: 320px;
  }
  .footer {
    background-image: linear-gradient(rgba(77, 150, 168, 0.8), rgba(77, 150, 168, 0.9)), url("./assets/tablet/image-footer.jpg");
  }
}
@media screen and (min-width: 1440px) {
  .hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-inline-size: 1500px;
  }
  .hero .hero-title {
    padding-inline: 0;
  }
  .hero .hero-img {
    transform: unset;
    display: none;
  }
  .hero .hero-img-right {
    display: block;
  }
  .hero .hero-img-right {
    display: block;
  }
  .hero .hero-description {
    padding-inline: 16px;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-inline-size: 450px;
    margin-inline: auto;
  }
  .body-headings h3 {
    padding-inline: 72px;
  }
  .btn-container {
    flex-direction: row;
    gap: 24px;
  }
  .landing-body {
    max-inline-size: 1120px;
    margin-inline: auto;
  }
  .collage {
    display: grid;
    grid-template-columns: repeat(4, minmax(256px, 1fr));
    grid-template-rows: 256px;
    justify-content: center;
    gap: 24px;
  }
  .landing-body-bottom {
    max-inline-size: 505px;
    margin-inline: auto;
  }
  .footer {
    height: 312px;
    flex-direction: row;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-inline-size: 1120px;
    margin-inline: auto;
    align-items: center;
  }
  .footer-heading {
    text-align: start;
  }
  .footer-description {
    text-align: start;
    padding-inline-end: 56px;
    margin-block: 0;
  }
  .btn-type2 {
    justify-self: center;
  }
  .footer {
    background-image: linear-gradient(rgba(77, 150, 168, 0.8), rgba(77, 150, 168, 0.9)), url("./assets/desktop/image-footer.jpg");
  }
}

/*# sourceMappingURL=style.css.map */
