body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cervo";
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cervo";
}

.style1 {
  text-align: center;
}

header {
  position: fixed;
  z-index: 3;
  padding: 20px 0;
  width: 100%;
  top: 0;
  left: 0;
}
header .logo {
  z-index: 5;
}
header .logo img {
  width: 170px;
}
header .navs ul {
  display: flex;
}
header .navs li a {
  padding: 8px 20px;
  border: 2px solid #710600;
  border-bottom: 5px solid #710600;
  font-size: 22px;
  text-transform: uppercase;
  display: block;
  position: relative;
  transition: 0.8s;
  border-radius: 30px;
}
header .navs li a .btn {
  display: flex;
  position: relative;
  align-items: center;
  z-index: 2;
}
header .navs li a:hover {
  color: #fff;
}
header .navs li a:hover svg {
  fill: #fff;
}
header .navs li a:hover::after {
  height: 100%;
  opacity: 1;
}
header .navs li a svg {
  width: 28px;
  margin-right: 5px;
  transition: 0.8;
}
header .navs li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  background: #710600;
  content: "";
  transition: 0.8s;
  z-index: 1;
  border-radius: 30px;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu-click {
  display: none;
  position: absolute;
  right: 16px;
  top: 36%;
  z-index: 4;
}
header .menu-click span {
  background-color: #710600;
  display: block;
  height: 1px;
  margin: 10px 0;
  transition: 0.4s;
  width: 40px;
}
header .menu-click.active span:first-child {
  transform: rotate(-45deg);
}
header .menu-click.active span:last-child {
  transform: rotate(45deg) translate(-8px, -8px);
}
header .mobile-wrap {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffead4;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  transition: 0.8s;
}
header .mobile-wrap .mobile-navs li {
  margin-bottom: 16px;
}
header .mobile-wrap .mobile-navs li a {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  text-transform: uppercase;
  color: #710600;
}
header .mobile-wrap .mobile-navs li:hover a {
  color: #333;
}
header .mobile-wrap.active {
  visibility: visible;
  opacity: 1;
}

.main-banner {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.main-banner .banner_anim {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-banner .text {
  position: absolute;
  bottom: 5%;
  width: 450px;
}
.main-banner h1 {
  font-weight: 700;
  max-width: 100%;
  font-size: 92px;
  color: #710600;
  line-height: 1;
  font-family: "Hobeaux";
}
.main-banner p {
  font-size: 18px;
  color: #333;
  line-height: 1.3;
  font-family: "Gilroy";
}

.products {
  margin-top: 150px;
  padding-bottom: 40px;
}
.products .product_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.products .product_flex .product_card {
  width: 31%;
  margin: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.products .product_flex .product_card .img {
  padding: 10px 0;
}
.products .product_flex .product_card .img img {
  width: 100%;
  height: 410px;
  -o-object-fit: contain;
     object-fit: contain;
}
.products .product_flex .product_card .desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  padding: 40px 20px 20px;
}
.products .product_flex .product_card .desc h4 {
  font-size: 25px;
  font-weight: 500;
  margin: 0px;
  max-width: 176px;
  text-transform: uppercase;
}
.products .product_flex .product_card .desc .category p {
  border: 1px solid #710600;
  font-size: 18px;
  border-radius: 30px;
  margin: 0;
  padding: 3px 30px;
}

.recipes_main {
  margin-top: 150px;
}
.recipes_main .recipe_card {
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  text-align: center;
}
.recipes_main .recipe_card:nth-child(even) .wrap {
  flex-direction: row-reverse;
}
.recipes_main .recipe_card .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.recipes_main .recipe_card .text {
  width: 40%;
  text-align: left;
}
.recipes_main .recipe_card .text .method {
  margin-top: 30px;
}
.recipes_main .recipe_card .text .method ul li {
  font-size: 18px;
  font-weight: 200;
  font-family: "Gilroy";
}
.recipes_main .recipe_card .img {
  width: 50%;
}
.recipes_main .recipe_card .img .cake-logo {
  width: 250px;
  margin-bottom: 40px;
}
.recipes_main .recipe_card .img img {
  width: 100%;
}
.recipes_main .recipe_card h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.recipes_main .recipe_card .recipe {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recipes_main .recipe_card .recipe h4 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 10px;
  width: 43%;
  font-family: "Gilroy";
}

footer {
  padding: 60px 0;
  background: #ffead4;
}
footer p {
  font-size: 18px;
  margin: 0;
  margin-bottom: 5px;
  font-family: "Gilroy";
}
footer .copyright {
  padding-top: 40px;
}
footer .copyright p {
  font-size: 14px;
  margin-bottom: 4px;
}
footer .footer_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer_wrap .footer_logo .img img {
  width: 170px;
}
footer .footer_wrap .contact h4 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}
footer .footer_wrap .contact ul {
  margin-top: 0;
}
footer .footer_wrap .contact ul li {
  font-size: 18px;
  margin: 0;
  margin-bottom: 5px;
  font-family: "Gilroy";
}/*# sourceMappingURL=style.css.map */