/*html {
  max-width: 100vw;
  overflow-x: hidden;
}*/

/*QUICK-CONTACTS*/
#qc-main {
    position: fixed;
    z-index: 1050;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.75s;
}

#qc-main {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #acf500 #f1f1f1;
    scrollbar-radius: 6px;

    /* Edge */
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: #acf500 #f1f1f1;
    scrollbar-radius: 6px;

    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #acf500;
        border-radius: 6px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }
}

#qc-layout {
    display: none;
    width: 0px;
    height: 0px;
    position: fixed;
    top: 0;
    left: 0;
}

#qc-layout.active {
    display: block;
    width: 100vw;
    height: 100%;
    background: rgba(40, 41, 40, 0.8);
    z-index: 700;
    /*filter: blur(500px);*/
}

#qc-main a {
    color: currentColor;
    margin: 0;
}

#qc-main.active {
    transform: translateX(0%);
}

.quick-contact-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: #231f20;

    overflow-y: auto;
    overflow-x: hidden;

    height: calc(100vh - 100px);
    max-height: 1000px;
}

.qc-content {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid grey;
}

.qc-item:nth-last-child(2) .qc-content {
    border-bottom: none;
}

.qc-left {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-right: 1px solid grey;
}

.qc-flag {
    width: 30px;
    height: 15px;
}

.qc-ico {
    width: 25px;
    height: 25px;
    margin-right: 12px;
}

.qc-right {
    width: 100%;
    padding: 12px 24px;
}

.qc-name {
    font-size: 18px;
    font-weight: 700;
}

.qc-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qc-content.wret {
    border-bottom: none;
}

.qc-content.wret a {
    text-transform: uppercase;
    width: 100%;
    font-weight: 600;
    letter-spacing: 3px;
}

.qc-contact-btn {
    position: absolute;
    bottom: 0;
    left: 100%;
    color: black;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

img.qc-contact-btn {
    width: 150px;
}

.qc-contact-btn:hover {
    opacity: 1;
}

.qc-contact-btn:hover {
    cursor: pointer;
}

.qc-content-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: #acf500;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
    color: black;
    transition: opacity 0.3s ease-in-out;
}

.qc-content-btn:hover {
    opacity: 0.8;
}

.qc-content-btn a:hover {
    text-decoration: none;
}

img.qc-contact-btn__close {
    display: none;
    right: 20px;
    top: 10px;
    left: auto;
    z-index: 1600;
    width: 50px;
    border: 4px solid #acf500;
    border-radius: 50px;
    padding: 12px;
}

@media (max-width: 1024px) {}

@media (max-width: 670px) {
    #qc-main {
        width: 100%;
    }

    img.qc-contact-btn__close {
        display: block;
    }
}

/*MAIN BANER*/
.mainBanerWrap {
    background: #171833;
}

.banerImg {
    width: 100%;
}

.mainBanerLeft {
    color: white;
}

.mainBanerRight {
    margin-top: 2em;
}

.mainBanerLogo {
    justify-content: right;
    margin-top: 6em;
}

.mainBanerLogo img {
    width: 60%;
}

.mainBanerDesc {
    justify-content: right;
}

.mainBanerDesc p {
    font-size: 2.45em;
    font-weight: 150;
    text-align: right;
    padding: 4em 0em 1.5em 0;
}

.mainBanerRight {
    background: url('../img/baner/hands.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.banerHand {
    opacity: 0.6;
}

.handLeft {
    justify-self: end;
}

/* grid */
.mainBanerWrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.custom-grid {
    margin-top: 3em;
    display: grid;
    position: relative;
    grid-template-columns: 25% auto 25%;
    background-repeat: no-repeat;
    background-size: cover;
}

.custom-grid::before {
    content: '';
    width: 50vw;
    height: 50vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(rgba(255, 255, 255, 0.5) 0%, transparent 40%, transparent 100%);
}

.custom-grid_inner {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: 16.6% 18.3% 33.3% 18.3% 13.3%;
}

.custom-grid_inner> :nth-child(1) {
    grid-row: 2;
    grid-column-start: 1;
    grid-column-end: 4;
}

.custom-grid_inner> :nth-child(2) {
    grid-row: 2;
    grid-column-start: 5;
    grid-column-end: 8;
}

.custom-grid_inner> :nth-child(3) {
    grid-row: 2;
    grid-column-start: 9;
    grid-column-end: 12;
}

.custom-grid_inner> :nth-child(4) {
    grid-row: 2;
    grid-column-start: 13;
    grid-column-end: 16;
}

.custom-grid_inner> :nth-child(5) {
    grid-row: 3;
    grid-column-start: 3;
    grid-column-end: 6;
}

.custom-grid_inner> :nth-child(6) {
    grid-row: 3;
    grid-column-start: 7;
    grid-column-end: 10;
}

.custom-grid_inner> :nth-child(7) {
    grid-row: 3;
    grid-column-start: 11;
    grid-column-end: 14;
}

/* end grid */

/*WE CARE*/

#divWecare {
    display: none;
}

.closeWecare {
    width: 3em;
    height: 3em;
    border-radius: 40px;
    margin-bottom: 1em;
    font-weight: 600;
}

.menuWecare {
    width: 30px !important;
    height: 30px !important;
    max-width: 100%;
}

.bg-black {
    background-color: black;
}

.bg-blue-gr {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg,
            rgba(2, 0, 36, 1) 0%,
            rgb(47 197 37 / 66%) 0%,
            rgba(218, 233, 246, 1) 57%);
}

.wecare-img {
    padding: 15px;
}

.weCareBig {
    max-width: 100%;
}

.img-w50 {
    width: 50%;
}

.img-w100 {
    width: 100%;
}

.careWrap {
    padding-left: 20px;
}

.flexDisplay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bigWrap {
    padding-top: 20px;
    padding-bottom: 20px;
}

.careCont {
    width: 100%;
    position: relative;
}

.careIco {
    height: 100%;
    width: 140px;
    position: absolute;
    border-radius: 20px;
    background-color: #d9eeff;
    text-align: center;
}

.careFig {
    text-align: center !important;
    color: #00ac00;
}

.healthAddP {
    padding: 40px 0px;
}

.careBlock {
    background-color: #014883;
    border-radius: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 100%;
    padding: 30px 0px;
}

.careBlock h2 {
    color: #00ff00;
    padding: 20px 20px 10px 180px;
    font-size: 1.6em;
}

.careBlock p {
    font-size: 18px;
    padding-left: 180px;
    padding-right: 20px;
    padding-bottom: 10px;
    color: white;
    font-weight: 200;
}

.careBlock span {
    font-size: 26px;
    color: #00ff00;
    font-weight: 600;
}

.careBlock a {
    color: #00ff00;
    font-weight: 600;
}

/*ANIMATION*/
.zdj {
    max-width: 100%;
    height: auto;
}

.main {
    min-width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: minmax(0px, 192px) repeat(5, 192px) minmax(0px, 192px);
    grid-template-rows: auto;
    column-gap: 30px;
    transition: all 0.5s;
}

.stopro {
    width: 100%;
    min-width: 100%;
    overflow: hidden;
    padding: 40px;
}

.jeden {
    grid-column-start: 2;
}

.tekstbox,
.tekstbox2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    grid-column: span 3;
}

.tekstbox {
    display: flex;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.tekstbox2 {
    grid-row: 1;
    display: flex;
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.text-home-lt,
.text-home-rg {
    padding: 0em 0.5em;
    font-size: 40px;
    margin: 0;
}

@media (max-width: 1340px) {
    .main {
        grid-template-columns: repeat(5, 192px);
    }

    .jeden {
        grid-column-start: 1;
    }

    .tekstbox,
    .tekstbox2 {
        grid-column: span 2;
    }

    .bg-applications {
        background-size: auto 100% !important;
    }

    .bg-company {
        background-size: auto 100% !important;
    }

    .bg-products {
        background-size: auto 100% !important;
    }

    .bg-services {
        background-size: auto 100% !important;
    }

    .bg-competences {
        background-size: auto 100% !important;
    }
}

@media (max-width: 1170px) {
    .main {
        grid-template-columns: repeat(3, minmax(100px, 192px));
        padding: 0em 1em;
    }

    .tekstbox,
    .tekstbox2 {
        grid-column: span 3;
    }

    .bg-home {
        margin: 0.5em 0em;
        align-items: center;
    }

    .text-home-lt,
    .text-home-rg {
        text-align: center;
    }

    .text-left {
        font-size: 2.5rem;
        text-align: left;
    }
}

.ov-hidden {
    overflow: hidden;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

.row .mt40 .col-lg-2 {
    height: 150px;
}

.logo-holder {
    position: relative;
    height: 200px;
    width: auto;
}

.logo {
    height: 150px;
    position: absolute;
    left: -100px;
    top: 10px;
    opacity: 0;
}

.quality {
    height: 150px;
    position: absolute;
    left: -150px;
    top: 10px;
    opacity: 0;
}

.animate-holder {
    position: relative;
    width: 200px;
    height: 200px;
}

.animate-photo {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    display: none;
    width: 200px;
    height: 200px;
}

.animate-photo-2 {
    position: absolute;
    left: -100px;
    opacity: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 200px;
    height: 200px;
}

.animate-photo-3 {
    position: absolute;
    left: 100px;
    opacity: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 200px;
    height: 200px;
}

/*TOPNAV*/
.tooltip-inner {
    padding: 10px;
    min-width: 800px !important;
    border-radius: 3px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.round-c {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.topnav {
    overflow: hidden;
    background-color: #000;
}

.topnav-btn {
    margin: 0px;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    /* padding: 20px 55px; */
    text-decoration: none;
    font-size: 25px;
    cursor: pointer;
}

.fa-bars {
    font-size: 30px;
}

.topnav-center {
    overflow: hidden;
    background-color: #000;
    left: 0;
    right: 0;
    margin: auto;
}

.topnav a:hover {
    color: #a2bcd7;
}

.topnav-active {
    background-color: #014883;
    color: white;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 1199px) {
    .topnav a:nth-child(n + 3) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .bg-home {
        padding: 1.5em;
        height: auto !important;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .menuWecare {
        margin-top: 0.5em;
    }

    .fa-bars {
        margin-top: 0.25em;
    }

    .pl-logo img {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 5em;
        height: auto;
        top: 0.5em;
    }
}

/* @media screen and (max-width: 1400px) {
        .topnav a {
                padding: 20px 30px;
        }
} */

/*CAREER*/

.panel-group {
    margin: 1em 0 1em 0;
    border: 1px solid lightgrey;
    border-radius: 20px;
    padding: 1.5em;
    background: #f2f2f2;
}

.panel-title {
    margin-bottom: 0.5em;
}

.panel-body {
    margin-left: 3em;
}

.job-href {
    color: #000 !important;
}

/*NAVBAR*/
.flag-ico {
    width: 55px;
    margin: 13px;
}

.sub-menu-image-cont {
    width: 50px;
}

.bg-dark {
    background-color: #000 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255);
    font-size: 18px;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #a2bcd7;
    text-decoration: none;
}

.navbar-nav {
    left: 0;
    right: 0;
    margin: auto;
}

.nav-item {
    padding: 0 5%;
}

/*SYMBOLS*/

.sym-width {
    width: 40px;
    max-width: 100%;
}

.sym-width-2 {
    width: 45px;
    margin: 17px 0px;
}

.sym-width:hover {
    cursor: pointer;
}

.tooltip {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 300;
    font-size: 30px;
}

/*SUPPORT*/
.menu-cont-icons {
    font-size: 40px;
}

.fa-comments {
    margin-right: 20px;
}

.team-member {
    width: 16%;
    float: left;
    text-align: center;
    margin-right: 5%;
}

.team-member:last-child {
    margin-right: 0;
}

.team-member span,
.team-member h3 {
    max-width: 200px;
}

.email {
    color: #014883;
    font-size: 0.85rem;
}

.team-member span {
    display: block;
}

.team-photo {
    border-radius: 50%;
    text-align: center;
    margin: auto;
    max-width: 300px;
    height: auto;
    transition: 0.1s transform ease-in-out;
    margin-top: 20px;
}

.team-photo:hover {
    transform: scale(0.9);
}

/*SUPORT MOBILE*/
@media (max-width: 850px) {
    .team-member {
        width: 25%;
        margin-left: 4%;
        margin-right: 4%;
        margin-bottom: 40px;
    }
}

@media (max-width: 650px) {
    .team-member {
        float: none;
        display: block;
        margin: 50px auto;
        width: 100%;
        text-align: center;
    }

    .team-member h3,
    .team-member span {
        margin: 15px auto;
    }
}

/*FLIP CARD*/

.flip-card {
    background-color: transparent;
    width: 306px;
    height: 434px;
    border: 3px solid #f1f1f1;
    perspective: 1000px;
    left: 0;
    right: 0;
    margin: auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #bbb;
    color: black;
}

.flip-card-back {
    background-color: #014883;
    color: white;
    transform: rotateY(180deg);
}

.catalogue-link {
    color: white;
}

.catalogue-link:hover {
    color: white;
}

.catalgoue-img {
    width: 300px;
    height: 428px;
}

/*CIRCLES EXAMPLES*/
.circle-examples {
    visibility: hidden;
    margin-left: -2px !important;
    width: 30%;
    position: fixed;
    top: 200px;
    z-index: 99;
    height: 200px;
}

.left-col {
    width: 700px;
}

.right-col {
    width: 40px;
}

.center-ex {
    margin-top: 300px;
    transform: translateY(-50%);
    display: none;
}

.content-ex {
    background-color: #fff;
    border: 1px solid #7f7f7f;
    width: 100%;
    max-width: 0px;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.btn-show-ex {
    background-color: #014883;
    color: white;
    height: 100%;
    cursor: pointer;
}

.ex-text {
    writing-mode: vertical-lr;
    text-orientation: upright;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
    margin-left: 20px;
    margin-top: 100px;
    transform: translateY(-50%);
}

/*MENU*/
.hidden {
    display: none;
}

.show {
    display: block;
}

.menu-bar {
    position: relative;
    margin: 0;
    width: 100%;
}

.menu-inner-bar {
    margin-right: -15px;
    position: absolute;
    background-color: #000;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.47);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.47);
}

.menu-item {
    width: 100%;
    color: white;
    font-size: 20px;
    line-height: 40px;
}

.menu-item-active {
    background-color: #014883;
}

.menu-link {
    color: white;
    text-decoration: none;
}

.menu-logo {
    height: 100px;
    margin-bottom: 10px;
}

.menu-link:hover {
    color: #a2bcd7;
    text-decoration: none;
}

.menu-icon {
    font-size: 40px;
    color: #a6a6a6;
}

.dropdown {
    width: auto;
    height: auto;
    display: inline-block;
}

.dropdown:hover {
    cursor: pointer;
}

.dropdown-menu {
    background-color: #7f7f7f;
    width: auto;
    padding: 0 !important;
    left: 40px !important;
    top: -20px !important;
}

.dropdown-item {
    margin: 0;
    padding: 10px;
    line-height: 24px;
    color: white;
    font-size: 16px;
    width: 200px;
}

.dropdown-item:hover {
    background-color: #a6a6a6;
    cursor: pointer;
}

.white {
    color: white;
}

.btn-menu {
    font-size: 25px;
    background-color: #014883;
    border-color: #014883;
    margin-left: 0px;
}

.btn-linkedin {
    background-color: white !important;
    border-color: white !important;
}

.fa-linkedin-in {
    color: #000 !important;
}

.btn-youtube {
    background-color: #fff;
    padding: 0px;
    height: 40px;
    width: 40px;
}

.btn-youtube i {
    font-size: 24px;
}


.btn-youtube i:before {
    color: #ff0000
}

.ico-right {
    transform: rotate(-90deg);
    font-size: 24px;
    float: right;
}

.ico-90x90 {
    width: 90px;
    height: 90px;
}

.ico-center {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

.menu-active {
    color: #a2bcd7;
}

/*HOME IMG*/
@font-face {
    font-family: 'TRATEN';
    src: url(../webfonts/TRATEN.ttf) format('truetype');
}

.home-img-1 {
    width: 192px;
    height: auto;
    border-radius: 50px 0px 0px 0px;
    -moz-border-radius: 50px 0px 0px 0px;
    -webkit-border-radius: 50px 0px 0px 0px;
    -webkit-box-shadow: -5px -20px 30px -10px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -5px -20px 30px -10px rgba(0, 0, 0, 0.4);
    box-shadow: -5px -20px 30px -10px rgba(0, 0, 0, 0.4);
}

.home-img-2 {
    width: 192px;
    height: auto;
    border-radius: 0px 0px 50px 0px;
    -moz-border-radius: 0px 0px 50px 0px;
    -webkit-border-radius: 0px 0px 50px 0px;
    -webkit-box-shadow: 5px 20px 30px -10px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 5px 20px 30px -10px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 20px 30px -10px rgba(0, 0, 0, 0.4);
}

.bg-home {
    background-color: #f2f2f2;
    height: 192px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
}

.home-right {
    height: 192px;
}

.minw150 {
    min-width: 150px;
}

.mw50 {
    max-width: 50%;
}

.mw60 {
    max-width: 60%;
}

.mw80 {
    max-width: 80%;
}

.mw85 {
    max-width: 85%;
}

.mw90 {
    max-width: 90%;
}

.mw100 {
    max-width: 100% !important;
}

/*MARGIN*/

.m0 {
    margin: 0 !important;
}

.mt-logo {
    margin-top: 60px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt28 {
    margin-top: 28px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mt100 {
    margin-top: 400px;
}

.mt110 {
    margin-top: 60px;
}

.mt160 {
    margin-top: 0px;
}

.ml-do {
    margin-left: 16px;
}

.ml2 {
    margin-left: 2em;
}

.ml3 {
    margin-left: 3em;
}

.mr-up {
    margin-right: 16px;
}

.ml45 {
    margin-left: 20px;
}

.mr45 {
    margin-right: 20px;
}

.mr10 {
    margin-right: 10px !important;
}

.mt210,
.mt230 {
    margin-top: 90px;
}

.mlr50 {
    margin-left: 50px;
    margin-right: 50px;
}

.mt-img {
    margin-top: 40px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb80 {
    margin-bottom: 80px;
}

.m-arrow {
    margin-top: 70px;
}

.mt101 {
    margin-top: 65px !important;
}

h1.mt20 {
    font-size: 2.5rem !important;
    font-weight: 600;
}

.sec-margin {
    margin-top: 3em;
}

/*PADDING*/

.p0 {
    padding: 0px !important;
}

.pl5e {
    padding-left: 5em;
}

.pl15 {
    padding-left: 15px;
}

.pl15 {
    padding-left: 30px;
}

.pr15 {
    padding-right: 15px;
}

.pr30 {
    padding-right: 30px;
}

.p-t-20 {
    padding-top: 40px;
}

.p-rl-25 {
    padding: 0px 25px 0px 25px;
}

.p-rl-5 {
    padding: 0px 5px 0px 5px;
}

.pt1 {
    padding-top: 1em;
}

.pt60 {
    padding-top: 60px;
}

.pt80 {
    padding-top: 80px;
}

.pb1 {
    padding-bottom: 1em;
}

.pb80 {
    padding-bottom: 80px;
}

/*ANIMATIONS*/
.fade-l {
    -webkit-animation: fade-in-left 1.5s 0.5s both;
    animation: fade-in-left 1.5s 0.5s both;
}

@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-r {
    -webkit-animation: fade-in-right 1.5s 0.5s both;
    animation: fade-in-right 1.5s 0.5s both;
}

@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/*COLORS*/

.h1-grey {
    color: #7f7f7f;
}

.pp-dark {
    color: #004a82;
}

.pp-middle {
    color: #4883b9;
}

.pp-light {
    color: #a2bcd7;
}

/*PRODUCTS*/

.container {
    max-width: 100%;
}

.prod-bg {
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.2s;
    /*-webkit-filter: grayscale(100%);
filter: grayscale(100%);*/
}

.prod-bg:hover {
    transform: scale(1.1);
    /*-webkit-filter: grayscale(0%);
filter: grayscale(0%);*/
}

.prod-bg:hover>.prod-link {
    text-decoration: none;
    color: white;
    opacity: 1;
}

.prod-black:hover>.prod-link {
    text-decoration: none;
    color: dimgrey;
    opacity: 1;
}

.prod-holder {
    left: 0;
    right: 0;
    margin: 10px auto 10px auto;
    position: relative;
    width: 400px;
    height: 250px;
    overflow: hidden;
    border-radius: 25px;
}

.prod-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    color: white;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.prod-link {
    padding-right: 100%;
    margin-left: 30px;
    text-align: left;
    line-height: 100px;
    position: absolute;
    left: 5px;
    top: 0px;
    font-size: 60px;
    opacity: 0;
    text-decoration: none;
    z-index: 1;
    font-family: Arial;
}

.lh325 {
    line-height: 300px;
}

/*.prod-link:hover + .prod-bg{
transform: scale(1.1);
}
.prod-link:hover{
text-decoration:none;
color:white;
  opacity: 1;
}*/
.legend {
    width: 200px;
    height: 170px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 30px;
    left: 25px;
    z-index: 100;
    border-radius: 20px;
}

.legend-inner {
    position: relative;
    padding: 15px;
}

.legend-inner .row {
    padding-bottom: 5px;
}

.jvector-map {
    height: 600px;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.map {
    height: 600px;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.mapInfo {
    background: #fff;
    margin: 0;
    padding: 0;
}

.plasticonInfo {
    color: #000;
    font-size: 1rem;
    margin: 0px 20px 20px 20px;
}

.ph-width {
    width: 100%;
}

/*BACKGROUNDS*/

.document-bg {
    background-image: url('../img/support/bg-document.jpg');
    background-size: cover;
}

.storage-bg {
    background-image: url('../img/products/storage.jpg');
    background-size: cover;
}

.storage-liquids-bg {
    background-image: url('../img/products/storage-liquids.jpg');
    background-size: cover;
}

.process-piping-bg {
    background-image: url('../img/products/process-piping.jpg');
}

.process-bg {
    background-image: url('../img/products/process.jpg');
}

.sheet-lining-bg {
    background-image: url('../img/products/sheet-lining.jpg');
}

.separators-bg {
    background-image: url('../img/products/separators.jpg');
}

.ducts-stacks-bg {
    background-image: url('../img/products/ducts-stacks.jpg');
}

.loose-lining-bg {
    background-image: url('../img/products/loose-lining.jpg');
}

.transport-bg {
    background-image: url('../img/products/transport.jpg');
}

.internals-bg {
    background-image: url('../img/products/internals.jpg');
}

.high-purity-bg {
    background-image: url('../img/products/high-purity.jpg');
}

.wet-esp-bg {
    background-image: url('../img/products/wet-esp.jpg');
}

.chlorine-bg {
    background-image: url('../img/products/chlorine.jpg');
    background-size: cover;
}

.fertilizer-bg {
    background-image: url('../img/products/fertilizer.jpg');
    background-size: cover;
}

.power-bg {
    background-image: url('../img/products/power.jpg');
    background-size: cover;
}

.semiconductor-bg {
    background-image: url('../img/products/semiconductor.jpg');
    background-size: cover;
}

.pigments-bg {
    background-image: url('../img/products/pigments.jpg');
    background-size: cover;
}

.waste-bg {
    background-image: url('../img/products/waste.jpg');
    background-size: cover;
}

.water-bg {
    background-image: url('../img/products/water.jpg');
    background-size: cover;
}

.offshore-bg {
    background-image: url('../img/products/offshore.jpg');
    background-size: cover;
}

.metal-refining-bg {
    background-image: url('../img/products/metal-refining.jpg');
    background-size: cover;
}

.refinery-bg {
    background-image: url('../img/products/refinery.jpg');
    background-size: cover;
}

.columns-scrubbers-bg {
    background-image: url('../img/products/columns-scrubbers.jpg');
}

.transportation-bg {
    background-image: url('../img/products/transportation.jpg');
    background-size: cover;
}

.steel-pickling-bg {
    background-image: url('../img/products/steel-pickling.jpg');
    background-size: cover;
}

.others-bg {
    background-image: url('../img/products/others.jpg');
    background-size: cover;
}

.paper-bg {
    background-image: url('../img/products/paper.jpg');
    background-size: cover;
}

.w100 {
    width: 100%;
}

.gas-grp-fl {
    background-image: url(../img/medium/gas-grp-fl.png);
}

.gas-grp-pure {
    background-image: url(../img/medium/gas-grp-pure.png);
}

.gas-grp-th {
    background-image: url(../img/medium/gas-grp-th.png);
}

.gas-steel-fl {
    background-image: url(../img/medium/gas-steel-fl.png);
}

.gas-steel-grp {
    background-image: url(../img/medium/gas-steel-grp.png);
}

.gas-steel-th {
    background-image: url(../img/medium/gas-steel-th.png);
}

.liq-grp-fl {
    background-image: url(../img/medium/liq-grp-fl.png);
}

.gas-th-pure {
    background-image: url(../img/medium/gas-th-pure.png);
}

.liq-grp-pure {
    background-image: url(../img/medium/liq-grp-pure.png);
}

.liq-grp-th {
    background-image: url(../img/medium/liq-grp-th.png);
}

.liq-steel-fl {
    background-image: url(../img/medium/liq-steel-fl.png);
}

.liq-steel-grp {
    background-image: url(../img/medium/liq-steel-grp.png);
}

.liq-steel-th {
    background-image: url(../img/medium/liq-steel-th.png);
}

.liq-th-pure {
    background-image: url(../img/medium/liq-th-pure.png);
}

.sol-grp-fl {
    background-image: url(../img/medium/sol-grp-fl.png);
}

.sol-grp-pure {
    background-image: url(../img/medium/sol-grp-pure.png);
}

.sol-grp-th {
    background-image: url(../img/medium/sol-grp-th.png);
}

.sol-steel-fl {
    background-image: url(../img/medium/sol-steel-fl.png);
}

.sol-steel-grp {
    background-image: url(../img/medium/sol-steel-grp.png);
}

.sol-steel-th {
    background-image: url(../img/medium/sol-steel-th.png);
}

/*NUMBERS*/
.n1 {
    background-image: url(../img/numbers/n1.png);
}

.n2 {
    background-image: url(../img/numbers/n2.png);
}

/*SUB-MENU*/
.fixed-top {
    position: relative;
}

.sub-menu {
    background-color: #f2f2f2;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.47);
    width: 100%;
    overflow: hidden;
    height: auto;
    z-index: 2 !important;
}

.sub-menu-item {
    width: 25%;
}

.sub-menu-image {
    max-width: 70px;
}

/* PCW-22 */
.icon-sub-menu {
    /* height: 50px !important;
    width: 50px !important; */
    max-height: 50px !important;
    max-width: 50px !important;
}

@media (max-width: 1168.99px) {
    .icon-sub-menu {
        max-height: 70px !important;
        max-width: 70px !important;
    }

    .icon-sub-menu-new {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: baseline;
        justify-content: center;
        gap: 1em;

        &>div {
            height: 146px;
            /* width: 100%; */
            max-width: unset !important;
        }
    }
}



/* PCW-22 */

.sub-menu-text-big {
    margin: 0;
    font-size: 30px;
    color: #014984;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    margin-top: 14px;
}

.sub-menu-text {
    font-size: 20px;
    color: #014984;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.sub-menu-link {
    text-decoration: none;
    /*-webkit-filter: grayscale(100%);
filter: grayscale(100%);*/
}

.srv-menu {
    width: 20%;
}

.sub-menu-link:hover {
    color: #014984;
    font-weight: 600;
    text-decoration: none;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.sub-menu-link:hover .sub-menu-text {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.sub-menu-link:hover .sub-menu-text-big {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.sub-menu-active {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

/*CAROUSEL*/

.carousel {
    margin: 0px 5%;
    min-height: 100%;
    max-height: 100%;
}

.carousel-control-prev {
    width: 5%;
    margin-left: -5%;
}

.carousel-control-next {
    width: 5%;
    margin-right: -5%;
}

.carousel-control-prev-icon {
    background-image: url(../img/prev.png);
}

.carousel-control-next-icon {
    background-image: url(../img/next.png);
}

.my-content {
    width: 100%;
    height: 90%;
    min-height: 70%;
    max-height: 70%;
}

.carousel-indicators li {
    border: 0;
    height: 30px;
    background-size: cover;
}

.carousel-indicators {
    bottom: auto;
    top: -40px;
}

.carousel-main li {
    height: 5px !important;
    background-color: #495057 !important;
}

.h400 {
    height: 400px;
}

.h550 {
    height: 550px;
}

/*MAIN SLIDER AND NEW LAYOUT*/

.mainSlider {
    max-width: 100% !important;
    margin: 0 !important;
}

.carousel-control-prev.main-slider {
    width: 5% !important;
    margin: 0 !important;
}

.carousel-control-next.main-slider {
    width: 5% !important;
    margin: 0 !important;
}

.carousel-indicators.main-slider {
    bottom: 0px !important;
    top: auto;
}

.carousel-indicators.main-slider li {
    height: 3px;
    margin-right: 5px;
    margin-left: 5px;
}

.carousel-control-prev-icon.main-slider {
    background-image: url(../img/prev-white.png);
}

.carousel-control-next-icon.main-slider {
    background-image: url(../img/next-white.png);
}

.slide-caption {
    max-width: 20%;
    position: absolute;
    left: 5%;
    line-height: 2;
    color: white;
    z-index: 2;
    font-weight: 300;
    font-style: italic;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4vw;
}

#preloader {
    background: #7f7f7f;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
}

#preloader .circle-preloader {
    display: block;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: spin 2s infinite linear;
}

.main-description h2 {
    font-size: 2.85em;
    font-weight: 600 !important;
}

.main-right-panel {
    margin-top: 5em;
    padding: 0;
}

.blue-panel {
    background: #282928;
}

.blue-panel p {
    color: white;
    padding: 5%;
}

.blue-panel h2 {
    color: white;
    padding-left: 5%;
}

.blue-panel li {
    color: white;
}

.blue-panel h2:first-child {
    padding-top: 1em;
}

.industry-icon {
    width: 100px;
    height: auto;
    padding: 0.5em;
}

.no-bullets {
    list-style-type: none;
}

.check-icon {
    width: 4%;
    padding-bottom: 0.5em;
    margin-right: 0.5em;
}

.sector-desc {
    top: 0;
    bottom: 0;
    margin: auto;
}

.hWrap {
    padding-top: 32px;
    margin-bottom: 3em;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.hWrap:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100px;
    border-bottom: 1px solid #4477a3;
}

.hWrap h1 {
    margin: 0;
    text-transform: uppercase;
    color: #4477a3;
    text-shadow: 5px 4px 8px rgb(68 119 163 / 25%);
}

.main-page-content p {
    margin: 0;
}

.landing-text a {
    font-size: 0.75em;
}

.sector-desc p {
    margin-bottom: 0;
}

/*GENERAL*/

html,
body {
    font-family: 'Poppins', sans-serif !important;
    /* height: 100%; */
    min-height: 100vh;
    width: 100% !important;
    min-width: 100% !important;
}

body {
    position: relative;
}

.btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-primary:hover {
    background-color: #014883;
    border-color: #014883;
}

.bg-applications {
    background: url('../img/applications/bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.bg-company {
    background: url('../img/support/bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.bg-products {
    background: url('../img/products/bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.bg-services {
    background: url('../img/service/bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.bg-competences {
    background: url('../img/competences/bg.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-size: cover;
}

.tekst57 {
    margin-top: 80px;
    margin-bottom: 50px;
}

.tekst57 li {
    margin-bottom: 5px;
    font-size: 18px;
}

body .gum1 {}

body .gum1 ul {
    text-align: left;
}

body .gum1 ul li {
    text-align: left;
}

.list-none {
    list-style: none;
    font-size: 2.5rem;
}

.fs-1 {
    margin-top: 8px !important;
    font-size: 0.9rem !important;
}

.scroll {
    overflow-y: scroll;
}

.count-text {
    margin-top: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

.count-title {
    margin-top: 10px;
    font-size: 1.5rem;
}

.rep-h {
    height: auto;
    width: 15%;
    margin-left: 20px;
    margin-right: 20px;
}

.sub-menu-image-cont {
    width: 80px;
}

.under-img {
    width: 40%;
    height: 40%;
}

.prod-cat {
    box-sizing: border-box;
    border: 2px solid rgba(0, 0, 0, 0);
    padding: 40px;
}

.prod-cat:hover {
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 40px;
    cursor: pointer;
}

.fw100 {
    font-weight: 100;
}

.fw200 {
    font-weight: 200;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.fw900 {
    font-weight: 900;
}

.fs40 {
    font-size: 30px;
}

.fs30 {
    font-size: 30px;
}

.text-right {
    text-align: center !important;
}

.text-left {
    /* text-align:center !important; */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 400;
}

h1 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2.75rem;
}

p {
    font-size: 2.5rem;
}

.h100 {
    height: 100%;
    overflow-x: hidden;
}

.about-img {
    max-height: 300px;
    border-radius: 80px 0px 80px 0px;
    -moz-border-radius: 80px 0px 80px 0px;
    -webkit-border-radius: 80px 0px 80px 0px;
    border: 0px solid #000000;
    margin-top: 60px;
}

.about-img2 {
    height: 200px;
    width: 300px;
    -webkit-box-shadow: 10px 10px 32px -15px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 32px -15px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 32px -15px rgba(0, 0, 0, 0.75);
}

.pc-baner {
    background-image: url(../img/pc-baner.svg);
}

.pr-des {
    font-size: 1.3em;
    font-style: italic;
    margin: 0;
}

.pr-info {
    line-height: 1.5;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.pr-img {
    max-width: 100%;
    -webkit-box-shadow: 10px 10px 32px -15px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 32px -15px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 32px -15px rgba(0, 0, 0, 0.75);
}

.mt80 {
    margin-top: 80px;
}

.p2 {
    padding: 2em;
}

.p4 {
    padding: 4em;
}

.pl0 {
    padding-left: 0px !important;
}

.pr0 {
    padding-right: 0px !important;
}

.pl22 {
    padding-left: 22px;
}

.pr22 {
    padding-right: 22px;
}

.row-align {
    margin-left: 100px;
    margin-right: 100px;
}

.add-info {
    text-align: center;
}

.add-info a {
    color: #000 !important;
}

.cen-el {
    left: 0;
    right: 0;
    margin: auto;
}

.txt-ver-cen {
    top: 50%;
    transform: translateY(-50%);
    padding-left: 30px;
}

.txt-ver-cen-r {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding-right: 45px;
}

.sec-text {
    font-size: 1.35em;
}

.max-h250 {
    max-height: 250px;
}

.small-ico {
    width: 30px;
}

.med-ico {
    width: 50px;
    margin-left: 50px;
}

.big-ico {
    width: 85px;
}

.big-ico.ico-center {
    cursor: pointer;
}

.med-ico {
    width: 50px;
    margin-left: 0;
    margin-bottom: 20px;
}

.loc-menu {
    width: 14%;
}

.pc-tittle {
    color: #7f7f7f;
    font-size: 35px;
}

.cont-menu {
    width: 16%;
}

.br-l {
    border-radius: 50px 0px 0px 0px;
    -moz-border-radius: 50px 0px 0px 0px;
    -webkit-border-radius: 50px 0px 0px 0px;
}

.br-r {
    border-radius: 0px 0px 50px 0px;
    -moz-border-radius: 0px 0px 50px 0px;
    -webkit-border-radius: 0px 0px 50px 0px;
}

.v-cen {
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*MEDIA QUERIES*/

@media only screen and (min-width: 320px) {
    .hWrap h1 {
        font-size: 2em;
    }

    .main-page-content p {
        font-size: 1.25em;
    }

    .sector-desc p {
        font-size: 0.85em;
        text-align: center;
        margin-bottom: 0;
        height: 6em;
    }

    .main-description ul li {
        font-size: 1.25em;
    }

    .blue-panel p {
        font-size: 1.25em;
    }

    .blue-panel h2 {
        font-size: 1.85em;
    }

    .landing-text a {
        font-size: 0.4em;
    }

    .mainSlider {
        display: none;
    }

    .custom-grid {
        grid-template-columns: 20% auto 20%;
    }

    .banerHand {
        width: 75px;
    }
}

@media (min-width: 481px) {

    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
    .hWrap h1 {
        font-size: 4em;
    }

    .main-page-content p {
        font-size: 2em;
    }

    .sector-desc p {
        font-size: 2em;
        height: auto;
    }

    .main-description ul li {
        font-size: 2em;
    }

    .blue-panel p {
        font-size: 2em;
    }

    .blue-panel h2 {
        font-size: 2.5em;
    }

    .mainSlider {
        display: none;
    }
}

@media (min-width: 641px) {

    /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
    .hWrap h1 {
        font-size: 2em;
    }

    .main-page-content p {
        font-size: 1.5em;
    }

    .sector-desc p {
        font-size: 1em;
    }

    .main-description ul li {
        font-size: 1.25em;
    }

    .blue-panel p {
        font-size: 1.25em;
    }

    .blue-panel h2 {
        font-size: 2em;
    }

    .industry-icon {
        width: 70px;
    }

    .landing-text a {
        font-size: 0.5em;
    }

    .mainSlider {
        display: block;
    }

    .custom-grid {
        grid-template-columns: 30% auto 30%;
    }

    .banerHand {
        width: auto;
    }
}

@media (min-width: 961px) {

    /* tablet, landscape iPad, lo-res laptops ands desktops */
    .hWrap h1 {
        font-size: 2em;
    }

    .sector-desc p {
        margin-bottom: 0;
    }

    .main-page-content p {
        font-size: 1.25em;
    }

    .sector-desc p {
        font-size: 1.25em;
    }

    .main-description ul li {
        font-size: 1.25em;
    }

    .blue-panel p {
        font-size: 1.25em;
    }

    .blue-panel h2 {
        font-size: 2em;
    }

    .mainSlider {
        display: block;
    }
}

@media (min-width: 1025px) {

    /* big landscape tablets, laptops, and desktops */
    .hWrap h1 {
        font-size: 2em;
    }

    .main-page-content p {
        font-size: 1.25em;
    }

    .sector-desc p {
        font-size: 1em;
    }

    .main-description ul li {
        font-size: 1.25em;
    }

    .blue-panel p {
        font-size: 1.25em;
    }

    .blue-panel h2 {
        font-size: 2em;
    }

    .mainSlider {
        display: block;
    }
}

@media only screen and (max-width: 892px) {
    .visible-menu-mob {
        display: block;
    }

    .visible-menu {
        display: none;
    }
}

@media only screen and (min-width: 893px) {
    .visible-menu-mob {
        display: none;
    }

    .visible-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    .prod-center {
        margin: 10px auto;
    }
}

@media (min-width: 1170px) {
    .menu-logo {
        margin-left: 0.75em;
    }

    .modal-dialog {
        max-width: 1000px;
        margin: 1.75rem auto;
    }

    .proc-head {
        font-size: 1.2em;
    }

    .proc-info {
        font-size: 1em;
    }

    .home-img-1 {
        -webkit-box-shadow: -20px -20px 30px -10px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: -20px -20px 30px -10px rgba(0, 0, 0, 0.4);
        box-shadow: -20px -20px 30px -10px rgba(0, 0, 0, 0.4);
    }

    .home-img-2 {
        -webkit-box-shadow: 20px 20px 30px -10px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 20px 20px 30px -10px rgba(0, 0, 0, 0.4);
        box-shadow: 20px 20px 30px -10px rgba(0, 0, 0, 0.4);
    }

    .bg-home {
        -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
    }

    h1 {
        font-size: 1.5rem;
    }

    h1.mt20 {
        font-size: 1.5rem !important;
        font-weight: 500;
    }

    h3 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1rem;
    }

    .legal-items {
        font-size: 1.25rem;
    }

    .legal-items li {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .legal-items a {
        color: black;
        text-decoration: none;
    }

    .legal-items a:hover {
        color: #4883b9;
        text-decoration: underline;
    }

    .list-none {
        font-size: 1.1rem;
    }

    .circle-examples {
        visibility: visible;
    }

    .pr-des {
        font-size: 0.7em;
    }

    .pr-info {
        font-size: 1em;
    }

    .txt-ver-cen {
        padding-left: 30px;
    }

    .txt-ver-cen-r {
        padding-right: 30px;
    }

    .mobile-dv {
        display: none;
    }

    .flag-ico {
        width: 30px;
    }

    .loc-menu {
        width: unset;
    }

    .cont-menu {
        width: unset;
    }

    .pc-tittle {
        margin: 0;
    }

    .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .sub-menu-image-cont {
        width: 50px;
    }

    .srv-menu {
        width: unset;
    }

    .fs40 {
        font-size: 40px;
    }

    .fixed-top {
        position: sticky;
    }

    .sub-menu {
        visibility: visible;
        background-color: #f2f2f2;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.47);
    }

    .sub-menu-text {
        font-size: 12px;
    }

    .sub-menu-image {
        max-width: 50px;
    }

    .sub-menu-item {
        width: unset;
        margin-top: 5px;
    }

    .support-menu {
        height: 60px;
        visibility: visible;
        margin-top: 70px;
        background-color: #f2f2f2;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.47);
    }

    .support-menu-link {
        color: black;
        font-size: 18px;
        text-decoration: none;
        line-height: 3.5;
    }

    .support-menu-link:hover {
        color: #a2bcd7;
        text-decoration: none;
    }

    .team-photo {
        max-width: 96px;
    }

    .menu-inner-bar {
        height: 60px;
    }

    .menu-item {
        width: auto;
        font-size: 16px;
        line-height: 60px;
    }

    .menu-icon {
        font-size: 35px;
    }

    .topnav a {
        font-size: 20px;
    }

    .topnav-btn {
        margin-top: 14px;
    }

    .topnav-logo {
        padding: 0em 1.25em 0em 0em !important;
    }

    .btn-menu {
        font-size: 18px;
        background-color: #014883;
        border-color: #014883;
    }

    .menu-logo {
        height: 50px;
        margin-top: 0.5em;
    }

    .topnav-btn {
        padding: 0px !important;
        padding-left: 15px !important;
    }

    .dropdown-menu {
        width: auto;
        left: -120px !important;
        top: 20px !important;
    }

    .dropdown-item {
        line-height: 24px;
        font-size: 16px;
        width: 200px;
    }

    .ico-right {
        font-size: 24px;
    }

    .mt-img {
        margin-top: 0px;
    }

    .mlneg2 {
        margin-left: -2px;
    }

    .mt-logo {
        margin-top: 20px;
    }

    .ml0 {
        margin-left: 0px !important;
    }

    .mr0 {
        margin-right: 0px !important;
    }

    .ml15 {
        margin-left: 15px;
    }

    .ml45 {
        margin-left: 45px;
    }

    .mr15 {
        margin-right: 15px;
    }

    .mr45 {
        margin-right: 45px;
    }

    .mt1 {
        margin-top: 1em;
    }

    .mt30 {
        margin-top: 30px;
    }

    .mt40 {
        margin-top: 40px;
    }

    .mt60 {
        margin-top: 60px;
    }

    .mt80 {
        margin-top: 80px;
    }

    .mt100 {
        margin-top: 100px;
    }

    .mt110 {
        margin-top: 110px;
    }

    .mt130 {
        margin-top: 130px;
    }

    .mt150 {
        margin-top: 150px;
    }

    .mt160 {
        margin-top: 160px;
    }

    .mt180 {
        margin-top: 180px;
    }

    .mt220 {
        margin-top: 220px;
    }

    .mt250 {
        margin-top: 250px;
    }

    .mt260 {
        margin-top: 260px;
    }

    .mt280 {
        margin-top: 280px;
    }

    .mt300 {
        margin-top: 300px;
    }

    .mb-mob {
        margin-bottom: 0px;
    }

    .p3em {
        padding: 3em;
    }

    .p6em {
        padding: 3em 6em 6em;
    }

    .p6-tb {
        padding: 6px 0px;
    }

    .pl0 {
        padding-left: 15px !important;
    }

    .pr0 {
        padding-right: 15px !important;
    }

    .pl15 {
        padding-left: 15px;
    }

    .pl30 {
        padding-left: 30px;
    }

    .pr15 {
        padding-right: 15px;
    }

    .pl22 {
        padding-left: 0;
    }

    .pr22 {
        padding-right: 0;
    }

    .pr30 {
        padding-right: 30px;
    }

    .s-gap {
        margin-top: 2em;
    }

    .prod-mobile-title {
        margin: 0;
    }

    .text-right {
        text-align: right !important;
    }

    .text-left {
        text-align: left !important;
    }

    .tooltip {
        font-size: 16px;
    }

    .tooltip-inner {
        min-width: 1000px !important;
    }
}

@media (min-width: 1199px) {
    .fa-bars {
        margin-right: 1.5em;
    }
}

@media (max-width: 1199px) {
    .mainBanerLeft {
        display: none;
    }

    .mainBanerWrap {
        grid-template-columns: 1fr;
        /* display:block; */
    }
}

@media (min-width: 1450px) {
    .menu-logo {
        margin-top: 0.5em;
    }

    .topnav-logo {
        padding: 0px 70px 0px 0px !important;
    }

    .menuWecare {
        margin-top: 22px;
    }

    .menu-inner-bar {
        height: 70px;
    }

    .prod-link {
        font-size: 90px;
    }

    .menu-item {
        width: auto;
        font-size: 18px;
        line-height: 70px;
    }

    .menu-icon {
        font-size: 40px;
    }

    .dropdown-menu {
        background-color: #383f47;
        width: auto;
        padding: 0 !important;
        left: -120px !important;
        top: 20px !important;
    }

    .dropdown-item {
        line-height: 30px;
        font-size: 20px;
        width: 250px;
    }

    .ico-right {
        font-size: 30px;
    }

    .mt100 {
        margin-top: 100px;
    }

    .mt110 {
        margin-top: 75px;
    }

    .mt167 {
        margin-top: 151px !important;
    }

    .check-icon {
        width: 8%;
    }

    .main-page-content p {
        margin: 0;
    }
}

@media (min-width: 1920px) {
    .procurement p {
        font-size: 1.1em;
    }

    .count-text {
        font-size: 14px;
        text-transform: uppercase;
    }

    p {
        font-size: 1em;
    }

    p.cooperation {
        font-size: 0.9em;
        margin-bottom: 0 !important;
    }

    p.cert-title {
        font-size: 1.1em;
    }

    .plasticonInfo {
        font-size: 16px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.15rem;
    }

    .map {
        height: 700px;
        margin: 0;
        padding: 0;
        margin-top: 20px;
    }

    .industry-icon {
        width: 80px;
    }

    .main-description h2 {
        font-size: 1.5em;
    }

    .landing-text a {
        font-size: 1em;
    }

    .main-page-content p {
        margin: 0;
    }

    .hWrap h1 {
        font-size: 2.25em;
    }

    .main-page-content p {
        font-size: 1.15em;
    }

    .sector-desc p {
        font-size: 1.15em;
    }

    .main-description ul li {
        font-size: 1.15em;
    }

    .blue-panel p {
        font-size: 1.15em;
    }

    .blue-panel h2 {
        font-size: 1.4em;
    }
}

#cookieBox {
    z-index: 2000;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-weight: 300;
    padding: 10px 10%;
    position: fixed;
    bottom: 0;
}

#chkAll,
#chkTech,
#chkAnalytics,
#chkMark {
    margin-right: 10px;
}

.optBox {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.optBox>label {
    margin-bottom: 0;
}

.btnCookies {
    border-radius: 20px;
    padding: 0.5em;
    background-color: white;
    border: 2px solid #014883;
    transition: background-color 0.3s, color 0.3s;
}

.btnCookies:hover {
    background-color: #014883;
    color: white;
}

.btnCookies:focus {
    outline: none;
}

.btnCookies:disabled {
    background-color: rgb(130, 130, 130);
    border-color: rgb(80, 80, 80);
}

.cookieText {
    font-size: 1rem;
}

.cookiesDeny {
    color: #007bff;
    font-weight: 600;
    padding-left: 15px;
}

.cookiesDeny:hover {
    cursor: pointer;
}

.ov-h {
    overflow-x: hidden;
}

.topnav a {
    text-transform: uppercase;
    /* padding: 20px 40px; */
}

.sub-menu-text {
    text-transform: uppercase;
}

.slide-caption {
    max-width: 24%;
}

.row.debb {
    margin-left: 0;
    margin-right: 0;
}

.blue-panel {
    overflow: hidden;
}

.blue-panel h2 {
    font-size: 1.6em;
}

@media (min-width: 1200px) {
    .topnav a.topnav-link.pibb {
        padding: 0 !important;
    }
}

@media (max-width: 1700px) {
    .topnav-logo {
        padding: 0px 15px 0px 0px !important;
    }
}

.tekst57 {
    margin-top: 80px;
    margin-bottom: 50px;
}

.jez {
    position: relative;
}

.jezz {
    position: absolute;
    top: 0;
    left: 0;
}

.nowe2 {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

h3.kik {
    color: #4477a3;
    text-shadow: 5px 4px 8px rgb(68 119 163 / 25%);
    margin: 0 auto;
    text-align: center;
}

.nowe22 {
    padding: 20px 40px;
}

.info-mapa {
    border-top: 1px solid #ccc;
}

@media (max-width: 1200px) {
    .team-photo {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .nowe2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-photo {
        max-width: 256px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .sector-desc p {
        text-align: center !important;
        margin-bottom: 30px;
    }
}

/* additional styles */
#myTopnva {
    display: flex;
    justify-content: center;
    width: 100%;
}

#myTopnav button {
    text-transform: uppercase;
}

.aos-animate .row p {
    margin-left: 16px;
}

.localization-nl .font-size-12 {
    font-size: 10px;
}

@media (max-width: 1169px) {
    .p6em {
        padding: 1em;
    }
}

@media (min-width: 320px) {
    .aos-animate .landing-text p>a {
        font-size: 1em;
    }

    .topnav a {
        text-transform: uppercase;
        padding: 20px 20px;
    }
}

.pc-localization-pl .hWrap {
    height: auto;
}

.hWrap * {
    margin: 0;
}

[data-aos='fade-right']:not(:last-of-type) {
    margin-bottom: 3em;
}

.main-description ul {
    padding-top: 16px;
}

footer.legal-info {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    background-color: #f2f2f2;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.47);

    & * {
        font-size: 1em;
        padding: 10px;
        margin-bottom: 0px;
    }

}

.inframe-map {

    /* padding-top: 60px; */

}

#header-video video {
    width: 100%;
    height: 100%;
}

#header-video {
    position: relative;
    z-index: 0;
    height: 100%;
    background-color: #fff;
}

/* FONTS */
.fs-sm {
    font-size: small !important;
}

.fs-smr {
    font-size: smaller !important;
}

/* jvector-map */
.jvectormap-container {
    display: flex !important;

    &>svg {
        margin-left: auto !important;
    }
}

.text-nowrap {
    white-space: nowrap;
}

.gap-md-16 {
    gap: 8px;

    @media (min-width: 1024px) {
        gap: 16px;
    }
}