@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  overflow: hidden hidden;
}

.bg_image {
  position: absolute;
  background: #eef3f6;
  min-height: 450px;
  top: 0;
  bottom: 1000px;
  right: 0;
  left: 50%;
  z-index: -1;
  border-radius: 0 0 0 60px;
}

html,
button {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 112.5%;
  font-weight: 700;
}

nav,
.top_heading,
.center_heading h1,
.demo_cta,
button {
  text-transform: uppercase;
}

li,
h4,
h3,
button,
h5,
footer {
  font-size: 0.8rem;
}

.main_wrapper {
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

header {
  display: flex;
  position: relative;
  align-items: center;
  margin-top: 2.5rem;
}

.hamburger :hover {
  cursor: pointer;
}
.hamburger .open,
.hamburger .close {
  visibility: hidden;
  position: absolute;
  right: 0;
}

nav {
  position: absolute;
  right: 0;
}
nav ul li:nth-child(5) {
  color: #a0a1ac;
}
nav li {
  list-style-type: none;
  display: inline-block;
  margin-left: 2rem;
  letter-spacing: 1px;
  color: #242942;
}
nav li span {
  position: relative;
  top: -2px;
  display: block;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #a0a1ac;
}
nav li:hover {
  text-decoration: underline;
  cursor: pointer;
  overflow: hidden;
}

.article_container {
  width: 100%;
  position: relative;
}

.image_container {
  position: absolute;
  left: 50%;
  top: 70px;
}

.image_container img {
  width: 850px;
  height: auto;
}

.headings {
  max-width: 470px;
  margin: 2rem 0;
  padding: 6rem 0;
}

.top_heading {
  margin-bottom: 1rem;
}
.top_heading h4 {
  display: inline-block;
  margin-right: 1rem;
  border-radius: 34px;
  border: none;
  outline: none;
  width: 45px;
  padding: 0.1rem;
  background: #242942;
  color: white;
  text-align: center;
}
.top_heading h3 {
  display: inline-block;
  letter-spacing: 5px;
  color: #a0a1ac;
  font-weight: 400;
}

.center_heading {
  margin-bottom: 3rem;
}
.center_heading h1 {
  font-size: 3rem;
  color: #242942;
  line-height: 1;
  margin-bottom: 2rem;
}
.center_heading h2 {
  font-size: 0.9rem;
  color: #a0a1ac;
  line-height: 1.4;
  width: 250px;
  font-family: "Barlow";
}

.demo_cta button {
  display: inline;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #ff5c5c;
  color: white;
  letter-spacing: 1.5px;
}
.demo_cta h5 {
  display: inline-block;
  margin-left: 1rem;
  letter-spacing: 4px;
  color: #a0a1ac;
  font-weight: 400;
}

footer {
  margin: 4rem 0;
  text-align: center;
  width: 100%;
  font-family: "Barlow";
}

@media only screen and (max-width: 600px) {
  body {
    overflow-y: visible;
  }

  .main_wrapper {
    width: 90%;
  }

  header {
    margin: 2rem 0 3rem 0;
    position: relative;
  }

  .hamburger .open {
    visibility: visible;
    display: block;
  }

  .toggle_cta .open {
    visibility: hidden;
  }
  .toggle_cta .close {
    visibility: visible;
  }

  .dropdown_content {
    display: none;
    position: absolute;
    top: 60px;
    width: 100%;
    height: fit-content;
    padding: 0.3rem 0;
    background: white;
    z-index: 1;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  .dropdown_content li {
    display: block;
    text-align: center;
    margin: 1rem;
    font-size: 1.3rem;
  }
  .dropdown_content li span {
    display: none;
  }
  .dropdown_content ul li:nth-child(3) {
    border-bottom: solid 1pt #a0a1ac;
    padding-bottom: 1.2rem;
  }

  .show {
    display: block;
  }

  .demo_cta h5 {
    letter-spacing: 1.3px;
    margin-left: 0.5rem;
  }

  .article_container {
    margin: 0 0;
    width: 100%;
  }

  .image_container {
    position: relative;
    left: -30px;
    top: 0;
  }
  .image_container img {
    width: 550px;
  }

  .headings {
    padding: 2rem 0;
  }

  .top_heading h4 {
    margin-right: 0.8rem;
    width: 50px;
    padding: 0.3rem;
  }

  .center_heading {
    margin-bottom: 2rem;
  }
  .center_heading h1 {
    font-size: 2.2rem;
  }
  .center_heading h2 {
    font-size: 1.1rem;
    color: #a0a1ac;
    line-height: 1.4;
    width: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1000px) {
  body {
    overflow-y: visible;
  }

  .main_wrapper {
    width: 90%;
  }

  header {
    margin: 2rem 0 3rem 0;
  }

  .hamburger .open {
    visibility: visible;
  }

  .toggle_cta .open {
    visibility: hidden;
  }
  .toggle_cta .close {
    visibility: visible;
  }

  .dropdown_content {
    display: none;
    position: absolute;
    top: 60px;
    width: 100%;
    height: fit-content;
    padding: 0.3rem 0;
    background: white;
    z-index: 1;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  .dropdown_content li {
    display: block;
    text-align: center;
    margin: 1rem;
    font-size: 1.3rem;
  }
  .dropdown_content li span {
    display: none;
  }
  .dropdown_content ul li:nth-child(3) {
    border-bottom: solid 1pt #a0a1ac;
    padding-bottom: 1.2rem;
  }

  .show {
    display: block;
  }

  .demo_cta h5 {
    letter-spacing: 1.3px;
    margin-left: 0.5rem;
  }

  .headings {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .image_container {
    position: relative;
    left: 0;
    top: 0;
  }

  .image_container img {
    width: 100%;
    height: auto;
  }

  .top_heading h4 {
    padding: 0.2rem;
  }

  .center_heading {
    margin-bottom: 1rem;
    width: 500px;
  }
  .center_heading h1 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
  }
  .center_heading h2 {
    font-size: 1.1rem;
    width: 65%;
  }
}

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