@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  position: relative;
  height: auto;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: Blippo;
  src: url(../fonts/Blippo.ttf);
}
@font-face {
  font-family: Playbill;
  src: url(../fonts/Playbill.ttf);
}
.slider {
  position: relative;
}

.slider__pageTitle {
  font-family: "Blippo";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 10vh;
  margin: auto;
  max-width: 80%;
  font-weight: 900;
  font-size: 36px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px black;
}
.slider__pageTitle::before, .slider__pageTitle::after {
  content: " ";
  position: absolute;
  left: 0;
  width: 90%;
  height: 5px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px black;
}
.slider__pageTitle::before {
  top: -15px;
}
.slider__pageTitle::after {
  bottom: -15px;
}

.slider__container {
  width: 100%;
  height: 55vh;
  position: relative;
  background-color: #000;
}

.slider__slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.5s;
}

.slider__slide--hidden {
  opacity: 0;
}

.slider__slide--1 {
  background-image: url("../img/burger_wolove_bbq.jpg");
}

.slider__slide--2 {
  background-image: url("../img/burgery_przekroj.jpg");
}

.slider__slide--3 {
  background-image: url("../img/burgery_grill.jpg");
}

.slider__slide--4 {
  background-image: url("../img/burgery_naturalne.jpg");
}

.slider__slide--5 {
  background-image: url("../img/frytki_belgijskie.jpg");
}

.slider__slide--6 {
  background-image: url("../img/wolove_krowa.jpg");
}

.slider__slide--7 {
  background-image: url("../img/wolove_lokal.jpg");
  background-position: 20% 0%;
}

@media (min-width: 768px) {
  .slider__pageTitle {
    font-size: 72px;
    max-width: 650px;
  }

  .slider__slide--mobile {
    display: none;
  }

  .slider__slide--5 {
    background-image: url("../img/burger_menu.jpg");
  }

  .slider__slide--7 {
    background-position: center;
  }
}
.mainContainer {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 55vh;
  left: 0;
}

.mainContainer__container {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  background-color: #fff;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .mainContainer__container {
    max-width: 100%;
  }

  .mainContainer__logoContainer {
    width: 300px;
    height: 300px;
    top: -150px;
  }

  .mainContainer__logoBg {
    height: 200px;
  }
}
.quotes {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: auto;
  margin: 120px;
  padding: 0 30px;
  position: relative;
}

.quotes__quoteContainer {
  width: 100%;
  height: 100%;
  position: relative;
}
.quotes__quoteContainer::before {
  content: '"';
  line-height: 0;
  font-family: "Passion One";
  font-size: 250px;
  position: absolute;
  top: 80px;
  left: -25px;
  color: rgba(0, 0, 0, 0.07);
}

.quotes__quote {
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px;
}

.quotes__author {
  font-family: "Montserrat";
  text-align: right;
  font-size: 14px;
}

@media (min-width: 768px) {
  .quotes {
    align-items: center;
    height: auto;
  }

  .quotes__quoteContainer {
    max-width: 900px;
  }

  .quotes__author {
    font-size: 22px;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
.mouseIcon {
  width: 30px;
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
  margin: auto;
  border: 2px solid #cccccc;
  border-radius: 20px;
  background-color: #fff;
  transition: all 1s;
}
.mouseIcon::after {
  content: " ";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: #cccccc;
  right: 0;
  left: 0;
  margin: auto;
  top: 5px;
  animation: scroll 2s infinite;
}

.mouseIcon--hidden {
  opacity: 0;
}

@media (min-width: 768px) {
  .mouseIcon {
    width: 45px;
    height: 70px;
    bottom: 0px;
    border: 2px solid #cccccc;
    border-radius: 30px;
    transition: all 1s;
  }
  .mouseIcon::after {
    height: 15px;
    top: 7px;
  }
}
.header__container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 54px;
  height: 50px;
  font-family: "Blippo";
  text-transform: uppercase;
}
.header__container::before, .header__container::after {
  content: " ";
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: black;
}
.header__container::before {
  top: -9px;
}
.header__container::after {
  bottom: 0px;
}

.header__text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.header__text--small {
  font-size: 26px;
  line-height: 1.2rem;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .header__container {
    font-size: 120px;
    height: 108px;
  }
  .header__container::before, .header__container::after {
    content: " ";
    height: 10px;
    border-radius: 10px;
  }
  .header__container::before {
    top: -10px;
  }
  .header__container::after {
    bottom: 10px;
  }

  .header__text {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header__text--small {
    font-size: 58px;
    line-height: 42px;
    margin-top: -8px;
  }
}
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 60px;
}

.menu__container {
  width: 100%;
  margin: 30px 0;
}

.menu__meat {
  font-family: "Montserrat";
  text-align: justify;
  padding: 30px;
  font-size: 16px;
  border: 5px dotted #000;
  margin-top: 30px;
  width: 100%;
}

.menu__burger {
  width: 100%;
  padding: 20px 30px;
  display: grid;
  grid-template: 1fr 1fr/3fr 1fr 1fr;
  align-items: center;
}
.menu__burger:nth-child(2n) {
  background-color: #000;
  color: #fff;
}

.menu__burger--special, .menu__burger--notABurger {
  grid-template: auto/4fr 1fr;
  border: 5px dotted #fff;
}

.menu__name {
  margin: 0;
  font-family: "Montserrat";
  font-size: 28px;
  text-transform: capitalize;
}

.menu__ingredients {
  font-family: "Montserrat";
  font-size: 14px;
  grid-column-end: span 3;
  text-align: justify;
}

.menu__price {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 22px;
  text-align: right;
  position: relative;
}

.menu__price--small::before, .menu__price--big::before {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 10px;
}

.menu__price--small::before {
  content: "100g";
}

.menu__price--big::before {
  content: "200g";
}

@media (min-width: 768px) {
  .menu {
    margin-bottom: 50px;
  }

  .menu__container {
    max-width: 900px;
    margin: 30px 0;
  }

  .menu__name {
    font-size: 32px;
  }

  .menu__ingredients {
    font-size: 16px;
    text-align: justify;
    grid-column-end: auto;
  }

  .menu__price {
    font-weight: 900;
    font-size: 30px;
    grid-row-end: span 2;
    text-align: right;
    position: relative;
  }

  .menu__meat {
    font-size: 20px;
    border: 5px dotted #000;
    max-width: 600px;
    margin-top: 60px;
  }
}
.kontakt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}

.kontakt__choicesContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  height: 100%;
  width: 100%;
  position: relative;
}

.kontakt__choiceContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
  text-align: center;
  position: relative;
  width: 100%;
  height: 350px;
  opacity: 1;
  background-color: #000;
  color: #fff;
}
.kontakt__choiceContainer::after {
  content: " ";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: #000;
  z-index: 2;
  transform: rotate(45deg);
}

.kontakt__header {
  font-family: "Montserrat";
  margin: 0;
}

.kontakt__address {
  font-family: "Montserrat";
  margin: 10px 0;
}

.kontakt__callAndCollect {
  font-family: "Montserrat";
  font-size: 14px;
  border: 4px dotted #fff;
  padding: 5px 10px;
  margin: 10px 0;
}

.kontakt__openingHours {
  margin-top: 10px;
}

.kontakt__phoneLink {
  text-decoration: none;
  color: inherit;
  pointer-events: none;
}

.kontakt__phoneLink--active {
  pointer-events: all;
}

.kontakt__textBig {
  font-family: "Montserrat";
  font-size: 20px;
  margin-top: 6px;
}

.kontakt__textSmall {
  font-family: "Montserrat";
  font-size: 14px;
}

.kontakt__mapsContainer {
  width: 100%;
}

.kontakt__changeRestaurantBox {
  border: 1px solid white;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Montserrat";
  padding: 0.5rem;
  font-size: 0.8rem;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .kontakt__choicesContainer {
    width: 100%;
    max-width: 900px;
    margin-top: 60px;
  }

  .kontakt__choiceContainer {
    padding: 30px 10px;
    min-height: 400px;
  }

  .kontakt__header {
    display: block;
    font-size: 32px;
  }

  .kontakt__address {
    font-size: 24px;
  }

  .kontakt__callAndCollect {
    font-family: "Montserrat";
    font-size: 20px;
    padding: 10px 20px;
  }

  .kontakt__openingHours {
    margin-top: 15px;
  }

  .kontakt__textBig {
    font-size: 24px;
    margin-top: 10px;
  }

  .kontakt__textSmall {
    font-size: 16px;
  }

  .kontakt__changeRestaurantBox {
    position: absolute;
    top: 22px;
    right: 22px;
    margin: 0;
  }
}
.map {
  width: 100%;
  height: 50vh;
  margin: 0;
}

.map--hidden {
  display: none;
}

@media (min-width: 768px) {
  .map {
    width: 100%;
    left: 0;
  }
}
.footer {
  width: 100%;
  background-color: #000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 50px;
}

.footer__container {
  max-width: 600px;
}

@media (min-width: 768px) {
  .footer {
    padding-top: 150px;
  }
}
.logoCircle__container {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logoCircle__container--dark {
  background-color: #000;
}

.logoCircle__logo {
  max-width: 80%;
  max-height: 80%;
  margin-top: -15px;
}

.logoCircle__logoBg {
  height: 100px;
}

@media (min-width: 768px) {
  .logoCircle__container {
    width: 300px;
    height: 300px;
    top: -150px;
  }

  .logoCircle__logoBg {
    height: 200px;
  }
}
.tags {
  width: 100%;
  margin-top: -10px;
  margin-bottom: 30px;
  z-index: 3;
}

.tags__list {
  padding: 0 10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 900;
}

.tags__tag {
  margin: 0 10px;
  align-self: center;
}

.sign {
  text-align: center;
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 10px;
  font-family: "Montserrat";
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  .sign {
    font-size: 14px;
  }
}
.menuToggler {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 100;
  width: 25px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menuToggler__bar {
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
}

.menuToggler--clicked .menuToggler__bar1 {
  transform: rotate(-45deg) translateX(-1.5px);
  transform-origin: 100% 0%;
  box-shadow: none;
}

.menuToggler--clicked .menuToggler__bar2 {
  opacity: 0;
}

.menuToggler--clicked .menuToggler__bar3 {
  transform: rotate(45deg) translateX(1.5px);
  transform-origin: 100% 0%;
  box-shadow: none;
}

@media (min-width: 768px) {
  .menuToggler {
    width: 40px;
    height: 30px;
    right: 40px;
    top: 40px;
  }

  .menuToggler__bar {
    height: 4px;
  }

  .menuToggler--clicked .menuToggler__bar1 {
    transform: none;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.8);
  }

  .menuToggler--clicked .menuToggler__bar2 {
    opacity: 1;
  }

  .menuToggler--clicked .menuToggler__bar3 {
    transform: none;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.8);
  }
}
.nav {
  font-size: 22px;
  background-color: #000;
  color: #fff;
  width: 100%;
  font-family: "Montserrat";
  font-weight: 900;
  padding-top: 60px;
  transition: cubic-bezier(0.42, 0, 0.54, 1.82) 0.6s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav__item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 20px 30px;
  border-bottom: 4px dotted #fff;
}
.nav__item:first-child {
  border-top: 4px dotted #fff;
}

.nav__item--fanpage {
  flex-direction: column;
  align-items: flex-start;
}

.nav__fanpage {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.nav__fanpageContainer {
  margin: 20px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.nav__fanpageContainer--hidden {
  display: none;
}

.nav__icon {
  margin-right: 10px;
}

.nav--hidden {
  top: -100%;
}

@media (min-width: 768px) {
  .nav {
    width: 500px;
    height: 100%;
    left: auto;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 100px;
  }

  .nav--hidden {
    top: auto;
    transform: translateX(100%);
  }
}
@media print {
  .nav {
    display: none;
  }
}
.cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.6);
}

.cover--hidden {
  display: none;
}

@media (min-width: 768px) {
  .cover {
    opacity: 0;
  }
}
.about {
  height: calc(45vh - 100px);
  padding: 0px 30px;
  text-align: justify;
  font-family: "Montserrat";
  font-weight: lighter;
  position: relative;
  font-size: 14px;
}
.about::before {
  content: '"';
  line-height: 0;
  font-family: "Passion One";
  font-size: 250px;
  position: absolute;
  top: 80px;
  left: 25px;
  color: rgba(0, 0, 0, 0.07);
}

@media (min-width: 768px) {
  .about {
    font-size: 20px;
    max-width: 750px;
    height: calc(40vh - 150px);
    margin-top: -35px;
  }
  .about::before {
    content: '"';
    font-size: 350px;
    top: 80px;
    left: -25px;
  }
}
@keyframes slideFromLeft {
  from {
    transform: translateX(calc(-50vw - 100%));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideFromRight {
  from {
    transform: translateX(calc(50vw + 100%));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.welcome {
  width: 100%;
  background-image: url("../img/burgery_grill.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.welcome__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.33);
}

.welcome__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  max-height: 800px;
  z-index: 10;
}

.welcome__logo {
  width: 50vw;
  max-width: 200px;
  margin-bottom: 2rem;
}

.welcome__chooseCont {
  display: flex;
  flex-direction: column;
}

.welcome__chooseBox {
  width: 300px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  border: 2px solid black;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 1.33rem;
  color: black;
}
.welcome__chooseBox:not(:last-child) {
  margin-bottom: 2rem;
}

.welcome__chooseBox--option {
  background-color: black;
  border: 2px solid white;
  color: white;
}

.welcome__chooseBox--animatedFromLeft {
  animation: slideFromLeft 0.66s cubic-bezier(0.55, -0.01, 0.62, 1.26);
}

.welcome__chooseBox--animatedFromRight {
  animation: slideFromRight 0.66s cubic-bezier(0.55, -0.01, 0.62, 1.26);
}

.welcome__chooseBox--newOne {
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}
.welcome__chooseBox--newOne::after {
  content: "Już otwarte!";
  position: absolute;
  top: 15px;
  right: -27px;
  font-size: 0.5rem;
  font-weight: normal;
  background-color: #db5a42;
  padding: 4px 32px;
  transform: rotate(30deg);
}

@media (min-width: 768px) {
  .welcome__logo {
    width: 100%;
  }

  .welcome__chooseBox {
    width: 400px;
    height: 60px;
    margin-bottom: 0;
  }

  .welcome__chooseText {
    font-size: 2rem;
  }

  .welcome__chooseBox--animatedFromLeft,
.welcome__chooseBox--animatedFromRight {
    animation-duration: 1s;
  }
}

/*# sourceMappingURL=style.css.map */
