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

@font-face {
  font-family: "helvetica-extended";
  src: url("/assets/Helvetica53Extended.otf") format('opentype');
}
html {
  font-size: 62.5%;
  font-family: "helvetica-extended", sans-serif;
  scroll-behavior: smooth;
  min-width: 375px;
  background-color: #000;
}
h1 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
}

:root {
  --background-white: #fff;
  --background-black: #000;
  --background-grey: #212121;
  --background-grey-secondary: #757575;
  --background-blue: #897a49;
  --background-blue-secondary: #716540;
  --background-orange: #fd9e27;

  --padding: 38px;

  --h1: 4.2rem;
  --h2: 3rem;
  --h3: 2rem;
  --p: 18px;
}

/* ----- Menu ----- */
#MenuNavBar {
  width: 100%;
  height: 100%;
  background-color: var(--background-grey);
  position: fixed;
  z-index: 124;
  padding: 40px;
  left: 100%;
  transition: left 0.5s ease-in-out;
}
#MenuNavBar .closeMenu {
  width: 36px;
  height: 40px;
  margin-left: auto;
}
#MenuNavBar .closeMenu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#MenuNavBar ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  row-gap: 20px;
}
#MenuNavBar a {
  text-decoration: none;
  color: var(--background-white);
  font-weight: 400;
  font-size: 3rem;
}
/* ----- Menu ----- */

/* ----- Header ----- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px;
  height: fit-content;
  width: 100%;
  position: sticky;
  top: 0px;
  background-color: var( --background-grey);
  z-index: 500;
}
header .logo--wrapper {
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
}
header nav {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 100%;
}
header nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: 40px;
  font-size: var(--p);
  color: var(--background-white);
}
header nav ul a {
  font-size: var(--p);
  color: var(--background-white);
  text-decoration: none;
  cursor: pointer;
}
header .menu--wrapper {
  place-items: center;
  width: 36px;
  height: 40px;
  display: none;
}
header .menu--wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ----- Header ----- */

/* ----- MainBanner ----- */
#MainBanner {
  width: 100%;
  height: fit-content;
  display: flex;
}
#MainBanner .mainbanner--left-container {
  width: 64%;
  height: 780px;
  background-image: url("./assets/HomeBanner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  justify-items: flex-start;
  align-items: center;
}
#MainBanner .mainbanner--text-wrapper {
  display: flex;
  column-gap: 34px;
  margin-bottom: 160px;
}
#MainBanner .mainbanner--text-wrapper {
  display: flex;
  column-gap: 34px;
  margin-bottom: 10px;
  margin-top: 10PX;
}
#MainBanner .mainbanner--text-wrapper .rectangle {
  width: 120px;
  height: 120px;
  background-color: var(--background-dark-blue);
}
#MainBanner .mainbanner--text-wrapper h1 {
  color: var(--background-white);
  font-size: var(--h1);
  font-weight: 400;
  line-height: 38px;
}
#MainBanner .mainbanner--text-wrapper p {
  color: var(--background-white);
  font-size: var(--p);
  text-transform: uppercase;
  margin-top: 8px;
}
#MainBanner .mainbanner--right-container {
  width: 36%;
  height: 780px;
  background-color: var(--background-blue);
  /* background-image: url("./assets/greenMosaic.png"); */
  display: grid;
  place-items: center;
}
#MainBanner .mainbanner--right-container p {
  font-size: var(--p);
  color: var(--background-white);
  max-width: 340px;
  margin-bottom: 160px;
  padding: 20px;
}
/* ----- MainBanner ----- */

/* ----- ShowProducts ----- */
#ShowProducts {
  width: 100%;
  height: 726px;
  display: flex;
  background-color: var(--background-white);
}
#ShowProducts .ShowProducts--left-wrapper {
  width: 20%;
  height: 100%;
  background-color: var(--background-white);
  background-image: url("./assets/patron.png");
}
#ShowProducts .ShowProducts--right-wrapper {
  width: 80%;
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
#ShowProducts .ShowProducts--carrousel .rectangle {
  background-color: var(--background-blue-secondary);
  width: 70px;
  height: 70px;
  position: absolute;
  top: -70px;
  left: 0;
}
#ShowProducts .ShowProducts--carrousel {
  height: 512px;
  width: 100%;
  background-color: #716540;
  margin-top: -214px;
  position: relative;
  z-index: 123;
}
#ShowProducts .ShowProducts--Solicitar {
  display: flex;
  column-gap: 40px;
}
#ShowProducts .ShowProducts--rectanle {
  background-color: var(--background-blue);
  width: 60px;
  height: 333px;
  margin-bottom: -190px;
  z-index: 5;
}
#ShowProducts .ShowProducts--right-wrapper h1 {
  font-size: var(--h1);
  font-weight: 400;
  line-height: 20px;
}
#ShowProducts .ShowProducts--right-wrapper .text--wrapper {
  padding-top: 68px;
}
#ShowProducts .ShowProducts--right-wrapper .text--wrapper h1 {
  line-height: 30px;
}
#ShowProducts .ShowProducts--right-wrapper .callToAction {
  display: grid;
  padding-top: 68px;
  justify-items: center;
  margin-left: 20%;
  cursor: pointer;
}
/* ----- ShowProducts ----- */

/* ----- QuienesSomos ----- */
#QuienesSomos {
  width: 100%;
  height: fit-content;
  display: flex;
  background-color: var(--background-blue);
  margin-bottom: 5px;
  padding: 30px 100px 30px 100px;
  column-gap: 70px;
  position: relative;
  z-index: 4;
}
#QuienesSomos .QuienesSomos--title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#QuienesSomos .QuienesSomos--title h1 {
  color: var(--background-white);
  font-size: var(--h1);
  font-weight: 400;
  line-height: 38px;
}
#QuienesSomos .QuienesSomos--text {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
#QuienesSomos .QuienesSomos--text p {
  color: var(--background-white);
  font-size: var(--p);
  font-weight: 400;
  text-align: justify;
}
#QuienesSomos .QuienesSomos--text h1 {
  margin-top: 5%;
  color: var(--background-white);
  font-size: var(--h3);
  font-weight: 50;
}
/* ----- QuienesSomos ----- */

/* ----- Marcas ----- */
#Marcas {
  height: 400px;
  position: relative;
  display: flex;
  column-gap: 70px;
  align-items: center;
  justify-content: center;
  background-color: var(--background-white);
}
#Marcas h1 {
  font-size: 21vw !important;
  font-weight: 400;
  color: #eaeaea;
  position: absolute;
  top: 0px;
  left: -16px;
  z-index: 1;
  line-height: 250px;
}
#Marcas .Marcas-swiper--wrapper {
  height: 100px;
  width: 80%;
  z-index: 4;
}
#Marcas .arrow {
  cursor: pointer;
  z-index: 4;
}
#Marcas .Marcas-swiper--container {
  width: 1174px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* ----- Marcas ----- */

/* ----- Contacto ----- */
#Contacto {
  height: 500px;
  width: 100%;
  display: flex;
  position: relative;
}
#Contacto .Contacto--left {
  width: 20%;
  height: 100%;
  background-image: url("./assets/contactImage.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#Contacto .Contacto--right {
  width: 80%;
  height: 100%;
  background-color: var(--background-blue);
}
#Contacto .Contacto--wrapper {
  position: absolute;
  top: 90px;
  width: 80%;
  height: fit-content;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#Contacto .Contacto--wrapper .info {
  display: grid;
  grid-template-areas:
    "header sec"
    "ter main";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 80px 1fr;
}
#Contacto .Contacto--wrapper .info .text--wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  font-size: 15px;
  color: var(--background-white);
  grid-area: main;
}
#Contacto .text--wrapper .text {
  height: fit-content;
  display: flex;
  column-gap: 10px;
}
#Contacto .Contacto--wrapper .info h1 {
  font-size: var(--h1);
  color: var(--background-white);
  font-weight: 400;
  grid-area: header;
}
#Contacto .Contacto--wrapper form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: relative;
}
#Contacto .Contacto--wrapper form input {
  height: 52px;
  background-color: var(--background-blue-secondary);
  color: var(--background-grey);
  border: none;
  width: 389px;
  padding-left: 24px;
}
#Contacto .Contacto--wrapper form input:focus {
  outline: none;
}
#Contacto .Contacto--wrapper form input.email {
  height: 130px;
}
#Contacto .Contacto--wrapper form input::placeholder {
  font-size: 15px;
  font-family: "helvetica-extended", sans-serif;
  background-color: var(--background-blue-secondary);
  color: var(--background-blue);
}
#Contacto .Contacto--wrapper form input:focus {
  border: none !important;
  background-color: var(--background-blue-secondary);
}
#Contacto .Contacto--wrapper form input:active {
  border: none !important;
  background-color: var(--background-blue-secondary);
}
#Contacto .Contacto--wrapper form button {
  width: 116px;
  font-size: 15px;
  background-color: var(--background-grey);
  color: var(--background-blue);
  border: none;
  padding: 12px;
  position: absolute;
  bottom: -7%;
  right: 20px;
}
/* ----- Contacto ----- */

/* ----- Footer ----- */
footer {
  height: 270px;
  width: 100%;
  display: flex;
  position: relative;
  background-color: var(--background-white);
}
footer .Footer--left {
  width: 80%;
  height: 100%;
  background-color: var(--background-black);
}
footer .Footer--right {
  width: 20%;
  height: 100%;
  background-image: url("./assets/patron.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer .Footer--float {
  height: 260px;
  width: 80%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  background-color: var(--background-grey);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
}
footer .Footer--float p {
  color: var(--background-white);
  font-size: 12px;
  text-align: center;
}
/* ----- Footer ----- */

/* ----- Media Queries ----- */
@media screen and (max-width: 1400px) {
  #Marcas .Marcas-swiper--container {
    width: 864px;
  }
}
@media screen and (max-width: 1133px) {
  #Contacto {
    height: 820px;
  }
  #Contacto .Contacto--wrapper {
    row-gap: 50px;
  }
  #Contacto .Contacto--wrapper .info .text--wrapper {
    grid-area: ter;
  }
}
@media screen and (max-width: 1060px) {
  #Marcas h1 {
    font-size: calc(100px - 10%);
  }
  #Marcas .Marcas-swiper--wrapper {
    width: 689px;
  }
}
@media screen and (max-width: 959px) {
  #Marcas .Marcas-swiper--container {
    width: 76%;
  }
}
@media screen and (max-width: 925px) {
  #ShowProducts .ShowProducts--right-wrapper .callToAction {
    margin-left: 20px;
  }
  #ShowProducts .ShowProducts--rectanle {
    width: 0px;
  }
  #ShowProducts .ShowProducts--Solicitar {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  #QuienesSomos {
    flex-wrap: wrap;
    row-gap: 40px;
  }
  header .menu--wrapper {
    display: grid;
  }
  header nav {
    display: none;
  }
  #Contacto {
    height: 820px;
  }
  #Contacto .Contacto--wrapper {
    row-gap: 50px;
  }
}
@media screen and (max-width: 868px) {
  #MainBanner {
    display: grid;
  }
  #MainBanner .mainbanner--left-container {
    width: 100%;
  }
  #MainBanner .mainbanner--right-container {
    width: 100%;
  }
  #Marcas .Marcas-swiper--container {
    width: 80%;
  }
  #Marcas .Marcas-swiper--wrapper {
    width: 446px;
  }
}
@media screen and (max-width: 690px) {
  #ShowProducts .ShowProducts--right-wrapper .text--wrapper {
    margin-left: 10px;
  }
  #ShowProducts .ShowProducts--rectanle {
    display: none;
  }
  #Contacto form {
    width: 100%;
  }
  #Contacto .Contacto--wrapper form input {
    width: 100%;
  }
  #Marcas .Marcas-swiper--wrapper {
    width: 201px;
  }
  
}
@media screen and (max-width: 480px) {
  header {
    padding-inline: 10px;
  }

  #MainBanner .mainbanner--text-wrapper h1 {
    font-size: 3rem;
  }
  #MainBanner .mainbanner--text-wrapper p {
    font-size: 1.2rem;
  }
  #ShowProducts .ShowProducts--rectanle {
    display: none;
  }
  #ShowProducts .ShowProducts--right-wrapper h1 {
    font-size: 3rem;
  }
  #ShowProducts .ShowProducts--right-wrapper .text--wrapper {
    margin-left: 10px;
  }
  #QuienesSomos {
    padding-inline: 30px;
  }

  #Marcas .Marcas-swiper--container {
    width: 305px;
  }
  #Marcas h1 {
    font-size: 80px;
    left: 0px;
    line-height: 80px;
  }
  #MainBanner .mainbanner--text-wrapper {
    margin-bottom: 0px;
  }
  #Contacto .Contacto--wrapper .info .text--wrapper {
    grid-area: ter;
  }
}
/* ----- Media Queries ----- */

/* ---- Animations ---- */
.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-1-24 16:10:6
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-1-24 16:14:55
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/* ---- Animations ---- */
