.title {
  height: 75px;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0px 100px;
  box-sizing: border-box;
  z-index: 100;
  display: flex;
  align-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.title:after {
  content: "";
  display: block;
  background: #40b1ab;
  height: 110px;
  width: 8000px;
  position: absolute;
  z-index: 0;
  top: -25px;
  left: 50%;
  margin-left: -4000px;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-1deg);
}

.zucchetti-logo {
  z-index: 1630;
  height: 60px;
}

.title-text,
.subtitle-text {
  position: relative;
  z-index: 15;
}

.title-text {
  font-size: 30px;
  line-height: 30px;
}

.subtitle-text {
  font-size: 14px;
  line-height: 14px;
}

body {
  background-image: url(../assets/img/background-level.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 75px;
  font-family: "Myriad Pro", Myriad, "Liberation Sans", "Nimbus Sans L",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: #40b1ab;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
}

@media screen and (max-width: 768px) {
  .title {
    padding: 0 10px;
  }

  .title-text {
    font-size: 24px;
  }

  .subtitle-text {
    font-size: 12px;
  }

  .zucchetti-logo {
    height: 50px;
  }
}
