section.home-video {
    position: relative;
    width: 100%;
    height: 70vh; /* Maximum height of 75% of the viewport */
    overflow: hidden;
}

.home-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.home-video:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--black);
    top: 0;
    left: 0;
    opacity: 0.5;
}

.home-video .inner_grid {
    max-width: 1200px;
    padding: 0 15px;
    position: relative;
    z-index: 3;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
}

.home-video .inner_grid .intro {
    position: absolute;
    bottom: 40px;
    left: 17px;
    color: var(--white);
    height: auto;
    max-width: 700px;
    z-index: 3;
    font-family: 'Raleway Bold';
}

.home-video .inner_grid .intro .title {
    font-size: 46px;
}

.home-video .inner_grid .intro .subtitle {
    font-size: 28px;
}

.home-services {
    background-color: var(--black);
    text-align: center;
    padding: 25px;
    color: var(--white);
}

.home-services .inner_grid {
    max-width: 1200px;
    padding: 0 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.home-services .inner_grid .page_subtitle {
    margin-bottom: 20px;
}

.home-services .inner_grid .onestop_intro {
    margin-bottom: 45px;
}

.home-services .inner_grid .onestop_intro img{
    height: 18px;
    width: auto;
    display: inline-block;
    margin-bottom: -2px;
}

.home-services .inner_grid .service_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
}

.home-services .inner_grid .service_list:before {
    width: 100%;
    height: 3px;
    background: var(--green);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    content: '';
    bottom: 0;
}


.home-services .inner_grid .service_item {
    background-color: var(--green);
    width: 128px;
    height: 128px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

.home-services .inner_grid .service_icon {
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.home-services .inner_grid .sevice_name {
    position: absolute;
    bottom: 17px;
    left: 1px;
    right: 0;
    margin: auto;
    font-size: var(--font-small);
    color: white;
}

.home-services .inner_grid .service_icon.icon_design {
    width: 100px;
    height: 100px;
    top: -10;
}

.home-services .inner_grid .service_icon.icon_production {
    width: 60px;
    height: 60px;
    top: -10px;
}

.home-services .inner_grid .service_icon.icon_printing {
    width: 90px;
    height: 90px;
    top: -10px;
}

.home-services .inner_grid .service_icon.icon_installation {
    width: 70px;
    height: 70px;
    top: -10px;
}

.home-customer {
    background-color: var(--white);
    background-color: white;
}

.home-customer .inner_grid {
    max-width: 1200px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 60px;
    text-align: center;
    padding-bottom: 0;
    background-color: white;
}

.customer_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
}

.customer_link {
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .customer_list {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
}

@media (max-width: 768px) {
    
    .home-services .inner_grid .onestop_intro {
        margin-bottom: 30px;
    }

    .home-video .inner_grid .intro .title {
        font-size: 36px;
    }
    
    .home-video .inner_grid .intro .subtitle {
        font-size: 18px;
    }

    .home-services .inner_grid .service_list {
        /* flex-direction: column; */
        gap: 40px;
        max-width: 315px;
        flex-wrap: wrap;
        position: relative;
        width: 100%;
        min-width: 280px;
    }

    .home-services .inner_grid .service_list:before {
        width: 3px;
        height: 100%;
        left: 64px;
        right: initial;
        margin: initial;
    }

    .home-services .inner_grid .service_list:after {
        content: '';
        width: 3px;
        height: 100%;
        left: initial;
        right: 64px;
        margin: initial;
        position: absolute;
        background: var(--green);
    }

    .home-services .inner_grid .service_item:nth-child(1) {
        order: 1;
    }
    
    .home-services .inner_grid .service_item:nth-child(2) {
        order: 3;
    }
    
    .home-services .inner_grid .service_item:nth-child(3) {
        order: 2;
    }
    
    .home-services .inner_grid .service_item:nth-child(4) {
        order: 4;
    }
}

@media (max-width: 600px) {

    .home-customer .inner_grid {
        padding: 60px 20px 20px 20px;
    }
    
    .customer_list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
}

@media (max-width: 400px) {
    .home-services .inner_grid {
        padding: 0;
    }

    .home-services .inner_grid .service_list {
        gap: 20px;
    }
    
    .customer_list {
        /* grid-template-columns: 1fr; /* 1 column on extra small screens */ 
    }
}