.footer-mobile-hr {
  display: none !important;
}

@media (max-width: 576px) {
  .footer-mobile-hr {
    display: block !important;
  }
}
body {
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.container {
  margin: 0;
  padding: 0;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 100%;
  }
}

h1,
h2,
h3,
.btn {
  font-family: "Dela Gothic One", sans-serif;
  color: white;
  margin: 10px;
}

.navbar-brand,
.nav-link {
  font-family: "Montserrat", sans-serif;
  color: white;
}

.btn {
  color: white;
  background: linear-gradient(#eb7303, #f19001);
  background-clip: padding-box;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
}

.title {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.text {
  max-width: 670px;
  text-align: center;
  margin: 10px;
}

.icons {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

h4,
h5,
h6,
.text,
.p-text {
  font-family: "Montserrat", sans-serif;
}

.icon {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sectorAssortment,
.sectorProducer {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.orange,
.cherry,
.tropical,
.multifruit,
.exotic,
.peach,
.blue {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  cursor: default !important;
}

.cherry {
  background: linear-gradient(#CA2124, #E43226);
  background-clip: padding-box;
}

.tropical {
  background: linear-gradient(#7C2460, #D21F60);
  background-clip: padding-box;
}

.multifruit, .orange {
  background: linear-gradient(#EB7303, #F19001);
  background-clip: padding-box;
}

.exotic {
  background: linear-gradient(#F6C403, #FFED00);
  background-clip: padding-box;
}

.peach {
  background: linear-gradient(#59A930, #9CC318);
  background-clip: padding-box;
}

.blue {
  background: linear-gradient(#264693, #0098D9);
  background-clip: padding-box;
  color: white;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

hr {
  border: none;
  height: 2px;
  background-color: #dfe9fa;
  border-radius: 2px;
  width: 100%;
}

.left,
.description,
.right {
  flex: 1;
  width: 100%;
}

h1,
h2 {
  text-transform: uppercase;
}

.promotion {
  background-color: #fef5d6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
}

.promotion-text {
  flex: 1;
  text-align: left;
  padding: 5%;
  gap: 15px;
  display: grid;
}

.promotion-blocks {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.promotion-block {
  flex: 1;
  background-color: #fce6ac;
  padding: 20px;
  border: #f49d1b 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-icon {
  color: #2d3fa0;
  font-size: 24px;
}

.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 0.5rem;
}

.scrolling-bar {
  overflow: hidden;
  background: radial-gradient(circle, #f19001 0%, #eb7303 100%);
  padding: 10px 0;
  position: relative;
  font-family: "Dela Gothic One", sans-serif;
}

.scrolling-content {
  display: inline-flex;
  animation: scroll-left 120s linear infinite;
  min-width: max-content;
  align-items: center;
  gap: 15px;
}

.scrolling-content span {
  font-size: 16px;
  white-space: nowrap;
  color: white;
}


@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.custom-footer {
  background: linear-gradient(135deg, #eb7303, #f19001);
  color: white;
  clip-path: ellipse(100% 100% at 50% 100%);
  position: relative;
  z-index: 1;
  min-height: auto;
  margin-top: 0;
  overflow: visible;
      margin-top: -5rem !important;
}

.row-container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 5%;
  flex-wrap: wrap;
  gap: 2rem;
}

footer .left,
footer .right {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

footer .middle {
  flex: 2;
  align-items: center;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  justify-content: center;
}

footer h6 {
  color: white;
  margin-bottom: 1rem;
}

footer .icons {
  justify-content: flex-start;
  gap: 18px;
}

@media (max-width: 992px) {
  .row-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    align-items: center;
    padding: 4% 2%;
  }
  footer .left,
  footer .middle,
  footer .right {
    flex: none;
    width: 100%;
    min-width: unset;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
  }
  footer .middle ul {
    flex-direction: column !important;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
  footer .middle .nav-item {
    padding: 0.25rem 0;
  }
  footer .icons {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .custom-footer {
    clip-path: ellipse(130% 100% at 50% 100%);
  }
}

@media (max-width: 768px) {
  .custom-footer {
    clip-path: ellipse(100% 100% at 50% 100%);
    margin-top: -7rem !important;
    overflow: visible;
  }

  .row-container {
    padding: 2% 4%;
    gap: 1rem;
  }

  .icons {
    justify-content: center;
    gap: 1rem;
  }

  .footer-content {
    padding-bottom: 0.5rem !important;
  }

  footer h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  footer .left,
  footer .middle,
  footer .right {
    margin-bottom: 1rem;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  footer .middle ul {
    gap: 0.25rem;
  }

  footer .middle .nav-link {
    padding: 0.25rem 0;
    font-size: 1rem;
  }

  .icons img {
    height: 28px;
  }
}

@media (max-width: 576px) {
  .custom-footer {
    clip-path: ellipse(100% 100% at 50% 100%);
    margin-top: -6rem !important;
  }

  .footer-logo {
    margin-top: 15%;
  }

  .footer-content {
    padding: 2rem 0.5rem !important;
    text-align: center;
  }

  .row-container {
    flex-direction: column;
    align-items: center;
    padding: 2% 3%;
    gap: 0.75rem;
  }

  .icons {
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .icons img {
    height: 28px;
  }

  footer .left,
  footer .middle,
  footer .right {
    width: 100%;
    margin-bottom: 0.75rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  footer .middle ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 1.5rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
    padding: 0;
    margin: 0 auto 0.5rem auto;
    width: 100%;
  }

  footer .middle .nav-item {
    padding: 0.15rem 0;
    text-align: left;
  }

  footer .middle .nav-link {
    font-size: 0.9rem;
    padding: 0.25rem 0;
    text-align: left;
  }

  footer h6 {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    text-align: center;
  }

  .footer-content hr {
    margin: 1rem 0 0.5rem 0 !important;
  }

  .footer-content .d-flex {
    flex-direction: column !important;
    gap: 0.2rem;
    font-size: 0.9rem;
    align-items: center !important;
    text-align: center;
  }

  .footer-content .d-flex span {
    margin: 0.1rem 0;
  }

  .footer-content a {
    display: block;
    margin: 0.1rem 0;
    font-size: 0.9rem;
  }
}


@media (max-width: 992px) {
  .row-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  footer .left,
  footer .middle,
  footer .right {
    flex: none;
    width: 100%;
  }

  footer .middle ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  footer .middle .nav-item {
    padding: 0.25rem 0;
  }
}

.image-text {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 50px;
}

.text-content {
  color: #35573a;
}

.text-content h2,
.text-content span,
.text-content h3 {
  margin: 0;
  color: #35573a;
  text-align: left;
  font-family: "Dela Gothic One", sans-serif;
}

.text-content p {
  margin: 0;
  font-size: 1rem;
  text-align: left;
}

@media (max-width: 768px) {
  .scrolling-content span {
    font-size: 14px;
  }

  .scrolling-content img {
    height: 14px;
  }
}

@media (max-width: 576px) {
  .scrolling-content span {
    font-size: 12px;
  }

  .scrolling-content img {
    height: 12px;
  }
}


.main-section {
  min-height: 400px;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .main-section {
    min-height: 300px;
    padding: 1rem 0;
  }
}

.product-cards-container {
  display: flex;
  flex-direction: row;
  gap: 0;
  height: 45%;
  padding: 0 30px;
}

@media (max-width: 992px) {
  .product-cards-container {
    flex-direction: column;
    height: auto;
    padding: 0 15px;
    gap: 1rem;
  }

  .product-cards-container > div {
    flex: none !important;
    height: 200px;
    border-radius: 20px !important;
  }
}

@media (max-width: 768px) {
  .product-cards-container {
    padding: 0 10px;
  }

  .product-cards-container > div {
    height: 150px;
    padding-top: 15px !important;
    gap: 40px !important;
  }

  .product-cards-container span {
    font-size: 0.9rem;
  }

  .product-cards-container img {
    height: 120px !important;
  }
}

@media (max-width: 576px) {
  .product-cards-container > div {
    height: 120px;
    gap: 20px !important;
  }

  .product-cards-container span {
    font-size: 0.8rem;
  }

  .product-cards-container img {
    height: 80px !important;
  }
}

.image-text {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 50px;
}

@media (max-width: 992px) {
  .image-text {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 15px;
  }

  #imgGraphics {
    height: 250px !important;
    width: auto !important;
  }
}

@media (max-width: 768px) {
  .image-text {
    padding: 20px;
    gap: 10px;
  }

  #imgGraphics {
    height: 200px !important;
  }

  .text-content h2,
  .text-content h3 {
    font-size: 1.2rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .image-text {
    padding: 15px;
  }

  #imgGraphics {
    height: 200px !important;
  }

  .text-content h2,
  .text-content h3 {
    font-size: 1rem;
  }

  .text-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  div[style*="height: 1000px"] {
    height: auto !important;
    min-height: 600px !important;
  }

  div[style*="height: 700px"] {
    height: auto !important;
    min-height: 500px !important;
  }

  div[style*="height: 900px"] {
    height: auto !important;
    min-height: 600px !important;
  }

  div[style*="height: 1200px"] {
    height: auto !important;
    min-height: 700px !important;
    padding-bottom: 150%;
    background-position: -150px center !important;
  }
}

@media (max-width: 576px) {
  div[style*="height: 1000px"] {
    min-height: 500px !important;
  }

  div[style*="height: 700px"] {
    min-height: 400px !important;
  }

  div[style*="height: 900px"] {
    min-height: 500px !important;
  }

  div[style*="height: 1200px"] {
    min-height: 600px !important;
  }
}

@media (max-width: 768px) {
  div[style*="width: 50%"] {
    width: 90% !important;
  }

  div[style*="width: 70%"] {
    width: 95% !important;
  }

  div[style*="width: 40%"] {
    width: 90% !important;
  }
}

@media (max-width: 768px) {
  div[style*="display: flex; flex-direction: row; align-items: center; gap: 15px;"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    text-align: left !important;
  }

  div[style*="display: flex; flex-direction: row; align-items: center; gap: 15px;"] img {
    height: 25px !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8rem;
  }
}
.slider {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc((200px + 20px) * 16);
  animation: scroll 20s linear infinite;
}

.slide-track img {
  width: 200px;  /* adjust size */
  height: auto;
  margin-right: 20px; /* spacing */
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.assortment {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
  align-items: start;
}

/* left column stacks its children */
.assortment-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* make image centered vertically in right column */
.assortment-image {
  display: flex;
  align-items: center;    /* center vertically */
  justify-content: center;/* center horizontally */
  height: 100%;
}

/* ensure bullet rows are left-aligned under the text on desktop */
.assortment .assortment-bullets > div {
  justify-content: flex-start;
}

/* ---------------- mobile behavior: text -> image -> bullets ---------------- */
@media (max-width: 768px) {
  .assortment {
    display: flex;            /* stack for small screens */
    flex-direction: column;
    align-items: center;
    padding: 30px;            /* slightly smaller padding on mobile */
    gap: 20px;
  }

  .assortment .text-content { order: 1; width: 100% !important; }
  .assortment .assortment-image { order: 2; }
  .assortment .assortment-bullets { order: 3; width: 100%; align-items: center; }

  .assortment .assortment-bullets > div {
    justify-content: center;
    margin: 0 auto;
  }

  .assortment .assortment-image img {
    max-width: 80%;
    height: auto !important;
  }
}

.responsive-row {
  display: flex;
  justify-content: space-between;
  height: 600px;
  color: white;
}

/* --- Mobile/Tablet: stack in order --- */
@media (max-width: 768px) {
  .responsive-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 30px; /* spacing between stacked blocks */
  }

  .responsive-row > div {
    width: 100% !important; /* override 35%/30% */
    position: relative;
  }

  /* flavour image: shrink height on small screens */
  .responsive-row img {
    max-width: 90%;
    height: auto !important;
  }

  /* overlay button + paragraph stays centered */
  .responsive-row > div:first-child > div {
    top: 10%; /* move down a bit on small screens */
    width: 100%;
    padding: 0 10px;
  }

  /* text block spacing */
  .responsive-row .text-content {
    text-align: left; /* keep paragraphs left aligned */
    padding: 0 10px;
  }
}

@media (max-width: 1100px) {
  .flavour{
    flex-direction: column-reverse !important;
  }
  .flavour2{
    flex-direction: column !important;
  }
}















/* Classes Carlos */
.pImgs{
  margin-left: auto !important;
  margin-right: auto !important;
  width: 80%;
} 

.divSections{
  overflow: hidden;
}

.divSections::before {
  content: "";
  position: absolute;
  top: -1.4vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 30px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.479) 0%,   
    rgba(255, 255, 255, 0.034) 70%    
  );

  pointer-events: none;

  z-index: 100;
}

.divSections::after {
  content: "";
  position: absolute;
  bottom: -1.7vh; 
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 30px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.479) 0%,   
    rgba(255, 255, 255, 0.034) 70%     
  );

  pointer-events: none;
  z-index: 100;
}

.divBotShadow::after {
  content: "";
  position: absolute;
  bottom: -1.7vh; 
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 30px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.733) 0%,   
    rgba(255, 255, 255, 0.034) 70%     
  );

  pointer-events: none;
  z-index: 100;
}
.divTopShadow::after {
  content: "";
  position: absolute;
  top: -1.4vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 30px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.733) 0%,   
    rgba(255, 255, 255, 0.034) 70%    
  );

  pointer-events: none;

  z-index: 100;
}

#divHalf1{
  display: flex;
  width: 50%;
  height: 50%;
}
#divHalf2{
  display: flex;
  width: 50%;
  height: 50%;
}

.floatingStars{
  position: absolute;
  animation: blink 0.5s infinite alternate;
}
.floatingCherry{
  position: absolute;
  z-index: 4;
  overflow: hidden;
  animation: spiral 5s linear infinite alternate;
}
@media (min-width: 931px) and (max-width: 1210px) {
  .cherry-flavour, .peach-flavour, .exotic-flavour, .orange-flavour, .tropical-flavour, .multifruit-flavour{
  height: 350px !important; 
}
}
@media (max-width: 930px) {
  #divHalves{
    display: flex;
    flex-direction: column !important;
  }
  #divHalf1{
    width: 100%;
    z-index: 2;
  }
  #divHalf2{
    width: 100%;
    margin-top: -150px;
    height: 500px;
  }

  #divHalf1 div{
    gap: 0px !important;
  }
  #divHalf2 div{
    gap: 0px !important;
  }

  #divHalf2 span{
    margin-top: 140px;
  }

  .orange-flavour, .tropical-flavour, .multifruit-flavour{
    height: 500px !important;
  }
}

@media (max-width: 550px){
  .cherry-flavour, .peach-flavour, .exotic-flavour{
    height: 300px !important;
  }
  .orange-flavour, .tropical-flavour, .multifruit-flavour{
    height: 400px !important;
  }
  #divHalf2{
    height: 400px;
  }
  .cherry-flavour img{
    margin-bottom: 80px;
  }
  .peach-flavour img{
      margin-bottom: 80px;
  }
  .exotic-flavour img{
      margin-bottom: 50px;
  }
  .orange-flavour img{
      margin-bottom: 35px;
  }
  .tropical-flavour img{
      margin-bottom: 35px;
  }
  .multifruit-flavour img{
      margin-bottom: 35px;
}
}

@media (max-width: 406px){
  .cherry-flavour, .peach-flavour, .exotic-flavour{
    height: 250px !important;
  }
  .orange-flavour, .tropical-flavour, .multifruit-flavour{
    height: 350px !important;
  }
  #divHalf2{
    height: 400px;
  }
  .cherry-flavour img{
    margin-bottom: 80px;
  }
  .peach-flavour img{
      margin-bottom: 80px;
  }
  .exotic-flavour img{
      margin-bottom: 50px;
  }
  .orange-flavour img{
      margin-bottom: 55px;
  }
  .tropical-flavour img{
      margin-bottom: 45px;
  }
  .multifruit-flavour img{
      margin-bottom: 65px;
}
}
@media (max-width: 347px){
  .cherry-flavour, .peach-flavour, .exotic-flavour{
    height: 220px !important;
  }
  .orange-flavour, .tropical-flavour, .multifruit-flavour{
    height: 320px !important;
  }
  #divHalf2{
    height: 400px;
  }
  .cherry-flavour img{
    margin-bottom: 80px;
  }
  .peach-flavour img{
      margin-bottom: 80px;
  }
  .exotic-flavour img{
      margin-bottom: 50px;
  }
  .orange-flavour img{
      margin-bottom: 60px;
  }
  .tropical-flavour img{
      margin-bottom: 50px;
  }
  .multifruit-flavour img{
      margin-bottom: 75px;
}
#divHalf2 span{
    margin-top: 125px;
  }
}


@media (max-width: 1397px) {
  #star2{
    top: 10% !important;
    
  }
}
@media (min-width: 457px) and (max-width: 768px) {
  #star1{
    display: none;
  }
  #star2{
    width: 40px !important;
    top: 17% !important;
    left: 14% !important;
  }
  #star3{
    top: 45% !important;
    left: 18% !important;
  }
  #star4{
    top: 5% !important;
    left: 64% !important;
  }
  #star5{
    top: 37% !important;
    left: 74% !important;
  }
}
@media (max-width: 456px) {
  #star1{
    display: none;
  }
  #star2{
    width: 23px !important;
    top: 17% !important;
    left: 4% !important;
  }
  #star3{
    width: 20px !important;
    top: 45% !important;
    left: 18% !important;
  }
  #star4{
    top: 5% !important;
    left: 64% !important;
  }
  #star5{
    width: 20px !important;
    top: 37% !important;
    left: 74% !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  #star1{
    display: none;
  }
  #star2{
    width: 50px !important;
    top: 17% !important;
    left: 24% !important;
  }
  #star3{
    top: 45% !important;
    left: 21% !important;
  }
  #star4{
    top: 5% !important;
    left: 64% !important;
  }
  #star5{
    top: 37% !important;
    left: 64% !important;
  }
}
@media (max-width: 1292px) {
 #star8{
   left: 11% !important;
   top: 58% !important;
 }
}
@media (max-width: 1090px) {
 #star9{
   left: 80% !important;
   top: 80% !important;
 }
}
@media (max-width: 410px) {
 #star6{
   left: -12% !important;
   top: 24% !important;
 }
 #star8{
   left: -16% !important;
   top: 58% !important;
 }
}
@media (min-width: 411px) and (max-width: 567px) {
  #star6{
   left: 6% !important;
   top: 24% !important;
 }
 #star7{
   left: 100% !important;
   top: 2% !important;
 }
  #star8{
   left: 2% !important;
   top: 58% !important;
 }
 #star9{
   left: 96% !important;
   top: 80% !important;
 }
}

@media (min-width: 769px) and (max-width: 1140px) {
 #star17{
   left: 58% !important;
   top: 4% !important;
 }
}


@keyframes blink {
  from {
    filter: brightness(110%);
  }
  to {
    filter: brightness(150%);
  }
}

@keyframes spiral {
  0% {
    transform: rotate(0deg) translateX(0px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
  }
}

.cherry-flavour img{
  max-width: 280px;
}
.peach-flavour img{
    max-width: 290px;
}
.exotic-flavour img{
    max-width: 420px;
}
.orange-flavour img{
    max-width: 400px;
}
.tropical-flavour img{
    max-width: 400px;
}
.multifruit-flavour img{
    max-width: 300px;
}


/*Cherrys*/
@media (min-width: 1100px) and (max-width: 1770px) {
 #cherry1{
   left: 0% !important;
   top: 30% !important;
 }
 #cherry2{
   left: 26% !important;
   top: 11% !important;
 }
 #cherry6{
   left: 67% !important;
   top: 73% !important;
 }
 #cherry3{
   left: 67% !important;
   top: 10% !important;
 }
}
@media (max-width: 1100px){
  #cherry5{
   left: 22% !important;
   top: 80% !important;
  }
}
@media (max-width: 1100px) {
 #cherry1{
   left: 5% !important;
   top: 15% !important;
 }
 #cherry2{
   left: 26% !important;
   top: 11% !important;
 }
 #cherry6{
   left: 67% !important;
   top: 73% !important;
 }
 #cherry3{
   left: 67% !important;
   top: 10% !important;
 }
}
@media (max-width: 1100px){
  #cherry5{
   left: 22% !important;
   top: 80% !important;
  }
}

@media (min-width: 431px) and (max-width: 769px) {
 #cherry1{
   left: 0% !important;
   top: 18% !important;
 }
 #cherry2{
   left: 22% !important;
   top: 1% !important;
 }
 #cherry3{
   left: 67% !important;
   top: 58% !important;
 }
 #cherry4{
   left: 87% !important;
   top: 4% !important;
  }
 #cherry5{
   display: none;
  }
 #cherry6{
   left: 9% !important;
   top: 66% !important;
 }
}
@media (max-width: 430px) {
 #cherry1{
  width: 60px !important;
   left: 0% !important;
   top: 18% !important;
 }
 #cherry2{
  width: 25px !important;
   left: 22% !important;
   top: 1% !important;
 }
 #cherry3{
  width: 25px !important;
   left: 77% !important;
   top: 61% !important;
 }
 #cherry4{
  width: 50px !important;
   left: 87% !important;
   top: 4% !important;
  }
 #cherry5{
   display: none;
  }
 #cherry6{
  width: 50px !important;
   left: 4% !important;
   top: 72% !important;
 }
}



/* Peaches */
@media (min-width: 1331px) and (max-width: 1770px) {
 #peach1{
   left: 2% !important;
   top: 68% !important;
 }
 #peach2{
   left: 20% !important;
   top: 16% !important;
 }
 #peach6{
   left: 25% !important;
   top: 83% !important;
 }
 #peach3{
   left: 58% !important;
   top: 8% !important;
 }
 #peach4{
   left: 90% !important;
   top: 7% !important;
 }
}
@media (min-width: 1101px) and (max-width: 1330px) {
 #peach1{
   left: 2% !important;
   top: 68% !important;
 }
 #peach2{
   left: 20% !important;
   top: 16% !important;
 }
 #peach6{
   left: 25% !important;
   top: 83% !important;
 }
 #peach3{
   left: 63% !important;
   top: 8% !important;
 }
 #peach4{
   left: 90% !important;
   top: 7% !important;
 }
}
@media (max-width: 1100px){
  #peach5{
   display: none;
  }
}

@media (min-width: 770px) and (max-width: 1100px) {
 #peach1{
   left: 0% !important;
   top: 18% !important;
 }
 #peach2{
   display: none;
 }
 #peach3{
   left: 74% !important;
   top: 88% !important;
 }
 #peach4{
   left: 87% !important;
   top: 4% !important;
  }
 #peach5{
   display: none;
  }
 #peach6{
   left: 11% !important;
   top: 66% !important;
 }
}

@media (min-width: 431px) and (max-width: 769px) {
 #peach1{
   left: 0% !important;
   top: 18% !important;
 }
 #peach2{
   display: none;
 }
 #peach3{
   left: 74% !important;
   top: 88% !important;
 }
 #peach4{
   left: 87% !important;
   top: 4% !important;
  }
 #peach5{
   display: none;
  }
 #peach6{
   left: 12% !important;
   top: 67% !important;
 }
}
@media (max-width: 430px) {
 #peach1{
  width: 60px !important;
   left: 0% !important;
   top: 18% !important;
 }
 #peach2{
  display: none;
 }
 #peach3{
  width: 25px !important;
   left: 74% !important;
   top: 88% !important;
 }
 #peach4{
  width: 50px !important;
   left: 87% !important;
   top: 4% !important;
  }
 #peach5{
   display: none;
  }
 #peach6{
  width: 50px !important;
   left: 1% !important;
   top: 70% !important;
 }
}
#peach5{
  display: none;
}



/* Exotics */
@media (max-width: 1770px) {
 #exotic1{
   left: 2% !important;
   top: 21% !important;
 }
 #exotic2{
   left: 24% !important;
   top: 11% !important;
 }
 #exotic6{
   left: 12% !important;
   top: 40% !important;
 }
 #exotic3{
   left: 68% !important;
   top: 18% !important;
 }
 #exotic7{
   left: 68% !important;
   top: 64% !important;
 }
}

@media (max-width: 1100px){
  #exotic5{
   left: 22% !important;
   top: 80% !important;
  }
}

@media (min-width: 770px) and (max-width: 1100px) {
  #exotic1{
    width: 115px !important;
   left: 20% !important;
   top: 21% !important;
 }
 #exotic2{
   left: 24% !important;
   top: 6% !important;
 }
 #exotic4{
   left: 80% !important;
   top: 2% !important;
 }
 #exotic5{
  width: 65px !important;
   left: 22% !important;
   top: 65% !important;
}
#exotic7{
  width: 100px !important;
  left: 66% !important;
  top: 73% !important;
}
 #exotic6{
   display: none;
 }
 #exotic3{
   display: none;
 }
}

@media (min-width: 431px) and (max-width: 769px) {
 #exotic1{
    width: 115px !important;
   left: 13% !important;
   top: 21% !important;
 }
 #exotic2{
   left: 17% !important;
   top: 6% !important;
 }
 #exotic4{
   left: 80% !important;
   top: 2% !important;
 }
 #exotic5{
  width: 65px !important;
   left: 14% !important;
   top: 68% !important;
}
#exotic7{
  width: 100px !important;
  left: 66% !important;
  top: 75% !important;
}
 #exotic6{
   display: none;
 }
 #exotic3{
   display: none;
 }
}
@media (max-width: 430px) {
 #exotic1{
    width: 85px !important;
   left: 13% !important;
   top: 21% !important;
 }
 #exotic2{
   left: 17% !important;
   top: 6% !important;
 }
 #exotic4{
   left: 80% !important;
   top: 2% !important;
 }
 #exotic5{
  width: 65px !important;
   left: 14% !important;
   top: 70% !important;
}
#exotic7{
  width: 100px !important;
  left: 66% !important;
  top: 75% !important;
}
 #exotic6{
   display: none;
 }
 #exotic3{
   display: none;
 }

}
@media (max-width: 352px) {
 #exotic5{
    width: 65px !important;
    left: 11% !important;
    top: 76% !important;
  }
  #exotic7{
    width: 100px !important;
    left: 68% !important;
    top: 78% !important;
  }
}


/* Lions */
@media (min-width: 1101px) and (max-width: 1820px) {
  #lion3{
   left: 74% !important;
   top: 38% !important;
 }
}
@media (min-width: 1271px) and (max-width: 1520px){
  #lion1{
  width: 120px !important;
   left: 3% !important;
   top: 21% !important;
 }
 #lion2{
   width: 120px !important;
   left: 24% !important;
   top: 59% !important;
 }
 #lion3{
   left: 71% !important;
   top: 38% !important;
 }
}
@media (min-width: 1101px) and (max-width: 1269px){
  #lion1{
  width: 120px !important;
   left: 1% !important;
   top: 21% !important;
 }
 #lion2{
   width: 120px !important;
   left: 21% !important;
   top: 59% !important;
 }
 #lion3{
   left: 65% !important;
   top: 38% !important;
 }
}

@media (min-width: 770px) and (max-width: 1100px) {
 #lion1{
  width: 130px !important;
   left: 8% !important;
   top: 3% !important;
 }
 #lion2{
   width: 130px !important;
   left: 74% !important;
   top: 21% !important;
 }
 #lion3{
   left: 22% !important;
   top: 69% !important;
 }
 #lion4 {
   left: 72% !important;
   top: 61% !important;
 }
 
}

@media (min-width: 431px) and (max-width: 769px) {
 #lion1{
  width: 100px !important;
   left: 8% !important;
   top: 3% !important;
 }
 #lion2{
   width: 100px !important;
   left: 74% !important;
   top: 21% !important;
 }
 #lion3{
  width: 70px !important;
   left: 15% !important;
   top: 73% !important;
 }
 #lion4 {
  width: 90px !important;
   left: 77% !important;
   top: 67% !important;
 }
}
@media (max-width: 430px) {
 #lion1{
  width: 100px !important;
   left: 2% !important;
   top: 3% !important;
 }
 #lion2{
   width: 100px !important;
   left: 74% !important;
   top: 21% !important;
 }
 #lion3{
  width: 70px !important;
   left: 15% !important;
   top: 73% !important;
 }
 #lion4 {
  width: 80px !important;
   left: 77% !important;
   top: 67% !important;
 }
}
@media (max-width: 340px) {
 #lion1{
  width: 100px !important;
   left: 0% !important;
   top: 3% !important;
 }
 #lion3{
  width: 70px !important;
   left: 15% !important;
   top: 76% !important;
 }
 #lion4 {
  width: 80px !important;
   left: 77% !important;
   top: 72% !important;
 }
}

/* Tropicals */

@media (min-width: 1101px) and (max-width: 1710px) {
  #tropical1{
   left: 1% !important;
   top: 5% !important;
 }
}

@media (min-width: 550px) and (max-width: 1100px) {
 #tropical1{
   left: 4% !important;
   top: 18% !important;
 }
 #tropical2{
   left: 83% !important;
   top: 2% !important;
 }
 #tropical3{
   left: 8% !important;
   top: 61% !important;
 }
 #tropical4 {
   left: 81% !important;
   top: 70% !important;
 }
 #tropical5 {
   display: none !important;
 }
}
@media (max-width: 549px){
  #tropical1{
    width: 75px !important;
   left: 4% !important;
   top: 18% !important;
 }
 #tropical2{
   width: 75px !important;
   left: 83% !important;
   top: 2% !important;
 }
  #tropical3{
     width: 70px !important;
   left: 2% !important;
   top: 61% !important;
 }
 #tropical4 {
   width: 65px !important;
   left: 81% !important;
   top: 70% !important;
 }
 #tropical5 {
   display: none !important;
 }
}


/* Multifruits */
@media (min-width: 1420px) and (max-width: 1773px){
  #multifruit4{
    left: 73% !important;
    top: 38% !important;
  }
}
@media (min-width: 1101px) and (max-width: 1421px){
  #multifruit4{
    left: 69% !important;
    top: 52% !important;
  }
}

@media (min-width: 550px) and (max-width: 1100px) {
 #multifruit1{
   left: 4% !important;
   top: 18% !important;
 }
 #multifruit2{
   left: 83% !important;
   top: 2% !important;
 }
 #multifruit3{
   left: 11% !important;
   top: 70% !important;
 }
 #multifruit4 {
   left: 81% !important;
   top: 61% !important;
 }
 #multifruit5 {
   display: none !important;
 }
}
@media (max-width: 549px){
  #multifruit1{
    width: 75px !important;
   left: 4% !important;
   top: 18% !important;
 }
 #multifruit2{
   width: 75px !important;
   left: 83% !important;
   top: 2% !important;
 }
  #multifruit3{
     width: 70px !important;
   left: 2% !important;
   top: 70% !important;
 }
 #multifruit4 {
   width: 65px !important;
   left: 81% !important;
   top: 58% !important;
 }
 #multifruit5 {
   display: none !important;
 }
}

@media (max-width: 344px){
  #multifruit3{
     width: 70px !important;
   left: 0% !important;
   top: 74% !important;
 }
 #multifruit4 {
   width: 65px !important;
   left: 81% !important;
   top: 60% !important;
 }
}



.one{
  margin: 2%;
}

.cherry-flavour:hover img{
    bottom: -10px !important;
    transition: bottom 0.4s ease;
}
.peach-flavour:hover img{
    bottom: -30px !important;
    transition: bottom 0.4s ease;
}
.exotic-flavour:hover img{
    bottom: -50px !important;
    transition: bottom 0.4s ease;
}
.orange-flavour:hover img{
    bottom: -50px !important;
    transition: bottom 0.4s ease;
}
.tropical-flavour:hover img{
    bottom: -20px !important;
    transition: bottom 0.4s ease;
}
.multifruit-flavour:hover img{
    bottom: -90px !important;
    transition: bottom 0.4s ease;
}

@media (max-width: 551px) {
  .cherry-flavour:hover img{
    bottom: -80px !important;
    transition: bottom 0.4s ease;
  }
  .peach-flavour:hover img{
      bottom: -100px !important;
      transition: bottom 0.4s ease;
  }
  .exotic-flavour:hover img{
      bottom: -60px !important;
      transition: bottom 0.4s ease;
  }
  .orange-flavour:hover img{
      bottom: -100px !important;
      transition: bottom 0.4s ease;
  }
  .tropical-flavour:hover img{
      bottom: -80px !important;
      transition: bottom 0.4s ease;
  }
  .multifruit-flavour:hover img{
      bottom: -140px !important;
      transition: bottom 0.4s ease;
  }
}

.cherry-flavour, .peach-flavour, .exotic-flavour, .orange-flavour, .tropical-flavour, .multifruit-flavour{
  border-radius: 0 0 20vh 20vh; padding-top: 30px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; position: relative; width: 100%; height: 450px; 
}

.navbar-bg {
  height: 600px !important;
}

@media (max-width: 768px) {
  .navbar-bg {
    height: 400px !important;
  }

  .navbar-bg .container h1 {
    font-size: 1.5rem;
  }

  .navbar-bg .container p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .navbar-bg .container img {
    height: 25px;
  }
}

@media (max-width: 576px) {
  .navbar-bg {
    height: 350px !important;
  }

  .navbar-bg .container h1 {
    font-size: 1.2rem;
  }

  .navbar-bg .container p {
    font-size: 0.8rem;
  }
}

.navbar {
  background-color: transparent;
  padding: 15px 30px !important;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.gradient-bg {
  background: linear-gradient(to bottom, #2D8790 0%, rgba(255,255,255,0) 100%);
}

.icon-transition {
  transition: opacity 0.15s ease;
}

@media (max-width: 991px) {
  .navbar {
    padding: 15px 30px !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: auto !important;
    padding: 10px 10px !important;
    z-index: 1000;
  }
}

h1, h2, h3 {
  font-family: "Dela Gothic One", sans-serif;
  color: white;
}

@media (max-width: 991px) {
  .big-nav {
    display: none !important;
  }
}

.mobile-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#navbar {
  transition: height 0.4s ease, background 0.6s ease;
}
