/* ****************************************************************************
 * Frontpage / Homepage
 * ***************************************************************************/

.home-video-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 622px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 1em;
    aspect-ratio: 16 / 9;
    justify-content: center;
}

.home-video-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.home-video-hero h2 {
    color: #fff;
    font-size: clamp(58px, 6vw, 138px);
    text-align: center;
    font-weight: 800;
    margin: 0;
}

.home-video-hero h3 {
    color: #fff;
    font-size: clamp(20px, 3vw, 42px);
    text-align: center;
    font-weight: 800;
    margin-bottom: 0.8em;
}

.home-video-hero .seco-btn {
    background: #fe8214;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    border-radius: 5em;
    font-size: 12px;
    padding: 0.75em 3em;
    text-align: center;
    text-decoration: none;
}

/* ************************************************************************* */

.home-intro {
    
}

.home-intro h3 {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: clamp(20px, 5vw, 66px);
    color: #000;
    font-weight: 800;
    margin-bottom: 0.3em;
    line-height: 1.1;
}

.home-intro .seco-man {
    max-width: 686px;
    max-height: 667px;
    margin-top: -36px;
}

.home-intro-text {
    font-size: clamp(16px, 6vw, 22px);
    color: #000;
    margin-bottom: 2em;
}

.home-intro .col-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 4em;
}

.home-intro .col-image {
    text-align: right;
    flex: 0 1 40%;
}

.home-intro .links {
    display: flex;
    gap: 2em;
    align-items: center;
}

.home-intro .seco-btn {
    background: #000;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5em;
    text-align: center;
    padding: 0.6em 1.8em;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color 0.1s ease-in-out;
}

.home-intro .seco-btn:hover,
.home-intro .seco-btn:focus {
    background-color: var(--seco-orange);
}

.home-intro .products-link {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}

.home-intro .products-link svg {
    margin-left: 2px;
    margin-top: -4px;
    transition: width 0.2s ease-in-out;
}

.home-intro .products-link:hover svg,
.home-intro .products-link:focus svg {
    width: 22px;
}

/* ************************************************************************* */

.home-complete-line {
    background: #000;
}

.home-complete-line .image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -3em;
    width: 50vw;
    max-width: 1050px;
}

.home-complete-line .image-grid .cell {
    aspect-ratio: 125 / 109;
    overflow: hidden;
}

.home-complete-line .image-grid .cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.home-complete-line .image-grid .cell:nth-of-type(9),
.home-complete-line .image-grid .cell:nth-of-type(10),
.home-complete-line .image-grid .cell:nth-of-type(11),
.home-complete-line .image-grid .cell:nth-of-type(12) {
    max-height: 134px;
    width: 100%;
}

.home-complete-line .col-content {
    align-content: center;
    padding-left: 6em;
}

.home-complete-line .col-content h3 {
    font-size: clamp(16px, 6vw, 68px);
    color: #fff;
    font-weight: 800;
}

.home-complete-line .col-content p {
    font-size: clamp(16px, 6vw, 22px);
    color: #fff;
    margin-bottom: 2em;
}

.home-complete-line .seco-btn {
    background: var(--seco-orange);
    color: #fff;
    text-transform: uppercase;
    border-radius: 5em;
    text-align: center;
    padding: 0.6em 2.5em;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.2s ease-in-out,
                background-color 0.2s ease-in-out;
}

.home-complete-line .seco-btn:hover,
.home-complete-line .seco-btn:focus {
    background: #fff;
    color: #000;
}

/* ************************************************************************* */

.home-by-category {
    padding-top: 6em;
    padding-bottom: 6em;
}

.home-by-category h3 {
    font-weight: 800;
    font-family: "Wix Madefor Display", sans-serif;
    margin-bottom: 2em;
}

.home-by-category .product-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-by-category .product-categories li {
    text-align: center;
    margin-bottom: 3em;
}

.home-by-category .product-categories img {
    width: 100%;
    height: auto;
    max-width: 244px;
}

.home-by-category .product-categories a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.home-by-category .product-categories a:hover,
.home-by-category .product-categories a:focus {
    color: var(--seco-orange);
}

.home-by-category .product-categories span {
    display: block;
    font-size: 19px;
}

/* ************************************************************************* */

.home-parallax {
    background-image: url('../img/home/yellow-background-equipment.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 720px;
}

/* ****************************************************************************
 * Section Name
 * ***************************************************************************/