body {
    background: #222227;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
    overflow-x: hidden;
}

ul {
    list-style: none;
    padding-inline-start: 0;
}

a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
    color: #804dfd;
}

@keyframes riseUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rise {
    animation: riseUp 0.5s ease-out forwards;
}

progress {
  width: 100%;
  height: 15px;
  background-color: #fff;
  border-radius: 15px;
}

progress::-webkit-progress-bar {
  background-color: #fff;
  border-radius: 15px;
}

progress::-webkit-progress-value {
  background: linear-gradient(90deg, rgba(87, 120, 255, 1), rgba(151, 21, 214, 1));
  transition: width 1s ease-in-out;
  border-radius: 15px;
}

progress::-moz-progress-bar {
  background: linear-gradient(90deg, rgba(87, 120, 255, 1), rgba(151, 21, 214, 1));
  border-radius: 15px;
}

.column {
    display: flex;
    flex-direction: column;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.badge {
    padding: 8px 15px;
    border-radius: 25px;
    background: #222227;
    width: fit-content;
    margin: 0px;
    font-size: .75rem;
    font-weight: 500;
}

.purple-cta {
    background: #804dfd;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 500;
    font-size: .9375rem;
    transition: 0.3s;
}

.purple-cta:hover {
    background: #672afd;
    color: #fff;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.sticky {
    position: fixed!important;
    top: 0;
    width: 100%;
    z-index: 222;
    background: #222227;
}

.navbar-toggler {
    color: #fff;
    position: fixed;
    top: 20px;
    left: 25px;
}

#header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    transition: ease-in-out 0.25s;
    background: #222227;
}
.navbar-brand {
    margin-left: 0px;
    height: auto;
    float: left;
}

.nav-menu {
    justify-content: right;
}
.navbar-nav {
    display: block;
}
.navbar-nav li {
    display: inline-block;
    white-space: nowrap;
    float: left;
    padding: 10px 15px;
}
.nav-menu a {
    text-align: left;
    position: relative;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: inherit;
    font-weight: 600;
}
.nav-menu a:hover {
    color: #804dfd;
}
.nav-menu .drop-down ul {
    display: none; /* Initially hide dropdown */
    position: absolute; /* Make dropdown position relative to parent */
    background: #222227; /* Set background color */
    padding: 3px; /* Add some padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
    z-index: 1000; /* Ensure it's above other content */
    list-style: none; /* Remove bullet points */
}
.nav-menu .drop-down:hover ul {
    display: grid; /* Show dropdown on hover */
}
.nav-menu .drop-down ul li {
    padding: 5px 10px; /* Add padding for dropdown items */
}
.header-icons {
    color: #fff;
}

#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(http://bluedressdemos.com/posi/images/posi-trak-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}
#hero .hero-text {
    padding-left: 10%;
}
#hero h1 {
    font-weight: 600;
}
#product-highlight .col-md-2 {
    display: flex;
    flex-direction: column;
    width: 20%;
}
#two-product img {
    border-radius: 7px;
}
#testimonials .testi-content {
    background: #fff;
    color: #000;
    border-radius: 4px;
    padding: 15px;
    min-height: 250px;
}
.testi-section-content {
    background: #fff;
    color: #000;
    border-radius: 4px;
    padding: 0 30px;
    min-height: 640px;
    display: flex;
    align-items: center;
}
.about-content {
    background: #fff;
    color: #000;
    border-radius: 4px;
    padding: 0 30px;
    min-height: 955px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#product-page input, .plus-minus {
    background: #222227;
    color: #fff;
    border: 0;
}
.plus-minus:hover {
    color: #fff;
}
.quantity {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    display: flex;
}
#progress .col-md-6 {
    padding: 15px;
}
#footer a {
    color: #aaaeb6;
}