@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: optional;
}

/* CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* colors */
:root {
  --primary-color: #ffd700;
  --secondary-color: #eed38f;
  --tertiary-color: #cd7f32;
  --quaternary-color: #b78423;
  --quinary-color: #ceb36e;
  --regular1-color: #f5f2e5;
  --regular2-color: #101419;
  --regular3-color: #a6a18d;

  --text-shadow-gold: 0px 0px 5px rgba(251, 223, 5, 0.5);
  --text-shadow-dark: 2px 2px 5px rgba(0, 0, 0, 0.5);
  --text-shadow-dark2: 0px 0px 4px rgba(0, 0, 0, 0.4);

  --gold-border: #fdc62b;
  --expensive-gold: #ca9b0a;
}

.colorPri {
  color: var(--primary-color);
}
.colorSec {
  color: var(--secondary-color);
  text-shadow: var(--text-shadow-dark2);
}
.colorTer {
  color: var(--tertiary-color);
}
.colorTerShadow {
  color: var(--tertiary-color);
  text-shadow: var(--text-shadow-gold);
}
.colorQuat {
  color: var(--quaternary-color);
}
.colorQuatShadow {
  color: var(--quaternary-color);
  text-shadow: var(--text-shadow-dark2);
}
.color5th {
  color: var(--quinary-color);
  text-shadow: var(--text-shadow-dark2);
}
.colorPriShadow {
  color: var(--primary-color);
  text-shadow: var(--text-shadow-gold);
}
.colorRegShadow {
  color: var(--regular1-color);
  text-shadow: var(--text-shadow-dark);
}
.colorRegDarkShadow {
  color: var(--regular2-color);
  text-shadow: var(--text-shadow-dark);
}
.colorReg1 {
  color: var(--regular1-color);
}
.colorReg2 {
  color: var(--regular2-color);
}
.colorReg3 {
  color: var(--regular3-color);
}
/* - colors */

/* backgrounds */
.contentContainer {
  width: 100%;
  background-color: #1d1713;
  border-radius: 7px;
  padding: 20px;
  box-shadow: 0 11px 20px 0 rgba(0, 0, 0, 0.4);
}

.cardContainer {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.bgDarkCard {
  background: #2a1000;
}

/* - backgrounds */

/* Shadows */

.boxShadow2 {
  box-shadow: 0 11px 20px 0 rgba(0, 0, 0, 0.4);
}
/* - Shadows */

/* borderRadius */
.borderSolid {
  border: 2px solid #ffdc3e;
}
/* - borderRadius */

/* Headings */
.heading1 {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}
.heading2 {
  font-family: "Poppins";
  font-size: 32px;
  font-weight: 600;
  line-height: 50px;
  padding: 5px 0px;
}
.heading3 {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  padding: 5px 0px;
}
.heading4 {
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  padding: 5px 0px;
}
@media screen and (max-width: 1024px) {
  .heading1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 50px;
    padding: 5px 0px;
  }
  .heading2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 45px;
    padding: 5px 0px;
  }
  .heading3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    padding: 5px 0px;
  }
  .heading4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
    padding: 5px 0px;
  }
}
@media (max-width: 767px) {
  .heading1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    padding: 5px 0px;
  }
  .heading2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
    padding: 5px 0px;
  }
  .heading3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    padding: 5px 0px;
  }
  .heading4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    padding: 5px 0px;
  }
}
/* - Headings */

/* Desriptions */
.descriptions {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
  word-spacing: 0.1em;
}
.footerdescriptions {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0;
  word-spacing: 0;
}
.metadescriptions {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.02em;
  word-spacing: 0.1em;
}

@media screen and (max-width: 1024px) {
  .descriptions {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  .footerdescriptions {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }
  .metadescriptions {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .descriptions {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  .footerdescriptions {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
  .metadescriptions {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
  }
}
/* - Desriptions */

/* paddings */

.p20 {
  padding: 20px !important;
}

.p80 {
  padding: 80px !important;
}

.ptb10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.ptb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.plr20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.plr100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

@media (max-width: 767px) {
  .p20 {
    padding: 10px !important;
  }
  .p80 {
    padding: 10px !important;
  }

  .ptb20 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .plr20 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .plr100 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
/* - paddings */

/* margins */

.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mtb20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mlr10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

@media (max-width: 767px) {
  .mtb20 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}

/* - margins */

/* Footer */
.special-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 1440px;
  max-width: 100%;
}
/* Footer */

/* Anchor Tag */
a {
  text-decoration: none;
}

a.anchorLink {
  color: #fff700;
  position: relative;
  font-weight: 600;
}

a.anchorLink::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #fff700;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

a.anchorLink:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}
/* - Anchor Tag */

/* Unordered, Ordered list style */
ul,
ol {
  list-style-type: none;
  list-style: none;
}
/* - Unordered, Ordered  list style */

ul {
  padding-left: 40px;
  padding-right: 40px;
  list-style-type: none;
}

@media (max-width: 767px) {
  ul {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* reviews carousel icon */
.reviewsIcon {
  font-size: 60px;
  display: relative;
  margin-top: -80px;
  text-shadow: 0px 2px 30px #000000;
}

@media (max-width: 767px) {
  .reviewsIcon {
    font-size: 40px;
    display: relative;
    margin-top: -30px;
    text-shadow: 0px 2px 30px #000000;
  }
}

/* - reviews carousel icon */

/* Animation for Rolled Effect */

.rolled {
  width: 100%; /* Final width after unrolling */
  height: auto;
  overflow: hidden;
  transform-origin: left; /* Set the transform origin to the left for rolling out effect */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@keyframes rollOut {
  0% {
    transform: scaleX(0) rotate(360deg); /* Compressed and rotated */
    opacity: 0.3;
  }
  20% {
    transform: scaleX(0.2) rotate(270deg); /* Rolling out */
    opacity: 0.5;
  }
  40% {
    transform: scaleX(0.4) rotate(180deg); /* Further rolling */
    opacity: 0.7;
  }
  60% {
    transform: scaleX(0.6) rotate(90deg); /* Almost unrolled */
    opacity: 0.8;
  }
  80% {
    transform: scaleX(0.8) rotate(45deg); /* Near final state */
    opacity: 0.9;
  }
  100% {
    transform: scaleX(1) rotate(0deg); /* Fully unrolled */
    opacity: 1;
  }
}

.roll-animate {
  animation: rollOut 0.5s ease-out forwards;
}

/* - Animation for Rolled Effect */

/* sections */

/* dual compartment stacked layout*/

.dualCompartmentContainerStackedLayoutContents {
  padding: 20px !important;
  max-width: 100%;
}
@media (max-width: 767px) {
  .dualCompartmentContainerStackedLayoutContents {
    padding: 0px;
  }
}
/* dual compartment */

.dualCompartment {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
}

.dualCompartmentAdjustable {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
}
.dualCompartment > div {
  width: 50%;
}

.dualCompartmentNoWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.dualCompartmentNoWrap > :nth-child(1) {
  width: 50%;
}
.dualCompartmentNoWrap > :nth-child(2) {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .dualCompartment {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .dualCompartment > div {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .dualCompartment > div {
    width: 95%;
  }
  .dualCompartmentAdjustable {
    flex-wrap: wrap;
  }
}

/* dual compartment */

/* stacked compartment */

.compartmentStackedLayout {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  flex-direction: column;
  width: 100%;
}

.compartmentStackedLayoutLeft {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  text-align: left;
  flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .compartmentStackedLayoutLeft {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
  }
}

/* stacked compartment */

/* single compartment */

.singleCompartmentContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  position: relative;
}

/* Minimum Height */
.minHeight80 {
  min-height: 80px !important;
}

.width100per {
  width: 100%;
}
/* flexbox compartment */
.flexboxGridTop {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap; /* Allows the contents to wrap */
  width: 100%; /* Takes the full width of the container */
  box-sizing: border-box;
  gap: 20px;
}
.flexboxGridTop .flexboxGridFooter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 300px;
}
.flexboxGridTop .flexboxGridFooter:hover {
  transform: scale(1.02);
  z-index: 5;
}

@media (max-width: 767px) {
  .flexboxGridTop .flexboxGridFooter {
    flex-direction: column;
    width: 100%;
  }
}
/* Pop Out Animation */
.popOut {
  opacity: 0;
  transform: scale(0.5); /* Start much smaller for a stronger effect */
  transition: opacity 1s ease, transform 1s ease; /* Increase duration */
}

.popIn {
  opacity: 1;
  transform: scale(1); /* Scale to normal size */
}
/* - Pop Out Animation */

/* Slide Animation */

.slideAnimation {
  opacity: 0;
  transform: translateX(300px); /* Start off-screen */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slideIn {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

.slideAnimation2 {
  opacity: 0;
  transform: translateX(350px); /* Start off-screen */
  transition: opacity 1s ease, transform 1s ease;
}

.slideIn2 {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

.slideAnimation3 {
  opacity: 0;
  transform: translateX(400px); /* Start off-screen */
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.slideIn3 {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

.slideAnimation4 {
  opacity: 0;
  transform: translateX(450px); /* Start off-screen */
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.slideIn4 {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

.slideAnimation5 {
  opacity: 0;
  transform: translateX(500px); /* Start off-screen */
  transition: opacity 2.2s ease, transform 2.2s ease;
}

.slideIn5 {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

/*  */

.slideFromLeft {
  opacity: 0;
  transform: translateX(-300px); /* Start off-screen to the left */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slideInFromLeft {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

.slideFromLeft2 {
  opacity: 0;
  transform: translateX(-400px); /* Start off-screen to the left */
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.slideInFromLeft2 {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

.slideFromLeft3 {
  opacity: 0;
  transform: translateX(-500px); /* Start off-screen to the left */
  transition: opacity 2s ease, transform 2s ease;
}

.slideInFromLeft3 {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

.slideFromLeft4 {
  opacity: 0;
  transform: translateX(-600px); /* Start off-screen to the left */
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.slideInFromLeft4 {
  opacity: 1;
  transform: translateX(0); /* Slide into place */
}

/* - Slide Animation */

/* Floating Effect */
.floatingEffect {
  position: relative;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.5s ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floatingEffect2 {
  position: relative;
  animation: float2 6s ease-in-out infinite;
  transition: transform 0.75s ease-in-out;
}

@keyframes float2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floatingEffect3 {
  position: relative;
  animation: float3 2s ease-in-out infinite;
  transition: transform 0.25s ease-in-out;
}

@keyframes float3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Floating Effect */

/* Image Size */

.imageBulletIcon {
  width: 20px;
  height: auto;
}

.img_fit {
  width: 100%;
  height: auto;
}

.img_fit2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.imagePromotion1 {
  display: flex;
  width: 100%;
  height: auto;
  max-width: 410px;
  align-items: center;
  justify-content: center;
}

.positioningCardDescriptionHeading {
  text-align: center;
}

.positioningCardDescriptionHeadingLeft {
  text-align: left !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (max-width: 767px) {
  .positioningCardDescriptionHeadingLeft {
    padding: 0px 10px !important;
  }
}

/* footer */

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin: 0px;

  background: #2a1001;
  box-shadow: 0 11px 20px 0 rgba(0, 0, 0, 0.4);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

@media (max-width: 768px) {
  footer {
    padding: 10px 10px;
  }
}

/* footer */

/* faq */

.faq-list {
  list-style: none;
  padding: 0;
  width: 90%;
}

.faq-item {
  border: 2px solid #f8ecbe;
}

.question {
  display: flex;
  justify-content: left;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  color: #f8ecbe;
}

.question h4 {
  margin: 0;
  font-size: 18px;
}

.plus-icon {
  font-size: 40px;
  color: #f8ecbe;
}

.answer {
  padding: 15px;
  background-color: #2a1001;
  color: var(--regular1-color);
  display: none;
}

/* faq */

/* image slider */

.slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin: auto;
  position: relative;
  padding-left: 10%;
  padding-right: 10%;
}

.slides {
  display: flex;
  transition: transform 1s ease;
  gap: 85px;
}

.slides img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .slides {
    gap: 40px;
  }
}
/* image slider */

/* Image Carousel */

.imageCarousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.imageCarousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 0px 0px 20px 0px;
}

.imageCarousel-slide {
  width: 1332px;
  height: 410px;
  margin: 10px;
}

.imageCarousel-slide img {
  width: 1332px;
  height: 410px;
  object-fit: cover;
  border-radius: 10px !important;
  box-shadow: 0 0px 8px rgba(255, 215, 0, 0.3);
}

.imageCarousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  font-size: 2rem;
}

.imageCarousel-button.left {
  left: 10px;
}

.imageCarousel-button.right {
  right: 10px;
}

.imageCarousel-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: 2;
}

.imageCarousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 5px;
  cursor: pointer;
}

.imageCarousel-dot.active {
  background-color: white;
}

@media (max-width: 1440px) {
  .imageCarousel-slide {
    width: 1080px;
    height: auto;
    margin: 10px;
  }

  .imageCarousel-slide img {
    width: 1080px;
    height: auto;
  }
  .imageCarousel-button {
    font-size: 1.5rem;
  }
}

@media (max-width: 1080px) {
  .imageCarousel-slide {
    width: 750px;
    height: auto;
    margin: 10px;
  }

  .imageCarousel-slide img {
    width: 750px;
    height: auto;
  }
  .imageCarousel-button {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  /* .imageCarousel {
    display: none;
  } */
  .imageCarousel-slide {
    width: 450px;
    height: auto;
    margin: 10px;
  }

  .imageCarousel-slide img {
    width: 450px;
    height: auto;
  }
  .imageCarousel-button {
    font-size: 1rem;
  }
}
/* - Image Carousel */

/* bonus button */
.special-button {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}
.special-button:hover {
  transform: scale(1.05);
}

.bonusButton {
  border: 2px solid #eec668;
  color: var(--regular2-color);
  background: linear-gradient(to top, #b8860b 0%, #ffd700 50%, #fffacd 100%);
  box-shadow: 0px 0px 3px 2px #b58c23, 0px 0px 2px 2px #ffd700 inset;

  border-radius: 17px;
  font-family: "Poppins";
  font-weight: 600 !important;
  text-shadow: 0px 0px 5px #ac8b38;
  padding: 18px 35px;
  font-size: 22px !important;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.bonusButton:hover {
  background: linear-gradient(to top, #ffd700 0%, #fffacd 50%, #ffebcd 100%);
  box-shadow: 0px 0px 8px 4px #ffd700, 0px 0px 5px 3px #fffacd inset;
  border-color: #ffd914;
  transform: translateY(-3px);
  text-shadow: 0px 0px 8px #ffd700;
}

/* Pop-In Effect */
.pop-in {
  animation: popInEffect 1s ease forwards;
}

@keyframes popInEffect {
  0% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* - bonus button */
/* gap */
.guttertop {
  margin-top: 1rem;
}

.font-bold {
  font-weight: bold;
  font-size: 1.2rem;
}

.font-italic {
  color: #fff;
}
.textAlignLeft {
  text-align: left;
}
