:root {
  --black: #000;
  --darkestestgrey: #0d0d0d;
  --darkestgrey: #171717;
  --darkgrey: #2C2C2C;
  --grey: #3F3F3F;
  --lightgrey: #505050;
  --lightergrey: #999999;
  --homepagebaukasten: 'HomepageBaukasten-Bold';
  --helvetica: 'Helvetica Regular';
  --verdana: 'Verdana, sans-serif';
  --helvetica-condense: "Helvetica Condensed Black";
  --roboto: "Roboto";
  --timesnewroman: "Times New Roman";
  --white: #fff;
  --light: #d2d2d2;
  --djgrey: #707375;
  --djred: #A93838;
  --djredhover: #8A2E2E;
  --djbackground: #FCFBF7;
  --djbackground2: #FDF7E1;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

main {
  display: flex;
  justify-content: center;  
  align-items: center;      
}

h1, h2, h3 {
  font-family: var(--helvetica-condense);
  margin:0;
}

p { 
  font-family: var(--timesnewroman);
  margin-top: 2vh;
  font-size: 30px;
  color: var(--lightgrey);
}

.click-here {
  color: var(--darkestgrey) !important;
}

.txt {
  color: var(--darkestestgrey);
  font-family: var(--timesnewroman);
  font-size: 3rem;
  /* padding-bottom: 3rem; */
  font-weight:300;
}

.hp-bg {
  background-image: url(/assets/images/dj_background.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh; 
  position: relative;
  z-index: 0;
  overflow-x: hidden; 
}

.hp-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  /* background: rgba(0, 0, 0, 0.6);  */
  z-index: -1;
  pointer-events: none; 
}

/* nav bar */
#header {
  height: 6rem;
  width: 100vw;
  /* background-image: linear-gradient(
        rgba(255, 255, 255, 0.90) 1%,
        rgba(255, 255, 255, 0)
    ); */
  /* background-color: var(--white); */
  justify-content: center;
  align-items: center;
  padding: 2vw;
  display: flex;
  position: fixed;
  z-index: 999;
  transition: height 0.9s ease, background-color 0.9s ease;
}

#header.white {
  background-color: var(--white);
  height: 6rem;
}

.flex {
  display: flex;
  gap: 3vw;
}

.flex2 {
  display: flex;
}

/* primary header  */

.primary-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15vw;
  transition: all 3s ease-in;
}

.logowrap {
  width: 400px;
  height: auto;
}

.logowrap img {
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
}

.primary-navigation {
  display: flex;
  margin: 0;
  padding: 0;
}

.primary-navigation > li.active:hover > a {
  color: var(--djred);
  transform: translateY(-3px);
  display: inline-block; 
}

.primary-navigation li a {
  color: var(--grey);
  font-family: var(--timesnewroman);
  font-size: 1.2rem;
  font-weight: 300;
  text-decoration: none;
  transition: transform 0.4s ease;
  margin: auto;
  white-space: nowrap;
}

.primary-navigation li a:hover {
  color: var(--djred);
  transform: translateY(-3px);
  text-shadow: var(--lightergrey) 2px 2px 2px;
}

.primary-navigation li a:hover {
  color:var(--djred);
  text-shadow: var(--lightergrey) 2px 2px 2px;
  transform: translateY(-3px);
}
/* dropdown content */

.dropdown {
  position: static;
}

.dropdown-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  /* gap: 1.2rem; */
  position: absolute;
  left: 0;
  right: 0;
  width: 100vw;
  height: 8vh;
}

.dropdown-content {
  display: none;
}

.dropdown-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  grid-row: 2;
  grid-column: 1;
}

.dropdown-item:nth-child(odd) {
  background-color: var(--light);
}

.dropdown-content li a {
  color: var(--grey);
  display: flex;
  flex-direction: row;
}

.dropdown-content li a:hover, 
.white .dropdown li a:hover {
  color: var(--djred);
}

.white .dropdown-content li a{
  color: var(--grey);
}

.dropdown:hover .dropdown-content,
.dropdown-content.open {
  display: block;
}

/* Flex container for top-right elements */
.tel-hamburger-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center; /* Ensures the items align properly */
}

.tel button {
  border: none;
  border-radius: 1.5rem; 
  cursor: pointer;
  padding: 0.8rem 1rem; 
  background-color: var(--djred);
  gap: 0.55rem;
  display: flex;
  transition: all 0.3s ease-in;
}

.tel button:hover {
  filter: drop-shadow(6px 8px 12px black);
}

.tel img {
  width: 1rem;
  height: auto;
  margin-top: 2px;
  white-space: nowrap;
  transition: all 0.3s ease-in;
}

.tel p {
  font-size: 0.85rem; 
  font-weight: bold; 
  color: white;
  margin: 0;
  transition: all 0.3s ease-in;
}

.login-txt {
  color: var(--djred);
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.login-button {
  background-color: var(--djred);
}

.login-button:hover {
  background-color: var(--djredhover);
}

/* Wrapper for the weather icon and info */
.weather-info-wrap {
  display: flex;
  align-items: center; /* Aligns the icon and text */
  gap: 8px; /* Adds space between the icon and text */
}

/* Style for weather info text */
#weather-info {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  margin: 0;
  color: black;
}

/* Style for weather icon */
#weather-icon {
  width: 70px;
  height: 70px;
  margin: 0;
  filter: drop-shadow(3px 3px 6px black);
}

/* hamburger  */
.hamburger-content,
.hamburger-item {
  display: none;
}

.container {
  margin-top: 8rem;
}

section {
    width: 100%;
    min-width: 100px;
    height: 100vh;
    position: relative;
}

section ul {
    list-style: none;
}

section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    font-size: 20px;
}

section li::marker {
    content: "|"; 
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ikea-orange);
}

section a {
    text-decoration: none;
    color: var(--white);
    padding: 5px;
    display: block;
}

section img {
    width: 50px;
    padding: 10px;
}

nav a:hover {
    color: var(--white);
}

.bg-djbackground{
  background-color: var(--djbackground2);
}

.induction{
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#expandableCard {
display: flex;
justify-content: center; 
align-items: center; 
transition: all 0.5s ease-in-out;
z-index: 50;
position: relative; 
}

#expandableCard.fullscreen {
height: 90vh; /* Reduced height */
width: 90vw; /* Reduced width */
position: fixed;
top: 5vh; /* Centered with some margin from the top */
left: 5vw; /* Centered with some margin from the sides */
z-index: 9999;
background-color: white;
border-radius: 10px; /* Optional: adds a rounded look */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow for better visibility */
}

#expandableCard.fullscreen .carousel-item { 
/* padding-bottom: ; */
height: 100%;
}

/* Ensure button stays in fullscreen mode */
#expandableCard.fullscreen .expand-btn {
bottom: 20px; /* Adjust for fullscreen */
right: 20px;
}

.carousel-item {
transition: padding 0.5s ease; 
}

.carousel-item img {
max-height: 100%; /* Adjust images within the container */
height: 100vh;  /* Maintain full height within the carousel */
width: auto; /* Maintain aspect ratio */
object-fit: contain; /* Ensures images are properly sized without cropping */
}

.carousel-inner {
position: relative; /* Needed for absolute positioning */
}


/* Fullscreen Button */
.expand-btn {
position: absolute; 
bottom: 160px; 
right: 10px;
background: var(--djred);
border: none; 
border-radius: 5px; 
padding: 8px; 
cursor: pointer; 
z-index: 10000; 
}

.expand-btn svg {
color: white; 
width: 24px;
height: 24px; 
}

.expand-btn:hover {
background: var(--djredhover); /* Slightly darker red on hover */
transform: scale(1.1); 
}

.carousel {
overflow: visible;
}

.carousel-control-prev {
left: -10px;   
}

.carousel-control-next {
right: -10px;
}

.carousel-control-prev,
.carousel-control-next {
z-index: 30;
width: 100px;           /* hit‑area = icon size */
overflow: visible;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
width: 150px;
height: 150px;
background-size: 100% 100%;
background-repeat: no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.854 1.146a.5.5 0 0 1 0 .708L2.707 4l2.147 2.146a.5.5 0 0 1-.708.708l-2.5-2.5a.5.5 0 0 1 0-.708l2.5-2.5a.5.5 0 0 1 .708 0z' stroke='%23822929' stroke-width='1'/%3E%3C/svg%3E") !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.854 1.146a.5.5 0 0 1 0 .708L2.707 4l2.147 2.146a.5.5 0 0 1-.708.708l-2.5-2.5a.5.5 0 0 1 0-.708l2.5-2.5a.5.5 0 0 1 .708 0z' stroke='%23661F1F' stroke-width='1'/%3E%3C/svg%3E") !important;
}

/* ─── Bold arrow on hover (percent‑encoded SVG, same style as your base) ─── */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.146 1.146a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L5.293 4 3.146 1.854a.5.5 0 0 1 0-.708z' stroke='%23822929' stroke-width='1'/%3E%3C/svg%3E") !important;
}

.carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.146 1.146a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L5.293 4 3.146 1.854a.5.5 0 0 1 0-.708z' stroke='%23661F1F' stroke-width='1'/%3E%3C/svg%3E") !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev:focus:not(:hover),
.carousel-control-next:focus:not(:hover),
.carousel-control-prev:active:not(:hover),
.carousel-control-next:active:not(:hover) {
  outline: none;
  box-shadow: none;
  opacity: 0.5;
}


  .header .title {
  font-size: 40px;
  margin-bottom: 20px;
}

.start-desc {
    text-align: center;
    width: 600px;
    margin: auto;
}

.highscores {
    position: absolute;
    top: 20px;
    left: 15px;
}

.time-left {
  position: absolute;
  right: 80px;
  top: 20px;

}

.countdown {
  position: absolute;
  right: 50px;
  top: 20px;
}

.start-btn, .quiz-page{
    display: flex;
    justify-content: center; /* this centers the button horizontally */
   
}

/* Change button's colours when hovering over */
.start-btn button {
  border: none;
  background-color: var(--egyptblue);
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
  color: black;
  font-size: 20px;
  line-height: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  top: 250px;
}

.start-btn button:hover {
 background-color: var(--hovercolor);
}

.quiz-page .options button {
  border: none;
  /* background-color: var(--egyptblue); */
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
  color: black;
  font-size: 20px;
  line-height: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  top: 250px;
}

.quiz-page .options button:hover {
  background-color: var(--hovercolor);
}

section .question-txt {
  font-size: 30px;
  text-align: center;
  margin-top: 100px;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

section .options {
  text-align: center;
}

section .options .choice.correct button {
  border: none;
  background-color: limegreen;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
  color: hsl(0, 0%, 100%);
  font-size: 20px;
  line-height: 10px;
  padding: 14px 20px;
}

section .options .choice.incorrect button {
  border: none;
  background-color: red;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
  color: hsl(0, 0%, 100%);
  font-size: 20px;
  line-height: 10px;
  padding: 14px 20px;
}


.result-page {
  display: none;
}

.result-page .quiz-over {
  font-size: 40px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 20px;
}

.result-page .final-score {
  text-align: center;
}

.result-page .submit-scores {
  text-align: center;
  
}

.result-page .submit-scores input[type=text] {
  display: inline-block;
  padding: 12px 20px;
  margin: 8px 0;
  border: 2px solid var(--egyptblue);
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 18px;
}

.result-page .submit-scores input[type=text]::placeholder {
  font-size: 18px;
  width: 100%;
  text-align: left;
}

.result-page .submit-scores #submit-btn {
  border: none;
  background-color: var(--egyptblue);
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
  color: hsl(0, 0%, 100%);
  font-size: 20px;
  line-height: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;

}

.result-page .submit-scores #submit-btn:hover {
  background-color: var(--hovercolor);
}

.result-page .submit-scores #submit-btn a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}

/* Highscores Page */

h1 {
  text-align: center;
  margin-top: 100px;
}

.hs-btns .clear-hs {
  border: none;
  background-color: var(--egyptblue);
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
  color: hsl(0, 0%, 100%);
  font-size: 20px;
  line-height: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  margin-left: 780px;
  margin-right: 20px;
}

.hs-btns .clear-hs:hover {
  background-color: var(--hovercolor);
}

.hs-btns .go-back {
  border: none;
  background-color: var(--egyptblue);
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
  font-size: 20px;
  line-height: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
}

.hs-btns .go-back:hover {
  background-color: var(--hovercolor);
}

.hs-btns .go-back a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}

.email-input-field {
  text-indent: 5px;
}

.password-input-field {
  text-indent: 5px;
}

.gci-bg {
  background-image: url(/assets/images/mikcommfieldbg.avif);
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

.ls-bg {
  background-image: url(/assets/images/dimension_and_load_restraint_induction_slides/load-restraint-bg.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

.mt-bg {
  background-image: url(/assets/images/manual_handling_tasks_induction_slides/manual-handling-bg.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

.d-bg {
  background-image: url(/assets/images/driver_induction_slides/driver-bg.png);
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

.w-bg {
  background-image: url(/assets/images/warehouse_induction_slides/warehouse-bg.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

/* Policies Page */

.policies-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  text-align: center;
}

.two-section-div2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  justify-content: center;
  height: 100vh; /* or adjust to fit content properly */
  overflow: hidden; /* Prevents items from spilling out */
  padding-top: 20px; /* Adds some space at the top */
}

.scard {
  width: 60%;
  max-width: 800px;
  background: white;
  padding: 30px;
  border-radius: 8px;
}

.list {
  animation: fadeIn 3s;
  -webkit-animation: fadeIn 3s;
  -moz-animation: fadeIn 3s;
  -o-animation: fadeIn 3s; 
  -ms-animation: fadeIn 3s;
  position: relative;
  max-height: 60vh; /* Adjust to fit better */
  overflow-y: auto; /* Enables vertical scrolling */
  padding-right: 15px; /* Prevents content from touching the scrollbar */
  text-align: left;
  margin-top: 2rem;
}

.list ul {
  position: relative;
}

.list ul li {
  position: relative;
  left: 0;
  color: #fce4ec;
  list-style: none;
  margin: 4px 0;
  border-left: 4px solid var(--djred);
  transition: 0.75s;
  cursor: pointer;
  overflow-x: hidden;
}

.list ul li:hover {
  left: 10px;
}

.list ul li a {
  position: relative;
  padding: 8px;
  padding-left: 12px;
  display: inline-block;
  z-index: 1;
  transition: 0.75s;
  text-decoration: none;
  color: var(--djgrey);
  font-family: var(--roboto);
  font-weight: 500;
  font-size: 2vh;
}

.list ul li:hover a {
  color: white;
}

.list ul li:before {
  content: "";
  position: absolute;
  width: 95%;
  height: 100%;
  background: var(--djred);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.75s;
}

.list ul li:hover:before {
  transform: scaleX(1);
}

.animate-fadeIn{
  animation: fadeIn2 8s both;
  -webkit-animation: fadeIn2 8s both;
  -moz-animation: fadeIn2 8s both;
  -o-animation: fadeIn2 8s both;
  -ms-animation: fadeIn2 8s both;
}

/* Policies Page End */

  @media  (min-width: 766px) and (max-width: 1366px) {
    body {
      background-position: top;
      
    }

    body::before {
      background: rgba(0, 0, 0, 0.6); 
    }

    .primary-navigation{
        display: none;
        margin-left: auto;
    }

    .primary-navigation li {
      display: none;
    }

    .logowrap {
        max-width: 30%;
        min-width: 25%;
    }

    .customer-login {
        display: none;
    }

    .tel p {
        font-size: 0.8rem;
        white-space: nowrap ;
    }

    .tel img {
        width: 1rem;
    }

    .hamburger-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tel-hamburger-wrap {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 3rem;
    }

    .hamburger {
        height: 5vh;
        width: 3.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 0.4rem;
    }

    .hamburger span{
        background-color: var(--grey);
        max-height: 0.7rem;
        min-height: 0.5rem;
        max-width: 100%;
        min-width: 70%;
        border-radius: 1rem;
    }

    #menuToggle:checked + menu-icon .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #menuToggle:checked + menu-icon .hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menuToggle:checked + menu-icon .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hamburger-content {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; 
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 100%; 
        text-align: center; 
        transition: top 0.9s ease, background-color 0.9s ease;
    }

    #header.white .hamburger-content {
        top: 60px;
        background-color: var(--djred);
    }
    
    .hamburger-content a {
        padding: 15px;
        text-decoration: none;
        color: var(--djred);
        display: block;
        font-size: 1rem;
        transition: color 0.9s ease;
    }

    #header.white .hamburger-content a{
        color: var(--white);
    }
    
    .hamburger-content a:last-child {
        border-bottom: none;
    }
    
    #menuToggle:checked ~ .hamburger-content {
        display: flex;
    }

    .hb-item {
        padding: 1rem;
    }

    .w-hb-link {
        color: var(--djred);
        text-decoration: none;
        display: flex;
        justify-content: center;
    }

    #menuToggle:checked + .menu-icon + .hamburger-content {
        display: block;
    }

    .customer-login-hb {
        border: none;
        border-radius: 1.5rem; 
        cursor: pointer;
        padding: 0.8rem 1rem; 
        background-color: var(--djred);
        gap: 1rem;
    }
    
    #header.white .customer-login-hb {
        background-color: var(--white);
    }

  }

/* Phones and Small Tablets (iPhone 14 Pro Mainly) */
@media (min-width: 320px) and (max-width: 765px){
  body {
    background-position: top;
  }
  
  body::before {
    background: rgba(0, 0, 0, 0.6); 
  }

  .primary-header {
      justify-items: space-around;
      gap: 2rem;
  }

  .primary-navigation{
      display: none;
  }

  #header{
      padding:5vw;
  }

  .logowrap {
      min-width: 50%;
  }

  .primary-navigation li {
    display: none;
  }

  .customer-login {
      display: none;
  }

  .tel p {
      font-size: 1.5rem;
      white-space: nowrap ;
  }

  .tel img {
      width: 2rem;
  }

  .hamburger-item {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .tel-hamburger-wrap {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1rem;
  }

  .hamburger {
      height: 5vh;
      width: 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      row-gap: 0.4rem;
  }

  .hamburger span{
      background-color: var(--grey);
      min-height: 0.4rem;
      min-width: 60%;
      border-radius: 1rem;
  }

  #menuToggle:checked + menu-icon .hamburger span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  #menuToggle:checked + menu-icon .hamburger span:nth-child(2) {
      opacity: 0;
  }

  #menuToggle:checked + menu-icon .hamburger span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .hamburger-content {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 80px; 
      left: 0;
      right: 0;
      background-color: var(--white);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 100%; 
      text-align: center; 
      transition: top 0.9s ease, background-color 0.9s ease;
  }

  #header.white .hamburger-content {
      top: 60px;
      background-color: var(--djred);
  }
  
  .hamburger-content a {
      padding: 15px;
      text-decoration: none;
      color: var(--djred);
      display: block;
      font-size: 1rem;
      transition: color 0.9s ease;
  }

  #header.white .hamburger-content a{
      color: var(--white);
  }
  
  .hamburger-content a:last-child {
      border-bottom: none;
  }
  
  #menuToggle:checked ~ .hamburger-content {
      display: flex;
  }

  .hb-item {
      padding: 1rem;
  }

  .w-hb-link {
      color: var(--grey);
      text-decoration: none;
      display: flex;
      justify-content: center;
      font-size: 3rem;
  }   

  #menuToggle:checked + .menu-icon + .hamburger-content {
      display: block;
  }
}