.container {
  padding: 1em;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    padding: 1em 2em;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
}

.nav {
  background-color: #13133f;
  width: 100%;
}
.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo {
  width: 250px;
  max-width: 100%;
}

.page-title {
  font-size: 2rem;
  text-align: center;
  margin-block: 1em;
}
@media only screen and (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}
.page-title-span {
  color: #0077b5;
}

.steps {
  padding-block: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2em;
}
@media only screen and (min-width: 768px) {
  .steps {
    padding-block: 2em;
  }
}
@media only screen and (min-width: 1024px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    grid-template-rows: 1fr;
  }
}
.steps__step {
  text-align: center;
}
.steps__title {
  font-size: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .steps__title {
    font-size: 2rem;
  }
}
.steps__img {
  max-width: 100%;
  border-radius: 25px;
}
.steps__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5em;
  max-width: 100%;
  padding: 2em;
  width: 100%;
  border: 2px solid #0077b5;
  border-radius: 25px;
  box-shadow: 2px 2px 8px black;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1024px) {
  .steps__box {
    flex-direction: row;
    align-items: center;
  }
  .steps__box:hover {
    border: 2px solid #00a0dc;
    transform: scale(1.05);
    background-color: #0077b5;
    box-shadow: 2px 2px 15px #0077b5;
    color: #fff;
  }
}
.steps__box-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
}/*# sourceMappingURL=main.css.map */