html {
  scroll-behavior: smooth;
}

.header {
  padding: 0 0.5rem 0 1rem;
  margin: 0.8rem 0.5rem 0 0.5rem;
  border-radius: 50px;
  position: absolute;
  width: calc(100% - 16px);
  -webkit-box-shadow: 0px 6px 10px 0px rgba(60, 114, 193, 0.2);
  -moz-box-shadow: 0px 6px 10px 0px rgba(60, 114, 193, 0.2);
  box-shadow: 0px 6px 10px 0px #3c72c133;
  transition: all 0.2s ease-in-out;
}

.header-scroll {
  position: fixed;
  width: 100%;
  height: 60px;
  margin: 0;
  border-radius: 0;
  padding: 0 1.5rem;
  box-shadow: 0px 4px 8px 0px rgba(60, 114, 193, 0.3);
  transition: all 0.2s ease-in-out;
}

.nav-scroll {
  height: 80px;
}

#nav-mobile {
  box-shadow: 0px 4px 8px 0px rgba(60, 114, 193, 0.3);
}

@media screen and (min-width: 768px) {
  .header {
    width: calc(100% - 8rem);
    margin: 1rem 4rem 0 4rem;
    padding-left: 3rem;
  }

  .header-scroll {
    position: fixed;
    width: 100%;
    height: 80px;
    margin: 0;
    border-radius: 0;
    padding: 0 4rem;
    box-shadow: 0px 4px 8px 0px rgba(60, 114, 193, 0.3);
    transition: all 0.2s ease-in-out;
  }
}

@media screen and (min-width: 1536px) {
  .header {
    width: calc(100% - 22rem);
    margin: 1rem 11rem 0 11rem;
  }

  .header-scroll {
    padding: 0 11rem;
  }
}

.active-item-top,
.active-item-bottom {
  width: 100%;
  height: 5px;
  background-color: #0e4e40;
  border-radius: 0 0 15px 15px;
}

.active-item-text {
  color: #000;
  font-weight: 600;
}

.active-item-bottom {
  border-radius: 15px 15px 0 0;
}

.active-item-top-mobile,
.active-item-bottom-mobile {
  width: 7px;
  height: 22px;
  background-color: #0e4e40;
  border-radius: 0 15px 15px 0;
}

.active-item-bottom-mobile {
  border-radius: 15px 0 0 15px;
}

.carrossel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carrossel::-webkit-scrollbar {
  display: none;
}
