/* 
	Autore: Catapultista
	Cliente: Clinica Laponte
*/
a {
  text-decoration: none !important;
}

:root {
  --verde: #327683;
  --verde-chiaro: #86b3b9; /* oppure #2a646f al 40% */
  --grigio: #efefef;
  --marrone: #a67c52;
  --marrone-chiaro: #dab795;
  --beige: #f9f2ec;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --popup-bg: #ffffff;
  --text-dark: #101010;
  --cta-text: #101010;

  --sfondo: #d0e2e2;
  --titoli: #2a646f;
  --sfondi-num: #f5e8d7;
  --sott-riquadri: #c69c6d;
}

html {
  scroll-behavior: smooth;
}

/* html, body {
  overflow-x: hidden;
} */

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #222;
  cursor: auto;
  -webkit-animation: caricamento 1.5s ease-in-out forwards;
  -moz-animation: caricamento 1.5s ease-in-out forwards;
  -o-animation: caricamento 1.5s ease-in-out forwards;
  animation: caricamento 1.5s ease-in-out forwards;
}

@keyframes caricamento {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes caricamento {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes caricamento {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

*:focus,
*:hover {
  outline: none;
  outline-offset: unset;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

a.iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}

button.iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}

.the-content {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

.widget-social {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 30px;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.widget-social.show {
  z-index: 3;
  opacity: 1;
}

.widget-social img {
  width: 40px;
  transition: all 0.3s ease-in-out;
}

.widget-social .tel {
  width: 80px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.widget-social img:hover {
  filter: sepia(1);
}

.pre-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffffee;
  padding: 0 70px;
  top: 0;
  z-index: 9;
}

.pre-start .logo {
  padding: 20px 0px;
  transition: all 0.3s ease-in-out;
}

.pre-start .logo img {
  width: 200px;
  transition: all 0.3s ease-in-out;
}

.nav {
  display: block;
  padding: 100px 0px 100px 40px;
  transition: all 0.3s ease-in-out;
}

.nav ul {
  list-style: none;
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  column-gap: 28px;
  margin-bottom: 0;
  margin-top: 0;
}

.nav a {
  position: relative;
  color: var(--verde);
  padding: 10px 0px;
  font-size: 19px;
  font-weight: 600;
}

.nav .active a {
  color: var(--marrone);
}

.nav a:hover {
  color: var(--marrone);
}

.nav .has-sub-menu {
  position: relative;
  /* margin-right: 20px; */
}

/* .nav .has-sub-menu:before {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 6px;
  width: 6px;
  height: 6px;
  border: 2px solid var(--verde);
  border-radius: 50px;
  background: var(--verde);
  transition: background .3s ease-in-out;
}

.nav .has-sub-menu:hover:before {
  background: transparent;
} */

.nav .has-sub-menu > a {
  padding-bottom: 30px;
  cursor: default;
}

.nav .has-sub-menu > a:hover {
  color: var(--verde);
}

.nav .sub-menu li {
  line-height: 34px;
}

.nav .sub-menu a {
  color: #fff;
}

.sub-menu a:before {
  content: "";
  position: absolute;
  top: 21px;
  left: -6px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.sub-menu a:hover:before {
  opacity: 1;
}

.nav .sub-menu {
  position: absolute;
  top: 50px;
  padding: 20px 30px 20px 20px;
  display: list-item;
  pointer-events: none;
  opacity: 0;
  border-radius: 30px;
  z-index: 5;
  width: 340px;
  background: linear-gradient(to left, transparent 0%, var(--verde-chiaro) 100%)
      padding-box,
    linear-gradient(to left, transparent, var(--verde)) border-box;
  transition: all 0.3s ease-in-out;
}

.nav .has-sub-menu:hover .sub-menu {
  opacity: 1;
  pointer-events: initial;
}

.pre-start.sticky {
  position: sticky;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.pre-start.sticky .nav {
  padding: 50px 0px;
}

.pre-start.sticky .logo {
  padding: 10px 0px;
}

.pre-start.sticky .logo img {
  width: 220px;
}

h1,
h4 {
  font-weight: 300;
}

h1 strong {
  font-weight: 700;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 500;
}

.button {
  font-weight: 700;
}

.cta .button:hover {
  animation: animate-pulse-button 3s linear infinite;
  cursor: pointer;
}

@keyframes animate-pulse-button {
  0% {
    box-shadow: 0 0 0 0 #dab795cc, 0 0 0 0 #dab795cc;
  }
  40% {
    box-shadow: 0 0 0 20px rgba(255, 109, 74, 0), 0 0 0 0 #dab795cc;
  }
  80% {
    box-shadow: 0 0 0 20px rgba(255, 109, 74, 0),
      0 0 0 20px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 20px rgba(255, 109, 74, 0);
  }
}

footer {
  background: linear-gradient(135deg, #2f6e79 0%, #86b3b9 100%);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding: 60px 60px 40px 60px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 36px;
}

footer .info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

footer .contatti {
  width: 40%;
}

footer .indirizzo {
  display: block;
  font-weight: 700;
}

footer .tel {
  display: block;
}

footer .social a {
  padding: 5px 10px;
}

footer .social img {
  width: 60px;
}

footer a:hover {
  color: var(--beige);
}

catapultismo a {
  font-style: italic;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 11px;
  color: var(--nero);
  /* cursor: pointer !important; */
}

catapultismo a:hover {
  color: var(--nero);
}

catapultismo img {
  max-width: 25px;
  display: inline-block;
  margin-top: -3px;
  padding-left: 5px;
  animation-duration: 4s;
  animation-name: occhio-catapultista;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes occhio-catapultista {
  0% {
    transform: rotateX(0deg);
  }
  10% {
    transform: rotateX(90deg);
  }
  20% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

#mobile-menu {
  display: none;
}

.goto-top {
  position: fixed;
  bottom: 30px;
  right: 14px;
  cursor: pointer;
  background: var(--verde);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1.5px solid #fff;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.goto-top.show {
  z-index: 3;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.goto-top.show:hover {
  background: var(--verde-chiaro);
}

.hide-d {
  display: none;
}

catapultismo {
  display: block;
  margin-top: 20px;
}

catapultismo a {
  font-style: italic;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 11px;
  color: var(--nero);
  text-transform: initial;
}

catapultismo a:hover {
  color: var(--nero);
}

catapultismo img {
  max-width: 25px;
  display: inline-block;
  margin-top: -3px;
  padding-left: 5px;
  animation-duration: 4s;
  animation-name: occhio-catapultista;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes occhio-catapultista {
  0% {
    transform: rotateX(0deg);
  }
  10% {
    transform: rotateX(90deg);
  }
  20% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

/* Responsive */

@media (max-width: 1420px) {
  .pre-start {
    padding: 0 40px;
  }

  .pre-start .logo {
    padding: 20px 0px;
  }

  .pre-start .logo img {
    width: 220px;
  }

  .nav {
    padding: 60px 0px;
  }

  .nav ul {
    column-gap: 8px;
  }

  .nav a {
    font-size: 18px;
    padding: 10px;
  }
}

@media (max-width: 1200px) {
  .nav a {
    font-size: 16px;
    padding: 10px 4px;
  }
}

@media (max-width: 1024px) {
  .pre-start {
    padding: 0 20px;
  }

  .pre-start .logo {
    padding: 10px 0px;
  }

  .pre-start .logo img {
    width: 220px;
  }

  .nav ul {
    column-gap: 7px;
  }

  .nav a {
    font-size: 16px;
    padding: 10px 4px;
  }
}

@media (max-width: 950px) {
  .hide-d {
    display: block;
  }

  #mobile-menu {
    display: initial;
  }

  .pre-start {
    justify-content: center;
  }

  .pre-start.sticky {
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }

  .pre-start .logo {
    padding: 30px 0px;
  }

  .pre-start .logo img {
    width: 240px;
  }

  .pre-start.sticky .logo {
    padding: 10px 0px 5px 0px;
  }

  .pre-start.sticky .logo img {
    width: 220px;
  }

  .pre-start > .nav {
    display: none;
  }

  .widget-social {
    display: none !important;
  }

  footer {
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding: 50px 40px 40px 40px;
    font-size: 18px;
    line-height: 34px;
  }

  footer .contatti {
    width: 50%;
  }
}

@media (max-width: 480px) {
  #title-doc {
    font-size: 28px !important;
  }
  .pre-start.sticky {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  footer {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 30px;
    font-size: 17px;
    line-height: 32px;
  }

  footer .info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
  }

  footer .contatti {
    display: none;
  }

  footer .social {
    display: flex;
    flex-direction: row;
    column-gap: 16px;
    margin-bottom: 10px;
  }

  footer .social a {
    padding: 5px 0px;
  }

  footer .social img {
    width: 40px;
  }

  footer .policy,
  footer .copy {
    text-align: center;
    font-size: 14px;
    line-height: 22px;
  }

  footer .copy {
    margin-bottom: 10px;
  }

  footer catapultismo {
    margin-top: 15px;
    text-align: center;
    margin-bottom: 70px;
  }
}

@media (max-width: 375px) {
  #title-doc {
    font-size: 26px !important;
  }
  .pre-start.sticky {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .pre-start .logo img {
    width: 240px;
  }

  footer {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 20px;
    font-size: 16px;
    line-height: 30px;
  }

  footer .contatti {
    width: 100%;
  }

  footer .social img {
    width: 35px;
  }

  footer .policy,
  footer .copy {
    font-size: 13px;
    line-height: 22px;
  }
}
:root {
  --dark: #333;
  --light: #fff;
  --neutral: #f6f6f6;
  --neutral-dark: #d1d1d1;
  --color: #5607d7;
  --color-light: #941ed2;
  --color-dark: #2719cd;
}

.hero__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__wrapper>* {
  margin: 15px;
}

.hero__header {
  flex: 0 1 1px;
  padding-right: 50px;
  color: var(--dark);
  font-size: 8vmax;
}

.hero__phone {
  width: 300px;
  height: 630px;
  background: var(--light);
  background-color: #ffffff;
  border: 12px solid var(--dark);
  border-radius: 36px;
  position: fixed;
  overflow: hidden;
}

.menu__button {
  --x: -50%;
  --y: 0;
  --z: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--marrone);
  padding: 10px 18px 10px 20px;
  border-radius: 28px;
  border: none;
  color: var(--light);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate3d(var(--x), var(--y), var(--z));
  cursor: pointer;
  z-index: 105;
  transition: 0.15s cubic-bezier(0.33, 1, 0.53, 1);
}

.menu__button[hidden] {
  --y: 200%;
}

.menu__button div {
  display: flex;
  align-items: center;
  width: 12px;
  height: 12px;
  margin-right: 20px;
}

.menu__button div div {
  display: table;
  height: 1px;
  background: var(--light);
  box-shadow: 0 4px 0 var(--light), 0 -4px 0 var(--light);
}

.menu__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 100;
}

.menu__body {
  --x: 0;
  --y: 0;
  --z: 0;
  display: block;
  width: 100%;
  background: var(--light);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0px -9px 50px -30px black;
  font-family: "Montserrat", sans-serif;
  position: fixed;
  bottom: 0;
  z-index: 105;
  transform: translate3d(var(--x), var(--y), var(--z));
  transition: 0.2s cubic-bezier(0.33, 1, 0.53, 1);
}

.menu__body[hidden] {
  --y: 150%;
}

.menu__body>*:not(:last-child) {
  border-bottom: 2px solid var(--neutral);
}

.menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: var(--verde);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 18px;
}

.menu__header label div {
  width: 15px;
  height: 15px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  position: fixed;
  transform: rotate(5.5rad);
}

.menu__header label div:after {
  content: "";
  width: 2px;
  height: 10px;
  background: var(--dark);
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.menu__header p {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  white-space: nowrap;
}

.menu__header h3 {
  font-weight: normal;
}

.menu__header button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu__header button div {
  width: 15px;
  height: 3px;
  background: #333;
  position: fixed;
  transform: rotate(5.5rad);
}

.menu__header button div:before {
  content: "";
  width: 3px;
  height: 15px;
  background: #333;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0px 10px;
  font-weight: 500;
  font-size: 14px;
  overflow-x: auto;
}

.menu__links a {
  flex: 1 1 1px;
  padding: 10px 0px;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}

.menu__contact {
  display: flex;
  padding: 4px 0px;
}

.menu__contact svg {
  width: 100%;
  fill: var(--color);
}

.menu__contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  row-gap: 10px;
  padding: 5px 5px 0px;
  margin: 2px 5px 2px;
  color: #333;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.link-nav-mobile {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding: 10px 20px;
  color: var(--verde);
}

.link-nav-mobile a {
  font-size: 18px;
}

.menu__contact img {
  width: 40px;
}

.menu {
  font-size: 18px;
}

.menu-mobile {
  display: none;
  padding: 20px;
}
.menu-mobile:after {
  content: "\f394";
  font-family: "Ionicons";
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-25%);
}
.menu-dropdown-icon:before {
  content: '';
  cursor: pointer;
  position: absolute;
  left: 81px;
  top: 6px;
  background: #fff;
  border-style: solid;
  border-width: 10px 6px 6px 6px;
  border-color: var(--verde) transparent transparent transparent;
  transition: all .5s ease-in-out;
}

.menu-servizi.menu-dropdown-icon:before {
  left: 69px;
}
.menu-strutture.menu-dropdown-icon:before{
    left: 110px;
}
.menu-ofla.menu-dropdown-icon:before {
  left: 132px;
}
.menu-ofla.menu-dropdown-icon:before {
  left: 132px;
}
.menu-dropdown-icon.active:before {
  transform: rotateX(180deg);
  top: 0px;
}
.menu > ul {
  list-style: none;
  padding-left: 0;
  margin: 5px 0px 0px;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  padding: 20px;
  position: absolute;
  z-index: 99;
}
.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul:after {
  clear: both;
}
.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul > li > ul:after {
  clear: both;
}
.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}
.menu > ul > li > ul > li > ul > li a {
  border: 0;
}
.menu > ul > li > ul.normal-sub {
  width: 300px;
  padding: 10px 20px;
}

.menu-dropdown-icon:before {
  display: block;
}
.menu > ul > li {
  margin-bottom: 12px;
  padding-right: 5px;
}
.menu > ul > li > ul {
  position: relative;
}
.menu > ul > li > ul.normal-sub {
  width: 100%;
  position: absolute;
  background: #f7f7f7;
  padding-left: 30px;
}
.menu > ul > li > ul > li {
  width: 100%;
  margin-top: 10px;
}
.menu > ul > li > ul > li:first-child {
  margin: 0;
}
.menu > ul > li > ul > li > ul {
  position: relative;
}
.menu > ul > li > ul > li > ul > li {
  float: none;
}

.normal-sub li a.sub {
  font-style: italic;
  font-size: 17px;
}

.menu-servizi,
.menu-sintomi,
.menu-ofla,
.menu-eventi,
.menu-strutture {
  position: relative;
}
/* Clinica schema overrides */
.site-main {
  flex: 1;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  color: var(--verde);
}

.brand-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.menu__contact a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.widget-social {
  row-gap: 12px;
}

.widget-social img {
  width: 40px;
}

.widget-social .tel {
  width: 80px;
}

footer .social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cata-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 950px) {
  .brand-logo {
    width: 190px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 165px;
  }

  footer .social {
    justify-content: center;
  }
}
