@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #01141d;
  height: 100vh;
}

.container {
  width: 116.6rem;
  margin: 0 auto;
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 116.6rem;
  position: fixed;
  margin-top: 3.4rem;
}

.nav-container .logo {
  font-weight: 700;
  font-size: 2rem;
  color: #fd5e5e;
}

.nav-container .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-container .right .menu-items a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f1faee;
  text-decoration: none;
  margin-right: 7rem;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  display: inline-block;
}

.nav-container .right .menu-items a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.nav-container .right .menu-items .btn {
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.22);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 0.8rem 3.2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
}

.nav-container .right .menu-items .btn.dark {
  background: #f1faee;
  color: #023047;
}

.nav-container .right .menu-items .btn.light {
  background: #023047;
  color: #f1faee;
}

.nav-container .dark-switch,
.nav-container .light-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  opacity: 0;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  pointer-events: none;
}

.nav-container .dark-switch.active,
.nav-container .light-switch.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  cursor: pointer;
  pointer-events: auto;
}

a.btn {
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.22);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 1.2rem 3.2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  display: inline-block;
}

a.btn.dark {
  background: #f1faee;
  color: #023047;
}

a.btn.light {
  background: #023047;
  color: #f1faee;
  border: 1px solid #f1faee;
}

.hero-section {
  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;
  height: 100vh;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 6rem;
  line-height: 120%;
  color: #f1faee;
  width: 58.7rem;
  margin-top: 6rem;
  margin-bottom: 1 0.6rem;
}

.hero-section .sub-heading {
  font-size: 2rem;
  line-height: 170%;
  color: #f1faee;
  width: 58.7rem;
}

.hero-section .btn {
  margin-top: 2rem;
  margin-right: 4.2rem;
}

.hero-section .right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.hero-section .right img {
  vertical-align: middle;
  height: 55rem;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=main.css.map */