﻿body {
  font-family: "Poppins", sans-serif;
  background-color: #f6f6f6;
  padding-top: 80px;
}

@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }
}

.btn {
  border-radius: 10px;
  border: 2px solid transparent;
  padding-top: 11px;
  padding-bottom: 11px;
  box-sizing: border-box;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.btn-outline-light {
  border: 2px solid !important;
}

.btn-gradient-blue {
  color: #fff !important;
  font-weight: 600;
  background: rgb(30, 61, 135);
  background: linear-gradient(45deg, #3665b2 0%, #1e3d87 100%) border-box;
  border-radius: 10px !important;
  border: 2px solid transparent;
  margin-right: 16px;
}

.btn-gradient-blue:before {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
}

.btn-gradient-orange {
  color: #fff !important;
  font-weight: 600;
  background: rgb(255, 177, 0);
  background: linear-gradient(
      45deg,
      rgba(255, 177, 0, 1) 0%,
      rgba(229, 94, 14, 1) 100%
    )
    border-box;
  border-radius: 10px !important;
  border: 2px solid transparent;
}

@media (min-width: 991px) {
  .btn-gradient-orange:before {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
  }

  .btn-gradient-blue:hover {
    color: #1e3d87 !important;
  }

  .btn-gradient-orange:hover {
    color: #e55e0e !important;
  }

  .btn-animation:hover:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
  }
}

.btn-animation {
  font-weight: bold;
  transition: ease-out 0.3s;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.btn-animation:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 0%;
  right: 100%;
  bottom: 0;
  opacity: 0;
  content: "";
  border-radius: 8px !important;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: underline !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

hr {
  margin: 0 !important;
}

.line-clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.line-clamp-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.line-clamp-4 {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.line-clamp-5 {
  display: -webkit-box !important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.darkgray {
  color: #474747;
}

.orange {
  color: #e55e0e;
}

.blu {
  color: #1e3d87;
}

.semibold {
  font-weight: 700;
}

.navbar {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  position: fixed;
  z-index: 99999999;
  width: 100%;
  top: 0;
}

.navbar.home {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.navbar-dark {
  background-color: #1e3d87 !important;
}

.nav-item {
  margin-right: 32px !important;
}

.nav-item:last-child {
  margin-right: 0px !important;
}

a.nav-link {
  color: #fff;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: #fff;
  font-weight: 700;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#menu ul {
  margin-top: 0px;
  margin-bottom: 0px;
}

#menu .input-group {
  max-width: 367px !important;
  margin-left: 55px;
}

#menu .form-control {
  box-sizing: border-box;
  padding: 0;
  height: 50px;
  border: 0;
  border-radius: 10px !important;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #a9a9a9;
  position: relative !important;
}

#menu .form-control::placeholder {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#menu .form-control:focus {
  color: #a9a9a9;
  background-color: #fff;
  border-color: transparent !important;
  outline: 0;
  box-shadow: none !important;
}

#menu .input-group > .form-control:focus,
.input-group > .form-floating:focus-within,
.input-group > .form-select:focus {
  z-index: 1;
}

#menu .btn-primary {
  padding: 12px;
  border: 1px solid #fff !important;
  color: #fff;
  border-radius: 10px !important;
  background: linear-gradient(45deg, #3665b2 0%, #1e3d87 100%);
  position: absolute !important;
  right: 0;
  box-sizing: border-box;
}

#top-page {
  margin-top: 73px;
  margin-bottom: 40px;
}

#top-page h1 {
  color: #474747;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  display: block;
  margin-bottom: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
}

#top-page h1 a {
  color: #474747;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  display: block;
  margin-bottom: 16px;
  text-decoration: none !important;
}

#top-page p {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: block;
  margin-bottom: 24px;
}

#top-page h2 {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 12px;
}

#top-page .security {
  padding-bottom: 32px;
}

#top-page .card-body {
  padding: 24px;
  height: 100%;
}

#top-page .valutazione {
  /* float: left; */
  margin: 12px 0;
}

#top-page .card-body img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

#top-page .card-body .rate {
  color: #474747;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-right: 7px;
  display: inline;
  vertical-align: middle;
}

#top-page .card-body .over {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-right: 20px;
  display: inline;
  vertical-align: middle;
}

#top-page .btn {
  min-width: 176px;
}

#top-page .btn-gradient-blue {
  margin-right: 16px;
}

#guida {
  margin-top: 48px;
  margin-bottom: 32px;
}

#guida h1 {
  color: #474747;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}

#guida h2 {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0px;
}

#consigli {
  margin-top: 0px;
  margin-bottom: 40px;
}

#consigli .bg-image-fit {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background: url(../img/immagine2.png);
  min-height: 164px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

#consigli .background {
  position: relative;
  top: -20px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgba(169, 169, 169, 0.3);
  padding: 16px;
}

#consigli header {
  color: #474747;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}

#consigli article {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  /* 20.48px */
  letter-spacing: -0.16px;
  margin-right: 8px;
  margin-bottom: 0;
  max-width: 65%;
}

#consigli .read {
  color: #e55e0e;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  max-width: calc(50% - 8px);
}

#consigli .read:hover {
  font-weight: 900;
  text-decoration: underline !important;
}

#consigli .pagination {
  padding: 0;
  background-color: transparent;
  font-size: 16px;
  color: #a9a9a9;
  border-width: 0;
  display: flex;
  margin-top: 20px;
  list-style: none;
}

#consigli .page-link {
  position: relative;
  display: block;
  font-size: 16px;
  color: #a9a9a9;
  text-decoration: underline !important;
  background-color: transparent;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#consigli .page-link:hover {
  color: #e55e0e;
}

#consigli .pagination .active {
  color: #e55e0e;
  background: transparent;
}

#consigli .page-item:first-child .page-link {
  color: #e55e0e;
  font-size: 24px;
  padding-top: 0;
}

#consigli .page-item:nth-last-child(-n + 2) .page-link {
  color: #e55e0e;
  font-size: 24px;
  padding-top: 0;
}

#consigli .page-item:last-child .page-link {
  color: #e55e0e;
  font-size: 24px;
  padding-top: 0;
}

#about {
  margin-top: 60px;
  margin-bottom: 40px;
}

#about header {
  color: #e55e0e;
  font-size: 45px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 18px;
}

#about h2 {
  color: #474747;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 16px;
}

#about p {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 0;
}

#analisi {
  margin-top: 0;
  margin-bottom: 80px;
}

#analisi h1 {
  color: #474747;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}

#analisi p {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 32px;
}

#analisi h2 {
  color: #a9a9a9;
  text-align: center;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  margin-bottom: 24px;
}

#analisi .parametro {
  width: 100%;
  min-height: 76px;
  border-radius: 10px;
  background: #fff;
  padding: 16px;
}

#analisi .parametro span {
  color: #474747;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 0 auto;
}

#analisi .card {
  border-radius: 10px;
  background: #fff;
  text-align: center;
  border: 0;
}

#analisi .card-body {
  padding: 16px;
}

#analisi h3 {
  color: #474747;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
  padding: 0;
}

#analisi .card span {
  color: #474747;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 0 auto;
  padding: 0;
}

#ottenere {
  border-radius: 10px;
  background: var(
    --sfumatura-blu,
    linear-gradient(180deg, #3665b2 0%, #1e3d87 100%)
  );
  margin-top: 0;
  margin-bottom: 80px;
  padding: 40px 0 32px 0;
}

#ottenere h1 {
  color: #fff;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  margin-bottom: 24px;
}

#ottenere .card {
  border-radius: 10px;
  background: #fff;
  margin: 0 96px 24px 96px;
  padding: 0;
  border: 0;
}

#ottenere .card-body {
  padding: 24px;
}

#ottenere .icona {
  width: 64px;
  height: 64px;
  float: left;
  margin-top: 24px;
}

#ottenere .testo {
  float: right;
  width: calc(100% - 64px);
  margin-bottom: 24px;
}

#ottenere .card-title {
  color: #474747;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-left: 24px;
}

#ottenere .card-text {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-left: 24px;
}

#ottenere .cta {
  margin-top: 8px;
  max-width: 368px;
}

#ottenere .btn-outline-light:before {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
}

#ottenere .btn {
  min-width: 368px;
}

#ottenere .btn:hover {
  color: #1e3d87;
}

#qualita {
  margin-top: 0;
  margin-bottom: 64px;
}

#qualita .testo {
  margin-top: 0;
  margin-right: 90px;
}

#qualita .card {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}

#qualita .card-body {
  padding: 0px;
  overflow: hidden;
}

#qualita .card-title {
  color: #474747;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}

#qualita .card-text {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 24px;
}

#qualita .btn {
  min-width: 368px;
}

#qualita .badge9 {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  position: relative;
}

#qualita .badge9 .background {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  background: linear-gradient(90deg, #1e3d87 0%, #3665b2 100%);
  border-radius: 10px;
  text-align: left;
  position: relative;
}

#qualita .badge9 .logo {
  width: 49px;
  height: 64px;
  position: absolute;
  left: 15px;
  top: 15px;
}

#qualita .badge9 .dominio {
  width: 195px;
  height: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 15px;
}

#qualita .badge9 .security {
  width: 103px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 84px;
  top: 38px;
}

#qualita .badge9 .rating {
  width: 27px;
  height: 19px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 60px;
}

#qualita .badge9 .over {
  width: 39px;
  height: 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 116px;
  top: 60px;
}

#qualita .badge9 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 220px;
  top: 62px;
}

#qualita .badge10 {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  position: relative;
  margin: 16px 0;
}

#qualita .badge10 .background {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  background: linear-gradient(270.06deg, #e55e0e 0.05%, #ffb100 99.95%);
  border-radius: 10px;
  text-align: left;
  position: relative;
}

#qualita .badge10 .logo {
  width: 49px;
  height: 64px;
  position: absolute;
  left: 15px;
  top: 15px;
}

#qualita .badge10 .dominio {
  width: 195px;
  height: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 15px;
}

#qualita .badge10 .security {
  width: 103px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 84px;
  top: 38px;
}

#qualita .badge10 .rating {
  width: 27px;
  height: 19px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 60px;
}

#qualita .badge10 .over {
  width: 39px;
  height: 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 116px;
  top: 60px;
}

#qualita .badge10 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 220px;
  top: 62px;
}

#qualita .badge11 {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  position: relative;
}

#qualita .badge11 .background {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  background: #474747;
  border-radius: 10px;
  text-align: left;
  position: relative;
}

#qualita .badge11 .logo {
  width: 49px;
  height: 64px;
  position: absolute;
  left: 15px;
  top: 15px;
}

#qualita .badge11 .dominio {
  width: 195px;
  height: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 15px;
}

#qualita .badge11 .security {
  width: 103px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 84px;
  top: 38px;
}

#qualita .badge11 .rating {
  width: 27px;
  height: 19px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 60px;
}

#qualita .badge11 .over {
  width: 39px;
  height: 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 116px;
  top: 60px;
}

#qualita .badge11 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 220px;
  top: 62px;
}

#download {
  margin-top: 82px;
  margin-bottom: 56px;
}

#download .testo {
  margin-top: 0;
  margin-right: 90px;
}

#download .card {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}

#download .card-body {
  padding: 0px;
  overflow: hidden;
}

#download .card-title {
  color: #474747;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}

#download .card-subtitle {
  color: #474747;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
}

#download .card-text {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 32px;
}

#download .btn {
  min-width: 368px;
}

#download .badge9 {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  position: relative;
}

#download .badge9 .background {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  background: linear-gradient(90deg, #1e3d87 0%, #3665b2 100%);
  border-radius: 10px;
  text-align: left;
  position: relative;
}

#download .badge9 .logo {
  width: 49px;
  height: 64px;
  position: absolute;
  left: 15px;
  top: 15px;
}

#download .badge9 .dominio {
  width: 195px;
  height: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 15px;
}

#download .badge9 .security {
  width: 103px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 84px;
  top: 38px;
}

#download .badge9 .rating {
  width: 27px;
  height: 19px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 60px;
}

#download .badge9 .over {
  width: 39px;
  height: 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 116px;
  top: 60px;
}

#download .badge9 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 220px;
  top: 62px;
}

#download .badge10 {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  position: relative;
  margin: 16px 0;
}

#download .badge10 .background {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  background: linear-gradient(270.06deg, #e55e0e 0.05%, #ffb100 99.95%);
  border-radius: 10px;
  text-align: left;
  position: relative;
}

#download .badge10 .logo {
  width: 49px;
  height: 64px;
  position: absolute;
  left: 15px;
  top: 15px;
}

#download .badge10 .dominio {
  width: 195px;
  height: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 15px;
}

#download .badge10 .security {
  width: 103px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 84px;
  top: 38px;
}

#download .badge10 .rating {
  width: 27px;
  height: 19px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 60px;
}

#download .badge10 .over {
  width: 39px;
  height: 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 116px;
  top: 60px;
}

#download .badge10 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 220px;
  top: 62px;
}

#download .badge11 {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  position: relative;
}

#download .badge11 .background {
  box-sizing: border-box;
  width: 294px;
  height: 94px;
  background: #474747;
  border-radius: 10px;
  text-align: left;
  position: relative;
}

#download .badge11 .logo {
  width: 49px;
  height: 64px;
  position: absolute;
  left: 15px;
  top: 15px;
}

#download .badge11 .dominio {
  width: 195px;
  height: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 15px;
}

#download .badge11 .security {
  width: 103px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 84px;
  top: 38px;
}

#download .badge11 .rating {
  width: 27px;
  height: 19px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  position: absolute;
  left: 84px;
  top: 60px;
}

#download .badge11 .over {
  width: 39px;
  height: 19px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 116px;
  top: 60px;
}

#download .badge11 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 220px;
  top: 62px;
}

#personalizza {
  margin-top: 0;
  margin-bottom: 40px;
}

#personalizza .card {
  border-radius: 10px;
  background: #fff;
  border: none;
}

#personalizza .card-body {
  padding: 24px;
}

#personalizza .card-title {
  color: #474747;
  text-align: center;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 44.8px */
  margin-bottom: 16px;
}

#personalizza .card-text {
  color: #a9a9a9;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 32px;
}

#personalizza .demo {
  display: table-cell;
  width: fit-content;
  columns: 3;
}

#personalizza .btn {
  min-width: 368px;
}

#personalizza .badge {
  box-sizing: border-box;
  width: 272px;
  height: 85px;
  background: linear-gradient(264.42deg, #1e3d87 0%, #3665b2 100%);
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  margin-bottom: 32px;
}

#personalizza .badge .analisi {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  margin: 8px 0 0 0;
}

#personalizza .badge .logo {
  height: 31px;
  margin: 2px 0;
}

#personalizza .badge .dominio {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  margin: 0px 0 8px 0;
}

#personalizza .badge2 {
  box-sizing: border-box;
  width: 272px;
  height: 85px;
  background: linear-gradient(264.48deg, #e55e0e 0%, #ffb100 100%);
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  margin-bottom: 32px;
}

#personalizza .badge2 .analisi {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  margin: 8px 0 0 0;
}

#personalizza .badge2 .logo {
  height: 31px;
  margin: 2px 0;
}

#personalizza .badge2 .dominio {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  margin: 0px 0 8px 0;
}

#personalizza .badge3 {
  box-sizing: border-box;
  width: 272px;
  height: 85px;
  background: #474747;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  margin-bottom: 32px;
}

#personalizza .badge3 .analisi {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  margin: 8px 0 0 0;
}

#personalizza .badge3 .logo {
  height: 31px;
  margin: 2px 0;
}

#personalizza .badge3 .dominio {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  margin: 0px 0 8px 0;
}

#personalizza .badge19 {
  width: 280px;
  height: 90px;
  background: linear-gradient(90deg, #ffb100 0%, #e55e0e 100%);
  border-radius: 45px;
  text-align: left;
  position: relative;
  margin-bottom: 32px;
}

#personalizza .badge19 .logo {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 5px;
  top: 5px;
}

#personalizza .badge19 .security {
  width: 120px;
  height: 19px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 94px;
  top: 10px;
}

#personalizza .badge19 .rating {
  width: 31px;
  height: 22px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  position: absolute;
  left: 94px;
  top: 35px;
}

#personalizza .badge19 .over {
  width: 34px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 129px;
  top: 38px;
}

#personalizza .badge19 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 205px;
  top: 39px;
}

#personalizza .badge19 .dominio {
  height: 17px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  color: #ffffff;
  opacity: 0.7;
  position: absolute;
  left: 94px;
  top: 63px;
}

#personalizza .badge20 {
  width: 280px;
  height: 90px;
  background: linear-gradient(264.42deg, #1e3d87 0%, #3665b2 100%);
  border-radius: 45px;
  text-align: left;
  position: relative;
  margin-bottom: 32px;
}

#personalizza .badge20 .logo {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 5px;
  top: 5px;
}

#personalizza .badge20 .security {
  width: 120px;
  height: 19px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 94px;
  top: 10px;
}

#personalizza .badge20 .rating {
  width: 31px;
  height: 22px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  position: absolute;
  left: 94px;
  top: 35px;
}

#personalizza .badge20 .over {
  width: 34px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 129px;
  top: 38px;
}

#personalizza .badge20 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 205px;
  top: 39px;
}

#personalizza .badge20 .dominio {
  height: 17px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  color: #ffffff;
  opacity: 0.7;
  position: absolute;
  left: 94px;
  top: 63px;
}

#personalizza .badge21 {
  width: 280px;
  height: 90px;
  background: #474747;
  border-radius: 45px;
  text-align: left;
  position: relative;
  margin-bottom: 32px;
}

#personalizza .badge21 .logo {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 5px;
  top: 5px;
}

#personalizza .badge21 .security {
  width: 120px;
  height: 19px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 94px;
  top: 10px;
}

#personalizza .badge21 .rating {
  width: 31px;
  height: 22px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  position: absolute;
  left: 94px;
  top: 35px;
}

#personalizza .badge21 .over {
  width: 34px;
  height: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 129px;
  top: 38px;
}

#personalizza .badge21 .data {
  width: 55px;
  height: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #ffffff;
  opacity: 0.5;
  position: absolute;
  left: 205px;
  top: 39px;
}

#personalizza .badge21 .dominio {
  height: 17px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  color: #ffffff;
  opacity: 0.7;
  position: absolute;
  left: 94px;
  top: 63px;
}

#requisiti {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}

#requisiti .card {
  padding: 0px;
  border: 0;
}

#requisiti .card-body {
  padding: 0px;
  border: 0;
}

#requisiti .card .rischio {
  position: relative;
  border-radius: 10px;
  /* background: rgba(169, 169, 169, .1); */
  text-align: center;
  width: 40%;
  height: 404px;
  float: left;
}

#requisiti .card .spiega {
  width: 50%;
  float: right;
  margin-top: 53px;
  margin-bottom: 53px;
}

#requisiti h1 {
  color: var(--nero, #474747);
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
}

#requisiti p {
  color: var(--grigio, #a9a9a9);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 24px 0;
}

#requisiti .grafico {
  width: 292px;
  height: 156px;
  position: absolute;
  top: 124px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#requisiti .allerta {
  border-radius: 10px;
  border: 1px solid rgba(169, 169, 169, 0.3);
  background: var(--bianco, #fff);
  width: 176px;
  height: 70px;
  top: 20px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#requisiti .allerta img {
  margin: 25px 12px 25px 0;
  opacity: 0.5;
}

#requisiti .allerta span {
  color: rgba(71, 71, 71, 0.5);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

#requisiti .danger {
  border-radius: 10px;
  border: 1px solid rgba(169, 169, 169, 0.3);
  background: var(--bianco, #fff);
  width: 176px;
  height: 70px;
  position: absolute;
  top: 310px;
  left: -16px;
}

#requisiti .danger img {
  margin: 25px 12px 25px 0;
  opacity: 0.5;
}

#requisiti .danger span {
  color: rgba(71, 71, 71, 0.5);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

#requisiti .secure {
  border-radius: 10px;
  border: 2px solid #2ce50e;
  background: #fff;
  width: 176px;
  height: 70px;
  position: absolute;
  top: 310px;
  right: -16px;
}

#requisiti .secure img {
  margin: 25px 12px 25px 0;
}

#requisiti .secure span {
  color: #474747;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

#requisiti .btn {
  min-width: 272px;
}

#visibilita {
  padding-top: 80px;
  padding-bottom: 40px;
}

#visibilita h1 {
  color: #474747;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 32px;
}

#visibilita .card-body img {
  width: 30px;
  height: 30px;
  margin-right: 16px;
}

#visibilita .card-body .rate {
  color: #474747;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-right: 7px;
  display: inline;
  vertical-align: middle;
}

#visibilita .card-body .over {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-right: 20px;
  display: inline;
  vertical-align: middle;
}

#visibilita .card {
  border-radius: 10px;
  background: #fff;
  padding: 0;
  border: 0;
}

#visibilita .card-body {
  padding: 24px;
  height: 100%;
}

#visibilita .rating {
  border-radius: 10px;
  background: #fff;
}

#visibilita .valutazione {
  float: left;
  margin: 12px 0;
}

#visibilita p.dominio {
  color: #e55e0e;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin: 40px auto;
}

#visibilita .input-group {
  margin: 0;
}

#visibilita .form-control {
  box-sizing: border-box;
  padding: 0 10px;
  height: 50px;
  border: 0;
  border-radius: 10px !important;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #a9a9a9;
  position: relative !important;
}

#visibilita .form-control::placeholder {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#visibilita .form-control:focus {
  color: #a9a9a9;
  background-color: #fff;
  border-color: transparent !important;
  outline: 0;
  box-shadow: none !important;
}

#visibilita .input-group > .form-control:focus,
.input-group > .form-floating:focus-within,
.input-group > .form-select:focus {
  z-index: 1;
}

#visibilita .btn-primary {
  padding: 13px;
  border: 0 !important;
  color: #fff;
  border-radius: 10px !important;
  background: linear-gradient(225deg, #e55e0e 0%, #ffb100 100%);
  position: absolute;
  right: 0;
}

#how {
  margin-top: 50px;
  margin-bottom: 0px;
}

#how p {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: -0.16px;
  margin-bottom: 40px;
}

#how h1 {
  color: var(--nero, #474747);
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
}

#how .accordion {
  border: 0px !important;
  border-radius: 10px;
  background: #fff;
  display: contents;
}

#how .accordion-item {
  border: 0px !important;
  padding: 24px;
  margin-bottom: 24px;
}

#how .accordion-item:last-child {
  margin-bottom: 40px;
}

#how .accordion-button {
  color: #474747;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0;
}

#how .accordion-button:not(.collapsed) {
  color: #474747;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0;
}

#how .accordion-body {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding: 16px 0 0;
}

#how .collapse:not(.show) {
  display: none;
}

#how .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(1.25) !important;
}

#how .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

#how .accordion-button.read {
  color: #e55e0e;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0;
}

#how .accordion-button.read:not(.collapsed) {
  color: #e55e0e;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0;
}

#how .accordion-button.read::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23E55E0E' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(1.25) !important;
}

#how .accordion-button.read:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23E55E0E' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

#how h1 {
  color: #474747;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
}

#how h3 {
  color: #474747;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
}

#how img {
  margin-right: 12px;
}

#how a.scheda {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
  text-decoration-line: underline !important;
  float: left;
}

#how a.problem {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
  text-decoration-line: underline !important;
  float: right;
}

#how a.scheda:hover {
  font-weight: 700;
}

#how a.problem:hover {
  font-weight: 700;
}

#how .note {
  margin: 24px 0 40px 0;
}

#how .card {
  border-radius: 10px;
  background: rgb(255, 255, 255);
  border: none;
}

#how .card-body {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 19.6px */
  padding: 24px;
}

#how .accordion-body > dl,
ol,
ul {
  margin-top: 16px;
  margin-bottom: 16px;
}

#how .termini {
  font-size: 16px !important;
}

#point {
  margin-bottom: 40px;
}

#point .bgtop {
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  border-bottom: 1px solid rgb(169 169 169 / 50%);
}

#point .bgwhite {
  background-color: #fff;
  border-bottom: 1px solid rgb(169 169 169 / 50%);
}

#point .bgbottom {
  border-radius: 0 0 10px 10px;
  background-color: #fff;
}

#point h2 {
  color: #e55e0e;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin: 24px 24px 16px 24px;
}

#point p {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 0 24px 24px 24px;
}

#point .last {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 0 24px 0px 24px;
}

#point ol {
  margin: 0 24px 24px 15px;
}

#point li {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

#ecommerce {
  background-image: url("../img/bg-ecommerce.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 800px;
  padding: 200px 0;
}

#ecommerce .testo {
  max-width: 516px;
  margin-bottom: 40px !important;
}

#ecommerce h1 {
  color: #e55e0e;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 12px !important;
}

#ecommerce h2 {
  color: #474747;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 8px !important;
}

#ecommerce p {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 12px !important;
}

#ecommerce .input-group {
  max-width: 85% !important;
}

#ecommerce .form-control {
  box-sizing: border-box;
  padding: 16px;
  border: double 2px transparent;
  border-radius: 10px;
  background-image: linear-gradient(white, white),
    linear-gradient(to top, #1e3d87, #3665b2);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #a9a9a9;
  position: relative;
}

#ecommerce .form-control::placeholder {
  color: #a9a9a9;
  font-size: 16px;
}

#ecommerce .form-control:focus {
  color: #a9a9a9;
  background-color: #fff;
  border-color: transparent !important;
  outline: 0;
  box-shadow: none !important;
}

#ecommerce .input-group > .form-control:focus,
.input-group > .form-floating:focus-within,
.input-group > .form-select:focus {
  z-index: 1;
}

#ecommerce .btn-primary {
  padding: 18px 17px;
  border: 0 !important;
  color: #fff;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #3665b2 0%, #2d56a2 0%, #1e3d87 100%);
  position: absolute;
  right: 0;
}

#slide .fa-xl {
  font-size: 26px;
}

#slide h1 {
  color: #474747;
  font-size: 45px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 32px !important;
}

#slide .input-group {
  max-width: 85% !important;
}

#slide .form-control {
  box-sizing: border-box;
  padding: 16px;
  border: double 2px transparent;
  border-radius: 10px;
  background-image: linear-gradient(white, white),
    linear-gradient(to top, #1e3d87, #3665b2);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #a9a9a9;
  position: relative;
}

#slide .form-control::placeholder {
  color: #a9a9a9;
  font-size: 16px;
}

#slide .form-control:focus {
  color: #a9a9a9;
  background-color: #fff;
  border-color: transparent !important;
  outline: 0;
  box-shadow: none !important;
}

#slide .input-group > .form-control:focus,
.input-group > .form-floating:focus-within,
.input-group > .form-select:focus {
  z-index: 1;
}

#slide .btn-primary {
  padding: 18px 17px;
  border: 0 !important;
  color: #fff;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #3665b2 0%, #2d56a2 0%, #1e3d87 100%);
  position: absolute;
  right: 0;
}

#slide .fa-xl {
  font-size: 26px;
}

#slide .splide {
  margin-top: 80px;
  text-align: center;
  width: calc(50% - 16px);
  float: left;
  margin-left: 16px;
}

.splide__slide img {
  vertical-align: top;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
  display: table;
}

#slide .red {
  box-sizing: border-box;
  border-radius: 10px;
  border: 2px solid #e50e0e;
  background: #fff;
  width: 100%;
}

#slide .green {
  box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #2ce50e;
  width: 100%;
}

#slide .lightorange {
  box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #ffb100;
  width: 100%;
}

#slide .security {
  color: #a9a9a9;
  font-size: 14px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: block;
  margin: 16px 0 4px 0;
}

#slide .rating {
  width: 100%;
  margin: 0;
  height: 63px;
  padding: 0;
}

#slide .ico {
  margin: 0 13px 0 0;
}

#slide .rate {
  color: #474747;
  text-align: right;
  font-size: 45px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  /* margin: 0 8px 0 0; */
}

#slide .over {
  color: #a9a9a9;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}

#slide .dominio {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: block;
  margin: 0px 0 14px 0;
}

#slide figure {
  margin: 13px 0 6px 0;
  display: block;
}

#slide figcaption {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: block;
  padding-bottom: 47px;
}

#slide .splide::before {
  background: linear-gradient(180deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  position: absolute;
  top: 0;
  z-index: 999;
  height: 50px;
  content: " ";
  display: block;
  width: 100%;
}

#slide .splide::after {
  background: linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
  position: absolute;
  bottom: 0;
  z-index: 999;
  height: 50px;
  content: " ";
  display: block;
  width: 100%;
}

#plus {
  margin-top: 64px;
  margin-bottom: 40px;
}

#plus .card-body {
  padding: 24px;
}

#plus .card {
  border-radius: 10px;
}

#plus .card-title {
  color: #e55e0e;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-left: 16px;
  margin-bottom: 12px;
  padding: 0;
}

#plus .card-text {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-left: 16px;
}

#plus .card .material-symbols-outlined {
  font-size: 30px !important;
  color: #e55e0e;
  margin-top: 15px;
}

#why {
  margin-top: 60px;
  margin-bottom: 40px;
}

#why h1 {
  color: #e55e0e;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}

#why p {
  color: #a9a9a9;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 24px;
}

#why .card-body {
  padding: 24px;
}

#why .card {
  border-radius: 10px;
  background: linear-gradient(225deg, #e55e0e 0%, #ffb100 100%);
}

#why .card-title {
  color: #fff;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-left: 16px;
  margin-bottom: 12px;
  padding: 0;
}

#why .card-text {
  color: #fff;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-left: 16px;
}

#why .card .material-symbols-outlined {
  font-size: 30px !important;
  color: #fff;
}

#info {
  margin-top: 0px;
  margin-bottom: 40px;
}

#info .card {
  border-radius: 10px;
  background: linear-gradient(225deg, #e55e0e 0%, #ffb100 100%);
}

#info .card-body {
  padding: 24px 0;
}

#info .card-title {
  text-align: center;
  font-size: 32px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
  margin-bottom: 16px;
  padding: 0;
}

#info .card-text {
  color: #fff;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

#info .btn-outline-light:before {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  color: #e55e0e;
}

#info .btn {
  min-width: 272px;
}

#info .btn:hover {
  color: #e55e0e;
}

#immagini {
  margin-top: 0px;
  margin-bottom: 40px;
}

#siti {
  margin-top: 0px;
  margin-bottom: 40px;
}

#siti h2 {
  padding: 0px;
  margin-bottom: 32px;
  color: #474747;
  text-align: left;
  font-size: 32px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

#siti .item {
  width: 100%;
}

#siti .card {
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid rgba(169, 169, 169, 0.3);
  background: #fff;
}

#siti .card-body {
  padding: 24px 24px 16px 24px;
}

#siti .card-title {
  color: #e55e0e;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}

#siti p {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 16px;
}

#siti .card-image {
  border-radius: 10px;
  margin-bottom: 16px;
}

#siti .card-link {
  text-decoration: none;
  display: inline-flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #a9a9a9;
  border-radius: 15px;
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-right: 12px;
  margin-left: 0;
}

#pass {
  margin-top: 0px;
  margin-bottom: 80px;
  text-align: center;
}

#pass h3 {
  padding: 0px;
  margin-bottom: 24px;
  color: #474747;
  text-align: center;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

#pass p {
  color: #474747;
  text-align: center;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-top: 32px;
  margin-bottom: 0;
}

#pass a.esa {
  color: #474747;
  text-align: center;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-decoration: underline !important;
}

#pass .social {
  color: #fff;
  background-color: #474747;
  border-radius: 10px;
  padding: 24px;
  display: inline-table;
  margin-right: 16px;
  width: 80px;
  height: 80px;
}

#pass .social:last-child {
  margin-right: 0;
}

#pass .fa-2xl {
  font-size: 30px;
  vertical-align: -12px;
}

footer {
  background-color: #474747;
  padding-top: 40px;
  padding-bottom: 68px;
}

footer .logo {
  height: 30px;
  width: auto;
}

footer .language {
  color: #a9a9a9;
  padding-top: 3px;
  margin: 0;
}

footer .language .material-symbols-outlined {
  float: left;
}

footer .language a {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  margin-left: 8px;
  margin-top: 0px;
  float: left;
  padding: 0;
}

footer .mt-6 {
  margin-top: 2rem !important;
}

footer .list-group-item {
  background-color: transparent !important;
  border: 0 !important;
  padding: 0px !important;
  color: #fff;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 12px;
}

footer .list-group-item a {
  color: #fff;
}

footer .list-group-item:last-child {
  margin-bottom: 0px;
}

footer .social {
  color: #fff;
  display: inline-table;
  margin-right: 24px;
  width: 24px;
  height: 24px;
}

footer .social:last-child {
  margin-right: 0;
}

footer .fa-xl {
  font-size: 24px;
}

footer .condizioni {
  border-radius: 10px;
  opacity: 0.5;
  background: #a9a9a9;
  margin-top: 32px;
  margin-bottom: 16px;
}

footer .condizioni a {
  color: #474747;
}

footer .condizioni .list-group-item {
  color: #474747;
  text-align: center;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration-line: underline;
  margin-bottom: 0;
  padding: 14px 0 !important;
}

footer .condizioni .list-group-item::after {
  content: "|";
  text-decoration-line: underline;
  padding-left: 3px;
  padding-right: 3px;
}

footer .condizioni .list-group-item:last-child::after {
  display: none;
}

footer .rights {
  color: #a9a9a9;
  text-align: center;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-decoration-line: underline;
}

@media only screen and (max-width: 389.8px) and (min-width: 320px) {
  #guida {
    margin-top: 32px;
    margin-bottom: 23px;
  }

  #guida h1 {
    font-size: 23px;
    margin-bottom: 12px;
  }

  #guida h2 {
    font-size: 16px;
  }

  #consigli {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #consigli .background {
    padding: 12px 8px;
  }

  #consigli .bg-image-fit {
    min-height: 120px;
  }

  #consigli header {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #consigli article {
    font-size: 14px;
    margin-right: 0px;
    max-width: 100%;
  }

  #consigli article.line-clamp-5 {
    -webkit-line-clamp: 3;
  }

  #consigli .read {
    display: none;
  }

  #info .btn {
    min-width: 100%;
  }

  #how .accordion-button:not(.collapsed) {
    font-size: 15px;
  }

  #how .accordion-button.read:not(.collapsed) {
    font-size: 15px;
  }

  #how .accordion-button::after {
    transform: scale(1) !important;
  }

  #how .accordion-button.read::after {
    transform: scale(1) !important;
  }

  #slide .form-control {
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-sizing: border-box;
    padding: 18px;
  }

  #pass .social {
    color: #fff;
    background-color: #474747;
    border-radius: 10px;
    padding: 24px;
    display: inline-table;
    margin-right: 10px;
    width: 70px;
    height: 70px;
  }

  #pass .social:last-child {
    margin-right: 0;
  }

  #pass .fa-2xl {
    font-size: 30px;
    vertical-align: -7px;
  }

  #pass {
    margin-top: 0px;
    margin-bottom: 56px;
    text-align: center;
  }

  #pass h3 {
    padding: 0px;
    margin-bottom: 24px;
    color: #474747;
    text-align: center;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  #pass p {
    color: #474747;
    text-align: center;
    font-size: 10px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-top: 24px;
    margin-bottom: 0;
  }

  #pass a.esa {
    color: #474747;
    text-align: center;
    font-size: 10px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration: underline !important;
  }

  #info {
    margin-top: 0px;
    margin-bottom: 40px;
  }

  #info .card {
    border-radius: 10px;
    background: linear-gradient(225deg, #e55e0e 0%, #ffb100 100%);
  }

  #info .card-body {
    padding: 24px;
  }

  #info .card-title {
    text-align: center;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 12px;
    padding: 0;
  }

  #info .card-text {
    color: #fff;
    font-size: 12px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }

  #ecommerce {
    background-image: none;
    background-color: #dbcbbd;
    min-height: auto;
    padding: 32px 0;
  }

  #ecommerce .testo {
    max-width: 100%;
    margin-bottom: auto !important;
    position: relative;
  }

  #ecommerce h1 {
    font-size: 28px;
    margin-bottom: 0px !important;
    position: absolute;
    margin: 0 12px;
  }

  #ecommerce h2 {
    font-size: 16px;
    margin-bottom: 0px !important;
    position: absolute;
    top: 80px;
    margin: 0 12px;
  }

  #ecommerce p {
    font-size: 14px;
    margin-bottom: 0 !important;
    position: absolute;
    top: 110px;
    margin: 0 12px;
  }

  #ecommerce img {
    margin-top: 100px;
  }

  #ecommerce .input-group {
    max-width: calc(100% - 24px) !important;
    margin: 0 12px;
  }

  #ecommerce .form-control::placeholder,
  #slide .form-control::placeholder,
  #visibilita .form-control::placeholder {
    font-size: 13px;
  }

  #menu .form-control::placeholder {
    font-size: 12px;
  }

  #analisi {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-right: 0 !important;
    overflow-x: hidden;
  }

  #analisi h1 {
    font-size: 23px;
    padding-right: 12px;
  }

  #analisi h2 {
    font-size: 16px;
    padding-right: 12px;
  }

  #analisi p {
    font-size: 14px;
    padding-right: 12px;
  }

  #siti {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-right: 0 !important;
    overflow-x: hidden;
  }

  #siti h2 {
    padding: 0px 12px 0 0;
    margin-bottom: 24px;
    color: #474747;
    text-align: left;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  #siti .card {
    border-radius: 10px;
    border: 1px solid rgba(169, 169, 169, 0.3);
    background: #fff;
  }

  #siti .card-body {
    padding: 24px 24px 16px 24px;
  }

  #siti .card-title {
    color: #e55e0e;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
  }

  #siti p {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 16px;
  }

  #siti .card-image {
    border-radius: 10px;
    margin-bottom: 16px;
  }

  #siti .card-link {
    text-decoration: none;
    display: inline-flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #a9a9a9;
    border-radius: 15px;
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-right: 12px;
    margin-left: 0;
  }

  footer {
    background-color: #474747;
    padding-top: 33px;
    padding-bottom: 32px;
  }

  footer .logo {
    height: 22px;
    width: auto;
  }

  footer .language {
    color: #a9a9a9;
    padding-top: 3px;
    margin: 0;
    text-align: right;
  }

  footer .language .material-symbols-outlined {
    float: left;
  }

  footer .language a {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    margin-left: 8px;
    margin-top: 0px;
    float: left;
    padding: 0;
  }

  footer .mt-6 {
    margin-top: 2rem !important;
  }

  footer .list-group-item {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0px !important;
    color: #fff;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 32px;
    text-align: center;
  }

  footer .list-group-item a {
    color: #fff;
  }

  footer .list-group-item:last-child {
    margin-bottom: 10px;
  }

  footer .social {
    color: #fff;
    display: inline-table;
    margin-right: 27px;
    width: 32px;
    height: 32px;
  }

  footer .social:last-child {
    margin-right: 0;
  }

  footer .fa-xl {
    font-size: 32px;
  }

  footer .condizioni {
    border-radius: 10px;
    opacity: 0.5;
    background: #a9a9a9;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  footer .condizioni a {
    color: #474747;
  }

  footer .condizioni .list-group-item {
    color: #474747;
    text-align: center;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration-line: underline;
    margin-bottom: 0;
    padding: 14px 0 !important;
  }

  footer .condizioni .list-group-item::after {
    display: none;
  }

  footer .condizioni .list-group-item:last-child::after {
    display: none;
  }

  footer .rights {
    color: #a9a9a9;
    text-align: center;
    font-size: 12px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration-line: underline;
  }
}

@media only screen and (max-width: 349.8px) and (min-width: 320px) {
  #slide {
    padding-bottom: 92px;
  }

  #slide h1 {
    color: #474747;
    text-align: center;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-top: 24px;
    margin-bottom: 23px;
  }

  #slide .input-group {
    position: absolute;
    bottom: 0;
    max-width: calc(100% - 1.5rem) !important;
  }

  #slide .splide {
    margin-top: 0px;
    margin-bottom: 16px;
    position: relative;
    float: none;
    width: calc(100% - 16px);
  }

  #slide .splide .d-flex {
    display: unset !important;
  }

  #slide .splide .justify-content-center {
    justify-content: unset !important;
  }

  #slide .splide .align-items-center {
    align-items: unset !important;
  }

  #slide .splide__slide img {
    vertical-align: top;
    max-height: 90px;
  }

  #slide .splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative;
    display: table;
    max-width: 320px;
  }

  #slide .red {
    border-radius: 10px;
    border: 2px solid #e50e0e;
    background: #fff;
  }

  #slide .green {
    border-radius: 10px;
    background: #fff;
    border: 2px solid #2ce50e;
  }

  #slide .lightorange {
    border-radius: 10px;
    background: #fff;
    border: 2px solid #ffb100;
  }

  #slide .security {
    color: #a9a9a9;
    font-size: 12px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: block;
    margin: 16px 0 4px 0;
  }

  #slide .rating {
    width: calc(50% - 16px);
    margin-top: 14px;
    margin-right: 16px;
    height: auto;
    padding: 0;
    display: block;
    text-align: center;
    float: right;
  }

  #slide .ico {
    margin: 0 auto;
    display: block;
    width: 20px;
  }

  #slide .ico img {
    width: 20px;
    height: auto;
  }

  #slide .rate {
    color: #474747;
    text-align: center;
    font-size: 20px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    height: 32px;
    display: inline;
  }

  #slide .over {
    color: #a9a9a9;
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    height: 22px;
    display: inline-block;
    /* vertical-align: super; */
  }

  #slide .dominio {
    color: #a9a9a9;
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: block;
    margin: 0px 0 14px 0;
  }

  #slide .prodotto {
    margin: 0;
    display: block;
    width: 50%;
    float: left;
  }

  #slide figure {
    margin: 2px;
  }

  #slide figcaption {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    position: absolute;
    right: 0;
    left: 0;
    top: 90px;
    margin-left: auto;
    white-space: nowrap;
  }

  #slide .splide::before {
    background: linear-gradient(90deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    position: absolute;
    top: 0;
    z-index: 999;
    height: 100%;
    content: " ";
    display: block;
    width: 50px;
    left: 0;
  }

  #slide .splide::after {
    background: linear-gradient(
      270deg,
      #f6f6f6 0%,
      rgba(246, 246, 246, 0) 100%
    );
    position: absolute;
    top: 0;
    z-index: 999;
    height: 100%;
    content: " ";
    display: block;
    width: 50px;
    right: 0;
  }

  #about {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  #about header {
    font-size: 32px;
    margin-bottom: 16px;
  }

  #about h2 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  #about p {
    font-size: 14px;
    margin-bottom: 0px;
  }

  #ecommerce {
    background-image: none;
    background-color: #dbcbbd;
    min-height: auto;
    padding: 32px 0;
  }

  #ecommerce .testo {
    max-width: 100%;
    margin-bottom: auto !important;
    position: relative;
  }

  #ecommerce h1 {
    font-size: 23px;
    margin-bottom: 0px !important;
    position: absolute;
    margin: 0 12px;
  }

  #ecommerce h2 {
    font-size: 16px;
    margin-bottom: 0px !important;
    position: absolute;
    top: 70px;
    margin: 0 12px;
  }

  #ecommerce p {
    font-size: 14px;
    margin-bottom: 0 !important;
    position: absolute;
    top: 100px;
    margin: 0 12px;
  }

  #ecommerce img {
    margin-top: 120px;
  }

  #ecommerce .input-group {
    max-width: calc(100% - 24px) !important;
    margin: 0 12px;
  }

  #ecommerce .form-control::placeholder,
  #slide .form-control::placeholder,
  #visibilita .form-control::placeholder,
  #menu .form-control::placeholder {
    font-size: 12px !important;
  }

  #requisiti .danger {
    width: 150px;
    height: 70px;
  }

  #requisiti .secure {
    width: 150px;
    height: 70px;
  }

  #requisiti .secure img {
    margin: 25px 0;
  }

  #visibilita h1 {
    font-size: 23px !important;
  }

  #how h1 {
    font-size: 23px !important;
  }

  #top-page .btn {
    min-width: 100% !important;
  }

  #top-page .btn-gradient-blue {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }

  #point {
    margin-bottom: 56px;
  }

  #point h2 {
    font-size: 23px;
    margin: 24px 16px 12px 16px;
  }

  #point p {
    font-size: 14px;
    margin: 0 16px 24px 16px;
  }

  #point .last {
    font-size: 14px;
    margin: 0 16px;
  }

  #point ol {
    margin: 0 16px 24px 7px;
  }

  #point li {
    font-size: 14px;
  }

  #download .btn {
    font-size: 14px;
  }

  #download .card-title {
    font-size: 23px !important;
  }

  #personalizza .btn {
    font-size: 14px;
  }

  #pass .social {
    padding: 10px;
    width: 50px;
    height: 50px;
  }

  #pass .fa-2xl {
    font-size: 24px;
  }

  footer .language .material-symbols-outlined {
    display: none;
  }

  footer .social {
    margin-right: 20px;
  }

  footer .fa-xl {
    font-size: 24px;
  }

  footer .condizioni {
    border-radius: 10px;
    opacity: 0.5;
    background: #a9a9a9;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  footer .condizioni a {
    color: #474747;
  }

  footer .condizioni .list-group-item {
    color: #474747;
    text-align: center;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration-line: underline;
    margin-bottom: 0;
    padding: 14px 0 !important;
  }

  footer .condizioni .list-group-item::after {
    display: none;
  }

  footer .condizioni .list-group-item:last-child::after {
    display: none;
  }

  footer .rights {
    color: #a9a9a9;
    text-align: center;
    font-size: 12px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration-line: underline;
  }
}

@media only screen and (max-width: 991.8px) and (min-width: 320px) {
  .navbar {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .navbar.home {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .navbar-brand {
    max-height: 22px;
  }

  .navbar-brand img {
    max-height: 22px;
    vertical-align: top;
  }

  a.nav-link {
    font-size: 14px;
  }

  #menu .form-control {
    height: 40px !important;
  }

  #menu .form-control::placeholder {
    padding-left: 5px;
    font-size: 14px;
  }

  #menu .btn-primary {
    padding: 7px 10px;
  }

  #menu .fa-xl {
    font-size: 18px;
  }

  #menu .input-group {
    max-width: 100% !important;
    margin-left: 0px;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #menu .nav-item {
    margin-right: 0px !important;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  #menu .nav-item:first-child {
    margin-top: 0px !important;
    padding-top: 0;
  }

  .nav-item {
    margin-right: 0px !important;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .nav-item:first-child {
    margin-top: 20px !important;
    padding-top: 0;
  }

  #plus .card .material-symbols-outlined {
    font-size: 30px !important;
    color: #e55e0e;
    margin-top: 0px;
  }

  #top-page {
    margin-top: 32px;
    margin-bottom: 0px;
  }

  #top-page h1 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  #top-page p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  #top-page .btn {
    font-size: 14px;
    min-width: calc(50% - 16px);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  #top-page .btn.minw100 {
    font-size: 14px;
    min-width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }

  #top-page .btn.minw100-2 {
    font-size: 14px;
    min-width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 8px;
  }

  #top-page .security {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  #top-page .card-body {
    padding: 24px 16px;
  }

  #top-page .valutazione {
    margin: 0;
    float: none;
  }

  #how {
    margin-top: 32px;
    margin-bottom: 16px;
  }

  #how .accordion:last-child {
    margin-bottom: 40px;
  }

  #how .accordion-item {
    padding: 24px 16px;
  }

  #how .accordion-button {
    font-size: 16px;
  }

  #how .accordion-button:not(.collapsed) {
    font-size: 16px;
  }

  #how .accordion-body {
    font-size: 14px;
    padding: 12px 0 0;
  }

  #how h1 {
    font-size: 23px;
    margin-bottom: 24px;
  }

  #how p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  #how a.scheda {
    font-size: 14px;
    float: none;
    text-align: center;
    display: block;
  }

  #how a.problem {
    font-size: 14px;
    float: none;
    text-align: center;
    display: block;
    margin: 32px auto;
  }

  #how .card-body {
    font-size: 12px;
    line-height: 150%;
    padding: 16px;
  }

  #analisi {
    margin-top: 0;
    margin-bottom: 40px;
  }

  #analisi h1 {
    font-size: 23px;
  }

  #analisi p {
    font-size: 14px;
  }

  #analisi h2 {
    font-size: 16px;
  }

  #analisi .parametro {
    min-width: 218px;
    min-height: 82px;
  }

  #analisi .parametro span {
    font-size: 14px;
    line-height: 20px;
  }

  #analisi .card span {
    font-size: 14px;
    line-height: 20px;
  }

  #ottenere {
    border-radius: 0px;
    background: #f6f6f6;
    margin-top: 0;
    margin-bottom: 32px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  #ottenere .bg {
    border-radius: 10px;
    background: var(
      --sfumatura-blu,
      linear-gradient(180deg, #3665b2 0%, #1e3d87 100%)
    );
    padding: 24px 12px;
  }

  #ottenere h1 {
    font-size: 16px;
  }

  #ottenere .card {
    margin: 0 16px 16px 16px;
  }

  #ottenere .card-body {
    padding: 24px 16px 0 16px;
  }

  #ottenere .icona {
    width: 100%;
    height: 100%;
    float: none;
    margin-top: 0;
    text-align: center;
    margin-bottom: 16px;
  }

  #ottenere .testo {
    float: none;
    width: 100%;
  }

  #ottenere .card-title {
    font-size: 16px;
    margin-left: 0;
    margin-bottom: 12px;
  }

  #ottenere .card-text {
    font-size: 14px;
    margin-left: 0px;
  }

  #ottenere .cta {
    margin-top: 8px;
    max-width: calc(100% - 32px);
  }

  #ottenere .btn {
    font-size: 14px;
    min-width: auto;
  }

  #qualita {
    margin-top: 0px;
    margin-bottom: 32px;
    padding-right: 0 !important;
    overflow-x: hidden;
  }

  #qualita .card-title {
    font-size: 32px;
    margin-bottom: 16px;
    padding-right: 12px;
  }

  #qualita .card-text {
    font-size: 14px;
    margin-bottom: 24px;
    padding-right: 12px;
  }

  #qualita .testo {
    margin-top: 0;
    margin-right: 0;
    float: left;
    width: 100%;
  }

  #qualita .carousel-wrap {
    max-height: 94px;
    text-align: left;
    margin-bottom: 24px;
  }

  #qualita .owl-carousel.owl-drag .owl-item {
    min-width: 294px;
  }

  #qualita .owl-carousel.owl-drag .owl-item .badge9 {
    margin: 0;
    float: left;
  }

  #qualita .owl-carousel.owl-drag .owl-item .badge10 {
    margin: 0;
    float: left;
  }

  #qualita .owl-carousel.owl-drag .owl-item .badge11 {
    margin: 0;
    float: left;
  }

  #qualita .btn {
    min-width: calc(100% - 12px);
    padding-right: 0;
  }

  #download {
    margin-top: 32px;
    margin-bottom: 40px;
  }

  #download .card-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  #download .card-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }

  #download .card-text {
    font-size: 14px;
    margin-bottom: 0px;
  }

  #download .testo {
    margin-top: 0;
    margin-right: 0;
    float: left;
    width: 100%;
  }

  #download .demo {
    margin-top: 24px;
    padding-bottom: 82px;
    float: left;
    width: 100%;
    display: grid;
  }

  #download .btn {
    min-width: 100%;
    position: absolute;
    bottom: 0;
  }

  #personalizza {
    margin-top: 0;
    margin-bottom: 56px;
  }

  #personalizza .card-body {
    padding: 24px 16px;
  }

  #personalizza .card-title {
    font-size: 23px;
    margin-bottom: 12px;
  }

  #personalizza .card-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  #personalizza .btn {
    min-width: 100%;
  }

  #personalizza .demo {
    width: 100%;
    display: grid;
  }

  #personalizza .badge {
    margin-bottom: 16px;
  }

  #personalizza .badge2 {
    margin-bottom: 16px;
  }

  #personalizza .badge3 {
    margin-bottom: 16px;
  }

  #personalizza .badge19 {
    margin-bottom: 16px;
  }

  #personalizza .badge20 {
    margin-bottom: 16px;
  }

  #personalizza .badge21 {
    margin-bottom: 32px;
  }

  #requisiti {
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #fff;
    position: relative;
    min-height: 759px;
  }

  #requisiti .card .graph {
    position: absolute;
    top: 250px;
    border-radius: 10px;
    background: rgba(169, 169, 169, 0.1);
    text-align: center;
    width: 100%;
    height: 404px;
  }

  #requisiti .card .rischio {
    width: 100%;
    height: auto;
  }

  #requisiti .allerta {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  #requisiti .secure {
    right: -5px;
  }

  #requisiti .danger {
    left: -5px;
  }

  #requisiti .card .spiega {
    width: 100%;
    float: none;
    margin-top: 0;
    margin-bottom: 16px;
    position: absolute;
    top: 0;
  }

  #requisiti h1 {
    font-size: 23px;
  }

  #requisiti p {
    margin: 16px 0;
  }

  #requisiti .btn {
    min-width: 100%;
    position: absolute;
    top: 670px;
  }

  #visibilita {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  #visibilita h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  #visibilita .card-body {
    padding: 24px 16px;
  }

  #visibilita .valutazione {
    margin: 0;
  }

  #visibilita svg {
    float: left;
    width: 100%;
    margin-bottom: 24px;
  }

  #visibilita p.dominio {
    margin: 32px 0 24px 0;
  }

  #why {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  #why h1 {
    font-size: 32px;
  }

  #why p {
    font-size: 14px;
  }

  #why .card-text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1023.8px) and (min-width: 350px) {
  #about {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  #about header {
    font-size: 32px;
    margin-bottom: 16px;
  }

  #about h2 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  #about p {
    font-size: 14px;
    margin-bottom: 0px;
  }

  #point {
    margin-bottom: 56px;
  }

  #point h2 {
    font-size: 23px;
    margin: 24px 16px 12px 16px;
  }

  #point p {
    font-size: 14px;
    margin: 0 16px 24px 16px;
  }

  #point .last {
    font-size: 14px;
    margin: 0 16px;
  }

  #point ol {
    margin: 0 16px 24px 7px;
  }

  #point li {
    font-size: 14px;
  }

  #siti {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-right: 0 !important;
    overflow-x: hidden;
  }

  #slide {
    padding-bottom: 92px;
  }

  #slide h1 {
    color: #474747;
    text-align: center;
    font-size: 32px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-top: 24px;
    margin-bottom: 23px;
  }

  #slide .input-group {
    position: absolute;
    bottom: 0;
    max-width: calc(100% - 1.5rem) !important;
  }

  #slide .splide {
    margin-top: 0px;
    margin-bottom: 16px;
    position: relative;
    float: none;
    width: calc(100% - 16px);
  }

  #slide .splide .d-flex {
    display: unset !important;
  }

  #slide .splide .justify-content-center {
    justify-content: unset !important;
  }

  #slide .splide .align-items-center {
    align-items: unset !important;
  }

  #slide .splide__slide img {
    vertical-align: top;
    max-height: 90px;
  }

  #slide .splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative;
    display: table;
    max-width: 320px;
  }

  #slide .red {
    border-radius: 10px;
    border: 2px solid #e50e0e;
    background: #fff;
  }

  #slide .green {
    border-radius: 10px;
    background: #fff;
    border: 2px solid #2ce50e;
  }

  #slide .lightorange {
    border-radius: 10px;
    background: #fff;
    border: 2px solid #ffb100;
  }

  #slide .security {
    color: #a9a9a9;
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: block;
    margin: 16px 0 4px 0;
  }

  #slide .rating {
    width: calc(50% - 16px);
    margin-top: 16px;
    margin-right: 16px;
    height: auto;
    padding: 0;
    display: block;
    text-align: center;
    float: right;
  }

  #slide .ico {
    margin: 0 auto;
    display: block;
    width: 20px;
  }

  #slide .ico img {
    width: 20px;
    height: auto;
  }

  #slide .rate {
    color: #474747;
    text-align: center;
    font-size: 28px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    height: 45px;
    display: inline;
  }

  #slide .over {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: super;
  }

  #slide .dominio {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: block;
    margin: 0px 0 14px 0;
  }

  #slide .prodotto {
    margin: 0;
    display: block;
    width: 50%;
    float: left;
  }

  #slide figure {
    margin: 2px;
  }

  #slide figcaption {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    position: absolute;
    right: 0;
    left: 0;
    top: 90px;
    margin-left: auto;
    white-space: nowrap;
  }

  #slide .splide::before {
    background: linear-gradient(90deg, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    position: absolute;
    top: 0;
    z-index: 999;
    height: 100%;
    content: " ";
    display: block;
    width: 50px;
    left: 0;
  }

  #slide .splide::after {
    background: linear-gradient(
      270deg,
      #f6f6f6 0%,
      rgba(246, 246, 246, 0) 100%
    );
    position: absolute;
    top: 0;
    z-index: 999;
    height: 100%;
    content: " ";
    display: block;
    width: 50px;
    right: 0;
  }
}

@media only screen and (max-width: 575.8px) and (min-width: 389.8px) {
  #ecommerce {
    background-image: none;
    background-color: #dbcbbd;
    min-height: auto;
    padding: 32px 0;
  }

  #ecommerce .testo {
    max-width: 100%;
    margin-bottom: auto !important;
    position: relative;
  }

  #ecommerce h1 {
    font-size: 32px;
    margin-bottom: 0px !important;
    position: absolute;
    margin: 0 12px;
  }

  #ecommerce h2 {
    font-size: 16px;
    margin-bottom: 0px !important;
    position: absolute;
    top: 80px;
    margin: 0 12px;
  }

  #ecommerce p {
    font-size: 14px;
    margin-bottom: 0 !important;
    position: absolute;
    top: 110px;
    margin: 0 12px;
  }

  #ecommerce img {
    margin-top: 100px;
  }

  #ecommerce .input-group {
    max-width: calc(100% - 24px) !important;
    margin: 0 12px;
  }

  #ecommerce .form-control::placeholder {
    color: #a9a9a9;
    font-size: 14px;
  }

  #guida {
    margin-top: 32px;
    margin-bottom: 23px;
  }

  #guida h1 {
    font-size: 23px;
    margin-bottom: 12px;
  }

  #guida h2 {
    font-size: 16px;
  }

  #consigli {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #consigli .background {
    padding: 12px 8px;
  }

  #consigli .bg-image-fit {
    min-height: 120px;
  }

  #consigli header {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #consigli article {
    font-size: 14px;
    margin-right: 0px;
    max-width: 100%;
  }

  #consigli article.line-clamp-5 {
    -webkit-line-clamp: 3;
  }

  #consigli .read {
    display: none;
  }

  #info .btn {
    min-width: 100%;
  }

  #slide .form-control {
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-sizing: border-box;
    padding: 18px;
  }

  #plus {
    margin-top: 64px;
    margin-bottom: 24px;
  }

  #plus .card-body {
    padding: 24px;
  }

  #plus .card {
    border-radius: 10px;
    margin-bottom: 16px;
  }

  #plus .card-title {
    color: #e55e0e;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-left: 12px;
    margin-bottom: 12px;
    padding: 0;
  }

  #plus .card-text {
    color: #a9a9a9;
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-left: 12px;
  }

  #plus .card .material-symbols-outlined {
    font-size: 20px !important;
    color: #e55e0e;
    margin-top: 0px;
  }

  #info {
    margin-top: 0px;
    margin-bottom: 40px;
  }

  #info .card {
    border-radius: 10px;
    background: linear-gradient(225deg, #e55e0e 0%, #ffb100 100%);
  }

  #info .card-body {
    padding: 24px;
  }

  #info .card-title {
    text-align: center;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 12px;
    padding: 0;
  }

  #info .card-text {
    color: #fff;
    font-size: 12px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }

  #analisi {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-right: 0 !important;
    overflow-x: hidden;
  }

  #analisi h1 {
    font-size: 23px;
    padding-right: 12px;
  }

  #analisi h2 {
    font-size: 16px;
    padding-right: 12px;
  }

  #analisi p {
    font-size: 14px;
    padding-right: 12px;
  }

  #siti {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-right: 0 !important;
    overflow-x: hidden;
  }

  #siti h2 {
    padding: 0px 12px 0 0;
    margin-bottom: 24px;
    color: #474747;
    text-align: left;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  #siti .card {
    border-radius: 10px;
    border: 1px solid rgba(169, 169, 169, 0.3);
    background: #fff;
  }

  #siti .card-body {
    padding: 24px 24px 16px 24px;
  }

  #siti .card-title {
    color: #e55e0e;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
  }

  #siti p {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 16px;
  }

  #siti .card-image {
    border-radius: 10px;
    margin-bottom: 16px;
  }

  #siti .card-link {
    text-decoration: none;
    display: inline-flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #a9a9a9;
    border-radius: 15px;
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-right: 12px;
    margin-left: 0;
  }

  #pass {
    margin-top: 0px;
    margin-bottom: 56px;
    text-align: center;
  }

  #pass h3 {
    padding: 0px;
    margin-bottom: 24px;
    color: #474747;
    text-align: center;
    font-size: 23px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  #pass p {
    color: #474747;
    text-align: center;
    font-size: 10px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-top: 24px;
    margin-bottom: 0;
  }

  #pass a.esa {
    color: #474747;
    text-align: center;
    font-size: 10px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration: underline !important;
  }

  #pass .social {
    color: #fff;
    background-color: #474747;
    border-radius: 10px;
    padding: 24px;
    display: inline-table;
    margin-right: 17px;
    width: 77px;
    height: 77px;
  }

  #pass .social:last-child {
    margin-right: 0;
  }

  #pass .fa-2xl {
    font-size: 32px;
    vertical-align: -12px;
  }

  #personalizza {
    background-color: #fff;
  }

  footer {
    background-color: #474747;
    padding-top: 33px;
    padding-bottom: 32px;
  }

  footer .logo {
    height: 22px;
    width: auto;
  }

  footer .language {
    color: #a9a9a9;
    padding-top: 3px;
    margin: 0;
    text-align: right;
  }

  footer .language .material-symbols-outlined {
    float: left;
  }

  footer .language a {
    color: #a9a9a9;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    margin-left: 8px;
    margin-top: 0px;
    float: left;
    padding: 0;
  }

  footer .mt-6 {
    margin-top: 2rem !important;
  }

  footer .list-group-item {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0px !important;
    color: #fff;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 32px;
    text-align: center;
  }

  footer .list-group-item a {
    color: #fff;
  }

  footer .list-group-item:last-child {
    margin-bottom: 10px;
  }

  footer .social {
    color: #fff;
    display: inline-table;
    margin-right: 32px;
    width: 32px;
    height: 32px;
  }

  footer .social:last-child {
    margin-right: 0;
  }

  footer .fa-xl {
    font-size: 32px;
  }

  footer .condizioni {
    border-radius: 10px;
    opacity: 0.5;
    background: #a9a9a9;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  footer .condizioni a {
    color: #474747;
  }

  footer .condizioni .list-group-item {
    color: #474747;
    text-align: center;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration-line: underline;
    margin-bottom: 0;
    padding: 14px 0 !important;
  }

  footer .condizioni .list-group-item::after {
    display: none;
  }

  footer .condizioni .list-group-item:last-child::after {
    display: none;
  }

  footer .rights {
    color: #a9a9a9;
    text-align: center;
    font-size: 12px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration-line: underline;
  }
}

@media only screen and (max-width: 767.8px) and (min-width: 576px) {
  #ecommerce {
    background-image: url("../img/bg-ecommerce.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 500px;
    padding: 32px 0;
  }

  #ecommerce img {
    display: none !important;
  }

  #ecommerce .testo {
    max-width: 100%;
    margin-bottom: auto !important;
    position: relative;
    min-height: 500px;
  }

  #ecommerce h1 {
    font-size: 32px;
    margin-bottom: 0px !important;
    position: absolute;
    margin: 0 12px;
  }

  #ecommerce h2 {
    font-size: 16px;
    margin-bottom: 0px !important;
    position: absolute;
    top: 80px;
    margin: 0 12px;
  }

  #ecommerce p {
    font-size: 14px;
    margin-bottom: 0 !important;
    position: absolute;
    top: 105px;
    margin: 0 12px;
  }

  #ecommerce .input-group {
    max-width: calc(100% - 24px) !important;
    margin: 0 12px;
  }

  #ecommerce .form-control::placeholder {
    color: #a9a9a9;
    font-size: 14px;
  }

  #ecommerce .input-group {
    max-width: 85% !important;
    position: absolute;
    bottom: 0;
  }

  #guida h1 {
    font-size: 26px;
  }

  #guida h2 {
    font-size: 16px;
  }

  #consigli {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #consigli .background {
    padding: 12px 8px;
  }

  #consigli header {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #consigli article {
    font-size: 14px;
    margin-right: 0px;
    max-width: 100%;
  }

  #consigli article.line-clamp-5 {
    -webkit-line-clamp: 5;
  }

  #consigli .read {
    display: none;
  }

  #slide .ico {
    margin: 0 auto 5px auto;
    display: block;
    width: 30px;
  }

  #slide .ico img {
    width: 30px;
    height: auto;
  }

  #slide figcaption {
    top: 93px;
  }

  #siti h2 {
    font-size: 26px;
    padding: 0px 15px 0 0;
  }

  #info .card-title {
    font-size: 26px;
    margin: 0 16px 16px 16px;
  }

  footer .list-group-item {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0px !important;
    color: #fff;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 32px;
    text-align: center;
  }

  footer .list-group-item a {
    color: #fff;
  }

  footer .list-group-item:last-child {
    margin-bottom: 10px;
  }

  footer .social {
    margin-right: 49px;
    width: 25px;
    height: 25px;
  }

  footer .social:last-child {
    margin-right: 0;
  }

  footer .fa-xl {
    font-size: 25px;
  }

  footer .condizioni {
    border-radius: 10px;
    opacity: 0.5;
    background: #a9a9a9;
    margin-top: 8px;
    margin-bottom: 24px;
  }

  footer .condizioni a {
    color: #474747;
  }

  footer .condizioni .list-group-item {
    color: #474747;
    text-align: center;
    font-size: 16px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration-line: underline;
    margin-bottom: 0;
    padding: 14px 0 !important;
  }

  footer .condizioni .list-group-item::after {
    display: none;
  }

  footer .condizioni .list-group-item:last-child::after {
    display: none;
  }
}

@media only screen and (max-width: 991.8px) and (min-width: 768px) {
  #ecommerce {
    min-height: auto;
    padding: 40px 0;
  }

  #ecommerce h1 {
    font-size: 32px;
  }

  #ecommerce .input-group {
    max-width: 100% !important;
  }

  #ecommerce .form-control::placeholder {
    color: #a9a9a9;
    font-size: 14px;
  }

  #consigli article {
    font-size: 14px;
    margin-right: 0px;
    max-width: 100%;
  }

  #consigli article.line-clamp-5 {
    -webkit-line-clamp: 5;
  }

  #consigli .read {
    display: none;
  }

  #analisi .parametro {
    min-width: 180px;
    min-height: 92px;
    padding: 10px;
  }

  #slide .ico {
    margin: 0 auto 5px auto;
    display: block;
    width: 30px;
  }

  #slide .ico img {
    width: 30px;
    height: auto;
  }

  #slide figcaption {
    top: 93px;
  }

  #info .card-title {
    font-size: 26px;
  }

  footer .social {
    margin-right: 12px;
    width: 25px;
    height: 25px;
  }
}

@media only screen and (max-width: 1199.8px) and (min-width: 992px) {
  .navbar-brand {
    max-height: 25px;
  }

  .navbar-brand img {
    max-height: 25px;
    vertical-align: top;
  }

  #menu .input-group {
    max-width: 260px !important;
    margin: auto;
  }

  #menu .form-control {
    height: 40px !important;
  }

  #menu .form-control::placeholder {
    padding-left: 5px;
    font-size: 14px;
  }

  #menu .btn-primary {
    padding: 7px 10px;
  }

  #menu .fa-xl {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}

.underline {
  text-decoration: underline !important;
}

.white-color {
  color: #fff !important;
}

.gray-color {
  color: #a9a9a9 !important;
}

/* Start Secure Index */
.secure-rating-verification {
  background: #f2f2f2;
  border-radius: 80px;
}

.secure-rating-text {
  font-size: 45px;
}

.secure-rating-verification-logo {
  width: 34px;
  height: 48px;
}

.security-rating-custom-width {
  width: 100%;
}

.progress-security-rating {
  height: 50px;
  border-radius: 50px;
  background: rgba(169, 169, 169, 0.5);
  position: relative;
  margin: 35px 0;
}

.progress-security-rating > .progress-bar-security-rating {
  height: 100%;
  border-radius: 50px 0px 0px 50px;
  -webkit-mask: linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0);
}

.progress-security-rating > .progress-bar-security-rating.full {
  border-radius: 50px !important;
}

.progress-security-rating > .progress-bar-security-rating::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    270deg,
    #2ce50e 0%,
    #ffb100 49.29%,
    #e50e0e 100%
  );
}

/* End Secure Index */

.lightgray-txt {
  color: #a9a9a9;
}

.suggesterResults {
  position: absolute;
  top: 50px;
  z-index: 2 !important;
  width: calc(100% - 2px);
  left: 2px;
}

#menu .form-control {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

#menu .form-control:focus,
#visibilita .form-control:focus {
  box-shadow: #848484 0px 1px 4px !important;
}

#menu .suggesterResults {
  top: 40px;
}

#visibilita .suggesterResults {
  top: 30px;
}

.suggesterSearch {
  z-index: 3 !important;
}

.searchBtn {
  z-index: 4 !important;
}

.blue-color {
  color: #3665b2 !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-23 {
  font-size: 23px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-32 {
  font-size: 32px !important;
}

.font-45 {
  font-size: 45px !important;
}

.suggesterResults .border-bottom:last-child {
  border-bottom: none !important;
}

.dark-color {
  color: #474747 !important;
}

.orange-color {
  color: #e55e0e !important;
}

.gray-color{
  color: #a9a9a9 !important;
}

.border-none {
  border: none !important;
}

.dark-blue-color {
  color: #1e3d87 !important;
}

.form-control::placeholder {
  color: #a9a9a9;
  font-size: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: light;
  line-height: normal;
}

.report-btn {
  max-width: 272px;
  width: 100%;
}

a.text-decoration-none {
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .font-xs-14 {
    font-size: 14px !important;
  }

  .font-xs-16 {
    font-size: 16px !important;
  }

  .font-xs-23 {
    font-size: 23px !important;
  }

  .font-xs-32 {
    font-size: 32px !important;
  }

  .report-btn {
    max-width: 100%;
    width: 100%;
  }
}


.orange-hover:hover {
  color: #e55e0e !important;
}

.dark-title{
  margin-bottom: 24px;
  color: #474747;
  text-align: center;
  font-size: 23px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.orange-title{
  color: #e55e0e;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}