@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  height: 100vh;
}

#hamburger {
  margin-right: 10%;
  display: none;
  color: white;
  cursor: pointer;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #424874;
  padding: 10px 0px;
}

header .nav-item-left {
  font-size: 25px;
  margin-left: 10%;
  font-weight: 700;
}

header nav {
  padding: 12px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
}

header nav a {
  padding: 0px 10px;
}

header a {
  color: #fff;
  text-decoration: none;
}

.hero {
  display: -ms-grid;
  display: grid;
  height: 95vh;
  -ms-grid-columns: 66% auto;
      grid-template-columns: 66% auto;
}

.hero .left-container {
  background-color: #393f64;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 10%;
}

.hero .left-container .heading {
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
}

.hero .left-container .sub-heading {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
}

.hero .left-container .hero-svg img {
  margin-top: 20px;
  height: 20px;
}

.hero .left-container .hero-svg:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin-left: 10px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.hero .right-container {
  background-color: white;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% auto;
      grid-template-columns: 20% auto;
  -ms-grid-rows: 100%;
      grid-template-rows: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .right-container .hero-img {
  display: unset;
  margin-left: -50%;
  width: 100%;
}

.hero .right-container .featured-img {
  width: 20vw;
}

@media screen and (max-width: 768px) {
  #hamburger {
    display: block;
  }
  .nav-item-right {
    display: none;
  }
  .nav-item-right.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #393f64;
    height: 95vh;
  }
  .hero .left-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 7%;
  }
  .hero .left-container .heading {
    font-size: 45px;
  }
  .right-container {
    visibility: hidden;
  }
}
/*# sourceMappingURL=styles.css.map */