/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*===== Colores =====*/
  --blue-color: #00015e;
  --first-color: #329cd7;
  --dark-color: #f1f1f1;
  --dark-color-alt: #282b3a;
  /* --white-color: #E6E7E9; */
  --white-color: #fff;
  --black-color: #000000;
  --white-color: #ffffff;
  --shadow-dark-color: #d3dae7;

  /*===== Fuente y tipografia =====*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /*===== z index =====*/
  --z-fixed: 100;
}

@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

/*===== BASE =====*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.bd-grid {
  max-width: 1024px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

/* ============ Vendors Style ============= */
.vendor-heading-section {
  width: 100%;
  background-color: #f4f6fc;
  min-height: 6vh;
}

.vendor-heading-section .vendor_title img {
    width: 100%;
    display: flex;

}

.vendor-heading-section .vendor_title {
        width: 100%;
        height: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.vendor-heading-section .vendor_title h2 {
        /*font-size: 2rem;*/
        display: none;
        /*justify-content: center;*/
        /*font-weight: 800;*/
        /*align-items: center;*/
        /*color: var(--first-color);*/
    }

.venderos-section {
  background-color: #f4f6fc;
  min-height: 95vh;
  padding-top: 0px;
  max-height: fit-content;
}

.venderos-section .container {
  width: 80%;
  min-height: 80%;
  max-height: fit-content;
  margin: 40 0 70px 0;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 130px);
  grid-gap: 20px;
}

.vendors-item {
  background-color: #f4f6fc;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
    -0.5rem -0.5rem 0.6rem rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vendors-item:hover {
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
    -0.5rem -0.5rem 0.5rem rgb(255, 255, 255);
  transform: scale(1.05);
}

.item-1 img {
  width: 90px;
  height: auto;
}

.item-2 img {
  width: 90px;
  height: auto;
}

.item-3 img {
  width: 160px;
  height: auto;
}

.item-4 img {
  width: 170px;
  height: auto;
}

.item-5 img {
  width: 160px;
  height: auto;
}

.item-6 img {
  width: 230px;
  height: auto;
}

.item-7 img {
  width: 150px;
  height: auto;
}

.item-8 img {
  width: 150px;
  height: auto;
}

@media (max-width: 768px) {
  .vendor-heading-section {
    width: 100%;
    background-color: #f4f6fc;
    min-height: 6vh;
  }


  .vendor-heading-section .vendor_title img {
    width: 100%;
    display: flex;

}

.vendor-heading-section .vendor_title {
        width: 100%;
        height: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.vendor-heading-section .vendor_title h2 {
        /*font-size: 2rem;*/
        display: none;
        /*justify-content: center;*/
        /*font-weight: 800;*/
        /*align-items: center;*/
        /*color: var(--first-color);*/
    }

  .venderos-section .container {
    width: 100%;
    min-height: 80%;
    max-height: fit-content;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 100px);
    grid-gap: 20px;
  }

  .vendors-item {
    background-color: #f4f6fc;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
      -0.5rem -0.5rem 0.6rem rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vendors-item:hover {
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
      -0.5rem -0.5rem 0.5rem rgb(255, 255, 255);
    transform: scale(1.05);
  }

  .item-1 img {
    width: 70px;
    height: auto;
  }

  .item-2 img {
    width: 70px;
    height: auto;
  }

  .item-3 img {
    width: 110px;
    height: auto;
  }

  .item-4 img {
    width: 120px;
    height: auto;
  }

  .item-5 img {
    width: 120px;
    height: auto;
  }

  .item-6 img {
    width: 170px;
    height: auto;
  }

  .item-7 img {
    width: 100px;
    height: auto;
  }

  .item-8 img {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 425px) {
  .vendor-heading-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f4f6fc;
        min-height: 30vh;
    }
  .vendor-heading-section .vendor_title img {
    display: none;

}

.vendor-heading-section .vendor_title {
        width: 100%;
        height: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.vendor-heading-section .vendor_title h2 {
        font-size: 1.8rem;
        display: flex;
        justify-content: center;
        font-weight: 800;
        align-items: center;
        color: var(--first-color);
    }


  .venderos-section {
    background-color: #f4f6fc;
    min-height: 75vh;
    max-height: fit-content;
  }

  .venderos-section .container {
    width: 100%;
    min-height: 80%;
    max-height: fit-content;
    padding: 0 20px 100px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 100px 100px 100px;
    grid-gap: 20px 10px;
  }

  .vendors-item {
    background-color: #f4f6fc;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
      -0.5rem -0.5rem 0.6rem rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vendors-item:hover {
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2),
      -0.5rem -0.5rem 0.5rem rgb(255, 255, 255);
    transform: scale(1.05);
  }

  .item-1 img {
    width: 70px;
    height: auto;
  }

  .item-2 img {
    width: 70px;
    height: auto;
  }

  .item-3 img {
    width: 110px;
    height: auto;
  }

  .item-4 img {
    width: 120px;
    height: auto;
  }

  .item-5 img {
    width: 120px;
    height: auto;
  }

  .item-6 img {
    width: 150px;
    height: auto;
  }

  .item-7 img {
    width: 120px;
    height: auto;
  }

  .item-8 img {
    width: 120px;
    height: auto;
  }
}