/* guides */

/*
font-family: "Montserrat", serif;

-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
*/

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", serif;
  background-color: #fffaed;
}

section {
  padding: 4.5rem 0;
}

.btn {
  padding: .6rem 2rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #000;
  border-radius: 0;
  -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: #222;
}

.btn-white {
  color: #000;
  background-color: #fffaed;
}

.btn-white:hover {
  color: #000;
  background-color: #e5e1d3;
}

@media (max-width: 991px) {
  .d-none-for-xs {
    display: none !important;
  }

  .overflow-x-scroll-for-xs {
    overflow-x: scroll !important;
  }

  section {
    padding: 3rem 0;
  }
}

/* navigation */

.navbar {
  box-shadow: none;
  background-color: rgba(0, 0, 0, .85);
  -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 {
  box-shadow: none;
  background-color: rgba(0, 0, 0, .85);
}

.navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar .navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 1.5rem;
  padding: 0;
  cursor: pointer;
}

.navbar .navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #fff;
  -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:hover,
.navbar .navbar-nav .nav-item .nav-link:active,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before,
.navbar .navbar-nav .nav-item .nav-link:active:before,
.navbar .navbar-nav .nav-item .nav-link.active:before {
  width: 100%;
}

.navbar .navbar-nav-main .nav-item:first-child .nav-link {
  margin-left: 0;
}

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

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

@media (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    display: inline-block;
    margin: 0.75rem 0;
  }
}

/* front page cover */

.front-page-cover {
  height: 440px;
  padding-top: 70px;
  padding-bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%), url("../images/cover2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.front-page-cover h1 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.7rem;
}

.front-page-cover img {
  height: 100px;
}

@media (max-width: 991px) {
  .front-page-cover {
    padding-top: 88px;
  }

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

/* front page catering chain */

.front-page-catering-chain h2 {
  position: relative;
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.front-page-catering-chain h2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: #000;
}

.front-page-catering-chain h3 {
  width: 90%;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
}

.front-page-catering-chain p {
  width: 90%;
  font-size: .95rem;
}

.front-page-catering-chain img {
  width: 80%;
  height: auto;
}

.front-page-catering-chain video {
  width: 100%;
  height: auto;
}

.front-page-catering-chain .soc-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.front-page-catering-chain .soc-icons a {
  color: #000;
  -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-catering-chain .soc-icons a:hover {
  color: #222;
}

.front-page-catering-chain .background-photo {
  position: absolute;
  top: -125px;
  right: 100px;
  width: 225px;
  height: 223px;
  background-image: url("../images/pizza.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-catering-chain .background-photo {
    top: auto;
    bottom: 125px;
  }
}

@media (max-width: 991px) {
  .front-page-catering-chain img {
    width: 90%;
  }
}

/* front page restaurants */

.front-page-restaurants {
  background-color: #000;
  background-image: url("../images/muses.png");
  background-size: 475px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.front-page-restaurants h2 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.front-page-restaurants h2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 60%;
  height: 2px;
  background-color: #fff;
}

.front-page-restaurants p {
  color: #fff;
  font-size: .95rem;
}

.front-page-restaurants p a {
  position: relative;
  color: #fff;
  text-decoration: none;
}

.front-page-restaurants p a:hover {
  color: #fff;
  text-decoration: none;
}

.front-page-restaurants p a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #fff;
  -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-restaurants p a:hover:before {
  width: 100%;
}

.front-page-restaurants p i {
  margin-right: .75rem;
  font-size: 1.1rem;
}

.front-page-restaurants img {
  height: 55px;
}

.front-page-restaurants .soc-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.front-page-restaurants .soc-icons a {
  color: #fffaed;
  -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-restaurants .soc-icons a:hover {
  color: #e5e1d3;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-restaurants {
    background-size: 400px;
  }
}

@media (max-width: 991px) {
  .front-page-restaurants {
    padding-bottom: 12rem;
    background-size: 350px;
  }
}

/* front page frozen food */

.front-page-frozen-food h2 {
  position: relative;
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.front-page-frozen-food h2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: #000;
}

.front-page-frozen-food h3 {
  width: 90%;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
}

.front-page-frozen-food p {
  width: 90%;
  font-size: .95rem;
}

.front-page-frozen-food img {
  width: 80%;
  height: auto;
}

.front-page-frozen-food video {
  width: 100%;
  height: auto;
}

.front-page-frozen-food .soc-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.front-page-frozen-food .soc-icons a {
  color: #000;
  -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-frozen-food .soc-icons a:hover {
  color: #222;
}

.front-page-frozen-food .background-photo {
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  left: 50px;
  width: 300px;
  height: 300px;
  background-image: url("../images/frozen_food.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.front-page-frozen-food .background-photo-2 {
  position: absolute;
  top: calc(50% - 65px);
  right: 50px;
  width: 148px;
  height: 130px;
  background-image: url("../images/frozen_food_photo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.front-page-frozen-food .background-photo-3 {
  position: absolute;
  top: calc(50% - 235px);
  right: 125px;
  width: 143px;
  height: 130px;
  background-image: url("../images/frozen_food_photo2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.front-page-frozen-food .background-photo-4 {
  position: absolute;
  top: calc(50% + 85px);
  right: 125px;
  width: 130px;
  height: 130px;
  background-image: url("../images/frozen_food_photo3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-frozen-food .background-photo {
    top: calc(50% - 125px);
    left: 25px;
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-frozen-food .background-photo {
    top: calc(50% - 75px);
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 991px) {
  .front-page-frozen-food {
    padding-bottom: 14rem;
  }

  .front-page-frozen-food img {
    width: 90%;
  }

  .front-page-frozen-food .background-photo-2 {
    top: 2.5rem;
    left: calc(50% - 74px);
  }
}

/* front page about */

.front-page-about {
  background-color: #000;
}

.front-page-about h2 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.front-page-about h2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: #fff;
}

.front-page-about h3 {
  color: #fff;
  font-weight: 600;
}

.front-page-about p {
  color: #fff;
  font-size: .95rem;
  font-weight: 400;
  text-transform: none;
}

.front-page-about .stat-blocks {
  display: flex;
  gap: 1.5rem;
}

.front-page-about .stat-blocks .individual-stat-block {
  flex: 1 1 calc(100% / 5 - 1.2rem);
  width: calc(100% / 5 - 1.2rem);
  max-width: calc(100% / 5 - 1.2rem);
  min-width: calc(100% / 5 - 1.2rem);
}

.front-page-about .stat-blocks .individual-stat-block p {
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .front-page-about .stat-blocks {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .front-page-about .stat-blocks .individual-stat-block {
    flex: 1 1 calc(50% - 1rem);
    width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
}

/* front page partners */

.front-page-partners h2 {
  position: relative;
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.front-page-partners h2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: #000;
}

.front-page-partners img {
  /*
  flex: 1 1 calc(100% / 6 - 1.6rem);
  width: calc(100% / 6 - 1.6rem);
  max-width: calc(100% / 6 - 1.6rem);
  min-width: calc(100% / 6 - 1.6rem);
  */
  width: 80% !important;
  margin-left: 10% !important;
  margin-right: 10% !important;
  height: auto;
}

.front-page-partners .partners-logos-div {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* footer */

footer {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  background-color: #000;
}

footer p {
  margin-bottom: 0;
  color: #fff;
  font-size: .875rem;
}

footer ul {
  margin-bottom: 0;
  padding-inline-start: 0;
  list-style-type: none;
  color: #fff;
  font-size: .95rem;
}

footer ul li {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

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

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

footer a {
  position: relative;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

footer a:hover {
  color: #fff;
  text-decoration: none;
}

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

footer a:hover:before {
  width: 100%;
}

footer img {
  width: 85%;
  height: auto !important;
}

@media (max-width: 991px) {
  footer img {
    width: 100%;
  }
}

/* cookie bar */

.cookies-bar {
  position: fixed;
  display: flex;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem 2rem;
  align-items: center;
  z-index: 9999;
  background-color: #fffaed;
  color: #000;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

.cookies-bar a {
  position: relative;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

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

.cookies-bar a.read-more:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #000;
  -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.read-more:hover:before {
  width: 0;
}

.cookies-bar a.btn {
  color: #fff;
}

.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;
  }
}

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

@media (max-width: 991px) {
  .cookies-bar {
    display: block;
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: .85rem;
  }

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

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

/* privacy policy */

.privacy-policy-modal {
  display: none;
  width: 800px;
  min-width: 800px;
  max-width: 800px;
  background-color: #fffaed;
}

.privacy-policy-modal h2 {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 4.5rem;
  color: #000;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.privacy-policy-modal h2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 40%;
  width: 20%;
  height: 2px;
  background-color: #000;
}

.privacy-policy-modal h3 {
  margin-top: .75rem;
  margin-bottom: 1.5rem;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.privacy-policy-modal p,
.privacy-policy-modal ul {
  margin-bottom: 1.5rem;
  color: #000;
  font-size: .95rem;
  font-weight: 400;
}

.privacy-policy-modal ul {
  list-style-type: square;
}

.privacy-policy-modal p:nth-last-child(2),
.privacy-policy-modal ul:nth-last-child(2) {
  margin-bottom: 0;
}

.privacy-policy-modal a {
  position: relative;
  color: #000;
  text-decoration: none;
  outline: 0 !important;
}

.privacy-policy-modal a:hover {
  color: #000;
  text-decoration: none;
}

.privacy-policy-modal a:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #000;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.privacy-policy-modal a:hover:before {
  width: 0;
}

.privacy-policy-modal table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-spacing: 0;
}

.privacy-policy-modal table td {
  padding: 1rem;
  color: #000;
  font-size: .95rem;
  font-weight: 400;
  border: 1px solid #000;
}

.privacy-policy-modal table tr:first-child td {
  text-align: center;
  font-weight: 500;
}

@media (max-width: 991px) {
  .privacy-policy-modal {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

/* */
