*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
html{
  overflow-x: hidden;
  overflow-y: auto;
}
body{
overflow-x: hidden;
overflow-y: hidden;
}
.downto1{
    display: block;
    width: 100%;
    height: 100vh;
    background-color:rgba(255, 204, 0,0.8);
    opacity: .5;
    position: fixed;
    left:0;
    bottom: 0;
    z-index: 1000;
}
.downto2{
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size:400px;
    background-attachment: fixed;
    position: absolute;
    left:0;
    bottom: 0;
    z-index: 1100;
    overflow: hidden;
}
.my-class{
    bottom:100%;
    animation-name: downto;
    animation-duration: .5s;
}
.my-class2{
    bottom:100%;
    animation-name: downto;
    animation-duration: .5s;
    animation-timing-function: ease;
}
@keyframes downto {
    0% {
        bottom: 0%;
    }
    90% {
        bottom: 100%;
    }
    100%{
        display: none;
    }
  }

a{
    text-decoration: none;
}
.cont{
    width: 100%;
    max-width: 1300px;
    padding: 0 20px;
    margin:auto;
    position: relative;
    overflow: hidden;
}
#whats{
  position: fixed;
  bottom: 20px;
  right:20px;
  width: 70px;
  height: 70px;
  border:2px solid #fff;
  line-height: 70px;
  text-align: center;
  border-radius: 35px;
  background-color:#FFCC00;
  z-index: 700;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
#whats img{
  width: 50%;
}
header{
    width: 100%;
    height: 90px;
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index: 800;
    backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
}
.headcontact{
    width: 100%;
    height: 30px;
    background-color:#FFCC00;
}
.head-contact{
    float:right;
}
.head-contact a{
    display: inline-block;
    margin:0 20px;
    line-height: 30px;
    font-weight: bold;
    color:#000;
}
.headnav{
    float:right;
}
.headnav a{
    display: block;
    width: 140px;
    height: 60px;
    line-height: 60px;
    color:#fff;
    font-weight: 400;
    font-size: 1em;
    text-align: center;
    float: left;
    transition: 0.3s all ease-in-out;
    border-bottom: 3px solid #000000;
}
.headnav a:hover{
  border-color: #fff;
  background-color: #0E0E21;
}
#headselected{
border-bottom: 5px solid #FFCC00;
color:#FFCC00;
}
.contbandera{
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    overflow: hidden;
    margin:auto;
    position: absolute;
    top:-10px;
    left:0;
    right:0;
}
.headbars,.menu-options{
  display: none;
}
#tuxbandera{
    position: relative;
    left:0;
    width: 250px;
}
.hero{
    height:calc(100vh - 150px);
    position: relative;
}
.slides{
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    color:#fff;
}
.slidetext{
    font-size: 0.8em;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    overflow: hidden;
}
.slidetext h1{
    font-size: 1em;
    font-weight: 400;
}
.slidetext h1 b{
    color:#FFCC00
}
.slidetext p{
    font-size: 2em;
    font-weight: bold;
}
.rectorange{
    display: block;
    width: 100px;
    height: 5px;
    background-color:#FFCC00;
    margin-top: 30px;
    margin-bottom: 30px;
}
.swiper-container {
    width: 100%;
    height: 100%;
  }
  .swiper{
    height: 100%;
  }
  .swiper-slide {
    background-color: #fcfcfc;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #fcfcfc;
    font-size: 24px;
  }
  
  .swiper-slide > .swiper-slide-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent no-repeat 50% 50% /cover;
        display: flex;
    justify-content:center;
    align-items: center;
  }
  
  .swiper-slide .slide-01 {
    background-image: url(imgs/HERO1.jpg);
    transform-origin: 50% 50%;
  }
  
  .swiper-slide .slide-02 {
    background-image: url(imgs/HERO4.jpg);
    transform-origin: 50% 50%;
  }
  
  .swiper-slide .slide-03 {
    background-image: url(imgs/HERO3.jpg);
    transform-origin: 50% 50%;
  }
  
  .swiper-slide .slide-04 {
    background-image: url(imgs/HERO2.jpg);
    transform-origin: 50% 50%;
  }
  .swiper-scale-effect .swiper-slide-cover {
    transition-timing-function: linear;
    transition-duration: 20s;
    transform: scale(1);
  }
  
  .swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
    transform: scale(1.3);
  }
  
  :root {
    --swiper-pagination-bottom: 40px;
    --swiper-theme-color: rgba(252, 252, 252, 0.85) !important;
  }
  .swiper-lazy-preloader-white {
    --swiper-preloader-color: #FCFCFC;
  }
  .swiper-lazy-preloader-black {
    --swiper-preloader-color: #262626;
  }
  .swiper-button-prev,
  .swiper-button-next {
    background: transparent;
    opacity: 0.55;
    --swiper-navigation-color: rgba(252, 252, 252, 0.85);
    transition: opacity 0.3s ease, color 0.3s ease;
    margin:0 20px;
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: transparent;
    opacity: 0.85;
    --swiper-navigation-color: #fcfcfc;
  }
  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px)) !important;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px)) !important;
    box-shadow: inset 1px 1px 1px rgba(38, 38, 38, 0.85);
    background: var(--swiper-pagination-bullet-inactive-color, rgba(252, 252, 252, 0.85)) !important;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.55) !important;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
  .swiper-pagination-bullet-active {
    box-shadow: inset 1px 1px 1px rgba(38, 38, 38, 0.85);
    background: var(--swiper-pagination-bullet-active-color, rgba(252, 252, 252, 0.85)) !important;
    opacity: var(--swiper-pagination-bullet-active-opacity, 0.85) !important;
    --swiper-pagination-bullet-horizontal-gap: 10px;
  }
  .hero-social{
    position: absolute;
    left:0;
    bottom:0;
    z-index: 100;
  }
  .hero-social a{
    display: block;
    padding: 0 30px;
    height: 70px;
    line-height: 70px;
    border-top-right-radius: 35px;
   background-color: #fff;
   color:#000;
    font-weight: bold;
    text-align: center;
  }
  .marcas{
    height: 150px;
    background-color: #fff;
  }
  .marcas-imgs{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .marcas-imgs img{
    width: 100%;
  }
  .experiencia{
    background-color: #FFCC00;
    overflow: hidden;
    padding: 50px 0;
    z-index: 100;
    position: relative;
  }
  .expe-icon{
    width: 50%;
    height: 500px;
    float:left;
  }
  .expe-icon img{
    height: 100%;
    float:right;
    margin-right: 50px;
  }
  .expe-text{
    width: 50%;
    height: 500px;
    float:left;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .expe-text img{
    width: 350px;
    margin-bottom: 20px;
  }
  .tuxpaladar{
    height: 50vh;
    background-color: #000;
    background-image: url(imgs/tuxtransporte.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  .mccain{
    height: 60vh;
    background-color: #FFCC00;
    background-image: url(imgs/mccain.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80% auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mccain img{
    height: 60%;
  }
  .productos{
    height: auto;
    background-color: #0E0E21;
    overflow: hidden;
  }
  .productos > .cont{
    border-radius: 40px;
    overflow: hidden;
    margin:60px auto;
    padding: 0;
  }
  .product{
    display: block;
    width: 25%;
    height: 450px;
    float: left;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible;
  }
  .product-text{
    margin:auto;
    width: 100%;
    height: 100px;
    padding: 20px;
    position: absolute;
    bottom:0;
    left:0;
    right:0;
  }
  .pro1{
    background-image: url(imgs/product1.jpg);
  }
  .pro2{
    background-image: url(imgs/product2.jpg);
  }
  .pro3{
    background-image: url(imgs/product3.jpg);
  }
  .pro4{
    background-image: url(imgs/product4.jpg);
  }
  .pro1 .product-text,.pro3 .product-text{
    background-color: #FE7E00;
    color:#fff;
  }
  .pro2 .product-text,.pro4 .product-text{
    background-color:#fff;
    color:#FE7E00;
  }
  .trocas{
    height: 60vh;
    background-color: #000;
    background-image: url(imgs/trocas.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .trocasback{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%,rgba(14, 14, 33,1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .trocasback img{
    display: block;
    margin:30px auto;
    width: 500px;
    opacity: 0.6;
  }
  .trocasback h1{
    color:#ffffff;
    text-shadow: 0 0 20px rgba(255, 204, 0,0.8);
    font-size: 1.5em;
    font-style: italic;
  }
  .trocasback h1 b{
    color:#FFCC00;
  }
  footer{
    height: 500px;
    background-color: #0E0E21;
    position: relative;
  }
  .wooshft{
    position: absolute;
    left:0;
    bottom:0;
    right:0;
    height: auto;
    /* background-color: #000; */
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wooshft a{
    display: block;
    margin: 45px auto;
  }
  .foo{
    display: table;
    padding: 60px 0;
    width: 100%;
  }
  .foocont{
display: table-cell;
  }
  .foocont img{
    display: block;
    width: 300px;
    margin-bottom: 70px;
  }
  .foocont h2{
    color:#fff;
  }
  .foocont h3{
    color:#fff;
    opacity: 0.4;
    font-weight: normal;
  }
  .foocont a{
    display: block;
    width: 80%;
    line-height: 40px;
    color:#fff;
    font-size: 1.3em;
    margin-bottom: 30px;
  }
  .foo-social a{
    width: auto;
    float: left;
    margin:25px 25px 15px 0;
  }
  #privacidad{
margin-top: 30px;
color:#FFCC00;
font-size: 1.3em;
  }
  .contacto{
    height: 100vh;
    background-color: #0E0E21;
    background-image: url(imgs/fondocontacto.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    position: relative;
  }
  .contacto-cont{
    margin-top:250px;
  }
  .contacto-text{
    width: 60%;
    float:left;
    color:#fff;
  }
  .contacto-text h1{
    margin-bottom: 50px;
  }
  .contacto-text a{
    display: block;
    width: 80%;
    line-height: 40px;
    color:#fff;
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .contacto-form{
    width: 40%;
    float:left;
  }
  .contacto-form h4{
    color:#fff;
  }
  .contacto-form input{
    width: 100%;
    padding: 15px 10px;
    border-radius: 10px;
    font-size: 1.5em;
    margin:20px 0 0 0;
    color:#0E0E21;
  }
  .contacto-form textarea{
    width: 100%;
    height: 200px;
    padding: 15px 10px;
    border-radius: 10px;
    font-size: 1.5em;
    margin:20px 0 0 0;
    color:#0E0E21;
  }
  .contacto-form button{
    background-color: #FFCC00;
    padding: 20px 60px;
    color:#000;
    float:right;
    border-radius: 30px;
    margin-top: 20px;
    border:0;
    outline: none;
    cursor: pointer;
  }
  .contacto-form button:hover{
    background-color: #ffe57b;
  }
  .mapa{
    height: 50vh;
    background-color: #9dffb2;
  }
  .aviso{
    padding: 200px 0;
    overflow: hidden;
  }
  .listaproductos{
    height: auto;
    overflow: hidden;
    margin-bottom:100px;
  }
  .listproductos .cont{
    overflow: hidden;
  }
  .listproduct{
    width: 33.33%;
    float:left;
    height: 200px;
    overflow: hidden;
    font-size: .8em;
    margin:15px 0;
    color:#262626;
    border-radius: 30px;
  }
  .listimg{
width: 50%;
height: 100%;
float: left;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
  }
  .listimg img{
  height:100%;
  width: auto;
  }
  .listtext{
width: 50%;
height: 100%;
float: left;
display: flex;
justify-content: center;
justify-content: left;
align-items: center;
padding-left: 20px;
  }
  .listtext h1{
    font-size: 1.5em;
  }
  .listtext p{
    color:#424242;
    font-weight: bold;
    font-size: 1em;
  }
  .listtext p b{
    color:#FE7E00;
  }
  .listtext h4{
    display: inline-block;
    margin-top:20px;
    padding: 10px 20px;
    border-radius: 20px;
    }
    .listtext .Congelados{
      color:#262626;
      background-color:#65fcff;
  }
  .listtext .Pollo{
    color:#262626;
    background-color:#ffe57b;
}
.listtext .Carne{
  color:#fff;
  background-color:#fc4b4b;
}
.listtext .Otros{
  color:#ffffff;
  background-color:#262626;
}
.listtext .Aderezos{
  color:#262626;
  background-color:#88ff90;
}
  .listaheader{
    width: 100%;
    overflow: hidden;
    padding: 250px 0 100px 0;
    color:#fff;
    background-image:  url(imgs/productosfondo.jpg);
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  .listaheader h1{
    margin-left: 20px;
    font-size: 2.5em;
  }
  .listaheader h1 b{
    color:#FE7E00;
  }