@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');
html{
    font-family: 'Montserrat', sans-serif;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body{
    margin:0;
    font-family: 'Montserrat', sans-serif;
    color: rgb(100,100,100);
    font-size: 16px;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{
    display:block
}
audio,canvas,progress,video{
    display:inline-block;
    vertical-align:baseline
}
audio:not([controls]){
    display:none;
    height:0
}
[hidden],template{
    display:none
}
a{
    background-color:transparent;
    text-decoration: none;
}
a:active,a:hover{
    outline:0
}

a{
    font-weight:700;
    color:rgb(31,52,100);
    text-decoration:underline;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
}

a:hover{
    color:rgb(217,70,78);
}
abbr[title]{
    border-bottom:1px dotted
}
b,strong{
    font-weight:700
}
dfn{
    font-style:italic
}
h1{
    margin:.67em 0;
    font-size:2em
}
mark{
    color:#000;
    background:#ff0
}
small{
    font-size:80%
}
sub,sup{
    position:relative;
    font-size:75%;
    line-height:0;
    vertical-align:baseline
}
sup{
    top:-.5em
}
sub{
    bottom:-.25em
}
img{
    border:0;
    max-width: 100%;
}
svg:not(:root){
    overflow:hidden
}
figure{
    margin:1em 40px
}
hr{
    height:0;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box
}
pre{
    overflow:auto
}
code,kbd,pre,samp{
    font-family:monospace,monospace;
    font-size:1em
}
button,input,optgroup,select,textarea{
    margin:0;
    font:inherit;
    color:inherit
}
button{
    overflow:visible
}
button,select{
    text-transform:none
}
button,html input[type=button],input[type=reset],input[type=submit]{
    -webkit-appearance:button;
    cursor:pointer
}
button[disabled],html input[disabled]{
    cursor:default
}
button::-moz-focus-inner,input::-moz-focus-inner{
    padding:0;
    border:0
}
input{
    line-height:normal;
}
input[type=checkbox],input[type=radio]{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    padding:0
}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{
    height:auto
}
input[type=search]{
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    -webkit-appearance:textfield
}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{
    -webkit-appearance:none
}
fieldset{
    padding:.35em .625em .75em;
    margin:0 2px;
    border:1px solid silver
}
legend{
    padding:0;
    border:0
}
textarea{
    overflow:auto
}
optgroup{
    font-weight:700
}
table{
    border-spacing:0;
    border-collapse:collapse
}
td,th{
    padding:0
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.menu{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:2000;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    font-size:0px;
    padding:15px 0;
}

.menuScrolled{
    
}

.menuBackground{
    position:fixed;
    top:0px;
    left:0;
    right:0;
    width:100%;
    z-index:1900;
}

.menuBackground .background{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:80px;
    opacity:1;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    -webkit-transition:all ease 1s;
    -moz-transition:all ease 1s;
    -ms-transition:all ease 1s;
    -o-transition:all ease 1s;
    transition:all ease 1s;
}

.menuBackground .backgroundScrolled{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:80px;
    opacity:0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,0) 100%);
    -webkit-transition:all ease 1s;
    -moz-transition:all ease 1s;
    -ms-transition:all ease 1s;
    -o-transition:all ease 1s;
    transition:all ease 1s;
}

.menuScrolled .background{
    opacity:0;
}

.menuScrolled .backgroundScrolled{
    opacity:1;
}

.contentWidth{
    width:100%;
    max-width: 960px;
    margin:0 auto;
}


.menu .responsiveHandle{
    top:-200%;
    right:5%;
    width:42px;
    height:30px;
    position:absolute;
    z-index:3000;
}

.menu .responsiveHandle .wrap{
    width:100%;
    height:100%;
}

.menu .responsiveHandle .wrap .topBar{
    top:0;
    left:0;
    height:4px;
    background-color:rgb(31,52,100);
    border-radius:3px;
    width:100%;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    -ms-transform:rotate(0deg);
    -o-transform:rotate(0deg);
    transform:rotate(0deg);
    position:absolute;
}

.menu .responsiveHandle .wrap .middleBar{
    top:50%;
    left:0;
    height:4px;
    position:absolute;
    background-color:rgb(31,52,100);
    border-radius:3px;
    width:100%;
    margin-top:-2px;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.menu .responsiveHandle .wrap .bottomBar{
    bottom:0;
    left:0;
    height:4px;
    position:absolute;
    background-color:rgb(31,52,100);
    border-radius:3px;
    width:100%;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.menu .responsiveHandleActive .wrap .topBar{
    -webkit-transform:rotate(30deg);
    -moz-transform:rotate(30deg);
    -ms-transform:rotate(30deg);
    -o-transform:rotate(30deg);
    transform:rotate(30deg);
    top:44%;
    left:-7%;
    width:116%;
}

.menu .responsiveHandleActive .wrap .bottomBar{
    -webkit-transform:rotate(-30deg);
    -moz-transform:rotate(-30deg);
    -ms-transform:rotate(-30deg);
    -o-transform:rotate(-30deg);
    transform:rotate(-30deg);
    top:44%;
    left:-9%;
    width:116%;
}

.menu .responsiveHandleActive .wrap .middleBar{
    -webkit-transform:rotate(-30deg);
    -moz-transform:rotate(-30deg);
    -ms-transform:rotate(-30deg);
    -o-transform:rotate(-30deg);
    transform:rotate(-30deg);
    top:48%;
    left:-9%;
    width:116%;
}

.menu .logoWrap{
    display:inline-block;
    vertical-align: top;
    position:relative;
    width:152px;
}

.menu .logoWrap .imageWrap{
    width:55px;
    display:inline-block;
    vertical-align: top;
    position:relative;
}

.menu .logoWrap .imageWrap img{
    position:absolute;
    top:-20px;
    left:0;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
}

.menuScrolled .logoWrap .imageWrap img{
    top: -90px;
}

.menu .logoWrap .natpisWrap{
    display:inline-block;
    vertical-align: middle;
    font-family: "Oswald", serif;
    font-size:26px;
    color:rgb(31,52,100);
    line-height: 19px;
    white-space: nowrap;
    width:0px;
    overflow-x:hidden;
    overflow-y:visible;
    padding-left:5px;
    height:60px;
    font-weight:500;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    padding-top:6px;
}

.menuScrolled .logoWrap .natpisWrap{
    width:95px;
}

.menu .logoWrap .natpisWrap span{
    font-size:18px;
    font-weight:200;
}

.menu .menuItems{
    display:inline-block;
    vertical-align: middle;
    width:calc(100% - 152px);
    font-size:18px;
    text-align:right;
}

.menu .menuItems .menuItem{
    display:inline-block;
    vertical-align: middle;
    margin:0 20px;
}

.menu .menuItems .menuItem a{
    font-weight:400;
    text-decoration: none;
}

.menu .responsive{
    display:none;
}

.menu .redButton{
    width:80%;
    margin:10px auto;
    background-color:rgb(237,28,37);
    color:rgb(255,255,255);
    font-family: "Oswald",sans-serif;
    font-size:20px;
    border:2px outset rgba(0,0,0,0.6);
    padding:10px;
    border-radius: 6px;
}

.menu .blueButton{
    width:80%;
    margin:10px auto;
    background-color:rgb(31,52,100);
    color:rgb(255,255,255);
    font-family: "Oswald",sans-serif;
    font-size:20px;
    border:2px outset rgba(0,0,0,0.6);
    padding:10px;
    margin-top:30px;
    border-radius: 6px;
}

.menu .socials{
    font-size:0;
    text-align:center;
}

.menu .socials .social{
    display:inline-block;
    vertical-align: middle;
    width:50px;
    height: 50px;
    margin:10px;
    position:relative;
    border-radius:100px;
    border:1px solid rgb(32,51,100);
}


.menu .socials .social img{
    display:block;
    position:absolute;
    top:50%;
    left:50%;
    width:60%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
}

.home .pageHeader {
   width: 100%;
   height: 100vh; /* Set the height you need */
   position: relative;
   overflow: hidden; /* Ensures no content goes outside the container */
}

.home .pageHeader video {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   object-fit: cover; /* Ensures the video covers the container while keeping its aspect ratio */
   transform: translate(-50%, -50%);
}

.home .pageHeader .titleWrap{
    position:absolute;
    top:50%;
    width:100%;
    left: 0%;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
    text-align:left;
    color:rgb(255,255,255);
    text-shadow: 0px -1px 1px rgba(0,0,0,1);
}

.home .pageHeader .titleWrap .title{
    font-size:50px;
    font-weight:600;
    font-family: "Oswald",sans-serif;
    margin-bottom:10px;
}

.home .pageHeader .titleWrap .subTitle{
    font-size:20px;
    font-weight:500;
    font-family: "Montserrat",sans-serif;
    width:500px;
}


.white{
    width:100%;
    background-color:rgb(255,255,255);
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    position:relative;
}


.home .testimonialWrap .logoWrap{
    width:500px;
    max-width:70%;
    margin:0 auto;
}

.home .testimonialWrap .logoWrap img{
    display:block;
}

.home .testimonialWrap .contentWidth .text{
    text-align: center;
    font-size:20px;
    font-weight:300;
    line-height: 30px;
}

.home .testimonialWrap .hashtags{
    opacity:0.5;
    text-align:center;
    width:100%;
    margin-top:50px;
    padding-bottom:15px;
}

.home .topGradient{
    margin-top:-50px;
    top:0;
    left:0;
    position:relative;
    width:100%;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    height:50px;
}

.home .numbers{
    background-color:rgb(31,52,100);
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(/images/bluePaper.jpg);
    color:rgb(255,255,255);
    padding:50px;
}

.home .numbers .contentWidth{
    font-size:0;
    padding:50px;
    border:2px solid rgb(255,255,255);
    border-radius:10px;
}

.home .numbers .inline{
    width:33.33%;
    display:inline-block;
    vertical-align: top;
    text-align: center;
}

.home .numbers .inline .number{
    font-size:60px;
    font-weight:600;
}

.home .numbers .inline .description{
    font-size:26px;
    font-weight:300;
}

.home .numbers .berzaNaloga{
    font-size:12px;
    border-top:1px solid rgb(255,255,255);
    padding-top:10px;
    margin-top:10px;
}


.home .numbers .berzaNaloga .nalogWrap{
    padding-bottom:10px;
    text-align:center;
    display:block;
    width:200px;
    margin:0 auto;
    margin-bottom:10px;
}

.home .numbers .berzaNaloga .title{
    font-size:26px;
    font-family:"Montserrat",sans-serif;
}

.home .numbers .berzaNaloga .nalogWrap .timestamp{
    font-size:14px;
    font-weight:200;
}

.home .numbers .berzaNaloga .nalogWrap .radnaJedinica{
    font-size:18px;
    font-weight:700;
}

.home .descriptions{
    padding:40px 0;
}

.home .descriptions .contentWidth .inlines{
    font-size:0;
}

.home .descriptions .contentWidth .inlines .inline{
    width:50%;
    display:inline-block;
    vertical-align: middle;
    font-size:16px;
}


.home .descriptions .title{
    font-weight:700;
    font-size:30px;
    color:rgb(31,52,100);
}

.home .descriptions .subTitle{
    font-weight:500;
    font-size:24px;
}

.home .descriptions .descriptionWrap{
    margin-top:30px;
}

.home .descriptions .descriptionWrap .title{
    font-size:20px;
    color:rgb(100,100,100);
}

.home .descriptions .descriptionWrap .iconWrap{
    width:75px;
    height:75px;
    border-radius:150px;
    border:2px solid rgb(32,51,100);
    position:relative;
    margin-bottom:10px;
}

.home .descriptions .descriptionWrap .iconWrap img{
    width:50px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
}

.blueTitle{
    text-align:center;
    padding:20px 0;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image:url(/images/bluePaper.jpg);
    font-size:30px;
    font-weight:500;
    font-family: "Oswald",sans-serif;
    color:rgb(255,255,255);
}

.redTitle{
    text-align:center;
    padding:20px 0;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image:url(/images/redPaper.jpg);
    font-size:30px;
    font-weight:500;
    font-family: "Oswald",sans-serif;
    color:rgb(255,255,255);
}


.galleryWrap{
    background-color:rgb(255,255,255);
    position:relative;
    z-index:200;
}

.galleryWrap .contentWidth{
    padding:0px !important;
}

#gallery{
    font-size:0;
    text-align:left;
}

#gallery .galleryElem{
    width:33.33%;
    aspect-ratio: 1 / 1;
    display:inline-block;
    vertical-align: middle;
    outline:1px solid black;
    background:url(/images/imageLoad.gif);
    background-size:50px;
    background-repeat: no-repeat;
    background-position:center center;
    position:relative;
    overflow:hidden;
}

#gallery .galleryElem .image{
    min-width:100%;
    min-height:100%;
    object-fit: cover;
    display:block;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.galleryWrap .title{
    width:100%;
    background-color:rgb(0,0,0);
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    color: rgb(157, 138, 36);
    padding:20px;
}

.galleryLightbox{
    position:fixed;
    top:50%;
    left:50%;
    width: 0vw;
    height: 0vh;
    opacity:0;
    overflow:hidden;
    background-color:rgba(0,0,0,0.8);
    z-index:10000;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
    transition: all ease 1s;
}

.galleryLightboxOpened{
    width:100vw;
    height:100vh;
    opacity:1;
}

.galleryLightbox .relative{
    width:100%;
    height:100%;
    position:relative;
}

.galleryLightbox .relative .imageWrap{
    width:100%;
    height:90vh;
    top: 5vh;
    overflow:hidden;
    position:relative;
}

.galleryLightbox .relative .imageWrapEasy .image{
    -webkit-transition:all linear 0.5s;
    -moz-transition:all linear 0.5s;
    -ms-transition:all linear 0.5s;
    -o-transition:all linear 0.5s;
    transition:all linear 0.5s;
}



.galleryLightbox .relative .imageWrap .image{
    width:100%;
    position:absolute;
    top:0%;
    left:0%;
    object-fit: cover;
    height:90vh;
    overflow:hidden;
}

.galleryLightbox .relative .imageWrap .image img{
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    background:url(/images/imageLoad.gif);
    background-position:center center;
    background-size:150px;
    background-repeat:no-repeat;    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.galleryLightbox .arrowWrap{
    padding:8px;
    background-color:rgb(255,255,255);
    position:absolute;
    top:50%;
    
    display:flex;
    border-radius: 50%;
    -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, .15);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, .15);
    cursor: pointer;
    opacity: 1;
    transition-duration: .2s;
    transition-property: opacity;
    transform-origin: center center;
}

.galleryLightbox .rightArrow{
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    right:16px;
}

.galleryLightbox .leftArrow{
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    left:16px;
}

.galleryLightbox .arrowWrap:hover{
    opacity:0.8;
}

.galleryLightbox .close{
    position:absolute;
    top:1.25vh;
    right:1vw;
    height:2.5vh;
}

.galleryLightbox .close img{
    max-height:100%;
    display:block;
}

.galleryLightbox .radiosWrap{
    position:absolute;
    width:100%;
    bottom:0;
    left:0;
    right:0;
    height:5vh;
    background-color:rgb(0,0,0);
}

.galleryLightbox .radiosWrap .relative{
    width:100%;
    height:100%;
    position:relative;
    text-align:center;
}

.galleryLightbox .radiosWrap .relative .radios{
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.galleryLightbox .radiosWrap .relative .radios .radioWrap{
    display:inline-block;
    vertical-align: middle;
    width:10px;
    height:10px;
    position:relative;
}

.galleryLightbox .radiosWrap .relative .radios .radioWrap .radio{
    display:inline-block;
    vertical-align: middle;
    width:5px;
    height:5px;
    background-color: rgba(255,255,255,0.5);
    position:absolute;
    top:50%;
    left:50%;
    border-radius:10px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition:all linear 0.5s;
    -moz-transition:all linear 0.5s;
    -ms-transition:all linear 0.5s;
    -o-transition:all linear 0.5s;
    transition:all linear 0.5s;
}

.galleryLightbox .radiosWrap .relative .radios .radioWrap .radioActive{
    width:7px;
    height:7px;
    background-color:rgba(255,255,255,1);
}


.home .logos{
    justify-content: center; /* Align logos in the center */
    align-items: center;
    text-align:center;
}

.home .logos .logoWrap{
  width: 150px; /* Adjust size as needed */
  height: 100px; /* Adjust size as needed */
  display: inline-block;
  margin:10px 20px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.home .logos .logoWrap img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the image fits without cropping */
}


footer{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image:url(/images/bluePaper.jpg);
    padding:20px 0px;
    color:rgb(255,255,255);
    font-size:0;
    position:relative;
}

footer a{
    text-decoration: none;
    color:rgb(255,255,255);
}

footer .logoWrap{
    width:80px;
    display:inline-block;
    vertical-align: middle;
    font-size:12px;
}

footer .infoWrap{
    width:calc( 33.33% - ( 80px / 3) );
    display:inline-block;
    vertical-align: top;
    font-size:12px;
}

footer .contactWrap{
    width:calc( 33.33% - ( 80px / 3) );
    display:inline-block;
    vertical-align: top;
    font-size:12px;
}

footer .socialWrap{
    width:calc( 33.33% - ( 80px / 3) );
    display:inline-block;
    vertical-align: top;
    font-size:12px;
}

footer .title{
    font-size:26px;
    font-weight:500;
    text-align:left;
    margin-bottom:10px;
    font-family:"Oswald",sans-serif;
}

footer .row{
    margin-bottom:15px;
    font-size:0;
}

footer .row .iconWrap{
    width:35px;
    height:35px;
    display:inline-block;
    vertical-align: middle;
    border:1px solid rgb(255,255,255);
    border-radius:35px;
    position:relative;
}


footer .row .iconWrap img{
    display:block;
    width:20px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
}

footer .row .bold{
    width:35px;
    display:inline-block;
    vertical-align: middle;
    font-weight:700;
    font-size:16px;
}

footer .row .content{
    width:calc( 100% - 35px);
    display:inline-block;
    vertical-align: middle;
    font-size:16px;
    padding-left:10px;
}

footer .row .content a{
    font-weight:300;
}

.bluePaperHeader{
    width:100%;
    height:70vh;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(/images/bluePaper.jpg);
    position:relative;
    overflow:hidden;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
}


.bluePaperHeader #natpis{
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    width:100%;
}


.bluePaperHeader #natpis .row{
    font-size:0;
    font-family: "Oswald",sans-serif;
    margin-bottom:0px;
    letter-spacing:16px;
    text-align:center;
}

.bluePaperHeader #natpis .inline{
    display:inline-block;
    vertical-align:middle;
}

.bluePaperHeader #natpis .inline:first-child{
    font-size:80px;
    color:rgb(255,255,255);
    opacity:0.7;
    padding-right:20px;
    text-align:right;
}

.bluePaperHeader #natpis .inline:last-child{
    font-size:24px;
    color:rgb(255,255,255);
    opacity:0;
    text-align:left;
}

.bottomGradient{
    width:100%;
    height:30px;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background: linear-gradient(00deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.whiteTitle{
    background-color:rgb(255,255,255);
    font-family: "Oswald",sans-serif;
    font-weight:500;
    font-size:36px;
    text-align:center;
    color:rgb(31,52,100);
    padding:15px 0;
    text-transform: uppercase;
}

.plainText{
    font-size:18px;
    text-align: center;
    line-height:26px;
    padding:15px 0;
}

.plainText .contentWidth{
    max-width: 700px;
}

.usluge .services{
    font-size:0;
    text-align: center;
}

.usluge .services .service{
    display:inline-block;
    vertical-align: top;
    width: 600px;
    max-width:90%;
    padding: 0px 15px;
    font-size: 16px;
    margin-bottom:15px;
}

.usluge .services .service .imageWrap{
    position:relative;
}

.usluge .services .service .imageWrap img{
    display:block;
}

.usluge .services .service .imageWrap .title{
    position:absolute;
    top:0;
    left:0;
    right:0;
    padding:5px;
    background-color:rgba(0,0,0,0.8);
    color:rgb(255,255,255);
    font-family: "Oswald",sans-serif;
    text-align:center;
    font-size:30px;
    text-transform: uppercase;
    border-bottom:1px solid rgb(255,255,255);
}

.usluge .services .service .text{
    padding:15px;
    background-color:rgb(240,240,240);
    color:rgb(31,52,100);
}

.imageHeader{
    background-position:center center;
    background-size:cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width:100%;
    height:80vh;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    position:relative;
}

.imageHeader .title{
    padding:15px;
    background-color:rgba(32,51,100,0.7);
    color:rgb(255,255,255);
    border-top:1px solid rgb(255,255,255);
    border-bottom:1px solid rgb(255,255,255);
    width:100%;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    text-align:center;
    font-family: "Oswald",sans-serif;
    font-size:40px;
    text-transform: uppercase;
}

.zaposlenje .imageHeader{
    background-image:url(/images/zaposlenjePG.jpg);
    background-position:center bottom;
}

.zaposlenje .contactForm{
    font-size:0;
}

.zaposlenje .contactForm .inputWrap{
    width:50%;
    display:inline-block;
    vertical-align: top;
    font-size:20px;
}

.zaposlenje .contactForm .inputWrapper{
    width:80%;
    margin:0 auto;
    position:relative;
    margin-top:30px;
    background-color:rgb(255,255,255);
}

.zaposlenje .contactForm .inputWrapper .title{
    position:absolute;
    top:50%;
    left:10px;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
    font-size:18px;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    z-index:90;
}

.zaposlenje .contactForm .focused .title{
    font-size:12px;
    top:-14px;
    -webkit-transform:translateY(0%);
    -moz-transform:translateY(0%);
    -ms-transform:translateY(0%);
    -o-transform:translateY(0%);
    transform:translateY(0%);
}

.zaposlenje .contactForm .inputWrapper input{
    outline:none;
    border:none;
    border-bottom:3px solid rgb(32,51,100);
    color:rgb(32,52,100);
    padding:10px;
    font-size:18px;
    position:relative;
    z-index:100;
    background-color:rgba(255,255,255,0);
    width:100%;
}

.zaposlenje .contactForm .redButton{
    display:block;
    width:400px;
    margin:0 auto;
    max-width:80%;
    font-weight:700;
    color:rgb(255,255,255);
    font-size:30px;
    font-family: "Oswald",sans-serif;
    text-align:center;
    background-color:rgb(237,28,37);
    padding:10px;
    margin-top:30px;
    border:3px outset rgba(0,0,0,0.6);
    margin-bottom:70px;
}

.kontakt .mapHeader{
    width:100%;
    height:95vh;
    position:relative;
}


.kontakt .mapHeader #map{
    width:50%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:200;
}


.kontakt .mapHeader .contactForm{
    width:50%;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    z-index:200;
    padding:40px;
    padding-top:140px;
    overflow:hidden;
}

.kontakt .title{
    font-family: "Oswald",sans-serif;
    font-size:30px;
    font-weight:600;
    color:rgb(32,51,100);
}

.kontakt .contactForm{
    font-size:0;
}

.kontakt .contactForm .inputWrap{
    width:50%;
    display:inline-block;
    vertical-align: top;
    font-size:20px;
}

.kontakt .contactForm .inputWrapper{
    width:80%;
    margin:0 auto;
    position:relative;
    margin-top:30px;
    background-color:rgb(255,255,255);
}

.kontakt .contactForm .inputWrapper .title{
    position:absolute;
    top:50%;
    left:10px;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
    font-size:18px;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    z-index:90;
    color:rgb(100,100,100);
    font-family:"Montserrat",sans-serif;
    font-weight:300;
}

.kontakt .contactForm .focused .title{
    font-size:12px;
    top:-14px;
    -webkit-transform:translateY(0%);
    -moz-transform:translateY(0%);
    -ms-transform:translateY(0%);
    -o-transform:translateY(0%);
    transform:translateY(0%);
}

.kontakt .contactForm .inputWrapper input{
    outline:none;
    border:none;
    border-bottom:3px solid rgb(32,51,100);
    color:rgb(32,52,100);
    padding:10px;
    font-size:18px;
    position:relative;
    z-index:100;
    background-color:rgba(255,255,255,0);
    width:100%;
}

.kontakt .contactForm .inputWrapper textarea{
    outline:none;
    border:none;
    border-bottom:3px solid rgb(32,51,100);
    color:rgb(32,52,100);
    padding:10px;
    font-size:18px;
    position:relative;
    z-index:100;
    background-color:rgba(255,255,255,0);
    width:100%;
    height:70px;
}

.kontakt .contactForm .textarea .inputWrap{
    width:100%;
}

.kontakt .contactForm .textarea .inputWrapper{
    width:100%;
}

.kontakt .blueButton{
    background-color:rgb(32,51,100);
    color:rgb(255,255,255);
    font-family:"Oswald",sans-serif;
    font-size:26px;
    text-align:center;
    padding:10px 15px;
    border:3px outset rgba(0,0,0,0.8);
    display:inline-block;
    margin:15px auto;
}

.kontakt .contactForm .bigLogo{
    width:200px;
    margin:0 auto;
    margin-top:30px;
}

.numbers .title{
    font-family:"Oswald",sans-serif;
    font-size:40px;
    text-align:center;
    padding:20px 0;
    padding-top:0;
}

@media screen and (max-width: 1100px) {
    .home .testimonialWrap .hashtags{
        font-size:1.5vw;
    }
}

@media screen and (max-width: 960px) {
    .contentWidth{
        padding:0px 10px;
    }
}

@media screen and (max-width: 900px) {
    .menu .responsiveHandle{
        top:20px;
    }

    .menu .responsive{
        display:block;
    }

    .menu .logoWrap{
        position:relative;
        z-index:2000;
    }

    .menu .menuItems{
        display:block;
        width:100%;
        position:fixed;
        top:-150%;
        left:0;
        right:0;
        height:100vh;
        background-color:rgb(255,255,255);
        text-align:center;
        padding-top:100px;
        -webkit-transition: all ease 0.5s;
        -moz-transition: all ease 0.5s;
        -ms-transition: all ease 0.5s;
        -o-transition: all ease 0.5s;
        transition: all ease 0.5s;
        z-index:1900;
    }

    .menu .menuItemsActive{
        top:0%;
    }

    .menu .menuItems .menuItem{
        display:block;
        margin:0 auto;
        padding:20px 0;
    }

    .home .numbers .inline{
        width:90%;
        margin:0 auto;
        display:block;
        margin-bottom:60px;
    }

    .home .numbers .inline:last-child{
        margin-bottom:0px;
    }
}

@media screen and (max-width: 800px) {
    footer .infoWrap{
        display:none;
    }

    footer .socialWrap{
        width:calc( 50% - (80px / 2));
    }

    footer .contactWrap{
        width:calc( 50% - (80px / 2));
    }
}

@media screen and (max-width: 700px) {
    .bluePaperHeader #natpis .row{
        letter-spacing: 4px;
    }

    .bluePaperHeader #natpis .row .inline:first-child{
        font-size:8vw;
    }

    .bluePaperHeader #natpis .row .inline:last-child{
        font-size:4vw;
    }

    .kontakt .mapHeader{
        height:auto;
    }

    .kontakt .mapHeader #map{
        position:relative;
        width:100%;
        height:70vh;
    }

    .kontakt .mapHeader .contactForm{
        position:relative;
        height:auto;
        padding:40px;
        width:100%;
    }
}

@media screen and (max-width: 600px) {
    .home .descriptions .contentWidth .inlines .inline{
        display:block;
        width:90%;
        text-align:center;
        margin:0 auto;
    }

    .home .descriptions .descriptionWrap .iconWrap{
        margin:0 auto;
        margin-bottom:10px;
    }

    .home .descriptions .contentWidth .inlines .inline:last-child{
        display:none;
    }

    footer .socialWrap{
        width:calc( 100% - (80px / 2));
    }

    footer .contactWrap{
        width:calc( 100% - (80px / 2));
        margin-bottom:10px;
    }

    footer .logoWrap{
        position:absolute;
        top:20px;
        right:15px;
    }

    .home .pageHeader .titleWrap .subTitle{
        width:100%;
    }

    .zaposlenje .contactForm .inputWrap{
        display:block;
        margin:0 auto;
        width:90%;
    }
}

@media screen and (max-width: 500px) {
    .home .numbers .inline .number{
        font-size:40px;
    }

    .home .numbers .inline .description{
        font-size:18px;
    }
}
