@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900&display=swap");
* {
    margin: 0px;
    padding: 0px;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    height: auto;
    max-width: 1100px;
    margin: 0px auto;
}

.container-xs {
    width: 100%;
    height: auto;
    max-width: 960px;
    margin: 0px auto;
}

.header {
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
}
.header .header__box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .header__box .header__box--contact {
    flex-basis: 35%;
}
.header .header__box .header__box--contact ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
}
.header .header__box .header__box--contact ul li {
    margin-right: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}
.header .header__box .header__box--contact ul li img {
    height: 15px;
    margin-right: 8px;
}
.header .header__box .header__box--logo {
    flex-basis: 30%;
    display: flex;
    justify-content: center;
}
.header .header__box .header__box--logo img {
    height: 90px;
}
.header .header__box .header__box--social {
    flex-basis: 35%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.header .header__box .header__box--social .hamburger {
    position: absolute;
    bottom: 0px;
    left: 20px;
    display: none;
}
.header .header__box .header__box--social ul {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header .header__box .header__box--social ul li {
    display: flex;
    padding: 7px 7px;
}
.header .header__box .header__box--social ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}
.header .header__box .header__box--social ul li a img {
    height: 25px;
}
.header .header__box .header__box--social ul li.line {
    border-left: 1px solid #b5b5b5;
}

.nav {
    width: 100%;
    height: auto;
    min-height: 70px;
    background-color: #0a162a;
}
.nav .nav__box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav .nav__box ul li {
    display: inline-block;
    line-height: 70px;
    padding: 0px 10px;
}
.nav .nav__box ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}
.nav .nav__box ul li.active a {
    color: #ffc600;
    font-weight: 700;
}
.nav .nav__box ul li:hover a {
    color: #ffc600;
}

.slider {
    width: 100%;
    height: auto;
}
.slider .slider__inside {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 20px solid #2581c4;
}
.slider .slider__inside .slider__nav {
    flex-basis: 65%;
}
.slider .slider__inside .slider__nav ul li {
    list-style: none;
    width: 100%;
    height: 200px;
}
.slider .slider__inside .slider__nav ul li a {
    text-decoration: none;
}
.slider .slider__inside .slider__nav ul li .slider__nav--box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    box-sizing: border-box;
    border: 5px solid #ffc600;
    border-bottom: 0px;
    text-align: center;
    line-height: 200px;
}
.slider .slider__inside .slider__nav ul li .slider__nav--box h4 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    text-decoration: none;
}
.slider .slider__inside .slider__nav ul li .slider__nav--box:hover h4 {
    color: #ffc600;
}
.slider .slider__inside .slider__nav ul li:last-child .slider__nav--box {
    border-bottom: 5px solid #ffc600;
}
.slider .slider__inside .slider__items {
    flex-basis: 35%;
    box-sizing: border-box;
    padding: 15px;
    padding-top: 50px;
    max-height: 600px;
    overflow-y: scroll;
}
.slider .slider__inside .slider__items .slider__items--title {
    font-size: 36px;
    color: #000;
    border-left: 5px solid #ffc600;
    padding-left: 10px;
    font-weight: 800;
    box-sizing: border-box;
}
.slider .slider__inside .slider__items ul {
    margin-top: 20px;
    width: 100%;
    height: auto;
}
.slider .slider__inside .slider__items ul li {
    list-style: none;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    padding-left: 160px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-top: 10px;
}
.slider .slider__inside .slider__items ul li a {
    text-decoration: none;
    color: #000;
}
.slider .slider__inside .slider__items ul li a .item--image {
    width: 140px;
    height: 110px;
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.slider .slider__inside .slider__items ul li a .item--content {
    display: flex;
    flex-direction: column;
    height: 110px;
    justify-content: center;
}
.slider .slider__inside .slider__items ul li a .item--content h4 {
    font-size: 12px;
    border-left: 3px solid #ffc600;
    padding-left: 6px;
    box-sizing: border-box;
    margin-bottom: 7px;
    font-weight: 400;
}
.slider .slider__inside .slider__items ul li a .item--content p {
    font-size: 11px;
}

.partners {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 50px 0px;
}
.partners .partners__title {
    width: 100%;
    height: auto;
}
.partners .partners__title h4 {
    border-left: 3px solid #ffc600;
    font-size: 28px;
    font-weight: 600;
    color: #000;
    box-sizing: border-box;
    padding-left: 8px;
}
.partners .partners__list {
    width: 100%;
    height: auto;
    margin-top: 50px;
}
.partners .partners__list .partners__list--item {
    display: flex;
    align-items: center;
    height: 90px;
    outline: none;
}
.partners .partners__list .partners__list--item a {
    display: inline-block;
    margin: 0px auto;
}
.partners .partners__list .partners__list--item img {
    max-height: 80px;
    max-width: 80%;
    margin: 0px auto;
}

.footer {
    width: 100%;
    height: auto;
    background-color: #0a162a;
    padding-bottom: 70px;
    border-bottom: 20px solid #2581c4;
}
.footer .footer__box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.footer .footer__box .footer__box--links {
    flex-basis: 30%;
    box-sizing: border-box;
    padding-top: 50px;
    text-align: center;
}
.footer .footer__box .footer__box--links h4 {
    font-size: 26px;
    color: #ffc600;
    font-weight: 600;
}
.footer .footer__box .footer__box--links ul {
    margin-top: 20px;
}
.footer .footer__box .footer__box--links ul li {
    list-style: none;
    padding: 5px 0px;
}
.footer .footer__box .footer__box--links ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
}
.footer .footer__box .footer__box--info {
    flex-basis: 30%;
    box-sizing: border-box;
    padding-top: 50px;
    text-align: center;
}
.footer .footer__box .footer__box--info ul {
    margin-top: 20px;
}
.footer .footer__box .footer__box--info ul li {
    list-style: none;
    padding: 2px 0px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
}
.footer .footer__box .footer__box--forma {
    flex-basis: 40%;
    box-sizing: border-box;
    background-color: #fff;
    padding: 20px;
}
.footer .footer__box .footer__box--forma form input,
.footer .footer__box .footer__box--forma form textarea {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    background-color: #e5e5e5;
    border: 0px;
    padding-left: 15px;
    box-sizing: border-box;
}
.footer .footer__box .footer__box--forma form textarea {
    height: 125px;
    padding: 15px;
}
.footer .footer__box .footer__box--forma form button {
    float: right;
    padding: 10px 45px;
    background-color: #2581c4;
    color: #fff;
    font-size: 14px;
    border: 0px;
}

.page {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 50px 0px;
    border-bottom: 20px solid #2581c4;
}
.page .page__title {
    width: 100%;
    height: auto;
}
.page .page__title h4 {
    padding-left: 15px;
    border-left: 5px solid #ffc600;
    font-size: 42px;
    font-weight: 800;
}
.page .page__title p {
    padding-top: 30px;
    font-size: 16px;
    color: #000;
}
.page .page__list {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.page .page__list .page__list--item {
    width: 100%;
    height: auto;
    height: 150px;
    position: relative;
    box-sizing: border-box;
    padding-left: 220px;
    display: flex;
    margin-bottom: 20px;
    text-decoration: none;
    color: #000;
}
.page .page__list .page__list--item .page__list--item--image {
    width: 200px;
    height: 150px;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
}
.page .page__list .page__list--item .page__list--item--content h4 {
    box-sizing: border-box;
    padding-left: 10px;
    border-left: 5px solid #ffc600;
    font-size: 22px;
}
.page .page__list .page__list--item .page__list--item--content p {
    box-sizing: border-box;
    padding-left: 15px;
    font-size: 14px;
    color: #000;
    margin-top: 20px;
}
.page .post__content {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.page .post__content .post__content--image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.page .post__content .post__content--image img {
    width: 100%;
}
.page .post__content .post__content--text h4 {
    border-left: 5px solid #ffc600;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 32px;
}
.page .post__content .post__content--text p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding-left: 15px;
    box-sizing: border-box;
    margin-top: 20px;
}
.page .service__content {
    width: 100%;
    height: auto;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
}
.page .service__content .service__left {
    flex-basis: 49%;
}
.page .service__content .service__left h5 {
    font-size: 26px;
    color: #2581c4;
    font-weight: 700;
}
.page .service__content .service__left ul li {
    list-style: none;
    padding: 5px 0px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}
.page .service__content .service__right {
    flex-basis: 49%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #e5e5e5;
}
.page .service__content .service__right form input,
.page .service__content .service__right form textarea {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    background-color: #fff;
    border: 0px;
    padding-left: 15px;
    box-sizing: border-box;
    outline: none;
}
.page .service__content .service__right form textarea {
    height: 125px;
    padding: 15px;
}
.page .service__content .service__right form button {
    float: right;
    padding: 10px 45px;
    background-color: #2581c4;
    color: #fff;
    font-size: 14px;
    border: 0px;
    cursor: pointer;
}
.page .prodaja__content {
    width: 100%;
    height: auto;
}
.page .prodaja__content .prodaja__boxes {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin: 50px 0px;
}
.page .prodaja__content .prodaja__boxes .prodaja__boxes--box {
    flex-basis: 49%;
    height: 250px;
    border: 3px solid #ffc600;
    box-sizing: border-box;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.page .prodaja__content .prodaja__boxes .prodaja__boxes--box.active a {
    color: #ffc600;
}
.page .prodaja__content .prodaja__boxes .prodaja__boxes--box a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 42px;
}
.page .prodaja__content .prodaja__search {
    width: 100%;
    height: auto;
}
.page .prodaja__content .prodaja__search form {
    width: 100%;
}
.page .prodaja__content .prodaja__search form input {
    width: 100%;
    max-width: 350px;
    height: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding-left: 15px;
    box-sizing: border-box;
    margin: 0px auto;
    display: block;
    outline: none;
}
.page .prodaja__content .prodaja__tabela {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.page .prodaja__content .prodaja__tabela .pt__row {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #000;
}
.page .prodaja__content .prodaja__tabela .pt__row:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.page .prodaja__content .prodaja__tabela .pt__row .pt__column {
    flex-basis: 33.333%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 20px;
    border-bottom: 0px;
    border-right: 0px;
}
.page .prodaja__content .prodaja__tabela .pt__row .pt__column:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.page .prodaja__content .prodaja__tabela .pt__row .pt__column h5 {
    font-weight: 400;
}
.page .prodaja__content .prodaja__tabela .pt__row:last-child .pt__column {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.page .prodaja__content .prodaja__giro {
    width: 100%;
    height: auto;
}
.page .prodaja__content .prodaja__giro .prodaja__giro--block {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page
    .prodaja__content
    .prodaja__giro
    .prodaja__giro--block
    .prodaja__giro--block--item {
    flex-basis: 49%;
    height: auto;
    min-height: 50px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #2581c4;
    color: #2581c4;
    font-size: 16px;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s background-color;
    margin-top: 2%;
}
.page
    .prodaja__content
    .prodaja__giro
    .prodaja__giro--block
    .prodaja__giro--block--item:hover {
    color: #fff;
    background-color: #2581c4;
}

.slider .slider__inside .slider__items ul li a .item--content h4 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slider .slider__inside .slider__items ul li a .item--content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 960px) {
    .header .header__box {
        flex-wrap: wrap;
    }
    .header .header__box .header__box--contact,
    .header .header__box .header__box--logo,
    .header .header__box .header__box--social {
        flex-basis: 100%;
    }
    .header .header__box .header__box--contact {
        margin-bottom: 20px;
    }
    .header .header__box .header__box--contact ul {
        justify-content: center;
    }

    .slider .slider__inside {
        flex-wrap: wrap;
    }
    .slider .slider__inside .slider__nav {
        flex-basis: 100%;
    }
    .slider .slider__inside .slider__items {
        flex-basis: 100%;
    }

    .container-xs {
        box-sizing: border-box;
        padding: 0px 10px;
    }
}
@media screen and (max-width: 880px) {
    .footer .footer__box {
        flex-wrap: wrap;
    }
    .footer .footer__box .footer__box--links {
        flex-basis: 50%;
    }
    .footer .footer__box .footer__box--info {
        flex-basis: 50%;
    }
    .footer .footer__box .footer__box--forma {
        flex-basis: 100%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 767px) {
    .header {
        border-bottom: 2px solid #0a162a;
    }
    .header .header__box .header__box--social .hamburger {
        display: block;
        cursor: pointer;
    }

    .nav {
        display: none;
    }
    .nav .nav__box ul li {
        width: 100%;
        height: 60px;
        text-align: center;
        line-height: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }

    .page .prodaja__content .prodaja__boxes {
        flex-wrap: wrap;
    }

    .page .prodaja__content .prodaja__boxes .prodaja__boxes--box {
        flex-basis: 100%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 540px) {
    .page .service__content {
        flex-wrap: wrap;
    }

    .page .service__content .service__left,
    .page .service__content .service__right {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 460px) {
    .slider .slider__inside .slider__nav ul li .slider__nav--box h4 {
        font-size: 32px;
    }

    .footer .footer__box {
        flex-wrap: wrap;
    }
    .footer .footer__box .footer__box--links {
        flex-basis: 100%;
    }
    .footer .footer__box .footer__box--info {
        flex-basis: 100%;
        margin-top: 20px;
    }
    .footer .footer__box .footer__box--forma {
        flex-basis: 100%;
        margin-top: 20px;
    }

    .page .prodaja__content .prodaja__tabela .pt__row .pt__column {
        font-size: 12px;
    }

    .header .header__box .header__box--contact ul li {
        font-size: 12px;
        margin-right: 20px;
    }
}

/*# sourceMappingURL=style.css.map */
