/* CSS Document */



.head {
    background-color: #D3FFDF;
    height: 115vh;
}

    .head .col-lg-6 {
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

        .head h1 {
            margin-top: 0%;
            font-family: Poppins, Arial, Helvetica, sans-serif;
            font-size: 5rem;
            font-weight: 600;
        }

/*         #head-1 {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-pack: start;
                        -ms-flex-pack: start;
                            justify-content: start;
            -webkit-box-align: normal;
                -ms-flex-align: normal;
                    align-items: normal;
        } */

        .eset-div {
            font-family: Poppins, Arial, Helvetica, sans-serif;
            margin-top: 6vh;
            margin-left: 5%;
        }

        .head p {
            font-family: Poppins, Arial, Helvetica, sans-serif;
            width: -webkit-fit-content;
            width: -moz-fit-content;width: fit-content;
        }
        /* .head a {
            text-decoration: none;
            color: #006e7c;
        } */

        .head a:hover {
            text-decoration: none;
            color: #006e7c;
        }

        .head a img {
            width: 10vw;
        }

        .head .img-head {
            width: 33vw;
            -o-object-fit: cover;
               object-fit: cover;
            margin-top: 33%;
            border-radius: 10px;
            
        }

        .head .img-div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
                -ms-flex-pack: end;
                    justify-content: end;
        }




.povzetek {
    min-height: 40vh;
    width: 80vw;
    
    /* Centriranje */
    margin-left: auto;
    margin-right: auto;
    
    /* 1. Potegne škatlo GOR čez svetlo zeleno sekcijo */
    margin-top: -20vh; 
    
    /* 2. KLJUČNO: Potegne temno zeleno sekcijo GOR, da se stakne s svetlo zeleno! */
    margin-bottom: -20vh; 

    /* Obdrži škatlo na vrhu (z-index deluje le z position) */
    position: relative; 
    z-index: 10;
    
    border-radius: 20px;
    background-color: white;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Lepša senca, opcijsko */

    /* Obstoječe nastavitve vsebine */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    
    padding: 2rem;
    text-align: center;
}

    .povzetek-col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

        .povzetek h6 {
            font-family: Poppins, Arial, Helvetica, sans-serif;
            text-align: center;
            font-size: 1.6vw;
            margin-bottom: 1rem;
        }

        .povzetek p {
            font-family: Poppins, Arial, Helvetica, sans-serif;
            text-align: center;
            width: 80%;
            font-size: 1.5vw;
        }

        .povzetek p span {
            font-weight: 550;
        }

.koraki {
    background-color: #184e51;
    height: auto;
    padding-bottom: 48vh;
}


    .koraki h2 {
        color: #D9FFE5;
        font-family: Poppins, Arial, Helvetica, sans-serif;
        font-size: 4rem;
        margin-top: 45vh;
    }

    .koraki-p {
        font-family: Poppins, Arial, Helvetica, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        color: #D9FFE5;
        text-align: center;
    }

    .flex-between {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }


       .koraki-slider {
    height: inherit; 
    background-color: #17383A;
    border-radius: 15px;
    margin-top: 5vh;

    /* --- ADD THESE TWO LINES --- */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

            .slider-wrapper {
                position: relative;
                z-index: 3;
                padding-left: 20px;
            }
            .slider-wrapper::before {
                content: '';
                position: absolute;
                /* Start below the center of the first circle and end above the center of the last */
                top: 1.5rem; 
                bottom: 1.5rem;
                /* Position it to align with the center of the circles */
                left: calc(20px + 1.5rem); /* (padding-left + half of circle width) */
                width: 2px;
                background-color: rgba(255, 255, 255, 0.5); /* A softer white */
                z-index: 1; /* Keep it behind the circles */
            }

            .korak {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                gap: 20px;
                -webkit-box-orient: horizontal;
                -webkit-box-direction: normal;
                    -ms-flex-direction: row;
                        flex-direction: row;
                padding-bottom: 20px;
            }

            #korak-1 {
                padding-top: 20px;
            }

           .circle {
                height: 3rem;
                width: 3rem;
                aspect-ratio: 1 / 1;
                border-radius: 50%;
                /* Change background to transparent to see the parent color */
                background: #17383A;
                border: 1px solid white;
                color: #D9FFE5;
                font-size: 1.5rem; /* Slightly smaller number for better fit */
                
                /* Crucial for stacking and positioning the active state effect */
                position: relative;
                z-index: 2; /* Ensure circles are on top of the line */

                /* Re-add flex properties from your original code */
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                    -ms-flex-pack: center;
                        justify-content: center;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease; /* Smooth transitions */
                 -webkit-transition: border-color 0.3s ease;
                 transition: border-color 0.3s ease; 
            }

                .koraki .material-symbols-outlined {
                    font-size: 3rem;
                    color: white;
                    
                }

        .koraki a {
            position: absolute;
                    z-index: 10;
                    right: 9%;
                    top: 208%;
                    width: -webkit-max-content;
                    width: -moz-max-content;
                    width: max-content;
        }

                .circle p {
                    margin: 0;
                    line-height: 1;
                }


                .korak.is-active .circle::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    -webkit-transform: translate(-50%, -50%);
                            transform: translate(-50%, -50%); /* Center it */
                    
                    /* This is the larger green circle */
                    width: 4rem;
                    height: 4rem;
                    background: #35ED54;
                    border-radius: 50%;
                    z-index: -1; /* Place it behind the number */
                    -webkit-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                /* 7. When active, make the circle's border transparent */
                .korak.is-active .circle {
                    border-color: transparent;
                }

                /* 8. When active, change the number's color */
                .korak.is-active .circle p {
                    color: #17383A;
                }

                /* 9. When active, make the text bold and larger */
                .korak.is-active .koraki-slider-p {
                    font-weight: 700;
                    font-size: 1.2rem;
                }

        /*         #circle1 {
                    height: 3rem;
                    width: 3rem;
                    aspect-ratio: 1 / 1;
                    border-radius: 50%;
                    background: #35ED54;
                    color: #17383A;
                    border:none;
                }

                .circle-active {
                    height: 3rem;
                    width: 3rem;
                    aspect-ratio: 1 / 1;
                    border-radius: 50%;
                    background: #35ED54;
                    color: #17383A;
                    border:none;
                } */

                
             .koraki-slider-p {
                color: white;
                font-family: Poppins, Arial, Helvetica, sans-serif;
                margin: 0;
                font-size: 1rem;
                font-weight: 300;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease; /* Smooth transitions */
            }

                 .korak:hover .koraki-slider-p {

                    font-weight: 700;
          
                }

                .korak:hover .circle {
                    
                    background: #35ED54;
                    border-color: #35ED54; 
                }

                .koraki-slider-p-active {
                    color: white;
                    font-family: Poppins, Arial, Helvetica, sans-serif;
                    margin: 0;
                    font-size: 1rem;
                    font-weight: 300;
                }

        .koraki-opis {
            position: relative;
            height: 160%;
            background-color: white;
            border-radius: 15px;
            margin-top: 5vh;
            padding: 0;
            overflow: hidden;
        }


            .img-koraki {
                aspect-ratio: 21 / 9 ;
                -o-object-fit: cover;
                   object-fit: cover;
                   border-radius: 15px 15px 0 0;
            }

            .opis-wrapper {
                width: 100%;
                padding: 3vh 3vw;
                background-color: white;
            }

                .opis-move-1 {
                    position: absolute;
                    top: 0;
                    left: 0;
                }

                .opis-move-2, .opis-move-3, .opis-move-4, .opis-move-5, .opis-move-6 {
                    position: absolute;
                    top: 0;
                    left: 0;
                    -webkit-transform: translateX(110%);
                            transform: translateX(110%);
                }

                    .opis-wrapper h3 {
                        font-family: Poppins, Arial, Helvetica, sans-serif;
                        font-size: 1.6rem;
                        text-align: center;
                     }


.nasa-prednost {
    height: auto;
    padding: 20vh 0 20vh 0;
    background: #D9FFE5;
    color: #17383A;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

    .nasa-prednost h2 {
        margin-top: 6vh;
        font-size: 3rem;
    }

    .nasa-prednost p {
        font-size: 1.5rem;
    }

    .nasa-prednost .col-md-5 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: right;
            -ms-flex-pack: right;
                justify-content: right;
    }

    .nasa-prednost img {
        aspect-ratio: 3 / 4;
        -o-object-fit: cover;
           object-fit: cover;
        height: 70vh;
        border-radius: 10px;
        -webkit-box-shadow: 2px 5px 14px rgba(0, 0, 0, 0.4);
                box-shadow: 2px 5px 14px rgba(0, 0, 0, 0.4);
    }


.eset-cert {
    height: auto;
    background-color: #D3FFDF;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    padding: 10vh 0 20vh 0;
}
.eset-cert .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.eset-cert p {
    margin-top: 1rem;
}

.eset-cert h2 {
    font-size: 2.2rem;
}

.eset-cert div p span {
    font-weight: 700;
    font-size: 1.3rem;
    font-style: oblique;
}
.eset-cert div p {
    font-size: 1.3rem;
}
.eset-cert b {
    font-weight: 600;
}

.eset-cert p a {
/*     text-decoration: none; */
    color: black;
}
.eset-cert p a:hover {
    text-decoration: none;
}



.eset-cert ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}

.eset-cert li {
    font-size: 1.2rem;
     font-weight: 400;
}




.eset-cert .col-lg-4 {
    padding-left: 5vw;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
}


.eset-cert::-moz-selection {
            background-color: #8c9d91a6;
        }



        .eset-cert::selection {
            background-color: #8c9d91a6;
        }


@media (max-width: 768px) {

    .eset-cert .col-lg-4 {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5vh;
}
    .eset-cert img {
        width: min(60vw, 400px);;
    }
    .eset-cert {
        padding-bottom: 10vh;
    }
}


.vprasanja {
    height: auto;
    padding: 10vh 0 20vh 0;
    background-color: white;
}

    .vprasanja img {
        margin-top: 20vh;
        display: block;
        margin: auto;
    }


    .vprasanja h2 {
        font-family: Poppins, Arial, Helvetica, sans-serif;
        font-size: 3rem;
/*         text-align: center; */
    }

    .vprasanja h6 {
        font-family: Poppins, Arial, Helvetica, sans-serif;
    }



    .faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    }

    /* Hide the checkbox visually */
    .faq-item input {
        display: none;
    }

    /* Question style */
    .faq-item label {
        display: block;
        font-weight: 300;
        cursor: pointer;
        font-family: Poppins, Arial, Helvetica, sans-serif;
        font-size: 1.2rem;
        margin-top: 20px;
    }

        .vprasanja span {
            float: right;
        }

        .vprasanja input:checked + label span {
            -webkit-transform: rotate(180deg);
                    transform: rotate(180deg);
            -webkit-transition: -webkit-transform 0.3s ease;
            transition: -webkit-transform 0.3s ease;
            transition: transform 0.3s ease;
            transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        }

        .vprasanja label span {
            display: inline-block; /* needed so transform works */
            -webkit-transition: -webkit-transform 0.3s ease;
            transition: -webkit-transform 0.3s ease;
            transition: transform 0.3s ease;
            transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        }

        /* Hide answer by default */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            -webkit-transition: max-height 0.3s ease;
            transition: max-height 0.3s ease;
            margin-top: 25px;
        }

        /* Show answer when checkbox is checked */
        .faq-item input:checked ~ .faq-answer {
            max-height: 200px; /* adjust as needed */
        }




@media (max-width: 1024px) {

.head {
    height: 105vh;
}
.head .container {
    height: 90vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 100px;
}

    .head .col-lg-6 {
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

        .head h1 {
        margin: 0;
        font-family: Poppins, Arial, Helvetica, sans-serif;
        font-size: min(5rem, 14vw);
        font-weight: 600;
        text-align: center;
        margin-top: 20%;
        }

        .head img {
        width: min(90vw, 800px);
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 10px;
        margin: 0;
        }
}


@media (max-width: 768px) {

.head {
    height: 105vh;
}
.head .container {
    height: 90vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 100px;
}

    .head .col-md-6 {
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

        .head h1 {
        margin: 0;
        font-family: Poppins, Arial, Helvetica, sans-serif;
        font-size: min(5rem, 11vw);
        font-weight: 600;
        text-align: center;
        }

        .head .img-head {
        width: min(90vw, 800px);
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 10px;
        margin: 0;
        }

        #head-1 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }
        .eset-div {
            margin-left: 0;
            margin-top: 4vh;
        }

        .head a img {
            width: 23vw;
        }


    .povzetek {
       width: 90vw;
        padding: 0;

    }

        .povzetek h6 {
            font-family: Poppins, Arial, Helvetica, sans-serif;
            text-align: center;
            font-size: min(2rem,7vw);
            margin-bottom: 1rem;
        }

        .povzetek p {
            font-family: Poppins, Arial, Helvetica, sans-serif;
            text-align: center;
            width: auto;
            font-size: unset;
        }


    .koraki {
        padding-top: 10vh;
        padding-left: 10vw;
        padding-right: 10vw;
        padding-bottom: 10vh;
    }

        .koraki h2 {
            margin-top: 0;
        }

        .koraki-slider, .koraki-opis {
            display: none;
        }


        .koraki .faq-item {
            border-bottom: 1px solid white;
        }

        .koraki .faq-item label {
            color: white;
        }

        .koraki .faq-answer {
            color: white;
        }

        .koraki .faq-item input:checked ~ .faq-answer {
        max-height: 100%;}

        .koraki .faq-item img {
            width: 70vw;
            border-radius: 10px;
            display: block;
            margin: auto;
            margin-bottom: 3vh;
        }

        .koraki span {
            float: right;
        }

        .koraki input:checked + label span {
            -webkit-transform: rotate(180deg);
                    transform: rotate(180deg);
            -webkit-transition: -webkit-transform 0.3s ease;
            transition: -webkit-transform 0.3s ease;
            transition: transform 0.3s ease;
            transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        }

        .koraki label span {
            display: inline-block; 
            -webkit-transition: -webkit-transform 0.3s ease;
            transition: -webkit-transform 0.3s ease;
            transition: transform 0.3s ease;
            transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        }

    
    



    .nasa-prednost h2 {
        font-size: min(3rem, 8vw);
    }

    .nasa-prednost img {
        aspect-ratio: 4 / 3;
        height: auto;
        display: block;
        margin: auto;
    }

    .vprasanja img {
        margin-top: 0;
        margin-bottom: 5vh;
    }

    .vprasanja h2 {
        font-size: min(3rem, 6.6vw)
    }

    
}




@media (min-width: 769px) {
    .koraki .faq-item {
        display: none;
    }
}


@media (max-width: 435px) {
    .koraki h2 {
        margin-top: 25vw;
    }
    .head a img {
        width: 35vw;
    }
}