body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(var(--vh, 1vh) * 100);
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

h1 {
    font-size: 1.6rem;
}

h2 {
    font-size: 1.4rem;
}

.empty {
    width: 100%;
    max-width: var(--vw-max-width);
    display: flex;
    flex-direction: column;
    flex: 1;
    align-content: center;
    align-items: center;
    justify-content: center;
}

nav details.dropdown.menu summary:not([role]) {
    height: 2.7rem;
}

details.dropdown.menu summary::after {
    display: none;
}

details.dropdown.menu summary svg {
    width: 28px;
    height: 28px;
}

section.hero {
    display: flex;
    height: calc(var(--vh, 1vh) * 60);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 2rem;
    margin-bottom: 3.5rem;
}

section.hero hgroup {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 0.4rem;
    -webkit-text-stroke: 1px #9f9f9f;
    text-shadow: 0px 4px 4px #9f9f9f;
}

section.hero hgroup:last-child {
    -webkit-text-stroke: 1px var(--pico-contrast);
    /*#222222*/
    text-shadow: 0px 4px 4px var(--pico-contrast);
    /*#222222*/
}

section.hero hgroup p {
    -webkit-text-stroke: unset;
    text-shadow: unset;
}

section.brand-list {
    margin-bottom: 3.5rem;
}

section.brand-list div.description {
    margin-bottom: 1.5rem;
}

section.brand-list article {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

section.brand-list article img {
    height: 35px;
}

section.categories-list {
    margin-bottom: 3.5rem;
}

section.categories-list div.description {
    margin-bottom: 1.5rem;
}

section.categories-list article {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

section.categories-list article img {
    width: 280px;
}

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

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

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.required {
    color: var(--pico-form-element-invalid-active-border-color);
}



.stepper {
    --circle-size: clamp(1.5rem, 5vw, 3rem);
    --spacing: clamp(0.25rem, 2vw, 0.5rem);
    display: flex;
    counter-reset: count;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    counter-increment: count 1;
}

.stepper-item:before {
    --size: calc(var(--circle-size) * 0.55);
    content: counter(count);
    display: block;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    color: var(--pico-primary-inverse);
    background-color: lightgrey;
    background-color: var(--pico-primary-background);
    font-size: var(--size);
    opacity: 0.5;
    margin: 0 auto 1rem;
    padding-top: 0.2rem;
}

.stepper-item:not(:last-child):after {
    content: "";
    position: relative;
    top: calc(var(--circle-size) / 2);
    width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    left: calc(50% + calc(var(--circle-size) / 2 + var(--spacing)));
    height: 2px;
    background-color: #e0e0e0;
    background-color: var(--pico-secondary-background);
    order: -1;
}

.stepper-title {
    font-weight: bold;
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 0.5rem;
}

.stepper-desc {
    color: grey;
    font-size: clamp(0.85rem, 2vw, 1rem);
    padding-left: var(--spacing);
    padding-right: var(--spacing);
}





.timeline-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
}

.timeline-item:last-child .timeline-content:before {
    display: none;
}

.timeline-content {
    flex: 1;
    position: relative;
    order: 1;
    padding-left: 1.5rem;
    padding-bottom: 3rem;
}

.timeline-content:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: lightgrey;
}

.timeline-content:after {
    content: "";
    position: absolute;
    left: calc(0px - 11px);
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    z-index: 1;
    border: 2px solid lightgrey;
    border-radius: 50%;
}

.timeline-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: grey;
}

.timeline time {
    text-align: end;
    flex: 0 0 100px;
    min-width: 0;
    overflow-wrap: break-word;
    padding-bottom: 1rem;
}








@media (max-width: 1024px) {
    .hide-mobile {
        display: none;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }

    .w-50 {
        width: 75%;
    }

    .w-25 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }

    .w-75,
    .w-50 {
        width: 100%;
    }

    .w-25 {
        width: 75%;
    }
}

@media (min-width: 1025px) {
    .hide-desktop {
        display: none;
    }
}