/* philosopher-regular - latin */
@font-face {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("/DigitUp/Villa/assets/fonts/philosopher-v19-latin-regular.woff2") format("woff2"), url("/DigitUp/Villa/assets/fonts/philosopher-v19-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Festivo";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/DigitUp/Villa/assets/fonts/festivolc-basic2.woff2") format("woff2"), url("/DigitUp/Villa/assets/fonts/festivolc-basic2.woff") format("woff");
}
@font-face {
  font-family: "Festivo Fallback arial";
  src: local(Arial Narrow);
  size-adjust: 100%;
  ascent-override: 88%;
  descent-override: 28%;
  line-gap-override: normal;
}
@font-face {
  font-family: "Festivo Fallback roboto";
  src: local(Roboto);
  size-adjust: 89%;
  ascent-override: 95%;
  descent-override: 40%;
  line-gap-override: normal;
}
/* raleway-regular - latin */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-regular.woff2") format("woff2"), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-regular.woff") format("woff");
}
/* raleway-500 - latin */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-500.woff2") format("woff2"), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-500.woff") format("woff");
}
/* raleway-italic - latin */
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-italic.woff2") format("woff2"), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-italic.woff") format("woff");
}
/* raleway-500italic - latin */
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-500italic.woff2") format("woff2"), url("/DigitUp/Villa/assets/fonts/raleway-v28-latin-500italic.woff") format("woff");
}
/* ============================================
   Button Mixin
   Supports: variants, sizes, optional icon
=============================================== */
/* SIZE MIXIN (NO COLORS, NO VARIANT) */
/* VARIANT MIXIN (COLORS ONLY) */
/* OPTIONAL: BASE MIXIN */
/* Define the responsive grid mixin */
/* Center content with optional starting column */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.main-header {
  position: relative;
  background-color: transparent;
  padding: 2.5rem 0rem;
  transition: all 0.3s ease;
  overflow: visible;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .main-header {
    padding-top: 0.5rem;
  }
}

.main-header:hover {
  background-color: #ffffff;
}

.main-header:hover .nav-menu a {
  color: #000000 !important;
}

.main-header:hover .nav-brand img {
  filter: invert(0);
}

.main-header-wrapper {
  max-width: 80rem;
  margin-inline: auto;
  padding: 0 2rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .main-header-wrapper {
    padding: 0 0rem;
  }
}

.main-header-inner {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  gap: 2rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .main-header-inner {
    justify-content: space-between;
    gap: 2rem;
  }
}

.nav-brand img {
  width: 105px;
  filter: invert(1);
  transition: filter 0.3s ease;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .nav-brand img {
    width: 80px;
  }
}

.main-header.menu-open .nav-brand img {
  filter: invert(0);
}

.main-header.scrolled .nav-brand img {
  filter: invert(0);
}

.nav-menu {
  display: block;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .nav-menu {
    display: none;
  }
}

.nav-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .nav-menu ul {
    gap: 0px;
  }
}

.nav-menu ul li {
  display: flex;
  align-items: center;
}

.nav-menu ul li:not(:last-child)::after {
  content: "/";
  color: #FFF000;
  font-size: 1.125rem;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .nav-menu ul li:not(:last-child)::after {
    margin: 0px 0.5rem;
  }
}

.nav-menu a {
  color: #ffffff;
  font-size: 1.25rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .nav-menu a {
    font-size: 1.125rem;
  }
}

.nav-menu li a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .nav-menu li a {
    padding: 0.25rem 0.1875rem;
  }
}

.nav-menu li a:hover {
  color: #000000;
}

.nav-menu li a::before {
  content: "";
  position: absolute;
  inset: 0;
  color: #000000;
  background: #FFF000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.nav-menu li a:hover::before {
  transform: scaleX(1);
}

.has-dropdown:hover > a {
  color: #FFF000;
}

.mega-menu {
  height: 350px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 0 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.has-dropdown.active .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-grid {
  margin: 0 auto;
}

.mega-content {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.mega-left p {
  margin: 0 0 1.2rem;
  font-size: 1.375rem;
  color: #000000;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}

.mega-left p:hover {
  color: #FFF000;
}

.mega-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mega-right p {
  margin: 0 0 1.2rem;
  font-size: 0.6875rem;
  color: #4B5563;
  cursor: pointer;
  text-align: left;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  line-height: 0.9375rem;
  padding-top: 2rem;
}

.mega-card {
  width: 180px;
}

.mega-card img {
  width: 100%;
  object-fit: fill;
}

.mega-category {
  display: none;
}

.mega-category.active {
  display: contents;
}

.mega-default {
  display: contents;
}

.mega-default.hidden {
  display: none;
}

.nav-search {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 22vw;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .nav-search {
    width: 40vw;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .nav-search {
    width: 60vw;
  }
}

.search-box {
  position: relative;
  width: 400px;
}

.search-box input {
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  width: 100%;
  padding: 0.75rem 2.8125rem 0.75rem 1.125rem;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 0.875rem;
  transition: 0.3s ease;
}

.search-box input::placeholder {
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}

.search-box input:focus {
  outline: none;
  border: none;
}

.search-box input::placeholder {
  font-size: 0.8125rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  color: #F2F2F2;
}

.search-box input:focus {
  font-size: 1.125rem;
}

.search-box:hover input {
  background: #e0e0e0;
}

.main-header:hover .search-box input {
  background: #e0e0e0;
  color: #000000;
}

.main-header:hover .search-box input::placeholder {
  color: #555;
}

.main-header.menu-open .search-box input {
  background: #e0e0e0;
  color: #000000;
}

.main-header.scrolled .search-box input {
  background: #e0e0e0;
  color: #000000;
}

.main-header.scrolled .search-box input::placeholder {
  color: #555;
}

.search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: grey;
  cursor: pointer;
  transition: 0.3s ease;
}

.main-header:hover .search-icon {
  color: #000000;
}

.main-header.scrolled .search-icon {
  color: #000000;
}

.main-header.scrolled {
  background-color: #ffffff;
}

.main-header.scrolled .nav-menu a {
  color: #000000 !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.mobile-hamburger {
  position: fixed;
  bottom: 1.25rem;
  left: 0.3125rem;
  right: 0.3125rem;
  width: auto;
  background: #FFF000;
  display: none;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem;
  z-index: 9999;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .mobile-hamburger {
    display: flex;
  }
}

.mobile-hamburger img {
  max-width: 25px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #ffffff;
  z-index: -1;
  overflow: hidden;
  transition: height 0.4s ease;
}
@media (min-width: 839.9px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.active {
  height: 100vh;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin-bottom: 1.5625rem;
}

.mobile-menu ul li a {
  font-size: 1.25rem;
  text-decoration: none;
  color: #000000;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
}

.mobile-menu-content {
  padding: 2rem;
  margin-top: 12rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.menu-item-with-icon a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  position: relative;
  font-size: 1.375rem;
  color: #000000;
  text-decoration: none;
  padding-bottom: 0.875rem;
}

.menu-item-with-icon a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d1d5db;
}

.menu-icon {
  position: relative;
  padding-right: 0.875rem;
}

.menu-icon img {
  width: 25px;
}

.menu-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #000000;
}

.mobile-social {
  display: flex;
  gap: 1.25rem;
}

.mobile-social .social-svg {
  filter: brightness(0) invert(0);
  width: 25px;
}

.mobile-social a {
  font-size: 1.25rem;
  color: #000000;
  transition: 0.3s;
}

.mobile-social a:hover {
  color: #FFF000;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-toggle {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #FFF000;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  z-index: 0;
  cursor: pointer;
}

.sidebar-toggle img {
  width: 28px;
  filter: invert(1);
}

.sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  padding: 3.75rem 1.25rem;
  transition: 0.4s ease;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
  padding: 0px 0.5rem;
}

.sidebar ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}
.sidebar ul li a:hover {
  color: #FFD700;
}

.sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0);
  border: none;
  color: #000000;
  cursor: pointer;
  z-index: 10;
  width: 1.5rem;
}

.nav-line {
  color: #000000;
  margin-right: 0.3125rem;
}

.footer {
  margin-top: 4rem;
  background-color: #000000;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  height: 225px;
  margin: auto;
  padding: 1rem 0px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .footer-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 0px;
    height: auto;
  }
}

.footer-links {
  width: 100%;
  max-width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.6875rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .footer-links a {
    font-size: 0.875rem;
  }
}
.footer-links a:hover {
  transform: scale(1.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.9375rem;
  font-size: 1.25rem;
}

.social-icons a {
  color: #ffffff;
}

.social-svg {
  width: 30px;
  filter: brightness(0) invert(1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-svg:hover {
  transform: scale(1.06);
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .social-svg {
    width: 25px;
  }
}

.logo img {
  width: 3.9rem;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.logo img:hover {
  transform: scale(1.06);
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.125rem;
}

.page-number,
.next-button {
  background: none;
  border: none;
  border-radius: 0.1875rem;
  padding: 0.625rem 0.9375rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
  color: #333;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.875rem;
}

/* The Active State (Black Box) */
.page-number.active {
  background-color: #000000;
  color: #ffffff;
  font-weight: 700;
}

.page-number:hover:not(.active) {
  background-color: #f0f0f0;
}

.next-button {
  font-size: 1.25rem;
  margin-left: 0.625rem;
}

#cookie-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10001;
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  box-sizing: border-box;
  z-index: 10002;
  animation: slideUp 0.6s ease-out forwards;
}
@media (min-width: 0) and (max-width: 839.9px) {
  #cookie-banner {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.cookie-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 60%;
  font-weight: 500;
  padding: 0px 1rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cookie-text {
    max-width: 100%;
  }
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.btn {
  padding: 0.625rem 1.5625rem;
  font-size: 0.875rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.btn-settings {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: underline;
}

.btn-yellow {
  background-color: #FFF000;
  color: #000000;
}

.btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.banner-hide {
  animation: slideDown 0.5s ease-in forwards !important;
}

.recipe-hero {
  position: relative;
  height: 100vh;
  max-height: 90vh;
  overflow: hidden;
  color: #ffffff;
}
.recipe-hero .recipe-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.recipe-hero .recipe-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.recipe-hero .recipe-hero__image.is-active {
  opacity: 1;
}
.recipe-hero .recipe-hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.recipe-hero .recipe-hero__content .recipe-hero__text {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .recipe-hero .recipe-hero__content .recipe-hero__text {
    text-align: center;
    position: absolute;
    bottom: 10rem;
    left: 0;
    right: 0;
  }
}
.recipe-hero .recipe-hero__content .recipe-hero__label {
  display: inline-block;
  background: #FFF000;
  color: #000000;
  padding: 0.625rem 0.625rem 0.1875rem 0.625rem;
  font-weight: 600;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  font-size: 2.1875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .recipe-hero .recipe-hero__content .recipe-hero__label {
    padding: 1rem 1rem 0.3125rem 1rem;
    font-size: 2.8125rem;
  }
}
.recipe-hero .recipe-hero__content .recipe-hero__title {
  color: #ffffff;
  margin-top: 0.625rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.recipe-hero .recipe-hero__slider {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 5;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .recipe-hero .recipe-hero__slider {
    display: none;
  }
}
.recipe-hero .recipe-hero__slider .recipe-hero__track {
  display: flex;
  justify-content: space-around;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .recipe-hero .recipe-hero__slider .recipe-hero__track {
    display: none;
  }
}
.recipe-hero .recipe-hero__slider .recipe-card {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  max-width: 350px;
}
.recipe-hero .recipe-hero__slider .card-img {
  position: relative;
  width: 150px;
  height: 140px;
  overflow: hidden;
}
.recipe-hero .recipe-hero__slider .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recipe-hero .recipe-hero__slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: 0.3s ease;
}
.recipe-hero .recipe-hero__slider .read-article {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
}
.recipe-hero .recipe-hero__slider .read-article img {
  width: 7px;
  height: auto;
  filter: brightness(0) invert(1);
}
.recipe-hero .recipe-hero__slider .card-img:hover .overlay {
  opacity: 1;
}
.recipe-hero .recipe-hero__slider .recipe-card.is-active {
  opacity: 1;
}
.recipe-hero .recipe-hero__slider .recipe-card.is-active::before {
  content: "";
  width: 10px;
  height: 100%;
  background: #FFF000;
  display: block;
}
.recipe-hero .recipe-hero__slider .recipe-card p {
  margin-left: 0.5rem;
}
.recipe-hero .recipe-hero__progress {
  margin-top: 1rem;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.recipe-hero .recipe-hero__progress .recipe-hero__progress-bar {
  height: 100%;
  width: 0%;
  background-color: #FFF000;
  border-radius: 3.125rem;
}
.recipe-hero .recipe-hero__dots {
  display: none;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1 !important;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
  width: auto;
  height: auto;
  pointer-events: all;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .recipe-hero .recipe-hero__dots {
    display: flex;
  }
}
.recipe-hero .recipe-hero__dots .dot {
  width: 16px;
  height: 16px;
  border: 2px solid #FFF000;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.recipe-hero .recipe-hero__dots .dot.is-active {
  background-color: #FFF000;
  transform: scale(1.25);
  box-shadow: 0 0 15px rgba(255, 234, 0, 0.8);
}

.cocktail-section {
  margin: 100px 0px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-section {
    margin: 3.125rem 0px;
  }
}
.cocktail-section .cocktail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.125rem;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .cocktail-section .cocktail-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .cocktail-section .cocktail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-section .cocktail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-section .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}
.cocktail-section .cocktail-card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: #ffffff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.cocktail-section .cocktail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.cocktail-section .cocktail-card__img-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.cocktail-section .cocktail-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cocktail-section .cocktail-card:hover .cocktail-card__img {
  transform: scale(1.08);
}
.cocktail-section .cocktail-card__info {
  padding: 1rem;
  background-color: #ffffff;
  margin-top: -1rem;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-section .cocktail-card__info {
    padding: 0.5rem;
  }
}
.cocktail-section .cocktail-card__name {
  font-size: 1rem;
  color: #000000;
  line-height: 1.3;
  margin: 0;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-section .cocktail-card__name {
    font-size: 0.875rem;
  }
}
.cocktail-section .cocktail-section__action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.cocktail-section .cocktail-btn {
  background-color: #000000;
  color: #FFF000;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
}
.cocktail-section .cocktail-btn::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #FFF000;
  margin-right: 0.625rem;
  display: inline-block;
}
.cocktail-section .recipe-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  overflow: hidden;
}
.cocktail-section .recipe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cocktail-wrapper {
  background-color: #FFF000;
  margin-top: 6rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-wrapper {
    margin-top: 3rem;
  }
}
.cocktail-wrapper .cocktail-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-wrapper .cocktail-banner-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
.cocktail-wrapper .logo-box {
  background-color: #000000;
  padding: 1.625rem 0.5rem 1.375rem 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-wrapper .logo-box {
    padding: 0.9375rem 0.625rem;
  }
}
.cocktail-wrapper .logo-box h2 {
  color: #ffffff;
  font-size: 100px;
  letter-spacing: 0.0625rem;
  padding: 1rem 0px 0px 0px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-wrapper .logo-box h2 {
    font-size: 70px;
    padding: 1.5rem 0px 0.625rem 0px;
    line-height: 0;
  }
}
.cocktail-wrapper .text-content {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .cocktail-wrapper .text-content {
    max-width: 720px;
  }
}
.cocktail-wrapper .text-content p {
  line-height: 1.6;
  color: #000000;
  font-size: 0.75rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .cocktail-wrapper .text-content p {
    font-size: 0.875rem;
    padding-left: 1rem;
  }
}

.Article-wrapper {
  background-color: transparent;
  margin-top: 1rem;
}
.Article-wrapper .cocktail-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Article-wrapper .cocktail-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.Article-wrapper .logo-box {
  background-color: #FFF000;
  text-transform: uppercase;
}
.Article-wrapper .logo-box h2 {
  color: #000000;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.0625rem;
  padding: 1rem 0.5rem 0px 0.5rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Article-wrapper .logo-box h2 {
    font-size: 4.375rem;
  }
}

.Article-section {
  margin: 100px 0px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Article-section {
    margin: 3.125rem 0px;
  }
}
.Article-section .cocktail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.125rem;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .Article-section .cocktail-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .Article-section .cocktail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Article-section .cocktail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Article-section .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
.Article-section .cocktail-card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-decoration: none;
  background-color: #ffffff;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.Article-section .cocktail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.Article-section .cocktail-card__img-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.Article-section .cocktail-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.Article-section .cocktail-card:hover .cocktail-card__img {
  transform: scale(1.08);
}
.Article-section .cocktail-card__info {
  padding: 1rem;
  background-color: #ffffff;
  margin-top: -1rem;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Article-section .cocktail-card__info {
    padding: 0.5rem;
  }
}
.Article-section .cocktail-card__name {
  font-size: 1rem;
  color: #000000;
  line-height: 1.3;
  margin: 0;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Article-section .cocktail-card__name {
    font-size: 0.875rem;
  }
}
.Article-section .cocktail-section__action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.Article-section .cocktail-btn {
  background-color: #FFF000;
  color: #000000;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
}
.Article-section .cocktail-btn::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #000000;
  margin-right: 0.625rem;
  display: inline-block;
}
.Article-section .recipe-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  overflow: hidden;
}
.Article-section .recipe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Places-wrapper {
  background-color: transparent;
  margin-top: 1rem;
}
.Places-wrapper .cocktail-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-wrapper .cocktail-banner-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
.Places-wrapper .logo-box {
  background-color: #FFF000;
  text-transform: uppercase;
}
.Places-wrapper .logo-box h2 {
  color: #000000;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.0625rem;
  padding: 1rem 0.5rem 0px 0.5rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-wrapper .logo-box h2 {
    font-size: 4.375rem;
  }
}

.place-article-section {
  margin: 100px 0px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .place-article-section {
    margin: 3.125rem 0px;
  }
}
.place-article-section .cocktail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.125rem;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .place-article-section .cocktail-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .place-article-section .cocktail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .place-article-section .cocktail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .place-article-section .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}
.place-article-section .cocktail-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.place-article-section .cocktail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.place-article-section .cocktail-card__img-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.place-article-section .cocktail-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.place-article-section .cocktail-card:hover .cocktail-card__img {
  transform: scale(1.08);
}
.place-article-section .cocktail-card__info {
  padding: 16px;
  background-color: #ffffff;
  margin-top: -1rem;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .place-article-section .cocktail-card__info {
    padding: 0.5rem;
  }
}
.place-article-section .cocktail-card__name {
  font-size: 1rem;
  color: #000000;
  line-height: 1.3;
  margin: 0;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .place-article-section .cocktail-card__name {
    font-size: 0.875rem;
  }
}
.place-article-section .cocktail-section__action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.place-article-section .cocktail-btn {
  background-color: #FFF000;
  color: #000000;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
}
.place-article-section .cocktail-btn::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #000000;
  margin-right: 0.625rem;
  display: inline-block;
}
.place-article-section .recipe-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  overflow: hidden;
}
.place-article-section .recipe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-wrapper {
  background-color: #000000;
  margin-top: 1rem;
}
.news-wrapper .cocktail-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-wrapper .cocktail-banner-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
.news-wrapper .logo-box {
  background-color: #FFF000;
  text-transform: uppercase;
}
.news-wrapper .logo-box h2 {
  color: #000000;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.0625rem;
  padding: 1rem 0.5rem 0px 0.5rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-wrapper .logo-box h2 {
    font-size: 4.375rem;
  }
}

.news-article-section {
  margin: 100px 0px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-article-section {
    margin: 3.125rem 0px;
  }
}
.news-article-section .cocktail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.125rem;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .news-article-section .cocktail-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .news-article-section .cocktail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .news-article-section .cocktail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .news-article-section .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}
.news-article-section .cocktail-card {
  text-decoration: none;
  background-color: #ffffff;
  color: inherit;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.news-article-section .cocktail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.news-article-section .cocktail-card__img-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.news-article-section .cocktail-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-article-section .cocktail-card:hover .cocktail-card__img {
  transform: scale(1.08);
}
.news-article-section .cocktail-card__info {
  padding: 1rem;
  background-color: #ffffff;
  margin-top: -1rem;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .news-article-section .cocktail-card__info {
    padding: 0.5rem;
  }
}
.news-article-section .cocktail-card__name {
  font-size: 1rem;
  color: #000000;
  line-height: 1.3;
  margin: 0;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-article-section .cocktail-card__name {
    font-size: 0.875rem;
  }
}
.news-article-section .cocktail-section__action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.news-article-section .cocktail-btn {
  background-color: #FFF000;
  color: #000000;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
}
.news-article-section .cocktail-btn::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #000000;
  margin-right: 10px;
  display: inline-block;
}
.news-article-section .recipe-card__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  overflow: hidden;
}
.news-article-section .recipe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-black-wrapper .page-black-banner {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .page-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.page-black-wrapper .page-content {
  display: inline-block;
  background: #FFF000;
  color: #000000;
  padding: 1.25rem 1rem 0.625rem 1rem;
  font-weight: 400;
  font-size: 3.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .page-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}

.cocktail-Article-Wrapper {
  height: auto;
}
.cocktail-Article-Wrapper .recipe-section {
  padding: 3.75rem 1.75rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .cocktail-Article-Wrapper .recipe-section {
    margin: 0px;
    padding: 3.75rem 0px;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .recipe-section {
    padding: 0px;
    margin-top: -90px;
    margin-bottom: 2.5rem;
  }
}
.cocktail-Article-Wrapper .grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0.9375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.cocktail-Article-Wrapper .dropdown-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .dropdown-box {
    background-color: #FFF000;
  }
}
.cocktail-Article-Wrapper .dropdown-box select {
  width: 400px;
  padding: 1.875rem 1.25rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .dropdown-box select {
    width: 200px;
    padding: 1rem;
  }
}
.cocktail-Article-Wrapper .card {
  position: relative;
  overflow: hidden;
}
.cocktail-Article-Wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cocktail-Article-Wrapper .overlay-card {
  height: 300px;
  position: relative;
  cursor: pointer;
}
.cocktail-Article-Wrapper .overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.cocktail-Article-Wrapper .overlay-content {
  position: absolute;
  bottom: 1.875rem;
  left: 1.875rem;
  color: #ffffff;
  z-index: 2;
}
.cocktail-Article-Wrapper .overlay-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
.cocktail-Article-Wrapper .underline {
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  background: #FFF000;
}
.cocktail-Article-Wrapper .big-card {
  margin-top: -100px;
  grid-column: 1/2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .big-card {
    margin-top: 0px;
    grid-column: auto;
  }
}
.cocktail-Article-Wrapper .yellow-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #FFF000;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .yellow-strip {
    width: 0px;
  }
}
.cocktail-Article-Wrapper .big-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFF000;
  padding: 0.625rem 4.375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .big-title {
    padding: 0px 1rem;
  }
}
.cocktail-Article-Wrapper .big-title h2 {
  font-size: 1.375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}
.cocktail-Article-Wrapper .cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 1.25rem;
  padding: 0px 7vw;
  margin-bottom: 3rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    gap: 1.875rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-Article-Wrapper .cards-grid {
    grid-template-columns: 1fr;
    padding: 0px;
    gap: 1.5rem 0px;
  }
}
.cocktail-Article-Wrapper .choco-img {
  width: 100% !important;
  max-width: 330px !important;
  object-fit: cover !important;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .choco-img {
    max-width: 100% !important;
  }
}
.cocktail-Article-Wrapper .choco-content {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .choco-content {
    width: 100%;
  }
}
.cocktail-Article-Wrapper .wide-card img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .cocktail-Article-Wrapper .wide-card img {
    max-width: 350px;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-Article-Wrapper .wide-card img {
    max-width: 100%;
  }
}
.cocktail-Article-Wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  color: #000000;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .cards-grid h3 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-Article-Wrapper .cards-grid h3 {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}
.cocktail-Article-Wrapper .recipe-card {
  grid-column: span 2;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .recipe-card {
    grid-column: span 1;
  }
}
.cocktail-Article-Wrapper .recipe-card.wide-card {
  grid-column: span 3;
  position: relative;
  top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .recipe-card.wide-card {
    grid-column: span 1;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-Article-Wrapper .recipe-card.wide-card {
    margin-bottom: 0rem;
    top: 0px;
  }
}
.cocktail-Article-Wrapper .yellow-box {
  position: absolute;
  top: -35px;
  left: -50px;
  width: 70%;
  height: 80%;
  background: #FFF000;
  z-index: -1;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .cocktail-Article-Wrapper .yellow-box {
    top: -30px;
    left: -40px;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .cocktail-Article-Wrapper .yellow-box {
    display: none;
  }
}
.cocktail-Article-Wrapper .recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.place-black-wrapper .page-black-banner {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .place-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.place-black-wrapper .page-content {
  display: inline-block;
  background: #FFF000;
  color: #000000;
  padding: 1.25rem 1rem 0.625rem 1rem;
  font-weight: 400;
  font-size: 3.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .place-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}

.Places-Gallery-Wrapper {
  height: auto;
}
.Places-Gallery-Wrapper .recipe-section {
  padding: 3.75rem 1.25rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .Places-Gallery-Wrapper .recipe-section {
    margin: 0px;
    padding: 3.75rem 0px;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .recipe-section {
    padding: 0px;
    margin-top: -90px;
    margin-bottom: 2.5rem;
  }
}
.Places-Gallery-Wrapper .grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0.9375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.Places-Gallery-Wrapper .dropdown-box {
  display: flex;
  align-items: start;
  justify-content: end;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .dropdown-box {
    background-color: #FFF000;
  }
}
.Places-Gallery-Wrapper .dropdown-box select {
  width: 400px;
  padding: 1.875rem 1.25rem;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .dropdown-box select {
    width: 200px;
    padding: 1rem;
  }
}
.Places-Gallery-Wrapper .card {
  position: relative;
  overflow: hidden;
}
.Places-Gallery-Wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.Places-Gallery-Wrapper .overlay-card {
  height: 300px;
  position: relative;
  cursor: pointer;
}
.Places-Gallery-Wrapper .overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.Places-Gallery-Wrapper .overlay-content {
  position: absolute;
  bottom: 1.875rem;
  left: 1.875rem;
  color: #ffffff;
  z-index: 2;
}
.Places-Gallery-Wrapper .overlay-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
.Places-Gallery-Wrapper .underline {
  display: block;
  width: 40px;
  height: 4px;
  background: #FFF000;
}
.Places-Gallery-Wrapper .big-card {
  margin-top: -100px;
  grid-column: 1/2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .big-card {
    margin-top: 0px;
    grid-column: auto;
  }
}
.Places-Gallery-Wrapper .yellow-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #FFF000;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .yellow-strip {
    width: 0px;
  }
}
.Places-Gallery-Wrapper .big-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFF000;
  padding: 10px 70px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .big-title {
    padding: 0 1rem;
  }
}
.Places-Gallery-Wrapper .big-title h2 {
  font-size: 1.375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}
.Places-Gallery-Wrapper .cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 1.25rem;
  padding: 0px 7vw;
  margin-bottom: 3rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    gap: 1.875rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Places-Gallery-Wrapper .cards-grid {
    grid-template-columns: 1fr;
    padding: 0px;
    gap: 1.5rem 0px;
  }
}
.Places-Gallery-Wrapper .choco-img {
  width: 100% !important;
  max-width: 330px !important;
  object-fit: cover !important;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .choco-img {
    max-width: 100% !important;
  }
}
.Places-Gallery-Wrapper .choco-content {
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .choco-content {
    width: 100%;
  }
}
.Places-Gallery-Wrapper .wide-card img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  cursor: pointer;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .Places-Gallery-Wrapper .wide-card img {
    max-width: 350px;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Places-Gallery-Wrapper .wide-card img {
    max-width: 100%;
  }
}
.Places-Gallery-Wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .cards-grid h3 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Places-Gallery-Wrapper .cards-grid h3 {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}
.Places-Gallery-Wrapper .card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}
.Places-Gallery-Wrapper .recipe-card {
  grid-column: span 2;
  transition: transform 0.3s ease;
}
.Places-Gallery-Wrapper .recipe-card .recipe-card:hover {
  transform: translateY(-5px);
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .recipe-card {
    grid-column: span 1;
  }
}
.Places-Gallery-Wrapper .recipe-card.wide-card {
  grid-column: span 3;
  position: relative;
  top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .recipe-card.wide-card {
    grid-column: span 1;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Places-Gallery-Wrapper .recipe-card.wide-card {
    margin-bottom: 0rem;
    top: 0px;
  }
}
.Places-Gallery-Wrapper .yellow-box {
  position: absolute;
  top: -35px;
  left: -50px;
  width: 70%;
  height: 80%;
  background: #FFF000;
  z-index: -1;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .Places-Gallery-Wrapper .yellow-box {
    top: -30px;
    left: -40px;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .Places-Gallery-Wrapper .yellow-box {
    display: none;
  }
}
.Places-Gallery-Wrapper .recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-black-wrapper .page-black-banner {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .news-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.news-black-wrapper .page-content {
  display: inline-block;
  background: #FFF000;
  color: #000000;
  padding: 1.25rem 1rem 0.625rem 1rem;
  font-weight: 400;
  font-size: 3.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .news-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}

.news-page-Wrapper {
  height: auto;
}
.news-page-Wrapper .recipe-section {
  padding: 3.75rem 1.75rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .news-page-Wrapper .recipe-section {
    margin: 0px;
    padding: 3.75rem 0px;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .recipe-section {
    padding: 0px;
    margin-top: -90px;
    margin-bottom: 2.5rem;
  }
}
.news-page-Wrapper .grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0.9375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.news-page-Wrapper .dropdown-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .dropdown-box {
    background-color: #FFF000;
  }
}
.news-page-Wrapper .dropdown-box select {
  width: 400px;
  padding: 1.875rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .dropdown-box select {
    width: 200px;
    padding: 1rem;
  }
}
.news-page-Wrapper .card {
  position: relative;
  overflow: hidden;
}
.news-page-Wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-page-Wrapper .overlay-card {
  height: 300px;
  position: relative;
  cursor: pointer;
}
.news-page-Wrapper .overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.news-page-Wrapper .overlay-content {
  position: absolute;
  bottom: 1.875rem;
  left: 1.875rem;
  color: #ffffff;
  z-index: 2;
}
.news-page-Wrapper .overlay-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
.news-page-Wrapper .underline {
  display: block;
  width: 40px;
  height: 4px;
  background: #FFF000;
}
.news-page-Wrapper .big-card {
  margin-top: -100px;
  grid-column: 1/2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .big-card {
    margin-top: 0px;
    grid-column: auto;
  }
}
.news-page-Wrapper .yellow-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #FFF000;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .yellow-strip {
    width: 0px;
  }
}
.news-page-Wrapper .big-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFF000;
  padding: 0.625rem 4.375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .big-title {
    padding: 0px 1rem;
  }
}
.news-page-Wrapper .big-title h2 {
  font-size: 1.375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}
.news-page-Wrapper .cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 1.25rem;
  padding: 0px 7vw;
  margin-bottom: 3rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .news-page-Wrapper .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    gap: 1.875rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .news-page-Wrapper .cards-grid {
    grid-template-columns: 1fr;
    padding: 0px;
    gap: 1.5rem 0px;
  }
}
.news-page-Wrapper .choco-img {
  width: 100% !important;
  max-width: 330px !important;
  object-fit: cover !important;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .choco-img {
    max-width: 100% !important;
  }
}
.news-page-Wrapper .choco-content {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .choco-content {
    width: 100%;
  }
}
.news-page-Wrapper .wide-card img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  cursor: pointer;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .news-page-Wrapper .wide-card img {
    max-width: 350px;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .news-page-Wrapper .wide-card img {
    max-width: 100%;
  }
}
.news-page-Wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .news-page-Wrapper .cards-grid h3 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .news-page-Wrapper .cards-grid h3 {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}
.news-page-Wrapper .card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}
.news-page-Wrapper .recipe-card {
  grid-column: span 2;
  transition: transform 0.3s ease;
}
.news-page-Wrapper .recipe-card .recipe-card:hover {
  transform: translateY(-5px);
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .news-page-Wrapper .recipe-card {
    grid-column: span 1;
  }
}
.news-page-Wrapper .recipe-card.wide-card {
  grid-column: span 3;
  position: relative;
  top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .news-page-Wrapper .recipe-card.wide-card {
    grid-column: span 1;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .news-page-Wrapper .recipe-card.wide-card {
    margin-bottom: 0rem;
    top: 0px;
  }
}
.news-page-Wrapper .yellow-box {
  position: absolute;
  top: -35px;
  left: -50px;
  width: 70%;
  height: 80%;
  background: #FFD700;
  z-index: -1;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .news-page-Wrapper .yellow-box {
    top: -30px;
    left: -40px;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .news-page-Wrapper .yellow-box {
    display: none;
  }
}
.news-page-Wrapper .recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.article-black-wrapper .page-black-banner {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .article-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.article-black-wrapper .page-content {
  display: inline-block;
  background: #FFF000;
  color: #000000;
  padding: 1.25rem 1rem 0.625rem 1rem;
  font-weight: 400;
  font-size: 3.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .article-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}

.article-Wrapper {
  height: auto;
}
.article-Wrapper .recipe-section {
  padding: 3.75rem 1.75rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .article-Wrapper .recipe-section {
    margin: 0px;
    padding: 3.75rem 0px;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .recipe-section {
    padding: 0px;
    margin-top: -90px;
    margin-bottom: 2.5rem;
  }
}
.article-Wrapper .grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0.9375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.article-Wrapper .dropdown-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .dropdown-box {
    background-color: #FFF000;
  }
}
.article-Wrapper .dropdown-box select {
  width: 400px;
  padding: 1.875rem 1.25rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .dropdown-box select {
    width: 200px;
    padding: 1rem;
  }
}
.article-Wrapper .card {
  position: relative;
  overflow: hidden;
}
.article-Wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-Wrapper .overlay-card {
  height: 300px;
  position: relative;
  cursor: pointer;
}
.article-Wrapper .overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.article-Wrapper .overlay-content {
  position: absolute;
  bottom: 1.875rem;
  left: 1.875rem;
  color: #ffffff;
  z-index: 2;
}
.article-Wrapper .overlay-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
.article-Wrapper .underline {
  display: block;
  width: 40px;
  height: 4px;
  background: #FFF000;
}
.article-Wrapper .big-card {
  margin-top: -100px;
  grid-column: 1/2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .big-card {
    margin-top: 0px;
    grid-column: auto;
  }
}
.article-Wrapper .yellow-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #FFF000;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .yellow-strip {
    width: 0px;
  }
}
.article-Wrapper .big-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFF000;
  padding: 0.625rem 4.375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .big-title {
    padding: 0px 1rem;
  }
}
.article-Wrapper .big-title h2 {
  font-size: 1.375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}
.article-Wrapper .cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 1.25rem;
  padding: 0px 7vw;
  margin-bottom: 3rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .article-Wrapper .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    gap: 1.875rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .article-Wrapper .cards-grid {
    grid-template-columns: 1fr;
    padding: 0px;
    gap: 1.5rem 0px;
  }
}
.article-Wrapper .choco-img {
  width: 100% !important;
  max-width: 330px !important;
  object-fit: cover !important;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .choco-img {
    max-width: 100% !important;
  }
}
.article-Wrapper .choco-content {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .choco-content {
    width: 100%;
  }
}
.article-Wrapper .wide-card img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  cursor: pointer;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .article-Wrapper .wide-card img {
    max-width: 350px;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .article-Wrapper .wide-card img {
    max-width: 100%;
  }
}
.article-Wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .article-Wrapper .cards-grid h3 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .article-Wrapper .cards-grid h3 {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}
.article-Wrapper .card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}
.article-Wrapper .recipe-card {
  grid-column: span 2;
  transition: transform 0.3s ease;
}
.article-Wrapper .recipe-card .recipe-card:hover {
  transform: translateY(-5px);
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .article-Wrapper .recipe-card {
    grid-column: span 1;
  }
}
.article-Wrapper .recipe-card.wide-card {
  grid-column: span 3;
  position: relative;
  top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .article-Wrapper .recipe-card.wide-card {
    grid-column: span 1;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .article-Wrapper .recipe-card.wide-card {
    margin-bottom: 0rem;
    top: 0px;
  }
}
.article-Wrapper .yellow-box {
  position: absolute;
  top: -35px;
  left: -50px;
  width: 70%;
  height: 80%;
  background: #FFF000;
  z-index: -1;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .article-Wrapper .yellow-box {
    top: -30px;
    left: -40px;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .article-Wrapper .yellow-box {
    display: none;
  }
}
.article-Wrapper .recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ingredients-black-wrapper .page-black-banner {
  background: #FFF000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .ingredients-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.ingredients-black-wrapper .page-black-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .ingredients-black-wrapper .page-black-wrapper {
    margin-top: 0rem;
  }
}
.ingredients-black-wrapper .page-content {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 2.5rem 1rem 1.25rem 1rem;
  font-weight: 400;
  font-size: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .ingredients-black-wrapper .page-content {
    font-size: 4.875rem;
    padding: 1.875rem 1rem 0.9375rem 1rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .ingredients-black-wrapper .page-content {
    font-size: 3.4375rem;
    padding: 1.375rem 1rem 0.625rem 1rem;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .ingredients-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}
.ingredients-black-wrapper .page-content-para {
  display: inline-block;
  color: #000000;
  font-size: 2.1875rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .ingredients-black-wrapper .page-content-para {
    position: relative;
    top: 3rem;
  }
}

.ingredients-Wrapper .ingredients-container {
  max-width: 1200px;
  width: 100%;
  padding: 2.5rem 1.25rem;
}
.ingredients-Wrapper .cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 250px);
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .ingredients-Wrapper .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .ingredients-Wrapper .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .ingredients-Wrapper .cocktail-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ingredients-Wrapper .card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: 0.3s ease;
}
.ingredients-Wrapper .card:hover {
  transform: translateY(-5px);
}
.ingredients-Wrapper .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.ingredients-Wrapper .card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .ingredients-Wrapper .card-image img {
    height: auto;
  }
}
.ingredients-Wrapper {
  /* TEXT BELOW IMAGE */
}
.ingredients-Wrapper .card-text {
  padding: 0.75rem 0.8125rem;
  background: #000000;
  color: #ffffff;
  font-size: 1.125rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  text-align: center;
  min-height: 5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.themes-black-wrapper .page-black-banner {
  background: #FFF000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .themes-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.themes-black-wrapper .page-black-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .themes-black-wrapper .page-black-wrapper {
    margin-top: 0rem;
  }
}
.themes-black-wrapper .page-content {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 2.5rem 1rem 1.25rem 1rem;
  font-weight: 400;
  font-size: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .themes-black-wrapper .page-content {
    font-size: 4.875rem;
    padding: 1.875rem 1rem 0.9375rem 1rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .themes-black-wrapper .page-content {
    font-size: 3.4375rem;
    padding: 1.375rem 1rem 0.625rem 1rem;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .themes-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}
.themes-black-wrapper .page-content-para {
  display: inline-block;
  color: #000000;
  font-size: 2.1875rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .themes-black-wrapper .page-content-para {
    position: relative;
    top: 3rem;
  }
}

.theme-Places-Wrapper .themes-container {
  max-width: 1200px;
  width: 100%;
  padding: 2.5rem 1.25rem;
}
.theme-Places-Wrapper .cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 250px);
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .theme-Places-Wrapper .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .theme-Places-Wrapper .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .theme-Places-Wrapper .cocktail-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.theme-Places-Wrapper .card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: 0.3s ease;
}
.theme-Places-Wrapper .card:hover {
  transform: translateY(-5px);
}
.theme-Places-Wrapper .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.theme-Places-Wrapper .card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .theme-Places-Wrapper .card-image img {
    height: auto;
  }
}
.theme-Places-Wrapper .card-text {
  padding: 0.75rem 0.8125rem;
  background: #000000;
  color: #ffffff;
  font-size: 1.125rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  text-align: center;
  min-height: 5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.theme-Places-Wrapper .theme-ingredient {
  padding: 1.5rem 0px;
  width: 100%;
  max-width: 782px;
  margin: auto;
  font-size: 1.5rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .theme-Places-Wrapper .theme-ingredient {
    max-width: 100%;
  }
}

.cocktail-recipes-black-wrapper .page-black-banner {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .cocktail-recipes-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.cocktail-recipes-black-wrapper .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: brightness(60%);
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-black-wrapper .banner-bg {
    display: none;
  }
}
.cocktail-recipes-black-wrapper .page-content {
  display: inline-block;
  background: #FFF000;
  color: #000000;
  padding: 1.25rem 1rem 0.625rem 1rem;
  font-weight: 400;
  font-size: 3.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .cocktail-recipes-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-recipes-black-wrapper .page-content {
    line-height: 3.5rem;
  }
}

.cocktail-recipes-wrapper .recipe-section {
  padding: 3.75rem 1.75rem;
}
.cocktail-recipes-wrapper .clearfix {
  max-width: 1024px;
  margin-inline: auto;
  padding-bottom: 1rem;
}
.cocktail-recipes-wrapper .extra-content {
  display: none;
}
.cocktail-recipes-wrapper .intro-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.625rem;
}
.cocktail-recipes-wrapper h4 {
  font-size: 20px;
  font-weight: 300;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  margin: 0px 0 0.3125rem 0;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-recipes-wrapper h4 {
    font-size: 1rem;
  }
}
.cocktail-recipes-wrapper p {
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 1.5rem;
  color: #000000;
}
.cocktail-recipes-wrapper .expand-btn {
  background: none;
  border: none;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  float: right;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  padding: 0.625rem 0;
}
.cocktail-recipes-wrapper .clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.cocktail-recipes-wrapper .grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0.9375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.cocktail-recipes-wrapper .dropdown-box {
  display: flex;
  align-items: start;
  justify-content: end;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .dropdown-box {
    background-color: #FFF000;
  }
}
.cocktail-recipes-wrapper .dropdown-box select {
  width: 400px;
  padding: 1.875rem 1.25rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .dropdown-box select {
    width: 200px;
    padding: 1rem;
  }
}
.cocktail-recipes-wrapper .card {
  position: relative;
  overflow: hidden;
}
.cocktail-recipes-wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cocktail-recipes-wrapper .overlay-card {
  height: 300px;
  position: relative;
  cursor: pointer;
}
.cocktail-recipes-wrapper .overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.cocktail-recipes-wrapper .overlay-content {
  position: absolute;
  bottom: 1.875rem;
  left: 1.875rem;
  color: #ffffff;
  z-index: 2;
}
.cocktail-recipes-wrapper .overlay-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}
.cocktail-recipes-wrapper .overlay-content p {
  font-size: 0.8125rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  color: #ffffff;
  padding-bottom: 0.5rem;
  line-height: 1rem;
  padding-right: 5vw;
}
.cocktail-recipes-wrapper .underline {
  display: block;
  width: 40px;
  height: 4px;
  background: #FFF000;
}
.cocktail-recipes-wrapper .big-card {
  margin-top: -100px;
  grid-column: 1/2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .big-card {
    margin-top: 0px;
    grid-column: auto;
  }
}
.cocktail-recipes-wrapper .yellow-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #FFF000;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .yellow-strip {
    width: 0px;
  }
}
.cocktail-recipes-wrapper .big-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFF000;
  padding: 0.625rem 4.375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .big-title {
    padding: 0px 1rem;
  }
}
.cocktail-recipes-wrapper .big-title h2 {
  font-size: 1.375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}
.cocktail-recipes-wrapper .big-title p {
  font-size: 0.8125rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  color: #000000;
  padding-bottom: 0.5rem;
}
.cocktail-recipes-wrapper .cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 1.25rem;
  padding: 0px 7vw;
  margin-bottom: 3rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    gap: 1.875rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-recipes-wrapper .cards-grid {
    grid-template-columns: 1fr;
    padding: 0px;
    gap: 1.5rem 0px;
  }
}
.cocktail-recipes-wrapper .recipe-card {
  grid-column: span 2;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .recipe-card {
    grid-column: span 1;
  }
}
.cocktail-recipes-wrapper .recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.cocktail-recipes-wrapper .tag-wrapper {
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .tag-wrapper {
    width: auto;
  }
}
.cocktail-recipes-wrapper .tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
  list-style: none;
  padding: 0;
}
.cocktail-recipes-wrapper .ingredient-tag {
  border: 2px solid #FFF000;
  border-radius: 1.25rem;
  padding: 0px 0.625rem;
  font-size: 0.75rem;
  color: #000000;
  text-decoration: none;
  background-color: #EEEEEE;
  line-height: 1.375rem;
}
.cocktail-recipes-wrapper .card-description {
  font-size: 0.75rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
.cocktail-recipes-wrapper .underline-yellow {
  height: 4px;
  background-color: #FFF000;
  width: 45px;
}
.cocktail-recipes-wrapper .card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}
.cocktail-recipes-wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.3;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-recipes-wrapper .cards-grid h3 {
    font-size: 1.125rem;
  }
}
.cocktail-recipes-wrapper .recipe-card.wide-card {
  grid-column: span 3;
  position: relative;
  top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .recipe-card.wide-card {
    grid-column: span 1;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .recipe-card.wide-card {
    margin-bottom: 0rem;
    top: 0px;
  }
}
.cocktail-recipes-wrapper .choco-img {
  width: 100% !important;
  max-width: 330px !important;
  object-fit: cover !important;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .choco-img {
    max-width: 100% !important;
  }
}
.cocktail-recipes-wrapper .choco-content {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .choco-content {
    width: 100%;
  }
}
.cocktail-recipes-wrapper .wide-card img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  cursor: pointer;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .cocktail-recipes-wrapper .wide-card img {
    max-width: 350px;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-recipes-wrapper .wide-card img {
    max-width: 100%;
  }
}
.cocktail-recipes-wrapper .yellow-box {
  position: absolute;
  top: -35px;
  left: -50px;
  width: 70%;
  height: 65%;
  background: #FFF000;
  z-index: -1;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .cocktail-recipes-wrapper .yellow-box {
    top: -30px;
    left: -40px;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .cocktail-recipes-wrapper .yellow-box {
    display: none;
  }
}
.cocktail-recipes-wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .cocktail-recipes-wrapper .cards-grid h3 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .cocktail-recipes-wrapper .cards-grid h3 {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}

.Pineapple-recipes-black-wrapper .page-black-banner {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 400px;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .Pineapple-recipes-black-wrapper .page-black-banner {
    min-height: 60vh;
  }
}
.Pineapple-recipes-black-wrapper .page-content {
  display: inline-block;
  background: #FFF000;
  color: #000000;
  padding: 1.25rem 1rem 0.625rem 1rem;
  font-weight: 400;
  font-size: 3.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .Pineapple-recipes-black-wrapper .page-content {
    position: relative;
    top: 3rem;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-black-wrapper .page-content {
    line-height: 3.5rem;
  }
}

.Pineapple-recipes-wrapper .recipe-section {
  padding: 3.75rem 1.75rem;
}
.Pineapple-recipes-wrapper .grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0.9375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.Pineapple-recipes-wrapper .dropdown-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .dropdown-box {
    background-color: #FFF000;
  }
}
.Pineapple-recipes-wrapper .dropdown-box select {
  width: 400px;
  padding: 1.875rem 1.25rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .dropdown-box select {
    width: 200px;
    padding: 1rem;
  }
}
.Pineapple-recipes-wrapper .card {
  position: relative;
  overflow: hidden;
}
.Pineapple-recipes-wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.Pineapple-recipes-wrapper .overlay-card {
  height: 300px;
  position: relative;
  cursor: pointer;
}
.Pineapple-recipes-wrapper .overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.Pineapple-recipes-wrapper .overlay-content {
  position: absolute;
  bottom: 1.875rem;
  left: 1.875rem;
  color: #ffffff;
  z-index: 2;
}
.Pineapple-recipes-wrapper .overlay-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}
.Pineapple-recipes-wrapper .overlay-content p {
  font-size: 0.8125rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  color: #ffffff;
  padding-bottom: 0.5rem;
  line-height: 1rem;
  padding-right: 5vw;
}
.Pineapple-recipes-wrapper .underline {
  display: block;
  width: 40px;
  height: 4px;
  background: #FFF000;
}
.Pineapple-recipes-wrapper .big-card {
  margin-top: -100px;
  grid-column: 1/2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .big-card {
    margin-top: 0px;
    grid-column: auto;
  }
}
.Pineapple-recipes-wrapper .yellow-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #FFF000;
  z-index: 2;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .yellow-strip {
    width: 0px;
  }
}
.Pineapple-recipes-wrapper .big-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFF000;
  padding: 0.625rem 4.375rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .big-title {
    padding: 0px 1rem;
  }
}
.Pineapple-recipes-wrapper .big-title h2 {
  font-size: 1.375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}
.Pineapple-recipes-wrapper .cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 1.25rem;
  padding: 0px 7vw;
  margin-bottom: 3rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
    gap: 1.875rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Pineapple-recipes-wrapper .cards-grid {
    grid-template-columns: 1fr;
    padding: 0px;
    gap: 1.5rem 0px;
  }
}
.Pineapple-recipes-wrapper .recipe-card {
  grid-column: span 2;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .recipe-card {
    grid-column: span 1;
  }
}
.Pineapple-recipes-wrapper .recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.Pineapple-recipes-wrapper .tag-wrapper {
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .tag-wrapper {
    width: auto;
  }
}
.Pineapple-recipes-wrapper .tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.Pineapple-recipes-wrapper .ingredient-tag {
  border: 2px solid #FFF000;
  border-radius: 1.25rem;
  padding: 0px 0.625rem;
  font-size: 0.75rem;
  color: #000000;
  text-decoration: none;
  background-color: #EEEEEE;
  line-height: 1.375rem;
}
.Pineapple-recipes-wrapper .underline-yellow {
  height: 4px;
  background-color: #FFF000;
  width: 45px;
}
.Pineapple-recipes-wrapper .card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}
.Pineapple-recipes-wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.3;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Pineapple-recipes-wrapper .cards-grid h3 {
    font-size: 1.125rem;
  }
}
.Pineapple-recipes-wrapper .recipe-card.wide-card {
  grid-column: span 3;
  position: relative;
  top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .recipe-card.wide-card {
    grid-column: span 1;
  }
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .recipe-card.wide-card {
    margin-bottom: 0rem;
    top: 0px;
  }
}
.Pineapple-recipes-wrapper .choco-img {
  width: 100% !important;
  max-width: 330px !important;
  object-fit: cover !important;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .choco-img {
    max-width: 100% !important;
  }
}
.Pineapple-recipes-wrapper .choco-content {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  width: 330px;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .choco-content {
    width: 100%;
  }
}
.Pineapple-recipes-wrapper .wide-card img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  cursor: pointer;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .Pineapple-recipes-wrapper .wide-card img {
    max-width: 350px;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Pineapple-recipes-wrapper .wide-card img {
    max-width: 100%;
  }
}
.Pineapple-recipes-wrapper .yellow-box {
  position: absolute;
  top: -35px;
  left: -50px;
  width: 70%;
  height: 65%;
  background: #FFF000;
  z-index: -1;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .Pineapple-recipes-wrapper .yellow-box {
    top: -30px;
    left: -40px;
  }
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .Pineapple-recipes-wrapper .yellow-box {
    display: none;
  }
}
.Pineapple-recipes-wrapper .cards-grid h3 {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Pineapple-recipes-wrapper .cards-grid h3 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Pineapple-recipes-wrapper .cards-grid h3 {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}

.bar-addredd-container {
  background-color: #000000;
  min-height: 600px;
  position: relative;
}
.bar-addredd-container .bg-black-wrapper {
  width: 100%;
  max-width: 85%;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .bar-addredd-container .bg-black-wrapper {
    height: auto;
    max-width: 100%;
  }
}
.bar-addredd-container .breadcrumb-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 1.25rem 0;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .bar-addredd-container .breadcrumb-container {
    display: none;
  }
}
.bar-addredd-container .breadcrumb {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}
.bar-addredd-container .breadcrumb a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.bar-addredd-container .breadcrumb a:hover {
  opacity: 1;
}
.bar-addredd-container .breadcrumb span {
  color: #ffffff;
}
.bar-addredd-container .breadcrumb .current {
  font-weight: 500;
  opacity: 1;
}
.bar-addredd-container .hero-section {
  position: relative;
}
.bar-addredd-container .hero-wrapper {
  width: 100%;
  margin: auto;
  display: flex;
  position: relative;
}
.bar-addredd-container .hero-text-wrapper {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 2rem;
  margin-top: 7rem;
}
.bar-addredd-container .hero-text {
  background: #FFF000;
  padding: 2.0625rem 2.5rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .bar-addredd-container .hero-text {
    padding: 2.1875rem 2.5rem;
  }
}
.bar-addredd-container .hero-text h1 {
  font-size: 2.1875rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .bar-addredd-container .hero-text h1 {
    font-size: 1.5rem;
  }
}
.bar-addredd-container .author a {
  font-size: clamp(13px, 1.2vw, 14px);
  font-size: 0.75rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
}
.bar-addredd-container .line {
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  margin-top: 0.5rem;
}
.bar-addredd-container .hero-image {
  width: 100%;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .bar-addredd-container .hero-image {
    order: 1;
    width: 100%;
    margin-left: 0;
  }
}
.bar-addredd-container .hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .bar-addredd-container .hero-image img {
    height: 450px;
  }
}
.bar-addredd-container .social-section {
  background: #ffffff;
  padding: 2.5rem 0;
}
.bar-addredd-container .social-wrapper {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: flex-end;
}
.bar-addredd-container .social-icons {
  display: flex;
  gap: 1.125rem;
  margin-right: 1.5rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .bar-addredd-container .social-icons {
    margin-right: 0;
    margin-left: 1.5rem;
  }
}
.bar-addredd-container .social-icons a {
  width: 30px;
  height: 30px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  text-decoration: none;
  transition: 0.3s;
}
.bar-addredd-container .social-icons a:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 320px) and (max-width: 839px) {
  .bar-addredd-container .bg-black-wrapper {
    top: 0px;
  }
  .bar-addredd-container .hero-wrapper {
    flex-direction: column-reverse;
  }
  .bar-addredd-container .hero-text-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .bar-addredd-container .hero-text {
    order: 2;
    width: 85%;
    max-width: 80vw;
    margin-top: -60px;
    padding: 2.1875rem;
  }
}
@media (max-width: 599px) {
  .bar-addredd-container .hero-text {
    width: 100%;
    max-width: 100%;
    padding: 2rem;
  }
}

.Bar-blog-wrapper {
  margin-top: 10rem;
}
.Bar-blog-wrapper .bar-container {
  width: 100%;
  max-width: 839px;
  margin-inline: auto;
  padding-top: 3rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Bar-blog-wrapper .bar-container {
    padding-top: 1.5rem;
  }
}
.Bar-blog-wrapper .title {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: none;
}
.Bar-blog-wrapper .title::first-letter {
  font-size: 90px;
  float: left;
  line-height: 0.9;
  margin-right: 0.3125rem;
  margin-top: -52px;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .Bar-blog-wrapper .title::first-letter {
    font-size: 3.75rem;
    margin-top: -30px;
  }
}
.Bar-blog-wrapper p {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 2rem;
}
.Bar-blog-wrapper h2 {
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
  font-size: 1.375rem;
  text-transform: none;
}
.Bar-blog-wrapper .image-card {
  margin-top: 1.5625rem;
}
.Bar-blog-wrapper .image-card img {
  width: 100%;
  border-radius: 0.375rem;
  display: block;
}
.Bar-blog-wrapper .caption {
  margin-top: 0.625rem;
  margin-bottom: 2rem;
}
.Bar-blog-wrapper .caption h4 {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
}
.Bar-blog-wrapper .caption span {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-style: italic;
}
.Bar-blog-wrapper .latest-articles {
  background: #e6e6e6;
  padding: 3.75rem 1.25rem;
}
.Bar-blog-wrapper .heading {
  text-align: center;
  margin-bottom: 3.125rem;
}
.Bar-blog-wrapper .heading p {
  font-size: 1.875rem;
  margin-bottom: 0.625rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
.Bar-blog-wrapper .heading h2 span {
  background: #FFF000;
  padding: 0.5rem 0.5rem 0 0.5rem;
  font-size: 3.4375rem;
  font-weight: 800;
  line-height: 1;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
.Bar-blog-wrapper .articles-grid {
  max-width: 839px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .Bar-blog-wrapper .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .Bar-blog-wrapper .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Bar-blog-wrapper .articles-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Bar-blog-wrapper .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .Bar-blog-wrapper .card img {
    height: auto;
  }
}
.Bar-blog-wrapper .card h3 {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
}
.Bar-blog-wrapper .yellow-line {
  width: 40px;
  height: 4px;
  background: #FFF000;
  margin-top: 0.75rem;
}

.amber-fizz-container {
  background-color: #ffffff;
  min-height: 600px;
  position: relative;
  margin-bottom: 13rem;
}
.amber-fizz-container .bg-black-wrapper {
  width: 100%;
  max-width: 85%;
  position: absolute;
  top: 175px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .amber-fizz-container .bg-black-wrapper {
    height: auto;
    max-width: 100%;
  }
}
.amber-fizz-container .breadcrumb-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 1.25rem 0;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-container .breadcrumb-container {
    display: none;
  }
}
.amber-fizz-container .breadcrumb {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}
.amber-fizz-container .breadcrumb a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.amber-fizz-container .breadcrumb a:hover {
  opacity: 1;
}
.amber-fizz-container .breadcrumb span {
  color: #ffffff;
}
.amber-fizz-container .breadcrumb .current {
  font-weight: 500;
  opacity: 1;
}
.amber-fizz-container .hero-section {
  position: relative;
}
.amber-fizz-container .hero-wrapper {
  width: 100%;
  margin: auto;
  display: flex;
  position: relative;
}
.amber-fizz-container .hero-text-wrapper {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 2rem;
  margin-top: 7rem;
}
.amber-fizz-container .hero-text {
  background: #FFF000;
  padding: 2.0625rem 2.5rem;
  width: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .amber-fizz-container .hero-text {
    padding: 2.1875rem 2.5rem;
  }
}
.amber-fizz-container .hero-text h1 {
  font-size: 2.1875rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-container .hero-text h1 {
    font-size: 1.5rem;
  }
}
.amber-fizz-container .author a {
  font-size: clamp(13px, 1.2vw, 14px);
  font-size: 0.75rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
}
.amber-fizz-container .line {
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  margin-top: 0.5rem;
}
.amber-fizz-container .hero-image {
  width: 100%;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-container .hero-image {
    order: 1;
    width: 100%;
    margin-left: 0;
  }
}
.amber-fizz-container .hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-container .hero-image img {
    height: 450px;
  }
}
.amber-fizz-container .social-section {
  background: #ffffff;
  padding: 2.5rem 0;
}
.amber-fizz-container .social-wrapper {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: flex-end;
}
.amber-fizz-container .social-icons {
  display: flex;
  gap: 1.125rem;
  margin-right: 1.5rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-container .social-icons {
    margin-right: 0;
    margin-left: 1.5rem;
  }
}
.amber-fizz-container .social-icons a {
  width: 30px;
  height: 30px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  text-decoration: none;
  transition: 0.3s;
}
.amber-fizz-container .social-icons a:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 320px) and (max-width: 839px) {
  .amber-fizz-container .bg-black-wrapper {
    top: 0px;
  }
  .amber-fizz-container .hero-wrapper {
    flex-direction: column-reverse;
  }
  .amber-fizz-container .hero-text-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 2rem;
    margin-top: 0;
  }
  .amber-fizz-container .hero-text {
    order: 2;
    width: 85%;
    max-width: 80vw;
    margin-top: -60px;
    padding: 2.1875rem;
  }
}
@media (max-width: 599px) {
  .amber-fizz-container .hero-text {
    width: 100%;
    max-width: 100%;
    padding: 2rem;
  }
}

.amber-fizz-wrapper {
  /* margin-top: 13rem;*/
}
.amber-fizz-wrapper .recipe-section {
  max-width: 839px;
  margin: auto;
  position: relative;
}
.amber-fizz-wrapper .ingredients {
  background: #000000;
  color: #ffffff;
  padding: 2rem 2.5rem;
  width: 90%;
  position: relative;
  z-index: 2;
  left: 5rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .amber-fizz-wrapper .ingredients {
    width: 100%;
    left: 0;
  }
}
.amber-fizz-wrapper .ingredients h2 span {
  background: #FFF000;
  color: #000000;
  padding: 0.5rem 0.5rem 0 0.5rem;
  letter-spacing: 0.125rem;
  font-size: 60px;
  font-weight: 500;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-wrapper .ingredients h2 span {
    font-size: 3rem;
  }
}
.amber-fizz-wrapper .people {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 2rem 0;
}
.amber-fizz-wrapper .people button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #FFF000;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amber-fizz-wrapper .people input {
  width: 150px;
  text-align: center;
  border: none;
  padding: 0.0625rem 1rem;
  border-radius: 2px;
  font-size: 1rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 400;
}
.amber-fizz-wrapper .ingredients ul {
  list-style: none;
  width: 300px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .amber-fizz-wrapper .ingredients ul {
    width: 100%;
  }
}
.amber-fizz-wrapper .ingredients li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
.amber-fizz-wrapper .info-card {
  background: #000000;
  color: #ffffff;
  padding: 30px;
  width: 350px;
  position: absolute;
  top: 19.3rem;
  right: -3.5rem;
  z-index: 3;
  height: 400px;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .amber-fizz-wrapper .info-card {
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
    height: auto;
  }
}
.amber-fizz-wrapper .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}
.amber-fizz-wrapper .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  display: inline-block;
  margin-left: 0.25rem;
}
.amber-fizz-wrapper .dots i.active {
  background: #FFF000;
}
.amber-fizz-wrapper .preparation {
  background: #FFF000;
  padding: 140px 0.5rem 0.5rem 5rem;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .amber-fizz-wrapper .preparation {
    padding: 140px 0.5rem 0.5rem 1.5rem;
  }
}
.amber-fizz-wrapper .preparation h2 span {
  background: #000000;
  color: #ffffff;
  padding: 0.5rem 0.5rem 0 0.5rem;
  letter-spacing: 2px;
  font-size: 60px;
  font-weight: 500;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-wrapper .preparation h2 span {
    font-size: 3rem;
  }
}
.amber-fizz-wrapper .preparation ol {
  list-style: none;
  padding: 0;
}
.amber-fizz-wrapper .preparation li {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-wrapper .preparation li {
    align-items: baseline;
    justify-content: start;
  }
}
.amber-fizz-wrapper .num {
  margin-right: 0.375rem;
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 600;
}
.amber-fizz-wrapper .line {
  width: 30px;
  height: 1px;
  background: #000000;
  margin-right: 0.625rem;
  margin-bottom: 0.5rem;
}
.amber-fizz-wrapper .preparation p {
  margin: 0;
}
.amber-fizz-wrapper .bar-container {
  width: 100%;
  max-width: 839px;
  margin-inline: auto;
}
.amber-fizz-wrapper .title {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: none;
}
.amber-fizz-wrapper .title::first-letter {
  font-size: 90px;
  float: left;
  line-height: 0.9;
  margin-right: 0.3125rem;
  margin-top: -52px;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-wrapper .title::first-letter {
    font-size: 60px;
    margin-top: -30px;
  }
}
.amber-fizz-wrapper p {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 2rem;
}
.amber-fizz-wrapper h2 {
  margin: 3rem 0px;
  font-size: 1.375rem;
  text-transform: none;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .amber-fizz-wrapper h2 {
    margin: 1rem 0px;
  }
}
.amber-fizz-wrapper .image-card {
  margin-top: 1.5625rem;
}
.amber-fizz-wrapper .image-card img {
  width: 100%;
  border-radius: 0.375rem;
  display: block;
}
.amber-fizz-wrapper .img-title {
  text-align: center;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 600;
}
.amber-fizz-wrapper .caption {
  margin-top: 0.625rem;
  margin-bottom: 2rem;
}
.amber-fizz-wrapper .caption h4 {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
}
.amber-fizz-wrapper .caption span {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-style: italic;
}
.amber-fizz-wrapper .latest-articles {
  background: #e6e6e6;
  padding: 3.75rem 1.25rem;
}
.amber-fizz-wrapper .heading {
  text-align: center;
  margin-bottom: 3.125rem;
}
.amber-fizz-wrapper .heading p {
  font-size: 1.875rem;
  margin-bottom: 0.625rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
.amber-fizz-wrapper .heading h2 span {
  background: #FFF000;
  padding: 0.5rem 0.5rem 0 0.5rem;
  font-size: 3.4375rem;
  font-weight: 800;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
}
.amber-fizz-wrapper .articles-grid {
  max-width: 839px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .amber-fizz-wrapper .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .amber-fizz-wrapper .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .amber-fizz-wrapper .articles-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.amber-fizz-wrapper .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .amber-fizz-wrapper .card img {
    height: auto;
  }
}
.amber-fizz-wrapper .card h3 {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
}
.amber-fizz-wrapper .yellow-line {
  width: 40px;
  height: 4px;
  background: #FFF000;
  margin-top: 0.75rem;
}
.amber-fizz-wrapper .button-container {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 0px;
  flex-wrap: wrap;
}
.amber-fizz-wrapper .pill-button {
  background-color: #FFF000;
  color: #000000;
  text-decoration: none;
  padding: 0.3125rem 0.875rem;
  border-radius: 50px;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  transition: background-color 0.2s ease;
}
.amber-fizz-wrapper .pill-button:hover {
  background-color: #FFF000;
}

.night-club-wrapper .bar-container {
  width: 100%;
  max-width: 839px;
  margin-inline: auto;
  padding-top: 3rem;
}
@media (min-width: 0) and (max-width: 839.9px) {
  .night-club-wrapper .bar-container {
    padding-top: 1.5rem;
  }
}
.night-club-wrapper .bar-wrapper h2 {
  font-size: 1.25rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 1.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: none;
}
.night-club-wrapper .title {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: none;
}
.night-club-wrapper .social-card {
  width: 100%;
  max-width: 500px;
  margin: auto;
  height: 100%;
}
.night-club-wrapper p {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 2rem;
}
.night-club-wrapper h2 {
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
  font-size: 1.375rem;
  text-transform: none;
}
.night-club-wrapper .caption {
  margin-top: 0.625rem;
  margin-bottom: 2rem;
}
.night-club-wrapper .caption h4 {
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
}
.night-club-wrapper .caption span {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-style: italic;
}
.night-club-wrapper .rex-container {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9375rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
}
.night-club-wrapper .rex-link {
  text-decoration: none;
  color: inherit;
  border-bottom: 4px solid #FFF000;
  padding-bottom: 1px;
  transition: 0.3s;
}
.night-club-wrapper .social-links {
  display: flex;
  gap: 0.9375rem;
}
.night-club-wrapper .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.125rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.night-club-wrapper .social-icon:hover {
  transform: scale(1.1);
  background-color: #333;
}
.night-club-wrapper .latest-articles {
  background-color: #DDDDE3;
  padding: 3.75rem 1.25rem;
}
.night-club-wrapper .heading {
  text-align: center;
  margin-bottom: 3.125rem;
}
.night-club-wrapper .heading p {
  font-size: 1.875rem;
  margin-bottom: 0.625rem;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
}
.night-club-wrapper .heading h2 span {
  background: #FFF000;
  padding: 0.5rem 0.5rem 0 0.5rem;
  font-size: 3.4375rem;
  font-weight: 800;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
}
.night-club-wrapper .articles-grid {
  max-width: 839px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  .night-club-wrapper .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .night-club-wrapper .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .night-club-wrapper .articles-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.night-club-wrapper .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .night-club-wrapper .card img {
    height: auto;
  }
}
.night-club-wrapper .card h3 {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
}
.night-club-wrapper .yellow-line {
  width: 40px;
  height: 4px;
  background: #FFF000;
  margin-top: 0.75rem;
}

body {
  color: #000000;
  overflow-x: hidden;
  margin: 0;
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: normal;
  font-style: normal;
}
@media (min-width: 1023.9px) {
  body {
    font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: normal;
    font-style: normal;
  }
}

section {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: normal;
  font-style: normal;
}
@media (min-width: 1023.9px) {
  section {
    font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: normal;
    font-style: normal;
  }
}

nav {
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: normal;
  font-style: normal;
}
@media (min-width: 1023.9px) {
  nav {
    font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: normal;
    font-style: normal;
  }
}
nav ul li a {
  text-decoration: none;
  list-style: none;
}

/* Global reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
a {
  cursor: pointer;
}

/* Links */
a {
  color: #3f37d7;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Forms */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  padding: 1rem;
  border: 1px solid #a5abb3;
  width: 100%;
  border-radius: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus {
  outline: 2px solid #002d72;
}

svg:focus,
svg:focus-visible {
  border: none;
  outline: none;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

::selection {
  background-color: #33578e;
  color: #e4e2f9;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.3s ease;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1023.9px) and (max-width: 1279.9px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

h1,
.h1 {
  text-transform: uppercase;
}
h2,
.h2 {
  text-transform: uppercase;
  font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  letter-spacing: 0.0625rem;
  font-style: normal;
}
@media (min-width: 839.9px) and (max-width: 1023.9px) {
  h2,
  .h2 {
    font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-size: 2.8125rem;
    letter-spacing: 0.0625rem;
    font-style: normal;
  }
}
@media (min-width: 1023.9px) {
  h2,
  .h2 {
    font-family: "Festivo", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-size: 3.75rem;
    letter-spacing: 0.0625rem;
    font-style: normal;
  }
}

.c-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1023.9px) {
  .c-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.c-padding-bottom {
  padding-bottom: 2rem;
}
@media (min-width: 1023.9px) {
  .c-padding-bottom {
    padding-bottom: 3rem;
  }
}

.c-margin-bottom {
  margin-bottom: 2rem;
}
@media (min-width: 1023.9px) {
  .c-margin-bottom {
    margin-bottom: 3rem;
  }
}

.sectionBreadcrumb {
  position: relative;
}

@media (min-width: 839.9px) {
  .responsiveRichContent {
    gap: 4rem;
    grid-column: span 6;
  }
}
.responsiveRichContent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 12 columns - Default for desktop min-width 1200px */
}
.responsiveRichContent {
  /* Mobile breakpoint (sm to lg): 8 columns $columns-mobile, 1fr*/
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .responsiveRichContent {
    grid-template-columns: repeat(4, 1fr);
  }
}
.responsiveRichContent {
  /* Tablet breakpoint (lg to xl): 8 columns */
}
@media (min-width: 839.9px) {
  .responsiveRichContent {
    grid-template-columns: repeat(12, 1fr);
  }
}
.responsiveRichContent div {
  grid-column: 1/span 4;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .responsiveRichContent div {
    grid-column: 1/span 4;
  }
}
@media (min-width: 839.9px) {
  .responsiveRichContent div {
    grid-column: span 6;
  }
}

.tabularContent::-webkit-scrollbar {
  height: 8px;
}
.tabularContent {
  overflow-x: auto;
  max-width: 800px;
  margin-inline: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
@media (min-width: 1023.9px) {
  .tabularContent {
    max-width: 1024px;
  }
}
.tabularContent {
  /* Scroll UX */
  -webkit-overflow-scrolling: touch;
}
.tabularContent table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}
.tabularContent th,
.tabularContent td {
  border: 1px solid #e6e6e6;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}
.tabularContent th {
  background-color: #f4f6f8;
  font-weight: 600;
  color: #222;
  position: sticky;
  top: 0;
  z-index: 2;
}
.tabularContent tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.tabularContent tbody tr:hover {
  background-color: #f1f5f9;
}

.container-inner {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  padding: 2rem 1rem;
}
@media (min-width: 0) and (max-width: 1023.9px) {
  .container-inner {
    padding: 2rem 0rem;
  }
}

.social-links {
  display: flex;
  gap: 15px; /* Icons ke beech ka gap */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Circle ka size */
  height: 40px; /* Circle ka size */
  background-color: #000; /* Black background */
  color: #fff; /* White icon color */
  border-radius: 50%; /* Isse circle banta hai */
  text-decoration: none;
  font-size: 18px; /* Icon ka size */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect (Optional) */
.social-icon:hover {
  transform: scale(1.1); /* Thoda bada hoga hover par */
  background-color: #333; /* Dark grey color hover par */
}
