:root {
  --blue: #2196f3;
  --dark-blue: #1565c0;
  --darker-grey: #333;
  --grey-mid: #a8a8a8;
  --gold: #ffc107;
  --dark-grey: #5d5d5d;
  --grey: #dbdbdb;
  --light-grey: #f1f1f1;
  --green: #4caf50;
  --crimson: #d32f2f;
  --midnight-blue: #10002c;
  --black: black;
  --white: white;
  --slate-grey: #607d8b;
  --pink: #d81b60;
  --purple: #673ab7;
  --indigo: #3f51b5;
  --cyan: #00bcd4;
  --teal: #00bfa5;
  --lime: #cddc39;
  --orange: #f45a1e;
  --brown: #795548;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 33px;
}

h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}

h5, h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 22px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #3333338f;
  text-align: center;
  margin-top: 7px;
  font-size: 14px;
  line-height: 20px;
}

.button {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 11px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-block;
}

.button:hover {
  background-color: var(--dark-blue);
}

.button.w--current {
  background-color: #2e80b6;
}

.button.white {
  color: var(--darker-grey);
  background-color: #fff;
}

.button.white:hover {
  background-color: #ffffffc4;
}

.button.black {
  background-color: var(--darker-grey);
}

.button.black:hover {
  background-color: #000;
}

.button.black.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.button.full-width {
  background-color: #000000a8;
  border: 1px solid #fff;
  border-radius: 0;
  width: 100%;
  display: block;
}

.button.full-width:hover {
  background-color: #000;
}

.button.small {
  background-color: var(--blue);
  text-transform: uppercase;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 14px;
}

.button.small:hover {
  background-color: var(--dark-blue);
}

.button.tab {
  background-color: var(--grey-mid);
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover {
  background-color: #7e7e7e;
}

.button.tab.w--current {
  background-color: var(--blue);
}

.button.tab.w--current:hover {
  background-color: var(--dark-blue);
}

.button.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.navigation-link {
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.navigation-link:hover {
  color: var(--blue);
}

.navigation-link.white {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.navigation-link.white:hover {
  border-top: 2px solid #fff;
}

.navigation-link.white.w--current {
  color: var(--gold);
}

.navigation-bar {
  background-color: #fff;
}

.navigation-bar.dark {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navigation-bar.top {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 58px;
  margin-bottom: 124px;
}

.navigation-menu.left {
  float: left;
}

.navigation-menu.on-bottom {
  float: none;
  text-align: center;
}

.brand-text {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 400;
  line-height: 26px;
}

.brand-link {
  height: 60px;
  transition: opacity .2s;
}

.brand-link:hover {
  opacity: .66;
}

.brand-link.right {
  float: right;
}

.brand-link.on-top {
  float: none;
  text-align: center;
  display: block;
}

.brand-link.white {
  color: #fff;
}

.brand-link.left-spacing {
  color: #fff;
  margin-left: 15px;
}

.brand-link.left-spacing.w--current {
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-link.left {
  margin-left: 16px;
}

.section {
  background-color: #10002c;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  box-shadow: 0 0 6px #fff;
}

.section.centered {
  text-align: center;
}

.section.accent {
  background-color: #f3f3f3;
}

.section.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.hero-slider {
  background-color: #0000;
  height: 100vh;
}

.slide {
  background-color: var(--grey);
  background-image: linear-gradient(#00000075, #00000075), url('../images/Agenzia-funebre-a-Catania---Cattolica.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 82px;
  padding-left: 85px;
  padding-right: 85px;
}

.slide.two {
  background-color: var(--grey);
}

.slide.two.c {
  background-image: linear-gradient(#00000075, #00000075), url('../images/Onoranze-funebri-a-Catania---Agenzia-Cattolica.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.slide.two.c._3 {
  background-image: linear-gradient(#00000075, #00000075), url('../images/onoranze-funebri-Aci-Castello---Cattolica.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.header-section {
  background-color: var(--dark-grey);
  color: #fff;
  text-align: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.page-heading {
  text-shadow: 1px 1px 6px #000;
  margin-top: 0;
  margin-bottom: 11px;
  font-family: Open Sans, sans-serif;
}

.cta-section {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-section.centered {
  text-align: center;
}

.cta-section.centered-accented {
  color: #fff;
  text-align: center;
  background-color: #0000;
  background-image: linear-gradient(#000000b5, #000000b5), url('../images/Servizi-funebri-ad-Aci-Castello.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 40vh;
  display: flex;
}

.cta-heading {
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: 400;
}

.cta-heading.inline-block {
  text-transform: uppercase;
  margin-top: 0;
  margin-right: 13px;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  display: inline-block;
}

.align-right {
  text-align: right;
}

.white-box {
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}

.fixed-image-section {
  color: #fff;
  text-align: center;
  background-image: url('../images/Staff-Agenzia-funebre-Cattolica.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  padding: 200px 20px;
}

.hero-section {
  height: 100vh;
  padding-top: 250px;
}

.hero-section.centered {
  text-align: center;
}

.slider-navigation {
  font-size: 11px;
}

.slider-icon-circle {
  width: 50px;
  height: 50px;
  padding: 6px;
  font-size: 33px;
}

.hero-subheading {
  margin-bottom: 18px;
}

.hollow-button {
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}

.hollow-button.white {
  color: #fff;
  border-color: #fff;
}

.hollow-button.white:hover {
  color: #ffffffb8;
  border-color: #ffffffa3;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading.centered {
  text-align: center;
}

.main-container {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.form-label {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 13px;
}

.section-subheading.center {
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
}

.section-title-group {
  margin-bottom: 62px;
}

.section-title-group.centered {
  text-align: center;
}

.form-field {
  border: 1px solid #00000036;
  min-height: 41px;
  margin-bottom: 17px;
  margin-right: 1px;
  transition: box-shadow .15s;
  box-shadow: 0 0 0 1px #00000017;
}

.form-field:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.form-field.text-area {
  min-height: 110px;
}

.form-field.with-button {
  float: left;
  width: 75%;
  margin-bottom: 0;
}

.form-field._1 {
  background-color: #0000;
  border-color: #ffffff80;
  min-height: auto;
  font-size: 14px;
}

.form-field._1::placeholder {
  color: #ffffffa1;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 13px;
  line-height: 17px;
}

.picture-border {
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #0000001f;
}

.round-image {
  border-radius: 100px;
  margin-bottom: 13px;
}

.social-button {
  background-color: var(--blue);
  border-radius: 100px;
  margin-bottom: 8px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  transition: background-color .15s;
}

.social-button:hover {
  background-color: var(--dark-blue);
  opacity: 1;
}

.social-button.border {
  background-color: #0000;
  border: 1px solid #0000005c;
  padding: 6px;
}

.social-button.facebook {
  background-color: #3c5791;
}

.social-button.twitter {
  background-color: #29a9e8;
}

.social-button.red {
  background-color: #d11529;
}

.social-button.pink {
  background-color: #fc488f;
}

.social-button.pink2 {
  background-color: #ed1081;
}

.social-button.orange {
  background-color: #db4e34;
}

.social-button.vimeo {
  background-color: #1ebae7;
}

.social-button.linkdin {
  background-color: #1485c3;
}

.social-button.instagram {
  background-color: #4b769b;
}

.social-button.tumblr {
  background-color: #2e5270;
}

.social-button.webflow {
  background-color: #3278bd;
}

.social-button.medium {
  background-color: #549f63;
}

.social-icon-link {
  opacity: 1;
  padding: 3px;
  transition: opacity .15s;
}

.social-icon-link:hover {
  opacity: .5;
}

.profile-image {
  border-radius: 100px;
  margin-bottom: 15px;
}

.hero-with-nav {
  background-color: var(--grey);
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer.center {
  text-align: center;
}

.footer.centered-smaller {
  padding-top: 33px;
  padding-bottom: 33px;
}

.footer.accent {
  z-index: 9998;
  background-color: #000;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.footer.centered-accented {
  background-color: var(--light-grey);
  text-align: center;
}

.float-right {
  float: right;
}

.footer-text {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.link {
  color: var(--blue);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.link:hover {
  color: var(--dark-blue);
}

.footer-brand-text {
  color: #fff;
  text-shadow: 1px 1px 6px #000;
  font-size: 18px;
  line-height: 25px;
}

.sidemenu-wrapper {
  margin-left: 10px;
  padding-left: 20px;
}

.sidemenu-title {
  margin-bottom: 10px;
}

.sidemenu-link {
  color: #8f8f8f;
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  display: block;
}

.sidemenu-link:hover {
  color: var(--darker-grey);
}

.grid-image {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
}

.info-wrapper {
  margin-bottom: 14px;
}

.info-icon {
  float: left;
}

.info-text {
  margin-left: 34px;
}

.footer-link {
  color: #000000bd;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #3b99d9;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.hero-title-wrapper {
  margin-bottom: 155px;
}

.icon-left {
  float: left;
  color: #919191;
  padding: 6px;
}

.text-right {
  margin-left: 49px;
}

.left-navigation {
  float: left;
  background-color: var(--grey);
  width: 20%;
  height: 100vh;
}

.nav-link {
  text-align: center;
  padding: 7px 0;
  display: block;
}

.nav-menu {
  float: none;
}

.logo-link {
  float: none;
  text-align: center;
  margin-top: 216px;
  margin-bottom: 50px;
  display: block;
}

.content {
  float: left;
  width: 80%;
  overflow: hidden;
}

.social-footer {
  text-align: center;
  margin-top: 56px;
}

.grid-fours {
  float: left;
  width: 25%;
  padding: 10px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.flushed-grid {
  float: left;
  width: 25%;
}

.flushed-grid.thirds {
  width: 33.33%;
}

.flushed-grid.sixths {
  width: 16.66%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.success-wrapper {
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 31px;
}

.success-message {
  margin-bottom: 0;
}

.error-wrapper {
  background-color: var(--crimson);
  color: #fff;
  border-radius: 5px;
}

.error-message {
  margin-bottom: 0;
}

.social-link-wrapper {
  text-align: center;
}

.background {
  background-color: var(--grey);
}

.custom-container {
  background-color: #fff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.rich-text h1, .rich-text h3, .rich-text h5, .rich-text h4, .rich-text h6 {
  margin-top: 30px;
}

.image-column {
  text-align: center;
}

.content-column {
  padding-top: 42px;
}

.feature-column {
  text-align: center;
  padding: 30px 10px;
  box-shadow: 1px 1px 3px #000;
}

.waterfall-image-column {
  text-align: center;
}

.div-block {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.div-block-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.button-2 {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 6px #000;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 0;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.button-2:hover {
  background-color: #ffffff2e;
}

.button-2._1 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.div-block-3 {
  height: 60vh;
  padding: 0;
}

.row {
  height: 100%;
}

.column {
  filter: grayscale();
  background-image: url('../images/Agenzia-funebre-Aci-Castello---Cattolica.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  height: 100%;
}

.column-2 {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.div-block-4 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.text-block-2 {
  color: #000000b0;
  text-transform: uppercase;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.text-block-3 {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  line-height: 35px;
}

.text-block-3.white {
  color: #fff;
  text-shadow: 1px 1px 6px #000;
  margin-bottom: 15px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.div-block-5 {
  background-color: #000;
  width: 15%;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.div-block-6 {
  width: 60%;
}

.paragraph {
  color: #fff;
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 15px;
}

.paragraph.black {
  color: #000;
  text-align: left;
}

.text-block-3-copy {
  color: #000;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  line-height: 35px;
}

.row-2 {
  margin-bottom: 20px;
}

.heading {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.container-2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.button-2-copy {
  color: #000;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 20px;
  margin-top: 30px;
}

.button-2-copy:hover {
  background-color: #00000045;
}

.paragraph-copy {
  text-shadow: 1px 1px 6px #000;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
}

.paragraph-copy.neew {
  color: #fff;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.div-block-7 {
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.image {
  width: 30px;
  height: 30px;
}

.container-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-3-new {
  color: #fff;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  line-height: 35px;
}

.paragraph-new {
  color: #fff;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
}

.div-block-8 {
  height: 40vh;
}

.html-embed {
  width: 100%;
  height: 100%;
}

.paragraph-2 {
  color: #fff;
  text-shadow: 1px 1px 6px #000;
  font-size: 14px;
}

.column-3 {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 6px #000;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.heading-2 {
  color: #fff;
  text-shadow: 1px 1px 6px #000;
  font-size: 14px;
}

.heading-3 {
  font-size: 14px;
}

.div-block-9 {
  background-image: url('../images/Fotolia_50923979_Subscription_Monthly_M.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  height: 60vh;
  display: flex;
}

.div-block-10 {
  text-align: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-11 {
  background-color: #f5f6f9;
  padding: 100px 0;
}

.div-block-12 {
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 120px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.div-block-12.reversed {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.div-block-13 {
  z-index: 1;
  background-color: #000;
  border-radius: 8px;
  flex: none;
  width: 50%;
  margin-top: auto;
  margin-bottom: auto;
  padding: 64px 64px 56px;
  position: relative;
  left: 16.6666%;
}

.div-block-13._2 {
  left: auto;
  right: 16.6666%;
}

.image-2 {
  margin-bottom: 30px;
}

.container-4 {
  flex-wrap: wrap;
  margin-bottom: -120px;
  display: flex;
}

.div-block-14 {
  background-image: url('../images/carro-funebre.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 8px;
  flex: none;
  width: 66.666%;
  height: 560px;
}

.div-block-14._2b {
  background-image: url('../images/burocrazia-agenzia-funebre-cattolica.jpg');
  flex: none;
}

.div-block-14._3 {
  background-image: url('../images/WhatsApp-Image-2022-12-15-at-15.31.31-2.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
}

.container-5 {
  border-radius: 8px;
  flex-wrap: wrap;
  margin-bottom: -120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-4 {
  color: #fff;
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.div-block-15 {
  background-image: url('../images/WhatsApp-Image-2026-03-04-at-21.52.16-3.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.container-6 {
  text-align: center;
  background-color: #00000080;
  flex: 0 auto;
  padding: 15px;
}

.text-block-4 {
  color: #fff;
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
}

.text-block-4-copy {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
}

.navbar {
  background-color: #000;
  padding-right: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.brand {
  margin-left: 30px;
}

.nav-link-2 {
  color: #bbb;
  text-transform: uppercase;
  padding-left: 5px;
  padding-right: 5px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 12px;
  transition: all .6s;
}

.nav-link-2:hover {
  color: #fff;
  font-weight: 400;
}

.nav-link-2.w--current {
  color: #fff;
  font-weight: 700;
}

.dropdown-link {
  color: #bbb;
  text-align: center;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 12px;
}

.dropdown-link.w--current {
  color: #fff;
}

.dropdown-list {
  background-color: #000;
}

.dropdown-list.w--open {
  text-align: center;
  margin-left: -105px;
  overflow: scroll;
}

.div-block-16 {
  text-align: center;
  background-color: #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 180px;
  margin-left: -62px;
  display: flex;
  position: absolute;
  transform: rotate(270deg);
}

.text-block-5 {
  flex: 1;
  transform: rotate(270deg);
}

.text-block-6 {
  text-align: center;
  flex: 1;
  position: static;
}

.div-block-17 {
  text-align: center;
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-block-4-copy-copy {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
}

.text-block-4-copy-copyd {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.text-block-4-copy-copyd.blac {
  color: #000;
  margin-top: 20px;
  margin-bottom: 30px;
}

.image-3 {
  margin: 15px auto 100px;
  display: block;
}

.div-block-18 {
  text-align: center;
  transition: all .6s;
}

.div-block-18:hover {
  transform: scale(.9);
}

.text-block-7 {
  color: #fff;
  margin-top: 20px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.div-block-20 {
  background-image: url('../images/22773472_l.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 60vh;
}

.div-block-21 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.div-block-22 {
  text-align: left;
  background-color: #00000080;
  width: 30%;
  padding: 15px 20px;
}

.text-block-4-copy-copya {
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
}

.text-block-4-copya {
  color: #fff;
  text-align: left;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
}

.div-block-23 {
  background-color: #10002c;
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-18-copy {
  text-align: center;
  background-color: #000;
  padding: 20px;
  transition: all .6s;
  box-shadow: 0 0 6px #ffffffba;
}

.div-block-18-copy:hover {
  transform: scale(.9);
}

.row-3 {
  margin-bottom: 20px;
}

.text-block-4-copya-copy {
  color: #fff;
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
}

.image-3-copy {
  margin: 15px auto 10px;
  display: block;
}

.column-4 {
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.div-block-24 {
  height: 500px;
}

.text-block-4-copya-copy-copy {
  color: #fff;
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
}

.text-block-4-copya-copy-copyd {
  color: #fff;
  text-align: center;
  margin-bottom: 29px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-weight: 700;
}

.paragraph-2-copy {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 6px #000;
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 14px;
}

.div-block-25 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/auto-3.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 50vh;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.div-block-25-copy {
  background-image: url('../images/769.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  height: 50vh;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.div-block-26 {
  background-image: url('../images/Onoranze-funebri-cattolica.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 60vh;
}

.div-block-27 {
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.text-block-8 {
  color: var(--darker-grey);
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
}

.div-block-28 {
  background-color: var(--darker-grey);
  width: 8%;
  height: 2px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.paragraph-3 {
  text-align: justify;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.text-block-9 {
  margin-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 20px;
}

.image-4 {
  float: right;
  margin-top: 152px;
  transform: rotate(-90deg);
}

.row-4 {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.image-5 {
  text-align: center;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-29 {
  background-image: url('../images/funerale-a-Catania.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-attachment: fixed;
  height: 50vh;
}

.div-block-29.fotoceramica {
  background-image: url('../images/fiori-funerale.jpg');
}

.div-block-29.manifesti {
  background-image: url('../images/manifesti-a-lutto_1.jpg');
  background-position: 50% 100%;
}

.div-block-29.articoli {
  background-image: url('../images/fotoceramica.jpg');
  background-position: 50%;
}

.div-block-29.addobbi {
  background-image: url('../images/addobbi-floreali-a-catania---cattolica.jpg');
}

.div-block-29.necrologie {
  background-image: url('../images/necrologie.jpg');
  background-position: 50% 100%;
}

.div-block-29.casse-funebri {
  background-image: url('../images/casse-funebri-a-catania.png');
  background-position: 50%;
}

.div-block-29.inumazione {
  background-image: url('../images/inumazione-salma.jpeg');
  background-position: 50%;
  background-attachment: scroll;
}

.div-block-29.trasporto-funebre {
  background-image: url('../images/onoranze-funebri-a-catania.jpeg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
}

.div-block-29.disbrigo-pratiche {
  background-image: url('../images/disbrigo-pratiche-funerarie.jpg');
  background-position: 50%;
  background-attachment: fixed;
}

.div-block-30 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-30.privacy {
  padding-top: 150px;
  padding-bottom: 100px;
}

.row-5 {
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.row-5._2 {
  align-items: center;
}

.row-6 {
  margin-top: 30px;
}

.div-block-31 {
  background-color: #10002c;
  padding: 20px 10px;
}

.text-block-10 {
  color: #fff;
  text-align: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.column-5 {
  background-image: url('../images/articolo-funebre-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
}

.column-6 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.column-5-copy {
  background-image: url('../images/articolo-funebre-4.JPG');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
}

.column-5-2 {
  background-image: url('../images/srticolo-funebre-2.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
}

.column-5-nuovo {
  background-image: url('../images/addobbi-floreali-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
}

.column-5-nuovo.a {
  background-image: none;
  height: 0;
}

.column-5-a1 {
  background-image: url('../images/cassa1.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
}

.column-5-copy-copy {
  background-image: url('../images/articolo-funebre-4.JPG');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
}

.column-5-a2 {
  background-image: url('../images/cassa2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
  padding-left: 20px;
}

.column-5-a3 {
  background-image: url('../images/casse-funebri-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
}

.image-3-copyl {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.column-7 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-29-copy {
  background-image: url('../images/funerale-a-Catania.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-attachment: fixed;
  height: 50vh;
}

.div-block-29-copy.vestizione {
  background-image: url('../images/vestizione-salma.jpg');
  background-position: 0;
  background-attachment: scroll;
}

.div-block-29-copy.tumulazione {
  background-image: url('../images/tumulazione-a-catania.jpg');
  background-position: 50% -202px;
  background-attachment: fixed;
}

.div-block-29-copy.cremazione {
  background-image: url('../images/cremazione-a-catania.jpg');
  background-position: 50% -64px;
  background-attachment: fixed;
}

.paragraph-3-copy {
  text-align: justify;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.div-block-26-assistenza-post-mortem {
  background-image: url('../images/Assistenza-post-mortem-a-Catania---onoranze-funebri-Cattolica.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 60vh;
}

.div-block-parco-auto {
  background-image: url('../images/parco-auto-cattolics.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-attachment: fixed;
  height: 50vh;
}

.row-7 {
  margin-top: 40px;
}

.row-7.b {
  margin-top: 4px;
}

.column-8 {
  height: 300px;
  padding-left: 2px;
  padding-right: 2px;
}

.lightbox-link {
  cursor: pointer;
  background-image: url('../images/auto1-.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.lightbox-link:hover {
  transform: scale(1.02);
}

.lightbox-link._11 {
  background-image: url('../images/WhatsApp-Image-2022-12-15-at-15.31.31.jpeg');
}

.lightbox-link._14 {
  background-image: url('../images/WhatsApp-Image-2026-03-04-at-21.52.16-1.jpeg');
  background-position: 50% 100%;
}

.image-6 {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.lightbox-link-2 {
  cursor: pointer;
  background-image: url('../images/auto-2.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.lightbox-link-2:hover {
  transform: scale(1.02);
}

.lightbox-link-2._12 {
  background-image: url('../images/12.jpeg');
}

.lightbox-link-2._15 {
  background-image: url('../images/WhatsApp-Image-2026-03-04-at-21.52.16-2.jpeg');
  background-position: 50%;
  background-size: cover;
}

.lightbox-link-3 {
  cursor: pointer;
  background-image: url('../images/auto-3.jpg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.lightbox-link-3:hover {
  transform: scale(1.02);
}

.lightbox-link-3._13 {
  background-image: url('../images/WhatsApp-Image-2026-03-04-at-21.52.16-5.jpeg');
}

.lightbox-link-3._16 {
  background-image: url('../images/WhatsApp-Image-2026-03-04-at-21.52.16.jpeg');
  background-position: 50%;
}

.image-7 {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-11 {
  color: #fff;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.div-block-32 {
  background-color: #fff;
  width: 10%;
  height: 2px;
  margin: 10px auto 30px;
}

.div-block-33 {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.image-8 {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.div-block-34 {
  text-align: center;
  background-color: #10002c;
  padding: 20px;
}

.text-block-12 {
  color: #fff;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 13px;
}

.column-9 {
  border-right: 1px solid #ffffff2b;
}

.text-block-11-copy {
  color: #fff;
  margin-top: 30px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.paragraph-3-contstti {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.text-span {
  font-size: 50px;
}

.image-9 {
  float: right;
  transform: rotate(-90deg);
}

.div-block-35 {
  height: 60vh;
}

.row-8 {
  height: 100%;
}

.column-10 {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.column-11 {
  background-image: url('../images/trasporto-funebre.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.div-block-36 {
  text-align: center;
}

.image-10 {
  margin-bottom: 15px;
}

.row-9 {
  margin-top: 25px;
}

.image-11 {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.text-block-13 {
  color: #000;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 30px;
}

.div-block-37 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-12 {
  margin-bottom: 20px;
}

.div-block-15-copy {
  background-image: url('../images/RS726541_GettyImages-451637331.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.li {
  color: #fff;
}

.div-block-31-copy {
  background-color: #10002c;
  margin-top: 30px;
  padding: 20px 10px;
}

.heading-5, .paragraph-4 {
  display: none;
}

.column-5-copya {
  background-image: url('../images/articolo-funebre-3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
}

.column-5-copy-copya {
  background-image: url('../images/articolo-funebre-4.JPG');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
}

.container-18 {
  padding-left: 0;
  padding-right: 0;
}

.paragraph-3-copy-copy {
  text-align: justify;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}

.link-block-3 {
  width: 100%;
  text-decoration: none;
}

.div-block-48 {
  z-index: 9997;
  justify-content: center;
  display: block;
  position: fixed;
  inset: auto 1% 2% auto;
}

.div-block-49 {
  display: none;
}

.link-block-8, .link-block-8-copycent {
  z-index: 5;
  background-color: #1cb5ed;
  margin-right: 0;
  padding: 7px;
  position: static;
  inset: auto 4.5% 2% auto;
}

.html-embed-4 {
  z-index: 9998;
  display: inline-block;
  position: static;
  bottom: 2%;
  right: 1%;
}

.div-block-217 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.html-embed-6 {
  margin-right: 5px;
}

.button-3, .code-embed {
  margin-left: 10px;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

html.w-mod-js [data-ix="fade-left"] {
  opacity: 0;
  transform: translate(60px);
}

html.w-mod-js [data-ix="fade-right"] {
  opacity: 0;
  transform: translate(-60px);
}

@media screen and (max-width: 991px) {
  .hamburger-button:hover {
    color: var(--blue);
  }

  .hamburger-button.w--open {
    background-color: var(--darker-grey);
  }

  .hamburger-button.left {
    float: left;
  }

  .hamburger-button.white {
    color: #fff;
  }

  .hero-slider {
    height: 400px;
  }

  .form-wrapper.squeezed {
    padding-left: 10%;
    padding-right: 10%;
  }

  .left-navigation {
    float: none;
    width: 100%;
    height: auto;
  }

  .nav-link {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-menu {
    background-color: var(--darker-grey);
    padding: 17px;
  }

  .logo-link {
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
  }

  .content {
    width: 100%;
    height: auto;
  }

  .social-footer {
    margin-top: 0;
  }

  .content-column {
    padding-top: 0;
  }

  .container-6 {
    text-align: center;
  }

  .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .text-block-4-copy-copyd {
    text-align: center;
  }

  .text-block-7 {
    font-size: 12px;
  }

  .div-block-22 {
    width: 50%;
  }

  .text-block-10 {
    font-size: 12px;
  }

  .icon {
    color: #fff;
  }

  .nav-menu-2 {
    background-color: #000;
  }

  .div-block-48, .html-embed-4 {
    right: 2%;
  }
}

@media screen and (max-width: 767px) {
  .brand-link.on-top {
    float: left;
  }

  .brand-link.left-spacing {
    padding-left: 0;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slider {
    height: 528px;
  }

  .slide {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-section {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-heading {
    margin-bottom: 10px;
  }

  .form-wrapper.squeezed {
    padding-left: 0;
    padding-right: 9px;
  }

  .picture-border {
    margin-bottom: 13px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-fours {
    width: 33.33%;
  }

  .image-column {
    margin-bottom: 10px;
  }

  .content-column {
    text-align: center;
    margin-bottom: 13px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-12 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .div-block-12.reversed {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .div-block-13 {
    width: 80%;
    left: 0%;
  }

  .div-block-13._2 {
    right: 0%;
  }

  .div-block-14 {
    width: 80%;
  }

  .container-6 {
    text-align: center;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand {
    margin-left: 10px;
  }

  .nav-link-2 {
    text-align: center;
  }

  .text-block-4-copy-copyd {
    font-size: 22px;
    line-height: 25px;
  }

  .text-block-4-copy-copyd.blac {
    line-height: 40px;
  }

  .text-block-4-copya-copy-copy {
    font-size: 15px;
    line-height: 20px;
  }

  .text-block-8 {
    font-size: 25px;
  }

  .text-block-9 {
    font-size: 20px;
  }

  .row-4 {
    flex-direction: column;
  }

  .div-block-30.privacy {
    padding-top: 0;
    padding-bottom: 0;
  }

  .row-5 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-31 {
    margin-bottom: 5px;
  }

  .column-5-nuovo.a {
    height: auto;
  }

  .column-9 {
    border-right-style: none;
  }

  .div-block-35 {
    height: auto;
  }

  .column-10 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .column-11 {
    height: 400px;
  }

  .menu-button.w--open {
    background-color: #000;
  }

  .container-7 {
    padding-top: 50px;
  }

  .container-8, .container-9, .container-10, .container-11, .container-12 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-5-copya, .column-5-copy-copya {
    margin-bottom: 35px;
  }

  .container-13, .container-14, .container-15, .container-16, .container-17, .container-18, .container-19, .container-20, .container-21, .container-22, .container-23, .container-24 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-48 {
    z-index: 9997;
    width: 100%;
    display: flex;
  }

  .div-block-49 {
    display: flex;
  }

  .link-block-8 {
    background-color: var(--midnight-blue);
  }

  .link-block-8-copycent {
    background-color: var(--midnight-blue);
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .html-embed-4 {
    right: 3%;
  }

  .div-block-217 {
    flex-direction: column;
  }

  .html-embed-6 {
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .button.tab {
    margin-bottom: 9px;
  }

  .hero-slider {
    height: 550px;
  }

  .slide {
    padding-left: 53px;
    padding-right: 53px;
  }

  .footer.accent {
    padding-bottom: 55px;
  }

  .grid-fours {
    width: 50%;
  }

  .div-block-9 {
    height: 65vh;
    padding-top: 45px;
  }

  .div-block-12 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .div-block-12.reversed {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .div-block-13 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    position: static;
  }

  .div-block-14 {
    width: 100%;
    height: 300px;
  }

  .div-block-15 {
    height: 70vh;
  }

  .container-6 {
    text-align: center;
  }

  .text-block-4-copy {
    font-size: 20px;
  }

  .nav-link-2, .nav-link-2.w--current {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dropdown-link {
    text-align: left;
    padding-left: 10px;
    display: block;
  }

  .dropdown-list.w--open {
    margin-left: 0;
  }

  .text-block-4-copy-copyd {
    font-size: 20px;
    line-height: 30px;
  }

  .div-block-20 {
    height: auto;
  }

  .div-block-22 {
    width: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .text-block-4-copy-copya, .text-block-4-copya {
    text-align: center;
  }

  .row-3 {
    margin-bottom: 0;
  }

  .text-block-4-copya-copy-copy {
    font-size: 20px;
  }

  .div-block-27 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block-8 {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }

  .div-block-28 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .paragraph-3, .text-block-9 {
    text-align: center;
  }

  .image-4 {
    margin-top: 50px;
  }

  .row-4 {
    flex-direction: column;
    align-items: center;
  }

  .div-block-30 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-30.privacy {
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .row-5 {
    flex-direction: column;
    align-items: center;
  }

  .column-5-nuovo.a {
    height: auto;
  }

  .column-5-a1, .column-5-a2 {
    height: 150px;
  }

  .paragraph-3-copy {
    text-align: center;
  }

  .column-8 {
    margin-bottom: 4px;
  }

  .text-block-11 {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }

  .div-block-32 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .div-block-33 {
    flex-direction: column;
    justify-content: center;
  }

  .text-block-12 {
    text-align: center;
    font-size: 16px;
  }

  .column-9 {
    border-right-style: none;
  }

  .text-block-11-copy {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }

  .text-span {
    font-size: 35px;
    line-height: 40px;
  }

  .div-block-35 {
    height: auto;
  }

  .column-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .column-11 {
    height: 300px;
  }

  .navbar-2 {
    align-items: center;
    display: flex;
  }

  .icon {
    color: #fff;
  }

  .nav-menu-2 {
    background-color: #000;
  }

  .column-12, .column-13, .column-14, .column-15, .column-16, .column-17, .column-18, .column-19, .column-20, .column-21, .column-22, .column-23, .column-24 {
    margin-bottom: 10px;
  }

  .menu-button {
    margin-left: 10px;
  }

  .li {
    color: #fff;
    font-size: 12px;
  }

  .div-block-38 {
    z-index: 9999;
    background-color: #10002c;
    padding-bottom: 0;
    padding-right: 3.19px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .row-10 {
    display: flex;
  }

  .column-25 {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    display: flex;
  }

  .column-26 {
    border-left: 1px solid #fff;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    display: flex;
  }

  .link-block {
    width: 100%;
    height: 100%;
  }

  .link-block-2 {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .section-2 {
    padding-bottom: 50px;
  }

  .container-7 {
    padding-left: 10px;
  }

  .paragraph-3-copy-copy {
    text-align: center;
    font-size: 12px;
    line-height: 15px;
  }

  .div-block-48 {
    z-index: 9998;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    left: auto;
    right: auto;
  }

  .link-block-8, .link-block-8-copycent {
    background-color: #545454;
  }

  .html-embed-4 {
    right: 4%;
  }
}


