@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Bebas+Neue:400|Inter:600,500,400,700|Poppins:600");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

.logo {
  display: block;
  position: relative;
}

.logo::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #00000096;
  filter: blur(22px);
  width: 130px;
  height: 100%;
  top: 0;
  left: 0;
}

.logo img {
  position: relative;
  z-index: 1000;
}

.header .logo {
  padding: 10px;
}



.order-form-page .header .logo {
  padding: 0;
}

.order-form-page .header .logo::after {
  display: none;
}

.header .buttons {
  padding-top: 35px;
  text-align: center;
}

.btn {
  box-shadow: 1px 2px 2px #0000008a;
  border: 1px solid #fff;
  border-radius: 26px;
  color: #fff;
  padding: 0 29px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}

.btn.order-now {
  border-color: #febb2d;
  box-shadow: 3px 3px 4px #00000073;
  background: #febb2d;
  color: #333333;
}

.header .order-now {

}

.header .btn + .btn {
  margin-left: 10px;
}


@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1220px;
  }
}
