@charset "UTF-8";
html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  width: calc(100vw - 17px);
  min-height: 100vh;
  background-color: #0a1b50;
  overflow-x: hidden;
}

#menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: #ebebeb;
}
#menu img {
  height: 40px;
}
#menu #menuList li {
  transition: all 300ms;
}
#menu #menuList li a {
  color: #0a1b50;
  cursor: pointer;
}
#menu #menuList li:hover a {
  color: #C1382E;
}
#menu #menuList .activeItemList a {
  color: #C1382E;
}
#menu #buttonsContactBox {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100px;
  z-index: 99;
}
#menu #buttonsContactBox a {
  font-size: 30px;
  border: none;
  background-color: transparent;
  color: #0a1b50;
  cursor: pointer;
  transition: all 300ms;
}
#menu #buttonsContactBox #instagramButton {
  color: #c332c1;
}
#menu #buttonsContactBox #whatsappButton {
  color: #25d366;
}

.swal2-popup {
  background-color: #ebebeb;
  color: #0a1b50;
}

#containerPopUpWhatsapp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#containerPopUpWhatsapp .buttonPopUpWhatsapp {
  width: 70%;
  padding: 20px 0px;
  background-color: #ebebeb;
  font-size: 1.4rem;
  color: #0a1b50;
  border: 2px solid #0a1b50;
  border-radius: 20px;
  text-decoration: none;
  transition: all 300ms;
}
#containerPopUpWhatsapp .buttonPopUpWhatsapp i::before {
  margin-right: 10px;
  color: #25d366;
}
#containerPopUpWhatsapp .buttonPopUpWhatsapp:first-child {
  margin-bottom: 20px;
}
#containerPopUpWhatsapp .buttonPopUpWhatsapp:hover {
  background-color: #0a1b50;
  color: #ebebeb;
}
#containerPopUpWhatsapp p {
  margin-top: 10px;
}

#home {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #ebebeb;
  z-index: 100;
  transition: all 300ms;
  position: fixed;
}
#home img {
  position: absolute;
  top: calc(50% - 64px);
  left: calc(50% - 100px);
  width: 200px;
  height: 128px;
  transition: all 300ms;
}
#home span {
  position: absolute;
  top: calc(50% - 64px);
  left: calc(50% - 100px);
  width: 40px;
  height: 128px;
  background-image: url("/assets/img/logoMenu.png");
  background-size: cover;
  background-position: left;
  filter: grayscale(100%);
  pointer-events: none;
  animation-name: loaderBar;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.sectionAllOK {
  animation-name: homeIntro;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.sectionAllOK span {
  width: 40px;
  animation-name: loaderBarFinal !important;
}
.sectionAllOK img {
  animation-name: logoIntro;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}

#about {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: calc(100vh - 66px);
  padding-top: 66px;
  z-index: 4;
  background-color: #0a1b50;
  scroll-margin-top: 66px;
}
#about #welcomerText {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-content: start;
  justify-content: center;
  width: 50%;
  padding: 30px;
  font-size: 1.6rem;
  text-align: left;
  color: #ebebeb;
  opacity: 1;
}
#about #welcomerText .sectionIconAbout {
  position: relative;
  width: 100%;
  height: 20%;
  max-height: 200px;
  margin: 50px 0px;
}
#about #welcomerText .sectionIconAbout img {
  position: absolute;
  height: 100%;
  left: 0;
}
#about #welcomerText p {
  width: 100%;
  opacity: 1;
}
#about .carruselContainerImg {
  width: 50%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: end;
}
#about .carruselContainerImg .carruselTrackImg {
  width: 100%;
  height: calc(100vh - 60px);
  position: relative;
  display: flex;
  justify-content: end;
  transition: transform 0.5s ease-in-out;
}
#about .carruselContainerImg .carruselTrackImg .carruselItem {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: all 300ms;
  width: 100%;
  height: 100%;
}
#about .carruselContainerImg .carruselTrackImg .carruselItem .carruselImgBox {
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation-name: imgAboutIntro;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 500ms;
}
#about .carruselContainerImg .carruselTrackImg .carruselItem .carruselImgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .carruselContainerImg .carruselTrackImg .carruselItem.activeItem {
  opacity: 1;
}

#products {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: baseline;
  width: 100%;
  min-height: calc(100vh - 66px);
  z-index: 3;
  background-color: #0a1b50;
  scroll-margin-top: 66px;
}
#products #textProducts {
  width: 50%;
  height: cacl(100vh -150px);
  padding: 30px;
  padding-bottom: 0px;
  font-size: 1.6rem;
  color: #ebebeb;
  opacity: 1;
  order: 0;
}
#products #textProducts .textProductsTitle {
  text-align: left;
}
#products #textProducts .textProductsTitle h2 {
  border-bottom: 2px solid #C1382E;
}
#products #textProducts #productsList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
#products #textProducts #productsList .productsListBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}
#products #textProducts #productsList .productsListBox span {
  display: flex;
  width: 80%;
  min-height: 50px;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #1339A8;
}
#products #textProducts #buttonsProductBox {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
#products #textProducts #buttonsProductBox #catalogButton {
  padding: 10px;
  color: #ebebeb;
  border: 2px solid #ebebeb;
  border-radius: 10px;
  background-color: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: all 500ms;
}
#products #textProducts #buttonsProductBox #catalogButton:hover {
  background-color: #ebebeb;
  color: #0a1b50;
}
#products #imgProducts {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  height: calc(100vh - 90px);
  order: 1;
}
#products #imgProducts .imgProductAux {
  width: 100%;
  height: 100%;
}
#products .marcasBox {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 70px;
  order: 3;
}
#products .marcasBox .marcasCarrusel {
  display: inline-flex;
  animation: scrollMarcas 30s linear infinite;
}
#products .marcasBox .marcasCarrusel img {
  height: 40px;
  /* ajustá según tu diseño */
  margin: 0 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
@keyframes scrollMarcas {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#history {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: baseline;
  width: 100%;
  min-height: calc(100vh - 66px);
  z-index: 2;
  background-color: #0a1b50;
  scroll-margin-top: 66px;
}
#history #textHistory {
  width: 45%;
  min-height: calc(100vh - 150px);
  padding: 30px;
  font-size: 1.6rem;
  color: #ebebeb;
  opacity: 1;
  order: 1;
}
#history #textHistory .textHistoryTitle {
  text-align: left;
}
#history #textHistory .textHistoryTitle h2 {
  border-bottom: 2px solid #C1382E;
}
#history #textHistory .textHistoryP {
  margin-top: 40px;
}
#history #textHistory .textHistoryP p {
  margin-bottom: 40px;
}
#history #textHistory .textHistoryP p:last-child {
  margin-bottom: 0px;
}
#history #imgHistory {
  display: flex;
  flex-wrap: wrap;
  width: 55%;
  height: calc(100vh - 60px);
  order: 0;
}
#history #imgHistory img {
  width: 100%;
  height: 100%;
}
#contact {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: baseline;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 30px;
  background-color: #ebebeb;
  z-index: 5;
}
#contact .infoBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: baseline;
  width: 45%;
}
#contact .infoBox .titleContact {
  width: 100%;
  color: #1339A8;
  font-size: 1.8rem;
  font-weight: 500;
}
#contact .infoBox .infoContact {
  width: 100%;
  color: #7C7C7C;
  font-size: 1.4rem;
  font-weight: 400;
}
#contact .infoBox #infoContactLeft {
  margin-bottom: 15px;
}
#contact .infoBox #infoContactLeft .bi {
  display: block;
  width: 100%;
  font-weight: 400;
  margin-bottom: 5px;
}
#contact .infoBox #infoContactLeft .bi::before {
  color: #000;
  font-size: 30px;
  margin-right: 10px;
}
#contact #infoBoxRight {
  align-content: flex-end;
  justify-content: end;
  align-items: end;
  color: #7C7C7C;
  font-weight: 400;
  font-size: 1.2rem;
}
#contact #infoBoxRight #logoBoxFooter {
  width: 100%;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
#contact #infoBoxRight #logoBoxFooter #logoCompresores,
#contact #infoBoxRight #logoBoxFooter #logoHidraulica {
  width: 230px;
  height: auto;
}
#contact #infoBoxRight #logoBoxFooter p {
  width: 100%;
  text-align: right;
  font-weight: 400;
}
#contact #copyright {
  width: 100%;
  text-align: center;
  color: #7C7C7C;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 20px;
}

@keyframes homeIntro {
  0% {
    height: 100vh;
  }
  90% {
    height: 66px;
  }
  95% {
    height: 66px;
    opacity: 1;
  }
  99% {
    z-index: 100;
  }
  100% {
    height: 66px;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes loaderBar {
  0% {
    width: 200px;
  }
  50% {
    width: 100px;
  }
  100% {
    width: 40px;
  }
}
@keyframes loaderBarFinal {
  from {
    width: 40px;
  }
  to {
    width: 0px;
  }
}
@keyframes logoIntro {
  to {
    opacity: 0;
  }
}
@media (max-width: 1280px) {
  #about #welcomerText {
    font-size: 1.2rem;
  }
  #about #welcomerText .sectionIconAbout {
    margin: 0px;
    margin-bottom: 20px;
  }
  #products #textProducts {
    font-size: 1.2rem;
  }
  #products #imgProducts {
    height: auto;
    min-height: calc(100vh - 60px);
    max-height: 860px;
  }
  #products #imgProducts img {
    height: calc(50% - 90px);
  }
  #products .marcasBox .marcasCarrusel img {
    height: 30px;
  }
  #history #textHistory {
    height: auto;
    min-height: calc(100vh - 150px);
    font-size: 1.1rem;
  }
  #history #textHistory .textHistoryP {
    margin-top: 0px;
  }
  #history #imgHistory {
    height: auto;
    min-height: calc(50vh - 60px);
  }
  #history #imgHistory img {
    height: 100%;
  }
  #contact .infoBox .titleContact {
    font-size: 1.5rem;
  }
  #contact .infoBox .infoContact {
    font-size: 1.2rem;
  }
}
@media (max-width: 1200px) {
  #history #imgHistory #equipoFotoMobile {
    display: inline;
  }
  #history #imgHistory #equipoFotoDesktop {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #menu #buttonsContactBox {
    width: 100%;
    justify-content: end;
  }
  #menu #buttonsContactBox #whatsappButton {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  #about #welcomerText {
    width: 100%;
    min-height: calc(65vh - 90px);
  }
  #about #welcomerText .sectionIconAbout {
    height: 100px;
  }
  #about .carruselContainer {
    width: 100%;
  }
  #about .carruselContainer .carruselTrackImg {
    height: 35vh;
  }
}
@media (max-width: 750px) {
  #containerPopUpWhatsapp .buttonPopUpWhatsapp {
    width: 90%;
  }
  #about #welcomerText .sectionIconAbout {
    margin-bottom: 40px;
  }
  #history #textHistory {
    width: 100%;
    order: 0;
  }
  #history #imgHistory {
    width: 100%;
    height: 320px;
    order: 1;
  }
  #products #textProducts {
    width: 100%;
    margin-bottom: 30px;
  }
  #products #imgProducts {
    width: 100%;
    min-height: auto;
  }
  #products #imgProducts #imageProductNone:first-child {
    display: none;
  }
  #products #imgProducts .imgProductAux {
    height: 340px;
  }
  #contact .infoBox {
    width: 90%;
  }
  #contact .infoBox .titleContact {
    font-size: 25px;
  }
  #contact .infoBox .infoContact {
    font-size: 17px;
  }
  #contact .infoBox #infoContactLeft .bi::before {
    font-size: 25px;
  }
  #contact #infoBoxRight {
    justify-content: center;
    margin-top: 40px;
    font-size: 15px;
  }
  #contact #infoBoxRight #logoBoxFooter {
    justify-content: center;
  }
  #contact #infoBoxRight #logoBoxFooter #logoCompresores,
  #contact #infoBoxRight #logoBoxFooter #logoHidraulica {
    width: 180px;
    height: auto;
  }
  #contact #infoBoxRight #logoBoxFooter p {
    text-align: center;
  }
}/*# sourceMappingURL=styleV05_5.css.map */