:root {
  --clr-primary-200: #24222c;
  --clr-neutral: #c9c9dc;
  --clr-accent: #edeff8;
  --clr-neutral-transparant: rgb(201, 201, 220, 0.1);
  --clr-primary-400: #c9c9dc;
  --clr-neutral-100: #fff;
}

header nav {
  padding: 1.4em 0;
  background-color: rgba(36, 34, 44, 0.95);
}

.logo {
  display: inline-block;
  width: 100px;
  height: 50px;
  background-image: url("path/to/your/logo.png");
  background-size: cover;
  margin-top: 10px;
  margin-left: 10px;
}

.navigation {
  list-style: none;
  display: flex;
  align-items: center;
}

.navigation li {
  margin-right: 15px;
}

.navigation a {
  text-decoration: none;
  color: var(--clr-neutral);
  font-size: 16px;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  margin-right: 10px;
}

.navigation a:hover {
  background-color: var(--clr-neutral);
  color: var(--clr-primary-200);
}

.navigation a.active {
  background-color: var(--clr-neutral);
  color: var(--clr-primary-200);
}

.container.container--narrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.topnav {
  overflow: hidden;
  z-index: 2;
}

.topnav .icon {
  display: none;
}

.invisible {
  display: none;
}

.visible {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav a:hover {
    background-color: var(--clr-primary-400);
    color: var(--clr-neutral-100);
  }
  .container.container--narrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .topnav.responsive .navigation {
    flex-direction: column;
  }
  .menu-default {
    display: none;
  }
}
:root {
  --clr-primary-200: #24222c;
  --clr-neutral: #c9c9dc;
  --clr-accent: #edeff8;
}

footer {
  color: var(--clr-accent);
  padding: 0 0;
  text-align: left;
  background-color: #24222c;
}

.footer-container {
  padding: 1.4em 0;
}

/* Footer navigation area */
.footer-nav-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Columns */
.col {
  flex-basis: 19%;
  margin-bottom: 0.8em;
  margin-right: 0.5em; /* Add this line to set the gap between columns */
}

/* Info column */
.col-info {
  display: flex;
  flex-direction: column;
}

.col-info h4 {
  margin-top: 1.4em;
  margin-bottom: 2em;
}

/* Menu columns */
.col-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.col-menu ul li {
  margin-bottom: 20px;
}

.col-menu ul li a {
  text-decoration: none;
  color: var(--clr-neutral);
  font-size: 16px;
  padding: 10px 0;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.col-menu ul li a:hover {
  background-color: var(--clr-neutral);
  color: var(--clr-primary-200);
}

/* Content classes */
.product-content,
.legal-content,
.about-content,
.support-content {
  font-weight: bold;
  color: var(--clr-neutral);
}

/* Copyright text */
.copyright {
  text-align: left;
  margin-top: 1.4em;
  font-size: 14px;
  color: var(--clr-neutral);
}

.footer-container p .copyright {
  text-align: left;
  margin-top: 1.4em;
  font-size: 14px;
  color: var(--clr-accent);
}

.invisble {
  display: none;
}

.visble {
  display: block;
}

@media (max-width: 768px) {
  /* Your existing CSS styles */
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .dropdown-toggle::after {
    content: "";
    display: inline-block;
    border: solid var(--clr-accent); /* Replace var(--clr-neutral) with a color value */
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out;
  }
  .dropdown-toggle.open::after {
    transform: rotate(-45deg);
  }
  /* Your existing media query styles */
  footer {
    color: var(--clr-accent);
    padding: 0 0.6em;
    text-align: left;
    background-color: #24222c;
  }
  .footer-container {
    padding: 0;
  }
  .col {
    flex-basis: 100%;
    margin-bottom: 0.8em;
  }
  .dropdown-toggle::after {
    transform: rotate(-45deg);
  }
  .col-menu ul {
    margin-left: 1em;
  }
}
.content-container {
  animation: fade-in 1s ease; /* Duration and easing function can be adjusted */
  animation-fill-mode: forwards; /* Ensure the final state is maintained after the animation */
  opacity: 0; /* Start with opacity 0 to make the content hidden */
}

/* Add a class to apply the ease-in effect to the visible content */
.content-ease-in {
  opacity: 1;
  transition: opacity 1s ease; /* Modify the duration and easing function as desired */
}/*# sourceMappingURL=transition.css.map */