@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("/fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
}

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

body {
  /*background-color: #FAFAFA;*/
  max-width: 1440px;
  margin: 0 auto;
  
  /*CHANGES*/
  background: linear-gradient(to bottom, #e85300, #ff7f00);
}
.fontBold {
  font-weight: 600 !important;
}
.colorPri {
  /*color: #9b7f38;*/
  
  /*CHANGES*/
  color: #fff;
}

.colorSec {
  /*color: #715003;  */
  
  /*CHANGES*/
  color: #fff;
}

.colorTer {
  /*color: #4B3B0A;*/
  
  /*CHANGES*/
  color: #fff;
}

.color4th {
  color: #ffe100 !important;
}

a {
  text-decoration: none;
}

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

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

.special-header {
  position: fixed; /* Fixes the header at the top */
  top: 0; /* Aligns the header at the top */
  left: 0; /* Aligns the header to the left edge */
  width: 100%; /* Makes sure the header spans the full width */
  z-index: 1000; /* Ensures it stays above other content */
  /* Add any additional styling as needed */
}

/* entire background */
.bg {
  max-width: 1440px;
  margin: 0 auto;
}

.bgColorBlog {
  /*background: radial-gradient(circle, #f0f0f0, #f4f4f4 ); */
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  
  /*CHANGES*/
  background: #1d1713;
}


/* navigation links */

.navigation {  
  animation-duration: 0.5s;
  padding-top: 20px;
  padding-right: 40px;
  padding-bottom: 20px;
  padding-left: 40px;
  /*background-color: #F6DB96;*/
  /*background-image: none;  */
  transition-duration: 0.5s;  
  display: flex;  
  vertical-align: middle;  
  justify-content: center;
  z-index: 100000; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); 
  
  /* changes */
  background: linear-gradient(180deg, #ed6600 0, #ffb853 100%);
}


ul.colibri-menu {  
  display: flex;
  align-items: center;
  justify-content: center;
  
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  
  list-style: none;
  width: 100%;
  margin: 0px;
  text-align: center;
  min-height: 40px;
  padding: 5px 5px;
}
ul.colibri-menu li:hover { 
  transform: scale(1.1);
}

li a {
  text-decoration: none;
  font-family: 'Poppins';
  color: var(--regular1-color);
  font-weight: 600;
  line-height: 30px;
  margin: 0px; 
  /*CHANGES*/
  /*font-size: 14px;*/
  /*padding: 0px 10px; */
}

li a:hover {
  transform: scale(1.1);
}

.logo {  
  max-width: 180px;
  min-height: auto;
  display: inline-block;
  width: auto;
}

.alignment { 
  display: flex;  
  vertical-align: middle;  
  align-items: center;
  justify-content: center;
  margin: 0px 20px;
}

.alignment2 { 
  display: flex;  
  vertical-align: middle;  
  align-items: center;
  justify-content: center;
  margin: 0px 20px;
}

.topnav a {
  transition: transform 0.8s ease-in-out;
  
  /*CHANGES*/
  padding: 0 10px;
}

.topnav a.active {
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: underline; 
  text-decoration-thickness: 2px; 
  text-decoration-style: solid; /* Style of the underline, can also be solid, dashed, dotted */
  text-underline-offset: 8px; /* Distance of the underline from the text */
}

@media screen and (max-width: 1080px) {  
  .navigation {
    display: block;
  }

  .alignment { 
    margin: 0px;
  }

}

/* - navigation links */


.mtb20 {
  margin: 20px 0px !important;
}
.mtb10 {
  margin: 10px 0px !important;
}
.mt110 {
  margin-top: 110px !important;
}
.mt20 {
  margin-top: 20px;
}
.mt10 {
  margin-top: 10px;
}
.ptb40 {
  padding: 40px 0px;
}


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

.ptb80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.pb40 {
  padding-bottom: 40px;
}

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

.mb40 {
  margin-bottom: 40px;
}

@media screen and (max-width: 1080px) {  
.mt110 {
  margin-top: 160px !important;
}

}


/* sections */

/* stacked compartment */

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

.compartmentStackedLayoutLeft {
  display: flex;
  justify-content: left;
  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 */

/* dual compartment */

.dualCompartment {
  display: flex;
  flex-wrap: nowrap;
  padding: 0px 0px;
  margin: 0px;

}

/* single compartment */

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

.singleCompartmentContainerContents {
  display: flex;
  justify-content: center;
  flex-direction: column; 
  max-width: 100%;
  width: 1440px;
  height: auto;
  text-align: center;
}

.singleCompartmentContentsFullWidth {
  display: flex;
  max-width: 100%;
  width: 1440px;
  height: auto;

}

@media (max-width: 767px) { 
  .alignment2 { 
    padding-left: 0px;
  }
  /* dual compartment */

  .dualCompartment {
    flex-direction: column;
  }

  .singleCompartmentContainerContents {
    padding: 0px;
  }
}



/* dual compartment stacked layout*/


.dualCompartmentContainerStackedLayoutContents {
  padding: 20px !important;
  max-width: 100%;
}

.dualCompartmentStackedLayout {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
  padding: 0px 0px;
  margin: 0px;
  text-align: center;
  box-sizing: border-box;


  width: 100%;
}


/* Trio Compartment */

.TriCompartment {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;

}

.TriCompartment > div {
  width: 33.3%;
}

@media screen and (max-width: 1024px) {
  .TriCompartment {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) { 
  .TriCompartment > div {
    max-width: 300px;
    width: 95%;
  }
}

/* Trio Compartment */



/* Card Grid Container */
/* Grid Container */
.dualCompartmentContainerCardGrid {
  display: flex; /* Default is row, so flex-direction: row; is implied */
  justify-content: center; /* Center items horizontally within the child container */
  align-items: center; /* Center items vertically within the child container */
  gap: 10px; /* Add spacing between items */
  flex-wrap: nowrap; /* Prevent items from wrapping to the next line */
  box-sizing: border-box;
}

/* Card Styles */
.dualCompartmentContainerCardGridStyles {
  width: 100%; /* Full width of the parent container */
  max-width: 535px; /* Max width for each card */
  text-align: center; /* Center text inside cards */
  padding: 5px;
  height: auto;
  min-height: unset;
  background-color: rgba(32, 32, 32, 0.7);
}

.dualCompartmentContainerCardGridStyles2 {
  width: 100%; /* Full width of the parent container */
  max-width: 535px; /* Max width for each card */
  text-align: center; /* Center text inside cards */
  border: solid;
  border: 0px;
  border-radius: 10px;
  padding: 0px 0px 20px 0px;
  height: auto;
  min-height: unset;
  background-color: rgba(0, 0, 0, 0.9);

  box-shadow: 0px 1px 3px 2px rgba(189, 189, 189, 0.4);
}

.CTACardGrid {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center content horizontally within the container */
  align-items: center; /* Center content vertically within the container */
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 45px 20px;
  height: auto;
  min-height: unset;
}

.CTACard {
  display: flex;
  flex-direction: row;
  justify-content: center; /* Center content horizontally within the container */
  flex-wrap: nowrap;
  align-items: center; /* Center content vertically within the container */
  text-align: center;
  width: 100%;
  max-width: 1100px;
  padding: 45px 20px;
  height: auto;
  min-height: unset;
  gap: 20px;

}

.CTACardGridContentsWidth {
  max-width: 145px !important;
}

.CTACardContentsWidth {
  width: 1500px;
  max-width: 100% !important;
}

.footerpromotions {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content horizontally within the container */
  flex-wrap: nowrap;
  align-items: center; /* Center content vertically within the container */
  text-align: center;
  width: 100%;
  max-width: 1100px;
  padding: 40px;
  height: auto;
  min-height: unset;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.4);

}
.positioningCardDescriptionHeading {
  text-align: center;
}

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

@media (max-width: 767px) { 
  .CTACard {
    flex-direction: column;
  }
  .CTACardContentsWidth {
    width: 350px;
    max-width: 100% !important;
  }
  /* dual compartment stacked layout*/

  .dualCompartmentContainerStackedLayoutContents {
    padding: 0px;
  }


  /* Description position */
  .positioningCardDescriptionHeadingLeft {
    padding: 0px 10px !important;
  }
}



/* logo carousel */


.logo-carousel2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Space between images */
}

.logo-carousel2 img {
  max-width: 40px;
  height: auto;
}


@media (max-width: 768px) {
  .logo-carousel2 {
    justify-content: center;
    padding: 0px;
  }

  .logo-carousel2 img {
    max-width: 35px;
    height: auto;
  }

}






/* headings */

.heading1 {
  font-family: 'Poppins';
  font-size: 40px;
  font-weight: 600;
  line-height: 64px;
  padding: 5px 0px;
}
.heading2 {
  font-family: 'Poppins';
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  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: 40px;
  padding: 5px 0px;
}

/* contents description */
.descriptions{
  font-family: 'Poppins';
  /*color: rgb(13, 13, 13);*/
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding: 5px 0px;
  
  /*CHANGES*/
  color: #fff;
}
.descriptions2 {
  font-family: 'Poppins';
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0px;

}

.footerdescriptions2 {
  font-family: 'Poppins';
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  padding: 5px 0px;
  text-decoration: none;
}

.metadescriptions {
  font-family: 'Poppins';
  color: rgb(199, 191, 191);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0px;
}

.footermetadescriptions {
  font-family: 'Poppins';
  color: #9b7f38;
  
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0px;
}

@media screen and (max-width: 1024px) { 
  /* headings */
  .heading1 {
    font-family: 'Poppins';
    font-size: 32px;
    font-weight: 600;
    line-height: 56px;
    padding: 5px 0px;
  }
  .heading2 {
    font-family: 'Poppins';
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    padding: 5px 0px;
  }
  .heading3 {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding: 5px 0px;
  }
  .heading4 {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    padding: 5px 0px;
  }

/* contents description */
.descriptions{
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 5px 0px;
}


.descriptions2 {
  font-family: 'Poppins';
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0px;

}
.footerdescriptions2 {
  font-family: 'Poppins';
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding: 5px 0px;
}
.metadescriptions {
  font-family: 'Poppins';
  color: rgb(199, 191, 191);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0px;
}
.footermetadescriptions {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0px;
}
}

@media (max-width: 767px) { 
  /* headings */
  .heading1 {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    padding: 5px 0px;
  }
  .heading2 {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    padding: 5px 0px;
  }
  .heading3 {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    padding: 5px 0px;
  }

  .heading4 {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    padding: 5px 0px;
  }

  /* contents description */
  .descriptions{
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 5px 0px;
  }

.descriptions2 {
  font-family: 'Poppins';
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0px;

}
.footerdescriptions2 {
  font-family: 'Poppins';
  color: white;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding: 5px 0px;
}
  .metadescriptions {
    font-family: 'Poppins';
    color: rgb(199, 191, 191);
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 0px;
  }
}

.imageCardGridBlogsSize {
  width: 100% !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.img_fit {
  width: 100%;
  height: auto;
}
.imageBlogSize {
  display: flex;
  width: 100%;
}

/* CTA Button */
.ctaButton {
  /*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-weight: 600;*/
  /*text-shadow: 0px 0px 5px #ac8b38;*/
  /*padding: 8px 24px;*/
  /*margin: 10px;*/
  /*cursor: pointer;*/
  /*text-decoration: none;*/
  /*transition: all 0.3s ease-in-out;*/
  
  /* CHANGES */
  background: linear-gradient(180deg, #fc0a0d 0%, #d80000 41.83%, #ed6600 100%);
  color: #fff;
  border-radius: 17px;
  font-weight: 600;
  text-shadow: 0px 0px 5px #ac8b38;
  padding: 10px 30px;  
  margin: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;

  /* border: 2px solid transparent;  */
  background-clip: padding-box; 
 
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

.ctaButton: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;*/
  /*text-shadow: 0px 0px 8px #ffd700;*/
  /*border-color: #ffd914;*/
  transform: translateY(-3px);
  
  /*CHANGES*/
  box-shadow: 0px 6px 15px 4px rgba(255, 60, 0, 0.8), 0px 0px 18px 6px rgba(255, 0, 0, 0.6) inset;
  border-color: #ed6600;
  text-shadow: 0px 0px 8px #ed6600;
}

.ctaButtonMes {
  margin: 0;
  padding: 0;  
  text-decoration: none;  
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  
  text-decoration: none;
  list-style: none;
}

/* blog button */

.blogButton {

  border: none;
  color: #4B3B0A;

  font-weight: 600;
  text-shadow: 0px 0px 2px #ac8b38;
  cursor: pointer;
  text-decoration: none;
}

/* blog button */

/* box shadow */

.boxShadow1 {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  transition: transform 1s ease;

  border-radius: 10px;
}
.boxShadow1:hover {
  transform: scale(1.025);
}

/* box shadow */

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  padding: 20px 0px;
  margin: 0px;
  /*background-color: #F6DB96;*/
  
  /*CHANGES*/
  margin-top: 20px;
  background: rgba(0, 0, 0, .81);
}

.solidDivider {
  margin: 20px 0px;
  height: 2px;
  width: 100%;
  background-color: #9b7f38 !important;  
}

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

.singleCompartmentContainer2 {
  display: flex;
  justify-content: space-between; /* Space between elements */
  flex-wrap: nowrap; /* Prevent wrapping until mobile screen size */
  padding: 10px; /* Add padding around the container */
  width: 100%;
  max-width: 100%;
}

.childElement {
  flex: 1; /* Make each child element take equal space */
  text-align: center;
  margin: 5px; /* Space between child elements */
  padding: 10px; /* Add padding inside each element */
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.childElement2 {
  display: flex;
  flex: 1; /* Make each child element take equal space */
  text-align: center; 
  margin: 5px; /* Space between child elements */
  padding: 10px; /* Add padding inside each element */
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  flex-wrap: wrap;

  flex-direction: column; /* Stack items vertically */
}

@media (max-width: 768px) {
  .singleCompartmentContainer2 {
    flex-wrap: wrap; /* Allow wrapping on mobile */
  }

  .childElement {
    flex: 1 1 100%; /* Each element takes full width on mobile */
    margin-bottom: 10px; /* Add space between wrapped items */
    text-align: center; /* Align text to the left */
  }
}



.fixed-button {
  position: fixed;
  bottom: 1.6vh;
  left: 30%;
  transform: translateX(-50%);
  padding: 20px 45px;

  font-family: 'Poppins';
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;

  /*background: linear-gradient(to top, #b8860b 0%, #ffd700 50%, #fffacd 100%);*/
  /*box-shadow: 0px 0px 3px 2px #b8860b, 0px 0px 2px 2px #ffd700 inset;*/
  
  /*color: #4B3B0A;*/
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1000; /* Ensures it's on top of other elements */

  filter: drop-shadow(0 0 10px rgba(255, 223, 0, 1));
  animation: glowAnimation 3s ease-in-out infinite alternate;
  
  
  /*CHANGES*/
  color: #fff;
  background: linear-gradient(180deg, #ed6600, #d80000 58.17%, #fc0a0d);
  box-shadow: 0px 4px 10px 2px rgba(255, 45, 0, 0.6), 0px 0px 12px 4px rgba(255, 0, 0, 0.5) inset;
}

.fixed-button: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;*/
  /*text-shadow: 0px 0px 8px #ffd700;*/
  
  /*CHANGES*/
  box-shadow: 0px 6px 15px 4px rgba(255, 60, 0, 0.8), 0px 0px 18px 6px rgba(255, 0, 0, 0.6) inset;
}

/* Animation for the glowing effect */
@keyframes glowAnimation {
  from {
    filter: drop-shadow(0 0 10px rgba(255, 223, 0, 1));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(255, 223, 0, 1));
  }
}



/* faq */

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

.faq-item {
  border: 2px solid #000;
  
  /*CHANGES*/
  /*background: linear-gradient(180deg, #f81279, #d3002c);*/
  background: linear-gradient(180deg, #fc0a0d 0%, #d80000 41.83%, #ed6600 100%);
}

.question {
  display: flex;
  justify-content: left;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  /*color: #000;*/
  
  /*CHANGES*/
  color: #fff;
}

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

.plus-icon {
  font-size: 40px;
  /*color: #000;*/
  
  /*CHANGES*/
  color: #fff;
}

.answer {
  padding: 15px;
  /*background-color: #f8ecbe;*/
  display: none;
  
  /*CHANGES*/
  background: #1d1713;
  border: 1px solid #d80000 ;
}


/* - faq */

.mb10 {
  margin-bottom: 10px;
}



.mb10 {
  margin-bottom: 10px;
}

.ptb100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;

}

.bgColor2 {
  background-color: #1A0F00;
}


/* flex container uneven  */

.singleCompartmentFlexContainerLayout {
  display: flex;
  justify-content: space-between;
  padding: 10px 10%;
  width: 100%;
}


.childElement {
  flex-grow: 1;
  flex-basis: 30%; /* Base width for each element */
}

.childElement:nth-child(1) {
  flex-grow: 1.5;
  flex-basis: 40%; /* First child gets a larger base width */
}


@media (max-width: 768px) {
  .singleCompartmentFlexContainerLayout {
    flex-wrap: wrap; /* Allow wrapping on mobile */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 10px 10px;
  }

  .childElement {
    flex-basis: 100%; /* Make the child take full width */
    text-align: center; /* Center content inside the child */
  }

  .childElement:nth-child(2) {
    flex-basis: auto; /* Override full width for the second child */
    width: 100%; /* Ensure the second child fits its content */
  }
}


/*  */


.dualCompartmentFlexContainerLayoutUneven {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.childElement2 {
  flex-grow: 1;
  flex-basis: 33.3%; 

}
.childElement2:nth-child(2) {
  flex-grow: 1.5;
  flex-basis: 66.6%; /* First child gets a larger base width */
}


@media (max-width: 1024px) {
  .dualCompartmentFlexContainerLayoutUneven {
    flex-wrap: wrap; /* Allow wrapping on mobile */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 10px 10px;
  }

  .childElement2 {
    flex-basis: 100%; /* Make the child take full width */
    text-align: center; /* Center content inside the child */
  }

  .childElement2:nth-child(2) {
    flex-basis: auto; /* Override full width for the second child */
    width: 100%; /* Ensure the second child fits its content */
  }
}


/*  */

/*  */
.dualCompartmentFlexContainerLayoutUnevenOpposite {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.childElement3 {
  flex-grow: 1.5;
  flex-basis: 70%; 

}
.childElement3:nth-child(2) {
  flex-grow: 1;
  flex-basis: 30%; /* First child gets a larger base width */
}


@media (max-width: 1024px) {
  .dualCompartmentFlexContainerLayoutUnevenOpposite {
    flex-wrap: wrap; /* Allow wrapping on mobile */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 10px 10px;
  }

  .childElement3 {
    flex-basis: 100%; /* Make the child take full width */
    text-align: center; /* Center content inside the child */
  }

  .childElement3:nth-child(2) {
    flex-basis: auto; /* Override full width for the second child */
    width: 100%; /* Ensure the second child fits its content */
  }
}
/*  */

/* flex container uneven  */

.img_fit4 {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

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

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


/* 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 #ffd900; 
  color: #010331;
  
  background: linear-gradient(to bottom, #fffacd 0%, #f3ea96 30%, #ffd900 40%, #ceb10c 65%, #b8860b 100%); 
  box-shadow: 0px 0px 10px 0px #a89053, 0px 0px 6px 2px #956d07 inset;
  border-radius: 17px;
  font-weight: 500;
  text-shadow: 0px 0px 2px #392900;
  padding: 18px 35px;
  font-family: 'Poppins';
  font-size: 22px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.bonusButton:hover {
  background: linear-gradient(to right, #A1141B 0%, #D4AF37 100%); /* Reversed gradient: red to gold */
  box-shadow: 0px 0px 5px 3px #D4AF37; /* Brighter gold shadow */
  color: #ffffff;
}


/* 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 */

.bgGradient {
  /*background-color: #f7f7f7;*/
  
  /*CHANGES*/
  background-color: rgb(26, 15, 0);
}

.pl40 {
  padding-left: 40px;
}

.anchorLinks {
  color: #9b7f38; 
  font-weight: 700;
  text-decoration: none;
}

/* TABLE */

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #1a0f00;
  font-family: "Poppins";
}

.table td,
th {
  padding: 1rem 0.1rem;
  border: 1px solid #b58c23;
}

.table th {
  color: #956d07;
}

.table td {
  font-weight: bold;
  opacity: 80%;
  color: #1a0f00;
}

/* blog card alignment */
.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 30px;
}

.grid-item {
   width: 100%;
}

.img-parent-layout {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: auto;
  aspect-ratio: 1440 / 521;
  overflow: hidden;
}

.img-child-layout {
  position: absolute;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.color-pri {
    /*color: #685427;*/
    
    /*CHANGES*/
    color: #fff;
}

.color-pri-2 {
    /*color: #4E3E1D;*/
    
    /*CHNAGES*/
    color: #fff;
}

.img-footer-ratio {
    width: 100%;  /* Makes it responsive */
    max-width: 122px; /* Adjust based on actual size */
    height: auto;  /* Maintains aspect ratio */
    aspect-ratio: 122 / 45; /* Ensures the correct aspect ratio */
    object-fit: contain; /* Prevents stretching */
}


/* screen width is 768px or less*/
@media (max-width: 768px) {
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 20px;
  }
}

/*  screen width is 480px or less */
@media (max-width: 480px) {
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.space-left {
  padding-left: 2rem;
}

.center-image {
  margin-left: auto;
  margin-right: auto;
}


.sp-sites {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 1rem;
  margin-left: 7rem;
}

.sp-site-wrapper {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  opacity: 0.8; /* Slight opacity for initial state */
}

.sp-site-wrapper:hover {
  transform: scale(1.05); /* Slight scaling on hover for the whole wrapper */
  opacity: 1; /* Full opacity on hover */
}

.sp-site-wrapper a {
  transition: all 0.3s ease;
}

.sp-site-wrapper a:hover {
  font-size: 20px;  
  color: #ff6347; /* Change color on hover for better effect */
}

.sp-site-wrapper svg {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.sp-site-wrapper:hover svg {
  transform: scale(1.2); /* Slight scale on SVG icon hover */
}

.sp-site-title  {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


.positioningLeft {
  text-align: left !important;
}

.bg-black {
  background: #1d1713;
  /* background: linear-gradient(180deg, #fc0a0d 0%, #d80000 41.83%, #ed6600 100%); */
}

.heading-pt50 {
    padding-top: 50px;
}
/* Hide by default (mobile first) */
.hide-on-mobile {
  display: none;
}

/* Show on desktop (min-width 768px) */
@media (min-width: 768px) {
  .hide-on-mobile {
    display: block;
  }
  
  .heading-pt50 {
    padding-top: 0px;
}
}

