.hero h1 {
  font-size: 4rem;
  max-width: 60rem;
  text-align: left;
  margin-bottom: 0;
}

.introblock {
  background-color: #ffeca2 !important;
  border-block: 1px solid rgba(0, 0, 0, 0.1);
}

.headerblock {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}

.headerblock__title-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.headerblock-buttons {
  display: flex;
  gap: 1.5rem;
}

.introblock-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 980px;
  padding: 0rem 1rem;
  text-align: center;
  margin: 0 auto;
}

.introblock-content h3 {
  font-size: 18px;
  margin: 0;
}


#logos {
  overflow: hidden;
  text-align: center;
}

#content.frontpage .hero {
  padding-bottom: 7rem;
}

.intro-box-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding-inline: 1rem;
}

.intro-box-container {
  margin: 0 auto;
  max-width: 70rem;
  display: flex;
  gap: 1rem;
  width: 100%;
}

.intro-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #fff;
  border-top: 0.5rem solid var(--green-normal);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 0px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0.25rem;
  transform: translateY(-3rem);
  padding: 1rem;
}

.intro-box span {
  font-size: 1.5rem;
  color: var(--green-normal);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

@media screen and (min-width:768px) and (max-width: 1080px) {
  .intro-box span {
    font-size: 2.02vw;
    font-weight: 500;
  }  
  .intro-box .ingressi {
    font-size: 1.8vw;
  }
}

#references {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  gap: 3rem;
  padding-inline: 1rem;
  padding-bottom: 4rem;
}

#references div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

#references h2 {
  margin: 0;
  text-align: center;
  font-weight: 600;
}

#logos {
  display: block;
  max-height: 100%;
  max-width: 100%;
  height: 13.5rem;
  width: 100%;
  background-image: url(/img/homepage/TrustedBusinesses.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.why-truugo {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

#get-started {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  background-color: #fff;
  gap: 1rem;
}

#get-started img {
  max-width: 62.5rem;
  width: 100%;
}


#solution h2 {
  font-weight: 600;
}

#get-started h2 {
  margin-bottom: 0;
}

#get-started h2,
#benefits h2 {
  font-weight: 700;
  font-size: 3rem;
}

#benefits {
  background: #fff;
  color: var(--blue-dark);
}

#benefits .content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}


#benefits .resources {
  padding: 3.5rem;
  background-color: #EFF2F6;
  color: var(--text-color);
}


#arguments {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 70rem;
  margin: 0 auto;

}

#arguments>.tab {
  float: left;
  width: 32%;
  padding: 20px 0;
  background: #fff;
  color: var(--blue-bright);
  text-align: center;
  font-size: 100%;
  font-weight: bold;
  cursor: pointer;
}

#arguments #tab-1 {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

#arguments #tab-3 {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

#tab-1-body p,
#tab-2-body p,
#tab-3-body p {
  margin-bottom: 1rem;
  color: var(--blue-dark);
}

#arguments>.tab.active {
  background: var(--green-normal);
  color: #fff;
  position: relative;
}

#arguments>.tab.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  height: 0px;
  width: 0px;
  border-right: solid 0.5rem transparent;
  border-left: solid 0.5rem transparent;
  border-top: solid 0.5rem var(--green-normal);
}

#arguments>.tab:nth-child(2) {
  width: 35.4%;
  margin: 0 0.3%;
}

#arguments>.body {
  display: table;
  padding: 1rem 3rem;
  padding-top: 2rem;
}

#arguments>.body>div {
  display: table-cell;
  vertical-align: top;
}


#arguments>.body>.tab-body {
  display: none;
}

#footer {
  border-top: 0 !important;
}


/** Styles below are on the German site */

.english {
  gap: 0.5rem !important;
}

.english span {
  color: var(--gray-darker);
  font-size: 0.85rem;
}

/** Styles above are on the German site */

@media (max-width: 1080px) {
  .frontpage__diagram {
    width: 100%;
    max-width: 100%;
  }
}

@media all and (max-width: 980px) {
  .hero h1 {
    font-size: 3rem;
    text-align: left;
  }
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
    text-align: center;
  }

  .headerblock {
    flex-direction: column-reverse;
  }

  .headerblock__title-container {
    gap: 1rem !important;
  }

  .headerblock div {
    display: flex;
    justify-content: center;
  }

  .headerblock-buttons {
    flex-direction: column;
  }

  .headerblock img {
    width: 80%;
    margin-bottom: 2rem;
  }

  .frontpage__diagram {
    width: 100%;
    max-width: 100%;
  }

  #content.frontpage .hero {
    padding-bottom: 3rem;
  }

  .intro-box-wrapper {
    padding: 2rem 1rem;
  }

  .intro-box-container {
    flex-direction: column;
  }

  .intro-box {
    transform: translateY(0rem);
  }

  .intro-box span {
    font-size: 1.5rem;
  }

  #logos {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    height: 92px;
  }

  #get-started {
    padding-inline: 1rem;
    text-align: center;
  }

  #get-started img {
    max-width: 100%;
  }

  #benefits h2,
  #get-started h2 {
    font-size: 2rem;
  }

  #benefits .resources {
    padding: 2rem 1rem;
  }

  #arguments>.body {
    padding: 1rem;
    padding-top: 2rem;
  }

  #arguments>.tab {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.25rem;
  }
}