.home-hero-container {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-height: 575px;
    padding: 80px;
    box-sizing: border-box;
    /*background-image: url('/wp-content/uploads/2026/06/Rectangle-2-1.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 16px;
    margin-bottom: 16px;
    border-radius: 25px;
    align-items: center;
}

.home-hero-left {
    width: 40%;
}

.home-hero-right {
    width: 60%;
}

.home-hero-container h1 {
    color: #000000;
    font-size: 43px;
    line-height: 50px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 10px;
}

.home-hero-container p {
    color: #000000;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    margin-bottom: 40px;
}

.home-hero-actions {
    display: inline-flex;
}

.home-hero-actions .home-hero-button-1 {
    background-color: #519740;
    padding: 12px 25px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.home-hero-actions .home-hero-button-1:hover {
    background-color: #35632A;
}

.home-hero-actions a {
    text-decoration: none;
}

.home-hero-container-0 {
    background-image: url('slika-prvog-slajda') !important;
}

.home-hero-container-1 {
    background-image: url('slika-drugog-slajda') !important;
}

@media (max-width: 1024px) {

    .home-hero-container {
        background-position: left;
    }

    .home-hero-left,
    .home-hero-right {
        width: 50%;
    }
}


@media (max-width: 767px) {
    .home-hero-container {
        flex-direction: column;
        min-height: 660px;
        padding: 45px  25px;
        /*background-image: url('/wp-content/uploads/2026/06/Rectangle-2-2.jpg');*/
        margin-top: 5px;
        margin-bottom: 5px;
        background-position: bottom;
    }

    .home-hero-left,
    .home-hero-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-hero-container h1 {
         font-size: 32px;
        line-height: 40px;
        margin-bottom: 15px;
        text-align: center;
    }

    .home-hero-container p {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .home-hero-container-0 {
        background-image: url('mobile-slika-prvog-slajda') !important;
    }

    .home-hero-container-1 {
        background-image: url('mobile-slika-drugog-slajda') !important;
    }

}

.home-hero-main {
    position: relative;
    overflow: hidden;
}

.home-hero-swiper {
    width: 100%;
    overflow: hidden;
}

.home-hero-swiper .swiper-slide {
    height: auto;
}

.home-hero-swiper-button {
    color: #519740;
}

.home-hero-swiper-button::after {
    font-size: 28px;
    font-weight: 700;
}

.home-hero-swiper-button-prev {
    left: 28px;
    color: #000000 !important;
}

.home-hero-swiper-button-next {
    right: 28px;
    color: #000000 !important;
}

@media (max-width: 767px) {

    .home-hero-swiper-pagination {
        bottom: 20px !important;
    }
}




/* Info */

.home-info-container {
    display: flex;
    flex-wrap: nowrap;
    background-color: #F6F6F6;
    border-radius: 25px;
    padding: 30px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.home-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-info-item-image-holder {
    margin-bottom: 20px;
    height: 70px;
    width: auto;
}

.home-info-item-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-info-item h2 {
    color: #000000;
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.home-info-item p {
    color: #000000;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    text-align: center;
}

@media (max-width: 767px) {

    .home-info-container {
        flex-wrap: wrap;
        padding: 15px;
        gap: 30px;
    }

    .home-info-item {
        width: calc(50% - 15px);
    }

    .home-info-item-image-holder {
        height: 60px;
    }

    .home-info-item h2 {
        font-size: 15px;
        line-height: 17px;
        margin-bottom: 5px;
    }

    .home-info-item p {
        font-size: 13px;
        line-height: 15px;
    }
}


/* Work */

.work-main {
    margin-top: 75px;
}

.work-item-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 80px;

    counter-reset: work-counter;
}

.work-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 1;
    min-width: 0;

    counter-increment: work-counter;
}

/* Linije između koraka */

.work-item:not(:last-child)::after {
    content: '';

    position: absolute;
    top: 45px;
    left: calc(100% + 10px);

    width: 60px;
    height: 2px;

    background: repeating-linear-gradient(
        to right,
        #D8D8D8 0,
        #D8D8D8 6px,
        transparent 6px,
        transparent 12px
    );
}

.work-item-image-holder {
    position: relative;

    margin-bottom: 10px;
    height: 110px;
    width: 110px;

    background-color: #F6F6F6;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.work-item-image-holder::before {
    content: counter(work-counter);

    position: absolute;
    top: -6px;
    left: -6px;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #4D9A3D;
    color: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 0 0 3px #FFFFFF;
    z-index: 2;
}

.work-item-image-holder img {
    width: 100%;
    height: 65px;
    object-fit: contain;
}

.work-container h2 {
    margin: 0;
    margin-bottom: 70px;

    font-size: 36px;
    font-weight: bold;
    line-height: 50px;

    color: #000000;
    text-align: center;
}

.work-item h3 {
    margin: 0;

    font-size: 16px;
    font-weight: bold;
    line-height: 30px;

    color: #000000;
    text-align: center;
}

.work-item p {
    margin: 0;

    font-size: 16px;
    line-height: 20px;

    color: #000000;
    text-align: center;
}

@media (max-width: 1024px) {

    .work-item-list {
        gap: 25px;
    }

    .work-item:not(:last-child)::after {
        width: 25px;
        left: calc(100% + 2px);
    }

    .work-item-image-holder {
        height: 95px;
        width: 95px;
    }

    .work-item-image-holder img {
        height: 55px;
    }

    .work-item h3 {
        font-size: 15px;
        line-height: 25px;
    }

    .work-item p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .work-item-list {
        flex-wrap: wrap;
        gap: 30px;
    }

    .work-item {
        width: calc(50% - 20px);
        flex: unset;
    }

    .work-item::after {
        display: none;
    }
}


/* Purpose */

.purpose-main {
    margin-top: 75px;
    margin-bottom: 70px;
}

.purpose-container h2 {
    margin: 0;
	margin-bottom: 50px;
	font-size: 36px;
	font-weight: bold;
	line-height: 50px;
	color: #000000;
	text-align: center;
}

.purpose-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.purpose-item {
    display: flex;
    align-items: flex-end;
    padding: 25px 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 220px;
    border-radius: 15px;
}

.purpose-content-holder {
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    align-items: center;
}

.purpose-content-holder img {
    width: 34px;
    height: 34px;
}

@media (max-width: 1024px) {
    
    .purpose-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    
    .purpose-content-holder {
        font-size: 16px;
        line-height: 20px;
    }
}


/* Approach */

.approach-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.approach-column-1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 340px;
    display: flex;
    border-radius: 25px;
    padding: 40px;
    width: 60%;
    align-items: center;
}

.approach-column-1-content-holder {
    width: 45%;
}

.approach-column-1 h2 {
    margin: 0;
    color: #000000;
    font-size: 36px;
    line-height: 42px;
    font-weight: bold;
    margin-bottom: 25px;
}

.approach-column-1 p {
    margin: 0;
    color: #000000;
    font-size: 18px;
    line-height: 24px;
}

.approach-column-2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 340px;
    display: flex;
    border-radius: 25px;
    width: 40%;
    align-items: flex-end;
}

.approach-column-2-content-holder {
    background-color: #fff;
    border-radius: 25px 25px 0 0;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.approach-column-2-content-holder h2 {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.approach-column-2-content-holder p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 20px;
}

.approach-column-2-content-holder svg {
    width: 50px;
    height: 50px;
}

@media (max-width: 1024px) {

    .approach-container {
        flex-direction: column;
    }

    .approach-column-1,
    .approach-column-2 {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .approach-column-1-content-holder {
        width: 70%;
    }

    .approach-column-1 h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .approach-column-1 p {
        font-size: 16px;
    }

    .approach-column-1 {
        padding: 20px;
    }

}


/* Order */

.order-main {
    margin-top: 70px;
    margin-bottom: 50px;
}

.order-content-holder {
    background-color: #F4F6F2;
    padding: 35px 40px;
    border-radius: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.order-column-1 h2 {
    color: #000000;
    margin: 0;
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 40px;
    font-weight: bold;
}

.order-column-1 p {
    color: #000000;
    margin: 0;
    font-size: 24px;
    line-height: 30px;
}

.order-column-2 {
    display: flex;
    gap: 35px;
}

a.order-button-1 {
    background-color: #519740;
    border-radius: 15px;
    padding: 10px 30px;
    gap: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    margin: 0;
    justify-content: center;
}

a.order-button-1:hover {
    background-color: #35632A;
}

.order-button-1 svg,
.order-button-2 svg {
    flex-shrink: 0;
}

a.order-button-2 {
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 30px;
    gap: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    color: #A2A2A2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    border: 1px solid #CECECE;
    margin: 0;
    justify-content: center;
}

a.order-button-2:hover {
    background-color: #f7f7f7;
}

.order-button-2-title {
    color: #000000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1024px) {

    .order-content-holder {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 767px) {

    .order-content-holder {
        gap: 40px;
    }

    .order-column-2 {
        flex-direction: column;
        gap: 25px;
    }

    a.order-button-1,
    a.order-button-2 {
        min-height: 55px;
    }

    .order-column-1 h2 {
        margin-bottom: 5px;
        font-size: 24px;
        line-height: 30px;
    }

    .order-column-1 p {
        font-size: 16px;
        line-height: 20px;
    }
}