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

body {
  font-family: "Poppins", sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-tabs-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 10vh;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  background-color: #1a1a1a;
}

.nav-tabs-container .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1a1a1a;
  position: relative;
}

.nav-tabs-container .nav-tabs .nav-tab {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 5px 10px;
  background-color: #1a1a1a;
  color: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
          box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-tabs-container .nav-tabs .nav-tab.active {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid red;
}

.nav-tabs-container .nav-tabs .dash {
  position: absolute;
  top: 90%;
  left: 3%;
  height: 5px;
  background-color: red;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}

section {
  height: 100vh;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50%;
}

section .information p {
  width: 60%;
}
/*# sourceMappingURL=style.css.map */