/* Ingredient Section */
.blogs_show_sec {
  width: 100%;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 125px;

  background-image: url(../img/index/mobbackground.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;

  overflow: hidden;

  font-size: 13px;
  min-height: calc(100vh - 375px);
}

.blog-show-wrapper {
  width: 83%;
  max-width: 1200px;
  margin: 0 auto;
}
.blogs-show-title {
  margin-bottom: 15px;
  font-size:22px;
  color: #b9823b;
}
.blogs-show-date {
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 20px;
}
.blogs-back {
  position: absolute;
  bottom: 57px;
  left: 50%;

  font-size: 14px;
  color: #b9823b;
  transform: translateX(-50%);
}
.back-arrow {
  width: 35px;
  transform: translateY(13px);
}
.gg-chevron-up {
  box-sizing: border-box;
  position: relative;
}

.gg-chevron-up::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 20px;
  height: 20px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
  left: 3px;
  top: -24px;
}
.scroll-top {
  font-size: 14px;
  color: #b9823b;
  position: absolute;
  bottom: 57px;
  right: 10%;

  cursor: pointer;
}
@media (min-width: 768px) {
  .blogs_show_sec {
    padding-top: 12rem;
    background-image: url(../img/index/webbackground.png);
    font-size: 15px;
    min-height: calc(100vh - 371px);

    padding-bottom: 246px;
  }
  .blogs-show-title {
    margin-bottom: 24px;
    font-size:25px;
    color: #b9823b;
  }
  .blogs-show-date {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 24px;
  }
  .blogs-back {
    bottom: 140px;
  }
  .scroll-top {
    bottom: 85px;
  }
}

