* {
  margin:0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

:root {
  font-size: 15px;
}

a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  height: 100%;
  background: linear-gradient(180deg, rgb(200,250,255), rgb(244,202,159));
  background-size: contain;
}

/* START HEADER (Mobile) */
header {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0em;
  z-index: 100;
  box-shadow: 0px 5px 25px black;
}

/* Start Logo (Mobile) */
.logocomplete {
  width: 100vw;
  display: flex;
  justify-content: start;
  align-items: center;
  background: linear-gradient(180deg, rgb(115,190,255), rgb(155,230,255), rgb(200,250,255)); /*originale-255,224,189*/
  padding-top: .7em;
  padding-left: 2em;
  margin-bottom: -1px;
}

.logotext {
  text-align: center;
}

.rmark {
  position: relative;
  top: -12px;
  left: 2px;
  font-size: .8rem;
}

.h1logo {
  font-family: 'Lobster Two', cursive;
  font-size: 1.8rem;
  word-spacing: 2px;
  font-weight: 600;
}

.adv {
  position: relative;
  top: -3px;
  left: -7px;
  font-family: 'Varela Round', sans-serif;
  font-size: .8rem;
}

.logoadz {
  position: relative;
  left: -11px;
  top: -2px;
}

/* End Logo (Mobile) */
/* Start Menu (Mobile) */

nav {
  background: linear-gradient(180deg, rgb(200,250,255), rgb(244,202,159));
  text-align: center;
}

.hamburger {
  width: 5.85rem;
  padding: 2em;
  padding-bottom: 1.4em;
  position: absolute;
  right: .1em;
  top: -.5em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: .5s;
}

.hamburger:active {
  transform: scale(.1);
}

.hamburgerinput {
  width: 100vw;
  opacity: 0;
}

@keyframes showNav {
  from {opacity: 0; height: 0;}
  to {opacity: 1; height: 14.8em;}
}

.hamburgerinput:checked ~ .menu {
  display: block;
  animation: showNav 151ms;
}

.xicon {
  width: 5.5rem;
  padding: 2em;
  position: absolute;
  right: .1em;
  top: -.5em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: .5s;
}

.xicon:active {
  transform: scale(.1);
}

.labelx,
.menu,
.hamburgerinput:checked ~ .label {
  display: none;
  animation: iconXshows .7s;
}

.hamburgerinput:checked ~ .labelx,
.hamburgerinput:checked ~ .menu {
  display: block;
}

.label,
.menu,
.hamburgericon:checked ~ .label {
  animation: iconXshows .7s;
}

@keyframes iconXshows {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.menu {
  width: 100vw;
  display: block;
  text-align: center;
  list-style: none;
  line-height: 2.7em;
  display: none;
  transition: .3s;
}

.menuitem {
  display: block;
  text-decoration: none;
  font-family: 'varela round', sans-serif;
  color: black;
  cursor: pointer;
  font-size: 1.5rem;
  transition: .3s;
  letter-spacing: .3px;
}

.item {
  transition: .2s;
}

.menuitem:hover {
  color: white;
  text-shadow: 2px 2px 5px black;
}

.item:active {
  transform: scale(.8);
  color: white;
  text-shadow: 2px 2px 5px black;
}

.current {
  color: white;
  text-shadow: 2px 2px 5px black;
}

.domandefrequenti {
  padding-bottom: .8em;
}
/* End Menu (Mobile) */
/* END HEADER (Mobile) */

/* START MAIN AREA (Mobile) */
main {
  width: 95vw;
  margin: auto;
  text-align: center;
  font-family: 'varela round', sans-serif;
}

@keyframes titolodomande {
  from {
    transform: translateY(-2.5em);
  }

  to {
    transform: translateY(0px);
  }
}

/* Start Titolo Domande (Mobile)  */
.titolodomande {
  width: 21em;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 3em;
  animation: titolodomande 1.7s;
  margin-bottom: 1.7em;
}

.domandetitle {
  font-size: 1.8rem;
}

.subtitledomande {
  text-align: center;
  font-size: 1.3rem;
}

.haideidubbi {
  margin-bottom: .7em;
  font-size: 1.3rem;
}

.abbiamorisposto {
  margin-bottom: .5em;
}
/* End Titolo Domande (Mobile) */

/* Start Index (Mobile) */
.sezioneindice {
  border: .5px solid black;
  padding: 1em .7em;
  background: lightblue;
}
.indice {
  text-align: left;
  font-size: 1.3rem;
  margin-left: .8em;
}

.listaindex {
  padding-left: 1em;
  text-align: left;
}

.listaindex li a {
  color: black;
}

.listaindex li {
  list-style-type: decimal;
  font-size: 1.1rem;
}

.index1, .index2 {
  margin-bottom: .4em;
}

/* End Index (Mobile) */

/* Start Domande Adozioni */
.hrdoposegmento {
  width: 85%;
  height: 1px;
  background: black;
  margin: auto;
  margin-top: 2.5em;
}


.domande {
  font-size: 1.3rem;
}

.nota {
  margin-top: 1.5em;
  padding: .7em .5em;
  color: rgb(215,50,50);
  border: 2px solid rgb(215,50,50);
  margin-bottom: 2em;
}

.notatitle {
  margin-bottom: .3em;
  font-size: 1.4rem;
}

.segmentodomandetitle {
  margin-top: 2em;
  font-size: 1.8rem;
  background: linear-gradient(90deg, rgba(0,215,50,.2), rgba(0,215,50,.5));
  padding: .3em;
}

.sezionedomanda {
  text-align: left;
  width: 93vw;
  margin: auto;
  margin-bottom: 2em;
}

.domanda {
  text-align: center;
  font-size: 1.4rem;
}

.vaianota {
  color: black;
}

.regolesuicaniegatti {
  text-align: center;
  font-size: 1.5rem;
}

.listadeino {
  padding-left: 1em;
}

.attenzioneleggere {
  text-align: center;
  color: rgb(215,50,50);
  border: 2px solid rgb(215,50,50);
  padding: .7em .3em;
}

.attenzionetitle {
  font-size: 1.5rem;
}

.listaregole {
  color: rgb(215,50,50);
}

.notasterilizzazione {
  margin-top: 2em;
  padding: .7em .5em;
  color: rgb(215,50,50);
  border: 2px solid rgb(215,50,50);
  margin-bottom: 2em;
}

.pseidavvero {
  font-size: 1.5rem;
}

.listadomandeseipronto {
  padding-left: 1.5em;

}

.listadomandeseipronto li {
  list-style: decimal;
  text-align: left;
}
/* End Domande Adozioni */

/* Start Domande Volontariato */
.segmentodomandavolontariato {
  margin-top: 1em;
  font-size: 1.8rem;
  background: linear-gradient(90deg, rgba(0,215,50,.2), rgba(0,215,50,.5));
  padding: .3em;
}

.listamansioni {
  padding-left: 1em;
}

/* End Domande Volontariato */

/*Start Altre Domande */
.segmentodomandaaltredomande {
  margin-top: 1em;
  font-size: 1.8rem;
  background: linear-gradient(90deg, rgba(0,215,50,.2), rgba(0,215,50,.5));
  padding: .3em;
}

.comeaiutarcilink {
  color: black;
}

.contattilink {
  color: black;
}

.linkpaginesocial {
  color: black;
}

.cosedafareeventi {
  padding-left: 1em;
}
/*End Altre Domande */

.tornaincima {
  color: black;
  font-size: 1.4rem;
}

.ptornaincima {
  margin-bottom: 1.5em;
}
/* END MAIN AREA (Mobile) */

/* START FOOTER */
footer {
  width: 100vw;
  padding-top: .5em;
  padding-bottom: 1em;
  font-family: helvetica, sans-serif;
  background: rgba(110,110,110,.5);
}

.logoesedefooter {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logofooter {
  text-align: center;
}

.amicifooter {
  font-family: 'Lobster Two', cursive;
  font-size: 2rem;
}

.rmarkfooter {
  font-size: 1.3rem;
  position: relative;
  top: -12px;
}

.advfooter {
  font-size: 1rem;
  position: relative;
  top: -2px;
  margin-bottom: .7em;
}

.sedeerestofooter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sedelegalefooter {
  text-align: center;
  font-family: helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: .3em;
}

.ibanfooter {
  text-align: center;
  font-size: 1rem;
  margin-bottom: .3em;
}

.codicefiscalefooter {
  text-align: center;
  font-size: 1rem;
}

/* Start Icone social (Mobile) */
.iconesocialweb {
  display: none;
}

.iconesocialmobile {
  width: 9em;
  margin: auto;
  display: flex;
  justify-content: space-around;
  margin-top: 1em;
}

.fbicon, .igicon {
  transition: .15s;
}

.fbicon:active {
  transform: scale(.8);
}

.igicon:active {
  transform: scale(.8);
}
/* End Icone social (Mobile) */
/* END FOOTER */