* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    width: 100%;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 85px;
}
body {
    background-color: #fff;
    font-family: sans-serif;
}
a {
    display: inline-block;
    text-decoration: none;
}
img {
    vertical-align: bottom;
}
/*.circle {
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 250;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid #35a987;
    background-color: transparent;
    transition: all .3s ease;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle__dot {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: #35a987;
    pointer-events: none;
}*/
.wrapper {
    width: 1045px;
    display: flex;
    margin: 0 auto;
}
.supertitle {
    color: #35a987 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    position: relative !important;
}
.supertitle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 126px;
    height: 3px;
    width: 148px;
    background-image: linear-gradient(to right, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
/* HEADER */
.header {
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 666;
    width: 100%;
}
/* STICKY HEADER */
.sticky-header {
    position: fixed;
    top: -90px;
    left: 0%;
    z-index: 500;
    height: 85px;
    width: 100%;
    background-color: #002b64;
    box-shadow: 0 3px 6px rgba(0,0,0,5%);
    transition: all .5s ease-in-out;
    visibility: hidden;
}
.sticky-header .wrapper {
    justify-content: space-between;
    align-items: center;
}
.sticky-header .bottom__nav {
    margin: 0 0 0 auto;
}
.sticky-header .bottom__nav .nav ul {
    padding: 0 0;
    justify-content: flex-end;
    background-color: #002b64;
}
.sticky-header .bottom__nav .nav ul li:not(:last-child) {
    margin-right: 35px;
}
.sticky-header .bottom__nav .nav ul li a {
    color: #fff;
}
.sticky-header-active {
    top: 0%;
    transition: all .5s ease-in-out;
    visibility: visible;
}
/* TOP NAV */
.top__nav {
    background-color: #002b64;
    height: 111px;
}
.top__nav .wrapper {
    justify-content: space-between;
    align-items: center;
}
.top__nav__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top__nav__right .lang__container {
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.top__nav__right .lang__container .lang {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    transition: all .3s ease-in-out;
}
.lang-active {
    padding: 0px 9px;
}
.top__nav__right .lang__container .lang:hover {
    color: #fff;
}
.top__nav__right .lang__container .lang:first-child {
    padding-right: 9px;
}
.top__nav__right .lang__container .lang:last-child {
    padding-left: 9px;
}
.top__nav__right .lang__container .lang-active {
    color: #fff;
    padding: 0 9px;
}
.top__nav__right .lang__container .space {
    display: inline-block;
    height: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.top__nav .tel,
.top__nav .email {
    padding: 18px 24px;
    position: relative;
}
.top__nav .email::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.top__nav .email::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.top__nav .tel a img,
.top__nav .email a img {
    margin-right: 7px;
}
.top__nav .tel a span,
.top__nav .email a span {
    display: inline-block;
    color: #fff;
    opacity: 0.5;
    font-size: 14px;
    transition: all .3s ease-in-out;
}
.top__nav .tel a span:hover,
.top__nav .email a span:hover {
    opacity: 1;
}
.top__nav__right .social {
    padding: 18px 24px;
    position: relative;
}
.social::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.social a:not(:last-child) {
    margin-right: 24px;
}
/* BOTTOM NAV */
.bottom__nav {
    width: 1050px;
    background-color: #fff;
    margin: -45px auto 0 auto;
}
.bottom__nav .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 75px;
    list-style: none;
}
.bottom__nav .nav ul li {
    padding: 36px 0px 31px 0px;
    position: relative;
}
.bottom__nav .nav ul li::before,
.bottom__nav .nav ul li::after {
    content: '';
    position: absolute;
    bottom: 0%;
    height: 5px;
    width: 0%;
    background-color: #35a987;
    transition: all .3s ease-in-out;
}
.bottom__nav .nav ul li::before {
    left: 50%;
}
.bottom__nav .nav ul li::after {
    right: 50%;
}
.bottom__nav .nav ul li:hover::before,
.bottom__nav .nav ul li:hover::after {
    width: 50% !important;
}
.bottom__nav .nav ul li a {
    display: inline-block;
    color: #002b64;
    font-size: 14px;
    transition: all .3s ease-in-out;
    letter-spacing: 1px;
}
.bottom__nav .nav ul li a:hover {
    color: #35a987;
}
/* HERO */
.hero {
    height: 100%;
    width: 100%;
    position: relative;
    background-color: #f1f1f1;
}
.hero video {
    position: absolute;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    height: calc(100% - 120px);
    width: 100%;
    object-fit: cover;
    z-index: 2;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    height: calc(100% - 120px);
    width: 100%;
    background-color: rgba(0, 43, 100, 0.85);
    z-index: 3;
}
.hero .wrapper {
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 4;
}
.hero .hero__content {
    margin: 0px 80px 77px 80px;
}
.hero .hero__content .supertitle::after {
    left: 190px;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 3%, #ffffff 56%, #ffffff 100%);
}
.hero h1 {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 84px;
    font-weight: 700;
}
/* HERO SLIDER */
.hero .slider__container {
    position: absolute;
    bottom: 0;
    height: 240px;
    width: 100%;
}
.hero .slider__container .slider {
    display: flex;
    height: 100%;
    width: 100%;
}
.hero .slider__item {
    height: 100%;
    width: 350px !important;
    position: relative;
    border-top: 10px solid #35a987;
    border-bottom: 10px solid #002b64;
    padding-top: 240px;
    }
.hero .slider__item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero .slider__item .icon-and-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 66px;
    width: 281px;
    display: flex;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.hero .slider__item .icon-and-text .icon-and-text__left {
    height: 100%;
    width: 66%;
    background-color: #fff;
    padding: 10px;
}
.hero .slider__item .icon-and-text .icon-and-text__left img {
    height: 100%;
    width: 100%;
    object-fit: initial !important;
}
.hero .slider__item .icon-and-text .icon-and-text__right {
    background-color: #2f9274;
    color: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 12px;
}
.slider__item .overlay {
    position: absolute;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    z-index: 2;
    background-color: #fff;
    padding: 22px 32px 31px 47px;
    transition: all .3s ease-in-out;
    height: 100%;
    width: 100%;
}
.slider__item .overlay .overlay-top {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}
.slider__item .overlay .overlay-top h4 {
    margin-left: 23px;
    font-size: 22px;
    color: #002b64;
}
.slider__item .overlay .overlay-bottom p {
    line-height: 1.63 !important;
    font-size: 14px;
    color: #002b64;
}
.slider--left,
.slider--right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
    height: 66px;
    width: 66px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #2f9274;
    color: #2f9274;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    user-select: none;
}
.slider--left:hover,
.slider--right:hover {
    background-color: #2f9274;
}
.slider--left svg,
.slider--right svg {
    height: 24px;
    transition: all .3s ease-in-out;
}
.slider--left:hover svg path,
.slider--right:hover svg path{
    fill: #fff;
}
.slider--left {
    left: -33px;
}
.slider--right {
    right: -33px;
}
.hero .slider__container .slick-arrow.slick-hidden {
    display: inline-block;
}
.hero .slick-slide {
    height: 240px !important;
    outline: none;
}
.hero .slick-current.slider__item {
    border-bottom: 10px solid #2f9274 !important;
}
.hero .slick-current > .overlay {
    opacity: 0;
}
.hero .slick-current > .icon-and-text {
    opacity: 1;
    top: 50%;
}
/* O NAMA */
.o-nama {
    background-color: #f1f1f1;
    width: 100%;
    padding: 80px 0;
}
.o-nama__container {
    width: 100%;
    height: 399px;
    display: flex;
    align-items: center;
}
.o-nama__image {
    padding: 28px;
    border-top: 10px solid #35a987;
    border-left: 10px solid #35a987;
    border-bottom: 10px solid #35a987;
    height: 329px;
    width: 350px;
}
.o-nama__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.o-nama__content {
    background-color: #002b64;
    color: #fff;
    padding:50px 82px 51px 79px;
    line-height:1.63;
    width: 700px;
}
.o-nama__content .supertitle::after {
    left: 110px;
}
.o-nama__content
.o-nama h2 {
    font-size: 46px;
    font-weight: 700;
}
}
.o-nama p {
    font-size: 16px;
    line-height: 1.63;
    opacity: 0.8;
}
.o-nama__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
    margin-top: 23px;
}
.o-nama__bottom__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.o-nama__bottom__item img {
    margin-right: 10px;
}
.o-nama__bottom__item--right h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.o-nama__bottom__item--right p {
    font-size: 13px;
    width: 221px;
    line-height: 1.4;
}
/* USLUGE */
.usluge {
    background-color: #fff;
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
}
.usluge-img {
    position: absolute;
    top: 80px;
    z-index: 1;
}
.usluge-img--left {
    left: -40%;
}
.usluge-img--right {
    right: -40%;
}
.usluge .wrapper {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.usluge__top {
    background-color: #fff;
    width: 809px;
    margin: 0 auto 5px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding: 50px;
}
.usluge__top.partner{
    background-color: transparent;
}
.partnerstva .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partnerstva{
    position: relative;
    z-index: 1;
    scroll-margin-top: 200px;
}
.partnerstva-background{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.partnerstva-background img{
    display: block;
    width: 100%;
    min-width: 1800px;
}
.usluge__top .supertitle::after {
    background-image: linear-gradient(to right, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
    left: 93px;
}
.usluge__top.partner .supertitle::after {
    left: 150px;
}
.partnerstva-flex{
    display: flex;
    max-width: 673px;
    width: 100%;
    justify-content: space-between;
}
.partnerstva-flex-card{
    width: 179px;
    height: 179px;
    display: flex;
    padding-top: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #fff;
    flex-direction: column;
    box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.25);
}
.partnerstva-flex-card > div:last-child img{
    display: block;
}
.partnerstva-flex-card > div:last-child{
    transition: transform 0.3s ease;
}
.partnerstva-flex-card:hover > div:last-child{
    transform: rotate(90deg);
}
.usluge__top .supertitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -177px;
    height: 3px;
    width: 148px;
    background-image: linear-gradient(to left, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
.usluge__top h2 {
    font-size: 46px;
    color: #002b64;
    text-align: center;
}
.usluge__top--p {
    color: #000;
    line-height: 1.63;
    text-align: center;
    margin-top: 8px;
}
.usluge .radovi h3 {
    color: #002b64;
    font-size: 22px;
    text-align: center;
}
.usluge .radovi .grid {
    margin-top: 98px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 29px;
    row-gap: 96px;
}
.usluge .radovi .grid .grid__item {
    height: 241px;
    width: 241px;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #002b64;
    transition: all .5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.usluge .radovi .grid .grid__item .grid__item__img {
    height: 96px;
    width: 96px;
    border: 10px solid #fff;
    background-color: #35a987;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -48px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: all .3s ease-in-out;
}
.usluge .radovi .grid .grid__item .grid__item__img img {
    transform: scale(0.8);
}
.usluge .radovi .grid .grid__item h5 {
    color: #fff;
    font-size: 20px;
}
.usluge .radovi .grid .grid__item .overlay {
    position: absolute;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background-color: #35a987;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    transition: all .3s ease-in-out;
    opacity: 0;
}
.usluge .radovi .grid .grid__item .overlay h5 {
    color: #002b64;
    margin-bottom: 10px !important;
}
.usluge .radovi .grid .grid__item .overlay p {
    color: #fff;
    line-height: 1.63;
}
.usluge .radovi .grid .grid__item:hover .overlay {
    opacity: 1;
}
.usluge .radovi .grid .grid__item:hover .grid__item__img {
    background-color: #024091;
    border: 10px solid #002b64;
}
.bazne-stanize {
    background-image: url(../images/desktop/bazne-stanice.jpg);
    height: 100%;
    width: 100%;
}
.racunarske-mreze {
    background-image: url(../images/desktop/racunarske-mreze.jpg);
    height: 100%;
    width: 100%;
}
.sistem-vatrodojave {
    background-image: url(../images/desktop/sistem-vatrodojave.jpg);
    height: 100%;
    width: 100%;
}
.sistem-video-nadzora {
    background-image: url(../images/desktop/sistem-video-nadzora.jpg);
    height: 100%;
    width: 100%;
}
.sistem-co-detekcije {
    background-image: url(../images/desktop/sistenm-CO-detekcije.jpg);
    height: 100%;
    width: 100%;
}
.sistem-ozvucenja {
    background-image: url(../images/desktop/sistem-ozvucenja.jpg);
    height: 100%;
    width: 100%;
}
.sistem-kontrole-pristupa {
    background-image: url(../images/desktop/sistem-kontrole-pristupa.jpg);
    height: 100%;
    width: 100%;
}
.migrazije {
    background-image: url(../images/desktop/migracije.jpg);
    height: 100%;
    width: 100%;
}
.usluge .ostale-usluge {
    margin-top: 63px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.usluge .ostale-usluge__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 19px;
    margin-top: 43px;
}
.usluge .ostale-usluge__grid__item {
    height: 195px;
    width: 195px;
    background-color: #35a987;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
}
.usluge .ostale-usluge__grid__item svg {
    transition: all .3s ease-in-out;
}
.usluge .ostale-usluge__grid__item:hover svg path {
    fill: #35a987;
}
.usluge .ostale-usluge__grid__item::after {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background-color: #35a987;
    z-index: -1;
    transition: all .3s ease-in-out;
}
.usluge .ostale-usluge__grid__item:hover::after{
    opacity: 0;
}
.usluge .ostale-usluge__grid__item h5 {
    text-align: center;
}
.prodaja-robe,
.projektovanje,
.ishodovanje-dozvola,
.izvodenje-gradevinskih-radova,
.optika {
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.prodaja-robe {
    background-image: url(../images/desktop/01_shutterstock_797132239_195x195px-min.jpg);
}
.projektovanje {
    background-image: url(../images/desktop/02_shutterstock_782845411_195x195px-min.jpg);
}
.ishodovanje-dozvola {
    background-image: url(../images/desktop/03_shutterstock_1539651971_195x195px-min.jpg);
}
.izvodenje-gradevinskih-radova {
    background-image: url(../images/desktop/04_shutterstock_1006180303_195x195px-min.jpg);
}
.optika {
    background-image: url(../images/desktop/05_shutterstock_1039172032_195x195px-min.jpg);
}
/* REFERENCE */
.reference {
    padding: 80px 0px;
    background-color: rgba(241, 241, 241, 0.5);
}
.reference .wrapper {
    justify-content: space-between;
    align-items: flex-start;
}
.reference .accordion__container {
    display: flex;
    flex-direction: column;
    width: 511px;
    padding-right: 79px;
    padding-top: 55px;
}
.reference .accordion__container .accordion__top {
    margin-bottom: 61px;
}
.reference .accordion__container .accordion__top  .novosti__container .supertitle::after{
    left: 126px;
    background-image: linear-gradient(to right, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
.reference .accordion__container .accordion__top h2 {
    color: #002b64;
    font-size: 46px;
}
.accordion__item {
    padding: 22px 0 50px 0px;
    height: 0;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.accordion {
    border-bottom: 3px solid #35a987;
    cursor: pointer;
}
.accordion-first {
    border-top: 3px solid  #35a987;
}
.accordion__item__top {
    width: 100%;
    margin-bottom: 28px;
}
.accordion__title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion__title svg {
    height: 16px;
    width: auto;
    margin-bottom: 13px;
    transition: all .3s ease-in-out;
}
.accordion__item__top h3 {
    font-size: 26px;
    font-weight: 700;
    color: #002b64;
    margin-bottom: 13px;
    transition: all .3s ease-in-out;
}
.accordion__item__top p {
    line-height: 1.63;
    margin: 55px 0 0 0;
}
.accordion__item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 150px;
}
.accordion__item__bottom--left,
.accordion__item__bottom--right {
    width: 50%;
}
.accordion__item__bottom--right {
    background-color: #002b64;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 50px;
}
.full-name {
    font-size: 16px;
    color: #35a987;
    font-weight: 700;
    margin-bottom: 5px;
}
.role {
    font-size: 16px;
    color: rgba(255,255,255, 0.5);
    font-weight: 400;
}
.accordion__item__bottom img {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%) scale(0.8);
    border: 10px solid #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
.accordion.is-open .accordion__item .accordion__item__top .accordion__title h3 {
    color: #35a987;
}
.accordion.is-open .accordion__item .accordion__item__top .accordion__title svg {
    transform: rotate(180deg);
}
.reference__right {
    width: 539px;
}
.reference__right__content {
    background-color: #002b64;
    color: #fff;
    padding: 35px 22px 31px 26px;
    width: 100%;
}
.reference__right__content p {
    opacity: 0.8;
    line-height: 1.63;
}
.reference__right__bg {
    border-left: 10px solid #35a987;
    border-right: 10px solid #35a987;
    border-bottom: 10px solid #35a987;
    margin: 0 auto;
    padding: 31px 27px 31px 28px;
    height: 742px;
    width: 491px;
}
.reference__right__bg .reference__right__bg__container {
    height: 100%;
    width: 100%;
    padding: 31px 27px 31px 28px;
    position: relative;
}
.reference__right__bg .reference__right__bg__container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.reference-img {
    position: absolute;
    top: 0;
    left: 0;
}
.bazne-stanice,
.grand-trade,
.ukc-bl,
.mtel-601,
.migracije,
.zotovic,
.its,
.aragosta {
    display: none;
}
/* KARIJERA */
.karijera {
    padding: 80px 0px;
    background-image: url(../images/desktop/karijera-bg.jpg);
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.karijera .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.karijera__content {
    width: 572px;
    text-align: center;
    color: #fff;
}
.karijera__content .supertitle {
    margin-bottom: 24px;
}
.karijera__content .supertitle::after {
    left: 68px;
    background-image: linear-gradient(to left, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
.karijera__content .supertitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 355px;
    height: 3px;
    width: 148px;
    background-image: linear-gradient(to right, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
.karijera__content h2 {
    color: #fff;;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}
.karijera__content p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.63;
}
.karijera__main {
    margin-top: 23px;
    background-color: #002b64;
    color: #fff;
    width: 100%;
    height: 450px;
    display: flex;
}
.karijera__left {
    width: 585px;
    height: 100%;
    padding: 32px 30px 22px 32px;
}
.karijera__left .supertitle {
    font-size: 22px;
    font-weight: 700;
}
.karijera__left .supertitle::after {
    left: 215px;
    background-image: linear-gradient(to right, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
.form {
    margin-top: 31px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.form__input {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.form__input:not(:last-child) {
    margin-bottom: 20px;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
    background-color: rgba(0, 84, 166, 0.25);
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: sans-serif;
    padding: 18px 16px;
    outline-width: 0;
    width: 251px;
    height: 54px;
}
.custom-select {
    background-color: rgba(0, 84, 166, 0.25);
    color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 251px;
    height: 54px;
    outline-width: 0;
    appearance: none;
    background-image: url(../images/desktop/_icons/strelica-usluge-icon.svg);
    background-attachment: scroll;
    background-position: right 16px center;
    background-repeat: no-repeat;
    padding: 18px 16px;
}
.custom-select option {
    display: inline-block;
    background-color: #002b64;
    padding: 12px;
    color: #fff;
    border: none;
    outline-width: 0;
}
.form__message {
    width: 100%;
    margin-bottom: 20px;
}
textarea {
    border: none;
    color: #fff;
    outline-width: 0;
    background-color: rgba(0, 84, 166, 0.25);
    height: 118px;
    width: 100%;
    padding: 18px 16px;
    resize: none;
}
.form__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
input[type="file"] {
    display: none;
}
label {
    color: #fff;
    color: rgba(255, 255, 255, 0.5);
    height: 35px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
label span {
    color: #2f9274;
}
input[type="submit"] {
    background-color: #35a987;
    border: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    width: 106px;
    height: 44px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
input[type="submit"]:hover {
    background-color: #2f9274;
}
::placeholder {
    font-family: sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}
.karijera__right {
    background-image: url(../images/desktop/form-bg.jpg);
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 465px;
    height: 100%;
}
/* NOVOSTI */
.novosti {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.novosti .novosti-img.novosti-img--left,
.novosti .novosti-img.novosti-img--right {
    position: absolute;
    top: 80px;
}
.novosti .novosti-img.novosti-img--left {
    left: -50%;
}
.novosti .novosti-img.novosti-img--right {
    right: -50%;
}
.novosti .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.novosti .supertitle::after {
    left: 110px;
    background-image: linear-gradient(to right, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
.novosti .supertitle::before {
    content: '';
    position: absolute;
    top: 50%;
    height: 3px;
    width: 148px;
    left: -176px;
    background-image: linear-gradient(to left, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
}
.novosti__container {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.novosti__container .slick-slide {
    outline: none;
}
.novosti__container .slick-list {
    height: 300px;
}
.novosti__container .slick-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.novosti__container .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}
.novosti__container .slick-initialized .slick-slide {
    display: flex !important;
}
.novosti__container .slick-dots li button {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: #002b64;
    transition: all .3s ease-in-out;
}
.novosti__container .slick-dots li button:hover {
    background-color: #35a987;
}
.novosti__container .slick-dots li button:before {
    display: none;
}
.novosti__container .slick-dots li.slick-active button {
    background-color: #35a987;
}
.novosti .slick-slide {
    width: 500px !important;
    display: flex !important;
    height: 250px;
}
.novost {
    display: flex;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    width: 500px;
    height: 250px;
    transition: all .3s ease-in-out;
    cursor: grab;
}
.novost:hover .novost__img img {
    transform: scale(1.15);
}
.novost__content {
    padding: 15px 25px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    aling-items:flex-start;
    width: 251px;
}
.novost__img {
    overflow: hidden;
    width: 251px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.novost__img img {
    transition: all .5s cubic-bezier(0.47, 0, 0.745, 0.715);
    width: 251px;
}
.novost__content h5 {
    color: #002b64;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.novost__content p {
    line-height: 1.63;
}
.novost__content .cta {
    background-color: #002b64;
    color: #fff;
    width: 190px;
    padding: 7px 10px 7px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out;
    outline-width: 0;
}
.novost__content .cta:hover {
    background-color: #35a987;
}
.novost__content .cta .plus {
    background-color: #2f9274;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.novost__content .cta:hover .plus {
    background-color: #00275a;
}
.novost .date {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px;
    background-color: #35a987;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.novost .date .day {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.novost .date .month {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}
.novost .date .year {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
/* FOOTER */
.footer {
    background-color: #002b64;
    padding-top: 50px;
    color: #fff;
}
.footer .wrapper {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.footer__top {
    margin-bottom: 13px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__top .footer__logo {
    margin-bottom: 24px;
    transition: scale(1.25);
}
.footer__top .footer__text {
    line-height: 1.2;
    width: 44%;
    font-size: 20px;
}
.footer__mid {
    width: 80%;
    display: flex;
    justify-content: space-between;
}
.footer__item {
    width: 435px;
    border: 1px solid rgba(151, 151, 151, 0.25);
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all .3s ease-in-out;
    cursor: pointer;
    margin:10px;
}
.footer__item:hover {
    background-color: #35a987;
    border: 1px solid #35a987;
}
.footer__item a {
    color: #fff;
}
.footer__item img {
    margin-right: 20px;
}
.footer__bottom {
    padding: 25px 0px;
    width: 100%;
    background-color: #00275a;
    margin-top: 20px;
}
.footer__bottom .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.mania {
    color: #fff;
    display: inline-block;
    white-space: nowrap;
    transition: all .3s ease-in-out;
}
.mania:hover {
    color: #fcde35;
}
/* NEWS */
.news__hero {
    height: 400px;
    width: 100%;
    background-color: #002b64;
    background-image: url(../images/desktop/novosti-naslovna.jpg);
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.news__hero::after {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 43, 100, .5);
}
.news {
    padding: 80px 0;
    background-color: #fff;
}
.news .wrapper {
    justify-content: space-between;
    align-items: flex-start;
}
.news .news__left {
    width: auto;
}
.news .news__left .news__content__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.news__content__mid {
    border: solid 1px rgba(151, 151, 151, 0.25);
    padding: 28px 25px 30px 25px;
}
.news .news__left .news__content__top .supertitle::after {
    background-image: linear-gradient(to right, rgba(53, 169, 135, 1), rgba(53, 169, 135, 0.5), rgba(53, 169, 135, 0.2));
    left: 190px;
}
.news .news__left .news__content__top h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    padding-top:10px;
}
.news-image4{
    height: auto;
    width: 100%;
}
.news .news__date__container {
    padding-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 18px;
}
.news .news__left .news__date__container::before,
.news .news__left .news__date__container::after {
    content: '';
    position: absolute;
    bottom: 0%;
}
.news .news__left .news__date__container::before {
    height: 2px;
    left: 0%;
    background-color: #35a987;
    width: 57px;
}
.news .news__left .news__date__container::after {
    height: 1px;
    left: 0px;
    background-color: #979797;
    width: 100%;
    bottom: 0.5px;
    transform: translateY(-0.5px);
}
.news .news__date__container img {
    margin-right: 10px;
}
.news .news__date__container .news__date {
    font-size: 12px;
    color: rgba(0, 0, 0, .25);
}
.news__left .news__paragraph__container .news__paragraph {
    line-height: 1.63;
}
.news__left .news__paragraph__container .news__paragraph:not(:last-child) {
    margin-bottom: 18px;
}
.news__left .news__paragraph__container h2 {
    margin: 18px 0 14px 0;
}
.news__buttons__container {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news__buttons__container .left-btn {
    margin-right: 10px;
}
.news__buttons__container .left-btn,
.news__buttons__container .right-btn {
    height: 35px;
    width: 35px;
    border: 1px solid #35a987;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.news__buttons__container .left-btn:hover,
.news__buttons__container .right-btn:hover {
    border: 1px solid #35a987;
    background-color: #35a987;
}
.news__buttons__container .left-btn svg,
.news__buttons__container .right-btn svg {
    height: 18px;
    width: auto;
    transition: all .3s ease-in-out;
}
.news__buttons__container .left-btn:hover svg path,
.news__buttons__container .right-btn:hover svg path {
    fill: #fff;
}
.news__right {
    width:auto;
    background-color: rgba(239, 238, 238, 0.5);
    margin: 15px;
    padding: 15px;
}
.news__right .latest-news {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.news__right .latest-news h3 {
    font-size: 18px;
    color: #35a987;
    margin-bottom: 14px;
}
.news__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.news__item:not(:last-child) {
    margin-bottom: 13px;
}
.news__item .news__img {
    height: 82px;
    width: 82px;
    margin-right: 10px;
    overflow: hidden;
}
.news__item .news__img img {
    display: inline-block;
    transition: all .3s ease-in-out;
    width: 82px;
    height: 82px;
    object-fit: cover;
}
.news__content {
    width: 133px;
}
.news__content .news__date {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.25);
    margin-bottom: 2px;
}
.news__content h6 {
    color: #000;
    font-size: 14px;
    line-height: 1.14;
    transition: all .3s ease-in-out;
}
.news__item:hover img {
    transform: scale(1.2);
}
.news__item:hover h6 {
    color: #35a987;
}
/* RESPONSIVE */
/* DESKTOP DISPLAYS */
@media only screen and (max-width: 1680px) and (min-width: 1440px) {
    /* USLUGE */
    .usluge-img--left {
        left: -70%;
    }
    .usluge-img--right {
        right: -70%;
    }
    /* NOVOSTI */
    .novosti .novosti-img.novosti-img--left {
        left: -80%;
    }
    .novosti .novosti-img.novosti-img--right {
        right: -80%;
    }
}
/* LAPTOP DISPLAYS */
@media only screen and (max-width: 1440px) and (min-width: 1360px) {
    /* USLUGE */
    .usluge-img--left {
        left: -75%;
    }
    .usluge-img--right {
        right: -75%;
    }
     /* NOVOSTI */
     .novosti .novosti-img.novosti-img--left {
        left: -85%;
    }
    .novosti .novosti-img.novosti-img--right {
        right: -85%;
    }
}
/* TABLET */
@media only screen and (max-width: 1360px) and (min-width: 1280px) {
    /* USLUGE */
    .usluge-img--left {
        left: -85%;
    }
    .usluge-img--right {
        right: -85%;
    }
     /* NOVOSTI */
     .novosti .novosti-img.novosti-img--left {
        left: -92%;
    }
    .novosti .novosti-img.novosti-img--right {
        right: -92%;
    }
}
/* TABLET */
@media only screen and (max-width: 1280px) and (min-width: 1024px) {
    /* BASE */
    .wrapper {
        width: 960px;
    }
    .supertitle {
        font-size: 18px !important;
    }
    .hero .supertitle::after {
        left: 168px !important;
    }
    .hero .slider__item {
        width: 320px !important;
    }
    .slider--left, .slider--right {
        height: 50px;
        width: 50px;
    }
    .slider--left {
        left: -25px;
    }
    .slider--right {
        right: -25px;
    }
    /* O NAMA */
    .o-nama h2 {
        font-size: 36px;
    }
    /* USLUGE */
    .usluge__top h2 {
        font-size: 36px;
    }
    .usluge-img--left,
    .usluge-img--right {
        display: none;
    }
    .usluge .radovi .grid {
        /*grid-template-columns: repeat(2, 1fr);
        width: 511px;
        margin: 98px auto 0 auto;*/
        transform: scale(0.9125);
    }
    .usluge .ostale-usluge__grid {
        transform: scale(0.9125);
    }
    /* REFERENCE */
    .reference .accordion__container .accordion__top h2 {
        font-size: 36px;
    }
    .accordion__item__top h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    /* KARIJERA */
    .karijera__content h2 {
        font-size: 36px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 230px;
    }
    .custom-select {
        width: 230px;
    }
     /* NOVOSTI */
    .novosti .novosti-img.novosti-img--left,
    .novosti .novosti-img.novosti-img--right {
        display: none;
    }
    .novosti .slick-slide {
        width: 455px !important;
    }
    /* FOOTER */
    .footer__mid .footer__item {
        width: 435px;
    }
    .footer__mid .footer__item h3 {
        font-size: 18px;
    }
    .footer__mid .footer__item p {
        font-size: 14px;
    }
}
/* MOBILE */
@media only screen and (max-width: 1024px) {
    .wrapper {
        width: 90%;
        overflow: hidden;
    }
    /* HERO */
    .hero video {
        height: 100%;
    }
    .hero::after {
        height: 100%;
    }
    .hero .wrapper {
        justify-content: flex-start;
        align-items: center;
    }
    .hero .hero__content {
        margin: 0 0 0 0;
    }
    .hero .slider__container {
        display: none;
    }
    /* O NAMA */
    .o-nama .wrapper {
        width: 100%;
    }
    .o-nama__container {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: auto;
    }
    .o-nama__image {
        border-right: 10px solid #35a987;
        width: 90%;
        margin: 0 auto;
    }
    .o-nama__content {
        width: 100%;
        padding: 50px 25px;
    }
    .o-nama h2 {
        font-size: 32px;
    }
    .o-nama__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .o-nama__bottom__item:not(:last-child) {
        margin-bottom: 55px;
    }
    .o-nama__bottom__item img {
        margin-right: 25px;
    }
    /* USLUGE */
    .usluge__top {
        padding: 0px;
        text-align: left !important;
    }
    .usluge__top h2 {
        padding: 10px 0px;
        font-size: 32px;
          text-align:left;
    }
    .usluge-img {
        display: none;
    }
    .usluge__top {
        width: 100%;
    }
    .usluge .radovi .grid {
        grid-template-columns: repeat(8, 100%);
    }
    .usluge .radovi .grid__item {
        width: 50%;
    }
    /* REFERENCE */
    .reference {
        padding: 0 0 80px 0;
    }
    .reference .wrapper {
        flex-direction: column;
        width: 100%;
    }
    .reference .accordion__container {
        width: 90%;
        padding-right: 0;
        order: 1;
        margin: 0 auto;
    }
    .reference__right {
        width: 90%;
        margin: 0 auto;
    }
    .reference__right__bg {
        width: 100%;
        border-top: 10px solid #35a987;
        margin-top: 100px;
        height: 500px;
        position: relative;
        margin-bottom: 50px;
         display:none;
    }
    .reference__right__bg .reference__right__bg__container img {
        position: absolute;
        top: -100px;
        height: 500px;
    }
    /* KARIJERA */
    .karijera {
        padding: 50px 0 0 0;
    }
    .karijera__content {
        width: 100%;
        text-align: left;
    }
    .karijera h2 {
        font-size: 32px;
    }
    .karijera__main {
        height: auto;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
    .karijera__left {
        width: 100%;
        padding: 25px;
    }
    .karijera__right {
        width: 100%;
        height: 400px;
    }
    .form__input {
        flex-direction: column;
    }
    input[type="text"],
    input[type="tel"] {
        margin-bottom: 20px;
    }
    input[type="text"], input[type="email"], input[type="tel"] {
        width: 100%;
    }
    .custom-select {
        width: 100%;
    }
    /* NOVOSTI */
    .novosti .novosti-img.novosti-img--left,
    .novosti .novosti-img.novosti-img--right {
        display: none;
    }
    .novosti__container .slick-list {
        height: auto;
    }
    .novosti .slick-slide {
        width: 100% !important;
        height: auto !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: column !important;
    }
    .novost__img {
        width: 100% !important;
        height: 250px;
    }
    .novost__img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .novost__content {
        width: 100%;
  	height:201px;
    }
    /* FOOTER */
    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        order: 2;
        margin-top: 20px;
    }
    .footer__top .footer__text {
        width: 100%;
    }
    .footer__mid {
        flex-direction: column;
        order: 1;
    }
    .footer__item {
        width: 100%;
    }
    .footer__item:not(:last-child) {
        margin-bottom: 20px;
    }
    .footer__bottom .wrapper {
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }
    .footer__bottom .wrapper small {
        order: 2;
    }
    .footer__bottom .wrapper .social {
        display: flex;
        order: 1;
        margin-bottom: 12px;
    }
}
.footer-item-r2{
    width: 300px!important;
}
.citat{
    margin-right:10%;
    text-align: right;
}
.slick-slide img {
    display: block!important!;
    height: 100%!important;
}
.novost__img img {
    transition: all .5s cubic-bezier(0.47, 0, 0.745, 0.715);
    width:inherit!important;
}
@media screen and (max-width: 450px)
.novosti .slick-slide {
  width:350px!important;
}
.novost__img img {
    transition: all .5s cubic-bezier(0.47, 0, 0.745, 0.715);
    width:inherit;
}
}
@media only screen and (max-width: 1024px)
.novost__content {
    width: 100%;
    height: 201px!important;
}
