* {
  border: none;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg-color: hsl(0, 0%, 91%);
  --second-bg-color: white;
  --main-color: hsl(159, 19%, 26%);
  --text-color: black;
}
body {
  background-color: var(--second-bg-color);
}
header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  position: fixed;
  background-color: var(--bg-color);
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  width: 100%;
  cursor: pointer;
  z-index: 100;
}
header h1 {
  font-size: 30pxpx;
  font-weight: bold;
}
.headernav a {
  font-size: 20px;
  color: black;
  font-weight: bold;
}
.headernav a:hover {
  color: hsl(0, 0%, 40%);
}
.headerlogin {
  padding: 5px 10px;
  color: black;
  background-color: white;
  border-radius: 10px;
}
.headerlogin:hover {
  background-color: hsl(0, 0%, 91%);
}
.startnow {
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
  background-color: var(--main-color);
}
.startnow:hover {
  background-color: hsl(159, 19%, 36%);
}
@media (min-width: 400px) {
  header {
    display: inline;
  }
  .headernav {
    padding: 15px 0px;
  }
}
@media (min-width: 800px) {
  header {
    display: flex;
    padding: 20px;
  }
  header h1 {
    font-size: 2rem;
  }
  .headernav a {
    margin-right: 25px;
  }
  .headerlogin {
    margin-right: 15px;
  }
}
.homepage {
  padding-top: 100px;
  padding-bottom: 15px;
  background-color: var(--bg-color);
  align-items: center;
  text-align: center;
  color: black;
}
@media (min-width: 400px) {
  .homepage {
    padding-top: 190px;
  }
}
.homepage h5 {
  font-size: 16px;
  color: black;
}
.homepage h1 {
  margin-top: 10px;
  font-size: 2.5rem;
  padding-bottom: 10px;
}
.homepage p {
  font-size: 18px;
  margin-bottom: 25px;
}
.startfree {
  padding: 10px 25px;
  background-color: var(--main-color);
  border-radius: 10px;
  color: white;
  margin-right: 10px;
}
.startfree:hover {
  background-color: hsl(159, 19%, 36%);
}
.demo {
  padding: 10px 25px;
  background-color: white;
  border-radius: 10px;
  color: black;
  margin-right: 10px;
}
.demo:hover {
  background-color: hsl(0, 0%, 91%);
}
.homepage div ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-weight: bold;
  margin-top: 25px;
  padding: 10px 20px;
}
.efficientsection {
  padding: 25px 10px 35px 10px;
  align-items: center;
  color: var(--second-bg-color);
  background-color: var(--main-color);
}
.efficientsection h1,
.efficientsection-p {
  text-align: center;
  margin-bottom: 15px;
  color: white;
}
.efficientcontainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, 350px);
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.efficientcontainer div {
  padding: 20px 15px;
  border-radius: 10px;
  background-color: hsl(159, 19%, 36%);
}
.efficientcontainer aside {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 10px;
}
.efficientcontainer h3 {
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
}
.advance {
  padding: 25px 15px;
  color: black;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: var(--second-bg-color);
}
.advanceh1 {
  align-items: center;
  text-align: center;
  font-size: 2rem;
}
.advancep {
  align-items: center;
  text-align: center;
  font-size: 16px;
  padding-bottom: 25px;
}
.advancecontainer {
  display: block;
  align-items: center;
  border-radius: 10px;
  padding: 30px 0px 0px 25px;
  background-color: var(--bg-color);
}
@media (min-width: 800px) {
  .advancecontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding: 30px 0px 0px 25px;
    border-radius: 5px;
    background-color: var(--bg-color);
  }
  .advanceexplore {
    flex: 1;
  }
  .chart-wrapper {
    flex: 1;
    width: 100%;
  }
}
.advanceexplore {
  padding: 15px 30px;
}
.advanceexplore h1 {
  font-size: 28px;
  padding-bottom: 15px;
}
.advanceexplore p {
  padding-bottom: 50px;
  font-size: 16px;
}
.advanceexplore a {
  padding: 10px 25px;
  color: white;
  border-radius: 10px;
  background-color: var(--main-color);
}
.chart-wrapper {
  display: flex;
  align-items: flex-end;
  margin-top: 25px;
  width: 100%;
  overflow: hidden;
  gap: 10px;
  padding: 20px;
  background: white;
  border-end-end-radius: 10px;
  border-top-left-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 250px;
}
.y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 10px;
  font-size: 12px;
  color: #666;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 100%;
}
.bar-value90 {
  width: 30px;
  height: var(--value);
  border-radius: 6px 6px 0 0;
  transition: height 0.3s;
  background-color: green;
}
.bar {
  width: 30px;
  background-color: hsl(210, 70%, 60%);
  height: var(--value);
  border-radius: 6px 6px 0 0;
  transition: height 0.3s;
}
@media (min-width: 1000px) {
  .bar-chart {
    display: flex;
    justify-content: space-between;
  }
  .bar,
  .bar-value90 {
    width: 50px;
    gap: 25px;
  }
}
.advanceexplore a:hover {
  background-color: hsl(159, 19%, 36%);
}
.advancecontainer2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, 400px);
  justify-content: center;
  gap: 10%;
  padding: 15px;
  margin-top: 25px;
  margin-bottom: 150px;
  background-color: white;
}
@media (min-width: 960px) {
  .advancecontainer2 {
    margin-bottom: 30px;
  }
}
.smartnoti {
  color: black;
  border-radius: 5px;
  border: 1px solid hsl(0, 0%, 90%);
  background-color: hsl(0, 0%, 97%);
}
.taskmanage {
  padding-bottom: 10px;
  color: black;
  border-radius: 5px;
  border: 1px solid hsl(0, 0%, 90%);
  background-color: hsl(0, 0%, 97%);
}
.smartnoti h4,
.taskmanage h4 {
  font-size: 2rem;
}
.smartnotidiv,
.taskmanagediv {
  align-items: center;
  text-align: center;
  color: black;
  padding: 35px 15px;
  border-radius: 5px;
  background-color: var(--bg-color);
}
.emailnotisave,
.taskmanage aside {
  display: flex;
  justify-content: space-between;
  padding: 25px 15px;
}
.taskmanage aside h5 {
  font-size: 20px;
}
.henry {
  padding: 35px 10px;
  background-color: hsl(0, 0%, 94%);
}
.jane {
  padding: 35px 10px;
  margin-bottom: 20px;
}
.jane p {
  text-align: center;
  align-items: center;
}
.henry h4,
.jane h4 {
  margin-bottom: 25px;
}
.emailnotisave h2,
.smartnoti aside h2 {
  font-size: 20px;
}
.emailnotisave button {
  font-size: 17px;
  padding: 5px;
  border-radius: 10px;
  background-color: hsl(0, 0%, 90%);
}
.emailnotisave button:hover {
  background-color: hsl(0, 0%, 97%);
}
.smartnoti aside {
  display: flex;
  justify-content: space-between;
  padding: 25px 15px 10px 10px;
  border-top: 1px solid hsl(0, 0%, 80%);
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsl(0, 0%, 70%);
  transition: 0.4s;
  border-radius: 34px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: hsl(200, 70%, 50%);
}

input:checked + .slider::before {
  transform: translateX(26px);
}

.articleadvancecontainers {
  display: grid;
  grid-template-columns: repeat(auto-fill, 400px);
  justify-content: center;
  gap: 10%;
  padding: 15px;
  margin-top: 25px;
  margin-bottom: 150px;
  background-color: white;
}
.articleadvancecontainers div {
  padding: 10px;
  color: black;
  border-radius: 5px;
  border: 1px solid hsl(0, 0%, 90%);
  background-color: hsl(0, 0%, 97%);
}
.articleadvancecontainers h1 {
  padding: 10px;
  font-size: 28px;
}
.articleadvancecontainers p {
  padding-bottom: 10px;
}
.articleadvancecontainers span {
  font-size: 16px;
}
.articleadvancecontainers button {
  display: flex;
  justify-content: center;
  text-align: center;
  border: 1px solid hsl(0, 0%, 70%);
  padding: 10px 150px;
  border-radius: 50px;
  margin-top: 15px;
  background-color: white;
}
.articleadvancecontainers button:hover {
  color: white;
  background-color: hsl(159, 19%, 36%);
}
.articleadvancecontainers .feature {
  display: flex;
  margin-top: 10px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.feature::before,
.feature::after {
  height: 1px;
  margin: 0 10px;
  content: "";
  flex-grow: 1;
  width: 100%;
  background-color: hsl(0, 0%, 10%);
}
.articleadvancecontainers aside i {
  padding-right: 10px;
}
.articleadvancecontainers aside p {
  font-weight: bolder;
  font-size: 16px;
}
.advanceprof {
  text-align: center;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--bg-color);
}
.advanceprof h1 {
  font-size: 28px;
  padding-bottom: 15px;
}
.advanceprof button {
  padding: 10px 25px;
  border-radius: 50px;
  margin-top: 25px;
  color: white;
  background-color: hsl(159, 23%, 32%);
}
.advanceprof button:hover {
  background-color: hsl(159, 19%, 56%);
}
.strategyatlunchpoint {
  align-items: center;
  text-align: center;
  color: black;
  padding: 20px 10px;
  background-color: white;
}
.strategyatlunchpointdiv h1 {
  margin-bottom: 20px;
}
.strategyatlunchpointdiv h4 {
  display: grid;
  place-items: center;
  justify-content: center;
  margin: auto;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: green;
}
.activeusers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 25px 10px;
  border-radius: 10px;
  background-color: var(--bg-color);
}
.activeusers span {
  display: block;
  font-size: 16px;
}
.discoverfullscale {
  display: block;
}
@media (min-width: 700px) {
  .discoverfullscale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 25px 10px;
  }
}
.discoverfullscale div {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.loginsection {
  display: none;
  background-color: hsl(0, 0%, 91%);
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
}
.loginhidden,
.startnowhidden {
  max-width: 600px;
  margin: 0% auto;
  padding-top: 200px;
}
.loginhidden small a,
.startnowhidden small a {
  font-size: 15px;
  color: hsl(159, 19%, 26%);
}

.btn {
  background-color: hsl(159, 19%, 26%);
  color: white;
  padding: 10px 24px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: hsl(159, 19%, 36%);
}
.back-btn {
  background-color: white;
  color: black;
}

.back-btn:hover {
  background-color: hsl(0, 0%, 80%);
}

input {
  display: block;
  width: 80%;
  margin: 10px auto;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid hsl(159, 19%, 26%);
}

h1,
h2 {
  color: black;
}

small {
  color: black;
}
#errormessage,
#errormessage1 {
  color: black;
  padding-top: 20px;
}
.footer {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 25px 10px 5px 10px;
}

table {
  border-spacing: 5px;
  border-collapse: 10px;
  width: 100%;
  overflow: hidden;
}
th,
td {
  padding: 5px;
  text-align: left;
  font-size: 14px;
}
@media (min-width: 800px) {
  th,
  td {
    font-size: 20px;
    padding: 15px;
  }
}
.footersocial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
}
.footersocial div a i {
  margin-right: 10px;
  font-size: 20px;
  color: black;
}
.footersocial div a i:hover {
  color: hsl(0, 0%, 40%);
}
