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

html {
    scroll-behavior: smooth;
}

#white-theme-mode {
    background-color: #ECECEF;
}

.content-wrapper {
    max-width: 1410px;
    margin: 0 auto;
    color: #333f48;
}

.content-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333f48;
    max-width: 1300px;
}

p.content-text.titlets {
    margin-bottom: 0 !important;
    font-weight: 600;
    color: #00a7b5;
}

p.content-text.contentts {
    margin-bottom: 0 !important;
}

section#aq-space {
    padding-top: 60px;
}

.centered.content-wrapper.descption {
    text-align: center;
}

h2.content-title.h2-title {
    margin: 0;
}

p.content-text.p-description {
    max-width: 1440px;
    padding-top: 15px;
}

@media screen and(min-width: 1px) and(max-width: 425px) {
    h2.content-title.h2-title {
        font-weight: 500;
    }
}

/* Minimalist Navigation */
.minimal-nav {
    position: fixed;
    left: calc((100vw - 1440px) / 4);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.minimal-nav.visible {
    opacity: 1;
    visibility: visible;
}

.nav-scrollbar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: calc(3 *(12px + 0px));
    /* 3 nav items height (font-size + gap) */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.nav-track {
    width: 100%;
    height: 100%;
    background: #B2B4B2;
    border-radius: 2px;
    position: relative;
}

.nav-thumb {
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px;
    background: #333F48;
    border-radius: 2px;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: 15px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item {
    font-size: 12px;
    font-weight: 400;
    color: #333F48;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 0;
    white-space: nowrap;
    position: relative;
}

.nav-item:hover {
    color: #00a7b5 !important;
}

.nav-item.active {
    color: #333F48;
    font-weight: 700;
}

.nav-item.inactive {
    color: #d1d5db;
    margin-left: 8px;
}

.nav-item.previous,
.nav-item.next {
    color: #333F48;
    font-weight: 400;
}

@media screen and (max-width: 10000px) {
    .minimal-nav {
        left: calc((100vw - 5px) / 4);
    }
}

@media screen and (max-width: 6000px) {
    .minimal-nav {
        left: calc((100vw - 300px) / 4);
    }
}

@media screen and (max-width: 4000px) {
    .minimal-nav {
        left: calc((100vw - 400px) / 4);
    }
}

@media screen and (max-width: 3500px) {
    .minimal-nav {
        left: calc((100vw - 500px) / 4);
    }
}

@media screen and (max-width: 3200px) {
    .minimal-nav {
        left: calc((100vw - 700px) / 4);
    }
}

@media screen and (max-width: 2900px) {
    .minimal-nav {
        left: calc((100vw - 900px) / 4);
    }
}

@media screen and (max-width: 2600px) {
    .minimal-nav {
        left: calc((100vw - 1400px) / 4);
    }
}

@media screen and (max-width: 2300px) {
    .minimal-nav {
        left: calc((100vw - 1700px) / 4);
    }
}

@media screen and (max-width: 2000px) {
    .minimal-nav {
        left: calc((100vw - 1700px) / 4);
    }
}

/* Responsive Design for Navigation */
@media screen and (max-width: 1800px) {
    .minimal-nav {
        left: calc((100vw - 1650px) / 4);
    }
}

@media screen and (min-width: 1px) and (max-width: 1730px) {
    .minimal-nav.visible {
        visibility: hidden;
    }
}