* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica", "Arial", sans-serif;
  color: #4b5563;
}

.header {
  display: flex;
  flex-direction: column;
  z-index: 100;
  position: fixed;
  width: 100%;
}

.header-top {
  padding: 1.5vh 7%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 0px;
  margin-right: 0px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
  height: auto;
}
.header-top nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-top nav ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  list-style: none;
}
.header-top nav ul .nav-section {
  font-weight: 500;
  text-decoration: none;
  background-image: linear-gradient(#5075e4, #5075e4);
  background-size: 0% 0.2rem;
  background-position-y: 100%;
  background-position-x: 0%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-in-out;
}
.header-top nav ul .nav-section:hover {
  cursor: pointer;
  color: #5075e4;
  background-size: 100% 0.2rem;
  transition: background-size 0.4s ease-in-out;
  font-size: 1.1rem;
}
.header-top nav ul .nav-section .nav-text {
  margin-bottom: 0.3rem;
  color: #797f88;
}
.header-top nav ul .nav-section .nav-text:hover {
  cursor: pointer;
  color: #5075e4;
  background-size: 100% 0.2rem;
  transition: all 0.4s ease-in-out;
}
.header-top a {
  text-decoration: none;
}
.header-top .logo-header {
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  align-items: center;
  gap: 1rem;
  color: #5075e4;
}
.header-top .logo-header .logo-write {
  display: flex;
  flex-direction: column;
  letter-spacing: 0px;
  background: -webkit-linear-gradient(#5075e4, #3b57ab);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
.header-top .logo-header .logo-write:hover {
  cursor: pointer;
  background: -webkit-linear-gradient(#3b57ab, #5075e4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}
.header-top .logo-header #logo-title {
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.header-top .logo-header #logo-subtitle {
  font-weight: 500;
  font-size: 0.8rem;
}
.header-top .logo-header .logo-container {
  background-color: #eaeaea;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.header-top .logo-header .logo-container:hover {
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header-top .logo-header .logo-container:hover img {
  height: 7vh;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.header-top .logo-header .logo-container img {
  height: 5vh;
  margin: 0.3rem;
  transition: all 0.3s ease-in-out;
}
.header-top .logo-header span {
  margin: 0;
}
.header-top .hamburger-menu {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header-top .hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #5075e4;
  margin: 2px 0;
}
.header-top .site-header {
  display: flex;
  justify-items: center;
  align-items: center;
}
.header-top .site-header button {
  margin: 0px 16px;
  background-color: transparent;
  color: #797f88;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.header-top .site-header button:hover {
  background-image: linear-gradient(#be3e25, #e54e2e, #be3e25);
  transition: all 0.3s ease-in-out;
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.header-top .site-header i {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.header-top .shop-header {
  display: flex;
  justify-items: center;
  align-items: center;
}
.header-top .shop-header button {
  background-image: linear-gradient(#5075e4, #3b57ab, #5075e4);
  color: #fbfcfc;
}
.header-top .shop-header button:hover {
  background-image: linear-gradient(#3b57ab, #5075e4, #3b57ab);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.header-top .shop-header button i {
  font-size: 20px;
}
.header-top .shop-header button #shop-button-text {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.header-top .shop-header i {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.header-bottom {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  background-color: #4f7eb1;
  height: auto;
  justify-content: center;
}
.header-bottom nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-bottom nav ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  list-style: none;
}
.header-bottom nav ul .nav-section {
  font-weight: 500;
  text-decoration: none;
  background-image: linear-gradient(#5075e4, #5075e4);
  background-size: 0% 0.2rem;
  background-position-y: 100%;
  background-position-x: 0%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-in-out;
}
.header-bottom nav ul .nav-section:hover {
  cursor: pointer;
  color: #5075e4;
  background-size: 100% 0.2rem;
  transition: background-size 0.4s ease-in-out;
  font-size: 1.1rem;
}
.header-bottom nav ul .nav-section .nav-text {
  margin-bottom: 0.3rem;
  color: white;
}
.header-bottom nav ul .nav-section .nav-text:hover {
  cursor: pointer;
  color: #5075e4;
  background-size: 100% 0.2rem;
  transition: all 0.4s ease-in-out;
}
.header-bottom a {
  text-decoration: none;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 2rem;
}

button {
  display: flex;
  height: auto;
  border: none;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
}
button:hover {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.blue-text {
  color: #3b57ab;
  font-weight: 600;
}

.red-text {
  color: #e54e2e;
  font-weight: 600;
}

.quality-box {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.client-box {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.fill-button {
  color: #fbfcfc;
}
.fill-button:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.blue-button {
  background-color: #3b57ab;
}

.red-button {
  background-color: #e54e2e;
}

.mail-icon {
  margin-right: 1rem;
  font-weight: thin;
  font-size: 1.2rem;
}

.empty-button {
  background-color: #fbfcfc;
  color: #3b57ab;
  border: 1px solid #3b57ab;
}
.empty-button:hover {
  background-color: #e0e8f3;
  color: #4f7eb1;
}

section {
  height: 100vh;
  width: 100%;
}

.blue-section {
  background-image: linear-gradient(#f0f4f9, #e1eaf5);
}

.white-section {
  height: 130vh;
  background-color: white;
}

.red-section {
  background-image: linear-gradient(#fef6f5, #ffe2dc);
}

.section-image-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
.section-image-container .image-section-text {
  justify-content: center;
  align-items: center;
}
.section-image-container .image-section-text h1 {
  letter-spacing: 0px;
  white-space: nowrap;
  margin-top: 2rem;
}

.home-text {
  padding-left: 6vw;
  max-width: 50%;
}
.home-text h1 {
  font-size: 3rem;
  font-weight: 800;
  background-image: linear-gradient(to right, #3b57ab 40%, #5075e4 80%, #e54e2e 105%);
  background-clip: text;
  color: transparent;
}

.big-image {
  display: flex;
  border-radius: 16px;
  max-height: 75%;
  max-width: 50%;
  box-shadow: -10px 2px 40px 2px #5075e4, 10px -2px 40px 2px #e54e2e;
  animation: enlarge 3s infinite alternate ease-in-out;
}

.first-container img {
  margin: 12% 8% 8%;
}

.last-container img {
  margin: 10% 4% 10%;
}

.claim-box {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
}

.claim-blue {
  background-color: #e0e8f3;
  color: #4f7eb1;
}

.claim-red {
  background-color: #ffe2db;
  color: #e54e2e;
}

.claim-yellow {
  background-color: #f2eddb;
  color: #e5b94a;
}

@keyframes enlarge {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.section-card-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 3vh 0;
}
.section-card-container h1 {
  color: black;
  font-size: 3rem;
  margin: 1rem;
}
.section-card-container .description {
  font-size: 1.4rem;
  margin-bottom: 3rem;
}

.product-card-container {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.product-card {
  height: 80vh;
  width: 25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #d1d5db;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}
.product-card:hover {
  border: 1px solid #5075e4;
  cursor: pointer;
}
.product-card:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.product-card .product-card-image {
  height: 60%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #f3f4f6;
}
.product-card .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.product-card .product-card-text {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  padding: 1.5rem;
  gap: 1.25rem;
}

.product-title {
  display: flex;
  flex-direction: row;
  color: black;
  align-items: center;
  justify-content: start;
  width: 100%;
}
.product-title span {
  display: flex;
  flex-direction: column;
  color: #4f7eb1;
  background-color: #e0e8f3;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  justify-self: center;
  align-self: center;
  padding: 0.6rem;
  margin-right: 0.75rem;
}

.product-description {
  color: #797f88;
}

.product-offer-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.product-offer-row .offer-price {
  color: black;
  font-weight: bolder;
  font-size: 1.25rem;
}
.product-offer-row .old-price {
  text-decoration: line-through;
  color: #797f88;
  margin-left: 0.5rem;
}
.product-offer-row .product-review {
  justify-self: end;
}
.product-offer-row .product-review .fa {
  color: #797f88;
}
.product-offer-row .product-review .fa.good {
  color: #ffd166;
}
.product-offer-row .product-review .fa.half {
  background-image: linear-gradient(to right, #ffd166 50%, #797f88 50%, #797f88 100%);
  color: transparent;
  background-clip: text;
}

.show-more {
  background-color: #3b57ab;
  justify-self: center;
  width: 100%;
}

.category-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.offer-text {
  padding: 2vw;
  max-width: 50%;
}
.offer-text h1 {
  color: black;
  font-size: 2.5rem;
}

.email-field {
  width: 80%;
  border: none;
  border-radius: 8px;
}
.email-field input {
  width: 100%;
  height: 100%;
  border: 1pt solid #d1d5db;
  border-radius: 8px;
  padding: 0.25rem 0.75rem;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  outline: none;
}
.email-field input:hover {
  border: none;
}
.email-field input:focus {
  border: 2pt solid #5075e4;
}

.privacy-policy {
  margin-top: 2rem;
  font-size: 0.9rem;
}
.privacy-policy a {
  color: #e54e2e;
  text-decoration: none;
}
.privacy-policy a:hover {
  text-decoration: underline;
}

.service-container {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
}
.service-container h1 {
  color: black;
  font-size: 3rem;
  margin: 1rem;
}

.service-title {
  text-align: center;
  margin: 20px;
}

.service-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  font-size: 1rem;
}
.service-row .service-element {
  display: flex;
  flex-direction: column;
  width: 25vw;
  justify-content: flex-start;
  align-items: center;
}
.service-row .service-element .info-container {
  min-height: 180px;
}
.service-row .service-element .action-container {
  align-self: end;
  width: 100%;
}
.service-row .claim-box {
  margin-bottom: 24px;
}

.service-box {
  max-width: 80%;
  width: 80%;
  margin-top: 48px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid #efd7d2;
  border-radius: 12px;
}
.service-box:hover {
  border: 1px solid #e54e2e;
}

.quality-box p {
  font-size: 1rem;
}

.service-form-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
  width: 100%;
}

.email-field.full-width {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

.email-field.full-width input,
.email-field.full-width textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
  box-sizing: border-box;
}

.email-field.full-width textarea {
  resize: vertical;
  min-height: 80px;
}

.file-input {
  background-color: white;
  padding: 10px;
  cursor: pointer;
}

.category-slider-wrapper {
  position: relative;
  width: 85%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
}

.category-slider-track {
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1.5rem 0.5rem;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-slider-track::-webkit-scrollbar {
  display: none;
}

.category-slider-track .category-card {
  flex: 0 0 20%;
  width: auto;
  min-width: 180px;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 6/5;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 12px;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.category-slider-track .category-card span {
  border-radius: 50%;
  padding: 0.75rem;
  font-size: 2.25rem;
}
.category-slider-track .category-card .blue-icon {
  color: #4f7eb1;
  background-color: #e0e8f3;
}
.category-slider-track .category-card .red-icon {
  color: #e54e2e;
  background-color: #ffe2db;
}
.category-slider-track .category-card .yellow-icon {
  color: #e5b94a;
  background-color: #f2eddb;
}
.category-slider-track .category-card .category-title {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: black;
  margin-top: 1rem;
  flex-grow: 1;
}
.category-slider-track .category-card .category-explore {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: transparent;
  gap: 0rem;
  margin-top: 0.5rem;
}
.category-slider-track .category-card .category-explore span {
  font-size: 1rem;
}
.category-slider-track .category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.category-slider-track .category-card:hover .category-title {
  color: #5075e4;
}
.category-slider-track .category-card:hover .category-explore {
  color: #5075e4;
}

.slider-arrow {
  background-color: #3b57ab;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  flex-shrink: 0;
  transition: transform 0.2s;
  margin: 12px;
}
.slider-arrow:hover {
  transform: scale(1.25);
  background-color: #5075e4;
}
.slider-arrow span {
  font-size: 24px;
  color: white;
}

@media (max-width: 1024px) {
  .category-slider-track .category-card {
    flex: 0 0 22%;
  }
}
@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
  .category-slider-track .category-card {
    flex: 0 0 45%;
    min-width: 150px;
  }
}
footer {
  display: flex;
  flex-direction: column;
  background-color: #192130;
  color: #fbfcfc;
  color: #98a3af;
  font-size: 0.9rem;
}
footer #elettronova-footer {
  padding: 3% 6% 2% 6%;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
footer hr {
  border: none;
  background-color: #797f88;
  height: 1px;
  width: 100%;
}
footer .upper-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .upper-footer .footer-title {
  color: white;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}
footer .upper-footer .first-footer-title {
  font-size: 1.4rem;
  align-items: center;
}
footer .upper-footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 20%;
}
footer .upper-footer .first-column {
  width: 26%;
}
footer .social-media {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
footer img {
  height: 5vh;
  background-color: white;
  border-radius: 4px;
  padding: 1px;
  justify-content: center;
  align-items: center;
}
footer .second-footer-title {
  margin-top: 1rem;
}
footer .lower-footer {
  font-size: 0.9rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer a {
  text-decoration: none;
  color: #98a3af;
}
footer a:hover {
  color: white;
  cursor: pointer;
}
footer .legal-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
footer .micropp-footer {
  display: flex;
  width: 100%;
}
footer .micropp-footer:hover .micropp-text {
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
footer .micropp-footer a {
  width: 100%;
}
footer .micropp-footer .micropp-text {
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #212121;
  transition: all 0.3s ease-in-out;
  margin: 0;
  width: 100%;
  padding: 0.7rem 0;
  font-size: 18px;
}
footer .micropp-footer .micropp-text img {
  background-color: transparent;
  margin-left: 20px;
  width: 12%;
  height: 5vh;
  transition: all 0.3s ease-in-out;
}
footer .upper-footer-mobile {
  display: none;
}

@media (max-width: 1400px) {
  .home-text {
    padding-left: 5vw;
  }
  .home-text h1 {
    font-size: 2.6rem;
  }
  .quality-box {
    font-size: 1.2rem;
  }
  .offer-text h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 1150px) {
  .home-text {
    padding-left: 4.5vw;
  }
  .home-text h1 {
    font-size: 2.3rem;
  }
  .quality-box {
    font-size: 1.1rem;
  }
  .offer-text h1 {
    font-size: 1.6rem;
  }
  .big-image {
    max-width: 45%;
  }
  .product-card {
    width: 28vw;
  }
  .product-description {
    font-size: 0.9rem;
  }
}
@media (max-width: 850px) {
  .home-text {
    padding-left: 4vw;
  }
  .home-text h1 {
    font-size: 2rem;
  }
  .quality-box {
    font-size: 1rem;
  }
  .offer-text h1 {
    font-size: 1.5rem;
  }
  .product-card {
    width: 30vw;
  }
  .service-row {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 15vh;
  }
  .header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 5%;
  }
  .header > a {
    order: 0;
  }
  .shop-header {
    order: 1;
  }
  .shop-button {
    padding: 0.8rem;
    border-radius: 16px;
  }
  #shop-button-text {
    display: none;
  }
  .hamburger-menu {
    display: block !important;
    align-self: center;
    order: 2;
  }
  .hamburger-menu button {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .menu-header {
    display: none !important;
  }
  .menu-header.is-active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .menu-header {
    order: 3;
    width: 100%;
    margin-top: 1rem;
  }
  .menu-header ul {
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d1d5db;
  }
  section,
  .white-section {
    height: auto;
    padding: 5vh 5vw;
  }
  #home-section {
    padding-top: 20vh;
  }
  .section-image-container,
  .section-card-container {
    height: auto;
    flex-direction: column;
    gap: 3rem;
  }
  .first-container {
    flex-direction: column-reverse;
  }
  .button-container {
    justify-content: space-around;
  }
  .home-text,
  .offer-text {
    max-width: 90%;
    text-align: center;
    padding: 0;
    align-items: center;
  }
  .big-image {
    max-width: 100%;
    aspect-ratio: 1 !important;
  }
  img {
    margin: 0;
    padding: 0;
  }
  .description {
    text-align: center;
  }
  .product-card-container,
  .category-container {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    width: 100%;
  }
  .product-card {
    height: auto;
    width: 90%;
  }
  .category-card {
    width: 70%;
    aspect-ratio: unset;
    height: auto;
  }
  .category-card .category-title {
    font-size: 1.2rem;
  }
  .section-card-container h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .quality-box {
    font-size: 1rem;
  }
  .upper-footer-mobile {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly !important;
    margin-top: 1.5rem;
  }
  .upper-footer-mobile .first-column {
    align-items: center;
    text-align: center;
  }
  .footer-column {
    min-width: 45%;
    max-width: 45%;
    margin-bottom: 2rem;
  }
  .footer-column .email {
    font-size: 0.75rem;
  }
  .footer-column.first-column {
    min-width: 95%;
  }
  .micropp-text img {
    width: 30% !important;
    height: auto !important;
  }
  .lower-footer {
    font-size: 0.8rem;
  }
  .lower-footer .copyright {
    font-size: 0.7rem;
  }
  .upper-footer-desktop {
    display: none !important;
  }
}
