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

body, html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #000;
  font-size: 16px;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}

a {color: #1a1f42;}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.left-side {
  width: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 60px 60px;
  position: relative;
}

.left-side .content {
  max-width: 500px;
}

.left-side h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.left-side p {
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: left;
}


.contatti{

}

.contatti a {
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  color:#1a1f42;
  font-weight: 400;
}
.contatti a i {
    margin-right: 5px;
    color: #1a1f42;
}
.contatti a:hover i:before {
    color: #4654A3;
}

.social {
  /*left: 60px;*/
  display: flex;
  justify-content: flex-start;
  width: auto;
      margin-top: 40px;
}

.social a {
  color: #1a1f42;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #4654A3;
}

.right-side {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}
.spacer {
    height: 120px;
}

@media (max-width: 1024px) {
     .container {
    flex-direction: column;
    height: auto;
  }
   .left-side {
    width: 100%;
    height: auto;
  }
  .left-side .content {
    max-width: inherit;
}

  .right-side {
    width: 100%;
    height: auto;
  }
  .spacer {
    height: 40px;
}
.slideshow {
  height: 60vh;
}
}

.copy {
  margin-top: 20px;
  font-size: 14px;
}
/*
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-side, .right-side {
    width: 100%;
    height: 50vh;
  }

  .left-side {
    align-items: flex-start;
    padding: 40px;
  }

  .left-side h1 {
    font-size: 32px;
    text-align: left;
  }

  .left-side p {
    font-size: 16px;
    text-align: left;
  }

  .social {
    left: 40px;
  }
}
  */
