@tailwind base;
@tailwind components;
@tailwind utilities;

/* SCROLLBAR */

::-webkit-scrollbar-track {
  background: #e5e7ed;
}

::-webkit-scrollbar-thumb {
  background: #eba652;
}

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

/* GENERAL */
body,
html {
  height: 100%;
}

body {
  background-color: #e5e7ed;
  font-family: "Heebo", sans-serif;
  padding: 24px;
  padding-bottom: 24px;
}

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

@layer components {
  h1 {
    @apply text-[56px];
    @apply leading-[60px];
    @apply font-bold;
  }
  h2 {
    @apply text-[44px];
    @apply leading-[48px];
    @apply font-medium;
  }
  h3 {
    @apply text-[32px];
    @apply leading-[36px];
  }
  h4 {
    @apply text-[24px];
    @apply leading-[28px];
    @apply font-medium;
  }
  p {
    @apply text-[16px];
    @apply font-light;
  }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
  h1 {
    @apply text-[48px];
    @apply leading-[52px];
  }
  h2 {
    @apply text-[36px];
    @apply leading-[40px];
  }
  h3 {
    @apply text-[20px];
    @apply leading-[24px];
  }
  h4 {
    @apply text-[20px];
    @apply leading-[24px];
  }
}

input[type="text"] {
  background-color: transparent;
  font-weight: 500;
  color: #8ca0ca;
  width: 100%;
  border-bottom: 1px solid #e5e7ed;
  padding-bottom: 12px;
  padding-top: 20px;
  outline: none;
}

textarea {
  background-color: transparent;
  font-weight: 500;
  color: #8ca0ca;
  width: 100%;
  border-bottom: 1px solid #e5e7ed;
  padding-bottom: 12px;
  padding-top: 20px;
  outline: none;
}

input[type="text"]::placeholder,
textarea::placeholder {
  font-weight: 200;
  font-size: 16px;
}

button[type="submit"] {
  background: #8ca0ca;
  width: 100%;
  border-radius: 100px;
  color: #414d69;
  font-weight: 500;
  font-size: 20px;
  padding: 12px 0px;
  border: 1px solid #fff;
  transition: 0.2s all linear;
}

button[type="submit"]:hover {
  background-color: #fff;
}

button[type="submit"]:hover .movearrow {
  animation: 0.48s ease-in-out arrow-move;
}

@media screen and (max-width: 768px) {
  button[type="submit"] {
    font-size: 16px;
  }
}

.icon-1,
.icon-2,
.icon-3 {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 28px;
  height: 3px;
  @apply bg-bludark;
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  border-radius: 100px;
}

.icon-1 {
  transform: translateY(-8px);
  animation-delay: 100ms;
  width: 16px;
  right: 28%;
  left: auto;
}

.icon-3 {
  transform: translateY(8px);
  animation-delay: 250ms;
}

.hamburger-icon {
  position: absolute;
  height: 60px;
  width: 60px;
  top: 50%;
  right: 0%;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transform: translate(0, -50%);
}

.icon-1.a {
  transform: rotate(40deg);
  width: 29px;
}

.icon-3.b {
  transform: rotate(-40deg);
}

.icon-2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

#nav {
  @apply bg-grigio;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  z-index: 51;
  opacity: 0;
  transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
  transition-delay: 350ms;
}

#nav ul {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  padding: 0px 50px;
}

#nav ul li {
  list-style: none;
  font-size: 24px;
  transition: margin 300ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
  @apply text-bludark;
  margin-bottom: 10px;
}

#nav ul a:hover {
  transition: margin 300ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
}

#nav.show {
  width: 100%;
  opacity: 1;
}

.dark-marrone {
  position: fixed;
  top: 0;
  right: 0;
  @apply bg-bludark;
  height: 100%;
  width: 0%;
  transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
  transition-delay: 550ms;
  z-index: 50;
  opacity: 1;
}

.dark-marrone.slide {
  width: 100%;
  opacity: 1;
  transition-delay: 200ms;
}

#menu ul li ul {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 0px 0px 16px 16px;
  padding: 16px;
}

#menu ul li ul li {
  margin-bottom: 12px;
}

#menu ul li:hover ul {
  display: block;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1px solid #fff;
  transition: 0.2s all linear;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
  background-color: #8ca0ca;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
  display: block;
}

.customcheck {
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 16px;
}

.customcheck .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.customcheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

footer {
  padding: 40px 48px 24px 40px;
}

footer p {
  color: #414d69;
  font-size: 14px;
}

.hero {
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
}

.hero h1,
.hero p {
  color: #fff;
}

.box-hero {
  margin-bottom: 100px;
  margin-left: 68px;
  position: relative;
  z-index: 11;
}

@media screen and (max-width: 768px) {
  .box-hero {
    margin-bottom: 44px;
    margin-left: 16px;
  }
}

.hero-small {
  height: 670px;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .hero-small {
    height: 480px;
  }
}

.button {
  color: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 20px;
  display: flex;
  align-items: center;
}

.button-small {
  color: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 20px;
  /* display:flex; */
  align-items: center;
}

@media screen and (max-width: 768px) {
  .button {
    font-size: 16px;
    line-height: 16px;
  }
  .button-small {
    font-size: 15px;
    line-height: 16px;
  }
}

.button-hero,
.button-transparent {
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.18s background ease-in;
}

.button .arrow-white,
.button-small .arrow-white {
  display: inline-block;
  margin-left: 12px;
  animation: 0.48s ease-in-out arrow-out;
}

.button-hero:hover {
  background-color: #fff;
  color: #414d69;
}

.button-hero:hover .arrow-blu {
  display: inline-block;
  margin-left: 12px;
  animation: 0.48s ease-in-out arrow-move;
}

.button-hero:hover .arrow-white {
  display: none;
}

.button-blu {
  background-color: #414d69;
}

.button-blu:hover {
  background-color: #fff;
  color: #414d69;
}

.button-blu:hover .arrow-white {
  display: none;
}

.button-blu:hover .arrow-blu {
  display: inline-block;
  margin-left: 12px;
  animation: 0.48s ease-in-out arrow-move;
}

.button-lightblu {
  background-color: #8ca0ca;
  color: #414d69;
  border: 2px solid #fff;
  display: inline-block;
  padding: 12px 24px;
}

@media screen and (max-width: 768px) {
  .button-lightblu {
    padding: 12px 18px;
  }
}

.button-lightblu:hover {
  background-color: #fff;
}

.button-lightblu .arrow-blu {
  display: inline-block;
  margin-left: 12px;
  animation: 0.48s ease-in-out arrow-out;
}

.button-lightblu:hover .arrow-blu {
  animation: 0.48s ease-in-out arrow-move;
}

.button-call .call-white {
  display: inline-block;
  margin-left: 12px;
}

.call-blu {
  width: 24px;
}

.button-call .call-blu {
  display: none;
}

.button-call:hover {
  background-color: #fff;
  color: #414d69;
  border: 2px solid #fff;
}

.button-call:hover .call-white {
  display: none;
}

.button-call:hover .call-blu {
  display: inline-block;
  margin-left: 12px;
}

.read_more_btn  {
  text-decoration: underline;
  font-weight: 600;
  @apply text-bludark;
}

.arrow-blu {
  display: none;
  width: 24px;
}

.arrow-simple {
  animation: 0.48s ease-in-out arrow-out;
}

.arrow-simple:hover {
  animation: 0.48s ease-in-out arrow-move;
}

@keyframes arrow-move {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  49% {
    opacity: 0;
    transform: translateX(100%);
  }
  51% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes arrow-out {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  49% {
    opacity: 0;
    transform: translateX(-100%);
  }
  51% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.overlay {
  background: rgb(65, 77, 105);
  background: -moz-linear-gradient(90deg, rgba(65, 77, 105, 0.6012998949579832) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(65, 77, 105, 0.6012998949579832) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(65, 77, 105, 0.6012998949579832) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#414d69",endColorstr="#ffffff",GradientType=1);
  border-radius: 16px;
}

#bg_home {
  background-image: url("../img/page/home/centro_fisiomedical.webp");
}

#bg_fisioterapia {
  background-image: url("../img/page/fisioterapia/clinica_di_fisioterapia.webp");
}

#bg_riabilitazione {
  background-image: url("../img/page/riabilitazione/centro_riabilitativo.webp");
}

#bg_diagnostica {
  background-image: url("../img/page/diagnostica/riabilitazione_sfinterica.webp");
}

#bg_piscinariabilitativa {
  background-image: url("../img/page/piscina/piscina_fisioterapica.webp");
}

#bg_palestrariabilitativa {
  background-image: url("../img/page/palestra/palestra_riabilitazione.webp");
}

#bg_ilcentro {
  background-image: url("../img/page/ilcentro/centro_fisiomedical.webp");
}

#bg_fisioterapiamanuale {
  background-image: url("../img/page/fisioterapia_manuale/terapia_manuale.webp");
}

#bg_fisioterapiastrumentale {
  background-image: url("../img/page/fisioterapia_strumentale/fisioterapia_strumentale.webp");
}

#menu ul {
  display: flex;
  align-items: center;
}

#menu ul li .menu {
  font-size: 14px;
  color: #414d69;
  margin: 0px 10px;
  position: relative;
  font-weight: 300;
  transition: 0.2s all linear;
}

#menu ul li .menu:after {
  content: "";
  border-bottom: solid 3px #eba652;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: -3px;
  border-radius: 100px;
}

#menu ul li .menu:hover:after {
  transform: scaleX(1);
}

#menu ul li .menu:hover {
  font-weight: 500;
}

.box-servizi {
  background-position: center;
  background-size: cover;
}

#bg-box-fisioterapia {
  background-image: url("../img/page/home/fisiomedical_viareggio.webp");
}

#bg-box-riabilitazione {
  background-image: url("../img/page/home/fisiomedical_versilia.webp");
}

#bg-box-diagnostica {
  background-image: url("../img/page/home/centro_fisioterapia_versilia.webp");
}

#bg-box-fisioterapia-strumentale {
  background-image: url("../img/page/fisioterapia/centro_di_fisioterapia_e_riabilitazione.webp");
}

#bg-box-fisioterapia-manuale {
  background-image: url("../img/page/fisioterapia/fisioterapia_centro.webp");
}

#bg-box-studimedici {
  background-image: url("../img/page/home/riabilitazione_ortopedica_viareggio.webp");
}

#bg-box-radiografia {
  background-image: url("../img/page/diagnostica/riabilitazione_del_pavimento_pelvico.webp");
}

#bg-box-risonanza {
  background-image: url("../img/page/diagnostica/riabilitazione_pelvica.webp");
}

#bg-box-ecografia {
  background-image: url("../img/page/diagnostica/riabilitazione_urogenitale.webp");
}

#bg-box-risonanza-magnetica-v8 {
  background-image: url("../img/page/diagnostica/terapia_pelvica.webp");
}

#bg-box-riabilitazione-ortopedica {
  background-image: url("../img/page/riabilitazione/terapia_riabilitativa.webp");
}

#bg-box-riabilitazione-neurologica {
  background-image: url("../img/page/riabilitazione/trattamento_riabilitativo.webp");
}

#bg-box-incrementoforza {
  background-image: url("../img/page/riabilitazione/centro_medico_riabilitativo.webp");
}

#bg-box-riabilitazione-acqua {
  background-image: url("../img/page/riabilitazione/centri_di_riabilitazione_motoria.webp");
}

#bg-box-riabilitazione-oncologica {
  background-image: url("../img/page/riabilitazione/clinica_riabilitazione.webp");
}

#bg-box-riabilitazione-pavimento-pelvico {
  background-image: url("../img/page/riabilitazione/terapia_e_riabilitazione.webp");
}

#bg-box-riabilitazione-cardiologica {
  background-image: url("../img/page/riabilitazione/trattamento_riabilitativo_viareggio.webp");
}

#bg-box-riabilitazione-respiratoria {
  background-image: url("../img/page/riabilitazione/riabilitazione_versilia.webp");
}

#bg-box-radiografia-rx {
  background-image: url("../img/page/diagnostica/radiografia-rx.webp");
}

#bg-box-risonanza-magnetica-articolare {
  background-image: url("../img/page/diagnostica/risonanza-magnetica-articolare.webp");
}

#bg-box-contatti {
  background-image: url("../img/page/contatti/contatti.webp");
}

#bg-box-tecnologie {
  background-image: url("../img/page/ilcentro/fisiomedical_versilia.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 650px;
}

#bg-box-about-1 {
  background-image: url("../img/page/ilcentro/centro_fisiomedical_foto_1.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg-box-about-2 {
  background-image: url("../img/page/ilcentro/centro_fisiomedical_foto_2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg-box-about-3 {
  background-image: url("../img/page/ilcentro/centro_fisiomedical_foto_3.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg-piscina-riabilitativa-2 {
  background-image: url("../img/page/piscina/piscina_riabilitazione.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  background-position: center;
}

#bg-palestra-riabilitativa-2 {
  background-image: url("../img/page/palestra/palestra_riabilitazione_fisiomedical.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #bg-piscina-riabilitativa-2 {
    height: 320px;
  }
  #bg-palestra-riabilitativa-2 {
    height: 320px;
  }

  #bg-box-tecnologie {
    height: 320px;
  }
}

#bg-mondodonna {
  background-image: url("../img/page/home/palestra_riabilitativa_versilia.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 570px;
}

#bg_pavimento_pelvico {
  background-image: url("../img/page/riabilitazione_pavimento/fisiokinesiterapia_pavimento_pelvico.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilitazione_pavimento_2 {
  background-image: url("../img/page/riabilitazione_pavimento/riabilitazione_pelvica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilitazione_pavimento_3 {
  background-image: url("../img/page/riabilitazione_pavimento/fisioterapia_pelvica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilitazione_ortopedica {
  background-image: url("../img/page/riabilitazione_ortopedica/riabilitazione_ortopedica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilitazione_ortopedica_2 {
  background-image: url("../img/page/riabilitazione_ortopedica/centro_riabilitazione_ortopedica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_neurologica {
  background-image: url("../img/page/riabilitazione_neurologica/centri_riabilitazione_neurologica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_neurologica_2 {
  background-image: url("../img/page/riabilitazione_neurologica/riabilitazione_neurologica_fisioterapia.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilitazione_acqua {
  background-image: url("../img/page/riabilitazione_acqua/fisioterapia_acqua.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilitazione_acqua_2 {
  background-image: url("../img/page/riabilitazione_acqua/riabilitazione_in_acqua.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilizazione_oncologica {
  background-image: url("../img/page/riabilitazione_oncologica/riabilitazione_oncologica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_riabilizazione_oncologica_2 {
  background-image: url("../img/page/riabilitazione_oncologica/centro_riabilitazione_oncologica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_cardiologica {
  background-image: url("../img/page/riabilitazione_cardiologica/riabilitazione_cardiologica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_cardiologica_2 {
  background-image: url("../img/page/riabilitazione_cardiologica/riabilitazione_cuore.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_respiratoria_2 {
  background-image: url("../img/page/riabilitazione_respiratoria/centro_riabilitazione_respiratoria.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_respiratoria {
  background-image: url("../img/page/riabilitazione_respiratoria/riabilitazione_respiratoria.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_incremento_forza {
  background-image: url("../img/page/incremento_forza/riabilitazione_sportiva.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_incremento_forza_2 {
  background-image: url("../img/page/incremento_forza/centro_riabilitazione_sportiva.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_fisioestetica {
  background-image: url("../img/page/fisioestetica/fisioterapia_e_estetica.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_fisioestetica_2 {
  background-image: url("../img/page/fisioestetica/trattamenti_fisioestetici.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_mastectomia_2 {
  background-image: url("../img/page/riabilitazione_mastectomia/fisioterapia_dopo_mastectomia.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_mastectomia {
  background-image: url("../img/page/riabilitazione_mastectomia/mastectomia_fisioterapia.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_acquamotricita_2 {
  background-image: url("../img/page/acquamotricita/piscina_in_gravidanza.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_acquamotricita {
  background-image: url("../img/page/acquamotricita/corsi_in_acqua_per_gestanti.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg_piscina_multi {
  background-image: url("../img/page/acquamotricita/percorso_riabilitazione.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bg-studio-medico {
  background-image: url("../img/page/home/fisioterapia_sportiva_versilia.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
}

@media screen and (max-width: 768px) {
  #bg-studio-medico {
    height: 420px;
  }
  #bg-mondodonna {
    height: 320px;
  }
}

#lista-mondodonna li a {
  font-size: 24px;
  color: #414d69;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #414d69;
  padding-bottom: 8px;
  padding-top: 32px;
  transition: 0.2s all linear;
}

@media screen and (max-width: 768px) {
  #lista-mondodonna li a {
    font-size: 20px;
  }
}

#lista-mondodonna li a:hover {
  color: #8ca0ca;
}

/* ACCORDION 2 */

.collapse2 {
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity, height, width;
  will-change: opacity, contents;
  visibility: visible;
}

.collapse2:not(.is-active) {
  height: 0;
  opacity: 0;
}

.accordion2 {
  width: 100%;
}

.accordion2 .card2 {
  overflow: hidden;
  margin: -1px -1px 1px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: contents;
  text-align: left;
  padding-top: 20px;
  padding-bottom: 8px;
  width: 100%;
  border-radius: 10px;
  border-bottom: 1px solid #8ca0ca;
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  .accordion2 .card2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.accordion2 .card2.is-active .card__title2 {
  color: #eba652;
}

.label-accordion-2 {
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: border-image, opacity, margin-top;
  border-image-slice: 1;
  width: 100%;
  opacity: 0;
  margin-top: 0;
}

.accordion2 .card2.is-active .label-accordion-2 {
  opacity: 1;
  margin-top: 10px;
}

.accordion2 .card__title2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.5rem;
  margin: 0;
  margin-bottom: -1px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.prenota-visita-title {
  font-size: 32px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .accordion2 .card__title2 {
    font-size: 16px;
  }

  .box-dettaglio {
    height: 320px !important;
  }

  .prenota-visita-title {
    font-size: 32px;
  }
}

.accordion2 .card__title2:hover {
}

.accordion2 .card__title2:hover .icon {
  opacity: 0.8;
}

.icon-minus {
  width: 24px;
}

.accordion2 .card2.is-active img {
  transform: rotate(90deg);
}

.button-filter {
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  @apply text-bludark;
  padding: 8px 16px;
  border-radius: 100px;
}

.button-filter-active {
  @apply bg-bludark;
  @apply text-bianco;
}

.collapse3 {
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity, height, width;
  will-change: opacity, contents;
  visibility: visible;
}

.collapse3:not(.is-active) {
  height: 0;
  opacity: 0;
}

.accordion3 {
  width: 100%;
}

.accordion3 .card3 {
  overflow: hidden;
  margin: -1px -1px 1px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: contents;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 10px;
}

.accordion3 .card3 img {
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion3 .card3.is-active img {
  transform: rotate(90deg);
}

.accordion3 .card3.is-active a {
  @apply text-giallo;
  -webkit-text-stroke: 0px !important;
}

.sottomenu a {
  @apply !text-bludark;
}

.label-accordion-3 {
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  opacity: 0;
  margin-top: 0;
}

.accordion3 .card3.is-active .label-accordion-3 {
  opacity: 1;
  margin-top: 10px;
}

.accordion3 .card__title3 {
  text-decoration: none;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #414d69;
  @apply text-bludark;
}

@media (max-width: 768px) {
  .accordion3 .card__title3 {
    font-size: 24px;
  }
}

.accordion3 .card__title3 .icon {
  width: 36px;
  height: 25px;
  opacity: 1;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity, width;
  margin-right: -0.25rem;
}

.accordion3 .card__content3 {
  padding: 1rem 0;
}

.card3 {
  display: none;
}

.accordion3 .card3:nth-child(1) {
  display: block;
}
.accordion3 .card3:nth-child(2) {
  display: block;
}
.accordion3 .card3:nth-child(3) {
  display: block;
}
.accordion3 .card3:nth-child(4) {
  display: block;
}
.accordion3 .card3:nth-child(5) {
  display: block;
}
