/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Inter", serif;
}

section {
  padding: 6rem 0;
  background-color: #e9dfce;
}

.btn {
  padding: .75rem 1.5rem;
  color: #fff;
  font-family: "Inter", serif;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #fab912;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.btn:hover {
  color: #fff;
  background-color: #1e0d3f;
}

.btn-small {
  font-size: .8rem;
}

.btn-blue {
  background-color: #1e0d3f;
}

.btn-blue:hover {
  color: #1e0d3f;
  background-color: #e9e5d9;
}

.btn-blue-to-yellow {
  background-color: #1e0d3f;
}

.btn-blue-to-yellow:hover {
  background-color: #fab912;
}

.btn-violet {
  background-color: #ad377b;
}

.btn-violet-to-blue {
  background-color: #ad377b;
}

.btn-violet-to-blue:hover {
  background-color: #1e0d3f;
}

.btn-red {
  background-color: #c12026;
}

.btn-pink {
  background-color: #eb82a5;
}

.btn-all-products {
  margin-top: calc(10rem - 45px);
}

.mt-10rem {
  margin-top: 10rem;
}

.mt-minus-10rem {
  margin-top: -10rem;
}

.mb-10rem {
  margin-bottom: 10rem;
}

@media (max-width: 991px) {
  section {
    padding: 4.5rem 0;
  }

  .d-none-for-mobile {
    display: none !important;
  }

  .mt-3rem-for-mobile {
    margin-top: 3rem !important;
  }
}

/* navigation */

.navbar {
  padding: 3rem 0;
  box-shadow: none;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink {
  padding: 1.5rem 0;
  background-color: rgb(233, 223, 206, .95);
}

.navbar .navbar-brand img {
  height: 75px;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  margin: 0 1rem;
  padding: 0;
  color: #1e0d3f;
  font-weight: 700;
  font-size: 0.95rem;
}

.navbar .navbar-nav .nav-item .nav-link-menu:before,
.navbar .navbar-nav .nav-item .nav-link-search:before,
.navbar .navbar-nav .nav-item .nav-link-languages:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  width: 0;
  background-color: #fab912;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link-menu:hover,
.navbar .navbar-nav .nav-item .nav-link-menu.active {
  color: #1e0d3f;
}

.navbar .navbar-nav .nav-item .nav-link-menu:hover:before,
.navbar .navbar-nav .nav-item .nav-link-menu.active:before,
.navbar .navbar-nav .nav-item .nav-link-search:hover:before,
.navbar .navbar-nav .nav-item .nav-link-search.active:before,
.navbar .navbar-nav .nav-item .nav-link-languages:hover:before,
.navbar .navbar-nav .nav-item .nav-link-languages.active:before {
  background-color: #fab912;
  width: 100%;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}

.navbar .navbar-nav .nav-item .nav-link-cta {
  margin-top: -.75rem;
  padding: .75rem 1.5rem;
  background-color: rgba(250, 185, 18, .6);
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link-cta:hover {
  background-color: rgba(250, 185, 18, 1);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-nav {
    align-items: center;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0 .75rem;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 1.5rem 0;
    background-color: #e9dfce;
  }

  .navbar.navbar-shrink {
    background-color: rgb(233, 223, 206, 1);
  }

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

  .navbar .navbar-nav .nav-item .nav-link {
    display: inline-block;
    padding: 0.75rem 0;
  }

  .navbar .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }

  .navbar .navbar-nav .nav-item .nav-link-menu:before,
  .navbar .navbar-nav .nav-item .nav-link-search:before,
  .navbar .navbar-nav .nav-item .nav-link-languages:before {
    bottom: 5px;
  }

  .navbar .navbar-nav .nav-item .nav-link-cta {
    padding: .75rem 3rem;
    background-color: rgba(250, 185, 18, 1);
  }

  .navbar .navbar-nav .nav-item .nav-link-search {
    padding-top: 1.5rem;
  }

  .navbar .navbar-nav .nav-item .nav-link-search i {
    margin-right: .5rem;
  }
}

/* front page cover */

.front-page-cover {
  height: 100vh;
  padding-top: 191px;
  padding-bottom: 0;
}

.front-page-cover h1 {
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-cover p {
  font-size: 1.15rem;
}

.front-page-cover .background-photo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background-image: url("../images/cover.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position-y: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-cover .background-photo {
    left: 60%;
    width: 40%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-cover .background-photo {
    left: 63%;
    width: 37%;
  }
}

@media (max-width: 991px) {
  .front-page-cover {
    padding-top: calc(133px + 3rem);
    padding-bottom: 0;
    height: auto;
  }

  .front-page-cover h1 {
    font-size: 2.5rem;
  }

  .front-page-cover .background-photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 300px;
    margin-top: 4.5rem;
  }
}

/* front page about */

.front-page-about {
  padding-bottom: 0;
}

.front-page-about h2 {
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-about p {
  color: #1e0d3f;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 2rem;
}

@media (max-width: 991px) {
  .front-page-about h2 {
    font-size: 2rem;
  }

  .front-page-about p {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}

/* front page products */

.front-page-products {
  position: relative;
  background-image: url("../images/front_page_products_background.png");
  background-size: 360px;
  background-repeat: no-repeat;
  background-position: left center;
}

.front-page-products:before {
  content: "";
  position: absolute;
  bottom: 200px;
  left: -114px;
  width: 228px;
  height: 200px;
  background-image: url("../images/products_background_photo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}

.front-page-products h2 {
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-products h3 {
  position: relative;
  display: inline-block;
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-products h3.top:before {
  content: "";
  position: absolute;
  top: -20px;
  right: -40px;
  width: 30px;
  height: 30px;
  background-image: url("../images/top_label.png");
  background-size: 30px;
  background-position: center center;
  background-repeat: no-repeat;
}

.front-page-products p {
  width: 80%;
  color: #1e0d3f;
  font-size: .9rem;
}

.front-page-products img.explainer {
  width: auto;
  height: 35px;
}

.front-page-products img.product-photo {
  height: 150px;
  width: auto;
}

.front-page-products .arrows {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.front-page-products .arrows i {
  color: #fff;
  font-size: 2.5rem;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-products .arrows i:hover {
  color: #eb82a5;
}

.front-page-products .arrows .left,
.front-page-products .arrows .right {
  display: inline-block;
  cursor: pointer;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-products {
    background-position: -40px center;
  }

  .front-page-products p {
    min-height: 238px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-products p {
    min-height: 238px;
  }
}

@media (max-width: 991px) {
  .front-page-products {
    background-image: none;
  }

  .front-page-products:before {
    display: none;
  }

  .front-page-products h2 {
    font-size: 2rem;
  }

  .front-page-products p {
    width: 100%;
  }

  .front-page-products .arrows {
    display: none;
  }
}

/* front page recipes */

.front-page-recipes {
  position: relative;
  margin-top: -10rem;
  background-color: #f8c363;
  z-index: 1;
}

.front-page-recipes h2 {
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-recipes h3 {
  margin-bottom: 1rem;
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-recipes p {
  color: #1e0d3f;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.front-page-recipes .individual-recipe {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  cursor: pointer;
}

.front-page-recipes .individual-recipe p {
  margin-bottom: 0;
  color: #1e0d3f;
  font-size: .9rem;
  font-weight: 400;
}

.front-page-recipes .individual-recipe a {
  background-color: #1e0d3f;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-recipes .individual-recipe:hover a {
  color: #1e0d3f;
  background-color: #e9e5d9;
}

.front-page-recipes .individual-recipe div.photo {
  height: 330px;
  margin-bottom: 2.25rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 5px solid #1e0d3f;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-recipes .individual-recipe:hover div.photo {
  border: 5px solid #e9e5d9;
}

.front-page-recipes .individual-recipe div.title-desc {
  margin-bottom: 2.25rem;
  min-height: 180px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-recipes .individual-recipe {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-recipes .individual-recipe {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .front-page-recipes .individual-recipe div.title-desc {
    min-height: 213px;
  }
}

@media (max-width: 991px) {
  .front-page-recipes {
    margin-top: 0;
  }

  .front-page-recipes h2 {
    font-size: 2rem;
  }

  .front-page-recipes p {
    font-size: 1rem;
  }

  .front-page-recipes .individual-recipe div.title-desc {
    min-height: 0;
  }
}

/* front page news */

.front-page-news {
  position: relative;
}

.front-page-news h2 {
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-news h3 {
  margin-bottom: 1rem;
  color: #1e0d3f;
  font-size: 2rem;
  font-weight: 800;
}

.front-page-news p {
  color: #1e0d3f;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.front-page-news .pattern {
  position: absolute;
  top: 6rem;
  left: 50%;
  width: 50%;
  height: calc(100% - 12rem);
  background-image: url("../images/news_pattern.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
}

.front-page-news .visual-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.front-page-news .visual-photo img.product-photo {
  width: 60%;
  height: auto;
  z-index: 2;
  margin-left: 50px;
}

.front-page-news .visual-photo img.secondary-photo {
  position: absolute;
  top: calc(50% + 90px);
  left: calc(50% - 190px);
  width: 120px;
  height: 90px;
  z-index: 1;
}

@media (max-width: 991px) {
  .front-page-news h2 {
    font-size: 2.5rem;
  }

  .front-page-news p {
    font-size: 1rem;
  }

  .front-page-news .visual-photo img.product-photo {
    width: 80%;
    margin-left: 0;
    margin-top: 3rem;
  }

  .front-page-news .visual-photo img.secondary-photo {
    top: calc(50% + 70px);
    left: calc(50% - 80px);
  }

  .front-page-news .pattern {
    display: none;
  }
}

/* front page instagram */

.front-page-instagram {
  padding-top: 0;
}

.front-page-instagram h2 {
  color: #1e0d3f;
  font-family: "PP Right Gothic Compact Dark";
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.front-page-instagram .instagram-div {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.front-page-instagram .instagram-div div {
  flex: 1 1 calc(100% / 3 - .2rem);
  width: calc(100% / 3 - .2rem);
  max-width: calc(100% / 3 - .2rem);
  min-width: calc(100% / 3 - .2rem);
  cursor: pointer;
}

.front-page-instagram .instagram-div img {
  width: 100%;
  height: auto;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-instagram .instagram-div div:hover img {
  opacity: .75;
}

@media (max-width: 991px) {
  .front-page-instagram {
    padding-top: 3rem;
  }

  .front-page-instagram h2 {
    font-size: 2rem;
  }

  .front-page-instagram .instagram-div {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
  }

  .front-page-instagram .instagram-div div {
    flex: 1 1 calc(100% / 2 - .15rem);
    width: calc(100% / 2 - .15rem);
    max-width: calc(100% / 2 - .15rem);
    min-width: calc(100% / 2 - .15rem);
  }
}

/* footer */

footer {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-color: #e9dfce;
  background-image: url("../images/footer_pattern2.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

footer ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-inline-start: 0;
}

footer ul li {
  padding-top: .5rem;
  padding-bottom: .5rem;
  color: #1e0d3f;
  font-size: 1rem;
  font-weight: 700;
}

footer ul li:first-child {
  padding-top: 0;
}

footer ul li:last-child {
  padding-bottom: 0;
}

footer ul li.soc-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer ul li a {
  position: relative;
  color: #1e0d3f;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

footer ul li a:hover {
  color: #1e0d3f;
}

footer ul li a:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 0;
  background-color: #fab912;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer ul li a:hover:before {
  background-color: #fab912;
  width: 100%;
}

footer ul li.soc-icons a i {
  font-size: 1.25rem;
}

footer img {
  height: 75px;
  width: auto;
}

footer .copyright-div {
  margin-top: 11rem;
}

footer .copyright-div p {
  color: #1e0d3f;
  font-size: .9rem;
}

footer .copyright-div p a {
  position: relative;
  color: #1e0d3f;
  font-size: .9rem;
  text-decoration: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer .copyright-div p a:hover {
  color: #1e0d3f;
  text-decoration: none;
}

footer .copyright-div p a:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #1e0d3f;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer .copyright-div p a:hover:before {
  background-color: #1e0d3f;
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  footer {
    background-size: 140%;
  }
}

@media (max-width: 991px) {
  footer {
    padding-top: 4.5rem;
    background-size: 500%;
  }

  footer ul li.soc-icons {
    justify-content: center;
  }

  footer .copyright-div {
    margin-top: 4.5rem;
  }
}

/* cookie bar */

.cookies-bar {
  position: fixed;
  display: flex;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  padding: 1.5rem 2rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fab912;
  z-index: 9999;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cookies-bar a {
  color: #fff;
  text-decoration: underline;
}

.cookies-bar a:hover {
  color: #fff;
  text-decoration: none;
}

.cookies-bar .btn {
  text-decoration: none;
}

.cookies-bar div:nth-child(1) {
  flex: 4;
  padding-right: 2rem;
}

.cookies-bar div:nth-child(2) {
  flex: 1;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cookies-bar div:nth-child(1) {
    flex: 3;
    padding-right: 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cookies-bar div:nth-child(1) {
    flex: 2.5;
  }
}

@media (max-width: 991px) {
  .cookies-bar {
    display: block;
    text-align: center;
  }

  .cookies-bar div:nth-child(1) {
    padding-right: 0;
  }

  .cookies-bar div:nth-child(2) {
    margin-top: 1.5rem;
  }
}






/* */
