/* Colors */
:root {
  --primary-color: #666cff;
  --bold-color: #5c61e6;
  --common-light-color: #e4e5f2;
  --common-dark-color: #282a42;
  --font-size: 16px;
  --container-inside-padding: 60px 0;
  --gap-between-text-: 16px;
  --border-radius: 10px;
  --placeholder-color: #676b7b33;
  --overlay-color: rgba(38, 43, 67, 0.18);
}
:root,
:root.light {
  --text-color: #3b4056;
  --secondary-bg: #fff;
  --optional-bg: #fff;
  --off-white: #f7f7f9;
  --bold-h2: #3b4056;
  --input-border: rgba(103, 107, 123, 0.2);
  --input-color: #3b4056;
  --main-form-bg: #fff;
  --label-bg: #fff;
  --hero-bg: url("../../public/assets/hero light_first_section/hero-bg-light-1.svg");
  --body-bg: "#fff";
  --toggle-hover: #666bff36;
  --placeholder-color: #676b7b33;
  --table-header-bg-color: #f5f5f7;
  --table-border-color:#e5e6e8;
  --hover-close-color:#262b43;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text-color: #e4e5f2;
    --secondary-bg: #30334e;
    --optional-bg: #30334e;
    --off-white: #282a42;
    --bold-h2: #c3c5da;
    --input-border: #676b7b;
    --input-color: #e4e5f2;
    --main-form-bg: #282a42;
    --label-bg: #282a42;
    --hero-bg: url("../../public/assets/hero dark_first_section/hero-bg-dark_fatte_fatturazione_elettronica.png");
    --body-bg: #30334e;
    --placeholder-color: #e4e5f2;
    --table-header-bg-color:#3a3e5b;
    --table-border-color:#e5e6e8;
    --hover-close-color:#fff;
  }
}
:root.dark {
  --text-color: #e4e5f2;
  --secondary-bg: #30334e;
  --optional-bg: #30334e;
  --off-white: #282a42;
  --bold-h2: #c3c5da;
  --input-border: #676b7b;
  --input-color: #e4e5f2;
  --main-form-bg: #282a42;
  --label-bg: #282a42;
  --hero-bg: url("../../public/assets/hero dark_first_section/hero-bg-dark_fatte_fatturazione_elettronica.png");
  --body-bg: #30334e;
  --placeholder-color: #e4e5f2;
  --table-header-bg-color:#3a3e5b;
  --table-border-color:#464963;
  --hover-close-color:#fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 16px;
  background-color: var(--body-bg);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  background-color: var(--body-bg);
  color: var(--text-color);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15px;
  margin: 0 auto;
}
h1 {
  font-weight: 700;
  font-size: 25px;
}
h2 {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
}
p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: var(--text-color);
}
nav a {
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 1.6px;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
nav a:hover {
  color: var(--primary-color);
}
nav a:hover::after {
  width: 100%;
}
.active-nav {
  color: var(--primary-color);
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}
.primary-btn {
  padding: 12px 18px;
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: var(--font-size);
}
.primary-btn:hover {
  background-color: var(--bold-color);
}
.btn:hover {
  background-color: #0056b3;
}
.logo {
  height: 100%;
  width: 100px;
}
.logo a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
h1 span {
  font-weight: 500;
  line-height: 42px;
}
img,
svg {
  vertical-align: middle;
}
/* Header */
header {
  width: calc(100% - 24px);
  max-width: 1500px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--secondary-bg);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: fixed;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: box-shadow 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  @media (min-width: 1250px) and (max-width: 1320px) {
    padding: 0 13px;
  }
}
.header-scroll {
  box-shadow: 0 5px 15px #0000001a;
}
.left-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5vw;
}
.left-header nav {
  position: absolute;
  height: 100dvh;
  width: 90%;
  left: -100%;
  margin-left: -15%;
  top: 0;
  background-color: var(--secondary-bg);
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
  transition: left 0.3s ease;
  z-index: 1000;
}
.close-icon {
  position: absolute;
  top: 20px;
  right: 5%;
  cursor: pointer;
  height: fit-content;
  width: fit-content;
}

.logo-sm-screen {
  position: absolute;
  top: 20px;
  left: 20%;
  z-index: 2000;
}

.logo-sm-screen img {
  height: auto;
  width: 100px;
}
.close-icon img,
.show-nav-icon img {
  height: 30px;
  width: 30px;
}
.show-nav-icon {
  height: 100%;
  width: fit-content;
  width: fit-content;
  cursor: pointer;
  margin-right: 8px;
}
.theme-toggle {
  cursor: pointer;
  height: 45px;
  width: fit-content;
  width: 20px;
  object-fit: cover;
  object-position: center;
}
.access-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5vw;
}
.heading-text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-between-text-);
}
.theme-mode-picker {
  position: relative;
}
.theme-picker {
  object-fit: cover;
  object-position: center;
  width: 22px;
  height: 22px;
  cursor: pointer;
  margin-right: 8px;
}
.theme-picker-list {
  display: none;
}
.visible {
  display: block;
  position: absolute;
  top: 50px;
  left: -15px;
  background-color: var(--secondary-bg);
  border-radius: 5px;
  box-shadow: 0px 4px 10px #00000008;
  display: none;
  padding: 5px 0px;
  display: flex;
  flex-direction: column;
  width: auto;
  box-shadow: 0 4px 10px #0000001a;
}
.light-mode,
.dark-mode,
.system-mode {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-wrap: nowrap;
}
.light-mode:hover,
.dark-mode:hover,
.system-mode:hover {
  background-color: var(--toggle-hover);
}
.light-mode-svg,
.dark-mode-svg,
.system-mode-svg {
  width: 22px;
  height: 22px;
}
.light-mode h2,
.dark-mode h2,
.system-mode h2 {
  font-weight: 500;
  text-wrap: nowrap;
}
@media (max-width: 512px) {
  .access-btn {
    gap: 10px;
  }
  .access-btn .primary-btn {
    scale: 0.9;
    font-size: 14px;
    margin-left: auto;
    white-space: nowrap;
    padding: 13px 10px;
  }
  .left-header > .logo,
  .show-nav-icon {
    scale: 0.8;
  }

  .left-header {
    gap: 0px;
  }
}
@media (max-width: 400px) {
  .show-nav-icon {
    margin-right: 0px;
  }
  .theme-mode-picker > picture > .theme-picker {
    scale: 0.9;
    margin-right: -8px;
  }
}
/* Main */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.hero-section {
  background-image: var(--hero-bg);
  width: 100%;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hero-content {
  padding-top: 130px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-text h1 {
  color: var(--primary-color);
  line-height: 46px;
  @media (max-width: 512px) {
    line-height: 36px;
  }
}
h1 br {
  display: none;
}
.hero-images {
  height: 100%;
  width: 100%;
  position: relative;
  margin-top: 25px;
}
.hero-images img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.dashboard-image {
  margin: 0 auto;
}
.dashboard-image img {
  width: 90%;
}
.elements-image img {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Features  */
.feature-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-between-text-);
}

.features-items,
.vantaggi-items,
.statics-item {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: stretch;
}
.feature,
.item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 100%;
}
.svg-icon {
  height: auto;
  width: 100%;
  margin-bottom: 8px;
}
.svg-icon img {
  height: auto;
  width: 80px;
  border: 1px solid var(--primary-color);
  padding: 16px;
  border-radius: 50%;
}
.low-opacity-text {
  opacity: 0.9;
}

/* Create Documents */
.create-documents {
  background-color: var(--off-white);
  width: 100%;
  height: auto;
  padding: var(--container-inside-padding);
}
.document-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-between-text-);
}
.swiper {
  margin-top: 20px;
  padding: 50px 0;
  width: 100%;
  height: 100%;
}
.swiper-slide {
  height: 302px;
  background-color: var(--optional-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 5px #ffffff0c;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 32px;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.swiper-wrapper .swiper-slide {
  width: 255px;
  margin-bottom: 20px;
}
.swiper-slide p {
  font-size: 15px;
}
.swiper-pagination-bullet {
  background: #676b7b80;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #676b7b;
}

/* Ovunque ti trovi */
.ovunque-ti-trovi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.cards {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.card-item {
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  height: initial;
  display: flex;
  flex-direction: column;
  gap: var(--gap-between-text-);
  padding: 30px 25px;
  max-width: 400px;
}
.card-item h3 {
  margin-bottom: 5px;
}
.card-img {
  width: 100%;
  margin-bottom: 15px;
}
.card-img img {
  width: 168px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Vantaggi */
.vantaggi-section {
  background-color: var(--off-white);
  width: 100%;
  padding: var(--container-inside-padding);
}
.vantaggi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-between-text-);
}
.primary-btn-top-padding {
  margin-top: 16px;
}

/* Pay-per-use */
.pay-per-use {
  width: 100%;
}
.pay-per-use-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-between-text-);
}
.price-section-1,
.price-section-2 {
  width: 100%;
}
.price-cards {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
  padding-bottom: 20px;
}
.card {
  margin: 0 auto;
  width: 100%;
  width: 100%;
  height: 320px;
  border: 1px solid var(--common-light-color);
  border-radius: 15px;
  position: relative;
}
.card-tag {
  margin: 15px;
  background-color: #e8fadd;
  color: #72e128;
  border-radius: 30px;
  padding: 5px;
}
.price {
  margin-top: 40px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price h2 {
  font-size: 46px;
  line-height: 52px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}
.price-tag {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-color);
}
.credit {
  margin-top: 40px;
  font-size: 20px;
  line-height: 26px;
  color: var(--text-color);
}
.card button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border: none;
  font-size: var(--font-size);
  font-weight: 600;
  padding: 12px 0px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* Statics */
.statics {
  margin-top: -30px;
}
.statics-item,
.vantaggi-items {
  gap: 50px;
}

@media (min-width: 350px) and (max-width: 512px) {
  .statics-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    row-gap: 50px;
  }
}
/* Faqs */
.faqs {
  width: 100%;
  padding: var(--container-inside-padding);
  background-color: var(--off-white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
.faqs-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.faqs-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq-img {
  height: 100%;
  width: 100%;
}
.faq-img img {
  width: 327px;
  height: 346px;
  object-fit: cover;
  object-position: center;
}

.faqs-drop-down {
  box-shadow: 0 4px 12px #0000001a;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: fit-content;
}

.faqs-drop-down .faq-item:first-child {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.faqs-drop-down .faq-item:last-child {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.faq-item {
  background-color: var(--body-bg);
  padding: 16px;
  margin-bottom: 0.5px;
  border-bottom: 0.2px solid #0000001a;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  text-align: left;
  position: relative;
  cursor: pointer;
  color: var(--text-color);
}
.faq-question p {
  font-size: 16px;
  width: 93.5%;
  font-weight: 500;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
.faq-question .drop-down-arrow {
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
  top: 0;
}
.faq-question.active .drop-down-arrow {
  transform: rotate(-180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-top: 8px;
  font-size: 15px;
  text-align: left;
  line-height: 1.5;
  color: var(--text-color);
}
.faq-answer .low-opacity-text ul {
  padding-left: 20px;
  margin: 0;
}

.faq-answer .low-opacity-text > ul > li {
  list-style: disc;
  margin-bottom: 5px;
  text-align: left;
}
li {
  font-size: 15px;
  margin: 5px 0px;
  color: var(--text-color);
  line-height: 1.5;
}

/* Pronto-per-inizare */
.pronto-per-inizare {
  margin-top: -60px;
  height: auto;
  width: 100%;
  background: url("../../public/assets/icon_and_background_ninth_section/cta-bg_fatturazione_elettronica.png")
    center center no-repeat;
  background-size: cover;
  padding-top: 60px;
}
.pronto-per-inizare-content {
  display: flex;
  flex-direction: column;
}
.dashboard-img-pronto {
  margin: 0 auto;
}
.dashboard-img-pronto img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 660px;
  margin-bottom: -3.6px;

  @media (min-width: 768px) {
    margin-bottom: -6px;
  }
}
.cta-btn {
  margin: 20px auto;
  width: max-content;
}
.heading-blue {
  color: var(--primary-color);
  font-size: 25px;
}
.bold-h2 {
  font-weight: 500;
  font-size: 16px;
  color: var(--bold-h2);
}

/* Contattaci */
.contattaci {
  height: 100%;
  width: 100%;
}
.contattaci-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-form {
  padding: 25px 20px;
  border-radius: var(--border-radius);
  background-color: var(--main-form-bg);
  box-shadow: 0 4px 10px #0000001a;
}
.main-form h3 {
  font-size: 20px;
  text-align: left;
}
.form-info-heading h3 {
  margin-bottom: 20px;
}
.form-info {
  text-align: left;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: initial;
  min-height: 400px;
}
.form-details {
  margin-top: auto;
}
.question .top-question {
  display: block;
}
/* FORM */
form {
  margin-top: 25px;
}
input,
textarea {
  background-color: transparent;
  outline: none;
  border: 1.3px solid var(--input-border);
  border-radius: 8px;
  padding: 0 12px;
  width: 100%;
  color: var(--input-color);
  font-size: 16px;
  transition: border-color 0.3s ease-in-out, padding-top 0.3s ease-in-out;
  box-sizing: border-box;
  height: 42px;
}
input::placeholder,
textarea::placeholder {
  opacity: 0;
}

.form-group {
  position: relative;
}
label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--placeholder-color);
  transition: all 0.25s ease;
  background-color: transparent;
  pointer-events: none;
  padding: 0.01rem 0.25rem;
  z-index: 1;
}

input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
  top: 0;
  left: 8px;
  background-color: var(--label-bg);
  color: var(--primary-color);
  padding: 0 7px;
  scale: 0.9;
}
.message-label {
  top: 10%;
}
input:focus,
textarea:focus {
  border: 1.6px solid var(--primary-color);
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0.7;
}
textarea {
  font-family: inherit;
  font-size: inherit;
  resize: none;
  height: 199px;
  line-height: 1.5;
  padding-top: 12px;
}
.input-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.submit-btn {
  width: fit-content;
}

/* Footer */

footer p,
footer h2,
footer h3,
footer a {
  color: var(--common-light-color);
}
footer input {
  border-color: var(--common-light-color);
  color: var(--common-light-color);
}
footer .form-group label {
  color: var(--dark-text-color);
}
footer input:focus + label,
footer input:not(:placeholder-shown) + label {
  color: var(--primary-color);
  background-color: var(--common-dark-color);
}
footer {
  height: auto;
  width: 100%;
  background: url("../../public/assets/footer/footer_bg_light_and_dark.png")
    center center no-repeat;
  background-size: cover;
  margin-top: 60px;
  padding: 0 16px;
}
.footer-content {
  padding: var(--container-inside-padding);
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.footer-nav nav {
  display: block;
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 18px;
}
.footer-content nav a {
  width: fit-content;
}
.news-letter,
.footer-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.footer-cta .primary-btn {
  width: fit-content;
}
.news-letter-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-letter h2 {
  font-weight: 700;
}
.footer-logo p {
  font-weight: 500;
  margin: 20px 0px;
}
.footer-logo .primary-btn {
  margin-top: auto;
}
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-content .primary-btn {
  margin-top: auto;
}
.footer-logo .logo {
  height: auto;
}
.footer-logo .logo a {
  height: 100%;
  width: 100%;
}
.social-link,
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.social-links {
  margin-top: auto;
  flex-direction: column;
}
.social-link {
  gap: 25px;
}
.insta,
.facebook,
.linkedin,
.tiktok {
  height: 25px;
  width: 25px;
  transition: scale 0.15s linear;
}
.insta:hover,
.facebook:hover,
.linkedin:hover,
.tiktok:hover {
  scale: 1.1;
}

/* Copy right */
.copy-right {
  background-color: rgb(33, 27, 44);
  width: 100%;
  padding: 20px 0;
  color: var(--common-light-color);
}
.copy-right .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.copy-right p {
  font-weight: 500;
}
.gec-logo {
  height: 34.77px;
  width: 112px;
}
.gec-logo a img {
  height: 100%;
  width: 100%;
}
.copy-right-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
  justify-content: center;
}
.copy-right .privacy-policy nav {
  display: block;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.copy-right .privacy-policy nav a {
  width: fit-content;
  color: var(--common-light-color);
}
.copy-right .privacy-policy nav a:hover {
  color: var(--primary-color);
}

/* cookies */
.cookies {
  display: none;
}
.cookies-visible {
  height: auto;
  width: 90%;
  background-color: #fff;
  border: 0.2px solid black;
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  z-index: 500;
  color: #000;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: var(--border-radius);
}
.cookies h2 {
  font-weight: 600;
  font-size: 18px;
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.cookie-consent-buttons button {
  border: none;
  background-color: none;
  padding: 10px 16px;
  font-size: calc(var(--font-size) - 2px);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-radius: var(--border-radius);
}

.cookie-consent-buttons .reject-btn {
  background-color: #e0e0e0;
  color: #333333;
}

.cookies-content {
  opacity: 0.7;
  line-height: 1.5;
  letter-spacing: 0.1px;
  font-size: 15px;
}

.cookies a {
  color: var(--bold-color);
}

/* Azienda Page */
.azienda-hero {
  background-color: var(--hero-bg);
  background-position: bottom center;
}
.azienda-page-logo {
  height: 100%;
  width: 100%;
}
.azienda-page-logo img {
  height: 108px;
  max-width: 573px;
  text-align: center;
  object-position: center;
  @media (max-width: 512px) {
    height: 100%;
    width: 200px;
  }
}
.chi-siamo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.azienda-paragraph {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2%;
  text-align: center;
  color: var(--text-color);
  max-width: 900px;
  margin: 0 auto;
}
.azienda-url {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  text-decoration-color: var(--bold-color);
  color: var(--bold-color);
  cursor: pointer;
}
.azienda-logo {
  height: 100%;
  width: 100%;
}
.azienda-logo img {
  height: 79px;
  width: 272px;
  @media (max-width: 512px) {
    height: 100%;
    width: 200px;
  }
}
.azienda-container {
  height: 100%;
  width: 100%;
  max-width: 1440px;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.nostri-clienti {
  background-color: var(--off-white);
  padding: var(--container-inside-padding);
  width: 100%;
}
.nostri-clienti .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.azienda-nav.active {
  color: var(--bold-color) !important;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.azienda-nav:hover {
  text-decoration: none;
}


a.text-primary {
  color: var(--primary-color);
  font-weight: 700;
}

a.text-primary:hover {
  text-decoration: underline;
  color: var(--bold-color);
  transition: color 0.6s ease;
}

.modal.show
{
  visibility: visible;
  opacity: 1;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}



.modal.show .modal-content {
  transform: scale(1);
}


.modal {
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--overlay-color);
  box-shadow: 0 0.375rem 1.25rem 0 rgba(38, 43, 67, 0.18);
  transition: opacity 0.15s ease, visibility 0.15s ease;
}


.modal-content {
  background: var(--secondary-bg);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  border-radius: var(--border-radius);
  border: 0;
  box-shadow: 0 0.375rem 1.25rem 0 rgba(38, 43, 67, 0.18);
  outline: 0;
  background-clip: padding-box;
  max-width: 55rem;
  width: 100%;
  height: auto;
  color: var(--text-color);
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-weight: 500;
  transform: scale(0.8);
  transition: transform 0.15s ease;
}

.btn-close {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  font-weight: bold;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text-color);
}

.btn-close:hover {
  color: var(--hover-close-color);
  text-decoration: none;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
}

.text-center {
  text-align: center !important;
  font-weight: 500 !important;
}

.title {
  line-height: 2.375rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.table-responsive {
  overflow-x: auto;
}

.h-600 {
  max-height: 600px;
}

.text-no-wrap {
  white-space: nowrap;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: middle;  
  border-collapse: collapse;
}

.table > thead {
  vertical-align: bottom;
}

.table thead tr th {
  color: var(--text-color);
  background-color: var(--table-header-bg-color);
  border: 0;
  padding-block: 1.426rem;
  font-weight: 500;
}

.h-600 table thead th {
  position: sticky;
  top: 0px;
  z-index: 2;
}

.table th {
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.2px;
  text-align: start;
  align-content: center;
  font-weight: 500;
  border-bottom: 1px var(--table-border-color) solid;
}

.table > :not(caption) > * > * {
  padding: 0.7813rem 1.25rem;
}

.ps-16 {
  padding-left: 4rem !important;
}

.pe-16 {
  padding-right: 4rem !important;
}

.w-75 {
  width:75% !important;
}

.mt-8 {
  margin-top:2rem !important;
}

div.cky-notice-content-wrapper {
  font-family: Inter !important;
  color: #3b4056 !important;
}

button.cky-btn {
  border-radius: 0.5rem !important;
}

body > div.cky-consent-container.cky-banner-bottom > div > div:nth-child(3) > div {
  display: none !important;
}

body > div.cky-consent-container.cky-box-bottom-left > div > div:nth-child(3) {
  display: none !important;
}

body > div.cky-modal.cky-modal-open > div > div.cky-footer-wrapper > div:nth-child(3) {
  display: none !important;
}


body > div.cky-modal.cky-modal-open > div > div.cky-preference-body-wrapper > div.cky-accordion-wrapper > .cky-accordion > .cky-accordion-body > div > ul > li > div,
body > div.cky-modal.cky-modal-open > div > div.cky-preference-body-wrapper > div.cky-accordion-wrapper > .cky-accordion > .cky-accordion-body > div > ul > li > div > p {
  font-size: 12px !important;
}

@media (max-width: 400px) {
  .azienda-hero {
    padding-bottom: 170px;
  }
  .nasce-fatte {
    margin-top: -70px;
  }
}
@media (min-width: 401px) {
  .azienda-hero {
    padding-bottom: 210px;
  }
  .nasce-fatte {
    margin-top: -70px;
  }
}
@media (min-width: 512px) {
  .nasce-fatte {
    margin-top: -50px;
  }
}
@media (min-width: 2400px) {
  .azienda-hero {
    padding-bottom: 300px;
  }
}
/* RESPONSIVE */
@media (min-width: 512px) {
  header {
    max-width: 550px;
  }
  .container {
    max-width: 580px;
  }
  .heading-text p {
    max-width: 750px;
    margin: 0 auto;
  }
  /* Main */
  h1 {
    font-size: 38px;
  }
  .hero-text p {
    max-width: 600px;
    margin: 0 auto;
  }
  .features-items {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 60px;
    column-gap: 25px;
  }
  .feature {
    flex: 1 1 48%;
  }
  .feature p {
    max-width: 90%;
    margin: 0 auto;
  }
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 23px;
  }
  .card-item {
    flex: 1 1 48%;
    min-width: 300px;
    margin: 0 auto;
  }
  .vantaggi-items {
    margin-top: 60px;
  }
  .vantaggi-items,
  .statics-item {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 45px;
  }
  .statics-item {
    row-gap: 50px;
  }
  .item {
    flex: 1 1 48%;
  }
  .item p {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1440px;
    width: calc(100% - 12vw);
  }
  header {
    width: calc(100% - 12vw);
    max-width: 1500px;
  }
  /* Main */
  h1 br {
    display: block;
  }
  .hero-images {
    margin-top: 0px;
  }
  .dashboard-image {
    height: 70%;
    width: 80%;
  }

  .input-container {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  .form-group {
    width: 100%;
  }
  .news-letter-input {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .news-letter-input .form-group {
    max-width: 60%;
  }
  .copy-right .container {
    flex-direction: row;
    align-items: center;
    vertical-align: middle;
    justify-content: space-between;
  }
  .cookie-consent-buttons {
    flex-direction: row;
    justify-content: right;
  }
}
@media (min-width: 999px) {
  nav a {
    margin: 0 16px;
  }
  .access-btn .primary-btn {
    display: block;
    min-width: 193.88px;
  }
  /* Main */
  .features-items {
    margin-top: 50px;
  }
  .cards {
    gap: 45px;
  }
  .feature,
  .card-item {
    flex: 1 1 30%;
  }
  .vantaggi-items,
  .statics-item {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .item p {
    max-width: 85%;
  }
  .faqs-container {
    flex-direction: row;
    gap: 35px;
  }
  .faq-img {
    width: 40%;
  }
  .heading-blue {
    font-size: 38px;
  }
  .pronto-per-inizare-content {
    flex-direction: row;
    align-items: center;
  }
  .dashboard-img-pronto {
    margin-right: 0;
  }
  .pronto-per-inizare-content .heading-text {
    text-align: left;
  }
  .cta-btn {
    margin-left: 0;
    margin-right: 0;
  }
  .form-container {
    flex-direction: row;
  }
  .form-container .form-info {
    max-width: 40%;
  }
  .main-form {
    width: 100%;
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-content nav {
    align-items: start;
  }

  .footer-content .footer-social {
    min-width: 45%;
  }

  .news-letter-input .form-group {
    width: 100%;
  }
  .news-letter-input .form-group {
    max-width: 100%;
  }
  .news-letter-input .submit-btn {
    min-width: 170px;
  }
  .copy-right .privacy-policy nav {
    gap: 0px;
  }
}

@media (min-width: 768px) {
  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .card-list .card {
    flex: 0 0 257px;
    max-width: 257px;
  }
  .price-section-1 .card-list .card:nth-child(3) {
    flex: 1 1 80%;
    max-width: 80%;
  }
}

@media (min-width: 999px) {
  .card-list {
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
  }

  .price-section-1 .card-list .card {
    min-width: 257px;
  }
  .price-section-1,
  .price-section-2 {
    width: 546px;
  }
}

@media (min-width: 1255px) {
  nav a {
    margin: 0 16px;
  }
  .close-icon,
  .show-nav-icon {
    display: none;
  }
  .logo-sm-screen {
    display: none;
  }
  .left-header nav {
    width: 100%;
    left: 0;
    margin-left: 0;
    position: static;
    display: block;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    gap: 0px;
    height: fit-content;
    transition: none;
  }
}
@media (min-width: 1255px) and (max-width: 1300px) {
  .left-header {
    gap: 0vw;
  }
}
