html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

body {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
  font-size: 18px;
  width: 100%;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .logo {
  padding-left: 10%;
  padding-top: 50px;
}

header .desktop-nav {
  display: none;
}

header .mobile-nav {
  display: inline-block;
  padding-right: 10%;
  padding-top: 50px;
}

header .mobile-nav .hamburger {
  cursor: pointer;
}

header .mobile-nav .nav-container {
  background-color: white;
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  -webkit-box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  display: none;
}

header .mobile-nav .nav-container nav ul {
  padding: 0;
}

header .mobile-nav .nav-container nav ul li {
  list-style: none;
  margin: 20px 0;
}

header .mobile-nav .nav-container nav ul li a {
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  color: #242942;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

header .mobile-nav .nav-container nav ul li a:hover {
  text-decoration: underline;
}

header .mobile-nav .nav-container nav ul .login {
  width: 80%;
  margin: auto;
  padding-top: 15px;
  border-top: 1px solid #a0a1ac;
}

header .mobile-nav .nav-container nav ul .login a {
  color: #a0a1ac;
}

.illustration {
  width: 430px;
  margin-top: 50px;
  margin-left: 10px;
}

.background {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 50%;
  height: 400px;
  background-color: #eef3f6;
  border-bottom-left-radius: 50px;
}

.content {
  margin-left: 10%;
  margin-top: 110px;
}

.content .new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  color: #5b5f71;
  letter-spacing: 3px;
  font-size: 13px;
}

.content .new span {
  background-color: #242942;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: white;
  border-radius: 50px;
  width: 40px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 1px;
}

.content .new p {
  margin: 2px;
}

.content h1 {
  color: #242942;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.content .describe {
  color: #5b5f71;
  font-size: 15px;
}

.content .button-section {
  width: 270px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #a0a1ac;
  margin-top: 20px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content .button-section p {
  margin: 0;
}

.content .button-section .button button {
  width: 100px;
  height: 40px;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 5px;
  background-color: #ff5c5c;
  font-size: 10px;
  cursor: pointer;
}

.content .button-section .button button:hover {
  background-color: #f19393;
}

@media screen and (min-width: 470px) {
  .illustration {
    margin-left: 30%;
    margin-top: 50px;
  }
}

@media screen and (min-width: 700px) {
  header .logo {
    padding-left: 2%;
  }
  header .desktop-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 2%;
  }
  header .desktop-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    width: 350px;
  }
  header .desktop-nav ul li {
    list-style: none;
  }
  header .desktop-nav ul li a {
    text-decoration: none;
    color: #242942;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  header .desktop-nav ul li a:hover {
    text-decoration: underline;
  }
  header .desktop-nav ul .login a {
    color: #a0a1ac;
  }
  header .desktop-nav ul .login::before {
    content: "\2022";
    color: #a0a1ac;
    font-weight: bold;
    display: inline-block;
    width: 5em;
    margin-left: -1em;
  }
  header .mobile-nav {
    display: none;
  }
  .illustration {
    position: absolute;
    left: 54%;
    top: 180px;
    width: auto;
    margin-top: 0;
    margin-left: 0;
  }
  .background {
    height: 365px;
  }
  .content {
    margin-left: 2%;
  }
  .content .new {
    width: 280px;
    letter-spacing: 1px;
    font-size: 18px;
  }
  .content .new span {
    padding-top: 2px;
  }
  .content h1 {
    font-size: 50px;
  }
  .content .describe {
    font-size: 18px;
  }
  .content .button-section {
    width: 380px;
    font-size: 14px;
    letter-spacing: 3px;
    margin-top: 50px;
    margin-bottom: 0;
  }
  .content .button-section .button button {
    width: 150px;
    font-size: auto;
  }
}

@media screen and (min-width: 1120px) {
  header .logo {
    padding-left: 15%;
  }
  header .desktop-nav {
    padding-right: 15%;
  }
  .content {
    margin-left: 15%;
  }
}
/*# sourceMappingURL=style.css.map */