@charset "UTF-8";
@font-face {
  font-family: 'Calibri';
  src: url(fonts/calibri.ttf);
  font-weight: normal;
}
@font-face {
  font-family: 'CalibriBold';
  src: url(fonts/calibrib.ttf);
  font-weight: bold;
}
@keyframes articles {
    from {opacity: 0;}
    to {opacity: 1;}
}

:root {
  --verde: #03883A;
}
* {
  scroll-behavior: smooth;
}
html, body {
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
  font-family: 'Calibri', 'Verdana', 'Helvetica', 'Arial', sans-serif;
}
a {
  color: inherit;
  border: 0px;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;}
a:hover {
  opacity: 0.7;
}
button {
  outline: 0px;
  cursor: pointer;
  font-family: inherit;
}
h4 {
  font-family: 'CalibriBold';
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1em;
  margin-bottom: 0.2em;
}
h4 + p {
  margin-top: 0px;
}
strong {
  font-family: 'CalibriBold';
  font-weight: bold;
  font-size: 1.2em;
}

.bold {
  font-family: 'CalibriBold';
  font-weight: bold;
}
.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3em;
  width: 100%;
}
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3em;
  width: 100%;
}
.hidden {
  display: none !important;
}
.only-ie {
  display: none;
}
.title {
  font-family: 'CalibriBold';
  font-weight: bold;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 0px;
}
.text {
  text-align: left;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.separador {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin: 10px 0px;
}
.separador.blanco {
  background-image: linear-gradient(to left, #FFF0, #FFF 30%, #FFF 70%, #FFF0);
}

/* HEADER */
#header {
  position: fixed;
  display: block;
  width: 100%;
  height: auto;
  left: 0px;
  top: 0px;
  /* padding: 20px; */
  padding: 10px 20px;
  box-sizing: border-box;
  background: #FFF;
  border-bottom: solid 3px #03883A;
  color: #03883A;
  text-align: right;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  z-index: 10;
  opacity: 0;
  transition: all 0.5s ease;
}
#header.scrolled {
  /* padding: 10px 20px; */
  opacity: 1;
}
#top-logo {
  display: inline;
  float: left;
}
#header ul {
  display: inline-block;
  padding: 0px;
  margin: 0px;
  font-size: 1.2em;
}
#header ul li {
  padding: 0px;
  margin: 10px 0px 5px 30px;
  list-style: none;
  float: left;
}
#sandwich-btn {
  display: none;
  margin: 10px 0px;
}
#shadow {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  transition: opacity 0.3s;
}
#shadow.open {
  opacity: 1;
}
#mobile-menu {
  position: fixed;
  display: none;
  width: 200px;
  height: 100%;
  left: 100%;
  top: 0px;
  margin-left: 0px;
  background: #03883A;
  color: #FFF;
  z-index: 9;
  transition: margin-left 0.3s ease;
}
#mobile-menu.open {
  margin-left: -200px;
}
#menu-vertical {
  padding: 0px;
  margin: 110px 20px;
  list-style: none;
}
#menu-vertical li {
  font-size: 1.5em;
  padding: 10px 0px;
  border-bottom: solid 1px #FFF;
}

/* SLIDESHOW */
#slideshow {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  background-color: black;
}
  #slideshow slide {
    background-position: center;
    background-size: cover;
  }
  #slideshow slide[active] {
    opacity: 0.5;
  }
  #slideshow aside {
    --radius: 20%;
    --size: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-area: slide;
    height: 100%;
    width: 100%;
    padding: 150px 50px;
    box-sizing: border-box;
    background-image:
      linear-gradient(to top, var(--verde), transparent),
      radial-gradient(circle, var(--verde) var(--radius), transparent var(--radius));
    background-repeat:
      no-repeat,
      repeat;
    background-size:
      100%,
      var(--size) var(--size);
    color: white;
  }
  #slideshow aside > * {
    width: min(600px, 80vw);
    font-size: 1.5em;
    filter: drop-shadow(0px 0px 15px var(--verde));
  }
  #slideshow thumbnails {
    position: absolute;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 0.8em;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  #slideshow thumb {
    --size: 0.7em;
    position: relative;
    display: block;
    height: var(--size);
    width: var(--size);
    border-radius: calc(var(--size) / 2);
    background-color: white;
    opacity: 0.7;
    transition: width 0.2s, opacity 0.2s;
    cursor: pointer;
  }
  #slideshow thumb[active] {
    width: calc(var(--size) * 2);
    opacity: 1;
  }

/* NOVEDADES */
#novedades {
  position: relative;
  display: block;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  color: #89878C;
  overflow-x: hidden;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
  background: linear-gradient(to right, rgba(221,221,221,1) 0%, rgba(255,255,255,1) 50%, rgba(221,221,221,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#dddddd', GradientType=1 );
  z-index: 2;
}
  #novedades carousel {
    --controls-padding: -2rem;
  }
    #novedades carousel button {
      font-size: 1.3em;
    }
  #novedades items {
    --cols: 4;
    --gap: 2rem;
    padding-top: 1em;
  }
.article {
  position: relative;
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: auto;
  justify-content: flex-start;
  align-items: flex-start;
  color: #89878C;
  width: 100%;
  text-align: left;
}
.a-detail {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--verde);
  font-size: 1.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.a-product {
  position: relative;
  width: 100%;
  background: #FFF;
  overflow: hidden;
  text-align: center;
  box-shadow: 4px 4px 10px #0006;
  transition: transform 0.3s ease;
  background-color: white;
  overflow: hidden;
}
  .a-product img {
    max-width: 100%;
    max-height: 100%;
    transition: filter 0.3s ease;
  }
.a-lead {
  line-height: 1em;
  width: 60%;
  float: left;
}
.a-text {
  display: none;
}
.a-title {
  font-size: 1.5em;
  font-family: 'CalibriBold';
}
.a-logo {
  max-height: 50px;
  max-width: 175px;
  float: right;
  margin-top: 15px;
}
  .article:hover .a-product {
    transform: scale(1.04);
  }
  .article:hover .a-detail {
    opacity: 1;
  }
    .article.blur:hover .a-product img {
      filter: blur(10px) opacity(0.3);
    }

/* NOSOTROS */
#nosotros {
  position: relative;
  display: block;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  background: #03883A;
  color: #FFF;
}
#nosotros-table {
  position: relative;
  display: table;
  width: 100%;
  margin: 60px 0px;
}
.col1-3 {
  position: relative;
  display: table-cell;
  width: 33%;
  text-align: center;
}
.col1-3.mid {
  border-left: dotted #FFF;
  border-right: dotted #FFF;
}
.col1-3 img {
  max-width: 90%;
}

/* CONTACTO */
.sendbtn {
  margin: 1rem 0;
  padding: 0.5em 0.8em;
  border: 0px;
  background-color: var(--verde);
  background-image: none;
  color: white;
  font-size: 1.2em;
  font-family: 'CalibriBold';
  font-weight: bold;
  transition: opacity 0.2s;
}
.sendbtn:hover {
  opacity: 0.7;
}
#contacto {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.6em;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  color: var(--verde);
}
  #contacto .hard-text:last-child {
    font-size: 1.8em;
    font-family: 'CalibriBold';
    font-weight: bold;
  }
  #contacto .hard-text:nth-last-child(1n+2) {
    font-size: 1.4em;
    color: black;
  }
#consulta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
  #consulta input, #consulta textarea {
    width: 100%;
    padding: 0.5em 0px;
    margin-bottom: 1em;
    border: 0px;
    border-bottom: solid 1px var(--verde);
    outline: 0px;
    font-family: inherit;
    font-size: 1.2em;
    resize: none;
  }

/* FOOTER */
#footer {
  position: relative;
  display: block;
  width: 100%;
  background: #89878C;
  color: #FFF;
  padding: 40px;
  box-sizing: border-box;
}
#footer .container {
  position: relative;
  display: block;
  max-width: 100%;
  text-align: center;
}
#links-interes {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0px;
  background: #FFF;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
#links-interes img {
  max-height: 50px;
  margin: 20px;
}

/* GALERÍA */
#filtros {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 90px 40px 20px 40px;
  box-sizing: border-box;
  color: #FFF;
  background: #03883A;
}
#filtros p {
  margin: 0px;
}
#gallery {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  padding: 40px;
  box-sizing: border-box;
  overflow-x: hidden;
  z-index: 2;
  text-align: center;
}
#courtain {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 11;
  transition: opacity 0.5s;
  pointer-events: none;
}
#courtain.shown {
  opacity: 1;
  pointer-events: auto;
}
#showroom {
  position: fixed;
  display: block;
  width: 500px;
  max-width: 100%;
  padding: 0px;
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  left: 50%;
  top: 50%;
  background: #89878C;
  color: #FFF;
  z-index: 12;
  transform: translate(-50%,-50%);
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
}
.top-table {
  width: 100%;
  vertical-align: bottom;
}
#intro {
  font-size: 3em;
  line-height: 1em;
  font-family: 'CalibriBold';
  text-align: center;
  color: #DDD;
  margin: 80px 0px;
  animation-name: articles;
  animation-duration: 1.2s;
}
.s-title {
  font-size: 1.5em;
  line-height: 1em;
  font-family: 'CalibriBold';
  margin: 18px;
}
.s-product {
  width: 100%;
  height: 400px;
  background: #FFF;
  overflow: hidden;
  text-align: center;
}
.s-product img {
  max-width: 100%;
  max-height: 100%;
}
.s-lead {
  font-size: 0.9em;
  line-height: 1em;
  margin: 20px;
}
.s-text {
  font-size: 0.9em;
  line-height: 1em;
  margin: 20px;
  margin-top: 0px;
}
.a-info {
  width: 100%;
}
.a-info-title {
  font-family: 'CalibriBold';
  background: #FFF;
  color: #89878C;
}
.a-info-title td {
  padding: 7px;
}
.a-info-drop td {
  padding: 7px;
  padding-top: 3px;
  vertical-align: top;
}
#s-cross {
  position: absolute;
  top: 20px;
  right: 20px;
}

#splash {
  height: 100%;
}
#whatsapp-bubble {
  position: sticky;
  bottom: 0px;
  right: 20px;
  float: inline-end;
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 2;
}
#whatsapp-bubble:hover {
  opacity: 1;
}
  #whatsapp-bubble a {
    position: absolute;
    right: 0px;
    bottom: 1em;
    opacity: 1!important;
  }
  #whatsapp-bubble img {
    height: 80px;
  }

/* WIDTH FIX */
#novedades, #nosotros, #contacto, #footer {
  --padding: max(10%, 40px);
  padding-left: var(--padding) !important;
  padding-right: var(--padding) !important;
}
