.main-header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 74px;
  background: #fff;
  box-shadow: 1px 2px 4px #888888;
  color: #000;
  z-index: 1;
  transition: 0.4s ease-out;
}
.main-header .headerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  width: 80vw;
  max-width: 1200px;
  max-height: 13vh;
}
.main-header .logo {
  width: 190px;
}
.main-header a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.main-header .nav-links {
  display: flex;
  list-style: none;
}
.main-header .nav-links .nav-link {
  transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 32, 1.275);
}
.main-header .nav-links .nav-link a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}
.main-header .nav-links .nav-link a:hover {
  background: rgba(0, 0, 0, 0.2);
}
.main-header .menu-icon {
  display: none;
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 1;
}
.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: #000;
  height: 2px;
  width: 20px;
  border-radius: 4px;
}
.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #000;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}
.main-header .menu-icon__line::after {
  transform: translateY(5px);
}
.main-header .menu-btn {
  position: absolute;
  top: -100px;
}
.main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::before {
  transform: translateY(-6px);
}
.main-header .menu-btn:focus ~ .menu-icon .menu-icon__line::after {
  transform: translateY(6px);
}
.main-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}
.main-header.scrolled .nav-link a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}
.main-header.scrolled .nav-link a:hover {
  background: rgba(255, 253, 253, 0.2);
}
.main-header.scrolled .menu-icon__line, .main-header.scrolled .menu-icon__line::before, .main-header.scrolled .menu-icon__line::after {
  background: #fff;
}

@media screen and (max-width: 850px) {
  .main-header {
    height: 74px;
  }
  .main-header .menu-icon {
    display: block;
  }
  .main-header .menu-icon__line {
    animation: colsedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    animation: colsedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    animation: colsedBtm 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 5vh;
    padding: 0.5rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    background: #272727;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
    clip-path: circle(200px at top right);
  }
  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 100vw;
    margin: auto;
    text-align: auto;
  }
  .main-header .nav-links .nav-link a {
    display: block;
    padding: 2rem 0;
  }
  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    clip-path: circle(100% at center);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type() {
    transition-delay: 0.7s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #fff;
    animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: #fff;
    animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: #fff;
    animation: openBtm 0.8s forwards;
  }
  .zaakCatalogoUno {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  .zaakCatalogoDos {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  .maps-container {
    flex-direction: column;
  }
  .maps-container .maps {
    margin: auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .whatsContainer {
    flex-direction: column;
  }
  .whatsContainer #preguntasText {
    position: static;
    padding: 0px;
    margin: auto;
    width: 100%;
    max-width: 80%;
  }
  .whatsContainer #atencionText {
    position: relative;
    margin-top: 4em;
  }
  .whatsContainer #whatsImg {
    position: static;
    margin: auto;
    width: 80%;
    max-width: 300px;
    min-width: 200px;
  }
  .whatsContainer #whatsQRbox {
    position: static;
    margin: auto;
    width: 80%;
    max-width: 300px;
    min-width: 200px;
  }
  .distribuidorZaac {
    flex-direction: column;
  }
  .distribuidorThermotek {
    flex-direction: column-reverse;
  }
  .footerContainer {
    flex-direction: column;
    padding: 0.5em;
  }
  .footerContainer .sucursales,
.footerContainer .contacto,
.footerContainer .horario {
    padding: 1em;
  }
  .footerContainer .subtituloText {
    padding: 0.3em 3em 0.7em 0em;
    font-size: 2rem;
    font-weight: 500;
  }
  .footerContainer .subtituloSucursalesText {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .footerContainer #gmaps {
    font-size: medium;
  }
  .footerContainer #correo {
    font-size: 0.9rem;
    text-decoration: none;
    color: #fff;
    text-decoration: underline;
  }
  .subscribete {
    width: 100% !important;
  }
  .about-container {
    flex-direction: column;
  }
  .about-container .about-image {
    margin: auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .contact-container {
    flex-direction: column;
  }
  .contact-container .contact-image {
    margin: auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .zaakLogoContainer {
    height: 215px !important;
  }
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto auto auto !important;
    padding: 20px;
    border: 1px solid #888;
    width: 100% !important;
    border-radius: 10px;
  }
  .body-description {
    flex-direction: column;
    width: 100%;
  }
  .body-description .container-image-description {
    width: 100% !important;
    display: flex;
  }
  .body-description .container-image-description .image-description {
    width: 100%;
  }
  .body-description .information-description {
    width: 100% !important;
  }
}
@media screen and (max-width: 350px) {
  .main-header {
    width: 100vw;
  }
  .main-header .headerWrap {
    margin: 0;
    padding: 0;
  }
  .main-header .logo {
    width: 50vw;
  }
  .QRbox {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .QRbox .sucursal {
    padding-bottom: 2em;
    color: #272727;
    font-size: 12px;
  }
  .footerContainer #gmaps {
    font-size: 0.5rem;
  }
  .zaakLogoContainer {
    height: 110px !important;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes colsedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes openMid {
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes colsedMid {
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes colsedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
.carContainer {
  position: relative;
  margin: 4.5em 0em auto;
  padding: 0%;
  width: 100%;
}
.carContainer img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
}
.carContainer .bannerImg {
  display: none;
  animation: slide-down 0.8s ease-out;
  -webkit-animation: slide-down 0.8s ease-out;
  -moz-animation: slide-down 0.8s ease-out;
}
.carContainer .noVisible {
  display: none;
  animation: slide-down 0.8s ease-out;
  -webkit-animation: slide-down 0.8s ease-out;
  -moz-animation: slide-down 0.8s ease-out;
}
.carContainer .visible {
  margin: auto;
  width: 100%;
  display: block;
  animation: slide-down 0.8s ease-out;
  -webkit-animation: slide-down 0.8s ease-out;
  -moz-animation: slide-down 0.8s ease-out;
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  100% {
    opacity: 1;
    transition: all 0.5s ease-in-out;
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  100% {
    opacity: 1;
    transition: all 0.5s ease-in-out;
  }
}
.carContainer .btn-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100%;
  transform: translateY(-50%);
  transform: translateX(50%);
}
.carContainer .btn-container button {
  font-size: 30px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 90px;
  border: none;
  width: 35px;
}
.carContainer .btn-container button:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.carContainer .btn-container #btn-prev {
  margin-left: 20px;
}
.carContainer .btn-container #btn-next {
  margin-right: 20px;
}

.maps-container {
  display: flex;
  margin: 25px auto;
  width: 100%;
  max-width: 1200px;
}
.maps-container .maps {
  margin: auto;
  width: 100%;
}
.maps-container .maps #map {
  margin: 0;
  width: 100%;
  max-width: 600px;
}
.maps-container .addressBox {
  padding: 5%;
  margin: auto;
  width: 100%;
  text-align: left;
  font-size: 38px;
  font-weight: 500;
  color: #272722;
}
.maps-container .addressBox #QR {
  margin: auto;
  width: 100px;
  max-width: 100%;
}
.maps-container .addressBox .titulo {
  font-size: 38px;
  font-weight: 600;
}
.maps-container .addressBox .subtitulo {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 500;
}
.maps-container .addressBox .direccion {
  font-size: 14px;
  font-weight: 400;
}
.maps-container .addressBox .socialMedia {
  display: flex;
}
.maps-container .addressBox .socialMedia .social-icons {
  margin: auto;
}
.maps-container #sociales {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 2em;
  color: #484848;
  text-align: right;
}
.maps-container .QRbox {
  display: flex;
  direction: row;
  justify-content: space-around;
}
.maps-container .QRbox .sucursal {
  direction: column;
  color: #272727;
  font-size: 12px;
}

.distribuidorZaac {
  display: flex;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  font-size: 1.6rem;
  font-weight: 300;
  padding: 1em;
  background: rgba(234, 251, 239, 0.7);
}
.distribuidorZaac #zaacLogo {
  margin: auto;
  width: 100%;
  max-width: 400px;
  padding: 1em;
}
.distribuidorZaac .zaacText {
  margin: auto;
  width: 100%;
  padding: 1em;
}

.distribuidorThermotek {
  display: flex;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  font-size: 1.6rem;
  font-weight: 300;
  padding: 1em;
  background: rgba(220, 219, 255, 0.7);
}
.distribuidorThermotek #thermotekLogo {
  margin: auto;
  width: 100%;
  max-width: 400px;
  padding: 1em;
}
.distribuidorThermotek .thermotekText {
  margin: auto;
  width: 100%;
  padding: 1em;
}

.bold {
  font-weight: 900;
}

.whatsContainer {
  display: flex;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  padding: 2.5em;
}
.whatsContainer #preguntasText {
  position: absolute;
  margin: auto;
  font-size: 3rem;
  font-weight: 500;
}
.whatsContainer #atencionText {
  position: relative;
  top: 1em;
  font-size: 1.6rem;
  font-weight: 300;
  padding-top: 3.5em;
}
.whatsContainer #whatsImg {
  margin: auto;
  width: 100%;
  max-width: 30em;
  padding-top: 1.5em;
}
.whatsContainer #whatsQRbox {
  margin: auto;
  width: 100%;
  max-width: 20em;
}

.btn-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 17;
  display: flex;
  cursor: pointer;
  border-radius: 100%;
}

.footerContainer {
  display: flex;
  margin: auto;
  width: 100%;
  padding: 3em 2.5em;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  background: #272727;
}
.footerContainer p {
  padding: 0.2em;
}
.footerContainer .sucursales, .footerContainer .contacto, .footerContainer .horario {
  padding: 0em;
}
.footerContainer .socialMedia {
  display: flex;
}
.footerContainer .socialMedia .social-icons {
  margin: auto;
}
.footerContainer .subtituloText {
  font-size: 2rem;
  font-weight: 500;
}
.footerContainer .subtituloSucursalesText {
  font-size: 1.5rem;
  font-weight: 500;
}
.footerContainer #correo {
  text-decoration: none;
  color: #fff;
  text-decoration: underline;
}

.zaakPage {
  margin: 4.5em auto 0em auto;
  width: 100%;
}
.zaakPage .zaakLogoContainer {
  width: 100%;
  height: 235px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@supports (object-fit: cover) {
  .zaakPage .zaakLogoContainer .zaakLogoContainer img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .zaakPage .zaakLogoContainer #zaakPageLogo {
    width: 100%;
    max-width: 100%;
    min-width: 100px;
  }
}
.zaakPage .zaakCatalogo {
  flex-direction: column;
  padding: 0em 1em;
  margin: auto;
  width: 100%;
}
.zaakPage .zaakCatalogo .zaakCatalogoImg {
  margin: auto;
  width: 100%;
  max-width: 400px;
  min-width: 100px;
}
.zaakPage .zaakCatalogo .zaakCatalogoUno,
.zaakPage .zaakCatalogo .zaakCatalogoDos {
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  width: 100%;
  padding: 0.5em;
  text-align: center;
}
.zaakPage .zaakCatalogo .zaakCatalogoUno a:link,
.zaakPage .zaakCatalogo .zaakCatalogoDos a:link {
  text-decoration: none;
}
.zaakPage .zaakCatalogo .zaakCatalogoUno a:hover,
.zaakPage .zaakCatalogo .zaakCatalogoDos a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(101, 2, 2, 0.7);
}
.zaakPage .zaakCatalogo .zaakCategoriaTitulo {
  margin: auto;
  width: 100%;
  max-width: 200px;
  min-width: 100px;
  text-align: left;
  color: #650202;
  font-size: 18px;
  font-weight: 500;
}
.zaakPage .zaakCatalogo .zaakCategoriaSubtitulo {
  margin: auto auto 2em auto;
  width: 100%;
  max-width: 200px;
  min-width: 100px;
  text-align: left;
  text-decoration: none;
  color: #650202;
  font-size: 14px;
  font-weight: 400;
}

.productPage {
  margin: 4.5em auto 0em auto;
  width: 100%;
  max-width: 1200px;
}
.productPage .productTitleCategory {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
  width: 100%;
  background-color: #cccccc;
  text-align: center;
}
.productPage .containerCatZaak {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  width: auto;
  margin: 10px;
  background-color: rgba(168, 168, 178, 0.4);
  border-bottom: 1px solid black;
  border-radius: 3px;
}
.productPage .containerCatZaak .containerProduct {
  width: 250px;
  height: 250px;
  margin: 10px auto 10px auto;
}
.productPage .containerCatZaak .containerProduct .titleProduct {
  text-align: center;
  margin-top: 2px;
}
.productPage .containerCatZaak .containerProduct .containerImageProduct {
  display: flex;
  width: auto;
  justify-content: center;
}
.productPage .containerCatZaak .containerProduct .containerImageProduct .imageProduct {
  height: 150px;
  padding: 5px;
  cursor: pointer;
}
.productPage .containerCatZaak .containerProduct .charectristisProduct {
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fefefe;
  margin: 5% 15% auto 15%;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
  border-radius: 10px;
}
.modal .modal-content .btn-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal .modal-content .btn-modal-close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal-content .modal-header {
  width: 100%;
  margin: 10px;
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #888;
}
.modal .modal-content .modal-body {
  margin: 5px;
  width: 100%;
  min-height: 200px;
}
.modal .modal-content .modal-footer {
  text-align: center;
  margin-top: 20px;
}
.modal .modal-content .modal-footer .btn-ficha-tecnica {
  padding: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  background-color: darkorange;
  border-radius: 5px;
  border: 0px;
  box-shadow: 0px 3px rgba(215, 202, 202, 0.6784313725);
}
.modal .product-description {
  width: auto;
  margin: 10px;
  text-align: center;
  font-size: 1.3rem;
}
.modal .product-description .sub-description {
  font-size: 1rem;
  background-color: rgba(131, 179, 233, 0.582);
}
.modal .body-description {
  width: 100%;
  background-color: rgba(188, 179, 179, 0.65);
  display: flex;
  border-radius: 10px;
}
.modal .body-description .container-image-description {
  width: 50%;
  display: flex;
  padding: 10px;
}
.modal .body-description .container-image-description .image-description {
  width: 100%;
  margin: auto;
}
.modal .body-description .information-description {
  width: 50%;
}
.modal .container-img-icons {
  width: auto;
  text-align: center;
  margin-top: 20px;
}
.modal .container-img-icons .img-icon {
  width: 90px;
  margin: 10px;
}

.about-container {
  display: flex;
  margin: 7.5em auto 5em auto;
  width: 100%;
  max-width: 1200px;
}
.about-container .about-image {
  margin: auto;
  width: 100%;
}
.about-container .about-image img {
  margin: 0;
  width: 100%;
  max-width: 600px;
}
.about-container .contentAboutBox {
  padding: 5%;
  margin: auto;
  width: 100%;
  text-align: left;
  font-size: 38px;
  font-weight: 500;
  color: #272722;
}
.about-container .contentAboutBox .titulo {
  font-size: 38px;
  font-weight: 600;
}
.about-container .contentAboutBox .subtitulo {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 500;
}
.about-container .contentAboutBox .direccion {
  font-size: 14px;
  font-weight: 400;
}
.about-container .contentAboutBox .socialMedia {
  display: flex;
}
.about-container .contentAboutBox .socialMedia .social-icons {
  margin: auto;
}
.about-container #sociales {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 2em;
  color: #484848;
  text-align: right;
}

.contact-container {
  display: flex;
  margin: 7.5em auto 5em auto;
  width: 100%;
  max-width: 1200px;
}
.contact-container .contact-image {
  margin: auto;
  width: 100%;
}
.contact-container .contact-image img {
  margin: 0;
  width: 100%;
  max-width: 600px;
}
.contact-container .contentcontactBox {
  padding: 5%;
  margin: auto;
  width: 100%;
  text-align: left;
  font-size: 38px;
  font-weight: 500;
  color: #272722;
}
.contact-container .contentcontactBox .titulo {
  font-size: 38px;
  font-weight: 600;
}
.contact-container .contentcontactBox .subtitulo {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 500;
}
.contact-container .contentcontactBox .input-form {
  border: 0px;
  background-color: #f2eeee;
}
.contact-container .contentcontactBox .socialMedia {
  display: flex;
}
.contact-container .contentcontactBox .socialMedia .social-icons {
  margin: auto;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Josefin Sans", sans-serif;
  margin: 0px;
  padding: 0px;
}

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