/* color */
/* text */
/* nav{
    display: flex;
    width: 100vw;
    height: 4.75rem;
    background-color: $site-darkgray;
    position: fixed;
    z-index: 99999999;
    filter: drop-shadow( 0px 0px 2px $site-darkgray);

    & .nav-holder{
        display: flex;
        width: min(100% - 4rem, 70rem);
        margin: 0 auto;
        justify-content: center;

        & .site-logo{
            margin: 0.5rem auto;
            width: 12rem;
            background: url('../img/icons/pw-logo.svg') no-repeat center center;
            background-size: contain;

            @include responsiveWidth(500.98px){
                width: 15rem;
                background: url('../img/icons/pw-logo-black.svg') no-repeat center center;
                background-size: contain;
                display: flex;
                justify-content: center;
            }
        } 
        & ul{
            width: 100%;
            margin: auto;
            position: relative;
            transition: all .35s;
            @include responsiveWidth(768.98px){ display: none;}

            & li{
                margin: 1.25rem -0.5rem;
                display: flex;
                padding: 0 1rem;
                & a{
                    font-size: .856em;
                    font-weight: 500;
                    color: $site-white;
                    transition: all 0.26s ease-in-out;

                    &:hover, &:focus{
                        color: $site-red;
                    } 
                }
            }
        }
    }
    & .bottom-nav-holder{
        display: flex;
        width: 100%;
        margin: 0 auto;
        justify-content: center;

        & #home .bg-color, & #about .bg-color, & #pricing .bg-color, & #contact .bg-color{
            fill: $site-darkgray;
        }
        & a{
            font-weight: 600;
            color: $site-white;
        }
        & ul{
            padding: 1rem 0;
            margin: auto;
            & li{
                margin: 0 0.5rem;
                padding: 0 0.25rem;
            }
            & a{
                margin-top: -2.5rem!important;
                width: 60px!important;
                padding: 0 0.15rem;
                fill: $site-red;
                transition: all .25s ease-in-out;
                display: block;

                & p{
                    text-align: center;
                    font-size: 0.826rem;
                }
                &:hover{
                    fill: $site-white;
                    transform: scale(1.2);
                }
            }
        }
    }
} */
/* nav{
    display: flex;
    width: 100vw;
    height: 4.75rem;
    background-color: $site-darkgray;
    position: fixed;
    z-index: 99999999;
    filter: drop-shadow( 0px 0px 2px $site-darkgray);

    & .nav-holder{
        display: flex;
        width: min(100% - 4rem, 70rem);
        margin: 0 auto;
        justify-content: center;

        & .site-logo{
            margin: 0.5rem auto;
            width: 12rem;
            background: url('../img/icons/pw-logo.svg') no-repeat center center;
            background-size: contain;

            @include responsiveWidth(500.98px){
                width: 15rem;
                background: url('../img/icons/pw-logo-black.svg') no-repeat center center;
                background-size: contain;
                display: flex;
                justify-content: center;
            }
        } 
        & ul{
            width: 100%;
            margin: auto;
            position: relative;
            transition: all .35s;
            @include responsiveWidth(768.98px){ display: none;}

            & li{
                margin: 1.25rem -0.5rem;
                list-style: none;
                padding: 0 1rem;
                & a{
                    font-size: .856em;
                    font-weight: 500;
                    color: $site-white;
                    transition: all 0.26s ease-in-out;

                    &:hover, &:focus{ 
                        color: $site-red;
                    } 
                }
            }
        }
        @include responsiveWidth(768.98px){
            display: flex;
            width: 100%;
            margin: 0 auto;
            justify-content: center;

            & #home .bg-color, & #about .bg-color, & #pricing .bg-color, & #contact .bg-color{
                fill: $site-darkgray;
            }
            & a{
                font-weight: 600;
                color: $site-white;
            }
            & ul{
                padding: 1rem 0;
                margin: auto;
                & li{
                    margin: 0 0.5rem;
                    padding: 0 0.25rem;
                }
                & a{
                    margin-top: -2.5rem!important;
                    width: 60px!important;
                    padding: 0 0.15rem;
                    fill: $site-red;
                    transition: all .25s ease-in-out;
                    display: block;

                    & p{
                        text-align: center;
                        font-size: 0.826rem;
                    }
                    &:hover{
                        fill: $site-white;
                        transform: scale(1.2);
                    }
                }
            }
        }
    }
} */
@media (max-width: 500.98px) {
  .nav-background-color {
    background-color: rgb(255, 255, 255);
    filter: drop-shadow(0px 0px 0px transparent);
  }
}

.nav-visibility-base {
  position: fixed;
  display: none;
  bottom: 0;
}
@media (max-width: 500.98px) {
  .nav-visibility-base {
    display: block;
  }
}

/* next code */
.holder {
  display: flex;
  padding: 0 1rem;
  color: white;
}

:root {
  --bar-width: 35px;
  --bar-height: 5px;
  --bar-gap: 6px;
  --bar-foreground: rgba(0,0,0,1);
  --bar-background: rgba(255,255,255,1);
  --hamburger-margin: 1.70rem;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--bar-gap) * 2);
  --animation-timing: 200ms ease-in-out;
}

.nav_container {
  background-color: transparent;
  color: var(--bar-background);
  height: 80px;
}
.nav_container .hamburger-menu {
  display: none;
  /* &:has(input:checked){
      --bar-foreground: white;
      --bar-background: rgba(65,65,65,1);
  } */
}
.nav_container .hamburger-menu::before, .nav_container .hamburger-menu::after, .nav_container .hamburger-menu input {
  content: "";
  width: var(--bar-width);
  height: var(--bar-height);
  background-color: var(--bar-background);
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), translate var(--animation-timing);
}
.nav_container .hamburger-menu input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}
.nav_container .hamburger-menu input:checked {
  opacity: 0;
}
.nav_container .hamburger-menu:has(input:checked)::before {
  rotate: 45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / -2);
}
.nav_container .hamburger-menu:has(input:checked)::after {
  rotate: -45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / 2);
}
.nav_container .hamburger-menu:has(input:checked) + nav .ham-nav-holder {
  visibility: visible;
  opacity: 1;
  transform: translateY(20px) scale(1);
}
.nav_container .hamburger-menu:has(input:focus-visible)::before, .nav_container .hamburger-menu:has(input:focus-visible)::after, .nav_container .hamburger-menu input:focus-visible {
  border: 1px solid var(--bar-background);
  box-shadow: 0 0 0 1px var(--bar-foreground);
}
@media (max-width: 768.98px) {
  .nav_container .hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--bar-gap);
    width: -moz-max-content;
    width: max-content;
    position: fixed;
    top: var(--hamburger-margin);
    left: var(--hamburger-margin);
    z-index: 9999999999999;
    cursor: pointer;
  }
}
@media (max-width: 768.98px) and (max-width: 500.98px) {
  .nav_container .hamburger-menu {
    display: none;
  }
}
.nav_container .ham-nav-holder {
  transition: all 250ms ease-in-out;
  width: 80px;
  height: auto;
  padding: 1rem 0;
  border-radius: 0.5rem;
  background-color: rgb(25, 25, 25);
  transform: translatX(0px) scale(0);
  top: 5rem;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 11px;
  margin: 0 auto;
  display: none;
}
@media (max-width: 756.98px) {
  .nav_container .ham-nav-holder {
    display: block;
  }
}
@media (max-width: 756.98px) and (max-width: 500.98px) {
  .nav_container .ham-nav-holder {
    display: none;
  }
}
.nav_container .ham-nav-holder #home .bg-color, .nav_container .ham-nav-holder #about .bg-color, .nav_container .ham-nav-holder #pricing .bg-color, .nav_container .ham-nav-holder #contact .bg-color {
  fill: transparent;
}
.nav_container .ham-nav-holder ul {
  height: auto;
  margin: auto;
}
.nav_container .ham-nav-holder ul li {
  width: 100%;
  height: 40%;
  margin: 0rem auto;
  list-style: none;
}
.nav_container .ham-nav-holder ul a {
  transition: all 250ms ease-in-out;
  fill: rgb(175, 2, 2);
  margin: auto;
  display: block;
}
.nav_container .ham-nav-holder ul a .icons {
  width: 30px;
  height: 30px;
  position: absolute;
  margin: auto;
  transform: translate(-50%, -50%);
}
.nav_container .ham-nav-holder ul a p {
  width: 110px;
  position: absolute;
  padding: 1rem 1rem 1rem 1.5rem;
  margin: auto;
  text-align: center;
  font-size: small !important;
  background-color: rgb(25, 25, 25);
  z-index: -2;
  transition: all 250ms;
  transform: translate(0px, -50px) scaleX(0);
  border-radius: 0 0.5rem 0.5rem 0;
  color: rgb(50, 50, 50);
}
.nav_container .ham-nav-holder ul a:hover {
  fill: rgb(255, 255, 255);
  transform: scale(1.25);
}
.nav_container .ham-nav-holder ul a:hover p {
  z-index: -2;
  transform: translate(40px, -49px) scaleX(1);
  opacity: 1;
  color: rgb(255, 255, 255);
}
.nav_container nav {
  display: flex;
  width: 100vw;
  height: 4.75rem;
  background-color: rgb(25, 25, 25);
  position: fixed;
  z-index: 99999999;
  filter: drop-shadow(0px 0px 2px rgb(25, 25, 25));
}
.nav_container nav .nav-holder {
  display: flex;
  width: min(100% - 4rem, 70rem);
  margin: 0 auto;
  justify-content: center;
}
.nav_container nav .nav-holder .site-logo {
  margin: 0.5rem auto;
  width: 12rem;
  background: url("../img/icons/pw-logo.svg") no-repeat center center;
  background-size: contain;
}
@media (max-width: 500.98px) {
  .nav_container nav .nav-holder .site-logo {
    width: 15rem;
    background: url("../img/icons/pw-logo-black.svg") no-repeat center center;
    background-size: contain;
    display: flex;
    justify-content: center;
  }
}
.nav_container nav .nav-holder ul {
  width: 100%;
  margin: auto;
  position: relative;
  transition: all 0.35s;
}
@media (max-width: 768.98px) {
  .nav_container nav .nav-holder ul {
    display: none;
  }
}
.nav_container nav .nav-holder ul li {
  margin: 1.25rem -0.5rem;
  list-style: none;
  padding: 0 1rem;
}
.nav_container nav .nav-holder ul li a {
  font-size: 0.856em;
  font-weight: 500;
  color: rgb(255, 255, 255);
  transition: all 0.26s ease-in-out;
}
.nav_container nav .nav-holder ul li a:hover, .nav_container nav .nav-holder ul li a:focus {
  color: rgb(175, 2, 2);
}
@media (max-width: 768.98px) {
  .nav_container nav .nav-holder {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
  .nav_container nav .nav-holder #home .bg-color, .nav_container nav .nav-holder #about .bg-color, .nav_container nav .nav-holder #pricing .bg-color, .nav_container nav .nav-holder #contact .bg-color {
    fill: rgb(25, 25, 25);
  }
  .nav_container nav .nav-holder a {
    font-weight: 600;
    color: rgb(255, 255, 255);
  }
  .nav_container nav .nav-holder ul {
    padding: 1rem 0;
    margin: auto;
  }
  .nav_container nav .nav-holder ul li {
    margin: 0 0.5rem;
    padding: 0 0.25rem;
  }
  .nav_container nav .nav-holder ul a {
    margin-top: -2.5rem !important;
    width: 60px !important;
    padding: 0 0.15rem;
    fill: rgb(175, 2, 2);
    transition: all 0.25s ease-in-out;
    display: block;
  }
  .nav_container nav .nav-holder ul a p {
    text-align: center;
    font-size: 0.826rem;
  }
  .nav_container nav .nav-holder ul a:hover {
    fill: rgb(255, 255, 255);
    transform: scale(1.2);
  }
}/*# sourceMappingURL=nav.css.map */