@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;700&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  line-height: 1.5;
  font-family: "Public sans", sans-serif; }

body {
  font-size: 1.8rem;
  font-weight: 300;
  color: #9698a6; }

.container {
  padding: 6rem 2.4rem; }

.hidden {
  visibility: hidden;
  opacity: 0; }

.btn {
  color: white;
  border-radius: 2.5rem;
  padding: 1.5rem 3rem;
  cursor: pointer;
  font-weight: 400;
  opacity: 1;
  transition: .3s;
  display: inline-block;
  background: linear-gradient(to right, #31d35c, #2bb7da); }
  .btn:hover {
    opacity: 0.7; }

.flex {
  display: flex; }
  .flex-jc-c {
    justify-content: center; }
  .flex-jc-sb {
    justify-content: space-between; }
  .flex-ai-c {
    align-items: center; }

@media (max-width: 63.9375em) {
  .h-o-m {
    display: none; } }

@media (min-width: 64em) {
  .h-o-d {
    display: none; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.header__nav {
  padding: 1.7rem 2.4rem;
  position: relative;
  background-color: white; }
  .header__nav-logo {
    width: 12rem;
    height: 2rem; }

.header__ul-list:not(:last-child) {
  padding-right: 3.2rem; }

.header__ul-link {
  font-size: 1.4rem;
  color: #9698a6;
  transition: all .3s ease-in-out;
  padding-bottom: 2rem;
  border-bottom: .5rem solid transparent; }
  .header__ul-link:hover, .header__ul-link:active {
    color: #2d314d;
    font-weight: 700;
    border-bottom: 0.5rem solid #31d35c; }

.header__menu {
  cursor: pointer; }
  .header__menu > span {
    display: block;
    width: 2.6rem;
    height: 2px;
    background-color: #2d314d;
    transition: all 500ms ease-in-out;
    transform-origin: 3px 1px; }
    .header__menu > span:not(:last-child) {
      margin-bottom: 5px; }
  .header__menu.open > span:first-child {
    transform: rotate(45deg); }
  .header__menu.open > span:nth-child(2) {
    transform: translateX(-1rem);
    opacity: 0; }
  .header__menu.open > span:last-child {
    transform: rotate(-45deg); }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*  animation: fade-in 900ms ease-in-out  forwards; */
  background: linear-gradient(to bottom, #2d314d, rgba(0, 0, 0, 0.404));
  transition: all 900ms; }

.hero__image {
  position: relative;
  background-image: url(../../images/bg-intro-mobile.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 28rem;
  width: 100%;
  z-index: -1; }
  .hero__image::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(../../images/image-mockups.png);
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center 90%; }

.hero__text {
  text-align: center; }
  .hero__text-h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2d314d;
    width: 90%;
    margin: auto;
    padding-bottom: 2rem;
    line-height: 1.3; }
  .hero__text p {
    font-size: 1.6rem;
    margin-bottom: 3.5rem; }
