:root {
  --blue: #00B5DB;
  --purple: #662483;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  padding: 0;
}

body.secondary header {
  background: linear-gradient(132deg, var(--purple), var(--blue));
  position: relative;
}

header {
  width: 100%;
  display: flex;
  position: absolute;
  height: 80px;
  font-weight: bold;
  color: white;
  text-align: center;
  align-items: center;
}
header .container {
  display: flex;
  justify-content: space-between;
  max-width: 100vw;
  font-size: 1.125rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.ml-3 {
  margin-left: 1.5rem;
}

.wrapper {
  height: calc(100vh - 4rem);
}
.wrapper > :last-child {
  padding-bottom: 4rem;
}

footer {
  background-color: var(--blue);
  color: white;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
}

a {
  color: white;
  text-decoration: none;
}

h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--blue);
  font-size: 3rem;
  line-height: 1em;
}

h2 {
  color: var(--purple);
  font-size: 1.125rem;
  margin: 0;
}

.mx-auto {
  margin: 0 auto;
}

.v-align {
  margin: auto;
}

.fw-bold {
  font-weight: bold;
}

.linkedin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0077b5;
  color: #ffffff;
  padding: 6px 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.linkedin-button:hover {
  background-color: #005582;
  transform: translateY(-2px);
}

.linkedin-button:active {
  background-color: #004065;
  transform: translateY(0);
}

.linkedin-icon {
  margin-right: 10px;
  font-size: 18px;
}

.container {
  width: 100%;
  max-width: 1056px;
  padding: 0 16px;
  margin-right: auto;
  margin-left: auto;
}

.flex-content-center-x {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.flex-content-center-x p:first-child {
  margin-top: 0;
}
.flex-content-center-x p:last-child {
  margin-bottom: 0;
}

.logo_bg {
  position: relative;
}
.logo_bg::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  background-image: url("../images/logo-x3M_uuX.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

nav {
  display: flex;
  font-size: 1rem;
  align-items: center;
}
nav a {
  display: none;
}
nav a:last-of-type {
  display: inline;
}

.lang-switch {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.75rem !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lang-switch:hover {
  background-color: white;
  border-color: white;
  color: var(--purple) !important;
}

#about {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#about #about-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}
#about #about-grid img {
  width: 35%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
}
#about #about-grid p {
  text-align: justify;
}
#about #team-view {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-around;
}
#about #team-view .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#about #team-view .team-member img {
  margin: 0 auto;
  border-radius: 20px;
}
#about #team-view .team-member h2, #about #team-view .team-member h3, #about #team-view .team-member h4 {
  text-align: center;
  margin: 0 10px;
}
#about #team-view .team-member a {
  gap: 6px;
}

#key-figures {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 15%;
  gap: 20px;
}
#key-figures .key-figure {
  flex: 1 1 calc(20% - 40px);
  max-width: calc(20% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}
#key-figures .key-figure img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
#key-figures .key-figure h1, #key-figures .key-figure h2 {
  text-align: center;
  margin: 10px auto;
}

@media (max-width: 1507px) {
  #key-figures {
    justify-content: center;
    margin: 35px 5%;
    row-gap: 75px;
  }
  #key-figures .key-figure {
    flex: 1 1 calc(30% - 40px);
    max-width: calc(30% - 40px);
  }
  #key-figures .key-figure:nth-child(1) {
    order: 1;
  }
  #key-figures .key-figure:nth-child(2) {
    order: 3;
  }
  #key-figures .key-figure:nth-child(3) {
    order: 2;
  }
  #key-figures .key-figure:nth-child(4) {
    order: 4;
  }
  #key-figures .key-figure:nth-child(5) {
    order: 5;
  }
}
@media (max-width: 820px) {
  #key-figures {
    justify-content: center;
    row-gap: 15px;
  }
  #key-figures .key-figure {
    flex: 1 1 100%;
    max-width: 50%;
  }
  #key-figures .key-figure h1, #key-figures .key-figure h2 {
    margin: 6px auto;
  }
}
@media only screen and (max-width: 800px) {
  #about #about-grid {
    display: flex;
    flex-direction: column;
  }
  #about #about-grid img {
    margin: 0 auto;
    width: 50%;
    height: auto;
  }
  #about #team-view {
    flex-direction: column;
    gap: 30px;
  }
}
#hero {
  color: white;
  background-image: url("../images/stock/header_novafood-ylBS0Ur.webp"), linear-gradient(132deg, var(--purple), var(--blue));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  height: max(400px, 100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#hero h1, #hero h2 {
  color: white;
}
#hero a {
  background-image: linear-gradient(to right, var(--purple), #8C04B3);
  padding: 1em 4em;
  border-radius: 2em;
  font-weight: bold;
  box-shadow: 0 0 29px 2px rgba(0, 0, 0, 0.3);
}
#hero img {
  max-width: 100%;
  height: auto;
}

#about {
  padding: 7rem 0 4rem;
}
#about h1, #about h2 {
  text-align: center;
}
#about img {
  max-width: 100%;
  height: auto;
}
#about .team-view {
  height: 200px;
}
#about .team-view h2, #about .team-view h3 {
  text-align: center;
}

#our-values {
  padding: 4em 0 3em;
  background-image: linear-gradient(132deg, color-mix(in srgb, var(--blue) 25%, white), color-mix(in srgb, var(--purple) 25%, white));
}
#our-values p {
  text-align: center;
}
#our-values h1, #our-values h2 {
  text-align: center;
  margin-bottom: 15px;
}
#our-values .rounded-list-2-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: repeat(2, 1fr);
  grid-auto-rows: minmax(100px, auto);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 30px;
}
#our-values .rounded-list-2-3 li {
  border: 4px solid white;
  border-radius: 50%;
  text-align: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  aspect-ratio: 1/1;
  padding: 14px;
}
#our-values .rounded-list-2-3 li h4 {
  font-size: xx-large;
  margin: 7px 0 5px 0;
}
#our-values .rounded-list-2-3 li:nth-child(even) svg path {
  fill: var(--purple);
}
#our-values .rounded-list-2-3 li:nth-child(odd) svg path {
  fill: var(--blue);
}

#services {
  padding: 4em 0 3em;
}
#services .container h2 {
  margin-bottom: 20px;
}
#services .container.our-activity {
  display: flex;
  flex-direction: column;
  margin-bottom: 45px;
}
#services .container.our-activity div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
#services .container.our-activity div table {
  border-spacing: 22px 16px;
}
#services .container.our-activity div table td p {
  text-align: justify;
}
#services .container.our-activity div table td svg {
  margin: 0 auto;
}
#services .container.our-activity div img {
  width: 100%;
}

div.container.ifs-broker {
  display: flex;
  flex-direction: column !important;
  gap: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
}
div.container.ifs-broker img {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

#clients {
  padding: 4em 0 3em;
  text-align: center;
  background-color: #F2F2F2;
  position: static;
}
#clients p {
  margin: 1em;
}
#clients ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#clients li {
  color: var(--blue);
  background-color: var(--purple);
  border-radius: 1em;
  width: 190px;
  height: 190px;
  margin: 0.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
}

#added-values {
  padding: 4em 0 3em;
  color: white;
  background-image: url("../images/va-JNyDBgR.webp"), linear-gradient(132deg, var(--purple), var(--blue));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#added-values h2 {
  color: white;
}
#added-values div {
  display: flex;
  flex-direction: column;
}
#added-values div p {
  text-align: center;
}
#added-values div img {
  margin: 0 auto;
}

body.secondary #products li {
  min-height: 300px !important;
  padding: 0.5rem;
}
body.secondary #products li br {
  display: none;
}

#products {
  padding: 4em 0 3em;
  background-image: linear-gradient(-48deg, color-mix(in srgb, var(--purple) 20%, white), color-mix(in srgb, var(--blue) 15%, white));
}
#products h1, #products h2 {
  text-align: center;
}
#products ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#products ul h3 {
  color: white;
  font-size: 2rem;
  margin: 0;
}
#products strong {
  font-weight: 900;
}
#products li {
  color: white;
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  width: 320px;
  min-height: 448px;
  margin: 0.2em;
  font-size: 1.25em;
  padding: 1.8em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  cursor: pointer;
}
#products li div {
  display: none;
}
#products li.selected {
  background-color: var(--purple);
  display: list-item;
}
#products li.selected div {
  display: none !important;
}
#products li:hover {
  background-color: var(--purple);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#products li:hover div {
  display: block;
}
#products li svg {
  width: 100%;
}
#products li:nth-of-type(1) {
  background-image: url("../images/stock/boeuf-l7y07iM.svg");
}
#products li:nth-of-type(2) {
  background-image: url("../images/stock/chicken-45RxDB-.svg");
}
#products li:nth-of-type(3) {
  background-image: url("../images/stock/vegetable-4QyjQJ_.svg");
}

.products-details-wrapper {
  padding: 2rem 0;
  background-color: #F2F2F2;
  margin-top: 20px;
}
.products-details-wrapper .container {
  display: flex;
  flex-direction: column;
}
.products-details-wrapper .container div.products-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.products-details-wrapper .container div.products-details .list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products-details-wrapper .container div.products-details .list h2 {
  font-size: 1.3rem;
  color: var(--blue);
}
.products-details-wrapper .container div.products-details .list blockquote {
  margin: 0;
}
.products-details-wrapper .container div.products-details .list ul li {
  margin: 20px 0;
}
.products-details-wrapper .container div.products-details .gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products-details-wrapper .container div.products-details .gallery .grid {
  width: 100%;
}
.products-details-wrapper .container div.products-details .gallery .grid:after {
  content: "";
  display: block;
  clear: both;
}
.products-details-wrapper .container div.products-details .gallery .grid .grid-item {
  width: 100%;
}
.products-details-wrapper .container div.products-details .gallery .grid .grid-item img {
  display: block;
  max-width: 100%;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-beef {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-beef .grid-item:nth-child(1) {
  grid-area: 1/1/2/2;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-beef .grid-item:nth-child(2) {
  grid-area: 1/2/2/3;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-beef .grid-item:nth-child(3) {
  grid-area: 2/1/3/2;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-beef .grid-item:nth-child(4) {
  grid-area: 2/2/3/3;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(1) {
  grid-area: 1/1/2/2;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(2) {
  grid-area: 1/2/2/3;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(3) {
  grid-area: 1/3/2/4;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(4) {
  grid-area: 2/1/3/2;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(5) {
  grid-area: 2/2/3/3;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(6) {
  grid-area: 2/3/4/4;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(7) {
  grid-area: 3/1/4/2;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(8) {
  grid-area: 3/2/4/3;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-chicken .grid-item:nth-child(9) {
  grid-area: 3/3/4/4;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-vegetables {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-vegetables .grid-item:nth-child(1) {
  grid-area: 1/1/3/5;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-vegetables .grid-item:nth-child(2) {
  grid-area: 1/5/4/8;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-vegetables .grid-item:nth-child(3) {
  grid-area: 3/1/5/5;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-vegetables .grid-item:nth-child(4) {
  grid-area: 5/1/7/5;
}
.products-details-wrapper .container div.products-details .gallery .grid.grid-vegetables .grid-item:nth-child(5) {
  grid-area: 4/5/7/8;
}

#spacer {
  background-color: white;
  width: 100%;
  height: calc(50px + 3em);
  position: absolute;
  bottom: 0;
  left: 0;
}

#contact {
  background-color: var(--purple);
  background-image: url("../images/map-lpUnx2M.webp");
  background-repeat: no-repeat;
  background-position: 55% bottom;
}
#contact h1 {
  font-size: 2rem;
  margin: 0;
}
#contact a {
  color: black;
}
#contact .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 435px;
  height: 1104px;
}

address {
  background-color: white;
  font-style: normal;
  display: grid;
  grid-template-columns: 32px auto;
  gap: 2em 1em;
  padding: 1em;
  margin: 1em auto;
  width: 280px;
}
address h1 {
  grid-column: 1/3;
}
address strong {
  font-weight: 900;
}
address img {
  justify-self: center;
}

.legals div.header {
  position: static;
  background-color: var(--blue);
  color: white;
  height: 8rem;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.legals div.header .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.legals section {
  padding: 4em 0 3em;
}
.legals section a {
  color: black;
}
.legals h1, .legals h2, .legals h3 {
  color: var(--purple);
}

@media only screen and (min-width: 640px) {
  #added-values .container {
    display: grid;
    gap: 20px 25px;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  #added-values .container div:first-of-type {
    grid-row: 1/3;
  }
  #contact {
    background-size: cover;
  }
  #contact .container {
    justify-content: center;
    height: 669px;
  }
  address {
    margin: 1em 0;
  }
  div.container.ifs-broker {
    display: flex;
    flex-direction: row !important;
    gap: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 45px;
    margin-bottom: 45px;
  }
  div.container.ifs-broker img {
    width: 35%;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
  }
  div.container.ifs-broker div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 65%;
    row-gap: 16px !important;
    padding: 10px;
  }
  div.container.ifs-broker div p {
    width: 100%;
    text-align: justify;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  nav a {
    margin-left: 1em;
    display: inline;
  }
  header .container {
    justify-content: space-between;
  }
  #clients ul {
    justify-content: space-between;
  }
  #clients li {
    margin: 0;
  }
  #services .container.our-activity {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  #products li:nth-of-type(1) {
    margin-left: 0;
  }
  #products li:nth-of-type(3) {
    margin-right: 0;
  }
  #contact {
    background-position: 40% bottom;
  }
  .legals div.header .container {
    justify-content: center;
  }
}
@media only screen and (min-width: 1600px) {
  #contact .container {
    height: 34.8vw;
  }
  header .container {
    max-width: 80vw;
  }
}
@media only screen and (hover: none) {
  #products li {
    background-color: var(--purple);
    display: list-item;
  }
  #products li div {
    display: block;
  }
}

/*# sourceMappingURL=app.output.css.map */
