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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f6fa;
  color: #1e272e;
}

body a {
  text-decoration: none;
}

.theme_header {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.theme_header .hero_banner {
  height: 100%;
  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;
  text-align: center;
}

.theme_header .hero_banner .hero_banner_container {
  width: 60%;
  margin: auto;
}

.theme_header .hero_banner .hero_banner_container .hero_banner_title {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.theme_header .hero_banner .hero_banner_container .her_banner_text {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.theme_header .hero_banner .hero_banner_container .hero_banner_button_group {
  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;
}

.theme_header .hero_banner .hero_banner_container .hero_banner_button_group .cat_button {
  text-transform: capitalize;
  font-size: 1rem;
  padding: 1rem 2rem;
  margin: 0rem 2rem;
  border-radius: 0.5rem;
  color: #2c3e50;
}

.theme_header .hero_banner .hero_banner_container .hero_banner_button_group .cat_button.cat_button_borderd {
  border: 2px solid #2c3e50;
}

.theme_header .hero_banner .hero_banner_container .hero_banner_button_group .cat_button.cat_button_filled {
  background-color: #2c3e50;
  color: #f5f6fa;
}

.theme_header_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 1rem 2rem;
}

.theme_header_navigation .theme_navigation_brand img {
  height: 2rem;
}

.theme_header_navigation .theme_navigation_close {
  color: #f5f6fa;
}

.theme_header_navigation .theme_navigation_open {
  color: #1e272e;
}

.theme_overlayer {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: #1e272e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.theme_overlayer.theme_overlayer_type_one {
  height: 100%;
  width: 0%;
  overflow-x: hidden;
}

.theme_overlayer.theme_overlayer_type_one_animation {
  height: 100%;
  width: 0%;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.theme_overlayer.theme_overlayer_type_two {
  height: 0%;
  width: 100%;
  overflow-y: hidden;
}

.theme_overlayer.theme_overlayer_type_two_animation {
  height: 0%;
  width: 100%;
  overflow-y: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.theme_overlayer .them_overlayer_content {
  position: relative;
  height: 100%;
  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;
}

.theme_overlayer .them_overlayer_content .them_overlayer_link {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: #f5f6fa;
}

.theme_overlayer .them_overlayer_content .them_overlayer_link:hover {
  color: #bdc3c7;
  text-decoration: line-through;
}

.theme_overlayer .them_overlayer_content .them_overlayer_link:last-child {
  margin-bottom: 0;
}

@media (max-width: 460px) {
  .theme_header .hero_banner .hero_banner_container {
    width: 100%;
    padding: 1rem;
  }
  .theme_header .hero_banner .hero_banner_container .hero_banner_title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .theme_header .hero_banner .hero_banner_container .her_banner_text {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .theme_header .hero_banner .hero_banner_container .hero_banner_button_group .cat_button {
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
    margin: 0rem 2rem;
  }
  .theme_header_navigation {
    padding: 0.75rem 1.5rem;
  }
  .theme_header_navigation .theme_navigation_brand img {
    height: 1.5rem;
  }
  .theme_overlayer .them_overlayer_content .them_overlayer_link {
    font-size: 1.4rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
  }
}
/*# sourceMappingURL=theme.css.map */