@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");


:root {
  --first-color: #31a269;
  --footer-color: #38a46c;
  --color: #000;
  --font: "Montserrat";
  --color-onion: #c1749c;
  --color-corn: #f5ea60;
  --color-letuce: #9bc21d;
  --color-category: #ebecec;
  --margen-top: 4rem;
  --margen-parrafos: 2rem;
  --navmenu-color: #023333;

  /* Tamaño de los titulos */

  --font-titles: clamp(2.5rem, 6vw, 5rem);
  --font-subtitles: clamp(2.5rem, 4vw, 6rem);
  --font-titles-section: clamp(2rem, 4vw, 3.5rem);
  --font-subtitles-section: clamp(1.1rem, 1.2vw, 2rem);

}

/* Reseteo de los estilos */
* {
  padding: 0;
  margin: 0;
}

html {
  box-sizing: border-box;
  font-family: var(--font);
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color);
  font-size: 16px;
}

main {
  flex: 1;
}

a {
  color: var(--color);
  transition: all 0.5s ease-out;
}

a:hover {
  color: var(--first-color);
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
  font-size: 1.5rem;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  /* font-size: var(--step-3); */

}

h4 {
  margin: 0;
}

h5 {
  margin: 0;

}

h6 {
  margin: 0;
  font-size: 0.7rem;

}

img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* border: 6px solid navy; */
}

.container-carrusel-size {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  /* border: 6px solid darkred; */

}

.container-line-production {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  /* border: 6px solid yellow; */

}



/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  /* CSS */
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  /* CSS */
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  /* CSS */
  
}


/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  /* CSS */
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  /* CSS */
  
}