@charset "UTF-8";
@keyframes logo {
  from {
    right: 0;
  }
  to {
    right: 100px;
  }
}
@media screen and (max-width: 575px) {
  @keyframes logo {
    from {
      right: 0;
    }
    to {
      right: calc(50vw - 58px);
    }
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@font-face {
  font-family: "S-CoreDream-3Light";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream-4Regular";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream-5Medium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream-6Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream-7ExtraBold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  line-height: inherit;
  color: var(--black);
  overflow-x: hidden;
  font-family: "S-CoreDream-4Regular";
  font-weight: 300;
}
body.active {
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  body.active main::before {
    opacity: 1;
    display: block;
  }
  body.active header {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }
  body.active header::after {
    display: none;
  }
  body.active .logo-area {
    position: absolute;
    top: 100px;
    right: 100px;
    z-index: 4;
    filter: brightness(30);
    animation: logo 0.3s ease;
  }
}
@media screen and (max-width: 575px) {
  body.active .logo-area {
    top: 20px;
    right: calc(50vw - 58px);
    align-content: center;
  }
}

h1 {
  font-family: "S-CoreDream-7ExtraBold";
  font-size: 56px;
  line-height: 60px;
  color: #ba0c2f;
  text-transform: uppercase;
}

h2 {
  font-family: "S-CoreDream-5Medium";
  font-size: 20px;
}

h3 {
  font-family: "S-CoreDream-4Regular";
}

h1,
h2,
h3,
p {
  transition: all 0.3s ease;
}

a {
  text-decoration: none;
  color: #2B2B2B;
}

img {
  width: 100%;
  vertical-align: middle;
}

main {
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 991.98px) {
  main::before {
    display: none;
    position: fixed;
    content: "";
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    transition: all 0.3s linear;
  }
}

@media screen and (max-width: 768px) {
  article {
    height: 100%;
  }
}

button {
  font-size: 14px;
  background-color: #ba0c2f;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  border: none;
  cursor: pointer;
}
button.shadow {
  font-size: 15px;
  padding: 20px 30px;
  border-radius: 30px;
  box-shadow: 0px 15px 25px 0px rgba(186, 12, 47, 0.2);
  transition: box-shadow 0.1s linear;
}
@media screen and (max-width: 768px) {
  button.shadow {
    font-size: 14px;
    padding: 16px 28px;
  }
}
@media screen and (max-width: 575px) {
  button.shadow {
    font-size: 12px;
    padding: max(3vw, 12px) max(5vw, 20px);
    box-shadow: 0px 12px 18px 0px rgba(186, 12, 47, 0.2);
  }
}
button.shadow:hover {
  box-shadow: none;
}
button.white {
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 8px;
  background-color: transparent;
  font-family: "S-CoreDream-5Medium";
  color: #fff;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.1s linear;
}
@media screen and (max-width: 575px) {
  button.white {
    font-size: 14px;
    padding: 16px 32px;
  }
}
button.white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #2B2B2B;
  mix-blend-mode: screen;
}

.inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 1140px;
  margin: 0 auto;
  padding: 120px 0;
}
@media screen and (max-width: 575px) {
  .inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

/* ----------- 스크롤 애니메이션 ----------- */
.animate {
  transition: transform 0.5s ease, opacity 0.5s linear, box-shadow 0.5s linear;
  opacity: 0;
}
.animate.active {
  opacity: 1;
}
.animate.delay {
  transition-delay: 0.5s;
}
.animate.left {
  transform: translate(-10%, -10%);
}
.animate.left.active {
  transform: translate(0);
}
.animate.scale {
  transition: transform 1s ease;
  transform: scale(0);
}
.animate.scale.active {
  transform: scale(1);
}

/* ----------- header ----------- */
header {
  width: 100%;
  height: 60px;
  display: flex;
  position: fixed;
  z-index: 3;
  transition: all 0.2s linear;
}
header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-radius: 0 0 15px 15px;
  transition: 0.3s ease;
  box-sizing: border-box;
}
header.active::after {
  height: 280px;
  background-color: #fff;
  border-bottom: 1px solid #f3f3f5;
  box-shadow: 0px 1px 10px rgba(61, 30, 40, 0.1);
}
@media screen and (max-width: 991.98px) {
  header.active::after {
    height: 60px;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
  }
}
header.active .nav-item svg {
  transform: rotate(180deg);
}
header.active .sub-menu {
  visibility: visible;
  display: flex;
}
header .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
}
@media screen and (max-width: 1199.98px) {
  header .inner {
    width: 940px;
  }
}
@media screen and (max-width: 768px) {
  header .inner {
    padding: 0 24px;
    width: 100%;
  }
}
header nav {
  display: flex;
  align-items: normal;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  header nav.active .hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  header nav.active .hamburger::before {
    transform: translateY(8px) translateX(-2px) rotate(135deg);
    border-color: #fff;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575px) {
  header nav.active .hamburger::before {
    transform: translateY(6px) translateX(-2px) rotate(135deg);
  }
}
@media screen and (max-width: 991.98px) {
  header nav.active .hamburger::after {
    transform: translateY(-12px) translateX(3px) rotate(-135deg);
    padding-bottom: 7px;
    border-color: #fff;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575px) {
  header nav.active .hamburger::after {
    transform: translateY(-6px) translateX(0px) rotate(-135deg);
    padding-bottom: 0;
  }
}
@media screen and (max-width: 991.98px) {
  header nav.active .hamburger > div {
    transform: scale(0);
  }
  header nav.active .main-menu {
    transform: translateX(0);
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575px) {
  header nav.active .main-menu {
    width: 100%;
    padding-top: 80px;
    gap: 16px;
    overflow-y: auto;
  }
}
@media screen and (max-width: 991.98px) {
  header nav.active .nav-item:hover a {
    padding-left: 20px;
  }
  header nav.active .sub-menu {
    padding-left: 10px;
    position: initial;
    align-items: flex-start;
  }
  header nav .hamburger::before, header nav .hamburger::after,
  header nav .hamburger div {
    position: relative;
    display: block;
    content: "";
    width: 30px;
    z-index: 4;
    border-top: 3px solid #2B2B2B;
    padding-bottom: 7px;
    transition: all 0.5s ease;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575px) {
  header nav .hamburger::before, header nav .hamburger::after,
  header nav .hamburger div {
    width: 25px;
  }
}
@media screen and (max-width: 991.98px) and (max-width: 575px) {
  header nav .hamburger::before,
  header nav .hamburger div {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 991.98px) {
  header nav .hamburger::after {
    padding-bottom: 0;
  }
}
header .hamburger {
  display: none;
}
@media screen and (max-width: 991.98px) {
  header .hamburger {
    display: block;
    cursor: pointer;
  }
}
@media screen and (max-width: 575px) {
  header .hamburger::before, header .hamburger::after,
  header .hamburger div {
    width: 25px;
  }
  header .hamburger::before,
  header .hamburger div {
    padding-bottom: 5px;
  }
}
header .logo-area {
  opacity: 1;
  z-index: 1;
  width: 100px;
  transition: all 0.1s ease, filter 0s ease;
}
header .main-menu {
  display: flex;
  flex-direction: row;
  align-items: normal;
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  header .main-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    width: 300px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 3;
    padding-top: 230px;
    padding-left: 30px;
    background-color: #ba0c2f;
    transform: translateX(300px);
    transition: transform 0.3s ease;
  }
}
header .nav-item {
  position: relative;
  z-index: 2;
}
header .nav-item a {
  display: flex;
  align-items: center;
  font-family: "S-CoreDream-5Medium";
  font-size: 14px;
  position: relative;
  overflow: hidden;
  gap: 4px;
  padding-top: 8px;
  transition: color 0.1s ease;
}
@media screen and (max-width: 991.98px) {
  header .nav-item a {
    font-size: 16px;
    color: #fff;
    padding: 8px 0;
    transition: all 0.3s ease;
  }
}
header .nav-item a::before {
  content: "";
  position: absolute;
  opacity: 0;
  width: 5px;
  height: 5px;
  top: 0;
  left: 50%;
  border-radius: 50%;
  background-color: #ba0c2f;
  transform: translateX(-50%);
  transition: all 0.1s ease;
}
@media screen and (max-width: 991.98px) {
  header .nav-item a::before {
    width: 2px;
    height: 100%;
    left: 0;
    border-radius: 0;
    background-color: #fff;
    transform: none;
    transition: opacity 0.3s ease;
    transition-delay: 0.1s;
  }
}
header .nav-item:hover > a {
  color: #ba0c2f;
}
@media screen and (max-width: 991.98px) {
  header .nav-item:hover > a {
    color: #fff;
  }
}
header .nav-item:hover > a::before {
  opacity: 1;
}
header .nav-item.active a {
  padding-left: 20px;
}
@media screen and (max-width: 991.98px) {
  header .nav-item a:hover::before, header .nav-item:hover a::before, header .nav-item.sub.active a::before {
    opacity: 1;
    width: 3px;
  }
  header .nav-item.sub.active a::before,
  header .nav-item.sub.active .sub-menu {
    visibility: visible;
  }
  header .nav-item .sub-menu {
    display: flex;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.3s ease;
  }
  header .nav-item.active .sub-menu {
    height: calc(100% - 39px);
    opacity: 1;
  }
}
header .nav-item svg {
  color: #ba0c2f;
  transition: transform 0.2s ease;
}
header .sub-menu {
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  flex-direction: column;
  align-items: center;
  display: none;
  animation: opacity 0.5s ease;
}
header .sub-menu .nav-item {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
header .sub-menu .nav-item a {
  padding-bottom: 10px;
}
@media screen and (max-width: 991.98px) {
  header .sub-menu .nav-item a {
    font-family: "S-CoreDream-3Light";
  }
  header .sub-menu .nav-item a::before {
    width: 0;
    height: 0;
  }
  header .sub-menu .nav-item:hover a {
    text-shadow: 0.25px 0px 0.1px, -0.25px 0px 0.1px;
  }
}

.cart {
  font-size: 14px;
  border-radius: 50%;
  background-color: #ba0c2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
  z-index: 2;
  margin-left: 64px;
  transition: all 0.1s linear;
}
@media screen and (max-width: 991.98px) {
  .cart {
    display: none;
  }
}
.cart svg {
  position: relative;
  font-size: 16px;
  top: 2px;
  transition: all 0.1s linear;
}
.cart p {
  opacity: 0;
  font-size: 0;
  transition: all 0.1s linear;
}
.cart:hover {
  width: 100px;
  border-radius: 30px;
  margin-left: 0;
}
.cart:hover svg {
  opacity: 0;
  font-size: 0;
}
.cart:hover path {
  display: block;
}
.cart:hover svg path {
  display: none;
}
.cart:hover p {
  opacity: 1;
  font-size: 12px;
}

.floating-box {
  display: flex;
  flex-direction: column;
  align-items: normal;
  gap: 8px;
  position: sticky;
  width: -moz-max-content;
  width: max-content;
  right: 15px;
  bottom: 0;
  margin-left: auto;
  margin-top: -65px;
  padding-bottom: 15px;
  transform: translateY(123px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 991.98px) {
  .floating-box {
    right: 24px;
    margin-top: -132px;
    padding-bottom: 24px;
  }
}
.floating-box .cart {
  display: none;
  width: 50px;
  height: 50px;
  margin-left: 0;
  box-shadow: 2px 5px 10px rgba(61, 30, 40, 0.2);
  transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.5s ease;
}
@media screen and (max-width: 991.98px) {
  .floating-box .cart {
    display: flex;
  }
}
.floating-box .cart:hover svg {
  opacity: 0.8;
  font-size: 16px;
}
.floating-box .cart:hover svg path {
  display: block;
}
.floating-box .cart:hover p {
  opacity: 0;
  font-size: 0;
}

.top {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #2B2B2B;
  width: 50px;
  height: 50px;
  box-shadow: 2px 5px 10px rgba(61, 30, 40, 0.2);
  transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.5s ease;
}
.top:hover {
  color: #ba0c2f;
}

/* ----------- slider ----------- */
#slider {
  padding-top: 120px;
  display: flex;
}
@media screen and (max-width: 575px) {
  #slider {
    padding-top: 80px;
  }
}
#slider .inner {
  transition: all 0.3s ease-out;
}
#slider .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: default;
  width: 1140px;
}
@media screen and (max-width: 1199.98px) {
  #slider .content {
    width: 940px;
  }
}
@media screen and (max-width: 575px) {
  #slider .content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
#slider .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: normal;
  gap: 30px;
  width: 58%;
  z-index: 1;
  padding-right: 80px;
}
@media screen and (max-width: 1199.98px) {
  #slider .text-wrap {
    padding-right: 40px;
  }
}
@media screen and (max-width: 991.98px) {
  #slider .text-wrap {
    width: 55%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 575px) {
  #slider .text-wrap {
    width: 100%;
    gap: 20px;
    padding-right: 0;
  }
}
#slider .text-wrap .new-prod {
  font-size: 13px;
  padding: 15px 20px;
  border-radius: 30px;
  background-color: rgba(186, 12, 47, 0.08);
  color: #ba0c2f;
  font-family: "S-CoreDream-5Medium";
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #slider .text-wrap .new-prod {
    font-size: 12px;
    padding: 12px 18px;
  }
}
@media screen and (max-width: 575px) {
  #slider .text-wrap .new-prod {
    font-size: max(2.4vw, 12px);
    padding: 10px 16px;
  }
}
#slider .text-wrap h1 {
  white-space: pre-line;
  color: #2B2B2B;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1199.98px) {
  #slider .text-wrap h1 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media screen and (max-width: 991.98px) {
  #slider .text-wrap h1 {
    font-size: 42px;
    line-height: 48px;
    padding-right: 0px;
    word-break: keep-all;
    letter-spacing: -0.1rem;
  }
}
@media screen and (max-width: 768px) {
  #slider .text-wrap h1 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media screen and (max-width: 575px) {
  #slider .text-wrap h1 {
    font-size: max(7vw, 20px);
    line-height: max(8vw, 24px);
    word-break: keep-all;
  }
}
#slider .text-wrap h1 span {
  color: #ba0c2f;
}
#slider .text-wrap p {
  font-family: "S-CoreDream-5Medium";
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  white-space: pre-line;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 991.98px) {
  #slider .text-wrap p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  #slider .text-wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 575px) {
  #slider .text-wrap p {
    font-family: "S-CoreDream-4Regular";
    font-size: max(4vw, 14px);
    line-height: max(6vw, 16px);
  }
}
#slider .img-wrap {
  width: 42%;
}
@media screen and (max-width: 991.98px) {
  #slider .img-wrap {
    width: 45%;
  }
}
@media screen and (max-width: 575px) {
  #slider .img-wrap {
    width: 80%;
  }
}
#slider .swiper-wrapper {
  align-items: center;
}
#slider .swiper-pointer-events {
  height: -moz-fit-content;
  height: fit-content;
}
#slider .swiper-backface-hidden .swiper-slide {
  display: flex;
  justify-content: center;
}
#slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}
#slider .swiper-pagination-bullet-active {
  background-color: #ba0c2f;
  box-shadow: 0px 4px 5px 1px rgba(186, 12, 47, 0.2);
  transition: all 0.2s ease;
}
#slider .swiper-slide-active {
  animation: opacity 1s ease backwards;
  animation-delay: 0.7s;
}
#slider .swiper-pagination {
  position: relative;
  bottom: 0;
}
@media screen and (max-width: 991.98px) {
  #slider .swiper-pagination {
    bottom: 0 !important;
    padding: 20px 0;
  }
}

/* ----------- cereals ----------- */
@media screen and (max-width: 768px) {
  #cereals {
    min-height: 100vh;
  }
}
@media screen and (max-width: 575px) {
  #cereals {
    height: 100%;
  }
}
#cereals .inner {
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #cereals .inner {
    width: 100%;
  }
}
#cereals h1 {
  font-family: "S-CoreDream-5Medium";
  font-size: 40px;
  color: #2B2B2B;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #cereals h1 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 575px) {
  #cereals h1 {
    font-size: 4.8vw;
    line-height: 5vw;
  }
}
#cereals h1:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(186, 12, 47, 0.1);
  transition: width 0.3s ease;
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  #cereals h1:after {
    bottom: 8px;
  }
}
@media screen and (max-width: 575px) {
  #cereals h1:after {
    height: 12px;
    bottom: -3px;
  }
}
#cereals h1.animate.active:after {
  width: 100%;
}
#cereals ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 40px;
}
@media screen and (max-width: 991.98px) {
  #cereals ul {
    grid-gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  #cereals ul {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5vw;
    justify-items: initial;
  }
}
#cereals ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
#cereals ul li:nth-child(n) {
  grid-column: span 2;
}
#cereals ul li:nth-child(4) {
  grid-column-end: 4;
}
@media screen and (max-width: 575px) {
  #cereals ul li:nth-child(4) {
    grid-column-end: initial;
  }
}
#cereals ul li:nth-child(5) {
  grid-column-end: -2;
}
@media screen and (max-width: 991.98px) {
  #cereals ul li {
    width: auto;
  }
}
#cereals .caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: default;
}
#cereals h2 {
  font-family: "S-CoreDream-6Bold";
}
@media screen and (max-width: 991.98px) {
  #cereals h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  #cereals h2 {
    font-size: max(3.4vw, 14px);
  }
}
@media screen and (max-width: 575px) {
  #cereals h3 {
    font-size: max(3vw, 12px);
    text-align: center;
  }
}
#cereals button {
  margin-top: 18px;
}
@media screen and (max-width: 575px) {
  #cereals button {
    margin-top: 15px;
  }
}

/* ----------- better days ----------- */
#betterdays {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: 100vh;
  background-image: url(../images/betterdays_2.jpg);
  background-position: center 10%;
}
@media screen and (max-width: 768px) {
  #betterdays .inner {
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  #betterdays .inner {
    padding-top: 60px;
  }
}
#betterdays .title {
  display: flex;
  flex-direction: column;
  align-items: normal;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #betterdays .title {
    gap: 30px;
    align-items: center;
  }
}
#betterdays .title h1 {
  font-size: 64px;
  line-height: 64px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #betterdays .title h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 575px) {
  #betterdays .title h1 {
    font-size: 40px;
    line-height: 42px;
    text-align: center;
  }
}
#betterdays .title h2 {
  font-family: "S-CoreDream-3Light";
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #betterdays .title h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  #betterdays .title h2 {
    font-size: 16px;
    text-align: center;
  }
}

/* ----------- health and nutrition ----------- */
#healthAndNutrition .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 120px;
}
@media screen and (max-width: 575px) {
  #healthAndNutrition .inner {
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  #healthAndNutrition h1 {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  #healthAndNutrition h1 {
    font-size: 40px;
    line-height: 42px;
  }
}
#healthAndNutrition ul {
  display: flex;
  flex-direction: row;
  align-items: normal;
  gap: 40px;
}
@media screen and (max-width: 1199.98px) {
  #healthAndNutrition ul {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  #healthAndNutrition ul {
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  #healthAndNutrition ul {
    flex-direction: column;
    gap: 30px;
  }
}
#healthAndNutrition ul li {
  display: flex;
  flex-direction: column;
  align-items: normal;
  cursor: default;
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 10px 15px rgba(61, 30, 40, 0.1);
}
@media screen and (max-width: 991.98px) {
  #healthAndNutrition ul li {
    height: 320px;
  }
}
@media screen and (max-width: 768px) {
  #healthAndNutrition ul li {
    height: 260px;
  }
}
@media screen and (max-width: 575px) {
  #healthAndNutrition ul li {
    height: 100%;
    min-height: 300px;
  }
}
#healthAndNutrition ul li:hover img {
  filter: blur(10px);
}
@media screen and (max-width: 575px) {
  #healthAndNutrition ul li:hover img {
    filter: blur(5px);
  }
}
#healthAndNutrition ul li:hover .info {
  display: flex;
  align-items: normal;
  justify-content: center;
  transform: translateY(0px);
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 575px) {
  #healthAndNutrition ul li:hover .info {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
#healthAndNutrition ul li:hover .info .more {
  margin-top: 0;
}
#healthAndNutrition .img-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 400px;
}
@media screen and (max-width: 991.98px) {
  #healthAndNutrition .img-wrap {
    height: 320px;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #healthAndNutrition .img-wrap {
    height: 260px;
  }
}
#healthAndNutrition img {
  transition: all 0.2s linear;
}
@media screen and (max-width: 991.98px) {
  #healthAndNutrition img {
    width: 120%;
  }
}
#healthAndNutrition .info {
  display: flex;
  flex-direction: column;
  align-items: normal;
  position: absolute;
  bottom: 0;
  height: 100%;
  padding: 30px;
  background-color: #fff;
  transition: all 0.3s ease-out;
  transform: translateY(282px);
}
@media screen and (max-width: 991.98px) {
  #healthAndNutrition .info {
    padding: 20px;
    transform: translateY(222px);
  }
}
@media screen and (max-width: 768px) {
  #healthAndNutrition .info {
    transform: translateY(172px);
  }
}
@media screen and (max-width: 575px) {
  #healthAndNutrition .info {
    transform: translateY(209px);
  }
}
#healthAndNutrition .info h2 {
  font-family: "S-CoreDream-3Light";
  font-size: 18px;
  color: #747272;
}
@media screen and (max-width: 768px) {
  #healthAndNutrition .info h2 {
    font-size: 16px;
  }
}
#healthAndNutrition .info h3 {
  font-family: "S-CoreDream-6Bold";
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  #healthAndNutrition .info h3 {
    font-size: 20px;
  }
}
#healthAndNutrition .info h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin: 30px 0;
  border-top: 1px solid #cacbce;
}
@media screen and (max-width: 991.98px) {
  #healthAndNutrition .info h3::after {
    margin: 20px 0;
  }
}
#healthAndNutrition .info p {
  font-family: "S-CoreDream-4Regular";
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #healthAndNutrition .info p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  #healthAndNutrition .info p {
    margin-bottom: 20px;
  }
}
#healthAndNutrition .info .more {
  font-family: "S-CoreDream-6Bold";
  font-size: 16px;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #healthAndNutrition .info .more {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  #healthAndNutrition .info .more {
    font-size: 14px;
  }
}
#healthAndNutrition .info .more:hover {
  color: #ba0c2f;
}

/* ----------- recipes ----------- */
#recipes {
  background-color: #f3f3f5;
}
#recipes .inner {
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 991.98px) {
  #recipes .inner {
    padding-bottom: 158px;
  }
}
@media screen and (max-width: 575px) {
  #recipes .inner {
    gap: 60px;
  }
}
#recipes h1 {
  white-space: pre-line;
  align-self: baseline;
}
@media screen and (max-width: 575px) {
  #recipes h1 {
    font-size: 32px;
    line-height: 34px;
  }
}
#recipes ul {
  display: flex;
  align-items: normal;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1199.98px) {
  #recipes ul {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  #recipes ul {
    gap: 12px;
  }
}
@media screen and (max-width: 575px) {
  #recipes ul {
    flex-direction: column;
    gap: 30px;
  }
}
#recipes ul li {
  display: flex;
  flex-direction: column;
  align-items: normal;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 10px 15px rgba(61, 30, 40, 0.1);
  width: 348px;
  gap: 20px;
  overflow: hidden;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 1199.98px) {
  #recipes ul li {
    width: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  #recipes ul li {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  #recipes ul li {
    gap: 16px;
    padding: 16px;
  }
}
@media screen and (max-width: 575px) {
  #recipes ul li {
    padding: max(6vw, 20px);
  }
}
#recipes ul li:hover {
  transform: translate(3px, 3px);
  box-shadow: 0px 5px 5px rgba(61, 30, 40, 0.1);
}
#recipes .info {
  display: flex;
  flex-direction: column;
  align-items: normal;
  height: 100%;
}
#recipes .info h2 {
  font-family: "S-CoreDream-4Regular";
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
  color: #747272;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 991.98px) {
  #recipes .info h2 {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  #recipes .info h2 {
    font-size: 12px;
  }
}
@media screen and (max-width: 575px) {
  #recipes .info h2 {
    font-size: 14px;
  }
}
#recipes .info h3 {
  font-family: "S-CoreDream-7ExtraBold";
  font-size: 30px;
  line-height: 34px;
  word-break: keep-all;
  margin-top: 14px;
  flex-grow: 1;
}
@media screen and (max-width: 1199.98px) {
  #recipes .info h3 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 991.98px) {
  #recipes .info h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  #recipes .info h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 575px) {
  #recipes .info h3 {
    font-size: max(5vw, 22px);
    line-height: 28px;
    margin-top: 14px;
  }
}
#recipes .info .more {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  #recipes .info .more {
    margin-top: 14px;
  }
}
@media screen and (max-width: 991.98px) {
  #recipes .info .more {
    gap: 6px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  #recipes .info .more {
    gap: 10px;
    margin-top: 14px;
  }
}
#recipes .info .more::before {
  content: "";
  display: block;
  background-color: #cacbce;
  height: 1px;
  flex: 1;
}
#recipes .info .more a {
  font-size: 16px;
  color: #747272;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  pointer-events: auto;
  transition: color 0.3s linear;
}
@media screen and (max-width: 991.98px) {
  #recipes .info .more a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #recipes .info .more a {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  #recipes .info .more a {
    font-size: 14px;
  }
}
#recipes .info .more a:hover {
  color: #ba0c2f;
  text-shadow: 0.25px 0px 0.1px, -0.25px 0px 0.1px;
}

/* ----------- footer ----------- */
footer {
  width: 100%;
  background-color: #ba0c2f;
}
footer .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  footer .inner {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
footer .inner > div {
  font-family: "S-CoreDream-3Light";
  font-size: 14px;
  line-height: 20px;
  flex-direction: column;
}
footer div {
  display: flex;
  color: #fff;
}
footer div h1 {
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  margin-bottom: 10px;
}
footer .company {
  width: -moz-max-content;
  width: max-content;
}
footer .company p span {
  font-family: "S-CoreDream-6Bold";
}
footer .company,
footer .copyright {
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  footer .company,
  footer .copyright {
    white-space: initial;
    width: auto;
  }
}
footer .sns div {
  display: flex;
  gap: 10px;
}
footer .sns div a {
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 991.98px) {
  footer p {
    font-size: 13px;
  }
}

@media screen and (max-width: 1199.98px) {
  .inner,
  header .inner,
  #slider .content {
    width: 940px;
  }
}
@media screen and (max-width: 991.98px) {
  .inner,
  header .inner,
  #slider .content {
    width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .inner,
  header .inner,
  #slider .content {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}/*# sourceMappingURL=style.css.map */