:root{ /*variables*/
    --Pozadi: #091419;/*#050b0e*/
    --Text: #ffffff;
    --Primary: #06ff7a;
    --Secondary: #4bf1e4;
    --Accent: #02fe34;
    --Text2: #000000;
    --Pozadi2: #000000;
    --Pozadi3: #4d4d4d;
    --Pozadi4: #1d1d1d;
    --Text3: #061a00;
    --Ruda: #de0000;
    --Yellow: #f0b000;

    --highlight: #797979;

    --wheelHalf: 11.25%;

    --blueTheme: #06f6ff;
    --violetTheme: #9c7eff; 
    --pinkTheme: #ff68f0;
}

@media(max-aspect-ratio: 8/15){/*480/900*/
    :root{
        --menuHeight: calc(clamp(4.8vw, 9.6vh, 9.6vh)*1);
    }
    div.menu{
        flex-direction: row;
        justify-content: space-between;
    }
    div.menu div.logoPart{
        height: 100%;
        margin-top: 0;
    }
    div.menu div.logoPart a{
        height: 60%;
        margin-left: clamp(1.5vw, 2.5vh, 3vh);
        margin-right: clamp(1.5vw, 2vh, 3vh);
    }
    div.menu div.contentMenu{
        margin-bottom: 0;
    }
    div.menu div.contentMenu div.left a{
        font-size: clamp(1.3vw, 2.6vh, 2.6vh);
    }
    div.menu div.contentMenu div.right a{
        height: clamp(1.3vw, 2.6vh, 2.6vh);
    }
}

#menuFixed{
    transition-property: opacity;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    pointer-events: none;
}
#menuFixed.show{
    opacity: 1;
    transition-duration: 0.2s;
    z-index: 2;
    pointer-events: all;
}

h1.mainHeading{
    color: var(--Text);
    font-size: clamp(2.5vw, 3.5vh, 5vh);
    font-weight: 500;
    margin: clamp(1.5vw, 3vh, 3vh);
    margin-top: 1vh;
    margin-bottom: clamp(0.5vw, 1vh, 1vh);
    text-align: center;
}
div.landingSection{
    width: 100%;
    min-height: calc(100vh - var(--menuHeight));
    background: linear-gradient(to bottom, var(--Pozadi2), var(--Pozadi));
    position: relative;
}
div.landingSection div.landing{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
}

div.landingSection a.downArrow{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(3vw, 6vh, 6vh);
    margin-bottom: clamp(1vw, 2vh, 2vh);
    opacity: 0.3;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
div.landingSection a.downArrow.hidden{
    opacity: 0;
    pointer-events: none;
}
div.landingSection a.downArrow img{
    object-fit: contain;
    width: 100%;
    margin-bottom: 0;
    transition-property: margin-bottom;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
@media (min-width: 1200px){
    div.landingSection a.downArrow:hover{
        opacity: 0.7;
    }
    div.landingSection a.downArrow:hover img{
        margin-bottom: clamp(0.25vw, 0.5vh, 0.5vh);
    }
}

div.landingSection div.landing div.landingLeft{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: clamp(1vw, 2.5vh, 2.5vh);
    padding-right: clamp(1vw, 2.5vh, 2.5vh);
    padding-top: clamp(6vw, 4vh, 12vh);
    padding-bottom: clamp(2vw, 4vh, 4vh);
}
div.landingSection div.landing div.landingLeft h1{
    color: var(--Primary);
    font-size: clamp(5vw, 6.5vh, 10vh);
    font-weight: 500;
    margin-bottom: clamp(1vw, 2vh, 2vh);
    text-align: left;
    line-height: 1.2;
}
div.landingSection div.landing div.landingLeft p{
    color: var(--Text);
    font-size: clamp(1.4vw, 2.4vh, 2.8vh);
    font-weight: 400;
    margin-bottom: clamp(2vw, 3vh, 4vh);
    text-align: left;
    line-height: 1.5;
    width: clamp(35vw, 56vh, 80vw);
}
div.landingSection div.landing div.landingLeft p span{
    color: var(--Primary);
}
div.landingSection div.landing div.landingLeft p b{
    font-weight: 500;
}
div.landingSection div.landing div.landingLeft p i{
    font-style: italic;
}

div.CTAbuttons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
}
div.CTAbuttons a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: clamp(0.5vw, 1vh, 1vh) clamp(2vw, 4vh, 4vh);
    font-size: clamp(1.4vw, 2.8vh, 2.8vh);
    margin: clamp(1vw, 1.75vh, 2vh) clamp(2vw, 2vh, 4vh);
    border-radius: clamp(2vw, 4vh, 4vh);
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
div.CTAbuttons a.secondary{
    background-color: var(--Pozadi4);
    color: var(--Primary);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0) var(--Pozadi2);
    transition-property: background-color, box-shadow;
}
div.CTAbuttons a.primary{
    background-color: var(--Primary);
    color: var(--Text2);
    font-weight: 500;
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.02) var(--Primary);
    transition-property: background-color, box-shadow;
    transition-duration: 0.5s;
}
div.CTAbuttons a.tertiary{
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.025) var(--Pozadi2);
    background-color: var(--Pozadi4);
    color: var(--Primary);
    transition-property: background-color, box-shadow;
    transition-duration: 0.5s;
}
div.CTAbuttons a.extra{
    font-size: clamp(1.5vw, 3vh, 3vh);
    background-color: var(--Primary);
    color: var(--Text2);
    font-weight: 500;
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.025) var(--Primary);
    transition-property: background-color, box-shadow;
    transition-duration: 0.5s;
}

@media (min-width: 1200px){
    div.CTAbuttons a.secondary:hover{
        background-color: var(--Pozadi2);
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.02) var(--Pozadi2);
    }
    div.CTAbuttons a.primary:hover{
        background-color: var(--Accent);
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.04) var(--Accent);
        transition-duration: 0.3s;
    }
    div.CTAbuttons a.tertiary:hover{
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.035) var(--Primary);
        transition-duration: 0.3s;
    }
    div.CTAbuttons a.extra:hover{
        background-color: var(--Accent);
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.05) var(--Accent);
        transition-duration: 0.3s;
    }
}
div.CTAbuttons a.secondary:active{
    background-color: var(--Pozadi2);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.02) var(--Pozadi2);
}
div.CTAbuttons a.primary:active{
    background-color: var(--Accent);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.04) var(--Accent);
    transition-duration: 0.1s;
}
div.CTAbuttons a.tertiary:active{
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.035) var(--Primary);
    transition-duration: 0.1s;
}
div.CTAbuttons a.extra:active{
    background-color: var(--Accent);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.05) var(--Accent);
    transition-duration: 0.1s;
}

div.landingSection div.landing div.landingRight{
    justify-content: center;
    align-items: center;
}

div.toolWheel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(2vw, 4vh, 4vh);

    padding-top: 0;
    padding-right: 2vw;
    padding-left: 2vw;
}



div.toolWheel div.toolWheelContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(35vw, 55vh, 94vw);
    height: clamp(35vw, 55vh, 94vw);
    /*background-color: var(--Secondary);*/
    border-radius: 50%;
    position: relative;

    animation-name: big;
    animation-duration: 17.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}



div.toolWheel div.toolWheelContainer a.toolWheelItem{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: clamp(1vw, 1.5vh, 2vh);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vw)*0.0175) var(--Pozadi2);
    background-color: var(--Pozadi);
    padding: clamp(0.75vw, 1vh, 1.5vh);
    width: calc(clamp(35vw, 55vh, 89vw)*0.23);
    height: calc(clamp(35vw, 55vh, 89vw)*0.23);
    transition-property: box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    transform: translate(-50%, -50%) rotateZ(0);

    animation-name: small;
    animation-duration: 17.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes big{
    0%{
        transform: rotateZ(0);
    }
    25%{
        transform: rotateZ(-7.5deg);
    }
    50%{
        transform: rotateZ(0deg);
    }
    75%{
        transform: rotateZ(7.5deg);
    }
    100%{
        transform: rotateZ(0deg);
    }
}
@keyframes small{
    0%{
        transform: translate(-50%, -50%) rotateZ(0);
    }
    25%{
        transform: translate(-50%, -50%) rotateZ(7.5deg);
    }
    50%{
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    75%{
        transform: translate(-50%, -50%) rotateZ(-7.5deg);
    }
    100%{
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
}

a.toolWheelItem.item1{
    left: 50%;
    top: 12%;
}
a.toolWheelItem.item2{
    left: 76.87%;
    top: 23.13%;
}
a.toolWheelItem.item3{
    left: 88%;
    top: 50%;
}
a.toolWheelItem.item4{
    left: 76.87%;
    top: 76.87%;
}
a.toolWheelItem.item5{
    left: 50%;
    top: 88%;
}
a.toolWheelItem.item6{
    left: 23.13%;
    top: 76.87%;
}
a.toolWheelItem.item7{
    left: 12%;
    top: 50%;
}
a.toolWheelItem.item8{
    top: 23.13%;
    left: 23.13%;
}



div.toolWheel div.toolWheelContainer a.toolWheelItem img{
    object-fit: contain;
    height: 40%;
}
div.toolWheel div.toolWheelContainer a.toolWheelItem h3{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    min-height: 55%;
    line-height: normal;
    color: var(--Primary);
    font-weight: 500;
    font-size: clamp(1vw, 1.7vh, 2vh);
}

@media (min-width: 1200px){
    div.toolWheel div.toolWheelContainer a.toolWheelItem:hover{
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vw)*0.0225) var(--Primary);
        transition-duration: 0.3s;
    }
    div.toolWheel div.toolWheelContainer.paused{
        animation-play-state: paused;
    }
    div.toolWheel div.toolWheelContainer.paused a.toolWheelItem{
        animation-play-state: paused;
    }
}
div.toolWheel div.toolWheelContainer a.toolWheelItem:active{
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vw)*0.0225) var(--Primary);
    transition-duration: 0.1s;
}


@media (max-aspect-ratio: 19/10){/*1520x800*/
    div.landingSection div.landing{
        padding-top: 5vh;
        padding-left: 5vw;
        padding-right: 5vw;
    }
}
@media (max-aspect-ratio: 71/40){/*1420x800*/
    div.landingSection div.landing{
        padding-top: 7.5vh;
        padding-left: 4vw;
        padding-right: 4vw;
    }
}
@media (max-aspect-ratio: 13/8){/*1300x800*/
    div.landingSection div.landing{
        padding-top: 10vh;
        padding-left: 2.5vw;
        padding-right: 2.5vw;
    }
}
@media (max-aspect-ratio: 1190/900){/*1190x900*/
    h1.mainHeading{
        margin-top: 2vh;
    }
    div.landingSection a.downArrow{
        display: none;
    }
    div.landingSection div.landing{
        padding-top: 2vh;
    }
    div.landingSection div.landing div.landingRight{
        margin-top: clamp(3vw, 2vh, 6vh);
        width: 100%;
    }

    div.toolWheel div.toolWheelContainer a.toolWheelItem img{
        object-fit: contain;
        height: 40%;
    }
    div.toolWheel div.toolWheelContainer a.toolWheelItem h3{
        font-size: clamp(1vw, 1.5vh, 2vh);
    }

    div.toolWheel div.toolWheelContainer{
        animation: none;
    }
    div.toolWheel div.toolWheelContainer a.toolWheelItem{
        animation: none;
    }
}
@media (max-aspect-ratio: 8/15){
    h1.mainHeading{
        margin-top: 3vh;
    }
}
@media (max-aspect-ratio: 11/20){/*440*800*/
    div.landingSection div.landing{
        padding-left: 1vw;
        padding-right: 1vw;
    }
    div.toolWheel div.toolWheelContainer a.toolWheelItem{
        padding: clamp(0.75vw, 0.75vh, 1.5vh);
    }
    div.toolWheel div.toolWheelContainer a.toolWheelItem img{
        object-fit: contain;
        height: 35%;
    }
    div.toolWheel div.toolWheelContainer a.toolWheelItem h3{
        font-size: clamp(1vw, 1.25vh, 2vh);
    }
}
@media (max-aspect-ratio: 9/20){
    div.toolWheel div.toolWheelContainer a.toolWheelItem img{
        object-fit: contain;
        height: 35%;
    }
    div.toolWheel div.toolWheelContainer a.toolWheelItem h3{
        font-size: clamp(1vw, 1.1vh, 2vh);
    }
}

div.stopSwitching{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(2vw, 3vh, 4vh);
}
div.stopSwitching h1.mainHeading{
    color: var(--Primary);
    font-size: clamp(3.25vw, 6vh, 6.5vh);
    margin: clamp(1vw, 2vh, 2vh);
    margin-bottom: 0;
    padding-top: clamp(2.5vw, 5vh, 5vh);
    margin-top: 0;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.008) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.stopSwitching h1.mainHeading.show{
    opacity: 1;
}
div.stopSwitching p.subtext{
    color: var(--Text);
    font-size: clamp(1.8vw, 2.7vh, 3.6vh);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    margin-top: clamp(1vw, 2vh, 2vh);
    margin-bottom: clamp(3vw, 3vh, 6vh);
    width: clamp(60vw, 120vh, 90vw);
}
div.stopSwitching div.whatDoWeHave{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: clamp(85vw, 170vh, 90vw);
    margin-bottom: clamp(2.5vw, 3vh, 5vh);
    border-radius: clamp(1vw, 2vh, 2vh);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.02) var(--Pozadi2);
    padding-left: clamp(0.5vw, 1vh, 1vh);
    padding-right: clamp(0.5vw, 1vh, 1vh);
    padding: clamp(1vw, 2vh, 2vh);
}
div.stopSwitching div.whatDoWeHave div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
div.stopSwitching div.whatDoWeHave div h2{
    position: relative;
    color: var(--Secondary);
    font-size: clamp(2.3vw, 3.6vh, 4.6vh);
    font-weight: 500;
    margin: clamp(3vw, 4vh, 6vh);
    margin-top: clamp(2.25vw, 2.5vh, 4.5vh);
    margin-bottom: clamp(2.25vw, 2.5vh, 4.5vh);
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.0075) var(--Pozadi2));
    cursor: pointer;
    transition-property: filter;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    z-index: 1;
}
div.stopSwitching div.whatDoWeHave div h2::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    color: transparent;
    background: var(--Secondary);
    filter: blur(0px);
    opacity: 0;
    transition: filter 0.5s ease-out, opacity 0.5s ease-out;
    pointer-events: none;
}
         
div.stopSwitching div.whatDoWeHave div h2.grad{
    background: linear-gradient(to right, var(--Primary), var(--Secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.grad::after{
    background: linear-gradient(to right, var(--Primary), var(--Secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradR{
    background: linear-gradient(to right, var(--Secondary), var(--Primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradR::after{
    background: linear-gradient(to right, var(--Secondary), var(--Primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradRGB{
    background: linear-gradient(to right, #ff0000, #fff41e, #00ff00, var(--Secondary), #1e1eff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradRGB::after{
    background: linear-gradient(to right, #ff0000, #fff41e, #00ff00, var(--Secondary), #1e1eff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradViolet{
    color: var(--violetTheme);
    background: linear-gradient(to right, var(--violetTheme), var(--Secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradViolet::after{
    background: linear-gradient(to right, var(--violetTheme), var(--Secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradPink{
    color: var(--pinkTheme);
    background: linear-gradient(to right, var(--Secondary), var(--pinkTheme));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradPink::after{
    background: linear-gradient(to right, var(--Secondary), var(--pinkTheme));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradAccent{
    color: var(--Accent);
    background: linear-gradient(to right, var(--Accent), var(--Primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradAccent::after{
    color: var(--Accent);
    background: linear-gradient(to right, var(--Accent), var(--Primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradAccentR{
    color: var(--Accent);
    background: linear-gradient(to right, var(--Primary), var(--Accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.stopSwitching div.whatDoWeHave div h2.gradAccentR::after{
    color: var(--Accent);
    background: linear-gradient(to right, var(--Primary), var(--Accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

div.stopSwitching div.whatDoWeHave h4{
    font-size: clamp(2vw, 3vh, 4vh);
    font-weight: 400;
    margin: clamp(3vw, 4vh, 6vh);
    margin-top: clamp(2.25vw, 2.5vh, 4.5vh);
    margin-bottom: clamp(2vw, 2vh, 4vh);
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition-property: filter;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

@media (min-width: 1200px){
    div.stopSwitching div.whatDoWeHave div h2.grad:hover::after{
        filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
        opacity: 1;
        transition-duration: 0.3s;
    }
    div.stopSwitching div.whatDoWeHave div h2.gradR:hover::after{
        filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
        opacity: 1;
        transition-duration: 0.3s;
    }
    div.stopSwitching div.whatDoWeHave div h2.gradRGB:hover::after{
        filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
        opacity: 1;
        transition-duration: 0.3s;
    }
    div.stopSwitching div.whatDoWeHave div h2.gradViolet:hover::after{
        filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
        opacity: 1;
        transition-duration: 0.3s;
    }
    div.stopSwitching div.whatDoWeHave div h2.gradPink:hover::after{
        filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
        opacity: 1;
        transition-duration: 0.3s;
    }
    div.stopSwitching div.whatDoWeHave div h2.gradAccent:hover::after{
        filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
        opacity: 1;
        transition-duration: 0.3s;
    }
    div.stopSwitching div.whatDoWeHave div h2.gradAccentR:hover::after{
        filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
        opacity: 1;
        transition-duration: 0.3s;
    }
    
    div.stopSwitching div.whatDoWeHave h4:hover{
        filter: drop-shadow(0 0 clamp(0.35vw, 0.7vh, 0.7vh) var(--Text));
        transition-duration: 0.3s;
    }
}
div.stopSwitching div.whatDoWeHave div h2.grad:active::after{
    filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
    opacity: 1;
    transition-duration: 0.1s;
}
div.stopSwitching div.whatDoWeHave div h2.gradR:active::after{
    filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
    opacity: 1;
    transition-duration: 0.1s;
}
div.stopSwitching div.whatDoWeHave div h2.gradRGB:active::after{
    filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
    opacity: 1;
    transition-duration: 0.1s;
}
div.stopSwitching div.whatDoWeHave div h2.gradViolet:active::after{
    filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
    opacity: 1;
    transition-duration: 0.1s;
}
div.stopSwitching div.whatDoWeHave div h2.gradPink:active::after{
    filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
    opacity: 1;
    transition-duration: 0.1s;
}
div.stopSwitching div.whatDoWeHave div h2.gradAccent:active::after{
    filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
    opacity: 1;
    transition-duration: 0.1s;
}
div.stopSwitching div.whatDoWeHave div h2.gradAccentR:active::after{
    filter: blur(clamp(0.35vw, 0.7vh, 0.7vh));
    opacity: 1;
    transition-duration: 0.1s;
}

div.stopSwitching div.whatDoWeHave h4:active{
    filter: drop-shadow(0 0 clamp(0.35vw, 0.7vh, 0.7vh) var(--Text));
    transition-duration: 0.1s;
}



div.heroSection{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: clamp(3vw, 4vh, 6vh);
}
div.heroSection h1.mainHeading{
    color: var(--Primary);
    width: 100%;
    font-size: clamp(3.25vw, 6vh, 6.5vh);
    margin: clamp(1vw, 2vh, 2vh);
    margin-bottom: clamp(3vw, 3vh, 6vh);
    padding-top: clamp(2vw, 4vh, 4vh);
    margin-top: 1vh;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.008) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.heroSection h1.mainHeading.show{
    opacity: 1;
}
div.heroSection div.heroItem{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: clamp(4.5vw, 4.5vh, 9vh);
    margin-top: clamp(2vw, 2vh, 4vh);
    margin-bottom: clamp(2vw, 2vh, 4vh);
    width: clamp(22vw, 30vh, 80vw);
}
div.heroSection div.heroItem img{
    object-fit: contain;
    height: clamp(5.25vw, 8vh, 10.5vh);
    margin-bottom: clamp(1.5vw, 2vh, 3vh);
}
div.heroSection div.heroItem h2{
    color: var(--Primary);
    font-size: clamp(2.8vw, 4vh, 5.6vh);
    font-weight: 500;
    margin-bottom: clamp(1.5vw, 2.5vh, 3vh);
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.0075) var(--Pozadi2));
}
div.heroSection div.heroItem p{
    color: var(--Text);
    font-size: clamp(1.6vw, 2.6vh, 3.2vh);
    font-weight: 400;
    margin-bottom: clamp(1.5vw, 3vh, 3vh);
    text-align: center;
    line-height: 1.3;
}

div.CTAWin{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: clamp(3vw, 4vh, 6vh);
    margin-bottom: clamp(3vw, 4vh, 6vh);
    border-radius: clamp(1vw, 2vh, 2vh);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.02) var(--Pozadi2);
    background-color: var(--Pozadi2);
    width: clamp(55vw, 110vh, 90vw);
    padding: clamp(2vw, 1.5vh, 4vh);
    padding-top: clamp(3.5vw, 5vh, 7vh);
    padding-bottom: clamp(3.25vw, 4vh, 6.5vh);
    transform: scale(1.005);
    transition-property: box-shadow, transform, opacity;
    transition-duration: 0.5s, 0.5s, 1s;
    transition-timing-function: ease-out;
    opacity: 0;
}
div.CTAWin.show{
    opacity: 1;
}
@media (min-width: 1200px){
    div.CTAWin:hover{
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vh)*0.035) var(--Pozadi2);
        transform: scale(1.015);
        transition-duration: 0.4s;
    }
}

div.CTAWin p{
    color: var(--Primary);
    font-size: clamp(2vw, 3vh, 4vh);
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    max-width: 90%;
}
div.CTAWin p.white{
    color: var(--Text);
}
div.CTAWin p.grey{
    /*color: var(--highlight);*/
    color: var(--Text);
    opacity: 0.8;
}
div.CTAWin p.accent{
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.005) var(--Pozadi2));
}
div.CTAWin p.big{
    font-size: clamp(2.15vw, 3.3vh, 4.3vh);
}
div.CTAWin p.medium{
    font-size: clamp(1.7vw, 2.5vh, 3.4vh);
    max-width: 95%;
}
div.CTAWin p.smaller{
    font-size: clamp(1.55vw, 2.3vh, 3.1vh);
    max-width: 90%;
}
div.CTAWin p.small{
    font-size: clamp(1.3vw, 2.4vh, 2.6vh);
    max-width: 90%;
}
div.CTAWin span{
    font-weight: 500;
}
div.CTAWin div.split{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(1.2vw, 2vh, 2.4vh);
    margin-bottom: clamp(1.2vw, 2vh, 2.4vh);
    opacity: 0.8;
}
div.CTAWin div.split.green{
    opacity: 0.9;
}
div.CTAWin div.split p{
    font-size: clamp(1.2vw, 2.2vh, 2.4vh);
}
div.CTAWin div.split div{
    width: clamp(7vw, 14vh, 20vw);
    border-top: var(--Text) solid clamp(0.11vw, 0.22vh, 0.22vh);
    margin-left: clamp(0.5vw, 1vh, 1vh);
    margin-right: clamp(0.5vw, 1vh, 1vh);
}
div.CTAWin div.split div.green{
    border-top: var(--Primary) solid clamp(0.11vw, 0.22vh, 0.22vh);
}
div.CTAWin div.CTAbuttons{
    margin-top: clamp(2.5vw, 3.5vh, 5vh);
}
div.CTAWin div.CTAbuttons.closer{
    margin-top: clamp(2vw, 3vh, 4vh);
}
div.CTAWin div.CTAbuttons a{
    font-size: clamp(1.4vw, 2.7vh, 2.8vh);
    margin: clamp(1vw, 2vh, 2vh) clamp(2vw, 2vh, 4vh);
}

div.simpleCTA{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: clamp(5.5vw, 9vh, 11vh);
    width: 100%;
}
div.simpleCTA div.CTAbuttons{
    margin-bottom: clamp(0.75vw, 1.5vh, 1.5vh);
}
p.simpleCTAHeading{
    color: var(--Text);
    font-size: clamp(2.25vw, 3.75vh, 4.5vh);
    font-weight: 500;
    text-align: center;
    margin: clamp(1vw, 2vh, 2vh);
    margin-bottom: clamp(1.25vw, 2vh, 2.5vh);
    margin-top: clamp(3vw, 6vh, 6vh);
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
    max-width: 90%;
}
p.simpleCTAHeading.show{
    opacity: 1;
}
p.simpleCTAHeading span{
    color: var(--Primary);
}
p.simpleYellowCTAText{
    color: var(--Yellow);
    font-size: clamp(1.6vw, 2.7vh, 3.2vh);
    font-weight: 400;
    text-align: center;
    margin: clamp(1vw, 2vh, 2vh);
    margin-top: clamp(1.4vw, 2.1vh, 2.8vh);
}


div.controlElement{
    position: absolute;
}

div.ourToolsSection{
    width: clamp(80vw, 160vh, 92vw);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: clamp(3vw, 4vh, 6vh);
}
div.ourToolsSection h1.mainHeading{
    color: var(--Primary);
    width: 100%;
    font-size: clamp(3.5vw, 6vh, 7vh);
    margin: clamp(1vw, 2vh, 2vh);
    margin-bottom: clamp(0.5vw, 0.5vh, 1vh);
    padding-top: clamp(2vw, 4vh, 4vh);
    margin-top: 2vh;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.ourToolsSection h1.mainHeading.show{
    opacity: 1;
}
div.ourToolsSection div.ToolsList{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: calc(clamp(9vw, 16vh, 18vh)*0.5 + clamp(2vw, 4vh, 4vh));
    position: relative;
}
div.ourToolsSection div.ToolsList a.toolItem:nth-child(odd){
    transform: translateY(calc(50% + clamp(2vw, 4vh, 4vh)));
}
div.ourToolsSection div.ToolsList a.toolItem{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: clamp(2vw, 3.5vh, 4vh);
    margin-bottom: clamp(2vw, 3.5vh, 4vh);
    padding: clamp(1.5vw, 2.5vh, 3vh) clamp(2vw, 3vh, 4vh);
    height: clamp(9vw, 16vh, 18vh);
    z-index: 1;
    width: clamp(33vw, 55vh, 90vw);
    border-radius: clamp(1vw, 2vh, 2vh);
    background-color: var(--Pozadi);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 125vw)*0.02) var(--Pozadi2);
    transition-property: box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}
div.ourToolsSection div.ToolsList a.toolItem::before{
    content: "";
    position: absolute;
    width: calc(100%);
    height: 100%;
    border-radius: clamp(1vw, 2vh, 2vh);
    top: 0;
    left: 0;
    background-color: var(--Pozadi);
    z-index: -1;
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 125vw)*0.02) var(--Pozadi2);
    transition-property: box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}
div.ourToolsSection div.ToolsList a.toolItem::after{
    content: "";
    position: absolute;
    top: 50%;
    left: calc(0.5*calc(clamp(80vw, 160vh, 92vw) - clamp(33vw, 55vh, 90vw)*2));
    width: 100%;
    height: clamp(0.125vw, 0.25vh, 0.25vh);
    background-color: var(--Primary);
    z-index: -2;
    transform: translateY(-50%);
    opacity: 0.7;
    box-shadow: 0 0 calc(clamp(0.125vw, 0.25vh, 0.25vh)*4) var(--Primary);
}
div.ourToolsSection div.ToolsList a.toolItem:nth-child(odd)::after{
    left: calc(-0.5*calc(clamp(80vw, 160vh, 92vw) - clamp(33vw, 55vh, 90vw)*2));
}
div.ourToolsSection div.ToolsList div.stredCara{
    position: absolute;
    width: clamp(0.125vw, 0.25vh, 0.25vh);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--Primary);
    z-index: -1;
    opacity: 0.7;
    box-shadow: 0 0 calc(clamp(0.125vw, 0.25vh, 0.25vh)*4) var(--Primary);
}
div.ourToolsSection div.ToolsList div.stredCara::before{
    content: "";
    position: absolute;
    top: calc(-0.5*clamp(0.125vw, 0.25vh, 0.25vh)*5);
    left: 50%;
    width: clamp(1.5vw, 3vh, 3vh);
    height: 6%;
    background: linear-gradient(to bottom, var(--Pozadi) 20%, rgba(0, 0, 0, 0));
    z-index: -2;
    transform: translateX(-50%);
    opacity: 1;
}
div.ourToolsSection div.ToolsList div.stredCara::after{
    content: "";
    position: absolute;
    bottom: calc(-0.5*clamp(0.125vw, 0.25vh, 0.25vh)*5);
    left: 50%;
    width: clamp(1.5vw, 3vh, 3vh);
    height: 6%;
    background: linear-gradient(to top, var(--Pozadi) 20%, rgba(0, 0, 0, 0));
    z-index: -2;
    transform: translateX(-50%);
    opacity: 1;
}
div.ourToolsSection div.ToolsList a.toolItem img{
    object-fit: contain;
    height: 60%;
    margin-right: clamp(1.5vw, 3vh, 3vh);
}
div.ourToolsSection div.ToolsList a.toolItem div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}
div.ourToolsSection div.ToolsList a.toolItem div h2{
    color: var(--Primary);
    font-size: clamp(1.8vw, 3vh, 3.6vh);
    font-weight: 500;
    margin-bottom: clamp(0.2vw, 0.4vh, 0.4vh);
    text-align: left;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.006) var(--Pozadi2));
}
div.ourToolsSection div.ToolsList a.toolItem div p{
    color: var(--Text);
    font-size: clamp(1.25vw, 2.2vh, 2.5vh);
    font-weight: 400;
    text-align: left;
}
div.ourToolsSection div.ToolsList a.toolItem div span{
    font-weight: 400;
    color: var(--highlight);
}

div.ourToolsSection div.moreTools{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: clamp(90vw, 90vh, 90vw);
}
div.ourToolsSection div.moreTools h2{
    color: var(--Primary);
    font-size: clamp(2vw, 3.5vh, 4vh);
    font-weight: 400;
    text-align: center;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.006) var(--Pozadi2));
    width: 100%;
}
div.ourToolsSection div.moreTools a.toolItemMini{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: clamp(1vw, 2vh, 2vh);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vw)*0.02) var(--Pozadi2);
    background-color: var(--Pozadi);
    padding: clamp(0.75vw, 1.5vh, 1.5vh);
    width: clamp(8vw, 15vh, 16vh);
    height: clamp(8vw, 15vh, 16vh);
    margin: clamp(1.25vw, 2vh, 2.5vh);
    transition-property: box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}
div.ourToolsSection div.moreTools a.toolItemMini img{
    object-fit: contain;
    height: 40%;
}
div.ourToolsSection div.moreTools a.toolItemMini h3{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    min-height: 55%;
    line-height: normal;
    color: var(--Primary);
    font-weight: 500;
    font-size: clamp(1vw, 1.9vh, 2vh);
}
div.ourToolsSection div.moreTools a.toolItemMini h3 span{
    font-weight: 400;
    color: var(--highlight);
}

@media (min-width: 1200px){
    div.ourToolsSection div.ToolsList a.toolItem:hover::before{
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.025) var(--Primary);
        transition-duration: 0.3s;
    }
    div.ourToolsSection div.moreTools a.toolItemMini:hover{
        box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vw)*0.025) var(--Primary);
        transition-duration: 0.3s;
    }
}
div.ourToolsSection div.ToolsList a.toolItem:active::before{
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 150vw)*0.025) var(--Primary);
    transition-duration: 0.1s;
}
div.ourToolsSection div.moreTools a.toolItemMini:active{
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vw)*0.025) var(--Primary);
    transition-duration: 0.1s;
}

@media (max-aspect-ratio: 43/34){ /* 1075*850 */
    div.ourToolsSection{
        width: clamp(80vw, 160vh, 92vw);
        margin-bottom: clamp(3vw, 4vh, 6vh);
    }
    div.ourToolsSection h1.mainHeading{
        margin-bottom: clamp(0.1vw, 0.2vh, 0.2vh);
    }
    div.ourToolsSection div.ToolsList{
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        padding-bottom: clamp(2vw, 4.5vh, 4.5vh);
        padding-top: clamp(2vw, 4.5vh, 4.5vh);
    }
    div.ourToolsSection div.ToolsList a.toolItem:nth-child(odd){
        transform: none;
    }

    div.ourToolsSection div.ToolsList a.toolItem{
        margin-top: clamp(2vw, 2.5vh, 4vh);
        margin-bottom: clamp(2vw, 2.5vh, 4vh);
        padding: clamp(1.5vw, 2.5vh, 3vh) clamp(2vw, 2.5vh, 4vh);
        height: clamp(9vw, 16vh, 18vh);
        width: clamp(33vw, 55vh, 90vw);
    }
    div.ourToolsSection div.ToolsList a.toolItem::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: clamp(0.125vw, 0.25vh, 0.25vh);
        transform: translateY(-50%) translateX(-50%);
    }
    div.ourToolsSection div.ToolsList a.toolItem:nth-child(odd)::after{
        left: 50%;
    }
    div.ourToolsSection div.ToolsList div.stredCara::before{
        height: 3%;
        background: linear-gradient(to bottom, var(--Pozadi) 10%, rgba(0, 0, 0, 0));
    }
    div.ourToolsSection div.ToolsList div.stredCara::after{
        height: 3%;
        background: linear-gradient(to top, var(--Pozadi) 10%, rgba(0, 0, 0, 0));
    }
    div.ourToolsSection div.ToolsList a.toolItem img{
        height: 50%;
        margin-right: clamp(1.25vw, 2vh, 2.5vh);
    }
    div.ourToolsSection div.ToolsList a.toolItem div h2{
        font-size: clamp(1.8vw, 2.3vh, 3.6vh);
    }
    div.ourToolsSection div.ToolsList a.toolItem div p{
        font-size: clamp(1.25vw, 1.8vh, 2.5vh);
    }
    
    div.ourToolsSection div.moreTools{
        width: clamp(90vw, 90vh, 92vw);
    }
    div.ourToolsSection div.moreTools h2{
        font-size: clamp(2vw, 3.5vh, 4vh);
    }
    div.ourToolsSection div.moreTools a.toolItemMini{
        padding: clamp(0.75vw, 1vh, 1.5vh);
        width: clamp(8vw, 12vh, 16vh);
        height: clamp(8vw, 12vh, 16vh);
        margin: clamp(1.25vw, 1.4vh, 2.5vh);
    }
    div.ourToolsSection div.moreTools a.toolItemMini img{
        height: 40%;
    }
    div.ourToolsSection div.moreTools a.toolItemMini h3{
        font-size: clamp(1vw, 1.6vh, 2vh);
    }
}


div.imgqSection{
    width: clamp(90vw, 180vh, 96vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: clamp(2vw, 4vh, 4vh);
    margin-bottom: clamp(4vw, 4vh, 8vh);
}
div.imgqSection div.imgq{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
div.imgqSection h2{
    color: var(--Primary);
    font-size: clamp(3vw, 4vh, 6vh);
    font-weight: 400;
    text-align: left;
    font-style: italic;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.008) var(--Pozadi2));
    width: clamp(35vw, 50vh, 80vw);
    margin-top: clamp(2vw, 4vh, 4vh);
    margin-bottom: clamp(3vw, 6vh, 6vh);
    margin-left: clamp(2vw, 4vh, 4vw);
    margin-right: clamp(2vw, 4vh, 4vw);
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.imgqSection h2.show{
    opacity: 1;
}
div.imgqSection div.imgGroup{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
div.imgqSection div.imgGroup div.imgContainer{
    width: clamp(36vw, 60vh, 90vw);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vh)*0.02) var(--Pozadi2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
div.imgqSection div.imgGroup div.imgContainer.high{
    width: clamp(29.5vw, 50vh, 90vw);
    margin: 0 calc((clamp(36vw, 60vh, 90vw) - clamp(29.5vw, 50vh, 90vw)) / 2);
}
div.imgqSection div.imgGroup img{
    object-fit: cover;
    width: 100%;
    transform: scale(1.001);
    transition-property: transform;
    transition-duration: 0.45s;
    transition-timing-function: ease-out;
}

div.imgqSection div.imgGroup p{
    color: var(--Text);
    font-size: clamp(1.1vw, 2.2vh, 2.2vh);
    font-weight: 400;
    text-align: center;
    margin-top: clamp(0.5vw, 1vh, 1vh);
}

@media (min-width: 1200px){
    div.imgqSection div.imgGroup img:hover{
        transform: scale(1.15);
        transition-duration: 0.3s;
    }
}
div.imgqSection div.imgGroup img:active{
    transform: scale(1.2);
    transition-duration: 0.1s;
}


div.faqSection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: clamp(2.5vw, 5vh, 5vh);
    margin-bottom: clamp(5vw, 6vh, 10vh);
    width: clamp(80vw, 160vh, 90vw);
}
div.faqSection h1.mainHeading{
    color: var(--Primary);
    width: 100%;
    font-size: clamp(3.5vw, 5vh, 7vh);
    margin: clamp(1vw, 2vh, 2vh);
    margin-bottom: clamp(1.5vw, 3vh, 3vh);
    margin-top: 2vh;
    padding-top: 0;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.faqSection h1.mainHeading.show{
    opacity: 1;
}
div.faqSection div.faqContainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: clamp(60vw, 120vh, 90vw);
    border: var(--Text) solid clamp(0.1vw, 0.15vh, 0.2vh);
}
div.faqSection div.faqContainer div.faqItem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: clamp(2vw, 1.5vh, 4vh);
    padding-right: clamp(3vw, 1.5vh, 6vh);
    padding-top: clamp(1.5vw, 3vh, 3vh);
    padding-bottom: 0;
    border: var(--Text) solid clamp(0.1vw, 0.15vh, 0.2vh);
    cursor: pointer;
}
div.faqSection div.faqContainer div.faqItem h2{
    color: var(--Primary);
    font-size: clamp(2vw, 3.2vh, 4vh);
    font-weight: 500;
    margin-bottom: clamp(1.5vw, 3vh, 3vh);
    text-align: left;
    transition-property: margin-bottom;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}
div.faqSection div.faqContainer div.faqItem.show h2{
    margin-bottom: clamp(0.4vw, 0.8vh, 0.8vh);
}
div.faqSection div.faqContainer div.faqItem p{
    color: var(--Text);
    font-size: clamp(1.25vw, 2.4vh, 2.5vh);
    font-weight: 400;
    text-align: left;
    line-height: 1.3;
    height: 0;
    transition-property: height;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    overflow: hidden;
}
div.faqSection div.faqContainer div.faqItem p span{
    opacity: 0.75;
}


div.container.by{
    min-height: calc(100vh - var(--menuHeight));
    background: linear-gradient(to bottom, var(--Pozadi2), var(--Pozadi));
    display: flex;
    justify-content: center;
    align-items: center;
}
div.footer.by{
    margin-top: 0;
}
div.byWin{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: clamp(3vw, 6vh, 6vh);
    margin-bottom: clamp(7vw, 10vh, 14vh);
    width: clamp(50vw, 100vh, 90vw);
    min-height: clamp(25vw, 50vh, 50vh);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 115vw)*0.035) var(--Primary);
    border-radius: clamp(1vw, 2vh, 2vh);
    padding: clamp(1.5vw, 1vh, 3vh);
    padding-top: clamp(2.5vw, 5vh, 5vh);
    padding-bottom: clamp(2.5vw, 4vh, 5vh);
}
div.byWin.wider{
    width: clamp(60vw, 120vh, 90vw);
    padding-top: clamp(2vw, 4vh, 4vh);
    padding-bottom: clamp(2.5vw, 4vh, 5vh);
    margin-top: clamp(2.5vw, 5vh, 5vh);
}
div.byWin h1{
    color: var(--Primary);
    font-size: clamp(2.8vw, 4vh, 5.6vh);
    font-weight: 500;
    text-align: center;
    margin-bottom: clamp(0.5vw, 1vh, 1vh);
    width: 90%;
}
div.byWin h2{
    color: var(--Primary);
    font-size: clamp(2.75vw, 4vh, 5.5vh);
    font-weight: 500;
    text-align: center;
    margin-bottom: clamp(0.3vw, 0.6vh, 0.6vh);
    width: 90%;
}
div.byWin h3{
    color: var(--Text);
    font-size: clamp(1.7vw, 3.2vh, 3.4vh);
    font-weight: 600;
    text-align: center;
    margin-bottom: clamp(1.2vw, 2.4vh, 2.4vh);
    margin-top: clamp(0.75vw, 1.5vh, 1.5vh);
}
div.byWin h3 span{
    color: var(--Primary);
}

div.byWin p.subtext{
    color: var(--Text);
    font-size: clamp(1.6vw, 2.7vh, 3.2vh);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    margin-bottom: clamp(1.5vw, 1.5vh, 3vh);
    width: 90%;
}
div.byWin p.subtext.smaller{
    font-size: clamp(1.4vw, 2.3vh, 2.8vh);
    line-height: 1.3;
}
div.byWin p.additionalText{
    color: var(--Text);
    opacity: 0.9;
    font-size: clamp(1.3vw, 2vh, 2.6vh);
    font-weight: 400;
    text-align: center;
    line-height: 2;
    margin-top: clamp(0.75vw, 1.5vh, 1.5vh);
}
div.byWin p.additionalText span{
    color: var(--Primary);
}
div.byWin p.additionalText span.yellow{
    color: var(--Yellow);
}
div.byWin p.errorInfo{
    color: var(--Ruda);
    font-size: clamp(1.3vw, 2.2vh, 2.6vh);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    padding-top: clamp(0.5vw, 0.75vh, 1vh);
    padding-bottom: clamp(0.5vw, 0.75vh, 1vh);
    width: 100%;
}
div.byWin form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: clamp(70%, 60vh, 90%);
}
div.byWin div.inputGroup{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin-bottom: clamp(1vw, 2vh, 2vh);
}
div.byWin div.inputGroup p{
    color: var(--Primary);
    font-size: clamp(1.1vw, 2vh, 2.2vh);
    font-weight: 400;
    margin-bottom: clamp(0.25vw, 0.5vh, 0.5vh);
}

div.byWin div.inputGroup input{
    font-size: clamp(1.2vw, 2.2vh, 2.4vh);
    border: none;
    outline: none;
    padding: clamp(0.35vw, 0.7vh, 0.7vh);
    border-radius: clamp(0.3vw, 0.6vh, 0.6vh);
    background: var(--Pozadi2);
    color: var(--Text);
    width: 100%;
}

div.byWin div.smallInputs{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
div.byWin div.smallInputs div.inputGroup{
    width: clamp(45%, 30vh, 100%);
}

div.byWin div.infoTextWin{
    margin-top: clamp(0.5vw, 1vh, 1vh);
    margin-bottom: clamp(1vw, 2vh, 2vh);
    width: clamp(50%, 70vh, 90%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
div.byWin div.infoTextWin p{
    color: var(--Text);
    font-size: clamp(1.3vw, 2.1vh, 2.6vh);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: clamp(1.5vw, 2.5vh, 3vh);
    width: 100%;
}
div.byWin div.infoTextWin p span{
    color: var(--Primary);
    font-weight: 500;
    font-size: clamp(1.5vw, 2.4vh, 3vh);
    display: inline-block;
    margin-bottom: clamp(0.2vw, 0.4vh, 0.4vh);
}

div.unlockList{
    max-width: 90%;
    margin-top: clamp(1.5vw, 3vh, 3vh);
    margin-bottom: clamp(1.5vw, 3vh, 3vh);
}
div.unlockList h4{
    color: var(--Text);
    font-size: clamp(1.6vw, 3vh, 3.2vh);
    font-weight: 500;
    text-align: left;
    margin-bottom: clamp(0.2vw, 0.4vh, 0.4vh);
}
div.unlockList ul{
    margin-left: clamp(2vw, 2.5vh, 4vh);
    font-size: clamp(1.4vw, 2.2vh, 2.8vh);
    color: var(--Primary);
    font-weight: 400;
}
div.unlockList ul li{
    margin-bottom: clamp(0.3vw, 0.6vh, 0.6vh);
}

img.stripeLogo{
    height: clamp(3vw, 6vh, 6vh);
    margin-top: clamp(2.25vw, 4.5vh, 4.5vh);
    margin-bottom: clamp(1vw, 2vh, 2vh);
}

div.reviewsSection{
    width: clamp(90vw, 180vh, 96vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(5vw, 8vh, 10vh);
}
div.reviewsSection h1{
    color: var(--Primary);
    font-size: clamp(3.5vw, 4.25vh, 7vh);
    width: 100%;
    margin: clamp(1vw, 1vh, 2vh);
    margin-bottom: clamp(1.5vw, 3vh, 3vh);
    margin-top: clamp(1.5vw, 1.75vh, 3vh);
    padding-top: 0;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.reviewsSection h1.mainHeading.show{
    opacity: 1;
}

div.reviewsSection div.reviewItem{
    background: var(--Pozadi2);
    border-radius: clamp(0.5vw, 1vh, 1vh);
    padding: clamp(1.25vw, 2.5vh, 2.5vh);
    margin-bottom: clamp(2.5vw, 4vh, 5vh);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2);
    width: clamp(50vw, 100vh, 90vw);
}
div.reviewsSection div.reviewItem p{
    color: var(--Text);
    font-size: clamp(1.35vw, 2.2vh, 2.7vh);
    margin-bottom: clamp(0.5vw, 1vh, 1vh);
}
div.reviewsSection div.reviewItem p.reviewAuthor{
    color: var(--Primary);
    font-style: italic;
    font-weight: 500;
}
div.reviewsSection div.reviewItem p span{
    color: var(--Primary);
}

div.creatorSection{
    width: clamp(90vw, 180vh, 90vw);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: clamp(4vw, 4vh, 8vh);
    margin-bottom: clamp(5vw, 9vh, 10vh);
}
div.creatorSection img{
    object-fit: contain;
    width: clamp(22vw, 40vh, 80vw);
    box-shadow: 0 0 calc(clamp(50vw, 100vh, 100vh)*0.02) var(--Pozadi2);
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
    opacity: 0;
}
div.creatorSection img.show{
    opacity: 1;
}
div.creatorSection div.creatorText{
    width: clamp(50vw, 60vh, 85vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
div.creatorSection div.creatorText h2{
    color: var(--Accent);
    font-size: clamp(2.25vw, 3.75vh, 9vw);
    font-weight: 500;
    text-align: left;
    margin-bottom: clamp(1vw, 2vh, 2vh);
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    /*background: linear-gradient(to right, var(--Accent), var(--Primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}
div.creatorSection div.creatorText p{
    color: var(--Text);
    font-size: clamp(1.45vw, 2.5vh, 2.9vh);
    font-weight: 400;
    text-align: left;
    margin-bottom: clamp(0.5vw, 1vh, 1vh);
}
div.creatorSection div.creatorText p b{
    font-weight: 500;
}


div.themesSection{
    width: clamp(90vw, 180vh, 96vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(6vw, 8vh, 12vh);
}
div.themesSection h1{
    color: var(--Text);
    font-size: clamp(3.5vw, 4.7vh, 7vh);
    margin: clamp(1vw, 1vh, 2vh);
    margin-bottom: clamp(2.5vw, 4vh, 5vh);
    margin-top: clamp(2vw, 2vh, 4vh);
    padding-top: 0;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;

    background: linear-gradient(to right, var(--Primary), var(--blueTheme), var(--violetTheme), var(--pinkTheme));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
div.themesSection h1.mainHeading.show{
    opacity: 1;
}
div.themesSection div.themesContainer{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: clamp(6vw, 7.5vh, 12vh);
    margin-top: clamp(1vw, 2vh, 2vh);
    width: 90%;
}
div.themesSection div.themesContainer a.themeItem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
div.themesSection div.themesContainer a.themeItem img{
    object-fit: contain;
    width: clamp(7.5vw, 13vh, 15vh);
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    cursor: pointer;
    transition-property: filter;
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
}
@media (min-width: 1200px){
    div.themesSection div.themesContainer a.themeItem:hover img.green{
        filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--Primary));
    }
    div.themesSection div.themesContainer a.themeItem:hover img.blue{
        filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--blueTheme));
    }
    div.themesSection div.themesContainer a.themeItem:hover img.violet{
        filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--violetTheme));
    }
    div.themesSection div.themesContainer a.themeItem:hover img.pink{
        filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--pinkTheme));
    }
}
div.themesSection div.themesContainer a.themeItem:active img.green{
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--Primary));
}
div.themesSection div.themesContainer a.themeItem:active img.blue{
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--blueTheme));
}
div.themesSection div.themesContainer a.themeItem:active img.violet{
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--violetTheme));
}
div.themesSection div.themesContainer a.themeItem:active img.pink{
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.007) var(--pinkTheme));
}


div.themesSection div.themesContainer a.themeItem p{
    color: var(--Text);
    text-decoration: none;
    font-size: clamp(1.5vw, 2.5vh, 3vh);
    margin-top: clamp(1vw, 2vh, 2vh);
    font-weight: 500;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
}
div.themesSection div.themesContainer a.themeItem p.green{
    color: var(--Primary);
}
div.themesSection div.themesContainer a.themeItem p.blue{
    color: var(--blueTheme);
}
div.themesSection div.themesContainer a.themeItem p.violet{
    color: var(--violetTheme);
}
div.themesSection div.themesContainer a.themeItem p.pink{
    color: var(--pinkTheme);
}
div.themesSection div.themesContainer a.themeItem p span{
    color: var(--highlight);
    font-weight: 400;
}

div.processSection{
    width: clamp(90vw, 180vh, 96vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(4vw, 6vh, 8vh);
    margin-top: clamp(1.5vw, 2vh, 3vh);
}
div.processSection h1{
    color: var(--Primary);
    font-size: clamp(3.5vw, 4.25vh, 7vh);
    margin: clamp(1vw, 1vh, 2vh);
    margin-bottom: clamp(1.5vw, 3vh, 3vh);
    margin-top: clamp(2vw, 2vh, 4vh);
    padding-top: 0;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.processSection h1.mainHeading.show{
    opacity: 1;
}
div.processSection div.processItems{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: clamp(90vw, 180vh, 96vw);
    position: relative;
    margin-top: clamp(0.5vw, 1vh, 1vh);
}
div.processSection div.arrow{
    width: clamp(5vw, 10vh, 10vh);
    height: clamp(2vw, 4vh, 4vh);
    background: var(--Secondary);
    clip-path: polygon(
    0% 35%, 55% 35%, 55% 0%, 
    100% 50%, 
    55% 100%, 55% 65%, 0% 65%
    );
    margin: clamp(1vw, 1vh, 2vh);
}
div.processSection div.processItem{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: clamp(4vw, 4.5vh, 8vh);
    margin-top: clamp(2vw, 2vh, 4vh);
    margin-bottom: clamp(2vw, 2vh, 4vh);
    width: clamp(22vw, 30vh, 80vw);
}
div.processSection div.processItem img{
    object-fit: contain;
    height: clamp(5.25vw, 8vh, 10.5vh);
    width: clamp(5.25vw, 8vh, 10.5vh);
    margin-bottom: clamp(1.5vw, 2vh, 3vh);
}
div.processSection div.processItem p{
    color: var(--Primary);
    font-size: clamp(2vw, 3vh, 4vh);
    font-weight: 400;
    margin-bottom: clamp(1.5vw, 2.5vh, 3vh);
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.0075) var(--Pozadi2));
}
div.processSection div.processItem p span{
    color: var(--Text);
    font-weight: 500;
}


div.opinionSection{
    width: clamp(90vw, 180vh, 96vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(4vw, 6vh, 8vh);
}
div.opinionSection h1{
    color: var(--Primary);
    width: 95%;
    font-size: clamp(3.5vw, 4.25vh, 7vh);
    margin: clamp(1vw, 1vh, 2vh);
    margin-bottom: clamp(0.75vw, 1vh, 1.5vh);
    margin-top: clamp(2.25vw, 2.5vh, 4.5vh);
    padding-top: 0;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.009) var(--Pozadi2));
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
div.opinionSection h1.mainHeading.show{
    opacity: 1;
}
div.opinionSection h2{
    color: var(--Text);
    font-size: clamp(2.5vw, 3vh, 5vh);
    font-weight: 400;
    text-align: center;
    margin-bottom: clamp(1.5vw, 3vh, 3vh);
    width: 95%;
    filter: drop-shadow(0 0 calc(clamp(50vw, 100vh, 100vh)*0.0075) var(--Pozadi2));
}
div.opinionSection h2.thankYouMessage{
    color: var(--Accent);
}
div.opinionSection textarea{
    max-width: clamp(40vw, 80vh, 90%);
    min-width: clamp(30vw, 60vh, 70%);
    max-height: 75vh;
    padding: clamp(1vw, 1.5vh, 2vh);
    font-size: clamp(1.2vw, 2vh, 2.4vh);
    margin-bottom: clamp(1vw, 2vh, 2vh);
}