@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
body {
  margin: 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #181616;
}

::-webkit-scrollbar-thumb {
  background-color: #e60c0c;
  border-radius: 10px;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0f0e0e;
}

.header {
  background: rgb(34, 29, 29);
  padding: 20px;
  color: white;
}

.header-top {
  display: flex;
  justify-content: space-between;
}

.header-top img {
  width: 60%;
  height: 100px;
}

.header-logo {
  margin: 0;
}

h1.header-logo {
  font-size: 45px;
  margin-left: 20px;
  margin-top: 30px;
}

.header-btn {
  font-size: 20px;
}

.header-menu {
  display: none;
  padding-bottom: 10px;
  animation: header_menu_active 2s;
}

@keyframes header_menu_active {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 20px;
}

.header-menu a {
  color: white;
  text-decoration: none;
  font-size: 23px;
}

@media screen and (min-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-top {
    padding-bottom: 0;
  }
  .header-menu {
    padding-top: 0;
    display: block !important;
  }
  .header-menu ul {
    flex-direction: row;
  }
  .header-btn {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: lato;
}

.slider {
  position: absolute;
  top: 305;
  width: 100%;
  height: auto;
  margin: 50px auto 0;
}

.slider ul {
  display: flex;
  padding: 0;
  width: 400%;
  animation: slide 20s infinite alternate ease-in-out;
}

.slider li {
  list-style: none;
  width: 100%;
  position: relative;
  left: 0;
  right: 0;
}

.slider img {
  margin: 0%;
  position: absolute;
  top: -225;
  left: 0;
  right: 0;
  bottom: 130;
  width: 100%;
  border-bottom: black;
  list-style: none;
}

@keyframes slide {
  0% {
    margin-left: 0%;
  }
  20% {
    margin-left: 0%;
  }
  /* esto va del 0% hasta el 20% respecto al tiempo asignado en la animacion q fue 10s*/
  25% {
    margin-left: -100%;
  }
  45% {
    margin-left: -100%;
  }
  50% {
    margin-left: -200%;
  }
  70% {
    margin-left: -200%;
  }
  75% {
    margin-left: -300%;
  }
  100% {
    margin-left: -300%;
  }
}
.section-title {
  font-size: 3.5rem;
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
}

.section-container {
  max-width: 1550px;
  margin: 0 auto;
}

.slider-container {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.slider-item {
  height: 25rem;
  max-height: 37.5rem;
}

.slider-prev {
  animation: arrowPrev 0.3s;
  -webkit-animation: arrowPrev 0.3s;
}

.slider-next {
  animation: arrowNext 0.3s;
  -webkit-animation: arrowNext 0.3s;
}

@keyframes arrowPrev {
  0% {
    opacity: 0;
    right: -100%;
  }
  20% {
    opacity: 0.2;
    right: -80%;
  }
  40% {
    opacity: 0.4;
    right: -60%;
  }
  60% {
    opacity: 0.6;
    right: -40%;
  }
  80% {
    opacity: 0.8;
    right: -20%;
  }
  100% {
    right: 0%;
    opacity: 1;
  }
}
@keyframes arrowNext {
  0% {
    opacity: 0;
    left: -100%;
  }
  20% {
    opacity: 0.2;
    left: -80%;
  }
  40% {
    opacity: 0.4;
    left: -60%;
  }
  60% {
    opacity: 0.6;
    left: -40%;
  }
  80% {
    opacity: 0.8;
    left: -20%;
  }
  100% {
    left: 0%;
    opacity: 1;
  }
}
.item-title__container {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.69));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-background {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

.item-title__title {
  font-size: 3rem;
  padding: 0rem 1rem;
  color: rgb(29, 28, 28);
  margin-left: 800px;
  margin-top: 50px;
}

.item-title__title {
  text-shadow: 0rem 0.25rem 0rem black;
}

.arrow {
  position: absolute;
  z-index: 3;
  font-size: 3rem;
  height: 4rem;
  padding: 0 1.5rem;
  background: rgb(39, 38, 38);
  font-weight: bold;
  color: rgb(121, 117, 117);
  top: 45%;
  transition: all 0.2s;
  border: none;
}

.prev-item {
  left: 0;
  border-radius: 0 2.5rem 2.5rem 0;
}

.next-item:hover, .prev-item:hover {
  background: rgba(204, 204, 204, 0.8);
}

.prev-item:after {
  content: "<";
}

.next-item {
  right: 0;
  border-radius: 2.5rem 0 0 2.5rem;
}

.next-item:after {
  content: ">";
}

.pagination {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  gap: 1rem;
  top: 0;
  list-style: none;
  padding: 2rem;
  align-items: flex-end;
  justify-content: center;
}

.dot {
  border: none;
  background: rgba(204, 204, 204, 0.8);
  padding: 0.4rem;
  font-size: 0rem;
  border-radius: 3.125rem;
}

.dot-active {
  background: red;
}

@media (max-width: 768px) {
 
  html {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .item-title__title, .arrow {
    font-size: 2.5rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-moz-selection {
  background: rgba(0, 123, 255, 0.3);
}

::selection {
  background: rgba(0, 123, 255, 0.3);
}

.content {
  max-width: 1250px;
  margin: auto;
  padding: 0px 30px;
}

.navbar {
  position: fixed;
  z-index: 5;
  width: 100%;
  padding: 25px 0;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.644);
}

.navbar.sticky {
  padding: 10px 0;
  background: #302d2d;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.navbar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo a {
  color: rgb(185, 180, 180);
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 30px;
  margin-left: 10px;
}

.navbar .menu-list {
  display: inline-flex;
}

.menu-list li {
  list-style: none;
}

.menu-list li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-list li a:hover {
  color: #007bff;
}

.banner {
  height: 100vh;
  background: url("banner.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about {
  padding: 40px 0;
}

.about .title {
  font-size: 35px;
  font-weight: 700;
}

.about p {
  padding-top: 20px;
  text-align: justify;
}

.icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.icon.cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}

.navbar.sticky .icon.cancel-btn {
  top: 10px;
}

@media (max-width: 868px) {
  body.disabledScroll {
    overflow: hidden;
  }
  .icon {
    display: block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 9;
  }
  .icon.cancel-btn {
    display: none;
  }
  .icon.cancel-btn.show {
    display: block;
  }
  .icon.hide {
    display: none;
  }
  .navbar .menu-list {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #222;
    display: block;
    padding: 40px 0;
    text-align: center;
    -webkit-clip-path: circle(25px at calc(100% - 55px) calc(0% + 50px));
            clip-path: circle(25px at calc(100% - 55px) calc(0% + 50px));
    transition: all 0.3s ease;
  }
  .navbar.sticky .menu-list {
    -webkit-clip-path: circle(25px at calc(100% - 55px) calc(0% + 35px));
            clip-path: circle(25px at calc(100% - 55px) calc(0% + 35px));
  }
  .navbar .menu-list.active {
    -webkit-clip-path: circle(75%);
            clip-path: circle(75%);
  }
  .navbar .menu-list li {
    margin-top: 45px;
  }
  .navbar .menu-list li a {
    font-size: 23px;
  }
}
.logo {
  display: flex;
  justify-content: center;
}

.logo img {
  width: 80px;
  margin-left: -50px;
}

.contenedor-menu {
  width: 100%;
  height: 1000px;
  margin-top: -80px;
  text-align: center;
  align-items: center;
}

.menu {
  width: 80%;
  height: 900px;
  margin: auto;
  margin-top: 100px;
  padding-top: 0px;
}

.menu1 {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.menu2 {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 20px;
}

.bloque-menu {
  width: 210px;
  height: 300px;
  background-color: rgb(145, 137, 137);
  margin-top: 60px;
  box-shadow: 0 0 15px black;
  transition: all 400ms;
  cursor: pointer;
  text-align: center;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 70;
  margin-bottom: 70;
  transition: all 300ms;
  transition: background-color 0.5s ease-in-out;
  border-radius: 10px;
}

.bloque-menu:hover {
  background-color: rgb(97, 95, 95);
}

.bloque-menu img {
  width: 250px;
  height: 220px;
  margin-top: 30px;
}

.bloque-menu p {
  margin-top: 15px;
  color: #000000;
  font-weight: 400;
}

.boton-menu {
  background-color: #0f611c;
  width: 60%;
  height: 50px;
  margin: auto;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  border-radius: 20px;
}

.boton-menu:hover {
  background-color: #3c914a;
}

.boton-menu img {
  width: 20%;
  height: 80%;
  margin-top: 5px;
  margin-right: 15px;
}

.boton-menu button {
  height: 100%;
  width: 50%;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  font-size: 20px;
  cursor: pointer;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

.titulo-productos {
  width: 100%;
  text-align: center;
  padding-top: 10px;
  margin-top: 100px;
}

.titulo-productos h2 {
  font-size: 45px;
}

.carousel__contenedor {
  position: relative;
  margin-top: -10px;
}

.carousel__anterior,
.carousel__siguiente {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  top: calc(50% - 35px);
  cursor: pointer;
  line-height: 30px;
  text-align: center;
  background-color: rgb(51, 51, 50);
  color: rgb(132, 139, 150);
  opacity: 100%;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
  background-color: #383838;
}

.carousel__anterior {
  left: 20px !important;
}

.carousel__siguiente {
  right: 20px;
  cursor: pointer;
}

.carousel__lista {
  display: flex;
}

.carousel__elemento {
  text-align: center;
}

.glider-track {
  display: flex;
  height: 550px;
}

.carousel__elemento img {
  transition: all 600ms;
  cursor: pointer;
  border: solid 5px rgb(224, 219, 148);
}

.carousel__elemento img:hover {
  filter: opacity(0.9);
  border-color: rgb(116, 102, 44);
  border-radius: 3%;
}

.carousel__elemento p {
  color: rgb(78, 68, 10);
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.carousel__indicadores .glider-dot {
  display: block;
  width: 100px;
  height: 4px;
  background: rgb(122, 106, 14);
  opacity: 0.5;
  border-radius: 5%;
  position: relative;
  top: 10;
}

.carousel__indicadores .glider-dot:hover {
  opacity: 0.5;
}

.carousel__indicadores .glider-dot.active {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  body {
    padding: 40px 0;
  }
  .contenido-principal {
    flex-direction: column;
  }
  .contenido-principal > * {
    width: 100%;
  }
}
.contenedor-anuncios {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
}

.g1-anuncio {
  height: 120px;
  width: 70%;
  margin-top: 40px;
}

.contenedor-info {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: start;
}

.g1-c-info {
  width: 400px;
  height: 400px;
  background-color: #cfd6d0;
  margin: 100px;
  margin-top: 80px;
  box-shadow: 0 0 3px black;
}

.g1-c-info img {
  width: 390px;
  height: 390px;
  margin: 5px;
}

.g2-c-info {
  width: 45%;
  height: 400px;
  margin: 40px;
  margin-top: 80px;
}

.g2-c-info h2 {
  font-size: 25px;
}

.g2-c-info p {
  font-size: 15px;
  margin-top: 45px;
  width: 80%;
}

.contenedor2 {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
}

.g1-c2 {
  margin: 30px;
  margin-top: 100px;
  width: 500px;
  height: 230px;
  background-color: #e4e7e4;
  box-shadow: 0 0 1px;
  cursor: pointer;
  transition: all 400ms;
}

.g1-c2 img {
  width: 100%;
  height: 100%;
}

.g1-c2:hover {
  transform: scale(1.1);
}

.g2-c2 img {
  width: 100%;
  height: 100%;
}

.g2-c2 {
  margin: 30px;
  margin-top: 100px;
  width: 500px;
  height: 230px;
  background-color: #e4e7e4;
  box-shadow: 0 0 1px;
  cursor: pointer;
  transition: all 400ms;
}

.g2-c2:hover {
  transform: scale(1.1);
}

.carousel__indicadores1 .glider-dot {
  display: block;
  width: 100px;
  height: 4px;
  background: rgb(122, 106, 14);
  opacity: 0.5;
  border-radius: 5%;
  position: relative;
  top: 10;
}

.carousel__indicadores1 .glider-dot:hover {
  opacity: 0.5;
}

.carousel__indicadores1 .glider-dot.active {
  opacity: 1;
}

.carousel__anterior1,
.carousel__siguiente1 {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  top: calc(50% - 35px);
  cursor: pointer;
  line-height: 30px;
  text-align: center;
  background-color: rgb(51, 51, 50);
  color: rgb(132, 139, 150);
  opacity: 100%;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}

.carousel__anterior1:hover,
.carousel__siguiente1:hover {
  background-color: #383838;
}

.carousel__anterior1 {
  left: 20px !important;
}

.carousel__siguiente1 {
  right: 20px;
  cursor: pointer;
}

.carousel__lista1 {
  display: flex;
}

.contenedor-3 {
  width: 100%;
  height: 400px;
}

.contenedor-imagenes-c3 {
  border-bottom: solid 1px rgb(168, 164, 164);
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.tarjet-img {
  width: 250px;
  height: 200px;
  background-color: rgb(230, 223, 223);
  margin: 20px;
  transition: all 400ms;
  cursor: pointer;
}

.tarjet-img img {
  width: 90%;
  height: 90%;
  margin: 8px;
  transition: all 400ms;
  filter: grayscale(80%);
}

.tarjet-img img:hover {
  filter: grayscale(0%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 0px 0px 15px 15px #42403f;
  -webkit-box-shadow: 0px 0px 15px 15px #312f2d;
}

.tarjet-img:hover {
  filter: grayscale(0%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 0px 0px 15px 15px #42403f;
  -webkit-box-shadow: 0px 0px 15px 15px #312f2d;
}

.titulo-c3 h2 {
  margin-top: 200px;
  margin-left: 200px;
}

/*:::::Pie de Pagina*/
.pie-pagina {
  width: 100%;
  background-color: #272829;
}

.pie-pagina .grupo-1 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pie-pagina .grupo-1 .box figure img {
  width: 250px;
}

.pie-pagina .grupo-1 .box h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
}

.pie-pagina .grupo-1 .box p {
  color: #efefef;
  margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a {
  display: inline-block;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  margin-right: 10px;
  background-color: #1a1b1b;
  text-align: center;
  transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover {
  color: aqua;
}

.pie-pagina .grupo-2 {
  background-color: #0c0c0c;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
}

.pie-pagina .grupo-2 small {
  font-size: 15px;
}

@media screen and (max-width: 800px) {
  .pie-pagina .grupo-1 {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    padding: 35px 0px;
  }
}
@media (max-width: 1330px) {
  .logo img {
    width: 80px;
    margin-left: 0px;
  }
}
@media (max-width: 1150px) {
  .red-social {
    display: none;
  }
  .contenedor-info {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: start;
  }
  .g1-c-info {
    width: 300px;
    height: 300px;
    background-color: #cfd6d0;
    margin: 50px;
    margin-top: 80px;
    box-shadow: 0 0 3px black;
  }
  .g1-c-info img {
    width: 290px;
    height: 290px;
    margin: 5px;
    cursor: pointer;
  }
  .g2-c-info {
    width: 45%;
    height: 300px;
    margin: 30px;
    margin-top: 80px;
  }
  .g2-c-info h2 {
    font-size: 20px;
  }
  .g2-c-info p {
    font-size: 13px;
    margin-top: 25px;
    width: 95%;
  }
  .bloque-menu {
    width: 350px !important;
    height: 320px !important;
    background-color: rgb(145, 137, 137);
    margin-top: 60px;
    box-shadow: 0 0 15px black;
    transition: all 400ms;
    cursor: pointer;
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 70;
    margin-bottom: 70;
    transition: all 300ms;
    transition: background-color 0.5s ease-in-out;
    border-radius: 10px;
  }
  .bloque-menu img {
    width: 150px;
    height: 150px;
    margin-top: 30px;
  }
  .boton-menu img {
    width: 20%;
    height: 55%;
    margin-top: 10px;
    margin-left: 5px;
  }
  .boton-menu button {
    height: 100%;
    width: 50%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: white;
  }
  .glider-track {
    height: 450px;
  }
  .g1-c2, .g2-c2 {
    width: 260px;
    height: 160px;
  }
  .contenedor-imagenes-c3 {
    border-bottom: solid 1px rgb(168, 164, 164);
    width: 90%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  .tarjet-img {
    width: 300px;
    height: 150px;
    background-color: rgb(230, 223, 223);
    margin: 20px;
    transition: all 1200ms;
    cursor: pointer;
  }
  .tarjet-img img {
    width: 120px;
    height: 90%;
    margin: 8px;
    transition: all 1200ms;
    filter: grayscale(80%);
  }
  .titulo-c3 h2 {
    margin-top: 100px;
    margin-left: 50px;
  }
  .logo img {
    width: 80px;
    margin-left: 0px;
  }
  .menu-list {
    margin-top: 25px;
  }
  .icon {
    margin-top: 50px;
  }
}
@media (max-width: 900px) {
  .contenedor-info {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: start;
  }
  .g1-c-info {
    width: 250px;
    height: 250px;
    background-color: #cfd6d0;
    margin: 20px;
    margin-top: 80px;
    box-shadow: 0 0 3px black;
  }
  .g1-c-info img {
    width: 240px;
    height: 240px;
    margin: 5px;
  }
  .g2-c-info {
    width: 75%;
    height: 200px;
    margin: 40px;
    margin-top: 120px;
  }
  .g2-c-info h2 {
    font-size: 23px;
    margin-bottom: 100px;
  }
  .g2-c-info p {
    font-size: 12px;
    margin-top: 35px;
    margin-left: -300px;
    width: 180%;
  }
  .contenedor-3 {
    width: 100%;
    height: 750px;
  }
  .contenedor-imagenes-c3 {
    border-bottom: solid 1px rgb(168, 164, 164);
    width: 80%;
    height: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  .tarjet-img {
    flex: 1 0 23.33%;
    width: 200px;
    height: 200px;
    background-color: rgb(230, 223, 223);
    margin: 20px;
    transition: all 1200ms;
    cursor: pointer;
  }
  .tarjet-img img {
    width: 90%;
    height: 90%;
    margin: 8px;
    transition: all 1200ms;
    filter: grayscale(80%);
  }
  .pie-pagina {
    width: 100%;
    background-color: #272829;
  }
}
@media (max-width: 800px) {
  .navbar {
    margin-top: -50px;
  }
  .section {
    margin-top: -50px;
  }
}
@media (max-width: 700px) {
  .contenedor-3 {
    width: 100%;
    height: 950px;
  }
  .contenedor-info {
    width: 100%;
    height: 750px;
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
  }
  .g1-c-info {
    width: 350px;
    height: 350px;
    background-color: #cfd6d0;
    margin: auto;
    margin-top: 0px;
    box-shadow: 0 0 3px black;
    text-align: center;
  }
  .g1-c-info img {
    width: 340px;
    height: 340px;
    margin: 5px;
  }
  .g2-c-info {
    flex-direction: column;
    width: 80%;
    height: 300px;
    text-align: center;
    margin: auto;
    margin-top: 80px;
  }
  .g2-c-info h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .g2-c-info p {
    font-size: 12px;
    margin-top: 25px;
    width: 95%;
    margin-left: 0;
  }
  .bloque-menu {
    width: 350px !important;
    height: 250px !important;
    background-color: rgb(145, 137, 137);
    margin-top: 60px;
    box-shadow: 0 0 15px black;
    transition: all 400ms;
    cursor: pointer;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 70;
    margin-bottom: 70;
    transition: all 300ms;
    transition: background-color 0.5s ease-in-out;
    border-radius: 10px;
  }
  .bloque-menu img {
    width: 100px;
    height: 100px;
    margin-top: 30px;
  }
  .boton-menu img {
    width: 20%;
    height: 50%;
    margin-top: 12px;
    margin-left: 10px;
  }
  .boton-menu button {
    height: 100%;
    width: 50%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: white;
  }
  .titulo-productos h2 {
    font-size: 25px;
  }
  .glider-track {
    height: 430px;
  }
  .contenedor2 {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
  }
  .g1-c2 {
    margin: 30px;
    margin-top: 100px;
    width: 500px;
    height: 130px;
    background-color: #e4e7e4;
    box-shadow: 0 0 1px;
    cursor: pointer;
    transition: all 400ms;
  }
  .g1-c2 img {
    width: 100%;
    height: 100%;
  }
  .g1-c2:hover {
    transform: scale(1.1);
  }
  .g2-c2 img {
    width: 100%;
    height: 100%;
  }
  .g2-c2 {
    margin: 30px;
    margin-top: 100px;
    width: 500px;
    height: 130px;
    background-color: #e4e7e4;
    box-shadow: 0 0 1px;
    cursor: pointer;
    transition: all 400ms;
  }
}
@media (max-width: 499px) {
 
  .g2-c-info {
    margin-top: 0px !important;
  }
  .bloque-menu {
    width: 380px !important;
    height: 380px !important;
  }
  .bloque-menu img {
    width: 200px;
    height: 200px;
  }
  .boton-menu img {
    height: 80%;
    width: 20%;
    margin-top: 5px;
    margin-left: 5px;
  }
  .boton-menu button {
    height: 100%;
    width: 50%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 20px;
    cursor: pointer;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: white;
  }
  .glider-track {
    height: 550px;
  }
  .bloque-menu p {
    font-size: 20px;
  }
  .carousel__indicadores, .carousel__indicadores1 {
    visibility: hidden;
  }
  .contenedor2 {
    flex-direction: column;
    margin-top: 70px;
  }
  .g1-c2 {
    width: 70%;
    height: 200px;
    margin: auto;
    margin-top: 140px;
  }
  .g2-c2 {
    width: 70%;
    height: 200px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 200px;
  }
  .carousel {
    margin-top: 50px;
  }
  .tarjet-img {
    flex: 1 0 38.33%;
    width: 200px;
    height: 250px;
    background-color: rgb(230, 223, 223);
    margin: 20px;
    transition: all 1200ms;
    cursor: pointer;
    margin-top: 50px;
  }
  .tarjet-img img {
    width: 95%;
    height: 95%;
  }
  #img2, #img4 {
    display: none;
  }
  .contenedor-3 {
    height: 1050px;
    margin-top: -80px;
  }
  .contenedor-imagenes-c3 {
    border: none;
  }
  .titulo-c3 h2 {
    text-align: center;
    margin-left: 0px;
    margin-bottom: 50px;
  }
}
@media (max-width: 499px) and (max-width: 420px) {
  .navbar .logo a {
    font-size: 30px;
    margin-right: 0px;
  }
  .logo img {
    width: 80px;
    margin-left: -20px;
  }
}
@media (max-width: 390px) {
  .navbar .logo a {
    font-size: 27px;
    margin-right: 0px;
    margin-top: 30px;
  }
  .logo img {
    width: 70px;
    height: 70px;
    margin-top: 10px;
    margin-left: -25px;
  }
}
.red-social a {
  display: inline-block;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  margin-right: 10px;
  background-color: #1a1b1b;
  text-align: center;
  transition: all 300ms ease;
}

#x:hover {
  color: #007bff;
}

#ig:hover {
  color: palevioletred;
}

#fb:hover {
  color: blue;
}/*# sourceMappingURL=styles.css.map */