.frontpage-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 80px;
    width: 100%;
    height: 65vh;
    height: 65svh;
}

.frontpage-hero__body {
    width: 100%;
    height: fit-content;
    margin-top: 80px;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #ffffffc7;
}

.frontpage-hero__above-title {
    margin-bottom: -8px;
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--color-primary);
}

.frontpage-hero__title {
    font-size: 2rem;
}

.frontpage-hero__subtitle {
    margin-top: 12px;
    padding-left: 16px;
    font-size: 18px;
    border-left: 2px solid var(--color-primary);
}

.frontpage-hero__button {
    margin-top: 28px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-primary);
    border-radius: 0;
    border: 2px solid var(--color-primary);
    background-color: transparent;
    transition: all .2s ease;
}

.frontpage-hero__button:hover {
    color: var(--color-on-primary);
    background-color: var(--color-primary);
}

.frontpage-hero__visual {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.frontpage-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
    opacity: 80%;
}




.frontpage-stock-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 40px;
    justify-content: center;
    margin-top: 84px;
}

.frontpage-stock-category {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 24px;
    /* flex-grow: 1; */
    padding: 32px;
    border-radius: 4px;
    /* box-shadow: 0 0 12px 0 rgb(0, 0, 0, 8%); */
    text-decoration: none;
    /* background-color: rgba(238, 246, 255, 30%); */
    transition: all .4s ease;
}

.frontpage-stock-category:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px 0 rgb(0, 0, 0, 12%);
}

.frontpage-stock-category__body {
    width: 100%;
}

.frontpage-stock-category__img {
    align-self: center;
    border-radius: 20px;
    box-shadow: 0 0 8px 0 rgb(0, 0, 0, 12%);
    object-fit: cover;
}

.frontpage-stock-category__title {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 1px;
    word-spacing: 2px;
}

.frontpage-stock-category__paragraph {
    max-width: 100%;
    margin-top: 12px;
    word-spacing: 1px;
    line-height: 1.7;
    color: #2e251d;
}



.frontpage-about {
    margin-top: 120px;
    margin-bottom: 120px;
    /* background-color: #fff; */
}

.frontpage-about__inner {
    position: relative;
}

.frontpage-about__title {
    margin-bottom: 24px;
}

/* .frontpage-about__title.section__title::after {
    width: 30%;
} */

.frontpage-about__rows {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.frontpage-about__row {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.frontpage-about__body {
    height: fit-content;
}

.frontpage-about__paragraph {
    /* position: absolute;
    z-index: 1;
    height: 100%;
    padding: 32px; */
    /* max-width: 660px; */
    min-width: min(360px, 100%);
    /* width: calc(100% / 3); */
    line-height: 1.7;
    word-spacing: 1px;
    /* background-color: #fff; */
}

.frontpage-about__images-wrapper {
    position: relative;
}

.frontpage-about__img {
    /* position: absolute; */
    top: 0;
    left: 0;
    border-radius: 4px;
    box-shadow: 0 0 8px 0 rgb(0, 0, 0, 12%);
    object-fit: cover;
    filter: brightness(1.1);
    min-width: min(400px, 100%);
}

/* .frontpage-about__img.frontpage-about__img--top {
    z-index: 1;
    transform: translateY(-120px);
}
 */

.frontpage-stock {
    margin-top: 60px;
    box-shadow: inset 0 0 8px 0 rgb(0, 0, 0, 8%);
    background-color: #fff;
}

.frontpage-stock__inner {
    padding-top: 60px;
    padding-bottom: 100px;
}

.frontpage-stock__title {
    margin-bottom: 24px;
}

.frontpage-stock__cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2px;
    width: fit-content;
    margin-top: 12px;
    margin-left: auto;
    text-decoration: none;
}

.frontpage-stock__cta svg {
    transition: transform .4s ease;
}

.frontpage-stock__cta:hover svg {
    transform: translateX(2px);
}