@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Roboto+Slab:wght@700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 20px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 150%;
  color: #424242;
}
body.lock {
  overflow: hidden;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 576px) {
  html {
    font-size: 16px;
  }
}
.home-page__steps {
  margin: 5.5rem 0;
}
.home-page__product {
  margin: 6rem 0 8rem 0;
}

.container {
  width: 100%;
  max-width: 1410px;
  padding: 0 1rem;
  margin: 0 auto;
}

.title {
  color: #01996D;
  font-family: "Roboto Slab", sans-serif;
  font-weight: 700;
  line-height: 140%;
}
.title--h1 {
  font-size: 3.25rem;
}
.title--h2 {
  font-size: 2.5rem;
}
.title--h3 {
  font-size: 1.5rem;
}
.title--black {
  color: #000;
}
.title--white {
  color: #fff;
}

.subtitle {
  font-size: 1.25rem;
}

.link {
  position: relative;
  text-decoration: none;
  color: #292929;
}
.link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  border-bottom: 2px solid #292929;
  transition: width 0.2s ease-in;
}
.link:hover::after {
  width: 100%;
}
.link--white {
  color: #fff;
}
.link--white::after {
  border-color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__link {
  text-align: center;
}
.nav__link + .nav__link {
  margin-left: 1rem;
}

@media screen and (max-width: 768px) {
  .nav {
    justify-content: flex-start;
    flex-direction: column;
  }
  .nav__link {
    margin: 1rem 0;
  }
  .nav__link + .nav__link {
    margin-left: 0;
  }
}
.btn {
  cursor: pointer;
  text-align: center;
  color: white;
  background-color: #01996D;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: background-color 0.2s ease-in;
}
.btn--sm {
  padding: 0.75rem 2.5rem;
}
.btn:hover {
  background-color: #01845f;
}
.btn:active {
  background-color: #016a4c;
}

.full-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.full-screen__content {
  height: 100%;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__burger {
  display: none;
}
.header__nav {
  width: 100%;
}
.header__nav-wrapper {
  max-width: 28rem;
  width: 100%;
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  .header__burger {
    position: relative;
    z-index: 25;
    display: block;
    width: 1.5rem;
    height: 1rem;
  }
  .header__burger span, .header__burger::after, .header__burger::before {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #292929;
  }
  .header__burger::after, .header__burger::before {
    content: "";
  }
  .header__burger::after {
    top: 0;
    transition: all 0.2s ease-in;
  }
  .header__burger::before {
    bottom: 0;
    transition: all 0.2s ease-in;
  }
  .header__burger span {
    top: 9px;
    transition: all 0.1s ease-in;
  }
  .header__burger--active::after {
    transform: rotate(45deg);
    top: 9px;
  }
  .header__burger--active::before {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header__burger--active span {
    transform: scale(0);
  }
  .header__nav {
    position: absolute;
    top: 0;
    right: -100%;
    max-width: 70%;
    height: 100vh;
    padding: 0;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.6s ease-in;
  }
  .header__nav--active {
    right: 0;
  }
  .header__nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    transition: background-color 0.6s ease-in;
  }
  .header__nav-wrapper--active {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 576px) {
  .header__burger span {
    top: 7px;
  }
  .header__burger--active::after {
    top: 7px;
  }
  .header__burger--active::before {
    bottom: 7px;
  }
}
.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("../img/intro/intro-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.intro__content {
  width: 100%;
  max-width: 21rem;
}
.intro__title {
  margin-bottom: 1rem;
}
.intro__body {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 992px) {
  .intro {
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: multiply;
  }
  .intro__title, .intro__body {
    color: #fff;
  }
}
@media screen and (max-width: 576px) {
  .intro__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}
.steps__top {
  margin-bottom: 9rem;
}
.steps__cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.steps__cards-item {
  width: 100%;
  max-width: 19.5rem;
}
.steps__cards-item:nth-child(2) {
  margin-top: 12rem;
}

@media screen and (max-width: 992px) {
  .steps__cards {
    row-gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .steps__cards-item:nth-child(2) {
    margin-top: 0;
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
    align-self: center;
  }
}
@media screen and (max-width: 768px) {
  .steps__cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
  }
  .steps__cards-item {
    max-width: 100%;
  }
  .steps__cards-item:nth-child(2) {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
  }
}
.how-it-works {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.how-it-works__header {
  width: 100%;
  max-width: 27rem;
}
.how-it-works__text {
  width: 100%;
  max-width: 34rem;
}

@media screen and (max-width: 768px) {
  .how-it-works {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .how-it-works {
    text-align: center;
  }
}
.feature__header {
  position: relative;
  margin-bottom: 2.75rem;
}
.feature__count {
  font-size: 7.5rem;
  font-family: "Roboto Slab", sans-serif;
  color: rgba(1, 153, 109, 0.2);
}
.feature__title {
  position: absolute;
  bottom: 0;
  left: 25%;
}
.feature__text {
  margin-bottom: 3rem;
}
.feature__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.story {
  width: 100%;
  color: #fff;
  background-color: #245852;
  padding: 10rem 0;
}
.story__inner {
  display: grid;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  grid-template-columns: 0.45fr 0.55fr;
}
.story__content {
  max-width: 100%;
}
.story__title {
  margin-bottom: 1.5rem;
}
.story__subtitle {
  margin-bottom: 3rem;
}
.story__video {
  max-width: 100%;
  border-radius: 0.75rem;
}

@media screen and (max-width: 992px) {
  .story__inner {
    grid-template-columns: 1fr;
  }
  .story__video {
    border-radius: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .story__content {
    text-align: center;
  }
}
.product__inner {
  display: grid;
  justify-content: space-between;
  gap: 4rem;
  grid-template-columns: 0.55fr 0.45fr;
}
.product__subtitle {
  margin-bottom: 0.5rem;
}
.product__title {
  margin-bottom: 1rem;
}
.product__text {
  margin-bottom: 2rem;
}
.product__left {
  position: relative;
}
.product__img {
  float: right;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 90%;
}
.product__card {
  position: absolute;
  bottom: -10%;
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 992px) {
  .product__inner {
    grid-template-columns: 1fr;
  }
  .product__left {
    grid-row-start: 2;
  }
}
@media screen and (max-width: 576px) {
  .product__content {
    text-align: center;
  }
  .product__img {
    display: none;
  }
  .product__left {
    justify-self: center;
  }
  .product__card {
    position: relative;
    bottom: 0;
  }
}
.card {
  color: #000;
  background-color: white;
  box-shadow: 0px 4px 18px rgba(165, 165, 165, 0.25);
  padding: 1rem 3rem 1.5rem;
  border-radius: 0.25rem;
}
.card__top {
  text-align: center;
  margin-bottom: 0.5rem;
}
.card__top-title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid black;
}
.card__img {
  max-width: 3rem;
  max-height: 3rem;
  border-radius: 50vh;
}
.card__name, .card__list-item {
  font-size: 0.5rem;
}
.card__list {
  list-style: disc inside;
}
.card__list-caption {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Roboto Slab", sans-serif;
}

.footer {
  width: 100%;
  padding: 5rem 0 7rem;
  background-color: #245852;
}
.footer__title {
  margin-bottom: 4rem;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
}
.footer__nav-list-item {
  font-size: 1.25rem;
}
.footer__nav-list-item + .footer__nav-list-item {
  margin-top: 3rem;
}

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