* {
  margin: 0;
  padding: 0;
}

html {
  background-color: #FFF;
  color: #2F2E30;
  font: 300 16px/1.5 "Poppins", sans-serif;
  text-rendering: auto;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

body {
  background-color: #FFF;
}
.link, .link:visited {
  color: #950F3E;
  font-weight: 500;
  text-decoration: none;
}
.link:hover, .link:visited:hover {
  text-decoration: underline;
}

.dot {
  color: #950F3E;
}

.button {
  padding: 16px;
  background-color: #950F3E;
  color: #FFF;
  display: inline-block;
}
.button:hover {
  background-color: #670a2b;
  text-decoration: none;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #2F2E30;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 1.3rem;
  }
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

p + h3, p + h2, p + h4 {
  padding-top: 48px;
}

::selection {
  background-color: #950F3E;
  color: #FFF;
}

ul, ol {
  margin: 24px 0;
  padding: 0 24px;
}

li {
  list-style-type: square;
}

a {
  color: #950F3E;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong {
  color: #950F3E;
}

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

html, body {
  overflow-x: hidden;
}

.scroll {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .scroll {
    overflow: auto;
  }
}

.main {
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .main {
    border-bottom: 2px solid #E1DCE5;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  align-items: center;
  height: 120px;
}
@media (min-width: 1024px) {
  .header {
    padding: 0 48px;
  }
}

.logo > img {
  width: 48px;
  height: auto;
}
@media (min-width: 1024px) {
  .logo > img {
    width: 64px;
  }
}

.menu {
  display: flex;
  flex-direction: column;
  background-color: #950F3E;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translateX(-100%);
  transition: all 0.5s;
  margin-top: 0;
  padding: 48px 24px;
  height: 100%;
  width: 100%;
}
.menu .menu-item {
  list-style-type: none;
  margin-left: 40px;
}
.menu .menu-link {
  text-decoration: none;
  color: #FFF;
  font-size: 24px;
  margin: 16px 0;
  display: block;
}
.menu .home .link-1,
.menu .prodotti .link-2,
.menu .chi-siamo .link-3 {
  color: #FFF;
}
@media (min-width: 1024px) {
  .menu {
    height: auto;
    display: flex;
    flex-direction: row;
    position: static;
    background-color: transparent;
    transform: translateX(0);
  }
  .menu .menu-item {
    list-style-type: none;
    margin-left: 40px;
  }
  .menu .menu-link {
    font-size: 18px;
    margin: 0;
    display: inline;
    color: #2F2E30;
  }
  .menu .menu-link:hover {
    text-decoration: underline;
  }
}

@media (min-width: 1024px) {
  .home .link-1,
.prodotti .link-2,
.chi-siamo .link-3 {
    color: #950F3E;
  }
}
.menu.open {
  right: 0;
  transform: translateX(0);
}

.icon {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1024px) {
  .icon {
    visibility: hidden;
    opacity: 0;
  }
}

#icon {
  display: block;
  height: 20px;
  width: 24px;
  position: absolute;
  right: 24px;
  z-index: 1;
}
@media (min-width: 1024px) {
  #icon {
    display: none;
  }
}

#bar {
  height: 2px;
  width: 24px;
  background-color: #2F2E30;
  margin-top: 6px;
}
#bar:after, #bar:before {
  content: "";
  display: block;
  position: relative;
  height: 2px;
  background-color: #2F2E30;
  transition: all 0.3s ease-out;
}
#bar:before {
  top: -6px;
  width: 24px;
}
#bar:after {
  top: 4px;
  width: 24px;
}
#bar.active {
  background: none;
}
#bar.active:before {
  margin: 0;
  top: 0;
  background-color: #FFF;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#bar.active:after {
  margin: 0;
  top: -2px;
  width: 24px;
  background-color: #FFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  margin: 0 0 64px 0;
}
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    width: 100%;
    margin: 0 auto 88px;
    padding: 0 48px;
    align-items: center;
  }
}
.hero img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .hero img {
    width: 50%;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-content {
    width: 50%;
    padding: 80px 80px 80px 0;
    align-items: flex-start;
    text-align: left;
  }
}
.hero-content h1 {
  font-size: 1.8rem;
}
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .hero-content p {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    margin: 0 auto;
  }
}

.page-title {
  width: 100%;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .page-title {
    width: 50%;
  }
}

.product-home {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: 88px;
}
@media (min-width: 1024px) {
  .product-home {
    flex-direction: row;
    border: 2px solid #E1DCE5;
  }
}
.product-home.left {
  border-bottom: 2px solid #E1DCE5;
}
@media (min-width: 1024px) {
  .product-home.left {
    border-bottom: 0;
  }
}
.product-home.right {
  border-bottom: 2px solid #E1DCE5;
}
@media (min-width: 1024px) {
  .product-home.right {
    flex-direction: row-reverse;
    border-top: 0;
  }
}

.home-content {
  padding: 24px;
  width: 100%;
}
@media (min-width: 1024px) {
  .home-content {
    padding: 64px;
  }
}
.home-content a {
  text-decoration: none;
  color: #950F3E;
}
.home-content a:hover {
  text-decoration: underline;
}

.products {
  display: flex;
  flex-wrap: wrap;
  margin: 88px 0;
}

.product {
  height: 240px;
  flex-grow: 1;
  width: 240px;
  margin: 8px;
  text-decoration: none;
  text-align: center;
  text-shadow: 0px 2px #2F2E30;
  color: #FFF;
}
.product:hover, .product:active {
  background-color: #ddd;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .product:hover .image, .product:active .image {
    transform: scale(1.1);
  }
}
@media (min-width: 1024px) {
  .product:hover .image.empty, .product:active .image.empty {
    transform: none;
  }
}

.image {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
}
.image > h3 {
  margin: 0;
}
.image.tende-sole {
  background: url(/img/tende-da-sole.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.zanzariere {
  background: url(/img/alba-assemblato.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.frangisole {
  background: url(/img/frangisole.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.tende-rullo {
  background: url(/img/tende-a-rullo.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.pensiline {
  background: url(/img/pensilina.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.grate {
  background: url(/img/grate.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.persiane {
  background: url(/img/persiane.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.pergole {
  background: url(/img/isola.jpg) rgba(47, 46, 48, 0.1);
  background-size: cover;
}
.image.empty {
  border-bottom: 2px solid #E1DCE5;
  border-right: 2px solid #E1DCE5;
  padding: 16px;
}
.image.empty p {
  color: #2F2E30;
}

.prodotto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #E1DCE5;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .prodotto {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }
  .prodotto:last-child {
    border-bottom: 0;
  }
}

.description, .data, .preview {
  width: 100%;
}
@media (min-width: 1024px) {
  .description, .data, .preview {
    width: 30%;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .description.no-data, .data.no-data, .preview.no-data {
    width: 60%;
  }
}

.preview img {
  width: 100%;
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.contacts > * {
  flex: 1;
}
.contacts p {
  margin-bottom: 0;
}
.contacts a {
  text-decoration: none;
  color: #950F3E;
}
.contacts a:hover {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .contacts {
    flex-direction: row;
    padding: 80px 0;
  }
}

.contact {
  margin-bottom: 32px;
}
.contact h3 {
  margin-bottom: 8px;
}

.about {
  width: 100%;
  margin: 48px 0;
}
@media (min-width: 1024px) {
  .about {
    width: 75%;
  }
}

.footer {
  background-color: #950F3E;
  color: #FFF;
  padding: 32px 48px;
}

/*# sourceMappingURL=style.css.map */
