body {
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  background: #eee;
  color: #0c0c0d;
}

ul,
p {
  margin-top: 4px;
}

h3,
h4 {
  margin-bottom: 4px;
}


.wrapper {
  max-width: 1440px;
  margin: auto;
  background: #fafafa;
  display: -ms-grid;
  display: grid;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.read-more {
  display: none;
}

.read-more-btn {
  outline: none;
  background-color: dodgerblue;
  font-size: 16px;
  width: 106px;
  color: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 7px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin: 30px 0 50px 0;
  -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}

.read-more-btn:hover {
  color: #fff;
  background-color: #005fbe;
}

.header-bg {
  background: center no-repeat url("../img/header-img-comp.jpg");
  background-position: right;
  max-width: 1440px;
  height: 775px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#nav-bar {
  background-color: rgba(29, 29, 29, 0.9);
  overflow: hidden;
  position: fixed;
  top: 0px;
  width: 100%;
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 72px;
  padding: 50px;
  z-index: 1;
}

.nav-link {
  text-decoration: none;
  padding-left: 25px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.menu-btn:hover,
.nav-link:hover {
  color: #ffbe3f;
}

.scrolled {
  background-color: rgba(29, 29, 29, 0.9);
  padding-top: 70px;
}

.menu {
  position: absolute;
  right: 60px;
}

.menu-btn {
  display: none;
  position: absolute;
  right: 60px;
  color: #fff;
  font-size: 1.6em;
}

.logo-img {
  max-width: 70%;
  min-width: 237px;
  min-height: 75px;
}

.logo-small {
  display: none;
}

.menu-icon {
  line-height: 60px;
  width: 100%;
  background: #000;
  text-align: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 24px;
  cursor: pointer;
  color: #fff;
  display: none;
}

.hero-text {
  font-weight: 300;
  color: #fff;
  font-size: 65px;
  text-align: center;
  max-width: 90%;
  margin: 100px auto;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
}

section {
  padding: 50px 0;
}

.content {
  text-align: justify;
  font-size: 18px;
  padding: 10px 50px 0 10px;
  line-height: 25px;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 11fr;
  grid-template-columns: 1fr 11fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-title {
  font-size: 40px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  color: #ce2424;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  padding: 50px;
}

#about.about.grid {
  background-color: white;
}

section#offer {
  padding: 0;
}

#offer {
  /* background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/img/lights.png); */
  /* background: -webkit-gradient(linear, left top, right top, from(rgba(134, 253, 232, 0.8)), to(rgba(172, 182, 229, 0.8)));
  background: linear-gradient(to right, rgba(134, 253, 232, 0.8), rgba(172, 182, 229, 0.8)); */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  /* -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.45); */
  border-top: 3px dashed #444;
  border-bottom: 3px dashed #444;
}

.offer__image {
  height: 30px;
  width: 100%;
  background-size: 19%;
  background-repeat: repeat;
  background-position: center;
  background-image: url(/img/lights.png);

}

#offer section {
  padding: 20px;
}

#offer .description {
  margin-left: 50px;
  padding: 16px;
}

#offer h3 {
  text-align: center;
  font-weight: normal;
  letter-spacing: 1.5px;
  font-size: 1.5rem;
  color: #2468ce;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

#catalog {
  background: #fefeff;
}

.catalog-container {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 250px))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
  grid-gap: 70px 30px;
  width: 80%;
  margin: auto;
}

.catalog-container a {
  text-decoration: none;
  color: #0c0c0d;
}

.card {
  background-color: #fff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  width: 250px;
  height: 280px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 7fr 2fr;
  grid-template-rows: 7fr 2fr;
  border-top: 8px solid #fff;
}

.card-img {
  display: -ms-grid;
  display: grid;
}

.card-title {
  display: -ms-grid;
  display: grid;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #d1d1d1;
  padding: 0;
}

.card-hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #d1d1d1;
  margin: 0 20px;
  padding: 0;
}

.catalog-img {
  width: 185px;
  height: 150px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.mobile-img {
  display: none;
}

.card-title h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  color: #131313;
}

.card:hover {
  border-top: 8px solid #2388cb;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.2);
}

.contact p {
  font-size: 1.2rem;
  -webkit-text-fill-color: #0c0c0d;
}

.rozniza {
  display: block;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  border: none;
  color: #db5555;
  border-radius: 7px;
  background: #fafafa;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.rozniza:hover {
  -webkit-box-shadow: 2px 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  box-shadow: 2px 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
  background-position: right center;
}

#ad {
  text-decoration: none;
  color: black;
  font-weight: 400px;
}

footer {
  margin-top: 50px;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

footer.ifooter {
  margin: 0;
}

footer p {
  margin: 0;
  text-align: center;
  font-size: 20px;
  padding: 20px 0;
  color: #fff;
  background-color: #242424;
}

.catalog-title {
  color: #e52b2b;
  text-align: center;
  font-size: 45px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

.catalog-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 11fr;
  grid-template-columns: 1fr 11fr;
}

.catalog-item-img {
  margin: 90px 20px 0 40px;
}

.catalog-item-img img {
  width: 195px;
  height: 175px;
}

/* ----------------------
------ Recipes section */

.recipes_link {
  background: #fff;
  text-align: center;
}

.recipes_link a {
  /* color: #eeac29; */
  color: navy;
  font-size: 30px;
  text-decoration: none;
  border: 2px solid navy;
  padding: 10px;
  cursor: pointer;
}

.recipes_link a:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, .15)
}


.recipe__title {
  /* text-align: center; */
  margin-top: 50px;
}


@media only screen and (max-width: 1000px) {
  #nav-bar {
    overflow: visible;
    padding: 40px;
  }

  .menu {
    width: 100%;
    overflow: hidden;
    right: 0;
    top: 72px;
    max-height: 0;
    margin-top: 8px;
    transition: all 0.3s;
  }

  .menu a {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 0px;
    background: rgba(29, 29, 29, 0.9);
  }

  .menu-btn {
    display: block;
    cursor: pointer;
  }

  .show {
    max-height: 600px;
    transition: all .7s ease-in;
  }


  a.nav-link.contacts {
    padding-bottom: 25px;
  }
}

@media (max-width: 1280px) {
  .logo {
    display: none;
  }

  .logo-small {
    display: block;
  }

  .logo-small-img {
    height: 50px;
  }
}

@media only screen and (max-width: 810px) {
  section {
    padding: 20px 0;
  }

  .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section-title {
    font-size: 40px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
    padding: 50px;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-transform: none;
    transform: none;
  }

  .content {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 702px) {
  .content {
    font-size: 16px;
  }

  .header-bg {
    height: 100vh;
    background-position: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-bg.catalog {
    background: none;
    height: 20px !important;
  }

  .hero-text {
    font-size: 37px;
    margin: 50px auto;
    padding-top: 60px;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
  }

  .section-title {
    font-size: 30px;
    color: #ce2424;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
    padding: 10px;
  }

  .grid {
    grid-gap: 30px;
  }

  .catalog-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }

  .content img {
    margin: auto;
  }

  .content h2 {
    text-align: center;
  }

  .catalog-item-img {
    display: none;
  }

  .mobile-img {
    display: block;
    width: 250px;
  }

  .catalog-title.mobile {
    font-size: 8vw;
    padding-top: 10px;
  }

  .catalog-title.mobile.first {
    margin-top: 60px;
  }

  .menu-btn {
    right: 30px;
    color: #fff;
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 375px) {
  .header-bg {
    height: 100vh;
  }

  .wrapper {
    width: 100vw;
  }

  #offer .description {
    margin-left: 0px;
  }

  .recipes_link a {
    /* color: #eeac29; */
    color: navy;
    font-size: 24px;
    text-decoration: none;
    border: none;
    padding: 5px;
  }
}

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