@font-face {
  font-family: "ABBvoice";
  src: url("../font/abbvoice-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABBvoice";
  src: url("../font/abbvoice.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABBvoice";
  src: url("../font/abbvoice-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABBvoice";
  src: url("../font/abbvoice-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "ABBvoice", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: "ABBvoice", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 0 48px;
  }
}

.section {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
.section--gray {
  background-color: #f5f5f5;
}

.split {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}
.split__right p {
  color: #000000;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: #000000;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
}

h3 {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
}

.section__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 40px;
}

.highlight-underline {
  color: #FF000F;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-red {
  color: #FF000F;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF000F;
  font-weight: 500;
  font-size: 14px;
  transition: gap 0.25s ease;
}
.link-arrow:hover {
  gap: 10px;
}
.link-arrow {
  justify-content: flex-end;
}

.acc-link {
  color: #FF000F;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13.5px;
}
.acc-link:hover {
  text-decoration: none;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 16px;
  color: #000000;
  font-size: 14.5px;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 10px;
}
.bullet-list li:last-child {
  border-bottom: none !important;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background-color: #FF000F;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 3px;
  font-family: "ABBvoice", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.btn--primary {
  background-color: #FF000F;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(214.2, 0, 12.6);
}
.btn--dark {
  background-color: #000000;
  color: #ffffff;
}
.btn--dark:hover {
  background-color: rgb(30.6, 30.6, 30.6);
}
.btn--newsletter {
  background-color: #FF000F;
  color: #ffffff;
  white-space: nowrap;
}
.btn--newsletter:hover {
  background-color: rgb(214.2, 0, 12.6);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 32px;
}
@media (min-width: 768px) {
  .site-header .header-inner {
    padding: 0 40px;
  }
}
@media (min-width: 1280px) {
  .site-header .header-inner {
    padding: 0 48px;
  }
}

.site-logo {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.main-nav {
  display: none;
  flex: 1;
  height: 100%;
}
@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
}
.main-nav ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-nav ul li {
  height: 100%;
}
.main-nav a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  color: #000000;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  height: 100%;
  align-items: center;
  display: flex;
}
.main-nav a:hover {
  color: #FF000F;
  border-bottom-color: #FF000F;
  border-bottom-width: medium;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.search-field {
  display: none;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.25s ease;
}
@media (min-width: 1024px) {
  .search-field {
    display: flex;
  }
}
.search-field:focus-within {
  border-color: #000000;
}
.search-field .search-input {
  border: none;
  outline: none;
  padding: 7px 8px 7px 16px;
  font-family: "ABBvoice", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  background: transparent;
  width: 160px;
  color: #000000;
}
.search-field .search-input::-moz-placeholder {
  color: #a6a6a5;
}
.search-field .search-input::placeholder {
  color: #a6a6a5;
}
.search-field .search-input::-webkit-search-decoration, .search-field .search-input::-webkit-search-cancel-button {
  display: none;
}
.search-field .search-submit {
  border: none;
  background: none;
  padding: 6px 12px 6px 4px;
  color: #FF000F;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}
.search-field .search-submit:hover {
  color: #cc000c;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  border-radius: 50%;
  color: #000000;
  transition: background-color 0.25s ease;
}
.btn-icon:hover {
  background-color: #f5f5f5;
}
@media (max-width: 1023px) {
  .btn-icon--hide-mobile {
    display: none;
  }
}

.btn-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 10px;
  background: none;
  border: none;
}
@media (min-width: 1024px) {
  .btn-hamburger {
    display: none;
  }
}
.btn-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: transform 0.25s ease, opacity 0.25s ease;
  border-radius: 2px;
}
.btn-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.btn-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.btn-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav.is-open {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 99;
  overflow-y: auto;
}
.main-nav.is-open ul {
  flex-direction: column;
}
.main-nav.is-open a {
  padding: 16px 20px;
  font-size: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background-color: #051121;
}
@media (min-width: 768px) {
  .hero {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .hero {
    height: 560px;
  }
}
.hero .hero-media {
  position: absolute;
  inset: 0;
}
.hero .hero-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 17, 33, 0.65) 0%, rgba(5, 17, 33, 0.35) 50%, transparent 80%);
}
.hero .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 20px;
}
.hero .breadcrumb {
  background: transparent;
  border-bottom: none;
  padding: 0;
}
.hero .breadcrumb ol {
  color: rgba(255, 255, 255, 0.75);
}
.hero .breadcrumb ol li::after {
  color: rgba(255, 255, 255, 0.4) !important;
}
.hero .breadcrumb ol li a {
  color: rgba(255, 255, 255, 0.75);
}
.hero .breadcrumb ol li a:hover {
  color: #ffffff;
}
.hero .breadcrumb ol li span[aria-current=page] {
  color: #ffffff;
  font-weight: 400;
}
.hero .hero-content {
  margin-top: 64px;
  max-width: 560px;
}

.section-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.section-nav .container {
  padding: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-nav .container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1280px) {
  .section-nav .container {
    max-width: 1500px;
    padding: 0 48px;
  }
}
.section-nav ul {
  display: flex;
  white-space: nowrap;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .section-nav ul {
    padding: 0;
  }
}
.section-nav a {
  display: block;
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  border-bottom: 3px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.section-nav a:hover {
  color: #FF000F;
}
.section-nav a.is-active {
  color: #FF000F;
  font-weight: 500;
  border-bottom-color: #FF000F;
}

.breadcrumb {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #a6a6a5;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
}
.breadcrumb ol li:not(:last-child)::after {
  content: "/";
  margin-left: 4px;
  color: #e5e5e5;
}
.breadcrumb ol li a {
  color: #a6a6a5;
  transition: color 0.25s ease;
}
.breadcrumb ol li a:hover {
  color: #FF000F;
}
.breadcrumb ol li span[aria-current=page] {
  color: #000000;
  font-weight: 500;
}

.section--always-on {
  border-bottom: 1px solid #e5e5e5;
}
.section--always-on .split__left h2 {
  font-size: clamp(30px, 4.5vw, 52px);
}

.section--history .split__left h2 {
  font-size: clamp(30px, 4.5vw, 52px);
}

.section--vantaggi {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.vantaggi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}
.vantaggi-grid .vantaggio-card:nth-child(1),
.vantaggi-grid .vantaggio-card:nth-child(3) {
  border-right: 1px solid #d2d1d2;
}
.vantaggi-grid .vantaggio-card:nth-child(1),
.vantaggi-grid .vantaggio-card:nth-child(2) {
  border-bottom: 1px solid #d2d1d2;
}

.vantaggio-card {
  background-color: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.vantaggio-card:hover {
  background-color: #FF000F;
}
.vantaggio-card:hover h3 {
  color: #ffffff;
}
.vantaggio-card:hover .vantaggio-card__icon img {
  filter: brightness(0) invert(1);
}
.vantaggio-card__icon img {
  width: 36px;
  height: 36px;
  transition: filter 0.25s ease;
}
.vantaggio-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  transition: color 0.25s ease;
}

.section--esigenze {
  border-bottom: 1px solid #e5e5e5;
}

.slider {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
@media (min-width: 768px) {
  .slider {
    gap: 20px;
  }
}
.slider__viewport {
  flex: 1;
  overflow: hidden;
}
.slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}
.slider__btn {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.slider__btn:hover {
  background-color: #f5f5f5;
  border-color: #000000;
}
.slider__btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.slide-card {
  flex: 0 0 100%;
  background-color: #f4f4f4;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}
.slide-card:first-child {
  border: none !important;
}
@media (min-width: 768px) {
  .slide-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .slide-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}
.slide-card__label {
  font-size: 11px;
  font-weight: 400;
  color: #a6a6a5;
}
.slide-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 1.25;
}
.slide-card h3:first-child {
  font-size: 32px;
  max-width: 40%;
}
.slide-card__icon {
  margin-bottom: 16px;
}
.slide-card__icon img {
  width: 32px;
  height: 32px;
}
.slide-card p {
  font-size: 14px;
  color: #000000;
  line-height: 1.65;
}
.slide-card--video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 80%);
  border-color: transparent;
}
.slide-card--video .slide-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.65;
}
.slide-card--video > div {
  position: relative;
  z-index: 1;
}
.slide-card--video .slide-card__label {
  color: rgba(255, 255, 255, 0.65);
}
.slide-card--video h3 {
  color: #ffffff;
}

.section--sistema .sistema__intro {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section--sistema .sistema__intro {
    margin-bottom: 64px;
  }
}

.sistema-layout {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .sistema-layout {
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
  }
}
@media (max-width: 1023px) {
  .sistema-layout__visual {
    order: -1;
  }
}

.sistema-map-wrap {
  position: relative;
  border-radius: 4px;
  line-height: 0;
}

.sistema-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.sistema-map-img--overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.sistema-map-img--overlay.is-active {
  opacity: 1;
}

.map-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.map-pin:hover {
  border-color: #FF000F;
  color: #FF000F;
}
.map-pin.is-active {
  background-color: #FF000F;
  color: #ffffff;
  border-color: #FF000F;
}
.map-pin[data-pin="1"] {
  left: 41%;
  top: 47%;
}
.map-pin[data-pin="2"] {
  left: 37%;
  top: 33%;
}
.map-pin[data-pin="3"] {
  left: 63%;
  top: 27%;
}
.map-pin[data-pin="4"] {
  left: 52%;
  top: 50%;
}

.accordion {
  border-top: 1px solid #e5e5e5;
}
.accordion__item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion__item.is-open .accordion__num {
  background-color: #FF000F;
  color: #ffffff;
  border-color: #FF000F;
}
.accordion__item.is-open .accordion__arrow {
  transform: rotate(180deg);
}
.accordion__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}
.accordion__trigger:hover .accordion__title {
  color: #FF000F;
}
.accordion__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.accordion__title {
  flex: 1;
  font-size: 14.5px;
  font-weight: 500;
  color: #000000;
  transition: color 0.25s ease;
}
.accordion__arrow {
  flex-shrink: 0;
  color: #000000;
  transition: transform 0.35s ease;
}
.accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.accordion__body ul {
  padding: 4px 0 20px 42px;
}
.accordion__body ul li {
  padding: 5px 0;
}

.section--affidabilita {
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}
.section--affidabilita .banner {
  display: flex;
  background-color: #fde8e8;
  padding: 32px;
  border-radius: 8px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section--affidabilita .banner {
    display: block;
  }
}
.section--affidabilita .affidabilita-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.section--affidabilita .affidabilita-header h2 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  color: #FF000F;
  line-height: 1.25;
}
.section--affidabilita .affidabilita-header .check-icon {
  color: #FF000F;
}

.caso-aruba {
  max-width: 40%;
  margin: 0;
}
@media (max-width: 767px) {
  .caso-aruba {
    max-width: 100%;
  }
}
.caso-aruba__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FF000F;
  margin-bottom: 12px;
  text-align: left;
}
@media (max-width: 767px) {
  .caso-aruba__label {
    text-align: center;
  }
}
.caso-aruba p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.75;
  text-align: left;
}
@media (max-width: 767px) {
  .caso-aruba p {
    text-align: center;
  }
}

.section--brochure {
  position: relative;
  min-height: 650px;
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
}
.section--brochure .brochure-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.section--brochure .brochure-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section--brochure .container {
  position: relative;
  width: 100%;
}
.section--brochure .brochure-split .split__left h2 {
  color: #000000;
  font-size: clamp(30px, 4.5vw, 52px);
}
.section--brochure .brochure-split .split__right p {
  color: #000000;
  margin-bottom: 28px;
}

.section--products {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0 !important;
}
.section--products .products-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .section--products .products-grid {
    grid-template-columns: 1fr 1px 1fr;
    gap: 64px;
    align-items: start;
  }
}

@media (min-width: 768px) {
  .product-divider {
    background-color: #e5e5e5;
    align-self: stretch;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 64px;
}
.product-card__icon img {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .product-card:first-child {
    border-bottom: 1px solid #d2d1d2;
  }
}
.product-card h3 {
  font-size: 20px;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  color: #000000;
}
.product-card p {
  font-size: 14px;
  color: #000000;
  line-height: 1.65;
}

.section--contact .contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .section--contact .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}
.section--contact .contact-grid__left h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 16px;
  font-weight: 400;
}
.section--contact .contact-grid__left p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 28px;
}
.section--contact .contact-grid__right h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  margin-bottom: 16px;
  color: #000000;
}
.section--contact .contact-grid__right .contact-phone {
  font-size: 14px;
  margin-bottom: 6px;
}
.section--contact .contact-grid__right .contact-phone a {
  color: #000000;
}
.section--contact .contact-grid__right .contact-phone strong {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}
.section--contact .contact-grid__right .contact-hours {
  font-size: 13.5px;
  color: #000000;
  line-height: 1.6;
}

.section--newsletter {
  padding-bottom: 48px;
  padding-top: 32px;
}
.section--newsletter .newsletter-box {
  background-color: #fde8e8;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section--newsletter .newsletter-box {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section--newsletter .newsletter-box__text {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  color: #FF000F;
  line-height: 1.25;
  max-width: 640px;
}
.section--newsletter .newsletter-box__text .icona-newsletter {
  width: 48px;
  height: auto;
  display: inline-block;
  margin-right: 16px;
  margin-bottom: -10px;
}
@media (max-width: 767px) {
  .section--newsletter .newsletter-box__text .icona-newsletter {
    width: 32px;
    margin-bottom: -6px;
    margin-right: 8px;
  }
}

.site-footer {
  background-color: #262626;
  padding: 64px 0 32px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.site-footer .footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}
.site-footer .footer-col ul li {
  margin-bottom: 8px;
}
.site-footer .footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}
.site-footer .footer-col ul li a:hover {
  color: #ffffff;
}
.site-footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.site-footer .footer-social {
  display: flex;
  gap: 10px;
}
.site-footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.site-footer .social-icon:hover {
  background-color: #FF000F;
  color: #ffffff;
}
.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.site-footer .footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}
.site-footer .footer-legal a:hover {
  color: #ffffff;
}
.site-footer .footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}/*# sourceMappingURL=style.css.map */