@import url("https://fonts.googleapis.com/css2?family=Lisu+Bosa:ital,wght@0,300;1,200&family=Nabla&family=Roboto+Mono:wght@200&family=Roboto:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
}

header {
  width: 100%;
  top: 0;
  height: 78px;
  z-index: 998;
}

.bg-body-tertiary {
  background: rgba(0, 0, 0, 0.6862745098) !important;
}
.bg-body-tertiary .logo {
  float: left;
  margin-top: 10px;
  margin-left: 1rem;
  top: 20px;
  height: 60px;
  width: auto;
}
.bg-body-tertiary .logo img {
  position: absolute;
  top: 10px;
  z-index: 999;
}
.bg-body-tertiary .menu {
  width: 100%;
}
.bg-body-tertiary .menu .containerMenu {
  float: right;
}

.navbar {
  font-family: "Roboto", "sans-serif";
}
.navbar ul {
  list-style: none;
  font-size: 14px;
  font-weight: bold;
  justify-content: space-evenly;
  margin-top: 30px;
}
.navbar a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.navbar a:hover {
  color: orange;
  font-size: 16px;
  transform: scale(1.2, 1.2);
  transition: all 0.5s;
}
.navbar .separatorMain {
  color: rgb(255, 255, 255);
  font-size: 20px;
  padding: 10px;
  margin-top: -15px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(235, 174, 8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border-color: orange;
}

.navbar-collapse {
  width: 100% !important;
  text-align: right !important;
}

.show {
  position: absolute;
  top: 96px;
  left: 0;
  padding-bottom: 30px;
  width: 100% !important;
  text-align: right !important;
  background-image: url(./img/PizzaAugusta.png);
  background-size: cover;
  z-index: 9999;
}

#mainTop {
  margin-top: -100px !important;
}

main {
  height: calc(100vh + 20px);
  background-image: url(./img/bgHome.jpg);
  background-size: cover;
  z-index: 1;
}

#fxContainer {
  animation-name: aparecer;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s;
  animation-direction: alternate;
}

@keyframes aparecer {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    width: 100%;
  }
  1% {
    transform: translateX(400px);
    opacity: 1;
  }
  25% {
    transform: translateX(400px);
    opacity: 1;
  }
  50% {
    transform: translateX(200px);
    opacity: 1;
  }
  100% {
    width: 100%;
  }
}
.mainContainer {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

main p {
  text-align: justify;
  font-family: "Roboto", "sans-serif";
  font-size: 21px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.call {
  display: block;
  margin-top: 100px;
  margin-left: 40%;
  width: 50%;
}

#homeH1 {
  animation-name: aparecerH1;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1.2s;
  animation-direction: alternate;
}

@keyframes aparecerH1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateX(400px);
  }
  25% {
    transform: translateX(400px);
    color: rgb(128, 19, 0);
    font-family: "Roboto", "sans-serif";
    font-weight: 900;
    z-index: 3;
  }
  75% {
    transform: translateX(200px);
    color: rgb(128, 19, 0);
    font-family: "Roboto", "sans-serif";
    font-weight: 900;
  }
  100% {
    width: 100%;
    color: orange;
    font-family: "Roboto", "sans-serif";
    font-weight: 900;
    z-index: 3;
  }
}
h1, .backgroundMenu h1 {
  font-family: "Roboto", "sans-serif";
  color: orange;
  font-weight: 900;
  z-index: 3;
}

.call a {
  float: right;
  font-family: "Roboto", "sans-serif";
  font-weight: 600;
  background-color: orange;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 60px 10px 40px 20px;
  z-index: 3;
}

#botonFx {
  animation-name: efecto;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-duration: 5s;
  animation-direction: alternate;
  z-index: 3;
}

@keyframes efecto {
  0% {
    border-radius: 80px 20px 60px 40px;
  }
  25% {
    border-radius: 100px 40px 80px 60px;
    background-color: rgb(182, 120, 6);
  }
  50% {
    border-radius: 20px 60px 100px 80px;
  }
  75% {
    border-radius: 40px 80px 20px 100px;
    background-color: rgb(182, 120, 6);
  }
  100% {
    border-radius: 60px 10px 40px 20px;
  }
}
.call a:hover {
  background-color: #36044d;
  z-index: 3;
}

article {
  padding-top: 80px;
  width: 100%;
}

article:hover {
  transform: scale(1.2, 1.2);
  transition: all 1s;
}

.container-fluid {
  overflow: hidden;
}

.flex {
  text-align: center;
}

.flex p {
  margin-top: -10px;
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
  text-align: center;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

footer {
  position: static;
  bottom: 0;
  margin-top: 100px;
  background-color: black;
  color: rgb(255, 255, 255);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 30px;
  z-index: 2;
}

.footerColumna1 {
  padding-top: 30px;
  text-align: left;
}

.footerColumna2 {
  padding-top: 30px;
  text-align: left;
}

.footerColumna3 {
  padding-top: 30px;
  text-align: right;
}

footer h3 {
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
  font-size: larger;
  font-weight: 600;
}

footer ul {
  list-style: none;
  font-size: 12px;
  justify-content: space-evenly;
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
}

footer li {
  margin-left: -30px;
  padding-top: 10px !important;
}

footer ul li img {
  padding-right: 5px;
  margin-top: -10px;
}

footer a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

footer a:hover {
  color: orange;
}

footer p {
  padding-top: 90px;
  margin-bottom: 0px !important;
  font-size: 11px !important;
  justify-content: space-evenly;
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
}

.subir {
  height: 40px;
  width: 40px;
  background-color: rgba(255, 168, 0, 0.3);
  color: orange;
  position: fixed;
  bottom: 60px;
  right: 10px;
  text-align: center;
  line-height: 40px;
  font-size: 28px;
  box-shadow: 0 0 2px rgb(255, 255, 255);
  z-index: 2;
}

@media (min-width: 993px) {
  .BulletMainMobile {
    display: none;
  }
}
@media (max-width: 992px) {
  .separatorMain {
    display: none;
  }
  .BulletMainMobile {
    width: 25px;
    height: 20px;
    margin-top: -11px;
    padding-left: 10px;
  }
  .call {
    display: block;
    margin-top: 100px;
    margin-left: 0%;
    width: 90%;
  }
  .navbar ul li {
    list-style: none;
    font-size: 15px;
    font-weight: bold;
    padding-top: 5px;
  }
  .navbar-expand-lg .navbar-collapse {
    padding-right: 50px;
  }
  .footerColumna3 {
    text-align: center;
  }
  #fxContainer {
    animation-name: aparecer;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    animation-direction: alternate;
  }
  @keyframes aparecer {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
    0% {
      width: 100%;
      transform: translateY(-200px);
    }
    50% {
      opacity: 0.5;
    }
    100% {
      width: 100%;
    }
  }
}
#containerTitle {
  animation-name: aparecerMenu;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-direction: alternate;
  z-index: 999;
}

.backgroundMenu {
  position: absolute;
  top: 0;
  padding-top: 50px;
  width: 100%;
  height: 500px;
  background-image: url(./img/bgMenu.jpg);
  background-size: cover;
  z-index: 1;
}

.backgroundMenu h1 {
  padding-top: 200px;
  text-align: center;
}

.backgroundMenu p {
  margin-top: -20px;
  text-align: center;
  font-size: 24px;
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
}

.containerPreparadosMenu {
  margin-top: 400px;
}

.menuPizzas {
  width: 90%;
  justify-content: space-between;
  text-align: center;
}
.menuPizzas a {
  float: right;
  font-family: "Roboto", "sans-serif";
  font-weight: 600;
  background-color: orange;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 60px 10px 40px 20px;
  z-index: 3;
}

.imgMenu {
  border-radius: 60px 10px 40px 20px;
  width: 275px;
  height: 186px;
  animation-name: efectoMenu;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-duration: 5s;
  animation-direction: alternate;
}

@keyframes efectoMenu {
  0% {
    border-radius: 80px 20px 60px 40px;
  }
  25% {
    border-radius: 100px 40px 80px 60px;
    background-color: rgb(182, 120, 6);
  }
  50% {
    border-radius: 20px 60px 100px 80px;
  }
  75% {
    border-radius: 40px 80px 20px 100px;
    background-color: rgb(182, 120, 6);
  }
  100% {
    border-radius: 60px 10px 40px 20px;
  }
}
#menuFx {
  z-index: 2;
  overflow: hidden;
}

#imgMenuFx {
  margin-top: -100px;
  animation-name: aparecerMenu;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-direction: alternate;
  z-index: 999;
}

.menuPizzas div {
  margin-top: 5px;
  padding-top: 30px;
  padding-left: 50px;
  margin-bottom: 5px;
  z-index: 998;
}

.menuPizzas div p {
  text-align: left;
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
}

.menuPizzas div h2 {
  font-family: "Roboto", "sans-serif";
  color: orange;
  font-size: 22px;
  text-align: left;
  font-weight: 600;
}

#infoMenu {
  animation-name: aparecerMenu;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-direction: alternate;
}

@keyframes aparecerMenu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateY(-600px);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.menuPizzas div h3 {
  font-family: "Roboto", "sans-serif";
  color: orange;
  font-size: 22px;
  font-weight: 600;
  text-align: right;
}

@media only screen and (max-width: 768px) and (orientation: portrait) {
  .imgMenu {
    width: 100%;
    height: auto;
    border-radius: 40px 5px 20px 10px;
  }
  .menuPizzas {
    width: 100%;
  }
  .backgroundMenu {
    padding-top: 50px;
    background-image: url(./img/bgMenu.jpg);
    background-size: cover;
  }
  .backgroundMenu h1 {
    margin-top: -90px !important;
    font-size: 28pt;
    font-weight: 600;
    line-height: 23pt;
  }
  .containerPreparadosMenu {
    margin-top: 200px;
  }
  .containerMenu {
    position: relative;
    margin-top: 0px;
    z-index: 2;
  }
}
.containerIngredientes {
  position: relative;
  margin-top: -100px;
  padding-top: 100px;
  width: 100%;
  background-image: url(./img/bgIngredientes.jpg);
  background-size: cover;
  z-index: 1;
}

.nostraIngredientes {
  width: 100%;
  float: left;
}
.nostraIngredientes div {
  float: right;
  width: 48%;
  margin-top: 30px;
  margin-bottom: 5px;
  padding-right: 80px;
}
.nostraIngredientes div p {
  text-align: left;
  color: rgb(255, 255, 255);
}
.nostraIngredientes div h2 {
  font-family: "Roboto", "sans-serif";
  color: orange;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
}

#fxAparacerIngredientes1 {
  margin-top: 50px;
  animation-name: aparecerIngredientes1;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-direction: alternate;
}

@keyframes aparecerIngredientes1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateX(-550px);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
#fxAparacerIngredientes2 {
  animation-name: aparecerIngredientes2;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 3s;
  animation-direction: alternate;
}

@keyframes aparecerIngredientes2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateX(-550px);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
#fxAparacerIngredientes3 {
  animation-name: aparecerIngredientes3;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 4s;
  animation-direction: alternate;
}

@keyframes aparecerIngredientes3 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateX(-550px);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
#fxAparacerIngredientes4 {
  animation-name: aparecerIngredientes4;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 5s;
  animation-direction: alternate;
}

@keyframes aparecerIngredientes4 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateX(-550px);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .nostraIngredientes div {
    float: right;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 5px;
    padding-left: 30px;
  }
}
.mainsucursales {
  margin-top: -100px;
  height: 100vh;
  background-image: url(./img/bgSucursales.jpg);
  background-size: cover;
  z-index: 1;
  width: 100%;
}

.containersucursales {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sucursales {
  display: flex;
  width: 80%;
  animation-name: aparecerSucursales;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s;
  animation-direction: alternate;
}

@keyframes aparecerSucursales {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateY(-300px);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.suc {
  margin-top: 150px;
}

.suc div {
  width: 100%;
}

.imgSucursales {
  border-radius: 60px 10px 40px 20px;
  animation-name: efectoImgSucursales;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-duration: 5s;
  animation-direction: alternate;
}

@keyframes efectoImgSucursales {
  0% {
    border-radius: 80px 20px 60px 40px;
  }
  25% {
    border-radius: 100px 40px 80px 60px;
    background-color: rgb(182, 120, 6);
  }
  50% {
    border-radius: 20px 60px 100px 80px;
  }
  75% {
    border-radius: 40px 80px 20px 100px;
    background-color: rgb(182, 120, 6);
  }
  100% {
    border-radius: 60px 10px 40px 20px;
  }
}
.imgSucursales2 {
  border-radius: 60px 10px 40px 20px;
  animation-name: efectoImgSucursales2;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-duration: 4s;
  animation-direction: alternate;
}

@keyframes efectoImgSucursales2 {
  0% {
    border-radius: 80px 20px 60px 40px;
  }
  25% {
    border-radius: 100px 40px 80px 60px;
    background-color: rgb(182, 120, 6);
  }
  50% {
    border-radius: 40px 80px 20px 100px;
  }
  75% {
    border-radius: 20px 60px 100px 80px;
    background-color: rgb(182, 120, 6);
  }
  100% {
    border-radius: 60px 10px 40px 20px;
  }
}
.imgSucursales3 {
  border-radius: 60px 10px 40px 20px;
  animation-name: efectoImgSucursales3;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-duration: 5s;
  animation-direction: alternate;
}

@keyframes efectoImgSucursales3 {
  0% {
    border-radius: 20px 60px 100px 80px;
  }
  25% {
    border-radius: 100px 40px 80px 60px;
    background-color: rgb(182, 120, 6);
  }
  50% {
    border-radius: 80px 20px 60px 40px;
  }
  75% {
    border-radius: 40px 80px 20px 100px;
    background-color: rgb(182, 120, 6);
  }
  100% {
    border-radius: 60px 10px 40px 20px;
  }
}
.imgSucursales4 {
  border-radius: 60px 10px 40px 20px;
  animation-name: efectoImgSucursales4;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-duration: 4s;
  animation-direction: alternate;
}

@keyframes efectoImgSucursales4 {
  0% {
    border-radius: 40px 80px 20px 100px;
  }
  25% {
    border-radius: 100px 40px 80px 60px;
    background-color: rgb(182, 120, 6);
  }
  50% {
    border-radius: 20px 60px 100px 80px;
  }
  75% {
    border-radius: 80px 20px 60px 40px;
    background-color: rgb(182, 120, 6);
  }
  100% {
    border-radius: 60px 10px 40px 20px;
  }
}
.suc p {
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
  text-align: left;
  width: 188px;
}

.suc ul {
  list-style: none;
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
}

.suc ul li {
  padding-top: 20px;
}

.suc ul li img {
  margin-left: -40px;
}

.suc a {
  text-align: right;
  margin-left: 15px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: orange;
}

.suc a:hover {
  color: rgb(255, 255, 255);
}

.suc p {
  font-size: 14px !important;
  justify-content: space-evenly;
  font-family: "Roboto", "sans-serif";
  color: rgb(255, 255, 255);
}

@media (max-width: 992px) {
  .mainsucursales {
    margin-top: 50px;
    padding-top: 50px;
    height: auto;
    background-image: url(./img/bgSucursales.jpg);
    background-size: cover;
    z-index: 1;
    justify-content: center;
    align-items: center;
  }
  .sucursales {
    margin-top: -100px;
    display: flex;
  }
  .suc {
    margin-top: 30px;
  }
  .suc div {
    margin-top: 0px;
  }
  .imgSucursales {
    width: 98%;
  }
  .imgSucursales2 {
    width: 98%;
  }
  .imgSucursales3 {
    width: 98%;
  }
  .imgSucursales4 {
    width: 98%;
  }
  .suc p {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .mainsucursales {
    margin-top: -100px;
    padding-top: 250px;
    height: auto;
    background-image: url(./img/bgSucursales.jpg);
    background-size: cover;
    z-index: 1;
  }
  .containersucursales {
    width: 100%;
  }
  .sucursales {
    margin-top: -100px;
    display: grid;
    justify-content: space-evenly;
  }
  .suc {
    margin-top: 30px;
  }
  .suc div {
    margin-top: 0px;
  }
  .imgSucursales {
    width: 300px;
    height: 300px;
  }
  .imgSucursales2 {
    width: 300px;
    height: 300px;
  }
  .imgSucursales3 {
    width: 300px;
    height: 300px;
  }
  .imgSucursales4 {
    width: 300px;
    height: 300px;
  }
}
.col-12 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#containerContacto {
  margin-top: -100px;
  z-index: 1;
}

.backgroundMenu h1 {
  line-height: 45pt;
}

.backgroundMenu p {
  padding-top: 30px;
}

#fxTituloContacto {
  animation-name: aparecerTitulo;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s;
  animation-direction: alternate;
}

@keyframes aparecerTitulo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  0% {
    transform: translateY(-200px);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.containerContacto {
  padding-top: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.contactoForm {
  z-index: 999;
  height: 150px;
}

.contactoArea {
  display: inline-block;
  vertical-align: bottom;
}

input {
  width: 400px;
  height: 31px;
  margin-bottom: 2px;
  font-family: "Roboto", "sans-serif";
  font-size: 12px;
  color: black;
  font-weight: bold;
}

textarea {
  width: 400px;
  padding-top: 5px;
  height: 100px;
  font-family: "Roboto", "sans-serif";
  font-size: 12px;
  color: black;
  font-weight: bold;
}

button {
  margin-top: 1px;
  float: right;
  background-color: orange;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 60px 10px 40px 20px;
}

button:hover {
  background-color: #36044d;
}

@media (max-width: 768px) {
  .backgroundMenu {
    width: 100%;
    height: 380px;
  }
  .backgroundMenu h1 {
    margin-top: 80px;
    font-size: 28pt;
    font-weight: 600;
    line-height: 23pt;
  }
  .backgroundMenu p {
    padding-top: 30px;
    font-size: 20pt;
    line-height: 19pt;
    font-weight: 200;
    padding-left: 30px;
    padding-right: 30px;
  }
  .containerContacto {
    position: relative;
    padding-top: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .contactoForm {
    margin-top: 0px;
  }
  .contactoArea {
    width: 100%;
  }
  input {
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    font-family: "Roboto", "sans-serif";
    font-size: 12px;
    color: black;
    font-weight: bold;
    border-radius: 5px;
  }
  textarea {
    border-radius: 5px;
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    font-family: "Roboto", "sans-serif";
    font-size: 12px;
    font-weight: bold;
  }
  button {
    margin-right: 20px;
  }
}/*# sourceMappingURL=style.css.map */