.mycarousel_container {
    position: relative;
    width: 100%;
    padding: 0;
}

.mycarousel {
    position: relative;
    height: 400px;
    padding: 0;
}

.mycarousel_img {
    display: none;
    position: absolute;
    background-size: contain;
    background-repeat: repeat-x;
    left: 0;
    top: 0;
    width: 100%;
    height: 400px;
}

#img_one {
    background-image: url(/resursi/slike/ostalo/Frame\ 23.png);
}

#img_two {
    background-image: url(/resursi/slike/ostalo/air-compressor-photo_resized\ 1.png);
}

#img_three {
    background-image: url(/resursi/slike/ostalo/Frame\ 13.png);
}

#img_four {
    background-image: url(/resursi/slike/ostalo/Frame\ 15.png);
}

#img_five {
    background-image: url(/resursi/slike/ostalo/Frame\ 17.png);
}

#img_six {
    background-image: url(/resursi/slike/ostalo/Frame\ 18.png);
}

#img_seven {
    background-image: url(/resursi/slike/ostalo/Frame\ 20.png);
}

#img_eight {
    background-image: url(/resursi/slike/ostalo/Frame\ 22.png);
}

.mycarousel_content_holder,
.mycarousel_content_holder2 {
    position: relative;
    height: 100%;
    width: 45%;
    left: 55%;
    background-color: rgba(255, 255, 255, 0.85);
}

.mycarousel_content_holder::before,
.mycarousel_content_holder2::before {
    content: "";
    position: absolute;
    width: 15vw;
    height: 400px;
    bottom: 0;
    left: -15vw;
    background-color: rgba(255, 255, 255, 0.85);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transition: all 500ms;
}

.mycarousel_content_holder2::before {
    clip-path: polygon(100% 0, 100% 100%, 100% 100%);
    transition: all 500ms;
}

.mycarousel_content_holder::after,
.mycarousel_content_holder2::after {
    content: "";
    position: absolute;
    width: 15vw;
    height: 400px;
    bottom: 0;
    right: -15vw;
    background-color: rgba(255, 255, 255, 0.85);
    clip-path: polygon(0 0, 0 100%, 0 0);
    transition: all 500ms;
}

.mycarousel_content_holder2::after {
    clip-path: polygon(0 0, 0 100%, 100% 0);
    transition: all 500ms;
}

.moveLeft {
    left: 0;
    transition: all 500ms;
}

.moveRight {
    left: 55%;
    transition: all 500ms;
}


.mycarousel_content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 350px;
    width: 40%;
    top: 25px;
    left: 25%;
}

.mycarousel_button {
    position: absolute;
    height: 50px;
    width: 145px;
    padding: auto;
    font-size: var(--fntsize-default);
    border: none;
    border-radius: 5px;
    outline: none !important;
    align-self: center;
    bottom: 0;
    background-color: var(--clr-mediumBlue);
    color: white;
    font-size: var(--fntsize-medium);
    transition: 200ms;
    transform:translateY(-100%);
    z-index: 5;
}

.mycarousel_button p {
    position: relative;
    display: inline;
    transition: all 200ms;
}

.mycarousel_button:hover>p {
    margin-left: 10px;
    transition: all 200ms;
}

.mycarousel_button:hover {
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    transition: all 200ms;
}

.mycarousel_button::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 50px;
    right: 0;
    bottom: 0;
    background-color: var(--clr-mediumBlue);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transform: scaleX(0);
    z-index: -1;
    transition: all 200ms;
}

.mycarousel_button:hover::before {
    transform: scaleX(1);
    translate: 30px 0;
    transition: transform 500ms translate 200ms;
}

.mycarousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 400px;
    width: 60px;
    margin: 0;
    z-index: 90;
    background-color: rgba(24, 24, 27, 0);
    transition: all 250ms;
}

.mycarousel-arrow>img {
    display: none;
    transition: transform 250ms;
}

.mycarousel:hover>.mycarousel-arrow {
    background-color: rgba(24, 24, 27, .5);
    transition: all 250ms;
}

.mycarousel:hover>.mycarousel-arrow>img {
    display: block;
}

.mycarousel-arrow:hover {
    background-color: rgba(24, 24, 27, .65) !important;
    cursor: pointer;
    transition: all 250ms;
}

.mycarousel-arrow:hover>img {
    transform: scale(1.3);
    transition: transform 250ms;
}

.arr-left {
    left: 0;
}

.arr-right {
    right: 0;
}

.mycarousel_middle_container {
    position: absolute;
    left: 50%;
    bottom: 20px;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
    z-index: 15;
}

.mycarousel_middle {
    content: "";
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 20px;
    background-color: rgba(24, 24, 27, 0);
    border-radius: 25px;
    transition: all 250ms;
}

.mycarousel:hover .mycarousel_middle {
    background-color: rgba(24, 24, 27, .5);
    transition: all 250ms;
}

.mycarousel_middle:hover {
    background-color: rgba(24, 24, 27, .65) !important;
    transition: all 250ms;
}

.mycarousel_circle {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 10px;
    background-color: rgba(180, 180, 180, 0);
    transition: all 250ms;
}

.active_circle {
    background-color: white;
    width: 20px;
    transition: all 500ms;
}

.mycarousel_middle:not(:hover) .active_circle {
    background-color: rgba(180, 180, 180, 0) !important;
    transition: all 250ms;
}


.mycarousel:hover .mycarousel_circle {
    background-color: rgba(180, 180, 180, 1);
    transition: all 250ms;
}

.mycarousel:hover .active_circle {
    background-color: white !important;
    transition: all 250ms;
}

.mycarousel_circle:hover {
    background-color: white !important;
    cursor: pointer;
}

.mycarousel_pause_container {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    border-radius: 20px;
    background-color: rgba(24, 24, 27, 0);
    transition: all 250ms;
}

.mycarousel_pause_container_behind {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    clip-path: circle(50%);
    background-color: rgba(0, 0, 0, 0);
    animation: animationPercentage 6000ms ease-in-out infinite;
    transition: all 250ms;
    z-index: -1;
}

.mycarousel:hover .mycarousel_pause_container_behind {
    background-color: rgba(0, 0, 0, 1);
    transition: all 250ms;
}

@keyframes animationPercentage {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.mycarousel_pause {
    position: relative;
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}

.mycarousel:hover .mycarousel_pause_icon,
.mycarousel:hover .mycarousel_play_icon {
    background-color: rgba(255, 255, 255, .65);
    transition: all 250ms;
}

.mycarousel_pause_container:hover .mycarousel_pause_icon,
.mycarousel_pause_container:hover .mycarousel_play_icon {
    background-color: rgba(255, 255, 255, 1) !important;
    transition: all 250ms;
}

.mycarousel_pause_icon {
    position: relative;
    width: 3px;
    height: 8px;
    top: 10%;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 1px;
}

.mycarousel_pause_icon:last-child {
    margin-left: 2px;
}

.mycarousel:hover .mycarousel_pause_container {
    background-color: rgba(24, 24, 27, .5);
    transition: all 250ms;
}

.mycarousel_pause_container:hover {
    background-color: rgba(24, 24, 27, .65) !important;
    transition: all 250ms;
}

.mycarousel_play_icon {
    width: 6px;
    height: 8px;
    background-color: rgba(180, 180, 180, 0);
    border-radius: 2px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.pause_hidden {
    display: none;
}


.img_active {
    display: block;
}

/* OSTATAK SAJTA :P */

.najprodavanije {
    width: 80%;
    margin-left: 10%;
}

.kontakt_container {
    position: relative;
    width: 60vw;
    height: 700px;
    margin-top: 100px;
    background-size: cover;
    background-repeat: no-repeat;
}

.kontakt_c_img {
    background-image: url(../resursi/slike/ostalo/cytonn-photography-vWchRczcQwM-unsplash.jpg);
}

.servis_c_img {
    background-image: url(../resursi/slike/ostalo/eugen-str-CrhsIRY3JWY-unsplash.jpg);
}

.blured {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    backdrop-filter: blur(0);
    transition: all 250ms;
}

.kontakt_container:hover>.blured {
    backdrop-filter: blur(3px);
    transition: all 250ms;
}

.kontakt_info {
    position: relative;
    width: 50%;
    background-color: rgba(255, 255, 255, .7);
    transition: all 250ms;
}

.right_info {
    left: 50%;
    transition: all 250ms;
}

.kontakt_container:hover>.kontakt_info {
    width: 60%;
    background-color: rgba(255, 255, 255, .85);
    transition: all 250ms;
}

.kontakt_container:hover>.right_info {
    left: 40%;
    transition: all 250ms;
}


.k_info_holder {
    height: 400px;
    top: 40%;
    width: 25vw;
    left: 2.5vw;
    transform: translateY(-50%);
    color: white;
    transition: 250ms;
}

.kontakt_container:hover .k_info_holder {
    left: 5.5vw;
    transition: 250ms;
}

.k_info_holder h3 {
    text-align: center;
    color: black;
}

.k_info_holder p {
    display: block;
    color: black;
    font-size: var(--fntsize-big);
}

.normal_button {
    position: relative;
    height: 50px;
    width: 145px;
    padding: auto;
    border: none;
    border-radius: 5px;
    left: 50%;
    bottom: 0;
    background-color: var(--clr-mediumBlue);
    color: white;
    translate: -50% 0;
    transition: 200ms;
}

.normal_button:hover {
    transform: scale(1.1);
    transition: all 200ms;
}

/* END OSTATAK SAJTA */

/* SCROLL CAROUSEL ANMIMATIONS */

.img_pop_left {
    animation: animatePopLeft 500ms ease-in-out;
}

.img_pop_right {
    animation: animatePopRight 500ms ease-in-out;
}

.img_push_left {
    animation: animatePushLeft 500ms ease-in-out;
}

.img_push_right {
    animation: animatePushRight 500ms ease-in-out;
}

.text_dissapear>p,
.text_dissapear>h1 {
    animation: animateTextDissapear 150ms forwards;
}

.text_reappepear>p,
.text_reappepear>h1 {
    animation: animateTextReappear 150ms forwards;
}

.triangle_shrink {
    animation: animateLeftTriangleShrink 150ms forwards;
}

@keyframes animatePopLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes animatePopRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes animatePushLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%)
    }
}

@keyframes animatePushRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%)
    }
}

@keyframes animateTextDissapear {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes animateTextReAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes animateLeftTriangleShrink {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

@media only screen and (max-width: 1400px) {
    .mycarousel_img {
        background-size: cover;
    }

    .mycarousel_content {
        height: 100%;
        width: 90%;
        top: 25px;
        left: 5%;
    }

    .mycarousel_content_holder,
    .mycarousel_content_holder2 {
        position: relative;
        height: 80%;
        width: 45%;
        left: 10%;
        top: 10%;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.85);
    }

    .mycarousel_content_holder::before,
    .mycarousel_content_holder2::before {
        display: none !important;
    }

    .mycarousel_content_holder::after,
    .mycarousel_content_holder2::after {
        display: none !important;
    }

    .mycarousel_button {
        align-self: center;
        bottom: 0;
    }

    .mycarousel_content h1{
        font-size: var(--fntsize-big);
    }

    .mycarousel_content p{
        font-size: var(--fntsize-default);
    }    

    .mycarousel-arrow {
        height: 40px;
        width: 40px;
        top: 50%;
        transform: translateY(-50%);
        margin: 10px;
        border-radius: 50%;
        z-index: 90;
        background-color: rgba(24, 24, 27, 0);
        transition: all 250ms;
    }
}

@media only screen and (max-width: 550px){
    .mycarousel_content_holder,
    .mycarousel_content_holder2 {
        position: relative;
        height: 80%;
        width: 65%;
        left: 10%;
        top: 10%;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.85);
    }
}