@charset "UTF-8";
/*
 * ====================================================================
 * VARS
 * ====================================================================
 */
:root {
  --color-primary-100: #0A232B;
  --color-primary-90: #0F303B;
  --color-primary-80: #005D68;
  --color-primary-75: #005D68;
  --color-primary-30: #A7B7BE;
  --color-primary-20: #CFD7DC;
  --color-primary-10: #ECF0F2;
  --color-primary-5: #F5F7F7;
  --color-accent-100: #861F41;
  --color-accent-90: #861F41;
  --color-accent-80: #CF1D56;
  --color-accent-75: #CF1D56;
  --color-accent-50: #8D415A;
  --color-accent-30: #A86D80;
  --color-accent-20: #C299A7;
  --color-accent-10: #DDC5CD;
  --color-accent-5: #F8F1F3;
}

/*
 * ====================================================================
 * 
 * ====================================================================
 */
body {
  font-family: "Alexandria";
  color: var(--color-primary-100);
  background-color: #F5F5F5;
  font-weight: 300 !important;
  font-size: 15px;
}

body {
  animation: fadeInAnimation ease 0.2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#app {
  overflow: hidden;
}

.dropdown {
  position: static !important;
}

.dropdown-menu {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  margin-top: 0px !important;
  width: 100% !important;
}

/*
 * ====================================================================
 * TIPOGRAPHY
 * ====================================================================
 */
h1,
.h1 {
  color: var(--color-primary-100);
  font-weight: 600;
  font-size: 27px;
  line-height: 30.8px;
}

h2,
.h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  h1,
  .h1 {
    font-size: 47px;
    line-height: 53px;
  }
  h2,
  .h2 {
    font-size: 35px;
    line-height: 39.6px;
  }
}
h3,
.h3 {
  font-size: 31px;
  font-weight: 600;
  line-height: 35px;
  color: var(--color-primary-100);
}

h4,
.h4 {
  font-size: 23px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0em;
}

h5,
.h5 {
  font-size: 21px;
  font-weight: 600;
  line-height: 22px;
}

.body-12-bold {
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
}

.body-12-regular {
  font-weight: 300;
  font-size: 11px;
  line-height: 15px;
}

.body-14-regular {
  font-weight: 300;
  font-size: 13px;
  line-height: 16.8px;
}

.body-14-semibold {
  font-weight: 500;
  font-size: 13px;
  line-height: 16.8px;
}

.body-16-regular {
  font-weight: 300;
  line-height: 22.4px;
  font-size: 15px;
}

.body-16-semibold {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.body-16-bold {
  font-weight: 600 !important;
  line-height: 22.4px;
  font-size: 15px;
}

.body-18-regular {
  font-weight: 300;
  line-height: 25.2px;
  font-size: 17px;
}

.body-18-semibold {
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
}

.body-20-bold {
  font-weight: 600;
  line-height: 22px;
  font-size: 19px;
}

.body-20-semibold {
  font-weight: 500 !important;
  line-height: 22px;
  font-size: 19px;
}

.caption-12-semibold {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-primary-75);
}

.button-accent-medium {
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
}

.small {
  font-size: 13px;
  line-height: 14px;
}

/*
 * ====================================================================
 * VARIE
 * ====================================================================
 */
main {
  margin-top: 98px;
}

@media (max-width: 999px) {
  .mt-4-mobile {
    margin-top: 1.5rem !important;
  }
  .width-100 {
    width: 80px !important;
  }
}
@media (min-width: 576px) {
  main {
    margin-top: 118px;
  }
  .section-welcome {
    background-position: left;
  }
}
.tab-content > .tab-pane {
  display: none !important;
}

.tab-content > .tab-pane.show.active {
  display: block !important;
}

/* Eliminiamo il border default e creiamo un contenitore "pill" grigio */
.nav-tabs {
  border-bottom: none !important;
  /* Sfondo grigio chiaro */
  border-radius: 0;
  /* Arrotondamento "pill" */
  display: inline-flex;
  /* Per raccogliere le tab allineate */
  margin: 0 auto;
  /* Se vuoi centrarlo orizzontalmente */
}

/* Stile base dei bottoni */
.nav-tabs .nav-link {
  color: var(--color-accent-75) !important;
  font-weight: normal !important;
  border: 1.5px solid var(--color-accent-75) !important;
  background-color: #fff !important;
  border-radius: 0 !important;
  /* Arrotondamento a pillola */
  padding: 0.5rem 1rem !important;
  /* Garantisce la stessa altezza tra i bottoni */
  margin: 0 5px;
  /* Leggero distacco orizzontale */
}

/* Hover: scuriamo il testo e lo sfondo secondo i tuoi colori */
.nav-tabs .nav-link:hover {
  color: var(--color-accent-90) !important;
  border: 1.5px solid var(--color-accent-90) !important;
  background-color: var(--color-accent-5) !important;
}

/* Stile della tab attiva: colore di sfondo #cf1d56, testo bianco */
.nav-tabs .nav-link.active {
  background-color: #cf1d56 !important;
  font-weight: bold !important;
  color: #fff !important;
  border: 1.5px solid #cf1d56 !important;
}

/* Anche in hover sulla tab attiva rimane invariato */
.nav-tabs .nav-link.active:hover {
  background-color: #cf1d56 !important;
  color: #fff !important;
  border: 1.5px solid #cf1d56 !important;
}

/* Eliminato l'eventuale bordo inferiore */
.nav-tab {
  border-bottom: none !important;
}

.VueCarousel-wrapper {
  padding-bottom: 0px !important;
}

.section-welcome {
  background-position-x: 25%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px;
  position: relative;
}

.n-verde-desktop {
  font-weight: 800 !important;
  font-size: 17px !important;
  line-height: 23px !important;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-auto {
  cursor: auto !important;
}

.section-welcome .cta {
  position: absolute;
  bottom: 30px;
}

@media (min-width: 769px) {
  .section-welcome {
    background-position: center;
  }
  .section-welcome .cta {
    position: relative;
    bottom: 20px;
  }
}
@media (min-width: 2000px) {
  .section-welcome {
    background-position: center;
    height: 800px;
  }
  .section-welcome .cta {
    position: relative;
    bottom: 20px;
  }
  .bg-pdp {
    background-position: right;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
  }
}
.modal-backdrop {
  z-index: -1 !important;
}

.left {
  position: absolute;
  background-color: #005D68;
  border-radius: 0px 0 0 0px;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.left-pdp {
  position: absolute;
  background-color: #005D68;
  border-radius: 0px 0px 0 0px;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.left-pdp > div {
  z-index: 1;
}

.left:before,
.left-pdp:before {
  left: 0;
  background-color: #005D68;
  content: "";
  display: block;
  position: absolute;
  width: 999em;
  top: 0;
  bottom: 0;
}

@media (min-width: 576px) {
  .left:before,
  .left-pdp:before {
    left: -999em;
  }
}
.right {
  position: absolute;
  background: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.right:before {
  right: -999em;
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  width: 999em;
  top: 0;
  bottom: 0;
}

.richiedi-info {
  position: relative;
  top: -70px;
}

#location-map {
  width: 100%;
  min-height: 300px;
  z-index: 0;
}

.btn-try {
  background: #cf1d56;
  border-radius: 0 0 0 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  height: 61px;
  left: -112px;
  line-height: 18px;
  padding: 12px 12px 12px 12px;
  position: fixed;
  text-decoration: none;
  top: 50%;
  transition: all 0.5s linear;
  width: 171px;
  z-index: 2;
}

.btn-try:hover {
  left: 0;
  text-decoration: none;
}

.btn-green {
  background-color: #005d68 !important;
}

.color-green {
  color: #005d68 !important;
}

.bg-primary {
  background-color: #cf1d56 !important;
}

.sticky-bottom {
  position: fixed;
  bottom: 0;
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.1490196078);
}

.box-area {
  height: 150px;
  overflow: hidden;
}

.box-area img {
  position: relative;
  top: -50%;
}

@media (min-width: 576px) {
  .box-area {
    height: auto;
  }
  .box-area img {
    top: 0;
  }
}
.box-featured {
  position: relative;
  margin-top: -180px;
}

.cookieconsent {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background-color: #fff;
  border-radius: 0px;
  font-size: 19px;
  padding: 8px 15px;
  cursor: pointer;
}

.hbspt-form {
  display: none;
}

.wa-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #25d366;
  color: #333;
  border: 1px solid #25d366;
  height: 48px;
  width: 48px;
  font-size: 24px;
  z-index: 1;
  line-height: 100%;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.2901960784);
}

.wa-button a {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: #fff;
}

.width-100 {
  width: 100px;
}

/*
 * ====================================================================
 * LINK
 * ====================================================================
 */
a {
  color: var(--color-primary-100);
  text-decoration: none;
  position: relative;
}

a:hover {
  text-decoration: underline;
  color: var(--color-primary-100);
}

#article a,
#ic_courses a,
.link-primary {
  color: var(--color-accent-75) !important;
  text-decoration: underline !important;
}

#article a:hover,
.link-primary:hover {
  color: var(--color-accent-90) !important;
  text-decoration: underline !important;
}

#article a.btn {
  text-decoration: none !important;
}

.link-white,
.link-white:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

.link-14 {
  font-size: 13px;
  font-weight: 600;
  line-height: 14px;
  position: relative;
  text-decoration: none;
}

.link-14:hover {
  font-weight: 600;
  text-decoration: none;
}

.link-14::before {
  content: "";
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  bottom: 0px;
  height: 1.5px;
  background-color: var(--color-primary-100);
  width: 0;
  left: 0;
}

.link-14:hover::before {
  width: 100%;
  background-color: var(--color-primary-100);
}

.link-offer {
  line-height: 19.2px;
  text-decoration: none !important;
  display: flex;
  font-weight: 600 !important;
  justify-content: center !important;
  flex-direction: column !important;
  min-height: 170px;
}

.text-decoration-none {
  text-decoration: none !important;
}

/*
 * ====================================================================
 * FORMS
 * ====================================================================
 */
.search .form-control {
  width: 365px;
  height: 40px;
  padding: 8px 16px;
  font-size: 15px;
  top: 2px;
  position: relative;
}

.search i {
  position: absolute;
  top: 13px;
  right: 35px;
  font-size: 16px;
  color: var(--color-primary-75);
}

.form-control {
  border-color: var(--color-primary-30);
  height: 44px;
  border-radius: 0px;
  padding: 11px 12px 11px 12px;
  border: 1px solid var(--color-primary-20);
  font-weight: 300;
  font-size: 15px;
  line-height: 140%;
  color: var(--color-primary-75);
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: var(--color-primary-80);
  margin-bottom: 6px;
}

.form-check-label {
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0em;
  color: var(--color-primary-100);
}

.fw-bold {
  font-weight: 500 !important;
}

select.form-select {
  height: 44px !important;
  font-weight: 300;
  border-radius: 0px !important;
}

select.form-select.aa {
  height: 37px !important;
}

textarea.form-control {
  min-height: 50px;
}

.form-control[type=file] {
  border: 1px solid #fff;
}

/*
 * ====================================================================
 * COLORS
 * ====================================================================
 */
.text-primary-90 {
  color: var(--color-primary-90);
}

.text-primary-75 {
  color: var(--color-primary-75);
}

.text-accent-75 {
  color: var(--color-accent-75);
}

/*
 * ====================================================================
 * BACKGROUNDS
 * ====================================================================
 */
.bg-primary-100 {
  background-color: var(--color-primary-100);
}

.bg-primary-90 {
  background-color: var(--color-primary-75);
}

.bg-primary-75 {
  background-color: var(--color-primary-75);
}

.bg-primary-20 {
  background-color: var(--color-primary-20);
}

.bg-neutral-50 {
  background-color: #888888;
}

.bg-neutral-30 {
  background-color: #BEBEBE;
}

.bg-neutral-20 {
  background-color: #D7D7D7;
}

.bg-neutral-10 {
  background-color: #E7E7E7;
}

.bg-neutral-5 {
  background-color: #F8F8F8;
}

.bg-neutral {
  background-color: #F5F5F5;
}

.bg-primary-10 {
  background-color: var(--color-primary-10);
}

.bg-primary-5 {
  background-color: #F5F7F7;
}

.bg-accent-100 {
  background-color: var(--color-accent-100);
}

.bg-accent-90 {
  background-color: var(--color-accent-90);
}

.bg-accent-80 {
  background-color: var(--color-accent-80);
}

.bg-accent-75 {
  background-color: var(--color-accent-75);
}

.bg-accent-50 {
  background-color: var(--color-accent-50);
}

.bg-accent-30 {
  background-color: var(--color-accent-30);
}

.bg-accent-20 {
  background-color: var(--color-accent-20);
}

.bg-accent-10 {
  background-color: var(--color-accent-10);
}

.bg-accent-5 {
  background-color: var(--color-accent-5);
}

/*.bg-aside {
    background: linear-gradient(0deg, rgba(136, 27, 59, 0.7), rgba(136, 27, 59, 0.7)), url(image.png), url(image.png), #FFFFFF;
}*/
.bg-other-courses {
  height: 293px;
}

.bg-featured {
  background-color: #005D68;
  border-radius: 0px;
  height: 293px;
}

.bg-blu-gradient {
  background-color: #005D68;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.bg-label-pdp {
  border: 1px solid var(--color-primary-20);
  background: #FFFFFF;
  padding: 4px 6px 3px 6px;
  border-radius: 0px;
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
}

.bg-pdp {
  background-position: right;
  background-repeat: no-repeat;
  z-index: 0;
  position: relative;
}

.bg-help {
  background-image: url("//assets.unipegaso.it/images/serve-aiuto.jpg");
  background-size: cover;
}

.bg-location {
  background-image: url("//assets.unipegaso.it/images/sede.jpg");
  background-size: cover;
}

.svg-white {
  filter: brightness(0) invert(1);
}

/*
 * ====================================================================
 * BUTTONS
 * ====================================================================
 */
.btn {
  display: inline-block;
  border-radius: 0;
  text-decoration: none !important;
  padding: 13px 16px;
}

.btn-sm {
  padding: 13px 10px;
  font-size: 13px;
  font-weight: 600 !important;
  line-height: 14px;
}

.btn-lg {
  font-size: 15px;
  line-height: 16px;
  padding: 16px !important;
  font-weight: 600 !important;
}

.btn i {
  top: 1px;
  position: relative;
}

.btn.active {
  background-color: var(--color-accent-75) !important;
  border: 1.5px solid var(--color-accent-75) !important;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2) !important;
  color: white !important;
}

.btn-primary {
  background-color: var(--color-accent-75);
  border: 1.5px solid var(--color-accent-75);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: var(--color-accent-90);
  border: 1.5px solid var(--color-accent-90);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  color: var(--color-accent-75) !important;
  border: 1.5px solid var(--color-accent-75);
  background-color: #fff;
}

.btn-secondary:hover,
.btn-secondary:active {
  color: var(--color-accent-90);
  border: 1.5px solid var(--color-accent-90);
  background-color: var(--color-accent-5);
}

.btn-outline-primary {
  color: var(--color-accent-75) !important;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid var(--color-accent-75);
  padding: 3px 0 !important;
}

a.btn-outline-primary {
  text-decoration: none !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
  background-color: transparent;
  border-bottom: 1px solid var(--color-accent-90);
  color: var(--color-accent-90);
}

.btn-filter {
  border-radius: 0px;
  padding: 7px 12px 7px 12px;
  background: var(--color-primary-20);
  border: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: var(--color-primary-80);
}

.shadow {
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1019607843) !important;
}

/*
 * ====================================================================
 * DROPDOWNS
 * ====================================================================
 */
.dropdown {
  position: relative !important;
}

.dropdown-toggle {
  border: 1px solid var(--color-primary-20);
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 0px;
  text-align: left;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-primary-75);
}

.dropdown-toggle::after {
  position: absolute;
  right: 17px;
  top: 17px;
}

.dropdown-toggle.show {
  border: 1px solid var(--color-primary-75);
  color: var(--color-primary-75);
  padding: 8px 12px;
}

.dropdown-menu.show {
  border-left: 1px solid var(--color-primary-75);
  border-right: 1px solid var(--color-primary-75);
  border-bottom: 1px solid var(--color-primary-75);
  top: -7px !important;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none !important;
  padding: 8px 12px;
}

.dropdown-menu .form-check-label {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.dropdown-menu .form-check input {
  border: 2px solid #0A232B;
}

/*
 * ====================================================================
 * LABELS
 * ====================================================================
 */
.label {
  border-radius: 0px;
}

.label-neutal-white {
  background-color: #FFFFFF;
  border: 1px solid #CFD7DC;
  color: var(--color-primary-75);
}

/*
 * ====================================================================
 * CARDS
 * ====================================================================
 */
.card-carousel {
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  gap: 30px;
  background: #FFFFFF;
  text-align: center;
  border-radius: 0px;
}

.card-location {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 0px;
}

.card-course {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
  border-radius: 0px;
}

.card-course-image {
  position: relative;
  overflow: hidden;
}

.border-pegaso {
  border-bottom: 6px solid var(--color-accent-75);
}

.border-sanraffaele {
  border-bottom: 6px solid #3498db;
}

.border-mercatorum {
  border-bottom: 6px solid #a12c2f;
}

.card-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 0px;
}

.card-labels {
  position: absolute;
  bottom: 18px;
  left: 20px;
}

.card-label {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: var(--color-primary-75);
  padding: 4px 6px 3px;
  background: #FFFFFF;
  border: 1px solid var(--color-primary-20);
  border-radius: 0px;
}

.card-review {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  background-color: #fff;
  padding: 16px 20px;
}

.strumenti-didattici-card {
  height: 75px;
  width: 268px;
  border-radius: 0px;
}

.documenti-utili-card {
  height: 202px;
  width: 48%;
  margin-right: 2%;
}

/*
 * ====================================================================
 * CAROUSEL
 * ====================================================================
 */
.carousel {
  z-index: 0 !important;
  --vc-nav-width: 40px !important;
  --vc-nav-height: 40px !important;
}

.carousel-review {
  left: -6px !important;
}

.carousel__prev .carousel__prev--disabled {
  left: -3% !important;
}

.carousel__next .carousel__next--disabled {
  right: -3% !important;
}

.carousel__next,
.carousel__prev {
  width: 40px !important;
  height: 40px !important;
}

.carousel__next {
  right: -2.5% !important;
}

.carousel__prev {
  left: -2.5% !important;
}

/**

/*
 * ====================================================================
 * HEADER
 * ====================================================================
 */
header {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 1;
  position: fixed;
  width: 100%;
  z-index: 1;
}

header .top {
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  height: 66px;
  right: 0;
  width: 100%;
}

header .top img {
  position: relative;
  top: -2px;
}

header .top::after {
  right: -999em;
  background-color: var(--color-primary-5);
  content: "";
  display: block;
  position: absolute;
  width: 999em;
  top: 0;
  bottom: 0;
}

.menu-desktop {
  margin-top: 66px;
}

.menu-desktop > span {
  position: relative;
  cursor: pointer;
  color: var(--color-primary-90);
}

.menu-desktop > span:hover {
  color: var(--color-primary-100);
}

.menu-desktop > span::before,
.menu-desktop > span.active::before {
  content: "";
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: var(--color-primary-100);
  width: 0;
  left: 0;
}

.menu-desktop > span:hover::before {
  width: 100%;
  background-color: var(--color-primary-100);
}

.menu-desktop > span.active {
  font-weight: 500;
}

.menu-desktop > span.active:before {
  width: 100%;
  background-color: var(--color-primary-100);
}

.menu-container {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  right: 0;
}

.menu-container span.cta-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
}

#overlay-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 1;
  overflow: hidden;
}

/*
 * ====================================================================
 * NAV MOBILE
 * ====================================================================
 */
.nav-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 330px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: 9998;
  box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
}

.nav-mobile-link {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 330px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: 9999;
}

.nav-mobile.open,
.nav-mobile-link.open {
  transform: translateY(0);
  box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.1);
  display: inline;
}

.nav-mobile .link,
.nav-mobile-link .link {
  border-radius: 0px;
  padding: 12px 10px 12px 10px;
  border: 1px solid var(--color-primary-30);
  cursor: pointer;
}

.nav-mobile-link .link {
  display: block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.nav-mobile .links {
  overflow: auto;
  height: calc(100vh - 130px);
  padding: 0 20px 10px;
}

.nav-mobile-link .links {
  overflow: auto;
  height: calc(100vh - 75px);
  padding: 0 20px 10px;
}

/*
 * ====================================================================
 * SEARCH
 * ====================================================================
 */
.search-box {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.search-box .form-control {
  width: 100% !important;
}

/*
 * ====================================================================
 * ARTICLE
 * ====================================================================
 */
article p {
  font-weight: 300;
  line-height: 22.4px;
  font-size: 15px;
  color: var(--color-primary-100);
  margin-bottom: 20px;
}

article ul li p {
  margin-bottom: 10px;
}

article h2 {
  font-size: 23px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-primary-100);
}

/*
 * ====================================================================
 * ACCORDION
 * ====================================================================
 */
.accordion-item,
.accordion-item:first-of-type {
  border-right: 1px solid var(--color-primary-10);
  border-left: 1px solid var(--color-primary-10);
  border-top: 1px solid var(--color-primary-10);
  border-bottom: 1px solid var(--color-primary-10);
}

.accordion-button {
  font-size: 23px;
  font-weight: 600;
  line-height: 26px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary-100);
  background-color: #fff;
  box-shadow: none !important;
}

/*
 * ====================================================================
 * TABLE
 * ====================================================================
 */
table p {
  margin: 0;
}

table th p {
  font-weight: 500;
}

.table,
table {
  border-collapse: collapse;
  border-radius: 0;
  border-spacing: 0px;
  border-style: solid;
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%;
  border-width: 1px;
  border-color: #aec1cc;
}

.table > thead {
  background-color: rgb(231, 235, 238);
}

table th:not(:last-child),
table td:not(:last-child) {
  border-right: 1px solid rgb(174, 193, 204);
}

table th {
  padding: 12px 16px;
  color: var(--color-primary-90);
  font-size: 15px;
  line-height: 140%;
  font-weight: 500;
  border-color: rgb(174, 193, 204);
  border-bottom-width: 1px;
  background-color: rgb(231, 235, 238);
}

table > thead > tr:not(:last-child) > th,
table > thead > tr:not(:last-child) > td,
table > tbody > tr:not(:last-child) > th,
table > tbody > tr:not(:last-child) > td,
table > tfoot > tr:not(:last-child) > th,
table > tfoot > tr:not(:last-child) > td,
table > tr:not(:last-child) > td,
table > tr:not(:last-child) > th,
table > thead:not(:last-child),
table > tbody:not(:last-child),
table > tfoot:not(:last-child) {
  border-bottom: 1px solid rgb(174, 193, 204);
}

table > tbody > tr > td,
.table > tbody > tr > td {
  padding: 12px 16px;
  color: var(--color-primary-100);
  font-size: 15px;
  line-height: 140%;
  border-color: rgb(174, 193, 204);
  border-bottom-width: 1px;
}

/*
 * ====================================================================
 * BREADCRUMB
 * ====================================================================
 */
.breadcrumb a {
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 17px !important;
  color: var(--color-primary-75);
}

.breadcrumb.inverse .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.breadcrumb a.inverse {
  color: #fff;
}

.breadcrumb .breadcrumb-item.active span {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--color-primary-75);
}

.breadcrumb .breadcrumb-item.active span.inverse {
  color: #fff;
}

button.VueCarousel-dot--active {
  width: 30px !important;
  border-radius: 0px !important;
}

/*
 * ====================================================================
 * LANDING
 * ====================================================================
 */
h1.landing {
  font-size: 27px;
  font-weight: 600;
  line-height: 30.8px;
  color: var(--color-accent-75);
}

#landing-header-custom {
  font-size: 31px;
  font-weight: 700;
  line-height: 35px;
  color: #cf1d56;
}

.content-landing {
  font-size: 15px;
  font-weight: 300;
  line-height: 22.4px;
}

@media (min-width: 576px) {
  h1.landing {
    font-size: 52px;
    line-height: 59px;
  }
  .content-landing {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
  }
}
strong {
  font-weight: 600 !important;
}

a u strong {
  font-weight: 600 !important;
  color: #cf1d56;
}

.form-landing {
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1019607843);
}

.bg-landing {
  position: relative;
  background: linear-gradient(0deg, rgb(254, 249, 246) 0%, rgb(249, 244, 242) 100%);
}

.bg-landing img {
  height: 100%;
  position: relative;
}

.form-landing {
  position: relative;
}

@keyframes fakeScroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
.carousel-container {
  transition: transform 0.5s ease;
}

.animate-fake-scroll {
  animation: fakeScroll 1s ease;
}

.VueCarousel-navigation-button {
  font-size: 0 !important;
  /* nasconde il simbolo “<” o “>” */
  position: relative;
}

/* Freccia sinistra */
.VueCarousel-navigation-prev::after {
  content: "\f104";
  /* Unicode FA: chevron-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
}

/* Freccia destra */
.VueCarousel-navigation-next::after {
  content: "\f105";
  /* Unicode FA: chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
}

article h3 {
  font-size: 20px;
}

@media (min-width: 821px) {
  .bg-landing {
    height: 480px;
  }
  .bg-landing img {
    left: 0;
  }
  .form-landing {
    margin-top: -100%;
  }
}
blockquote {
  margin: 0 0 1rem;
  padding-left: 15px;
  border-left: 5px solid #f5f7f7;
}

blockquote p {
  margin: 0;
  font-size: 1rem;
}
