@import 'normalize.css';



/**********************************************************
*                       EDITABLE                          *
**********************************************************/


/* COLORS
*
*    #e7411e - red
*    #4f5355 - gray
*/


/* FONT-WEIGHT
*
*    300 - light
*    400 - regular
*    600 - semi-bold
*    700 - bold
*/

body {
    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 300;
    background-color: #ffffff;
    color: #4f5355;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', sans-serif;
}

.page-content ul,
.page-content ol {
    padding-left: 20px;
}

.page-content ul li {
    list-style-type: disc !important;
}

.page-content ol li {
    list-style-type: decimal !important;
}

.cta-btn,
.cta-btn-orange {
    display: inline-block;
    padding: 15px 30px;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 700;
}

.cta-btn-orange {
    color: #e7411e;
    border: 2px solid #e7411e;
}

.shiney-button:hover {
    background-color: #e7411e;
}

.font-weight-light { font-weight: 300; }
.font-weight-regular { font-weight: 400; }
.font-weight-semi-bold { font-weight: 600; }
.font-weight-bold { font-weight: 700; }

.warning {
    border: 1px solid #e7411e !important;
}

/* back to top button */

#backTop {
    background-color: #ffffff;
    border: 2px solid #e7411e;
    opacity: 1;
}

#backTop i {
    border-color: #e7411e;
}

#backTop:hover {
    background-color: #e7411e;
    border: 2px solid #ffffff;
}

#backTop:hover i {
    border-color: #ffffff;
}


/* breadcrumbs */

.breadcrumbs {
    margin: 20px 0 40px;
    font-size: 16px;
}

.breadcrumbs a {
    position: relative;
    padding: 0 11px;
    color: #e7411e;
}

.breadcrumbs a:first-child {
    padding-left: 0;
}

.breadcrumbs .crumb-current {
    /*padding-left: 14px;*/
    padding-left: 9px;
    color: #4f5355;
    font-weight: 300;
}

.breadcrumbs a .fa-home {
    margin-top: 4px;
}

.breadcrumbs a:after {
    position: absolute;
    content: '';
    /*top: 8px;*/
    top: 6px;
    right: 0;
    width: 6px;
    height: 6px;
    margin: 0 0;
    border-right: 1px solid #e7411e;
    border-bottom: 1px solid #e7411e;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media(max-width: 480px) {
    .breadcrumbs a {
        display: block;
    }

    .breadcrumbs a:after {
        position: static;
        width: 10px;
        height: 10px;
    }
}


/* loader */
.loader-dots span {
    background-color: #e7411e;
}

/* unordered list with info_elements dots */

ul.dots li:before,
ul.dots-orange li:before {
    display: inline-block;
    content: "";
    width: 7px;
    height: 7px;
    margin: 0 8px 5px 0;
    vertical-align: middle;
    background-color: #ffffff;
    border-radius: 50%;
}

ul.dots-orange li:before {
    background-color: #e7411e;
}


/***************** HEADER *****************/
header {
    width: 100%;
}

/* topbar */
header .topbar {
    padding: 8px 0;
    background-color: #4f5355;
    color: #ffffff;
}

header .topbar .site-logo {
    max-width: 200px;
}

header .topbar .phone {
    font-size: 18px;
}

header .topbar .phone i {
    display: inline-block;
    margin-top: 4px;
    transform: rotate(180deg);
}

header .topbar .phone span {
    display: inline-block;
    margin-left: 3px;
}

header .topbar .social a {
    display: inline-block;
    margin-left: 5px;
    font-size: 28px;
    height: 25px;
    width: 26px;
    color: #ffffff;
}

header .topbar .social a:first-child {
    margin-left: 0;
}

header .topbar .languages a {
    height: 20px;
    margin-left: 6px;
}

header .topbar .languages a:first-child {
    margin-left: 0;
}

header .topbar .languages .flag {
    display: inline-block;
    width: 30px;
    height: 15px;
    background: transparent no-repeat center top;
    background-size: 100%;
}

header .topbar .languages a.active .flag {
    background-position: center bottom;
}

header .topbar .languages .flag:active {
    background-position: center bottom;
}

header .topbar .languages .flag.sr {background-image: url("img/flag-sr.png");}
header .topbar .languages .flag.en {background-image: url("img/flag-en.jpg");}
header .topbar .languages .flag.de {background-image: url("img/flag-de.jpg");}


header .bottombar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media(max-width: 575px) {
    header .topbar {
        text-align: center;
    }

    header .topbar .site-logo {
        margin: 10px auto 15px;
    }

    header .topbar .phone,
    header .topbar .social {
        margin-bottom: 15px;
    }

    header .search-wrapper {
        margin-top: 10px;
        text-align: right;
    }
}

@media(max-width: 768px) {
    #mainMenu {
        width: 100%;
        order: 3;
    }
}

@media(min-width: 576px) {
    header .topbar .container,
    header .topbar .left,
    header .topbar .right,
    header .topbar .languages {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .topbar .left {
        width: 78%;
    }
}

@media(max-width: 768px) and (min-width: 576px) {
    header .topbar .site-logo {
        max-width: 170px;
    }

    header .topbar .phone {
        font-size: 16px;
    }

    header .topbar .phone span {
        margin-left: 1px;
    }

    header .topbar .phone i {
        margin-top: 2px;
    }
    header .topbar .social a {
        margin-left: 3px;
        font-size: 25px;
        height: 22px;
        width: 23px;
    }
}

@media(min-width: 768px) {
    header .topbar .left {
        width: 80%;
    }

    header .bottombar {
        padding: 10px 0;
    }
}

@media(min-width: 993px) {
    header .topbar .left {
        width: 70%;
    }

    header .topbar .languages .flag:hover {
        background-position: center bottom;
    }
}

@media(min-width: 1200px) {
    header .topbar .left {
        width: 50%;
    }
}

header .search-wrapper button {
    padding: 0;
    background-color: transparent;
    color: #e7411e;
}

header .search-wrapper button i {
    font-size: 28px;
}

/***************** FOOTER *****************/
footer {
    padding: 50px 0;
    background-color: #4f5355;
    color: #ffffff;
    text-align: center;
}

.footer-logo-wrapper {
    background-color: #ffffff;
}

.footer-logo-wrapper .logo {
    width: 100%;
    max-width: 270px;
    background-color: #4f5355;
    text-align: right;
}

footer #footerMenu a {
    color: #fff;
    font-size: 15px;
}

footer #footerMenu .info-section {
    margin-bottom: 20px;
}

footer #footerMenu .info-section span {
    width: 48px;
    height: 48px;
}

footer #footerMenu .info-section p {
    color: #fff;
    font-size: 15px;
}

footer #footerMenu .cert .certified-image {
    max-width: 150px;
    margin: 0 auto 20px;
}

footer #footerMenu li {
    margin-bottom: 10px;
}

footer #footerMenu .first-ul-parent .first-parent {
    margin-bottom: 20px;
}

footer #footerMenu .first-parent-link {
    display: none !important;
}

footer .menu-opener-wrapper {
    display: none !important;
}

#copyright {
    padding: 6px 0;
    background-color: #e7411e;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}

#copyright a {
    color: #ffffff;
    text-decoration: underline;
}

@media (min-width: 992px) {
    footer #footerMenu {
        display: flex;
        justify-content: space-between;
    }

    footer #footerMenu .contact {
        width: 20%;
    }

    footer #footerMenu .cert {
        width: 12%;
    }

    footer #footerMenu .first-ul-parent {
        width: 63%;
        display: flex;
        justify-content: space-between;
    }

    footer #footerMenu .first-ul-parent .first-parent {
        width: 30%;
        text-align: left;
    }

    footer #footerMenu .info-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    footer #footerMenu .info-section p {
        width: 80%;
        margin-bottom: 0;
        text-align: left;
    }

    footer #footerMenu .cert .certified-image {
        margin: 0;
    }
}

@media (min-width: 1200px) {
    footer #footerMenu .contact {
        width: 18%;
    }

    footer #footerMenu .cert {
        width: 14%;
    }

    footer #footerMenu .first-ul-parent {
        width: 63%;
    }

    .footer-logo-wrapper .logo {
        width: 270px;
    }
}

/***************** PAGE BANNER *****************/

.page-banner {
    position: relative;
    background-color: #071f28;
    min-height: 200px;
    max-height: 400px;
    height: 100%;
}

.page-banner .bg-image-wrapper {
    min-height: 400px;
    max-height: 760px;
}

.page-banner .banner {
    height: 100%;
    background: #071f28 no-repeat center;
    background-size: cover;
}

.page-banner .banner-desc {
    color: #ffffff;
}

.page-banner .banner-desc h1 {
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 2px rgba(50, 50, 50, 0.85);
}

.page-banner .banner-desc p {
    margin-bottom: 30px;
    font-size: 16px;
    /*text-shadow: 0 1px 1px rgba(50, 50, 50, 0.85);*/
    text-shadow: 0 1px 1px rgba(0, 0, 0, 1);
}

#homePage .page-banner .banner-desc p {
    font-weight: bold;
    color: #ffffff;
    /*color: #e7411e;*/
}

@media(max-width: 992px) {
    .page-banner .banner-desc {
        width: 95%;
    }
}

@media(min-width: 480px) {
    #homePage .page-banner .banner-desc p {
        font-size: 18px;
    }
}

@media(min-width: 768px) {
    .page-banner .banner-desc h1 {
        font-size: 40px;
    }
}

@media(min-width: 992px) {
    .page-banner .banner-desc h1 {
        font-size: 50px;
    }
}


/***************** SEARCH FORM *****************/

#searchOverlay {
    background-color: rgba(231, 65, 30, 0.96);
}

#searchOverlay button {
    background-color: transparent;
    position: fixed;
    top: 40px;
    right: 5%;
}

#searchOverlay button i {
    font-size: 50px;
    color: #ffffff;
}

#searchOverlay .search-form-wrapper {
    width: 80%;
    max-width: 800px;
    z-index: 999;
}

#searchOverlay .search-form-wrapper h3 {
    margin-bottom: 70px;
    font-size: 60px;
    color: #ffffff;
}

#searchOverlay .search-form-wrapper .field {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    font-size: 20px;
}

#searchOverlay .search-form-wrapper button {
    position: absolute;
    right: 0;
    bottom: -60px;
    background-color: transparent;
    font-size: 30px;
}

#searchOverlay .search-form-wrapper button i {
    color: #ffffff;
}


/********************* CLIENTS *********************/

#servotehClients {
    /*background-color: #f1f1f1;*/
    text-align: center;
    padding: 65px 0;
}

#servotehClients .desc {
    margin-bottom: 65px;
}

#servotehClients .desc .title {
    font-size: 50px;
    margin-bottom: 30px;
    /*color: #e7411e;*/
    /*text-align: center;*/
    color: #4f5355 !important;
    text-align: left !important;
}

#servotehClients .desc .content {
    font-size: 24px;
    text-align: left !important;
}

@media(max-width: 480px) {
    #servotehClients .desc .content {
        font-size: 40px;
    }
}

@media(max-width: 768px) {
    #servotehClients .desc .content {
        font-size: 18px;
    }
}

#servotehClients .clients {
    display: flex;
    flex-wrap: wrap;
}

#servotehClients .clients.mobile-hide {
    display: none;
}

#servotehClients .clients .client {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 90px;
}

#servotehClients .clients .client img {
    max-height: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#servotehClients .clients .client img:active {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

@media(min-width: 480px) {
    #servotehClients .clients .client {
        width: 25%;
    }
}

@media(min-width: 768px) {
    #servotehClients .clients.mobile-hide {
        display: block;
    }

    #servotehClients .clients .client {
        width: 16.6%;
        height: 100px;
    }

    #servotehClients .clients .client img:hover {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

/********************* CUSTOM INFO *********************/

.info-custom-element {
    position: relative;
    margin-top: 30px;
    background-color: #e7411e;
}

.info-custom-element .content {
    position: relative;
    padding: 50px 60px;
    color: #ffffff;
    font-size: 24px;
    text-align: left;
}

.info-custom-element .content ul li {
    line-height: 1;
}

.info-custom-element .content p {
    margin: 0;
}

.info-custom-element .image {
    text-align: left;
}

@media(min-width: 880px) {
    .info-custom-element.image-left .image {
        float: left;
        width: 50%;
    }

    .info-custom-element .content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 43%;
        padding: 0;
        font-size: 16px;
    }

    .info-custom-element.image-left .content {
        left: 52%;
    }

    .info-custom-element.image-right .image {
        float: right;
        width: 50%;
    }

    .info-custom-element.image-right .content {
        right: 52%;
    }
}

@media(min-width: 992px) {
    .info-custom-element .content {
        font-size: 18px;
    }
}

@media(min-width: 1277px) {
    .info-custom-element .content {
        font-size: 24px;
    }
}

@media(min-width: 1280px) {
    .info-custom-element .content {
        width: 590px;
    }
}

.machining,
.machining-tool {
    margin-bottom: 20px;
    overflow-x: auto;
}

.machining-tool img {
	display: block;
    margin: auto;
}

.machining table,
.machining-tool table {
    font-size: 14px;
}

@media (min-width: 992px) {
    .machining {
        float: left;
        width: 50%;
        margin: 0;
        padding-right: 5px;
    }

	.machining-tool {
	    float: left;
	    width: 33%;
	    padding-right: 10px;
	}

    .machining table,
    .machining-tool table {
        font-size: 18px;
    }

	.machining-tool img {
		max-height: 231px;
	}
}

.orange-title {
    color: #e7411e;
}

/********************* SITE ITEMS *********************/

.site-items {
    margin: 50px 0;
}

.site-items.type-1 .desc {
    text-align: left !important;
}

.site-items.type-1 .desc h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    text-transform: uppercase;
}

.site-items.type-1 .desc h2 {
    margin-bottom: 30px;
}

.site-items.type-1 .desc .content {
    font-size: 15px;
}

.site-items section {
    margin-bottom: 80px;
    text-align: left;
    font-size: 15px;
}

.site-items section a {
    color: #e7411e;
}

.site-items.type-1 section img {
    margin-bottom: 25px;
}

.site-items.type-1 section h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.site-items.type-1 section h3 a {
    color: #4f5355;
}

.site-items.type-1 section .contact-section span {
    display: inline-block;
    width: 42px;
    height: 42px;
}

.site-items.type-1 section .contact-section p {
    display: inline-block;
    margin-top: 4px;
    vertical-align: middle;
}

.site-items.type-1 section .contact-section p.one-in-row {
    margin-top: 10px;
}

.site-items.type-1 section .link-wrapper {
    margin-top: 20px;
    text-align: right;
}

.site-items.type-1 section .link-wrapper a:before {
    content: '>';
    display: inline-block;
    margin-right: 4px;
    font-size: 12px;
}

.site-items.type-2 section h3 {
    display: flex;
    align-items: center;
    min-height: 80px;
    margin-bottom: 12px;
    padding: 0 15px;
    background-color: #505254;
    color: #fff;
    font-size: 1.5rem;
}

.site-items.type-2 section .content {
    display: flex;
    justify-content: space-between;
}

.site-items.type-2 section .content .links {
    width: 50%;
}

.site-items.type-2 section .content img {
    width: 50%;
}

.site-items.type-2 section .links li {
    margin-top: 6px;
    list-style: none;
}

.site-items.type-2 section .links li:first-child {
    margin-top: 0;
}

.site-items.type-2 section .links li a {
    /* color: #96e1e1; */
    color: #616161;
    text-decoration: underline;
    font-size: 16px;
    font-weight: bold;
}

.site-items.type-1 section a img:active,
.site-items.type-1 section h3 a:active {
    opacity: 0.85;
}

.site-items.type-1 section .link-wrapper a:active {
    text-decoration: underline;
}

@media (min-width: 480px) {
    .site-items.type-1 .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .site-items.type-1 section {
        width: 47%;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) {
    .site-items.type-2 .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .site-items.type-2 section {
        width: 47%;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .site-items.type-1 section a img,
    .site-items.type-1 section h3 a {
        transition: 0.3s;
    }

    .site-items.type-1 section a img:hover,
    .site-items.type-1 section h3 a:hover {
        opacity: 0.85;
    }

    .site-items.type-1 section .link-wrapper a:hover {
        text-decoration: underline;
    }
}
/**************airplane industry srb**************/
.category-19 .site-items.type-2 .container section:first-child {
    order: 2;
}

.category-19 .site-items.type-2 .container section:nth-child(2) {
    order: 1;
}

.category-19 .site-items.type-2 .container section:nth-child(3) {
    order: 4;
}

.category-19 .site-items.type-2 .container section:last-child {
    order: 3;
}
/**************airplane industry eng**************/
.category-2 .site-items.type-2 .container section:first-child {
    order: 2;
}

.category-2 .site-items.type-2 .container section:nth-child(2) {
    order: 1;
}

.category-2 .site-items.type-2 .container section:nth-child(3) {
    order: 4;
}

.category-2 .site-items.type-2 .container section:last-child {
    order: 3;
}
/**************car industry srb**************/
.category-20 .site-items.type-2 .container section:first-child {
    order: 2;
}

.category-20 .site-items.type-2 .container section:nth-child(2) {
    order: 3;
}

.category-20 .site-items.type-2 .container section:nth-child(3) {
    order: 1;
}

/**************car industry eng**************/

.category-3 .site-items.type-2 .container section:first-child {
    order: 2;
}

.category-3 .site-items.type-2 .container section:nth-child(2) {
    order: 3;
}

.category-3 .site-items.type-2 .container section:nth-child(3) {
    order: 1;
}