/* Estilos Index */
.menu-p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -80px;
}

.menu-p img {
  padding: 0% 10% 0% 10%;
}

.sucursal-card {
  padding: 35px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
}

/* Hover botones del menu principal */
.sucursal-card h4:hover {
  background: #ff3300;
  background: linear-gradient(90deg,
      rgba(255, 51, 0, 1) 0%,
      rgba(255, 177, 51, 1) 64%,
      rgba(247, 247, 10, 1) 100%);

  text-shadow:
    1px 1px 2px black,
    0 0 1em rgb(255, 0, 0),
    0 0 0.2em rgb(55, 56, 55);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
  transition-duration: 0.8s;
}



/*
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-image: url(../images/banner-bg.jpg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  color: white;
  max-height: 1600px;
  min-height: 900px;
}

.main-banner .caption h6 {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-banner .caption h2 {
  font-size: 48px;
  color: #fff;
  margin-top: 20px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 40px;
}



.main-banner .caption p {
  color: #fff;
  margin-bottom: 70px;
}

.main-banner .caption form {
  position: relative;
  max-width: 450px;
}

.main-banner .caption form input {
  max-width: 450px;
  width: 100%;
  height: 50px;
  outline: none;
  border-radius: 25px;
  background-color: #fff;
  border: none;
  padding: 0px 25px;
  font-size: 14px;
  color: #7a7a7a;
}

.main-banner .caption form button {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background-color: #f89500;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0px 25px;
  border: none;
  border-radius: 25px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s;
}




/* Estilos Index Fin */



.hero-empanada {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
}

.smooke {
  background-image: url(https://pngimg.com/uploads/smoke/smoke_PNG55243.png);
  background-size: 100%;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  animation: smooke 1s infinite linear;
}

.smooke:nth-child(2) {
  z-index: 100;
}

@keyframes smooke {
  0% {
    background-position: 0 100px;
    opacity: .4;
  }

  50%,
  100% {
    opacity: 0;
  }

  100% {
    background-position: 0 -70px;
  }
}

.empanada img {
  position: relative;
  z-index: 0;
}

.empanada {
  position: relative;
}

.empanada .smooke {
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: -1;
}

.empanada img {
  width: 200px;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

@media (max-width: 767px) {
  .menu-p {
    padding-bottom: 40%;
    margin-top: -250px;
  }

  .sucursal-box {
    margin-bottom: 50px;
  }

  .main-banner .caption h2 {
    font-size: 38px;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
  }

  
}

@media (max-width: 992px) {}

@media (max-width: 1200px) {}