.hero-contatti .cont {
  display: flex;
  justify-content: center;
  height: 100%;
}

.row.hero-contatti {
  position: relative;
  min-height: 1000px;
}
.row-hero {
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.hero-contatti .row-hero::before {
  filter: none;
}
.hero-contatti .row-hero::after {
  display: none;
}


.hero-contatti .image-side {
  flex: 1 1 50%;
  max-width: 50%;
  padding: var(--space-L) 120px var(--space-L) 0px;
}

.hero-contatti .hero-subtitle {
  font-size: var(--default-font-size);
  line-height: var(--line-height-175);
  font-weight: 400;
}

.hero-contatti .form-side {
  flex: 1 1 50%;
  max-width: 50%;
  padding: var(--space-L) 20px;
  padding-left: var(--space-M);
}
.row-header{
  background-color: var(--primary-color) !important /*I want to keep the black navbar here*/;
}
body {
  padding-top: var(--navbar-height) !important;
}
@media (max-width: 768px) {
  .hero-contatti .image-side {
    max-width: 100%;
    padding: 0;
    height: 400px;
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .row-hero {
    width: 100%;
    height: 400px;
  }
  .hero-contatti .cont {
    flex-direction: column;
  }
   .hero-contatti .form-side{
    flex: 1 1 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
  }
}
