a {
  text-decoration: none;
}

.normal-text {
  letter-spacing: 5%;
  font-size: 36px;
  color: #6A6A6A;
}

.large-heading {
  font-size: clamp(50px, 5vw, 96px);
  color: #F0F0F0;
}

.blue-heading {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 4vw;
  line-height: 5vw;
  letter-spacing: 0.05em;
  color: #364F6B;
}

.card-text {
  font-size: clamp(1em, 2vw, 2em);
}

.background_orange {
  background-color: #FF8A00;
}

.padding-left {
  padding: 10px 0px 10px 37px;
}

.padding-right {
  padding: 10px 37px 10px 0px;
}

.padding-top {
  padding: 10px 0px;
}

.padding-bottom {
  padding: 20px 0px;
}

hr {
  margin-right: 40px;
  margin-left: 40px;
  color: #6A6A6A;
}

.margin-right {
  margin-right: 40px;
}

.margin-left {
  margin-left: 40px;
}

.margin-top-bottom {
  margin-bottom: 70px;
  margin-top: 70px;
}

.margin-bottom {
  margin-bottom: 70px;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.width {
  width: 100%;
}

.border {
  border: 1px solid #2c2c2c;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.background-gradient {
  background-image: linear-gradient(135deg, #f36b37 0%, #f36b37 23%, #f4853c 23%, #f4853c 27%, #f59f40 27%, #f59f40 73%, #f5ba45 73%, #f5ba45 74%, #f6d449 74%, #f6d449 78%, #f7ee4e 78%, #f7ee4e 100%);
}

.background-white {
  background-color: white;
}

.link {
  color: #364F6B;
  font-size: 25px;
  line-height: 36px;
  letter-spacing: 0.05em;
}

.footer {
  width: 100%;
  height: 110px;
  background-color: #364F6B;
  color: #F0F0F0;
}

.blade-right {
  background-image: linear-gradient(50deg, #FF8A00 80%, white 80%);
  padding-right: 200px;
}

.blade-left {
  background-image: linear-gradient(-50deg, #FF8A00 80%, white 80%);
  padding-left: 250px;
}

.flex_content-svg {
  width: clamp(250rem, 300vw, 450rem);
}

.copyscape {
  width: 120px;
  height: 100px;
}

.media-add {
  display: none;
}

.next-page {
  position: relative;
  background: #1a73e8;
  color: white;
  -webkit-transition: background 400ms;
  transition: background 400ms;
  padding: 15px 25px;
  border-radius: 4px;
  margin: 0px 30px;
  -webkit-box-shadow: rgba(196, 160, 160, 0.3) 3px 3px 5px 0px;
          box-shadow: rgba(196, 160, 160, 0.3) 3px 3px 5px 0px;
  overflow: hidden;
  outline: 0;
  border: 0;
  cursor: pointer;
}

.blue-link {
  color: #364F6B;
}

.blue-link:hover {
  color: #1a293f;
}

.blue-link:active {
  color: #243857;
}

.cookie-container {
  color: white;
  position: fixed;
  bottom: -100;
  width: 100%;
  padding: 10px;
  -webkit-transition: 400ms;
  transition: 400ms;
  z-index: 5;
}

.cookie-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: black;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  z-index: -1;
}

.cookie-container .cookie-para {
  margin: 10px 20px;
  color: white;
}

.cookie-container .cookie-para a {
  color: aqua;
}

.cookie-container .cookie-btn {
  margin: 10px 20px;
  font-size: large;
  background-color: #FF8A00;
  color: #ffffff;
  border: none;
  outline: 0;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-container .cookie-btn:hover {
  background-color: #db7500;
}

.cookie-container.active {
  bottom: 0;
}

.position-r {
  position: relative;
}

.position-a {
  position: absolute;
}

.position-f {
  position: fixed;
}

.position-s {
  position: -webkit-sticky;
  position: sticky;
}

.position-right {
  right: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-colum {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-media-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 480px) {
  .flex-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex-media-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

* {
  margin: 0%;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.cursor {
  cursor: pointer;
}

.link {
  font-size: 4vw;
}

.extra-margin {
  margin-left: 7vw;
}

.black-ops {
  font-family: "Black Ops One", sans-serif;
}

.cooks-note {
  padding: 5px;
  color: #242424;
  font-size: 5vw;
}

.flex-responsive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blade-text {
  font-size: 7vw;
  color: rgba(255, 255, 255, 0.76);
  padding: 5px 0px 5px 5px;
}

.svg {
  margin: 35px 2vw;
  width: 100%;
  height: 50%;
  margin: auto;
}

.responsive-text {
  color: #6A6A6A;
  font-size: 4.5vw;
  margin: 35px 10vw;
}

.material-icons {
  font-size: 7vw;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}

.icon-padding {
  padding: 5px;
  color: white;
  background-color: rgba(0, 0, 0, 0.507);
  border-radius: 50px;
  font-size: 45px;
}

body .top__container {
  position: relative;
  width: 100%;
  height: 50vh;
}

body .top__container::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/media/img/wallpaper.jpg");
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}

body .food-img {
  width: 60%;
  height: 45vh;
  top: 30vh;
  left: 20%;
}

body .food-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body .ingre {
  background-image: url("/media/img/background.svg");
  -o-object-fit: cover;
     object-fit: cover;
}

body .ingre .ingre-items {
  margin-bottom: 50px;
  margin-top: 30px;
}

body .ingre .ingre-items ol {
  margin-left: 7vw;
  font-family: "Black Ops One", sans-serif;
}

body .ingre .ingre-items ol li {
  font-family: "Montserrat", sans-serif;
  font-size: 5vw;
  color: #303030;
  margin-top: 10px;
}

body .recipies {
  background-image: radial-gradient(circle at 16% 83%, rgba(148, 148, 148, 0.06) 0%, rgba(148, 148, 148, 0.06) 50%, rgba(63, 63, 63, 0.06) 50%, rgba(63, 63, 63, 0.06) 100%), radial-gradient(circle at 68% 87%, rgba(66, 66, 66, 0.06) 0%, rgba(66, 66, 66, 0.06) 50%, rgba(105, 105, 105, 0.06) 50%, rgba(105, 105, 105, 0.06) 100%), radial-gradient(circle at 38% 50%, rgba(123, 123, 123, 0.06) 0%, rgba(123, 123, 123, 0.06) 50%, rgba(172, 172, 172, 0.06) 50%, rgba(172, 172, 172, 0.06) 100%), -webkit-gradient(linear, left top, right top, from(#030303), to(#030303));
  background-image: radial-gradient(circle at 16% 83%, rgba(148, 148, 148, 0.06) 0%, rgba(148, 148, 148, 0.06) 50%, rgba(63, 63, 63, 0.06) 50%, rgba(63, 63, 63, 0.06) 100%), radial-gradient(circle at 68% 87%, rgba(66, 66, 66, 0.06) 0%, rgba(66, 66, 66, 0.06) 50%, rgba(105, 105, 105, 0.06) 50%, rgba(105, 105, 105, 0.06) 100%), radial-gradient(circle at 38% 50%, rgba(123, 123, 123, 0.06) 0%, rgba(123, 123, 123, 0.06) 50%, rgba(172, 172, 172, 0.06) 50%, rgba(172, 172, 172, 0.06) 100%), linear-gradient(90deg, #030303, #030303);
}

@media screen and (min-width: 768px) {
  .cooks-note {
    font-size: 35px;
  }
  .material-icons {
    font-size: 50px;
  }
  .link {
    font-size: 2vw;
  }
  .responsive-text {
    font-size: 3vw;
  }
  .flex-responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .svg {
    width: 200vw;
    height: 50%;
  }
  body .food-img {
    width: 35%;
    height: 45vh;
    top: 30vh;
    left: 30%;
  }
  body .ingre .ingre-items ol li {
    font-size: 3vw;
  }
}
/*# sourceMappingURL=extra.css.map */