/* inizio */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
.sitoAttuale {
  --blue: #0088b2;
  --red: #c13004;
  --green: #7a9638;
  --white: #fff;
  --gray: #c9ced2;
  --gray-dark: #414f5e;
  --black: #000;
  --gray-light: #eef2f5;
  --gray-medium: #848489;
  --blue-light: #00add1;
  --blue-dark: #006788;
  --nude: #f2f1ef;
  --nude-dark: #e8e5e2;
  --green-dark: #7a9638;
  --shadow: #b6b5b5;
  --primary: #0088b2;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
}

:root {
  font-size: 14px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  font-family: Lato, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

body * {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

address {
  font-style: normal;
}

.hideForMobile {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .hideForMobile {
    display: block;
  }
}

.hideForTablet {
  display: block;
}

@media only screen and (min-width: 600px) {
  .hideForTablet {
    display: none;
  }
}

.hidden {
  visibility: hidden;
  display: none;
}

button,
input[type=button] {
  cursor: pointer;
}

.button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all 60ms ease-in-out;
  transition: all 60ms ease-in-out;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  background-color: #00aed1;
  color: #ffffff;
  padding: 0 1em;
  min-height: 48px;
  border: 0;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.button:hover {
  background: #0088b2;
}

.button:active {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}

.button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #242f3a;
          box-shadow: 0 0 0 2px #242f3a;
}

.grow {
  width: 100%;
}

a:focus {
  outline-offset: 0.3em;
  outline-color: #00aed1;
  color: #00aed1;
}

a:focus::before {
  -webkit-filter: invert(50%) sepia(90%) saturate(2178%) hue-rotate(154deg) brightness(95%) contrast(101%);
          filter: invert(50%) sepia(90%) saturate(2178%) hue-rotate(154deg) brightness(95%) contrast(101%);
}

a:hover {
  color: #00aed1;
}

a:hover::before {
  -webkit-filter: invert(50%) sepia(90%) saturate(2178%) hue-rotate(154deg) brightness(95%) contrast(101%);
          filter: invert(50%) sepia(90%) saturate(2178%) hue-rotate(154deg) brightness(95%) contrast(101%);
}

.calendarBtn {
  height: 40px;
  border: 0;
  background-color: transparent;
  letter-spacing: inherit;
}

@media only screen and (max-width: 1023px) {
  .calendarBtn {
    position: absolute;
    right: 2%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0;
    width: 36px;
    padding: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .calendarBtn {
    position: relative;
    padding: 0 55px 0 20px;
  }
}

.calendarBtn::before {
  content: url(../img/addressGo.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 36px;
  height: 36px;
}

.calendarBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 36px;
  height: 36px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.38);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.38);
}

.calendarBtn:focus {
  outline: 2px solid #0088b2;
  outline-offset: 2px;
}

@media only screen and (max-width: 1023px) {
  .calendarBtn:active {
    color: #0088b2;
    -webkit-transform: translateY(-45%) translateX(3px);
            transform: translateY(-45%) translateX(3px);
  }
}

@media only screen and (min-width: 1024px) {
  .calendarBtn:active {
    color: #0088b2;
    -webkit-transform: translate(3px, 3px);
            transform: translate(3px, 3px);
  }
}

input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  bottom: 1px;
  margin-right: .3rem;
}

.input {
  font-size: inherit;
  line-height: 1.35rem;
  border: none;
  border-bottom: 2px solid #d8d8d8;
  padding: .9em 0.2em 0.2em 0.2em;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.38);
}

.input:focus {
  outline-color: #00aed1;
  padding: 1.2em 0 0.8em 0.8em;
}

.input:focus:not(:placeholder-shown):invalid {
  outline-color: rgba(0, 0, 0, 0.38);
}

.input:not(:placeholder-shown):invalid {
  color: rgba(0, 0, 0, 0.38);
  position: relative;
}

.input:valid {
  color: #00aed1;
}

.shadowMAN {
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
}

header.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 7px solid #00aed1;
  height: 10vh;
  max-height: 100px;
  max-width: 1290px;
  margin: 0 auto;
}

@media only screen and (max-width: 599px) {
  header.top {
    padding: 0 16px;
  }
}

@media only screen and (min-width: 600px) {
  header.top {
    padding: 0 26px;
  }
}

@media only screen and (max-width: 599px) {
  header.top .logo img {
    width: 164px;
    height: 23.944px;
  }
}

@media only screen and (min-width: 600px) {
  header.top .logo img {
    width: 254px;
    height: 37.084px;
  }
}

@media only screen and (min-width: 1024px) {
  header.top .logo img {
    width: 254px;
    height: 37.084px;
  }
}

header.top .tornare {
  letter-spacing: 0.75px;
  position: relative;
}

header.top .tornare::before {
  content: '';
  position: absolute;
  background-image: url(../img/left-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 2px;
  left: -22px;
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 599px) {
  .gridd {
    -ms-grid-columns: auto 96% auto;
        grid-template-columns: auto 96% auto;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: ". head ." "section section section" ". bottom .";
  }
}

@media only screen and (min-width: 1024px) {
  .gridd {
    -ms-grid-columns: auto 455px 495px auto;
        grid-template-columns: auto 455px 495px auto;
    -ms-grid-rows: 430px auto;
        grid-template-rows: 430px auto;
        grid-template-areas: ". head section ." ". head bottom .";
    gap: 50px;
  }
}

main.welcome {
  display: -ms-grid;
  display: grid;
  position: relative;
  width: 100%;
  height: 90vh;
  max-height: 700px;
      grid-template-areas: ". . ." ". main ." ". . .";
}

@media only screen and (max-width: 1023px) {
  main.welcome {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(rgba(249, 249, 249, 0)));
    background-image: linear-gradient(180deg, #f1f1f1, rgba(249, 249, 249, 0));
  }
}

@media only screen and (min-width: 1024px) {
  main.welcome {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(rgba(249, 249, 249, 0)));
    background-image: linear-gradient(180deg, #f1f1f1, rgba(249, 249, 249, 0));
  }
}

@media only screen and (min-width: 1280px) {
  main.welcome {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 241, 241, 0)), to(rgba(249, 249, 249, 0)));
    background-image: linear-gradient(180deg, rgba(241, 241, 241, 0), rgba(249, 249, 249, 0));
  }
}

@media only screen and (max-width: 599px) {
  main.welcome {
    -ms-grid-columns: 16px auto 16px;
        grid-template-columns: 16px auto 16px;
    -ms-grid-rows: 16px auto 16px;
        grid-template-rows: 16px auto 16px;
  }
}

@media only screen and (min-width: 600px) {
  main.welcome {
    -ms-grid-columns: 24px auto 24px;
        grid-template-columns: 24px auto 24px;
    -ms-grid-rows: 24px auto 24px;
        grid-template-rows: 24px auto 24px;
  }
}

main.welcome .appuntamento {
  width: 96%;
  max-width: 1370px;
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: main;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  text-align: center;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.5rem;
}

@media only screen and (max-width: 1023px) {
  main.welcome .appuntamento {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (min-width: 1024px) {
  main.welcome .appuntamento {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (min-width: 1280px) {
  main.welcome .appuntamento {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: rgba(255, 255, 255, 0);
  }
}

main.welcome .appuntamento::after {
  content: "";
  position: absolute;
  background-image: url(../img/bg-home.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (min-width: 1280px) {
  main.welcome .appuntamento::after {
    background-size: contain;
    background-position: right center;
  }
}

main.welcome h2 {
  font-size: 1em;
  color: #0088b2;
  text-transform: uppercase;
}

main.welcome h3 {
  color: #242f3a;
  font-weight: 900;
  width: 15ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.4em;
  margin-bottom: 0.8em;
}

@media only screen and (max-width: 599px) {
  main.welcome h3 {
    font-size: 2.45em;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  main.welcome h3 {
    font-size: 3em;
  }
}

@media only screen and (min-width: 600px) {
  main.welcome h3 {
    font-size: 4.3em;
  }
}

@media only screen and (min-width: 1280px) {
  main.welcome h3 {
    text-align: left;
    margin-left: 0;
  }
}

main.welcome form {
  width: 100%;
  max-width: 585px;
  background-color: #ffffff;
  padding: 0.8em;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1023px) {
  main.welcome form {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1023px) {
  main.welcome form {
    width: 80%;
  }
}

@media only screen and (min-width: 1024px) {
  main.welcome form {
    width: 60%;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (min-width: 1280px) {
  main.welcome form {
    margin: 0;
  }
}

main.welcome form input {
  margin-bottom: 6px;
  -webkit-transition: padding 100ms ease-in-out;
  transition: padding 100ms ease-in-out;
}

@media only screen and (max-width: 1023px) {
  main.welcome form input {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

@media only screen and (min-width: 1024px) {
  main.welcome form input {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 70%;
            flex: 1 0 70%;
    margin-right: 1rem;
  }
}

@media only screen and (max-width: 1023px) {
  main.welcome form button {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    width: 100%;
  }
}

main.welcome form:invalid button {
  position: relative;
}

main.welcome form:invalid button:hover::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  z-index: 20;
}

main.puntiVendita {
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f1f1f1));
  background-image: linear-gradient(180deg, #f9f9f9, #f1f1f1);
}

@media only screen and (max-width: 599px) {
  main.puntiVendita {
    padding: 0 0 2rem;
  }
}

@media only screen and (min-width: 600px) {
  main.puntiVendita {
    padding: 3rem 0;
  }
}

.puntiVendita__h2 {
  display: block;
  width: 100%;
  max-width: 1114px;
  height: 186px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-image: linear-gradient(135deg, #00aed1, #0088b2);
  color: white;
  font-size: 34px;
  position: relative;
}

.puntiVendita__h2::before {
  content: "";
  position: absolute;
  background-image: url(../img/place.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 75px;
  color: white;
  left: 0;
}

@media only screen and (max-width: 599px) {
  .puntiVendita__h2 {
    padding-right: 5rem;
    padding-left: 100px;
  }
  .puntiVendita__h2::before {
    width: 100px;
  }
}

@media only screen and (min-width: 600px) {
  .puntiVendita__h2 {
    padding-right: 4rem;
    padding-left: 170px;
  }
  .puntiVendita__h2::before {
    width: 170px;
  }
}

.puntiVendita__indirizzi {
  width: 100%;
  max-width: 1114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  margin: 3rem auto 0;
  color: #242f3a;
  letter-spacing: 0.5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.puntiVendita__indirizzi .puntiVendita__indirizzo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #242f3a;
  padding: 1.5rem 0;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .puntiVendita__indirizzi .puntiVendita__indirizzo {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

@media only screen and (min-width: 1024px) {
  .puntiVendita__indirizzi .puntiVendita__indirizzo {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.puntiVendita__indirizzi .puntiVendita__indirizzo h3 {
  padding-right: 2rem;
  font-size: 1rem;
  line-height: 1.2rem;
}

main.calendario {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem auto 2rem;
  width: 100%;
  padding: 2rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f1f1f1));
  background-image: linear-gradient(180deg, #f9f9f9, #f1f1f1);
}

@media only screen and (max-width: 1023px) {
  main.calendario {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

@media only screen and (min-width: 1024px) {
  main.calendario {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.calendario__dataDove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: linear-gradient(135deg, #00aed1, #0088b2);
  position: relative;
  color: white;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 1023px) {
  .calendario__dataDove {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .calendario__dataDove {
    width: 40%;
    max-width: 417px;
  }
}

.calendario__dataDove #rowentaDatapicker {
  width: 100%;
  background: red;
  position: relative;
}

.calendario__dataDove #rowentaDatapicker .calendario__button {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 136px;
  height: 33px;
  color: #0088b2;
  border: #0088b2;
  border-radius: 2px;
  background-image: url("../img/calendar.svg");
  background-position: 10% 50%;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  padding: .3rem 0 .3rem .7rem !important;
}

.calendario__dataDove #rowentaDatapicker .calendario__button:focus {
  outline: 2px solid white;
  outline-offset: 3px;
}

.calendario__dataDove #rowentaDatapicker .calendar-wrapper {
  position: absolute;
  top: 75px;
  left: 2rem;
  width: 348px;
  background: white;
  color: #242f3a;
  padding: .7rem;
  z-index: 2000;
  outline: solid 2px white;
  outline-offset: 3px;
}

.calendario__dataDove .calendario__header {
  position: relative;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 1023px) {
  .calendario__dataDove .calendario__header {
    margin: 9rem 0 6rem;
  }
}

@media only screen and (min-width: 1024px) {
  .calendario__dataDove .calendario__header {
    margin: 15rem 0 13rem;
  }
}

.calendario__dataDove .calendario__header span {
  display: block;
}

.calendario__dataDove .calendario__header span.dayOfMonth {
  font-size: 7.5rem;
  font-weight: 900;
}

.calendario__dataDove .calendario__header span.dayOfWeek {
  font-size: 2.12rem;
  font-weight: 400;
  text-transform: uppercase;
}

.calendario__dataDove .calendario__header .browseDay {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

.calendario__dataDove .calendario__header .browseDay:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 6px white;
          box-shadow: 0 0 0 6px white;
}

.calendario__dataDove .calendario__header .browseDay:active {
  -webkit-transform: translateX(3px) translateY(-45%);
          transform: translateX(3px) translateY(-45%);
}

.calendario__dataDove .calendario__header #oneDayLess {
  left: 5%;
}

.calendario__dataDove .calendario__header #oneDayMore {
  right: 5%;
}

.calendario__dataDove .calendario__header .on {
  opacity: 0.8;
}

.calendario__dataDove .calendario__header .off {
  opacity: 0.3;
  pointer-events: none;
}

.calendario__dataDove .calendario__indirizzo {
  margin-left: 5rem;
  margin-right: 5rem;
}

.calendario__dataDove h2 {
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
}

.calendario__dataDove h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -23px;
  width: 16px;
  height: 15px;
  background-image: url(../img/place.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.calendario__dataDove h3 {
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin: 0.8rem 0 0.3rem;
}

.calendario__dataDove address {
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.calendario__divOrari {
  width: 100%;
  background: white;
  padding: 1rem;
}

@media only screen and (min-width: 1024px) {
  .calendario__divOrari {
    width: 60%;
    max-width: 695px;
  }
}

.calendario__divOrari .calendario__listaOrari {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.calendario__divOrari .calendario__listaOrari .h4 {
  text-transform: uppercase;
  font-weight: 900;
  padding: 0.5rem 0 0.2rem 1.4rem;
}

.calendario__divOrari .calendario__listaOrari .pomeriggio {
  margin-top: 1rem;
}

.calendario__divOrari .calendario__listaOrari .calendario__itemOrario {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}

.calendario__divOrari .calendario__listaOrari .calendario__itemOrario:hover {
  cursor: pointer;
  background-color: rgba(0, 136, 178, 0.08);
}

@media only screen and (max-width: 1023px) {
  .calendario__divOrari .calendario__listaOrari .calendario__itemOrario {
    padding: 1.5rem 1.5rem;
  }
}

@media only screen and (min-width: 1024px) {
  .calendario__divOrari .calendario__listaOrari .calendario__itemOrario {
    padding: 0.5rem 1.5rem;
  }
}

.calendario__divOrari .calendario__listaOrari .inactive {
  background-color: rgba(0, 0, 0, 0.04);
  color: black;
  opacity: 0.3;
}

.calendario__divOrari .calendario__listaOrari .inactive:hover {
  cursor: not-allowed;
}

.calendario__divOrari .calendario__listaOrari .inactive .calendario__orario__tasto {
  color: black;
  -webkit-filter: saturate(1%);
          filter: saturate(1%);
  pointer-events: none;
}

.popupConferma {
  position: absolute;
  display: none;
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  place-items: center;
  background-color: rgba(36, 47, 58, 0.6);
}

.popupConferma .superClose {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
}

.popupConferma .container {
  max-width: 400px;
  background: white;
  position: relative;
  z-index: 1200;
}

.popupConferma .container .chiudere {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.5rem;
  border: 0;
  background-color: white;
}

.popupConferma .container .chiudere:focus {
  outline: none;
  -webkit-box-shadow: 0 0 3px 3px #0088b2;
          box-shadow: 0 0 3px 3px #0088b2;
  background-color: #242f3a;
  color: white;
}

.popupConferma .container .chiudere:active {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}

.popupConferma .container header {
  width: 100%;
  background-color: #0088b2;
  color: white;
  padding: 3rem;
  text-align: center;
}

.popupConferma .container header :is(.richiesta, .data, .ora, h3) {
  text-transform: uppercase;
}

.popupConferma .container header .data {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0 .3rem;
}

.popupConferma .container header .ora {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
}

.popupConferma .container header address {
  margin-top: .5rem;
}

.popupConferma .container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3rem 2rem;
  gap: 1.5rem;
  font-size: 1rem;
}

.showPopupConferma {
  display: -ms-grid;
  display: grid;
  visibility: visible;
  -webkit-animation: fadeIn 300ms;
          animation: fadeIn 300ms;
  opacity: 1;
}

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

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

.conferma, .standard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f1f1f1));
  background-image: linear-gradient(180deg, #f9f9f9, #f1f1f1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.conferma__container, .standard__container, .riscontro__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1023px) {
  .conferma__container, .standard__container, .riscontro__container {
    margin: 1rem auto;
    width: 92%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 1024px) {
  .conferma__container, .standard__container, .riscontro__container {
    margin: 1rem auto 0;
    padding: 2rem 0 1.5rem;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.conferma header.image, .standard header.image {
  background-image: url(../img/bg-home.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.conferma header, .standard header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
}

@media only screen and (max-width: 1023px) {
  .conferma header, .standard header {
    width: 100%;
    padding: 12rem 2rem 8rem 2rem;
  }
}

@media only screen and (min-width: 1024px) {
  .conferma header, .standard header {
    width: 60%;
    max-width: 695px;
    padding-left: 2rem;
    padding-right: 12rem;
  }
}

.conferma header small, .standard header small {
  font-size: 1.4rem;
  display: block;
  position: relative;
}

.conferma header small::before, .standard header small::before {
  content: "";
  position: absolute;
  background-color: red;
  background-image: url("../img/mail.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  left: 0;
  top: -130px;
}

.conferma header p, .standard header p {
  font-size: 2rem;
}

.conferma header p mark, .standard header p mark {
  background: none;
  font-weight: 900;
}

.conferma section, .standard section {
  width: 100%;
  background-image: linear-gradient(135deg, #00aed1, #0088b2);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2.2rem 1.5rem;
}

@media only screen and (min-width: 1024px) {
  .conferma section, .standard section {
    width: 40%;
    max-width: 417px;
    min-height: 460px;
  }
}

.conferma section h2, .standard section h2 {
  margin-top: 0;
  margin-bottom: auto;
  font-size: 2rem;
}

@media only screen and (max-width: 1023px) {
  .conferma section h2.riepilogo, .standard section h2.riepilogo {
    width: 35ch;
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1024px) {
  .conferma section h2.riepilogo, .standard section h2.riepilogo {
    width: 15ch;
    margin-bottom: auto;
  }
}

.conferma section h3, .standard section h3 {
  text-transform: uppercase;
  border-top: 2px solid rgba(0, 174, 209, 0.7);
  padding-top: 0.5rem;
  font-size: 0.9rem;
  color: #d8d8d8;
  margin: 0.8rem 0;
}

.conferma section .info, .standard section .info {
  font-size: 1.2rem;
  text-transform: uppercase;
  width: 90%;
  font-weight: 700;
}

.conferma section address, .standard section address {
  opacity: 0.8;
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.conferma section address:focus, .standard section address:focus {
  outline: 1px solid #d8d8d8;
  background: white;
  -webkit-box-shadow: 0 0 10px 10px white;
          box-shadow: 0 0 10px 10px white;
  color: #242f3a;
  outline-offset: 6px;
}

.keepExploring {
  width: 100%;
}

@media only screen and (max-width: 1023px) {
  .keepExploring {
    margin: 0 auto 2rem;
    width: 92%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 1024px) {
  .keepExploring {
    margin: 0 auto 2rem;
    padding: 0;
    width: 100%;
    max-width: 1110px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.keepExploring__button {
  background-color: #00aed1;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2em;
  border: none;
  padding: 1rem 0;
  letter-spacing: 0.5px;
  color: white;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .keepExploring__button {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 1024px) {
  .keepExploring__button {
    font-size: 1.6rem;
  }
}

.keepExploring__button:focus {
  outline: #00aed1 solid 3px;
  outline-offset: 5px;
}

.keepExploring__button:active {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}

.standard__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: white;
  line-height: 1.8em;
}

@media only screen and (max-width: 1023px) {
  .standard__content {
    width: 100%;
    padding: 3rem;
  }
}

@media only screen and (min-width: 1024px) {
  .standard__content {
    width: 60%;
    max-width: 695px;
    padding: 2rem 6rem 2rem 2rem;
  }
}

.standard__content p {
  margin-bottom: 0.8em;
}

@media only screen and (max-width: 599px) {
  .standard__container section {
    display: none;
  }
}

:is(.standard__content h1, .standard__content h2, .standard__content h3, .standard__content h4) {
  margin: 1em 0 0.5em;
}

.btn-cancellare-appuntamento {
  margin-top: 2rem;
}

.standard ul {
  list-style-type: disc;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

.standard ul li {
  padding: 0.2rem;
}

/* Riscontro */
.riscontro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f1f1f1));
  background-image: linear-gradient(180deg, #f9f9f9, #f1f1f1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.riscontro header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  text-align: center;
  color: #242F3A;
}

@media only screen and (max-width: 1023px) {
  .riscontro header {
    width: 100%;
    padding: 4rem 2rem;
  }
}

@media only screen and (min-width: 1024px) {
  .riscontro header {
    width: 60%;
    max-width: 695px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.riscontro header p {
  font-size: 2rem;
}

.riscontro header p mark {
  background: none;
  font-weight: 900;
}

.riscontro section {
  width: 100%;
  background-image: linear-gradient(135deg, #00aed1, #0088b2);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2.2rem 1.5rem;
}

@media only screen and (min-width: 1024px) {
  .riscontro section {
    width: 40%;
    max-width: 417px;
    min-height: 460px;
  }
}

.riscontro section h2 {
  margin-top: 0;
  margin-bottom: auto;
  font-size: 2rem;
}

@media only screen and (max-width: 1023px) {
  .riscontro section h2.riepilogo {
    width: 35ch;
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1024px) {
  .riscontro section h2.riepilogo {
    width: 15ch;
    margin-bottom: auto;
  }
}

.riscontro section h3 {
  text-transform: uppercase;
  border-top: 2px solid rgba(0, 174, 209, 0.7);
  padding-top: 0.5rem;
  font-size: 0.9rem;
  color: #d8d8d8;
  margin: 0.8rem 0;
}

.riscontro section .info {
  font-size: 1.2rem;
  text-transform: uppercase;
  width: 90%;
  font-weight: 700;
}

.riscontro section address {
  opacity: 0.8;
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.riscontro section address:focus {
  outline: 1px solid #d8d8d8;
  background: white;
  -webkit-box-shadow: 0 0 10px 10px white;
          box-shadow: 0 0 10px 10px white;
  color: #242f3a;
  outline-offset: 6px;
}

.riscontro__form {
  position: relative;
  margin: 3rem auto 2rem;
  overflow: hidden;
  /* HIDE RADIO */
  /* IMAGE STYLES */
  /* CHECKED STYLES */
}

.riscontro__form [type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.riscontro__form [type="radio"] + label img {
  cursor: pointer;
}

.riscontro__form [type="radio"]:checked + label img {
  outline: none;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.riscontro__form [type="radio"]:focus + label img {
  outline: none;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.riscontro__treFaccine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
  border: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.riscontro__treFaccine > * + * {
  margin-left: 20px;
}

.riscontro__treFaccine img {
  width: 80px;
  height: 80px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-radius: 50%;
  /* Tone down the animation to avoid vestibular motion triggers like scaling or panning large objects. */
}

@media (prefers-reduced-motion) {
  .riscontro__treFaccine img:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.riscontro__treFaccine img:active {
  outline: none;
}

.riscontro__treFaccine img:not(:hover):focus {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  outline: none;
  border: 5px solid #c9ced2;
}

.riscontro h1 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 8px;
}

.riscontro h2 {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 29px;
  font-weight: normal;
}

.riscontro .button {
  height: 48px;
  width: 370px;
  margin-top: 32px;
}

.riscontro .button:focus {
  outline: none;
  border: 0;
  background-color: #0088b2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

:is(.footerContatto, .footerContatto header) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 318px;
}

.footerContatto {
  width: 100%;
  color: white;
  font-size: 0.85rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-flow: column-reverse;
          flex-flow: column-reverse;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(42%, #006788), color-stop(1%, #0088b2));
  background-image: linear-gradient(90deg, #006788 42%, #0088b2 1%);
}

@media only screen and (min-width: 1024px) {
  .footerContatto {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.footerContatto header {
  background-color: #006788;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 599px) {
  .footerContatto header {
    width: 100%;
    padding-top: 2.2rem;
  }
  .footerContatto header :is(h3, p) {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .footerContatto header {
    width: 100%;
    padding-top: 2.2rem;
  }
  .footerContatto header :is(h3, p) {
    width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1024px) {
  .footerContatto header {
    width: 42vw;
    max-width: 588px;
    padding-top: 2.2rem;
  }
  .footerContatto header :is(h3, p) {
    width: 87%;
    margin: 0.5rem auto 0;
  }
}

.footerContatto header h3 {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
  font-weight: 800;
}

.footerContatto header p {
  font-size: 1.4rem;
  font-weight: 800;
}

.footerContatto header .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  border-radius: 2px;
}

.footerContatto ul {
  background-color: #0088b2;
  display: -ms-grid;
  display: grid;
  max-width: 812px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.footerContatto ul li {
  font-family: "Gotham SSm A", "Gotham SSm B", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 4.4rem;
  padding-left: 82px;
  padding-right: 2rem;
}

.footerContatto ul li h4 {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.footerContatto ul li h4::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  width: 39px;
  height: 28px;
  color: white;
}

.footerContatto ul li .riparabilita::before {
  background: url(../img/screwdriver.svg) center center no-repeat;
}

.footerContatto ul li .consegna::before {
  background: url(../img/big-truck.svg) center center no-repeat;
}

.footerContatto ul li .dal1909::before {
  background: url(../img/r-rowenta.svg) center center no-repeat;
}

.footerContatto ul li .aiuto::before {
  background: url(../img/aiuto.svg) center center no-repeat;
}

.footerContatto ul li p {
  line-height: 1.6em;
}

.footerContatto ul li a {
  text-decoration: underline;
}

.footerContatto ul li a:hover {
  color: #242f3a;
}

.footerContatto ul li a:focus {
  color: #d8d8d8;
  outline-offset: 2px;
  text-decoration: none;
}

@media only screen and (max-width: 599px) {
  .footerContatto ul {
    width: 100%;
    padding-bottom: 1rem;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .footerContatto ul li {
    padding-left: 64px;
    padding-right: 22px;
    padding-bottom: 1rem;
  }
  .footerContatto ul li h4::before {
    top: 0;
    left: -46px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .footerContatto ul {
    width: 100%;
    padding-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 1024px) {
  .footerContatto ul {
    width: 58vw;
  }
}

.footerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1290px;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  .footerNav {
    width: 90%;
    margin: 1rem auto;
  }
}

@media only screen and (min-width: 1024px) {
  .footerNav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3rem 3rem;
  }
}

.footerNav a {
  text-decoration: underline;
  font-size: 0.95em;
}

.footerNav a:hover {
  color: #0088b2;
}

@media only screen and (min-width: 1024px) {
  .footerNav ul {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
  }
  .footerNav ul li ul.sub:not(.subsocial) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
  }
}

.footerNav .h4 {
  color: #242f3a;
}

@media only screen and (max-width: 1023px) {
  .footerNav .h4 {
    margin: 1.5rem 0 1rem;
    font-weight: 900;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1024px) {
  .footerNav .h4 {
    margin: 0 0 2rem;
    font-size: 1.15em;
  }
}

.footerNav .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.4em;
}

.footerNav .social ul li a:hover img {
  -webkit-filter: invert(50%) sepia(90%) saturate(2178%) hue-rotate(154deg) brightness(95%) contrast(101%);
          filter: invert(50%) sepia(90%) saturate(2178%) hue-rotate(154deg) brightness(95%) contrast(101%);
}

@media only screen and (max-width: 1023px) {
  .sup {
    position: relative;
  }
  .sup .footerMobileButton {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 5%;
    top: -5px;
    right: 5px;
    /* ANIMATION */
  }
  .sup .footerMobileButton:hover, .sup .footerMobileButton:focus {
    outline: none;
  }
  .sup .footerMobileButton:hover div, .sup .footerMobileButton:focus div {
    background-color: #242f3a;
  }
  .sup .footerMobileButton:hover div::after, .sup .footerMobileButton:focus div::after {
    background-color: #242f3a;
  }
  .sup .footerMobileButton.open div::after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .sup .footerMobileButton.open ~ .sub {
    display: block;
  }
  .sup .footerMobileButton div,
  .sup .footerMobileButton div::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0088b2;
    border-radius: 4px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  .sup .footerMobileButton div::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .sup .h4 {
    border-bottom: 1px solid black;
    padding-bottom: 0.3rem;
  }
  .sup .sub {
    display: none;
  }
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.5rem 0;
  padding: 2rem 0;
  color: #242f3a;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-flow: column-reverse;
          flex-flow: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #c9ced2;
  border-bottom: 1px solid #c9ced2;
  line-height: 1.8em;
}

@media only screen and (min-width: 1024px) {
  .footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 0;
    margin: 0.5rem 0;
  }
}

@media only screen and (max-width: 599px) {
  .footer .logo img {
    width: 0px;
    height: 0px;
  }
}

@media only screen and (min-width: 600px) {
  .footer .logo img {
    width: 70px;
    height: 6.055px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer .logo img {
    width: 121px;
    height: 10.4665px;
  }
}

.footer .footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1024px) {
  .footer .footer__list {
    margin: 0 11rem;
  }
}

.footer .footer__list a {
  position: relative;
  font-size: 0.85rem;
  text-decoration: underline;
}

@media only screen and (max-width: 599px) {
  .footer .footer__list a:not(:first-of-type)::before {
    content: "\2022";
    color: #242f3a;
    font-size: 6px;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    left: -0.7rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
  }
}

@media only screen and (min-width: 600px) {
  .footer .footer__list a:not(:first-of-type):not(.noBullet)::before {
    content: "\2022";
    color: #242f3a;
    font-size: 6px;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    left: -0.7rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
  }
}

.footer .footer__list a:not(:last-of-type) {
  margin-right: 1.2em;
}

.footer .copyright {
  font-weight: 700;
}

@media only screen and (max-width: 599px) {
  .footer .copyright {
    font-size: 0.9em;
  }
}
/*# sourceMappingURL=styles.css.map */