/* Banner Styles - BEM Methodology */

/* Banner Block */
.banner {
  width: 100%;
  background-image: url("../image/ribena-texture-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner__blackcurrant-img {
  height: 44%;
  width: 65%;
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: bottom;
  left: -19.5%;
  /* Equivalent to translateX(-30%) since width is 65% */
}

.min-h-100 {
  min-height: 1011px;
}

.banner__bottle-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 85% 50%;
  --bottle-scale: 2;
  transform: scale(var(--bottle-scale));
}

.banner__slogan {
  width: 100%;
}

@media (min-width: 992px) {
  .banner .banner__slogan {
    transform: translate(-30px, -20px) !important;
  }
}

.banner__brand-logo {
  position: absolute;
  height: 200px;
  width: 200px;
  object-fit: contain;
  left: 200px;
  top: 178px;
}

.banner__slogan-text {
  color: var(--Ribena-off-white, #fff0ee);
  font-family: "Gazpacho", sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
  text-align: center;
}

.banner__slogan-text-brand {
  display: block;
  padding-left: 90px;
}

.banner__slogan-italic {
  font-style: italic;
  font-family: inherit;
}

.about {
  height: 957px;
  align-content: center;
  position: relative;
  background: var(--Ribena-off-white, #fff0ee);
  overflow: hidden;
}

/* .about::after{  
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url('../image/droplet.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 70%;
    width: 50%;
    top: -1px;
} */

.about .about__title {
  color: var(--Ribena-red, #e3061b);
  font-family: Gazpacho;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 0;
  padding-bottom: 60px;
}

.about .about__description {
  color: var(--Ribena-purple, #9b26b6);
  font-family: "ES Rebond Grotesque";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.about__group-images {
  height: 100%;
  width: 100%;
}

.about__group-overlay-images {
  display: flex;
  position: relative;
  transform: translate(0px, 80px);
}

.about__group-overlay-images img {
  max-width: 140px;
  width: auto;
  height: 450px;
  object-fit: cover;
}

.about__group-overlay-images img:nth-child(1) {
  object-position: 28% 0;
  --pack-scale: 1.2;
  transform: scale(var(--pack-scale));
}

.about__group-overlay-images img:nth-child(2) {
  --pack-scale: 1.4;
  transform: scale(var(--pack-scale));
  position: relative;
  z-index: 1;
}

.about__group-overlay-images img:nth-child(3) {
  --pack-scale: 1.1;
  transform: scale(var(--pack-scale));
  object-position: -88px;
}

.about__group-images-droplet {
  height: 75%;
  position: absolute;
  top: -2px;
}

@media (max-width: 992px) {
  img.about__carton-img.aos-animate {
    transform: scale(0.9) translate(-22px, 22px) !important;
  }
}

@media (min-width: 993px) {
  img.about__carton-img.aos-animate {
    transform: scale(0.9) translate(-22px, 41px) !important;
  }
}

/* Video Section Styles - BEM Methodology */

.video {
  width: 100%;
  background-image: url("../image/ribena-texture-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0;
  position: relative;
}

.video__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 100px;
}

.video__headline {
  color: var(--Ribena-red, #fff);
  text-align: center;
  font-family: Gazpacho;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 80px */
  text-align: center;
}

.video__player-container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.video__player {
  position: relative;
  width: 100%;
  background-color: #000;
  border: 10px solid #ffffff;
  overflow: hidden;
}

.video__player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
  padding: 0;
}

.video__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video__play-btn svg {
  display: block;
}

.video__play-btn.hidden {
  display: none;
}

/* Responsive Styles */

@media (max-width: 1400px) {
  .min-h-100 {
    min-height: 870px;
  }

  .banner__bottle-img {
    object-position: 90% 50%;
  }

  .banner__blackcurrant-img {
    height: 37%;
  }

  .banner__brand-logo {
    height: 170px;
    width: 170px;
    left: 130px;
    top: 100px;
    transform: none;
  }

  .banner__bottle-img {
    object-position: 100% 50%;
    --bottle-scale: 1.5;
    transform: scale(var(--bottle-scale));
  }

  .banner__slogan-text {
    font-size: 80px;
    padding: 0 160px;
    text-align: left;
  }
}

@media (max-width: 1200px) {
  .about .about__title {
    font-size: 60px;
  }

  .video__headline {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  .banner__content > img:not(.banner__bottle-img) {
    transform: translateZ(0) scale(1.3) translateX(-140px) translateY(47.4px) !important;
  }

  .banner__bottle-img.aos-animate {
    transform: translateX(-53px) translateY(-64px) scale(2.4) !important;
  }
}

@media (min-width: 1024px) {
  .banner__content > img:not(.banner__bottle-img) {
    transform: translateZ(0) scale(1.3) translateX(-69px) translateY(34.4px) !important;
  }

  .banner__bottle-img.aos-animate {
    transform: translateX(-76px) translateY(-64px) scale(1.9) !important;
  }
}

@media (min-width: 1440px) {
  .banner__bottle-img.aos-animate {
    transform: translateX(-29px) translateY(-90px) scale(2.2) !important;
  }
}

@media (min-width: 318px) and (max-width: 380px) {
  .banner__slogan.aos-animate {
    transform: translateX(-58px) !important;
  }
}

@media (max-width: 992px) {
  .banner {
    min-height: 500px;
  }

  .banner__slogan-text {
    font-size: 28px;
  }

  .banner__blackcurrant-img,
  .banner__bottle-img {
    max-width: 300px;
  }

  .about .about__title {
    font-size: 40px;
  }

  .about .about__description {
    font-size: 20px;
  }

  .about__group-images-droplet {
    width: 65%;
  }

  .video {
    padding: 60px 0;
  }

  .video__headline {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .video__player-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .about__group-images {
    text-align: center;
  }

  .about__group-images-droplet {
    position: relative;
  }

  .about {
    height: 600px;
  }

  .min-h-100 {
    min-height: 650px;
  }

  .about__group-overlay-images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 10%);
  }

  .about__group-overlay-images img {
    height: 240px;
  }

  .about__group-overlay-images img:nth-child(3) {
    object-position: 0px;
  }

  .about__group-overlay-images img:nth-child(1) {
    object-position: 27% 0;
    transform: scale(1.2);
  }

  .about__group-overlay-images img:nth-child(2) {
    transform: scale(1.3);
    position: relative;
    z-index: 1;
  }

  .about__group-overlay-images img:nth-child(3) {
    transform: scale(1.1);
    object-position: -39px;
  }

  .about__group-overlay-images img {
    max-width: 70px;
  }

  .about__group-images-container {
    position: relative;
  }

  .video__content {
    gap: 30px;
  }
}

@media (max-width: 912px) {
  .min-h-100 {
    min-height: 550px !important;
  }

  .banner__slogan-text {
    padding: 0;
  }

  .banner__bottle-img {
    --bottle-scale: 2;
    transform: scale(var(--bottle-scale));
    right: 0;
  }

  .banner__bottle-img[data-aos="fade-right"] {
    transform: translate3d(-100px, 0, 0) scale(2);
  }

  .banner__bottle-img[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0) scale(2);
  }

  .banner__brand-logo {
    height: auto;
    width: 100px;
    left: 70px;
    top: 72px;
    transform: none;
  }

  .banner__slogan-text {
    font-size: 80px;
    padding: 0 28px;
  }

  .footer__nav-list {
    flex-direction: row;
  }

  .footer__nav-item {
    margin: 0;
    flex: 1 1 24%;
    text-align: center;
  }

  .footer__logo-text img {
    width: 100px;
    height: 34px;
  }

  .footer__copyright-text {
    font-size: 15px;
  }

  .banner__blackcurrant-img {
    left: -9.75%;
    /* Equivalent to translateX(-15%) since width is 65% */
    transform: none;
  }

  .banner__slogan-text-brand {
    padding-left: 0;
  }

  .about {
    height: 100%;
  }

  .about__content {
    padding: 40px 0;
  }

  .video {
    padding: 40px 0;
  }

  .video__headline {
    font-size: 32px;
    padding: 0 20px;
    margin-bottom: 0px;
  }

  .video__player-container {
    padding: 0 15px;
  }

  .video__play-btn svg {
    width: 60px;
    height: 60px;
  }

  .video__player {
    border: 2px solid #fff;
  }
}

@media (max-width: 570px) {
  .banner__slogan-text {
    font-size: 50px;
    width: 180px;
    padding: 0;
    margin: 50px auto auto 70px;
  }

  .banner__blackcurrant-img,
  .banner__bottle-img {
    max-width: 200px;
  }

  .banner__bottle-img {
    right: 0;
    bottom: -80px;
  }

  .banner__blackcurrant-img {
    height: 30%;
  }

  .banner__bottle-img {
    --bottle-scale: 2.5;
    transform: scale(var(--bottle-scale));
  }

  .about__content {
    background-color: #9b26b6;
    padding: 30px 20px;
  }

  .about__group-images-droplet {
    margin: 0 auto;
    height: 343px;
    object-fit: contain;
  }

  .about__group-overlay-images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
  }

  .about__group-overlay-images img {
    max-width: 72px;
    width: auto;
    height: 240px;
  }

  .about__group-overlay-images img:nth-child(3) {
    object-position: -40px;
  }

  .about__group-images-container {
    /*09-03-2026*/
    position: relative;
    /* height: 420px; */
    padding-bottom: 136px;
  }

  .about .about__description {
    color: #fff0ee;
    font-family: "ES Rebond Grotesque";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 27px */
    margin-bottom: 0;
  }

  .about .about__title {
    color: #fff0ee;
    font-family: Gazpacho;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 39px */
  }

  .video {
    padding: 45px 0;
  }

  .video__headline {
    font-size: 24px;
    padding: 0 15px;
    margin-bottom: 0;
  }

  .video__player-container {
    padding: 0 10px;
  }

  .video__play-btn svg {
    width: 50px;
    height: 50px;
  }
}

/* Product Rotator Section Styles */
.rotator {
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 70%
    ),
    #9d2bb3;
  background-color: #9d2bb3;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.rotator__slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rotator__track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-60px);
}

.rotator__item {
  position: absolute;
  width: auto;
  height: 450px;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
  will-change: transform, opacity, filter;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  filter: blur(2px);
  opacity: 0.5;
}

.rotator__item.active::after {
  bottom: 85px !important;
}

.rotator__item::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10px;
  border-radius: 50%;
  z-index: -1;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.rotator__item.active::after {
  width: 80%;
  height: 15px;
  bottom: -10px;
}

.rotator__item.prev-1::after,
.rotator__item.next-1::after {
  width: 70%;
  height: 12px;
  bottom: -1px;
}

.rotator__item.hide::after {
  opacity: 0;
}

.rotator__item img {
  height: auto;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25))
    drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
}

/* Active/Center item classes */
.rotator__item.active {
  z-index: 10;
  filter: none;
  opacity: 1;
  transform: translate3d(0, 0, 250px);
  width: 440px;
  height: 742px;
}

/* prev-1 and next-1: Inner */
.rotator__item.prev-1 {
  transform: translate3d(-254px, -5px, 80px);
  z-index: 8;
  opacity: 0.9;
  filter: none;
  width: 410px;
  height: 540px;
}

.rotator__item.next-1 {
  transform: translate3d(254px, -5px, 80px);
  z-index: 8;
  opacity: 0.9;
  filter: none;
  width: 410px;
  height: 540px;
}

/* prev-2 and next-2: Outer */
.rotator__item.prev-2 {
  transform: translate3d(-168px, 16px, -61px);
  z-index: 5;
  opacity: 0.7;
  filter: blur(2px);
  width: 362px;
  height: 405px;
}

.rotator__item.next-2 {
  transform: translate3d(168px, 16px, -61px);
  z-index: 5;
  opacity: 0.7;
  filter: blur(2px);
  width: 362px;
  height: 405px;
}

/* Category-specific overrides for Desktop (993px+) */
@media (min-width: 993px) {
  .rotator__item[data-category="cartons"].active {
    width: 352px;
    height: 594px;
    transform: translate3d(0, -40px, 250px);
    filter: none;
  }

  .rotator__item[data-category="cartons"].prev-1 {
    width: 256px;
    height: 432px;
    transform: translate3d(-260px, -40px, 80px);
  }

  .rotator__item[data-category="cartons"].next-1 {
    width: 256px;
    height: 432px;
    transform: translate3d(260px, -40px, 80px);
  }

  .rotator__item[data-category="cartons"].prev-2 {
    width: 192px;
    height: 324px;
    transform: translate3d(-140px, -40px, -120px);
  }

  .rotator__item[data-category="cartons"].next-2 {
    width: 192px;
    height: 324px;
    transform: translate3d(140px, -40px, -120px);
  }

  .rotator__item[data-category="squash"].active {
    width: 352px;
    height: 594px;
    transform: translate3d(0, 30px, 250px);
    filter: none;
  }

  .rotator__item[data-category="squash"].prev-1 {
    width: 256px;
    height: 432px;
    transform: translate3d(-260px, 30px, 80px);
  }

  .rotator__item[data-category="squash"].next-1 {
    width: 256px;
    height: 432px;
    transform: translate3d(260px, 30px, 80px);
  }

  .rotator__item[data-category="squash"].prev-2 {
    width: 192px;
    height: 324px;
    transform: translate3d(-140px, 30px, -120px);
  }

  .rotator__item[data-category="squash"].next-2 {
    width: 192px;
    height: 324px;
    transform: translate3d(140px, 30px, -120px);
  }
}

.rotator__item.hide {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, -500px) scale(0.5);
}

/* Header Styles */
.rotator__header {
  text-align: center;
  margin-bottom: 40px;
}

.rotator__header-main {
  color: #ffffff;
  font-family: "Gazpacho", serif;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rotator__header-main i {
  font-style: italic;
  font-weight: 500;
}

.rotator__header-title {
  color: #ffffff;
  font-family: "ES Rebond Grotesque", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.rotator__categories {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 4px;
  position: relative;
  background: transparent;
}

.rotator__category-pill {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  background: #ffffff;
  border-radius: 50px;
  transition:
    left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
    width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: left, width;
  z-index: 1;
}

.rotator__category-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "ES Rebond Grotesque", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.rotator__category-btn.active {
  color: #e3061b;
}

.rotator__category-btn:hover:not(.active) {
  background-color: transparent;
}

/* Controls Styles */
.rotator__controls {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 100;
}

.rotator__nav-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rotator__nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.rotator__shop-btn {
  display: inline-block;
  background-color: #fff9f9;
  color: #e21b4d;
  padding: 12px 55px;
  border-radius: 50px;
  border: 2px solid transparent;
  font-family: "ES Rebond Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rotator__shop-btn:hover {
  background-color: #e3061b;
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 992px) {
  .rotator__header-main {
    font-size: 40px;
  }

  .rotator__slider {
    height: 450px;
  }

  .rotator__track {
    perspective: 900px;
  }

  .rotator__item {
    height: 260px;
  }

  /* Explicit dimensions for responsiveness instead of scale */
  .rotator__item.active {
    transform: translate3d(0, 0, 150px);
    width: 250px;
    height: 422px;
  }

  .rotator__item.prev-1 {
    transform: translate3d(-200px, 0, 40px);
    width: 170px;
    height: 287px;
  }

  .rotator__item.next-1 {
    transform: translate3d(200px, 0, 40px);
    width: 170px;
    height: 287px;
  }

  .rotator__item.prev-2 {
    transform: translate3d(-100px, 0, -100px);
    width: 130px;
    height: 220px;
  }

  .rotator__item.next-2 {
    transform: translate3d(100px, 0, -100px);
    width: 130px;
    height: 220px;
  }

  .rotator__controls {
    bottom: -50px;
  }

  .rotator__shop-btn {
    padding: 10px 40px;
    font-size: 14px;
  }

  /* Category Specific Responsive Overrides for Tablet */
  .rotator__item[data-category="cartons"].active,
  .rotator__item[data-category="squash"].active {
    width: 200px;
    height: 337px;
  }

  .rotator__item[data-category="cartons"].active {
    transform: translate3d(0, -20px, 150px);
  }

  .rotator__item[data-category="squash"].active {
    transform: translate3d(0, 20px, 150px);
  }

  .rotator__item[data-category="cartons"].prev-1,
  .rotator__item[data-category="cartons"].next-1,
  .rotator__item[data-category="squash"].prev-1,
  .rotator__item[data-category="squash"].next-1 {
    width: 136px;
    height: 230px;
  }

  .rotator__item[data-category="cartons"].prev-1 {
    transform: translate3d(-200px, -20px, 40px);
  }

  .rotator__item[data-category="cartons"].next-1 {
    transform: translate3d(200px, -20px, 40px);
  }

  .rotator__item[data-category="squash"].prev-1 {
    transform: translate3d(-200px, 20px, 40px);
  }

  .rotator__item[data-category="squash"].next-1 {
    transform: translate3d(200px, 20px, 40px);
  }
}

@media (max-width: 576px) {
  .rotator {
    padding: 60px 0 100px 0;
  }

  .rotator__header-main {
    font-size: 32px;
  }

  .rotator__slider {
    height: 380px;
  }

  .rotator__item {
    height: 220px;
    transition:
      transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.7s ease,
      filter 0.7s ease;
  }

  .rotator__item.active {
    transform: translate3d(0, 0, 120px);
    width: 195px;
    height: 330px;
  }

  .rotator__item.prev-1 {
    transform: translate3d(-100px, 0, 30px);
    width: 130px;
    height: 220px;
  }

  .rotator__item.next-1 {
    transform: translate3d(100px, 0, 30px);
    width: 130px;
    height: 220px;
  }

  .rotator__item.prev-2 {
    transform: translate3d(-50px, 0, -80px);
    width: 98px;
    height: 165px;
  }

  .rotator__item.next-2 {
    transform: translate3d(50px, 0, -80px);
    width: 98px;
    height: 165px;
  }

  .rotator__controls {
    width: 100%;
    justify-content: center;
    bottom: -50px;
  }

  .rotator__shop-btn {
    padding: 8px 60px; /*09-03-2026*/
    font-size: 19px;
  }

  .rotator__categories {
    gap: 8px;
  }

  .rotator__category-btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  /* Category Specific Responsive Overrides for Mobile */
  .rotator__item[data-category="cartons"].active,
  .rotator__item[data-category="squash"].active {
    width: 156px;
    height: 264px;
  }

  .rotator__item[data-category="cartons"].active {
    transform: translate3d(0, -15px, 120px);
  }

  .rotator__item[data-category="squash"].active {
    transform: translate3d(0, 15px, 120px);
  }

  .rotator__item[data-category="cartons"].prev-1,
  .rotator__item[data-category="cartons"].next-1,
  .rotator__item[data-category="squash"].prev-1,
  .rotator__item[data-category="squash"].next-1 {
    width: 104px;
    height: 176px;
  }

  .rotator__item[data-category="cartons"].prev-1 {
    transform: translate3d(-100px, -15px, 30px);
  }

  .rotator__item[data-category="cartons"].next-1 {
    transform: translate3d(100px, -15px, 30px);
  }

  .rotator__item[data-category="squash"].prev-1 {
    transform: translate3d(-100px, 15px, 30px);
  }

  .rotator__item[data-category="squash"].next-1 {
    transform: translate3d(100px, 15px, 30px);
  }
}

@media (max-width: 475px) {
  .rotator__slider {
    height: 220px;
    margin-top: 140px;
  }
}

/* Recent AI Updates */
@media (max-width: 992px) {
  .banner {
    background-image: url(../image/Hero%20Section.png);
    background-attachment: scroll;
  }
  .about .about__title {
    padding-bottom: 20px;
  }
  .video__player {
    width: 85%;
    margin: 0 auto;
  }
}

@media (min-width: 420px) and (max-width: 425px) {
  .banner__slogan-text {
    margin: 50px auto auto 7px;
  }
}
@media (max-width: 320px) {
  .droplet-intro.aos-animate {
    transform: translateY(0) translateY(-11px) scale(1) !important;
  }
  .banner__bottle-img {
    width: 180px;
  }
  .banner__slogan-text {
    font-size: 44px;
  }
  .about__group-overlay-images {
    transform: translate(-50%, -30%);
  }
  .banner__slogan-text {
    font-size: 43px !important;
  }
}
