/* LOGO COLOR */
/* #9f1c38 */
/* #bdc3c7 */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 20px;
    font-weight: 100;
    font-family: 'Montserrat', 'sans-serif';
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a:hover {
    cursor: pointer;
}

/************************/
/****** MOBILE PHONE NAVIGATION ******/
/************************/

#nav-nohover {
    z-index: 100;
}

.navbar-menu-nohover-container {
    width: 20px;
    height: 14px;
    position: fixed;
    top: 16px;
    right: 12px;
    z-index: 10;
}

.navbar-menu-nohover {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.navbar-menu-nohover {
    @media only screen and (min-width: 600px) and (hover:hover) {
                visibility: hidden;
            }
}

.navbar-checkbox {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    @media only screen and (max-width: 600px) {
        visibility: visible;
    }
}

.navbar-checkbox-span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #9f1c38;
    display: inline-block;
    transition: all 0.2s;
}

.navbar-checkbox-label:before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 2px;
    background-color: #9f1c38;
    transition: all 0.2s linear;
}

.navbar-checkbox-label:hover:before {
    top: -2px;
}

.navbar-checkbox-label:after {
    content: '';
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    height: 2px;
    background-color: #9f1c38;
    transition: all 0.2s linear;
}

.navbar-checkbox-label:hover:after {
    bottom: -2px;
}

.navbar-checkbox:checked ~ .navbar-checkbox-label:before {
    transform: rotate(135deg);
    top: 50%;
}

.navbar-checkbox:checked ~ .navbar-checkbox-label:after {
    transform: rotate(-135deg);
    top: 50%;
}

.navbar-checkbox:checked ~ .navbar-checkbox-span {
    opacity: 0;
}

.navbar-checkbox:checked ~ .navbar-nohover {
    visibility: visible;
    opacity: 1;
    transform: translateX(145%);
}

.navbar-nohover {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: -100%;
    width: 68%;
    height: 100vh;
    background-image: linear-gradient(#aaaaaa, #ff7b7b);
    z-index: 100;
    transition: all 0.3s linear;
}

.navbar-submenu-nohover {
    position: absolute;
    top: 17%;
    left: 34%;
    transform: translate(-50%, -50%);
    list-style: none;
}

.navbar-submenu-nohover li {
    margin: 20px 0;
}

.navbar-a-nohover {
    position: relative;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #9f1c38;
}

.proizvodi-submenu-nohover {
    visibility: collapse;
    display: none;
    list-style: none;
    transition: all 0.4s;
}

.proizvodi-submenu-nohover li {
    margin: 5px 0;
    transition: all 0.4s;
}

.submenu_item-nohover a:link,
.submenu_item-nohover a:visited
 {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #4200c2;
}

.show-proizvodi-submenu-nohover {
    visibility: visible !important;
    display: block !important;
    position: absolute;
    margin-left: 5px;
    width: max-content;
    list-style: none;
}

.hide-proizvodi-submenu-nohover {
    visibility: collapse;
    display: none;
}

.menu_kontakt {
    transform: translateY(0);
    transition: all 0.3s;
}

.moveDown-menu_kontakt {
    transform: translateY(296px);
}

.moveUp-menu_kontakt {
    transform: translateY(0);
}

/************************/
/****** NAVIGATION ******/
/************************/

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #252525;
    z-index: 100;
    padding-bottom: 10px;

}


nav {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}


.nav-logo {
   margin-left: 15px;
   margin-top: 15px;

   @media only screen and (max-width: 600px),
        only screen and (hover:none) {
            padding-top: 10px;
            background-color: white;
            width: 100%;
            text-align: center;
            margin:0;
            position: fixed;
            top: 0;
            z-index: 10;
        }
}

.img-logo {
    height: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .img-logo {
        height: 60px;
    }
}

@media only screen and (max-width: 1200px) {
    .img-logo {
        height: 50px;
    }
}

@media only screen and (max-width: 1000px) {
    .img-logo {
        height: 40px;
    }
}

@media only screen and (max-width: 700px) {
    .img-logo {
        height: 35px;
    }
}

@media only screen and (max-width: 600px),
        only screen and (hover:none) {
    .img-logo {
        height: 35px;
    }
}

.navbar {
    font-size: 105%;
    position: relative;
}

.navbar {
    @media only screen and (max-width: 600px),
            only screen and (hover:none) {
                display: none;
                opacity: 0;
                visibility: hidden;
            }
}

.navbar ul {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;

}

.navbar ul li:not(.submenu li, .fa-navbar li) {
    align-content: center;
    margin: 0 50px;
    font-size: 60%;
    font-weight: 500;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .navbar ul li:not(.submenu li, .fa-navbar li) {
        margin: 0 35px;
        font-size: 55%;
    }
}

@media only screen and (max-width: 1200px) {
    .navbar ul li:not(.submenu li, .fa-navbar li) {
        margin: 0 30px;
        font-size: 50%;
    }
}

@media only screen and (min-width: 900px) and (max-width: 1000px) {
    .navbar ul li:not(.submenu li, .fa-navbar li) {
        margin: 0 35px;
        font-size: 45%;
    }
}

@media only screen and (min-width: 800px) and (max-width: 900px) {
    .navbar ul li:not(.submenu li, .fa-navbar li) {
        margin: 0 25px;
        font-size: 40%;
    }
}

@media only screen and (max-width: 800px) {
    .navbar ul li:not(.submenu li, .fa-navbar li) {
        margin: 0 18px;
        font-size: 38%;
    }
}

@media only screen and (max-width: 700px) {
    .navbar ul li:not(.submenu li, .fa-navbar li) {
        margin: 0 10px;
        font-size: 38%;
    }
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
}

.navbar-a {
    position: relative;
    cursor: pointer;
    padding: 10px 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px),
        only screen and (max-width: 1200px) {
    .navbar-a {
        padding: 5px 5px;
    }
}

@media only screen and (max-width: 1000px) {
    .navbar-a {
        padding: 3.5px 3.5px;
    }
}

@media only screen and (max-width: 700px) {
    .navbar-a {
        padding: 2.5px 2.5px;
    }
}

.navbar-a:before,
.navbar-a:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: transparent;
    transition: all 0.3s;
}

@media only screen and (max-width: 1200px) {
    .navbar-a:before,
    .navbar-a:after {
        width: 6px;
        height: 6px;
    }
}

.navbar-a:before {
    top: -1.5px;
    left: -1.5px;
    border-top: 2.5px solid #ffffff;
    border-left: 2.5px solid #ffffff;
}

@media only screen and (max-width: 1200px) {
    .navbar-a:before {
        top: -0.5px;
        left: -0.5px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .navbar-a:before {
        border-top: 1.5px solid #ffffff;
        border-left: 1.5px solid #ffffff;
    }
}

@media only screen and (max-width: 1200px) {
    .navbar-a:before {
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }
}

.navbar-a:after {
    bottom: -1.5px;
    right: -1.5px;
    border-right: 2.5px solid #ffffff;
    border-bottom: 2.5px solid #ffffff;
}

@media only screen and (max-width: 1200px) {
    .navbar-a:after {
        bottom: -0.5px;
        right: -0.5px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .navbar-a:after {
        border-right: 1.5px solid #ffffff;
        border-bottom: 1.5px solid #ffffff;
    }
}

@media only screen and (max-width: 1200px) {
    .navbar-a:after {
        border-right: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
    }
}

.navbar-a:hover::before,
.navbar-a:hover::after {
    width: 100%;
    height: 100%;
}

.navbar .menu_proizvodi:hover .submenu {
    visibility: visible;
    cursor: pointer;
}

.navbar .submenu {
    position: absolute;
    visibility: collapse; 
    display: flex !important;
    flex-flow: column !important;
    /* background-color: #060aff; */
    background-color: #787C96;
    border: 1px solid #000000;
    border-radius: 30px;
    z-index: 10;
    padding: 15px;
    transition: visibility 0.5s;
}

.navbar .submenu li {
    position: relative;
    padding: 0 5px;
    margin-top: 16px;
    font-size: 13px;
    line-height: 10px;
    border-radius: 30px;
    /* transition: background-color 0.3s ease-in-out, color 0.3s; */
    height: 28px;
    width: 100%;
    color:#eee;
    cursor: pointer;
}

.submenu_item a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 8px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}

.navbar .submenu_item a:hover,
.navbar .submenu_item a:active {
    color: #fff;
    cursor:pointer;
}

.navbar .submenu_item a:before {
    content: '';
    position: absolute;
    box-sizing: border-box;
    border-radius: 30px;
    background-color: #9f1c38;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform-origin: center;
    transition: transform .3s;
    transform: scale3d(0,1,0);
    z-index: -1;
}

.navbar .submenu_item a:hover::before {
    transform: scale3d(1,1,1);
    transition: transform 0.3s;
}


.fa-navbar {
    padding: 0 30px;
}

.fa-navbar 
.fa-store, .fa-envelope, .fa-phone {
    margin-right: 5px !important;
}

@media only screen and (max-width: 1000px) {
    .fa-navbar {
        padding: 0;
        margin-right: 10px;
    }
}

.fa-navbar-nohover {

    display: none;
    margin-left: 5px;

    @media only screen and (max-width: 600px),
            only screen and (hover:none) {
                display: inline-block;
                position: fixed;
                top: 0;
                left: 0;
                font-size: 7px;
                font-weight: 300;
                list-style: none;
                z-index: 10;
            }
}

.menu-nohover {
    display: none;
}

.fa-navbar-nohover 
.fa-store,
.fa-envelope,
.fa-phone {
    margin-right: 5px;
}

.fa-navbar li {
    font-size: 14px;
    font-weight: 200;
    text-transform: none;
    color: #fff;
    cursor: default;
}

@media only screen and (max-width: 1200px) {
    .fa-navbar li {
    font-size: 12px;
    font-weight: 100;
    }
}

@media only screen and (max-width: 1000px) {
    .fa-navbar li {
    font-size: 10px;
    font-weight: 100;
    }
}

@media only screen and (max-width: 700px) {
    .fa-navbar li {
    font-size: 8px;
    font-weight: 100;
    }
}

.fa-phone {
    color: #787C96;
    font-family:'Montserrat';
}

.fa-store {
    color: #787C96;
    margin-right: 10px;
    /* font-size: 20px; */
}

.blue-color { color: #060aff; }
.bordo-color { color: #9f1c38; }

.fa-envelope {
    color: #787C96;
    margin-right: 10px;
    /* font-size: 20px; */
}

/************************/
/****** HEADER ******/
/************************/

header {
    background-image: linear-gradient(to left,#9f1c38 40%,#fff);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0 auto;
}


@keyframes animate-horizontal {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes animate-vertical {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0%);
    }
}

.line-horizontal:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 19%;
    left: 0;
    background-color: #0000002c;
    animation: animate-horizontal 0.6s linear;
    animation-delay: 0.6s;
    animation-fill-mode:both;
}

.line-horizontal:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 90%;
    left: 0;
    background-color: #0000002c;
    animation: animate-horizontal 0.6s linear;
    animation-delay: 0.6s;
    animation-fill-mode:both;
}

.line-vertical:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    left: 19%;
    bottom: 0;
    background-color: #0000002c;
    animation: animate-vertical 0.6s linear;
    animation-delay: 1.2s;
    animation-fill-mode: both;
}

.line-vertical:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    left: 81%;
    bottom: 0;
    background-color: #0000002c;
    animation: animate-vertical 0.6s linear;
    animation-delay: 1.2s;
    animation-fill-mode: both;
}

/************************/
/****** SWIPER AUTOPLAY ******/
/************************/

.swiper {
    position: absolute !important;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    border-radius: 30px;
    color: #000;

    @media only screen and (max-width: 1200px) {
        height: 50%;
    }

    @media only screen and (max-width: 600px) {
        width: 100%;
        border-radius: 0;
        height: 70%;
    }

  }

  .swiper-text {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-0%, -50%);
    font-size: 20px;
    padding-right: 80px;
    letter-spacing: 0.7px;

    @media only screen and (max-width: 1800px) {
        font-size: 18px;
}

    @media only screen and (max-width: 1200px) {
        font-size: 16px;
    }

    @media only screen and (max-width: 900px) {
        padding-right: 50px;
        letter-spacing: 0;
    }

    @media only screen and (max-width: 600px) {
        padding: 0 20px;
        padding-top: 20px;
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0);
    }

  }

  .swiper-text h2 {
    font-weight: 500;

    @media only screen and (max-width: 1200px) {
        font-size: 22px;
    }

    @media only screen and (max-width: 900px) {
        font-size: 20px;
    }

    @media only screen and (min-width: 600px) and (max-width: 800px) {
        font-size: 16px;
    }

    @media only screen and (max-width: 600px) {
        font-size: 14px;
    }

  }

  .swiper-text p {
    padding-top: 35px;
    line-height: 1.5;
    word-spacing: 1.5px;
    font-weight: 200;
    font-size: 16px;

    @media only screen and (max-width: 1200px) {
        line-height: 1.2;
        word-spacing: 1.5px;
        padding-top: 20px;
        font-size: 15px;
    }

    @media only screen and (max-width: 900px) {
        line-height: 1.2;
        word-spacing: 0;
        font-size: 14px;
    }

    @media only screen and (max-width: 700px) {
        font-size: 12px;
    }

  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    @media only screen and (max-width: 600px) {
        display: flex !important;
        flex-flow: column wrap;
        justify-content: flex-start;
        align-items: center;
    }
  }

  .swiper-slide img {
    display: block;
    height: 100%;
    object-fit: cover;

    @media only screen and (max-width: 600px) {
        /* width: 100%; */
        height: 45%;
    }
  }

  .swiper-slide-img-3 {

    @media only screen and (max-width: 600px) {
        width: 100% !important;
        height: 45% !important;
        position: relative !important;
    }
  }

  .swiper-slide-video-prohrom {

    @media only screen and (max-width: 600px) {
        position: relative !important;
        width: 100%;
        height: 45%;
    }
  }

  .fa-screwdriver-wrench-mobile {

    font-size: 120px !important;
    height: 100% !important;
    width: 50% !important;
    display: flex !important;
    flex-flow: column !important;
    align-items: center !important;
    justify-content: center !important;

    @media only screen and (max-width: 800px) {
        display: flex  !important;
        flex-flow: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        width: 50% !important;
        font-size: 100px  !important;
    }

    @media only screen and (max-width:600px) {
        height: 45% !important;
        width: 100% !important;
        display: flex !important;
        flex-flow: column  !important;
        align-items: center !important;
        justify-content:center !important;
        font-size: 80px !important;
    }

  }

  .swiper-slide-img-5 {
    @media only screen and (max-width: 600px) {
        position: relative !important;
        width: 100% !important;
    }
  }

  .swiper-slide-img-6 {
    @media only screen and (max-width: 600px) {
        width: 100% !important;
        height: 45% !important;
        position: relative !important;
    }
  }

  .swiper-slide-img-burgije-container {

    display: flex;
    flex-flow: column;
    align-items: center;
    height: 100%;
    width: 50%;

    @media only screen and (max-width: 600px) {
        width: 100% !important;
        height: 45%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }
  }

  .swiper-slide-img-burgije {
    height: 200px;
    width: 200px;
    position: relative;
  }

  .swiper-slide-img-4-container {

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;

    @media only screen and (max-width: 600px) {
        width: 100% !important;
        height: 45%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }
  }

  .swiper-slide-img-4 {
    object-fit: contain;
    width: 100%;
    height: 100% !important;

    @media only screen and (max-width: 600px) {
        translate: -20px;
    }
  }

  .swiper-slide-img-7 {
    width: 40%;
  }

  .swiper-slide-img-8 {
    width: 21%;
  }

  .swiper-slide-img-9 {
    width: 25%;
  }

  .swiper-slide-img-9--20 {
    width: 20%;
  }

  .swiper-slide-img-10 {
    width: 30%;
  }

  .swiper-slide-img-3,
  .swiper-slide-img-5,
  .swiper-slide-img-6
  /* .swiper-slide-img-7, */
  /* .swiper-slide-img-8, */
  /* .swiper-slide-img-9 */ {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    /* left: -20%; */
  }

.swiper-slide-img-2-container,  
.swiper-slide-img-7-container,
.swiper-slide-img-8-container,
.swiper-slide-img-9-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 100%;
    width: 50%;

    @media only screen and (max-width: 600px) {
        flex-flow: row wrap;
        height: 45%;
        width: 100%;
        justify-content: space-evenly;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    @media only screen and (max-width:1200px) {
        font-size: 25px !important;
    }

    @media only screen and (max-width:800px) {
        font-size: 20px !important;
    }
}

  .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }

  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);

    @media only screen and (max-width: 900px) {
        stroke-width: 2px;
    }
    @media only screen and (min-width: 900px) and (max-width: 1200px) {
        stroke-width: 3px;
    }
    @media only screen and (max-width: 600px) {
        stroke-width: 1px;
    }
  }

  @media only screen and (max-width: 900px) {
    .autoplay-progress span {
        font-size: 10px;
    }
    .autoplay-progress circle {
        r: 14;
    }
  }

  @media only screen and (max-width: 600px) {
    .autoplay-progress span {
        font-size: 8px;
    }

    .autoplay-progress circle {
        r: 12;
    }
  }

/************************/
/****** O NAMA SECTION ******/
/************************/

#o_nama {
    scroll-margin-block-start: 100px;
}
  .o-nama-section {
    position: relative;
    background-image: linear-gradient(to left,#9f1c38 40%,#fff);
    background-size: 100%;
    height: 100vh;
    
    /* @media only screen and (max-width: 1400px) {
        height: 80vh;
    }
    
    @media only screen and (max-width: 1200px) {
        height: 70vh;
    }

    @media only screen and (max-width: 800px) {
        height: 60vh;
    } */


  }

  .o-nama-section img.img-salesman {
    position: absolute;
    height: 800px;
    right: 50px;
    top: 10vh;

    @media only screen and (max-width: 1800px) {
        height: 80%;
    }

    @media only screen and (min-width:1200px) and (max-width: 1400px) {
        height: 75%;
    }

    @media only screen and (max-width: 1200px) {
        height: 80%;
        right: 20px;
        top: 25%;
    }

    @media only screen and (max-width: 1000px) {
        height: 65%;
        right: 20px;
        top: 35%;
    }

    @media only screen and (max-width: 800px) {
        height: 60%;
        right: 0;
        top:35%;
    }

    @media only screen and (max-width: 600px) {
        right: 0;
        height: 50%;
        top: 55%;
    }
  }

  .o-nama-section img.img-rocket {
    position: absolute;
    height: 400px;
    left: 50px;
    top: 10vh;

    @media only screen and (max-width: 1800px) {
        height: 35%;
    }

    @media only screen and (min-width:1200px) and (max-width: 1400px) {
        height: 30%;
    }

    @media only screen and (max-width:1200px) {
        height: 25%;
    }

    @media only screen and (max-width:1000px) {
        height: 25%;
    }

    @media only screen and (max-width: 800px) {
        height: 25%;
        right: 20px;
    }

    @media only screen and (max-width:600px) {
        top: 5%;
        left: 5%;
    }

  }

  .o-nama-text {
    font-size: 18px;
    font-weight: 200;
    line-height: 2;
    letter-spacing: 0.6px;
    position: absolute;
    left: 24%;
    top: 22%;
    width: 38%;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.869);
    border-radius: 30px;
    padding: 20px;

    @media only screen and (max-width: 1800px) {
        font-size: 16px;
    }

    @media only screen and (max-width: 1600px) {
        font-size: 14px;
    }

    @media only screen and (max-width: 800px) {
        font-size: 12px;
    }

    @media only screen and (max-width: 600px) {
        font-size: 11px;
        background-color: #323232e3;
        color: whitesmoke;
        width: 60%;
        top: 25%;
        left: 15%;
    }
  }

  .o-nama-text p {
    margin-top: 20px;

    @media only screen and (max-width:1200px) {
        margin-top: 10px;
    }
  }

   /************************/
/****** PROIZVODI SECTION ******/
/************************/

#proizvodi {
    background-color: #edeaea;
    scroll-margin-block-start: 180px;

    @media only screen and (max-width: 600px) {
        background-image: linear-gradient(to left, #9f1c38 40%, #fff);
    }
}

.proizvodi-wraper {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    height: 100%;
}

.proizvodi-content {
    position: relative;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    width: 20%;
    height: 315px;
    border-right: 0.4px solid #00000042;
    border-top: 0.4px solid transparent;
    border-left: 0.4px solid transparent;
    border-bottom: 0.4px solid transparent;
    background-color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    
    @media only screen and (max-width: 600px) {
        width:43%;
        height: 150px;
        margin: 10px 10px;
        border-right: none;
        border-radius: 20px;
    }
}

.proizvodi-content a {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    flex-flow: column;
    align-items: center;
    color: #eee;
}

.proizvodi-content img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

.proizvodi-content:hover,
.proizvodi-content:active {
    border: 0.4px solid #0000008f;
    box-sizing: border-box;
    cursor: pointer;
}

.proizvodi-content:hover img,
.proizvodi-content:active img {
    /* transform: scale(0.9); */
    opacity: 0.6;
    /* mask-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)); */

    @media only screen and (max-width: 600px) and (hover:none) {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.proizvodi-content:hover .proizvodi-text {
    transform: scale(1.3);

    @media only screen and (max-width: 600px) {
        transform: translate(-50%,-50%);

    }
}

.proizvodi-text {
    background-color: #787C96;
    height: 40px;
    width:max-content;
    bottom: 100px;
    display: flex;
    align-items: center;
    position: absolute;
    padding: 10px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 30px;
    z-index: 9;
    transition: transform 0.3s;

    @media only screen and (max-width: 600px) {
        font-size: 14px;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        justify-content: center;
        border-radius: 0;
        height: 40%;
        padding: 0;
    }
}

.proizvodi-text a {
    color: whitesmoke;
    text-decoration: none;
}

.proizvodi-text:hover a {
    color: #fff;
}

.proizvodi-text:hover,
.proizvodi-text:active {
    /* background-color: #9f1c38; */
    cursor: pointer;
}

.proizvodi-text:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #9f1c38;
    border-radius: 30px;
    z-index: -1;
    transform: scale3d(0,1,0);
    transition: transform 0.3s;

    @media only screen and (max-width: 600px) {
        content:none;
    }
}

.proizvodi-text:hover::before {
    transform: scale3d(1,1,1);

    @media only screen and (max-width: 600px) and (hover:none) {
        transform: scale3d(0,0,0);
    }
}


.img-okov-container,
.img-aku-el-container,
.img-abrazivi-container,
.img-rucnialat-container,
.img-boje-container,
.img-htz-container {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: space-around;

    @media only screen and (max-width: 600px) {
        display: inline-block;
        height: 100%;
    }
}

.img-okov,
.img-aku-el {
    object-fit: cover;
}

.img-okov {
    @media only screen and (max-width:600px) {
        height:18% !important;
    }
}

.img-aku-el {
    @media only screen and (max-width:600px) {
        height:20% !important;
    }
}

.img-abrazivi-container img {
    @media only screen and (max-width: 600px) {
        height: 26% !important;
    }
}

.img-rucnialat-container img {
    @media only screen and (max-width: 600px) {
        height: 25% !important;
    }
}

.img-boje-container img {
    @media only screen and (max-width: 600px) {
        height: 25% !important;
    }
}

.img-htz-container img {
    @media only screen and (max-width: 600px) {
        height: 150% !important;
    }
}

.fa-paint-roller {

    font-size: 150px;
    color:#9f1c38;

    @media only screen and (max-width: 600px) {
        font-size: 50px;
        color: #9f1c38;
        translate: 0 40%;
    }
}


  /************************/
/****** CERTIFICATE SECTION ******/
/************************/

.certificate-heading-section {
    padding-top: 15vh;
    position: relative;
    background-image: linear-gradient(to left,#9f1c38 40%,#fff);
    text-align: center;
    align-content: end;

    @media only screen and (max-width:400px) {
      padding-top: 11vh;
    }
}

.certificate-heading {
    letter-spacing: 0.7px;
}

.certificate-heading h3 {
  @media only screen and (max-width: 400px) {
    font-size: 18px;
  }
}

.certificate-heading hr {
    display: inline-block;
    width: 150px;
    height: 5px;
    margin-top: 30px;
    background-color: #787C96;
    border: 0.5px solid #787C96;

    @media only screen and (max-width:400px) {
      width: 100px;
      height: 3px;
    }
}

.certificate-section {
    height: auto;
    background-image: linear-gradient(to left,#9f1c38 40%,#fff);
}

.certificate-wraper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-content: center;
}

.certificate-content {
    position: relative;
    margin: 15px;
    padding: 10px 10px;
    font-size: 16px;
    text-align: center;
    width: 25%;
    border-radius: 30px;
    transition: transform 0.3s;

    @media only screen and (max-width: 600px) {
        width: 40%;
        height: fit-content;
        padding: 0;
        margin: 10px;
    }
}


.certificate-content:before,
.certificate-content:after {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    transition: all 0.3s;
}


.certificate-pseudo:before,
.certificate-pseudo:after {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    transition: all 0.3s;
}

.certificate-pseudo:before {
    top: 0;
    right: 0;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}

.certificate-pseudo:after {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
}

.certificate-content:before {
    top:0;
    left:0;
    border-top:1px solid #000;
    border-left: 1px solid #000;
}

.certificate-content:after {
    bottom:0;
    right:0;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

.certificate-content:hover:before,
.certificate-content:hover:after,
.certificate-content:hover .certificate-pseudo:before,
.certificate-content:hover .certificate-pseudo:after {
    width: 50%;
    height: 50%;
    transition: all 0.4s;
}

.certificate-content:before,
.certificate-content:after,
.certificate-pseudo:before,
.certificate-pseudo:after {

    @media only screen and (max-width: 600px),
            only screen and (hover:none) {
        content: none;
    }
}

.certificate-content:hover,
.certificate-content:active {
    transform: scale(1.1);
    /* box-shadow: 3px 5px 6px #0000005c; */
}

.certificate-content img {
    display: inline-block;
    height: 60px;
    object-fit: contain;
    
    @media only screen and (max-width: 600px) {
        height: 40px;
    }
}

.certificate-text h2 { 
    font-size:18px;

    @media only screen and (max-width: 600px) {
        font-size: 16px;
    }

    @media only screen and (max-width: 400px) {
      font-size: 14px;
    }
}

.certificate-text h3 {
    font-size:16px;
    margin-bottom: 10px;

    @media only screen and (max-width: 600px) {
        font-size: 14px;
    }

    @media only screen and (max-width: 400px) {
      font-size: 11px;
    }
}

.certificate-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;

    @media only screen and (max-width: 600px) {
        font-size: 12px;
    }

    @media only screen and (max-width: 400px) {
      font-size: 11px;
    }
}

/************************/
/****** PARTNER SECTION ******/
/************************/

.partner-heading-section {
    background-color: #edeaea;
    height: 20vh;
    display: flex;
    flex-flow: column;
    text-align: center;
    justify-content: end;
}

.partner-wraper {
    background-color: #edeaea;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.partner-content {
    text-align: center;
    margin: 15px;
    width: min-content;
    height: 140px;

    @media only screen and (max-width: 1400px) {
      margin: 8px;
      height: 100px;
    }

    @media only screen and (max-width: 1000px) {
      margin: 5px;
      height: 100px;
    }
}

.partner-content img {
    object-fit: contain;
    width: 70px;
    height: 60px;

    @media only screen and (max-width: 1400px) {
      height: 35%;
    }

    @media only screen and (max-width: 1000px) {
      height: 30%;
    }
}

.partner-content p {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.7px;

    @media only screen and (max-width: 1400px) {
      font-size: 10px;
    }

    @media only screen and (max-width: 1000px) {
      font-size: 10px;
    }
}


.partner-heading {
   padding-top: 6vh;
   background-color: #edeaea;
   display: flex;
   flex-flow: column;
   text-align: center;
   justify-content: end;
   align-items: center;
}

.partner-heading h3 {
  @media only screen and (max-width:1400px) {
    font-size: 18px;
  }

  @media only screen and (max-width: 1000px) {
    font-size: 16px;
  }
}

.partner-heading hr {
    display: inline-block;
    width: 100px;
    height: 3px;
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: #787C96;
    border: 0.5px solid #787C96;

    @media only screen and (max-width: 1000px) {
      height: 2px;
    }
}

/************************/
/****** KONTAKT SECTION ******/
/************************/

.kontakt-section {
    height: 60vh;
    background-color: #252525;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.veleprodaja {
    line-height: 35px;
    width: 30%;

    @media only screen and (max-width: 1600px) {
      font-size: 80%;
    }

    @media only screen and (max-width: 1400px) {
      font-size: 70%;
    }

    @media only screen and (max-width: 1200px) {
      font-size: 60%;
    }

    @media only screen and (max-width: 1000px) {
      width: 45%;
      justify-items: center;
    }

    @media only screen and (max-width: 600px) {
      font-size: 55%;
    }

    @media only screen and (max-width: 400px) {
      width: 49%;
      font-size: 50%;
      justify-items: center;
    }
    
}

.veleprodaja h3 {
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #9f1c38;

    
}

.veleprodaja p {
    color: #ffffff8c;
    font-weight: 200;
    /* display: flex; */
    /* align-items: center; */

    @media only screen and (max-width: 600px) {
      font-weight: 600;
    }
}

.veleprodaja .email-p {
  @media only screen and (max-width: 600px) {
    width: min-content;
  }
}

.tel-veleprodaja {
    color: #afafaf;
}

.maloprodaja {
    line-height: 35px;
    width: 30%;

    @media only screen and (max-width: 1600px) {
      font-size: 80%;
    }

    @media only screen and (max-width: 1400px) {
      font-size: 70%;
    }

    @media only screen and (max-width: 1200px) {
      font-size: 60%;
    }

    @media only screen and (max-width: 1000px) {
      width: 45%;
      justify-items: center;
    }

    @media only screen and (max-width: 600px) {
      font-size: 55%;
    }

    @media only screen and (max-width: 400px) {
      width: 49%;
      font-size: 50%;
      justify-items: center;
    }
}

.maloprodaja h3 {
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #9f1c38;
}

.maloprodaja p {
    color: #ffffffa1;
    font-weight: 200;
    /* display: flex; */
    /* align-items: center; */

    @media only screen and (max-width: 600px) {
      font-weight: 600;
    }

}

.maloprodaja .email-p {
  @media only screen and (max-width: 600px) {
    width: min-content;
  }
}

.tel-maloprodaja {
    color: #afafaf;
}

ion-icon {
    font-size: 22px;
    /* color: #9f1c38; */
    margin-right: 6px;
    vertical-align: text-bottom;

    @media only screen and (max-width: 1600px) {
      font-size: 20px;
    }

    @media only screen and (max-width: 1400px) {
      font-size: 18px;
    }


    @media only screen and (max-width: 1200px) {
      font-size: 16px;
    }


    @media only screen and (max-width: 1000px) {
      font-size: 16px;
    }
}

.googlemap-btn {
    text-decoration: none;
    color: #eee;
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-top: 15px;
    font-weight: 700;
    letter-spacing: 1.3px;

    @media only screen and (max-width: 1600px) {
      font-size: 80%;
    }

}

.nav-kontakt {
    margin-left: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18%;
    border-left: 1px solid #9f1c38;

    @media only screen and (max-width: 1600px) {
      font-size: 80%;
    }

    @media only screen and (max-width: 1400px) {
      font-size: 70%;
    }

    @media only screen and (max-width: 1200px) {
      font-size: 60%;
    }

    @media only screen and (max-width: 1000px) {
      width: 50%;
      margin: 0;
      border-left: 0;
      border-top: 1px solid #9f1c38;
    }
}

.nav-kontakt-menu {
    list-style: none;

    @media only screen and (max-width: 1000px) {
      display: flex;
      flex-flow: row;
    }
}

.nav-kontakt-li {
    margin: 25px 0;
    color: #ffffffa1;

    @media only screen and (max-width: 1000px) {
      margin: 20px;
      width: max-content;
    }

    @media only screen and (max-width: 600px) {
      margin: 10px;
    }
}

.nav-kontakt-li a {
    text-decoration: none;
    color: #ffffffa1;

    @media only screen and (max-width: 600px) {
      font-weight: 600;
    }
}