@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot?73963944');
    src: url('../fonts/fontello.eot?73963944#iefix') format('embedded-opentype'), url('../fonts/fontello.woff?73963944') format('woff'), url('../fonts/fontello.ttf?73963944') format('truetype'), url('../fonts/fontello.svg?73963944#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

.demo-icon {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;

    /* You can be more comfortable with increased icons size */
    /* font-size: 120%; */

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-phone:before {
    content: '\e800';
}

/* '' */
.icon-home-outline:before {
    content: '\e801';
}

/* '' */
.icon-mail:before {
    content: '\e802';
}

/* '' */
.icon-address:before {
    content: '\e803';
}

/* '' */
.icon-web:before {
    content: '\e804';
}

/* '' */
.icon-home:before {
    content: '\e805';
}

/* '' */

body {
    color: #eee;
    background-color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-weight: normal;
    margin: 0;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 30px;
    text-transform: uppercase;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    font-weight: normal;
    margin: 0px;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    color: #999;
    font-size: 16px;
    font-weight: normal;
    margin: 0px;
}

a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    color: #fff;
}

button {
    font-family: 'Oswald', sans-serif;
}

/* default page content padding */
.content {
    padding-top: 70px;
    padding-bottom: 100px;
}

@media (min-width: 1200px) {
    .container {
        width: 950px;
    }
}

.sticky-menu {
    background-color: rgba(41, 89, 148, .9);
    height: 108px;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
}

/*** NAVBAR ***/

.custom-default {
    background-color: rgba(41, 89, 148, .7);
    margin: 0 auto;
    top: 5px;
    position: relative;
    z-index: 1000;
}

.custom-nav {
    list-style: none;
    color: #fff;
    border-color: transparent;
    float: right;
    padding-top: 10px;
    background-color: transparent;
}

.custom-nav > li {
    display: block;
    position: relative;
    padding-top: 10px;
}

.custom-nav > li > a {
    font-size: 18px;
}

.custom-nav > li > a:active {
    border-bottom: none;
}

.custom-button {
    float: right;
    background-color: transparent;
    border: none;
    outline: none;
    margin-top: 42px;
    position: relative;
    z-index: 10000;
}

.navbar-brand {
    margin-left: -15px;
    margin-top: 15px;
    float: left;
}

.navbar-brand img {
    height: 45px;
    margin-left: 15px;
}

ul.custom-underline a {
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    padding: 0px 0px 7px 0px;
    margin: 15px 15px 15px 0px;
    color: rgba(255, 255, 255, .7);
}

ul.custom-underline a:active {
    border-bottom: 2px solid #fff;
    padding: 0px 0px 7px 0px;
    margin: 15px 15px 15px 0px;
    color: #fff;
}

ul.custom-underline a:hover {
    border-bottom: 2px solid #fff;
    padding: 0px 0px 7px 0px;
    margin: 15px 15px 15px 0px;
    color: #fff;
}

.custom-menu.open > ul {
    margin-top: 120px;
    position: absolute;
    transition: all 1s ease-in-out;
    z-index: 1000;
}

.custom-menu > ul {
    position: absolute;
    transition: all 1s ease-in-out;
}

.menu-pos {
    width: 100%;
    top: -9%;
    left: 0%;
    transform: translate(0%, 0%);
}

.menu-pos li {
    padding-top: 10px;
}

.small-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0s 0.5s;
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    height: 100vh;
    transition: all 1s ease-in-out;
    z-index: 1000;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.small-menu.open {
    width: 100%;
    position: absolute;
    transition: all 1s ease-in-out;
    z-index: 1000;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transition: opacity 1s;
    height: 100%;
    height: 100vh;
    text-align: center;
    background-color: rgba(41, 89, 148, .8);
    z-index: 100;
}

.btn-lang {
    padding: 6px 12px 6px 12px !important;
    box-sizing: border-box;
}

.btn .caret {
    margin-left: 9px;
}

.btn-primary {
    margin-top: 35px;
    background-color: transparent;
    border: solid 2px white;
    border-radius: 0px;
}

.btn-primary:hover {
    background-color: transparent;
    border: solid 2px white;
    border-radius: 0px;
}

.btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background-color: transparent;
    outline: none;
    border: solid 2px white;
}

.dropdown {
    padding-left: 20px;
    padding-right: 15px;
}

.dropdown-menu {
    background-color: transparent;
    border: solid 2px white;
    border-radius: 0px;
    color: #fff;
    min-width: 20px;
    margin-right: 15px;
    margin-left: 5px;
}

.dropdown-menu > li > a {
    color: #fff;
    text-shadow: 1px 1px #2d2f31;
    padding-left: 25px;
}

.dropdown-menu > li > a:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, .8);
}

/*** MODAL POPUP ***/

.modal-soon {
    margin-top: 40px;
    border-radius: 0px;
    border: 13px solid #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.modal-soon h3 {
    font-size: 15px;
    padding-top: 21px;
    padding-bottom: 25px;
    margin: 0;
}

.modal-soon hr {
    width: 125px;
    height: 2px;
    margin: 0 auto;
}

.modal-soon-head {
    font-size: 26px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 0;
    padding-top: 30px !important;
    padding-bottom: 20px !important;
}

.modal-soon h1 {
    margin: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 21px;
    padding-bottom: 20px;
}

.modal-hammer img {
    margin: 0;
    padding-bottom: 15px;
}

.modal-brand img {
    height: 45px;
}

.modal-content {
    background-color: #295994;
}

.under-close {
    text-shadow: none;
    font-size: 60px;
    color: #fff;
    opacity: 1;
    right: -15px;
    margin-top: -90px;
    position: absolute;
    outline: none;
}

.under-close:hover {
    color: #fff;
    opacity: 0.8;
}

.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
    padding-right: 15px;
}

/*** HOME PAGE ***/
.quotes {
    display: none;
}

/* mini bootstrap slider */
.carousel-content {
    color: black;
    display: flex;
    align-items: center;
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
}

.fullscreen-bg {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg--video {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
}

.over-color {
    width: 100%;
    height: 350px;
    text-align: center;
    color: #fff;
    background-color: rgba(41, 89, 148, .8);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.home-text {
    text-align: left;
    padding-left: 30px;
}

.slider {
    width: 100%;
    margin-left: 0px;
}

.text-slider-title {
    width: 18em;
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
}

.text-slider-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 0px 30px 0px 30px;
    color: #295994;
    font-size: 28px;
}

.text-slider {
    text-align: left;
    position: relative;
    padding-left: 15px;
}

.text-slider h3 {
    font-size: 15px;
    margin-bottom: 15px;
}

.text-slider h4 {
    font-size: 12px;
}

.carousel-inner {
    width: 100%;
}

.home-slider {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
}

.item {
    padding-left: 0px;
}

.mobile-h h5 {
    padding-top: 30px;
}

/*** mobile background ***/

@media (max-width: 640px) {
    .small-video {
        background: url("../video/video.gif") no-repeat center center fixed;
        background: cover;
    }
}

@media (min-width: 480px) {
    .text-slider-title h1 {
        font-size: 56px;
        letter-spacing: 1px;
    }

    .text-slider h3 {
        font-size: 30px;
    }

    .text-slider h4 {
        font-size: 19px;
    }

    .text-slider-title {
        width: 31em;
        background-color: rgba(255, 255, 255, 1);
    }

    .over-color {
        height: 350px;
    }

    .fullscreen-bg--video {
        height: auto;
    }

    .modal-soon-head {
        font-size: 30px;
    }

    .modal-soon h1 {
        font-size: 50px;
    }

    .menu-pos {
        top: -12%;
    }
}

@media (min-width: 640px) {
    .text-slider-title h1 {
        font-size: 70px;
        letter-spacing: 1px;
    }

    .text-slider h3 {
        font-size: 38px;
    }

    .text-slider h4 {
        font-size: 24px;
    }

    .text-slider-title {
        width: 37em;
        text-align: center;
    }

    .modal-soon h1 {
        font-size: 56px;
    }

    .modal-soon-head {
        padding-top: 70px !important;
    }
}

@media (min-width: 767px) {
    ul.custom-underline a {
        margin: 15px 15px 15px -12px;
    }

    ul.custom-underline a:hover {
        margin: 15px 15px 15px -12px;
    }

    li.active a {
        border-bottom: 2px solid #fff;
        padding: 0px 0px 7px 0px;
        margin: 15px 15px 15px 0px;
        color: #fff;
    }

    .home-slider {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .custom-nav {
        list-style: none;
        color: #fff;
        border-color: transparent;
        float: right;
    }

    .custom-nav > li {
        display: inline-block;
        position: relative;
        padding-top: 0px;
    }

    .custom-nav > li > a {
        font-size: 14px;
    }

    .custom-nav > li > a:active {
        border-bottom: 2px solid #fff;
        padding: 0px 0px 7px 0px;
        margin: 15px 15px 15px 0px;
        color: #fff;
    }

    .over-color {
        height: 430px;
    }

    .custom-menu.open > ul {
        margin-top: 4px;
        right: 0;
        position: absolute;
        transition: all 1s ease-in-out;
    }

    .custom-menu > ul {
        margin-top: 4px;
        right: -100%;
        position: absolute;
        transition: all 1s ease-in-out;
    }

    .border-pad {
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
    }

    .menu-pos {
        left: 0;
    }

    .menu-pos li {
        padding-top: 0px;
    }

    .fullscreen-bg {
        top: -40px;
    }

    .menu.open {
        margin-top: 36px;
        right: 185px;
        width: calc(100% - 283px);
        display: block;
        transition: all 1s ease-in;
        position: absolute;
        text-align: right;
        background-color: transparent;
    }

    .menu {
        margin-top: 36px;
        right: 170px;
        overflow: hidden;
        position: absolute;
        width: calc(100% - 150px);
        height: 40px;
        float: right;
        text-align: right;
        background-color: transparent;
    }

    .menu-pos {
        width: auto;
        top: -10%;
        left: 0%;
        transform: translate(0%, 0%);
    }

    .small-menu {
        height: 40px;
    }

    .small-menu.open {
        height: 40px;
    }

    .getout {
        right: 50px;
    }

    .getout.open {
        right: 50px;
        width: calc(100% - 70px);
    }

    .modal-soon {
        margin-top: 35px;
        border-radius: 0px;
        border: 13px solid #fff;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .modal-soon h3 {
        font-size: 17px;
        padding-top: 16px;
        padding-bottom: 18px;
        margin: 0;
    }

    .modal-soon hr {
        width: 125px;
        height: 2px;
        margin: 0 auto;
    }

    .modal-soon-head {
        font-size: 13px;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .modal-soon h1 {
        margin: 0;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 26px;
        padding-bottom: 10px;
    }

    .modal-hammer img {
        margin: 0;
        padding-bottom: 10px;
    }

    .modal-brand img {
        height: 45px;
    }

    .modal-content {
        background-color: #295994;
    }

    .under-close {
        text-shadow: none;
        font-size: 60px;
        color: #fff;
        opacity: 1;
        right: -15px;
        margin-top: -90px;
        position: absolute;
        outline: none;
    }

    .under-close:hover {
        color: #fff;
        opacity: 0.8;
    }

    .mobile-h h5 {
        padding-top: 0px;
    }
}

@media (min-width: 820px) {
    ul.custom-underline a {
        margin: 5px;
    }
}

@media (min-width: 980px) {
    .text-slider {
        padding-left: 75px;
    }

    ul.custom-underline a {
        margin: 15px;
    }

    ul.custom-underline a:hover {
        margin: 15px;
    }
}

@media (min-width: 1200px) {
    .custom-default {
        width: 950px;
    }

    .text-slider {
        padding-left: 0px;
    }

    .over-color {
        height: 620px;
    }

    .fullscreen-bg--video {
        width: 100%;
        height: auto;
    }

    .navbar-brand img {
        height: 52px;
        margin-left: 0px;
    }
}

@media (min-width: 1366px) {
    .over-color {
        height: 690px;
    }

    .modal-content {
        width: 950px;
    }

    .modal-soon {
        margin-top: 60px;
        border-radius: 0px;
        border: 13px solid #fff;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .modal-soon h3 {
        font-size: 30px;
        padding-top: 32px;
        padding-bottom: 35px;
        margin: 0;
    }

    .modal-soon hr {
        width: 125px;
        height: 2px;
        margin: 0 auto;
    }

    .modal-soon-head {
        font-size: 26px;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        padding-top: 30px !important;
        padding-bottom: 20px !important;
    }

    .modal-soon h1 {
        margin: 0;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 40px;
        padding-bottom: 25px;
    }

    .modal-hammer img {
        margin: 0;
        padding-bottom: 30px;
    }

    .modal-brand img {
        height: 45px;
    }

    .modal-content {
        background-color: #295994;
    }

    .under-close {
        text-shadow: none;
        font-size: 60px;
        color: #fff;
        opacity: 1;
        right: -15px;
        margin-top: -120px;
        position: absolute;
        outline: none;
    }

    .under-close:hover {
        color: #fff;
        opacity: 0.8;
    }
}

@media (min-width: 1680px) {
    .modal-content {
        width: 950px;
    }

    .modal-soon {
        margin-top: 60px;
        border-radius: 0px;
        border: 13px solid #fff;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .modal-soon h3 {
        font-size: 30px;
        padding-top: 32px;
        padding-bottom: 35px;
        margin: 0;
    }

    .modal-soon hr {
        width: 125px;
        height: 2px;
        margin: 0 auto;
    }

    .modal-soon-head {
        font-size: 26px;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        padding-top: 30px !important;
        padding-bottom: 20px !important;
    }

    .modal-soon h1 {
        margin: 0;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 30px;
        padding-bottom: 45px;
    }

    .modal-hammer img {
        margin: 0;
        padding-bottom: 85px;
    }

    .modal-brand img {
        height: 45px;
    }

    .modal-content {
        background-color: #295994;
    }

    .under-close {
        text-shadow: none;
        font-size: 60px;
        color: #fff;
        opacity: 1;
        right: -15px;
        margin-top: -150px;
        position: absolute;
        outline: none;
    }

    .under-close:hover {
        color: #fff;
        opacity: 0.8;
    }
}

/*** PRODUCTS AND SERVICE SECTION ***/

.products-back {
    background-color: #eee;
}

.products h2 {
    color: #2d2f31;
    font-size: 26px;
}

.products h6 {
    margin-top: 20px;
    color: #999999;
    font-size: 14px;
}

.products img {
    margin-top: -130px;
}

.bra {
    margin-right: 230px;
}

.link-img {
    margin-top: 0px;
}

.products-line {
    width: 100%;
    height: auto;
    position: relative;
}

.products-line img {
    margin-top: 30px;
    width: 100%;
}

.tag {
    width: 100%;
    height: 63px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #e03139;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.products-line:hover .tag {
    height: 123px;
}

.tag h4 {
    font-size: 24px;
    padding-top: 18px;
    padding-left: 20px;
    margin-bottom: 0px;
}

.proser {
    text-align: left;
}

.proser-desc {
    padding-top: 30px;
}

.proser-desc p {
    padding-bottom: 15px;
}

.nora-line {
    margin-bottom: 50px;
}

.nora-line img {
    margin-top: 10px;
    border: 1px solid #eee;
}

.nora-line > h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    padding-bottom: 0px !important;
    color: #2d2f31;
    padding-left: 15px;
}

.nora-line li {
    list-style: none;
}

.skip-count {
    list-style-type: none;
}

.sub-metal--bottom {
    padding-bottom: 50px !important;
}

.nora-line--top img {
    margin-top: 10px;
}

.sub-metal--last {
    padding-bottom: 0px !important;
}

.sub-align p {
    text-align: justify;
}

.lazar-line img {
    margin-top: 10px;
    border: 1px solid #eee;
}

.lazar-line > h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    padding-bottom: 0px !important;
    color: #2d2f31;
    padding-left: 15px;
}

@media (min-width: 480px) {
    .products h2 {
        font-size: 30px;
    }

    .bra {
        margin-right: 270px;
    }

    .products h6 {
        font-size: 18px;
    }

    .products-line img {
        width: 100%;
    }

    .proser img {
        margin-top: 0;
    }
}

@media (min-width: 767px) {
    .tag h4 {
        font-size: 19px;
    }
}

@media (min-width: 992px) {
    .tag h4 {
        font-size: 25px;
    }
}

/*** FOOTER ***/

footer {
    height: auto;
    color: #fff;
    background-color: #000;
    background: url(../images/footer-back.jpg) no-repeat bottom center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.over-footer {
    width: 100%;
    position: relative;
    height: auto;
    background-color: rgba(45, 47, 49, .9);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.foot-brand h4 {
    font-size: 20px;
    vertical-align: middle;
    margin: 20% auto;
    text-transform: uppercase;
}

.foot-bottom {
    padding-bottom: 50px;
}

.info {
    list-style-type: none;
    margin-top: 40px;
    padding-left: 0px;
}

.info li {
    margin-bottom: -5px;
}

.info p {
    font-size: 18px;
    color: #999;
    font-family: 'Source Sans Pro', sans-serif;

}

.info p a {
    font-size: 17px;
    text-decoration: none;
}

.size {
    color: #e03139;
    font-size: 21px;
}

div.sidebar-info {
    width: 100%;
    display: inline-block;
}

.sidebar-lines {
    width: 85%;
    text-align: left;
    text-indent: -7px;
}

.sidebar-info p {
    padding-bottom: 5px !important;
}

.sidebar-lines a:hover {
    text-decoration: none;
}

.sidebar-info i {
    font-size: 23px;
    color: #e03139;
    margin-top: 3px;
}

.sidebar-info p {
    margin: 0px !important;
}

.foot-info {
    display: inline-block;
    margin-left: 1px;
}

.foot-info i {
    font-size: 23px;
    float: left;
    color: #e03139;
    margin-top: 3px;
}

.foot-info p {
    float: right;
    margin-top: 4px;
    margin-bottom: 7px;
}

.foot-info img {
    margin-top: 5px;
}

/*** SMALL FOOTER ***/

.small-footer-back {
    background-color: #232426;
    border-top: 1px solid rgba(255, 255, 255, .3);
}

.small-footer-part {
    padding: 0px;
    margin-top: 10px;
}

.small-footer-part h6 {
    color: #999;
    text-transform: uppercase;
}

.small-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    padding: 5px 0px 0px 5px;
}

.small-footer a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}

.small-footer h6 {
    font-size: 11px;
    margin-bottom: 20px;
}

.small-footer a:hover {
    color: #fff;
}

.foot-menu {
    text-align: center;
    padding: 5px 0px 5px 0px;
    text-transform: uppercase;
}

.foot-menu li {
    display: block;
    text-align: left;
    list-style-type: none;
    padding: 0px 4px 0px 0px;
}

.foot-menu a {
    font-size: 18px;
}

.foot-menu li:last-child {
    border-right: 0px;
}

ul.foot-menu a {
    border-right: 1px solid rgba(255, 255, 255, .5);
    padding-right: 5px;
}

@media (min-width: 480px) {
    .small-footer h6 {
        font-size: 12px;
    }
}

@media (min-width: 767px) {
    .info {
        text-align: left;
    }

    .info p {
        font-size: 12px;
        text-decoration: none;
    }

    .info p a {
        font-size: 12px;
        text-decoration: none;
    }

    .foot-menu li {
        display: inline-block;
    }

    .foot-menu a {
        font-size: 11px;
    }

    .foot-menu li {
        display: inline-block;
        text-align: center;
    }
}

@media (min-width: 980px) {
    .info p {
        font-size: 16px;
        text-decoration: none;
    }

    .info p a {
        font-size: 15px;
        text-decoration: none;
    }
}

@media (min-width: 1200px) {

    .over-footer {
        height: 150px;
    }

    .large-footer ul {
        margin-top: 20px;
    }

    .info {
        text-align: left;
    }
}

/*** ABOUT PAGE ***/
.structure-img img {
    padding-top: 20px;
}

@media (max-width: 350px) {
    .info p a {
        font-size: 15px;
    }
}

@media (max-width: 700px) {
    .info-header__home {
        width: 100%;
        bottom: 20px;
    }

    .info-header h3 {
        font-size: 20px;
        padding-top: 0px !important;
    }

    .info-header__about {
        width: 100%;
    }
}

header {
    height: 226px;
    color: #fff;
    background-color: #000;
    background: url(../images/about-back.jpg) no-repeat bottom center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.over-header {
    height: 226px;
    background-color: rgba(41, 89, 148, .8);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.info-header {
    padding-top: 130px;
    position: relative;
    z-index: 100;
}

.info-header h3 {
    padding-top: 20px;
}

.info-header__home {
    color: #fff;
    text-align: right;
    margin-top: 35px;
    padding-right: 15px;
}

.info-header__home a:focus {
    text-decoration: none;
}

.info-header__home a {
    font-size: 12px;
}

.info-header__caret {
    margin-top: -1px;
}

.home-icon {
    display: inline-block;
    margin-top: -3px;
    margin-right: 5px;
    position: relative;
    float: right !important;
}

.home-text-icon {
    display: inline-block;
    float: right;
}

.info-header__home a:hover {
    text-decoration: none;
}

/*** CONTENT ***/

.ab-content h4, h5, h6 {
    color: #2d2f31;
}

.ab-content h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px !important;
    padding-bottom: 5px;
    color: #2d2f31;
}

.ab-content h5 {
    padding-bottom: 10px;
}

.ab-content a {
    font-family: 'Source Sans Pro', sans-serif;
    color: #999;
    font-size: 16px;
}

.ab-content {
    height: auto;
    padding: 70px 0 100px 0;
    background-color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 24px;
    color: #999;
    text-align: left;
}

.ab-content__list {
    padding-bottom: 5px !important;
}

.inside {
    padding-bottom: 0px !important;
}

ol {
    padding-bottom: 15px !important;
    margin-bottom: 0 !important;
    color: #999;
    font-size: 16px;
}

.partner-slide a {
    font-size: 54px;
}

/*** left content ***/
.left-content p {
    padding-bottom: 15px;
}

.left-content__before {
    padding-bottom: 30px !important;
}

.left-content--menu {
    left: 0;
}

.left-content__tabs {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.left-content__tabs h5 {
    font-size: 16px;
    color: #999;
}

.left-content__tabs > li > a:hover {
    text-decoration: none;
}

.left-content__tabs a:focus {
    outline: none;
    text-decoration: none;
}

li.ui-tabs-active {
    background-color: #e03139;
    border-color: #e03139;
}

li.ui-tabs-active a h5 {
    color: #fff;
}

.ui-state-default {
    color: #2d2f31;
    border: 1px solid #999;
    padding: 11px 13px 11px 13px;
    padding-bottom: 0px;
    margin-bottom: 10px;
}

.tab-paraf > p {
    padding-bottom: 30px;
}

@media (min-width: 640px) {
    .left-content__tabs li {
        display: inline-block;
    }

    .left-content__tabs li {
        padding-left: 15px;
        margin-left: 10px;
    }

    .left-content__tabs li:first-child {
        margin-left: 0px;
    }

    li.ui-tabs-active a h5 {
        color: #fff;
    }

    .ui-state-default {
        margin-bottom: 0px;
    }
}

/*** right content ***/

.right-content p {
    padding-bottom: 15px;
}

.searchbox {
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
    border: 10px solid #eee;
    font-size: 12px;
    outline: none;
    position: relative;
}

input#search {
    border: 0;
    margin: 0;
    padding: 3px;
    padding-left: 12px;
    outline: none;
}

.partner-slide {
    padding-bottom: 30px;
}

.fa.pull-right {
    margin-left: .3em;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
}

button i {
    color: #e03139;
}

ol span {
    color: #999;
    font-size: 16px;
}

.sub li {
    list-style: none;
    margin: 0 0 4px -20px;
    text-indent: -9px;
}

.sub li:before {
    content: "- ";
    color: #999;
}

.sub a {
    color: rgba(41, 89, 148, .9);
}

.sub-page li {
    list-style: none;
    margin: 0 0 4px -50px;
    text-indent: -9px;
}

.sub-page li:before {
    content: "- ";
    color: #999;
}

.sub-page a {
    color: #999;
}

.products-page li {
    list-style: none;
    margin: 0 0 4px -30px;
}

.products-page li:before {
    content: "- ";
    color: #999;
}

.products-page a {
    color: #999;
}

.search {
    background-color: transparent;
    border: 0px;
    right: 0;
    outline: none;
}

i.demo-icon.icon-home {
    margin-right: 8px;
}

.iso-pic {
    padding-top: 50px;
}

.tag-iso {
    width: 96%;
    height: 63px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #e03139;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.tag-iso:hover {
    height: 125px;
}

.tag-iso h4 {
    font-size: 24px;
    padding-left: 30px;
    margin-bottom: 20px;
    margin-top: 20px !important;
}

.left-content-pic {
    padding-left: 0px;
}

.left-content-pic img {
    padding: 40px 40px 60px 40px;
    background-color: #eee;
    border: 0px;
}

.left-content-pic h4 {
    color: #fff;
    padding-left: 40px;
}

::-webkit-input-placeholder {
    padding-left: 20px;
    font-family: 'Oswald', sans-serif;
}

:-moz-placeholder {
    /* Firefox 18- */
    padding-left: 20px;
    font-family: 'Oswald', sans-serif;
}

::-moz-placeholder {
    /* Firefox 19+ */
    padding-left: 20px;
    font-family: 'Oswald', sans-serif;
}

:-ms-input-placeholder {
    padding-left: 20px;
    font-family: 'Oswald', sans-serif;
}

.ps-sistems img {
    width: 100%;
    padding-top: 20px;
}

.ps-sistems > h3 {
    color: #2d2f31;
    margin-top: 50px;
}

/*** RIGHT CONTENT ***/

.right-content a:hover {
    text-decoration: none;
}

.partner-back__img {
    background-color: #eee;
    padding: 20px 5px 10px 20px;
    width: 100%;
    position: absolute;
}

.partner-back {
    width: 100%;
    background-color: #eee;
    display: block;
    height: 200px;
}

.partner-back img {
    padding: 30px 40px 10px 40px;
    max-width: 100%;
}

.yugo img {
    padding-top: 60px !important;
}

.gosa img {
    padding-top: 10px !important;
}

.atera img {
    padding-top: 0px !important;
}

.partner-back-post {
    background-color: #eee;
    padding: 20px 20px 20px 20px;
    margin-bottom: 30px;
    height: auto;
}

.partner-back-post h6 {
    margin-bottom: 5px;
}

.info-sidebar {
    background-color: #eee;
    padding: 15px;
    margin-top: 0px;
}

.news {
    border-bottom: 1px solid rgba(153, 153, 153, .3);
    margin-bottom: 20px;
}

.news-sub--news {
    border-bottom: 1px solid rgba(153, 153, 153, .3);
    margin-bottom: 10px;
}

.news-line {
    margin-top: 30px;
}

.news-noborder {
    border-bottom: none;
}

.news-noborder p {
    padding-bottom: 0;
}

.news > span {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    background-color: #fff;
    width: 33%;
    padding: 5px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.news:hover span {
    background-color: #e03139;
    color: #fff;
}

.news > p {
    padding-top: 5px;
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.2;
    text-align: left;
    color: #999;
}

.news a:hover {
    text-decoration: none;
}

.news_read p {
    padding-top: 20px;
}

.news_read button {
    margin-top: 0px;
}

.news-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-img--pad img {
    padding: 20px 20px 20px 0;
}

.news-video {
    padding-bottom: 20px;
    padding-left: 0;
    padding-top: 5px;
}

.partner-back a {
    color: #999;
}

.partner-back__world a {
    font-family: 'Source Sans Pro', sans-serif;
    color: #999;
}

/*** PRODUCTS AND SERVICES PAGE ***/
.products-page {
    padding-top: 70px;
    padding-bottom: 100px;
    text-align: left;
}

.products-line a:focus {
    outline: none;
}

.products-page p {
    padding-bottom: 15px;
}

.products-page h5 {
    padding-bottom: 10px;
}

.products-page h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px !important;
    padding-bottom: 5px;
    color: #2d2f31;
}

.products-img {
    font-family: 'Oswald', sans-serif;
    font-size: 14px !important;
    padding-bottom: 0px;
    color: #2d2f31;
}

.products-page a {
    font-size: 16px;
    color: rgba(41, 89, 148, 1);
    font-family: 'Source Sans Pro', sans-serif;
}

.products-small-pic {
    padding-top: 5px;
    padding-bottom: 30px;
}

/*** FORM  ***/
.cap-box {
    padding: 0px 10px 0px 10px !important;
    margin-top: 7px !important;
}

.cap-box__ask {
    padding-right: 10px;
    padding-top: 8px;
}

label {
    font-weight: normal !important;
}

.form-style {
    margin: 0px auto;
    padding: 0px 12px 10px 0;
    font-family: 'Source Sans Pro', sans-serif;
    outline: none;
}

::-webkit-input-placeholder {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #999;
    text-align: left;
    font-weight: normal;
    text-indent: -20px;
}

:-moz-placeholder {
    /* older Firefox*/
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #999;
    text-align: left;
    font-weight: normal;
    text-indent: -20px;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #999;
    text-align: left;
    font-weight: normal;
    text-indent: -20px;
}

:-ms-input-placeholder {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #999;
    text-align: left;
    font-weight: normal;
    text-indent: -20px;
}

.form-style > div {
    padding: 0;
    display: block;
    list-style: none;
    margin: 10px 0 0 0;
}

.form-style label {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0 0 3px 0;
    padding: 0px;
    display: block;
    font-weight: bold;
}

.form-style input[type=text],
.form-style input[type=email],
textarea,
select {
    font-family: 'Source Sans Pro', sans-serif;
    border: 1px solid #bebebe;
    padding: 7px 7px 7px 15px;
    margin: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
}

.form-style input[type=text]:focus,
.form-style input[type=search]:focus,
.form-style input[type=email]:focus,
.form-style textarea:focus,
.form-style select:focus {
    font-family: 'Source Sans Pro', sans-serif;
    outline: none;
}

.form-style input[type=text]:active,
.form-style input[type=search]:active,
.form-style input[type=email]:active,
.form-style textarea:active,
.form-style select:active {
    font-family: 'Source Sans Pro', sans-serif;
    outline: none;
}

.form-style .field-divided {
    width: 100%;
}

.form-style .field-long {
    width: 100%;
}

.form-style .field-select {
    width: 100%;
}

.form-style .field-textarea {
    height: 150px;
    color: #bebebe;
}

.form-style input[type=submit], .form-style input[type=button] {
    margin-top: 20px;
    width: 100%;
    background-color: transparent;
    padding: 8px 15px 8px 15px;
    border: 1px solid #e03139;
    color: #e03139;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.form-style input[type=submit]:hover, .form-style input[type=button]:hover {
    background: #e03139;
    border: 1px solid #e03139;
    color: #fff;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.form-control {
    border-radius: 0px;
}

/*** GALLERY PAGE ***/

.lazar-gall {
    margin-top: 20px;
}

body.lb-disable-scrolling {
    overflow: hidden;
}

.thumbnail-gallery {
    padding-top: 60px;
    padding-bottom: 90px;
}

.thumbnail-gallery h5 {
    padding-left: 15px;
    padding-bottom: 10px;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    border-radius: 0px;
}

.lightbox a img {
    border: none;
}

.lb-outerContainer {
    position: relative;
    background-color: transparent;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-container {
    padding: 4px;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
    position: absolute;
    top: 45px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.lb-container > .nav {
    left: 0;
}

.lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
    margin-left: 20px;
    margin-right: 20px;
}

.lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}

.lb-prev {
    left: 20px;
}

.lb-nav a.lb-prev {
    width: 20%;
    left: 10px;
    float: left;
    background: url(../images/arrowl.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-nav a.lb-next {
    width: 20%;
    right: 10px;
    float: right;
    background: url(../images/arrowr.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-data {
    padding: 0 4px;
    color: #ccc;
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(../images/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

#map {
    width: 100%;
    height: 200px;
    top: 0;
}

@media (min-width: 767px) {
    #map {
        height: 400px;
    }

    .form-style input[type=submit], .form-style input[type=button] {
        margin-top: 0;
        width: 20%;
    }

    .left-content {
        padding-right: 25px;
    }
}

/*** MEDIA ***/

.media {
    margin-bottom: 20px;
    margin-left: 0px;
    border-bottom: 1px solid #999;
    padding-bottom: 20px;
    margin-right: 30px;
}

.media button {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: transparent;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: none;
    border: 1px solid #e03139;
    color: #e03139;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.media button:hover {
    background-color: #e03139;
    color: #fff;
}

.media button:focus {
    outline: none;
}

.media-source a {
    font-size: 11px;
}

.media-source {
    font-size: 11px;
}

.media a:hover {
    text-decoration: none;
}

.news_read {
    margin-bottom: 20px;
}

.news_read p {
    line-height: 19px;
}

.news_read button {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: transparent;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: none;
    border: 1px solid #e03139;
    color: #e03139;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.news_read button:hover {
    background-color: #e03139;
    color: #fff;
}

.news_read button:focus {
    outline: none;
}

#myminiCarousel {
    margin: 0;
}

.carousel-linked-nav,
.item img {
    display: block;
    margin: 0 auto;
}

.carousel-linked-nav {
    width: 120px;
}

.mini {
    padding-top: 25%;
    color: #2d2f31;
    font-size: 54px;
}

.mini:hover {
    color: #e03139;
}

@media (min-width: 370px) {
    .media-source a {
        font-size: 14px;
    }

    .media-source {
        font-size: 14px;
    }
}

@media (min-width: 767px) {
    .searchbox {
        margin-top: 0px;
    }

    .sub-metal-top {
        padding-top: 70px;
    }
}

.sub-metal-heading {
    padding-left: 15px;
}

.sub-metal-image-desc > h6 {
    font-size: 14px !important;
}

.sub-metal-image-desc p {
    text-align: justify;
}

.sub-metal-middle img {
    margin: 0 auto;
}

::-moz-selection {
    text-shadow: none;
    background: #222222;
    background: rgba(0, 0, 0, .2);
}

::selection {
    text-shadow: none;
    background: #222222;
    background: rgba(0, 0, 0, .2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

.workshop {
    margin-bottom: 20px;
}

.sertificate {
    background-color: white;
    width: 100%;
}

.sertificate-header {
    color: #2d2f31;
}

.sertificate-title {
    color: #2d2f31;
}

.sertificate-img {
    width: 100%;
}

.sertificate-tag {
    font-size: 16px!important;
}