/*!
Theme Name: endego-wp
Theme URI: https://endego.com
Author: Esumo
Author URI: https://esumohq.com
*/

*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background:#fff;
    position: relative;
    padding:0;
    margin:0;
    font-family: nimbus-sans-extended, sans-serif;
    font-weight: 500;
}

input, textarea, button{
    font-family: nimbus-sans-extended, sans-serif;
    font-weight: 500;
}

.container{
    width:95%;
    max-width:1200px;
    margin:0 auto;
    position: relative;
}

.row{
    display:flex;
    width:100%;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.row.justify-center{
	justify-content:center;
}

header.sub{
    padding:12px 0;
    background:#F5F5F5;
}

header.sub nav{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

header.sub nav ul{
    list-style: none;
    margin-left: auto;
    display: flex;
    gap:24px;
    padding:0;
    margin:0;
}

header.sub nav ul li a{
    font-size:13px;
    color:#343434;
    text-decoration: none;
}

header.main{
    padding:24px 0;
    position:sticky;
    top:0;
    background:#fff;
    z-index:98;
    box-shadow:0 0 10px rgba(0,0,0,0.05);
}

header.main .row{
    align-items: center;
}

header.main .brand img{
    display:block;
	width: 200px;
}

header.main nav ul{
    list-style: none;
    display:flex;
    margin-left: auto;
    gap:32px;
    padding:0;
    align-items: center;
    margin:0;
}

header.main nav ul li a{
    display:block;
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

@media (min-width:1200px){
    .hvr-underline-from-center {
        display: inline-block;
        vertical-align: middle;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        position: relative;
        overflow: hidden;
        padding:6px 0;
      }
      .hvr-underline-from-center:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 51%;
        right: 51%;
        bottom: 0;
        background: rgba(0,0,0,0.25);
        height: 1px;
        -webkit-transition-property: left, right;
        transition-property: left, right;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
      }
      .hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
        left: 0;
        right: 0;
      }
}

header.main nav ul li.button a{
    font-weight: 600;
    border: 2px solid #000;
    padding: 12px 24px;
    transition: .5s;
}

header.main nav ul li.button a:hover{
    background:#000;
    color:#fff;
}

section.logotypes{
    background:#000000;
    padding:24px 0;
}

section.logotypes ul{
    display:flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 100%;
    padding:0;
}

section.logotypes ul img{
    width: auto;
    display: block;
    max-width: 160px;
    max-height: 64px;
    margin:0 auto;
    object-fit: contain;
    object-position: center center;
}

section.logotypes .owl-stage{
    display:flex;
    align-items: center;
}

section.hero{
    background-color:#000;
    background-image:url('../slide-dark.html');
    background-size:cover;
    background-repeat: no-repeat;
    padding:48px 0 120px 0;
    background-position: bottom center;
	position:relative;
}

.page-template-page-home section.hero{
    padding-top:120px;
}

section.hero .rank-math-breadcrumb {
    margin-bottom:56px;
}

section.hero .rank-math-breadcrumb p{
    margin:0;
    font-size: 15px;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,.75);
}

section.hero .rank-math-breadcrumb p a{
    color:#fff;
    text-decoration: none;
}

section.hero .rank-math-breadcrumb p .separator{
    color:#FFE80A;
}

section.hero .container{
	z-index:2;
}

section.hero:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.5));
}

section.single--hero.contact--hero:before{
	display:none;
}

section.hero .desc{
    width:100%;
    max-width: 750px;
	position:relative;
	z-index:2;
}

section.hero h1{
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -.5px;
    margin: 0;
    line-height: 58px;
}

section.hero h1 span{
    color:#FFE80A;
}

section.hero p{
    color: rgba(255,255,255,.8);
    font-size: 18px;
    line-height: 26px;
    margin: 32px 0 40px;
}

section.hero .buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.primary{
    background: #FFE80A;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 36px;
    border: 2px solid #FFE80A;
    letter-spacing: -.5px;
    transition:.5s;
}

.secondary{
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 36px;
    border: 2px solid #FFE80A;
    letter-spacing: -.5px;
    transition:.5s;
}

.primary:hover, .secondary:hover{
    background:#fff;
    border:2px solid #fff;
    color:#000;
}


.home--about{
    padding:96px 0;
}

.page-template-page-about .home--about{
    padding:96px 0 56px;
}

.home--about.grey{
	background:#FAFAFA;
}

.home--about .row{
    align-items: center;
}

.home--about .desc{
    width:55%;
}

.home--about .img{
    width:35%;
    background: #F2F2F2;
    height: 100%;
    position: relative;
    border-radius: 3px;;
    min-height: 450px;
	background-size:cover;
	background-position:center center;
    display:flex;
    align-items: stretch;
}

.page-template-page-automotive .home--about .img::before, .page-template-page-non-automotive .home--about .img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.25), rgba(0,0,0,0.0));
}

.home--about .img video{
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius:3px;
}


.home--about .img img{
    position: absolute;
    width: 100px;
    height: 100px;
    right:-50px;
    top:-50px;
	z-index:2;
}
.rotate{
    -webkit-animation-name: spining;
    -webkit-animation-duration: 12000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spining;
    -moz-animation-duration: 12000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spining;
    -ms-animation-duration: 12000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name:  spining;
    animation-duration: 12000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spining { 
    from { 
        -ms-transform: rotate(360deg); 
    } to { 
        -ms-transform: rotate(0deg); 
    }
}
@-moz-keyframes spining { 
    from { 
        -moz-transform: rotate(360deg); 
    } to { 
        -moz-transform: rotate(0deg); 
    }
}
@-webkit-keyframes spining { 
    from { 
        -webkit-transform: rotate(360deg); 
    } to { 
        -webkit-transform: rotate(0deg); 
    }
}

.home--about .desc h2{
    margin: 0 0 32px;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -.5px;
}

.home--about .desc  p{
    font-size: 16px;
    line-height: 25px;
    color:#252525;
    margin: 8px 0;
    width: 100%;
}

.home--about .buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top:32px;
}

.primary--dark{
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 36px;
    border: 2px solid #000;
    letter-spacing: -.5px;
    transition:.5s;
}


.secondary--dark{
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 36px;
    border: 2px solid #000;
    letter-spacing: -.5px;
    transition:.5s;
}

.primary--dark:hover, .secondary--dark:hover{
    background:#FFE80A;
    border:2px solid #FFE80A;
    color:#000;
}

footer.main{
    padding:64px 0 40px;
    background:#000;
}


footer.main .brand img{
    margin:0 0 32px;
    display:block;
    max-width: 140px;
}

footer.main h3{
    color: #fff;
    margin: 0 0 24px;
    font-size: 16px;
    letter-spacing: -.5px;
}

footer.main .col{
    min-width:15%;
    max-width: 30%;
}

footer.main .col ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.main .col ul li a{
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 28px;
}

footer.main .col p{
    margin:0;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 14px;
    width:90%;
    line-height: 24px;
}

footer.main ul.socials{
    display:flex;
    list-style: none;
    gap:16px;
    margin-top:24px;
}

footer.main ul.socials li a{
    width: 48px;
    height: 48px;
    background: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFE80A;
}

footer.main .copy{
    margin-top:64px;
    color: #B7B7B7;
    text-decoration: none;
    font-size:13px;
}

footer.main .copy .copy--nav{
    display: flex;
    gap: 24px;
    margin: 0;
    list-style: none;
    padding: 0;  
}

footer.main .copy .copy--nav li a{
    color: #B7B7B7;
    text-decoration: none;
    font-size:13px;
}

section.newsletter{
    padding:72px 0;
    background-image: url('../png/newsletter-bg.png');
    background-size: cover;
}

section.newsletter .row{
    flex-direction: column;
    max-width: 785px;
    margin: 0 auto;
    text-align: center;
}

section.newsletter h3{
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #000;
}

section.newsletter h2{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 32px;
    width: 100%;
}

section.newsletter p{
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    color: #464646;
    margin: 24px 0 24px;
}

section.newsletter form p{
	display:flex;
	align-items:flex-start;
}

section.newsletter form p span{
    width: 100%;
    font-size: 11px;
    line-height: 17px;
    color: #464646;
}

section.newsletter form p span a{
	color:#000;
	font-weight:600;
	text-decoration:none;
}

.home--blog{
    padding:96px 0;
    background-image:url('../png/blog-bg.png');
    background-size: cover;
}

.home--blog.light{
	background-image:none;
	background:#fff;
}

.home--blog h2{
    color: #fff;
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 72px;
    letter-spacing: -.5px;
}

.home--blog.light h2{
	color:#000;
}

.home--blog .single--post{
    width:31%;
	margin:0 1.16%;
    border-radius:3px;
    overflow: hidden;
}


.home--blog .single--post .thumb{
    position: relative;
}

.home--blog .single--post .thumb img{
    display:block;
    width:100%;
    height: 190px;
    object-fit: cover;
}

.home--blog .single--post .thumb span{
    position:absolute;
    display:inline-block;
    top:16px;
    left:16px;
    background: #000;
    padding: 10px 16px;
    color: #FFE80A;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.home--blog .single--post .thumb span a{
	color:#FFE80A;
	text-decoration:none;
}

.home--blog .single--post .desc{
    background: #000;
    color: #fff;
    padding: 32px;
}


.home--blog.light .single--post .desc{
    background-color: #FAFAFA;
	color:#000;
}

.home--blog .single--post .desc a.secondary, .home--blog .single--post .desc a.secondary--dark{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top:24px;
}

.home--blog .single--post .desc p{
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    color: rgba(255,255,255,.8);
    margin: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home--blog.light .single--post .desc p{
	color:rgba(0,0,0,0.8);
}

.home--blog .single--post .desc  h3{
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px;
    min-height: 75px;
    letter-spacing: -.5px;
}

.home--training{
    padding:156px 0;
    position: relative;
    background-image:url('../png/training-bg.png');
    background-size: cover;
}

.home--training .row{
    align-items: center;
}

.home--training .row > .desc{
    width:42%;
}

.home--training .row > .desc p{
    font-size: 16px;
    line-height: 25px;
    margin: 24px 0 32px;
}

.home--training .row > .desc .primary--dark{
    display:inline-block
}

.home--training .row > .desc h3{
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.5px;
    margin: 0;
    color:#000;
}

.home--training .training--slider{
    position: absolute;
    display: flex !important;
    width: 50%;
    right: 0;
    top: 0;
    height: 100%;
    align-items: center;
}


.home--training .training--slider .single--training{
    border-radius:3px;
    overflow: hidden;
}

.home--training .training--slider .single--training .thumb{
    position: relative;
}

.home--training .training--slider .single--training .thumb img{
    display:block;
    width:100%;
    height: 190px;
    object-fit: cover;
}

.home--training .training--slider .single--training .thumb span{
    position:absolute;
    display:inline-block;
    top:16px;
    left:16px;
    background: #000;
    padding: 10px 16px;
    color: #FFE80A;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.home--training .training--slider .single--training .desc{
    background: #fff;
    color: #000;
    padding: 32px;
}

.home--training .training--slider .single--training .desc a.secondary--dark{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top:24px;
}

.home--training .training--slider .single--training .desc p{
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    color: rgba(0,0,0,.8);
    margin: 0;
}

.home--training .training--slider .single--training .desc  h3{
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 24px;
    letter-spacing: -.5px;
}


.home--numbers{
    padding:96px 0 40px;
    background-image:url('../png/numbers-bg.png');
    background-size: cover;
}

.home--numbers .single--number p span {
    color: #ffe80a;
    font-weight: 700;
    margin-left: 2px;
}

.home--numbers h2 {
    color: #fff;
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 72px;
    letter-spacing: -.5px;
}

.home--numbers .single--number{
    width:31%;
    color:#fff;
    margin-bottom:56px;
}

.home--numbers .single--number h4{
    font-size: 40px;
    line-height: 48px;
    height: 48px;
    font-weight: 800;
    margin: 0 0 24px;
    text-align: center;
}

.home--numbers .single--number p{
    font-size: 16px;
    text-align: center;
    color: rgba(255,255,255,.8);
    line-height: 25px;
    width: 90%;
    margin: 0 auto;
}


.home--software{
    padding:96px 0;
}

.home--software .row{
    align-items: center;
}

.home--software .desc{
    width:55%;
}

.home--software .img{
    width:35%;
    background: #F2F2F2;
    height: 100%;
    position: relative;
    border-radius: 3px;
    min-height: 500px;
}

.home--software .img img{
    position: absolute;
    width: 100px;
    height: 100px;
    left:-50px;
    top:-50px;
}

.home--software .desc h3{
    margin: 0 0 32px;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -.5px;
}

.home--software .desc  p{
    font-size: 16px;
    line-height: 25px;
    margin: 8px 0;
    width: 100%;
    color:#252525;
}

.home--software .buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top:32px;
}

.home--software  ul.offers{
    
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 48px 0 8px;
    justify-content: space-between;
}

.home--software  ul.offers li{
    display:flex;
    width:48%;
    align-items: flex-start;
    margin-bottom:40px;
}
.home--software  ul.offers li img{
    
    width: 80px;
    height: 80px;
    background: #000;
    padding: 16px;
    margin-right: 24px;
}

.home--software  ul.offers li p{
    color: #616161;
    font-size: 14px;
    line-height: 21px;
    margin:0;
}

.home--software  ul.offers li h4{
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 16px;
}


.home--engineering{
    padding:96px 0;
    height:660px;
}
/* .home--engineering .row{
	align-items:stretch
} */

.home--engineering h2{
    margin: 0 0 16px;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -.5px;
    text-align: center;
    width: 100%;
}

.home--engineering  .single--end {
	width: 24%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 0 32px 56px 32px;
    min-height: 100%;
    border-top: 5px solid #efefef;
	display:flex;
	flex-direction:column;
    opacity:.8;
    transition:.5s;
    cursor:pointer;
    position: relative;
    z-index:97;
}

.home--engineering  .single--end:after{
    content: "See full scope";
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 64px);
    border: 0;
    padding: 8px;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    background: #FFE80A;
    opacity:1;
    transition:.2s;
}

html:lang(de-DE) .home--engineering  .single--end:after{
    content: "Vollständiger Umfang";
}

html:lang(pl-PL) .home--engineering  .single--end:after{
    content: "Zobacz pełny zakres";
}

.home--engineering  .single--end.active:after{
    opacity:0;
}

.home--engineering  .single--end.active{
    opacity:1;
    border-top:5px solid #FFE80A;
    transform:scale(1.04);
    padding-bottom:24px;
}

.home--engineering  .single--end .icon{
    display: block;
    margin: -40px auto 0 auto;
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 3px;
    padding: 16px;
    /* filter: grayscale(1); */
    transition:.5s;
}

.home--engineering  .single--end.active .icon{
    /* filter: grayscale(0); */
}

.home--engineering  .single--end  h4{
    margin: 32px 0 32px;
    font-weight: 800;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: -.5px;
    text-align: center;
    width: 100%;
    min-height: 56px;
	display:flex;
	align-items:center;
	justify-content:center
}


.home--engineering  p.additional-info{
    font-size: 16px;
    line-height: 25px;
    color: #252525;
    margin: 24px auto 104px;
    text-align: center;
    width: 90%;
}

.home--engineering  .single--end a.secondary--dark{
	display:block;
	text-align:center;
	margin-top:auto;
}

.home--engineering  .single--end ul{
	list-style: none;
	padding:0;
	margin:0;
    opacity:0;
    max-height: 0;
    transition:.5s;
    overflow: hidden;
}

.home--engineering  .single--end.active ul{
    opacity:1;
    max-height: 600px;
}

.home--engineering  .single--end ul li{
    position: relative;
    font-size: 15px;
    line-height: 20px;
    margin: 8px 0px;
    padding: 8px 16px;
    text-align: center;
    background: #FAFAFA;
    border: 1px solid rgba(0,0,0,0.02);
}

/* .home--engineering  .single--end ul li::before {
  content: "\2022"; 
  color: #FFE80A; 
  font-weight: bold; 
  display: inline-block; 
position:absolute;
	left:0;
	top:0;
} */

.home--engineering .desc{
    width:55%;
}

.home--engineering .img{
    width:35%;
    background: #F2F2F2;
    height: 100%;
    position: relative;
    border-radius: 3px;
    min-height: 500px;
}

.home--engineering .img img{
    position: absolute;
    width: 100px;
    height: 100px;
    left:-50px;
    bottom:-50px;
}

.home--engineering .desc h3{
    margin: 0 0 32px;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -.5px;
}

.home--engineering .desc  p{
    font-size: 16px;
    line-height: 25px;
    margin: 8px 0;
    width: 100%;
    color:#252525;
}

.home--engineering .buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top:32px;
}

.home--engineering  ul.offers{
    
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 48px 0 8px;
    justify-content: space-between;
}

.home--engineering  ul.offers li{
    display:flex;
    width:48%;
    align-items: flex-start;
    margin-bottom:40px;
}
.home--engineering  ul.offers li img{
    
    width: 80px;
    height: 80px;
    background: #FBFBFB;
    padding: 16px;
    margin-right: 24px;
}

.home--engineering  ul.offers li p{
    color: #616161;
    font-size: 14px;
    line-height: 21px;
    margin:0;
}

.home--engineering  ul.offers li h4{
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 16px;
}

.home--testimonies{
    padding:80px 0 64px;
    background-color:#FAFAFA;
}

.home--testimonies h2{
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 72px;
    letter-spacing: -.5px;
}

.home--testimonies .owl-carousel .owl-stage{
	align-items:stretch;
	display:flex;
}

.home--testimonies .owl-theme .owl-nav.disabled + .owl-dots{
	margin-top:48px;
}

.home--testimonies .single--testimony{
    background: #fff;
    padding: 40px 32px 40px 56px;
    margin: 0 auto;
    position: relative;
	display:flex;
	flex-direction:column;
/* 	min-height:100%; */
}

.home--testimonies .single--testimony img.quote{
    position: absolute;
    left: -24px;
    top: 32px;
    width: 48px;
    height: 48px;
    display: block;
}

.home--testimonies .single--testimony .desc p{
    
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 23px;
    color:#616161;
}

.home--testimonies .single--testimony .desc p:last-of-type{
	margin-bottom:24px;
}

.home--testimonies .single--testimony .desc p strong{
    color:#000;
    font-weight: 700;
}

.home--testimonies .single--testimony .desc .client--meta{
    display:flex;
    margin-top:auto;
    align-items: center;
}

.home--testimonies .single--testimony .desc .client--meta img{
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 24px;
}

.home--testimonies .single--testimony .desc .client--meta span{
    color:#616161;
    font-size:14px;
    line-height: 22px;
}

.home--testimonies .single--testimony .desc .client--meta span strong{
    display:block;
    color:#000;
    font-weight: 700;
    font-size: 16px;
}

.home--testimonies.white-bg{
	padding:96px 0 64px;
	background:#fff;
}

.home--testimonies.white-bg .single--testimony{
	background:#FAFAFA;
}

.home--competences{
    padding:96px 0 64px;
}

.home--competences h2{
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 72px;
    letter-spacing: -.5px;
    color:#000;
}

.home--competences ul.competences{
    display: flex;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

.home--competences ul.competences li{
    padding: 12px 32px;
    border-bottom: 2px solid #DBDBDB;
    color: #717171;
    font-size: 15px;
    font-weight: 600;
    transition:.5s;
    cursor: pointer;
}

.home--competences ul.competences li.active, .home--competences ul.competences li:hover{
    color:#000;
    border-bottom:2px solid #FFE80A;
    background:rgba(0,0,0,0.02);
}

.home--competences .single--competence{
    display: none;
    margin-top: 72px;
    align-items: center;
}

.home--competences .single--competence.active{
    display:flex;
}

.home--competences .single--competence .map{
    width:45%;
}


.home--competences .single--competence .map img{
    display:block;
    margin:0 auto;
    width: 95%;
}


.home--competences .single--competence .desc{
    width:50%;
}

.home--competences .single--competence .desc h4{
    color: #7B7B7B;
    letter-spacing: -.5px;
    font-size: 17px;
    margin: 0;
}

.home--competences .single--competence .desc h3{
    margin: 4px 0 32px;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.home--competences .single--competence .desc p{
    font-size: 15px;
    line-height: 25px;
    margin: 8px 0;
    width: 90%;
}

.home--competences .single--competence .desc .numbers{
    display: flex;
    list-style: none;
    padding: 0;
    width:90%;
    margin: 40px 0 0;
    gap: 32px;
}

.home--competences .single--competence .desc .numbers li span{
    
    font-weight: 800;
    color: #252525;
    font-size: 16px;
    line-height: 20px;
    border-top: 3px solid #FFE80A;
    padding-top: 24px;
    display: block;
}

.home--competences .single--competence .desc .numbers li span strong{
    
    display: block;
    font-size: 49px;
    color: #000;
    font-weight: 800;
    margin-top: 8px;
    line-height: 48px;
}

.home--competences .container-fluid{
    width: 95%;
    margin: 0 auto;
    max-width: 1650px;
}

.home--competences .row{
	align-items:stretch
}

.home--competences .col{
    width: 49%;
    border-radius: 2px;
	display:flex;
	align-items:stretch;
    padding: 96px 0 0px;
    background-size:cover;
    position: relative;
}

.home--competences .col::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.5));
}

.home--competences .col .thumb{
	width:30%;
	min-height:100%;
	background-color:rgba(0,0,0,0.1);
    background-size:cover;
    background-position: center center;
}

.home--competences .col .desc{
    padding: 40px;
	widtH:100%;
	display:flex;
    position: relative;
	flex-direction:column;
}

.home--competences .col h3{
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 800;
    color:#fff;
}

.home--competences .col p{
    font-size: 16px;
    line-height: 25px;
    color: rgba(255,255,255,.8);
    margin: 12px 0;
    text-align: left;
    width: 100%;
    min-height: 75px;
}

.home--competences .col  ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin:16px 0 32px;
	gap:16px;
}

.home--competences .col  ul li{
    display: flex;
    align-items: flex-start;
    position: relative;
    background: #333333;
    color: rgba(255,255,255,.75);
    padding: 8px 24px;
    border-radius: 2px;
    font-size: 17px;
    transition:.5s;
}

.home--competences .col  ul li a{
    color:inherit;
    text-decoration: none;
}

.home--competences .col  ul li:hover{
    background:#FFE80A;
    color:#000;

}

/* .home--competences .col  ul li:before{
	position:absolute;
    left:0;
    top:0;
    font-size: 18px;
    color: rgba(0,0,0,0.5);
    font-weight: 900;
    content: "\f013";
    font-family: "Font Awesome 5 Free";
}

.home--competences .col  ul.offers li.full-width{
	max-width:100%;
}

.home--competences .col ul.offers li img{
    width: 64px;
    height: 64px;
    background: #FBFBFB;
    padding: 16px;
    margin-right: 24px;
} */

.home--competences .col  ul.offers li p{
    color: #616161;
    font-size: 14px;
    line-height: 21px;
    margin:0;
}
.home--competences .col  ul.offers li h4{
    margin: 0;
    font-weight: 700;
    font-size: 16px;
}


.home--competences .col .desc > a{
	width:100%;
	display:inline-block;
	text-align:center;
	margin-top:auto;
    font-size:18px;
}

.home--logos{
    padding:0 0 64px 0;
}

.home--logos h3{
    color: #000;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -.5px;
    text-align: center;
    width: 100%;
}

.home--logos ul{
    
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap:2%;
    justify-content: center;
}

.home--logos ul li{
    width:23.5%;
    margin-bottom:24px;
    background:#F8F8F8;
    border-radius: 3px;
    display:flex;
    justify-content: center;
    padding:24px 0;
    align-items: center;
}

.home--logos ul li img{
    display: block;
    width: 75%;
}

.home--cs{
    padding: 80px 0;
    background-color: #FAFAFA;
}

.home--cs h2{
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 72px;
    letter-spacing: -.5px;
    color: #000;
}

.home--cs .single--case-study{
    background:#fff;
}

.home--cs .single--case-study .thumb img{
    display:block;
    width:100%;
    height:280px;
    object-fit: cover;
}

.home--cs .single--case-study .desc{
    padding:32px;
}

.home--cs .single--case-study .desc h3{
    min-height: 75px;
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 24px;
    letter-spacing: -.5px;
}


.home--cs .single--case-study .desc p{
    font-size: 14px;
    line-height: 25px;
    color: rgba(0,0,0,.8);
    margin: 8px 0;
    width: 100%;
    color: #252525;
	    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.home--cs .single--case-study .desc a.cta{
    display:block;
    text-align: center;
    margin-top:32px;
}

.home--cs .owl-theme .owl-nav.disabled + .owl-dots{
    margin-top:40px;
}

@media (max-width:960px){
    .container{
        padding:0 24px;
    }
    header.main .brand img {
        display: block;
        max-width: 160px;
    }
    header.sub nav ul{
        justify-content: flex-end;
        gap:16px;
        width: 100%;
    }
    header.sub nav ul li a{
        font-size:12px;
    }
    section.hero{
        padding:40px 0 24px;
    }
    section.hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    section.hero p {
        font-size: 16px;
        margin: 24px 0 32px;
    }
    section.hero .buttons a{
        width:100%;
        text-align: center;
    }
    .home--about{
        padding:64px 0;
    }
    .home--about .desc{
        order:1;
        width:100%;
        margin-bottom:56px;
    }
    .home--about .img{
        width:100%;
        order:2;
        min-height: 350px;
    }
    .home--about .img img {
        right: 25px;
        top: 25px;
    }
    .home--about .desc h2 {
        font-size: 28px;
    }
    .home--cs h2{
        font-size:28px;
    }
    .home--about .desc p {
        font-size: 15px;
        line-height: 24px;
        color: #252525;
        margin: 8px 0;
        width: 100%;
    }
    .home--about .buttons a{
        width: 100%;
        text-align: center;
    }
    .home--engineering{
        padding:0 0 64px;
    }
    .home--engineering .desc{
        order:1;
        width:100%;
        margin-bottom:56px;
    }
    .home--engineering  .img{
        width:100%;
        order:2;
        min-height: 350px;
    }
    .home--engineering  .img img {
        left: 25px;
        bottom: 25px;
    }
    .home--engineering  .desc h3{
        font-size: 28px;
    }
    .home--engineering .desc p {
        font-size: 15px;
        line-height: 24px;
        color: #252525;
        margin: 8px 0;
        width: 100%;
    }
    .home--engineering  .buttons a{
        width: 100%;
        text-align: center;
    }
    .home--engineering ul.offers li{
        width:100%;
    }
    .home--testimonies .single--testimony img.quote{
        position:initial;
        margin-bottom:24px;
    }
    .home--testimonies .single--testimony {
        padding: 40px 32px;
    }
    .home--testimonies h2 {
        font-size: 28px;
        margin: 0px 0 56px;
    }
    .home--testimonies{
        padding:64px 0;
    }
    .home--testimonies .home--testimony{
        width:90%;
        margin:0 auto;
    }
    .home--testimonies .single--testimony .desc .client--meta span strong {
        margin-bottom: 8px;
    }
    .home--testimonies .single--testimony .desc .client--meta span {
        font-size: 14px;
        line-height: 18px;
    }
    footer.main .col{
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 0 48px;
    }
    footer.main .brand img{
        margin:0 auto 32px;
    }
    footer.main ul.socials{
        justify-content: center;
    }
    footer.main .col p{
        width: 100%;
    }
    footer.main .copy {
        text-align: center;
        margin-top:0px;
    }
    footer.main .copy span{
        display:block;
        width: 100%;
        order:2;
        margin-top:24px
    }
    footer.main .copy ul{
        order:1;
    }
    footer.main .copy .copy--nav li a {
        font-size: 12px;
    }
    section.newsletter{
        padding:64px 0;
    }
    section.newsletter h3, .home--blog h2{
        font-size:28px;
    }
    section.newsletter form{
        flex-wrap: wrap;
        width: 100%;
    }
    section.newsletter form input[type="text"], section.newsletter form input[type="submit"]{
        width: 100%;
        min-width: 0;
    }
    section.newsletter .row{
        width: 100%;
    }
    .home--blog{
        padding:64px 0 24px;
    }
    .home--blog .single--post{
        width: 100%;
        margin-bottom:40px;;
    }
    .home--blog .single--post .desc h3{
        font-size:18px;
    }
    .home--software{
        padding:0 0 64px;
    }
    .home--software .desc{
        order:1;
        width:100%;
        margin-bottom:56px;
    }
    .home--software  .img{
        width:100%;
        order:2;
        min-height: 350px;
    }
    .home--software  .img img {
        left: 25px;
        top: 25px;
    }
    .home--software  .desc h3{
        font-size: 28px;
    }
    .home--software .desc p {
        font-size: 15px;
        line-height: 24px;
        color: #252525;
        margin: 8px 0;
        width: 100%;
    }
    .home--software  .buttons a{
        width: 100%;
        text-align: center;
    }
    .home--software ul.offers li{
        width:100%;
    }
    .home--numbers {
        padding:64px 0 24px
    }
    .home--numbers h2{
        font-size:28px;
    }
    .home--numbers .single--number{
        width:100%;
        margin-bottom: 40px;
    }
    .home--training{
        padding:64px 0;
        display:flex;
        flex-wrap: wrap;
    }
    .home--training .training--slider{
        position: initial;
        width: 90%;
        margin:0 auto;
        order:1;
        margin-bottom:40px;
    }
    .home--training .container{
        order:2;
    }
    .home--training .row > .desc{
        width: 100%;
    }
    .home--training .row > .desc .primary--dark{
        width: 100%;
        text-align: center;
    }
    .home--training .row > .desc h3{
        font-size:28px;
    }
    .home--competences h2{
    font-size: 28px;
    margin: 0px 0 40px;
    }
    .home--competences ul.competences{
        flex-wrap: wrap;
    }
    .home--competences ul.competences li{
        width: 100%;
        text-align: center;
    }
    .home--competences .single--competence .map{
        width:100%;
        margin-bottom:32px;
        order:1;
    }
    .home--competences .single--competence .desc{
        width: 100%;
        order:2;
    }
    .home--competences .single--competence{
        flex-wrap: wrap;
        margin-top:56px
    }
    .home--competences .single--competence .desc .numbers{
        flex-wrap: wrap;
        width: 100%;
    }
    .home--competences .single--competence .desc .numbers li{
        width: 100%;
    }
    .home--competences .single--competence .desc p{
        width:100%
    }
    .home--competences .single--competence .desc h3 {
        font-size: 28px;
        line-height: 32px;
    }
    .home--competences{
        padding:64px 0 24px;
    }
    .home--competences .single--competence .desc .numbers li span{
        text-align: center;
        font-size:16px;
    }
    .home--competences .single--competence .desc .numbers li span strong {
        font-size: 36px;
    }
    .home--logos{
        padding:56px 0;
    }
    .home--logos ul li{
        width:48%;
        margin-bottom:16px;
        padding: 32px 24px;
    }
    .home--logos ul li img{
        width: 100%;
    }
}

section.single--hero{
    padding:24px 0 80px;
}

section.single--hero .breadcrumbs{
    margin-bottom:64px;
}

section.single--hero .breadcrumbs ul{
    display:flex;
    gap:12px;
    list-style: none;
    margin:0;
    padding:0;
    font-size:14px;
    color:rgba(255,255,255,.75);
}

section.single--hero .breadcrumbs ul .divider{
    color:#FFE80A;
    font-size:9px;
}

section.single--hero p{
    margin-bottom: 0;
}

section.single--hero h1{
    font-size:40px;
    line-height: 48px;
}

section.career-benefits{
    padding:96px 0px;
}


section.career-benefits .row{
	align-items:stretch
}

section.career-benefits h2{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 72px;
    width: 100%;
    text-align: center;
}

section.career-benefits  h3{
    text-align: center;
    width: 100%;
    margin: 0 0 16px;
    font-size: 21px;
}

section.career-benefits .single--benefit{
    padding:40px 32px;
    border-radius:3px;
    background-color:#FAFAFA;
    width:49%;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom:24px;
}

section.career-benefits .single--benefit img{
	filter: invert(82%) sepia(98%) saturate(947%) hue-rotate(344deg) brightness(99%) contrast(102%);
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    object-position: center;
	margin-right:32px;
}

section.career-benefits .single--benefit h4{
    font-size: 16px;
    margin: 0;
    line-height: 23px;
    font-weight: 500;
}

section.career-testimonies {
    background-color: #FAFAFA;
    padding: 96px 0 48px;
}


section.career-testimonies h2{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 72px;
    width: 100%;
    text-align: center;
}

section.career-testimonies .col{
    width:47%;
}

section.career-testimonies .single--testimony{
    background: #fff;
    padding: 40px 32px 40px 56px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    margin-bottom: 48px;
}

section.career-testimonies .single--testimony img.quote{
    position: absolute;
    left: -24px;
    top: 32px;
    width: 48px;
    height: 48px;
    display: block;
}

section.career-testimonies .single--testimony .desc p{
    
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 25px;
    color:#616161;
}

section.career-testimonies .single--testimony .desc p strong{
    color: #000;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
    display: block;
}

section.career-testimonies .single--testimony .desc .client--meta{
    display:flex;
    margin-top:24px;
    align-items: center;
}

section.career-testimonies .single--testimony .desc .client--meta img{
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 24px;
}

section.career-testimonies .single--testimony .desc .client--meta span{
    color:#616161;
    font-size:15px;
    line-height: 24px;
}

section.career-testimonies .single--testimony .desc .client--meta span strong{
    display:block;
    color:#000;
    font-weight: 700;
    font-size: 16px;
}

section.career-process {
    padding: 96px 0;
    position: relative;
}

section.career-process::before{
    background-color:#CDCDCD;
    content:"";
    width:100%;
    height: 2px;
    display:block;
    position: absolute;
    top: 244px;
}


section.career-process h2{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 72px;
    width: 100%;
    text-align: center;
}

section.career-process .row >  ul{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width:100%;
    justify-content: center;
    z-index: 10;
    gap:96px;
}

section.career-process  ul li{
    text-align: center;
}

section.career-process  ul li span{
    margin:0 auto 32px;
    width: 64px;
    height: 64px;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    background:#fff;
    padding-bottom: 4px;
}

section.career-process  ul li h3{
    margin: 0 auto;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
}

section.career-process ul ul{
	margin:0;
	list-style:none;
	width:85%;
	padding:0;
	margin:24px auto 0;
}

section.career-process ul ul li{
	text-align:left;
    font-size: 15px;
    line-height: 24px;
    color: #252525;
	margin-bottom:8px;
	position:relative;
    padding-left: 24px;
}

section.career-process ul ul li:before{
	content: "\2022";
  	color: #ffe80a;
  	font-weight: bold;
 	 display: inline-block;
	position:absolute;
	left:0;
	top:0;
}

section.career-process.support-process.business-model .row > ul{
	gap:40px;
}

section.career-process.business-model .row > ul > li{
	flex:1;
}

section.career-process.support-process.business-model ul li p{
	font-size:16px;
    line-height: 24px;
}

section.career-process.support-process.business-model ul li small{
    display: block;
    color: rgba(0,0,0,0.65);
    font-size: 14px;
    margin-top: 8px;
}

section.career-cta{
    background-image: url('../png/newsletter-bg.png');
    background-size: cover;
}

section.career-cta .row{
    align-items: center;
}

section.career-cta .desc{
    width: 40%;
}

section.career-cta.sales-person-cta .desc{
    width: 43%;
}

section.career-cta .desc h3{
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0;
}

section.career-cta .desc  p{
    font-size: 16px;
    line-height: 25px;
    color: #252525;
    margin: 16px 0 24px;
    width: 100%;
}

section.career-cta .desc a{
    display:inline-block;
}

section.career-cta .desc a:hover{
    background:#fff;
}

section.career-cta img.bogusia{
    max-width: 360px;
    margin-top: auto;
}

section.career-cta img.grzegorz{
    max-width: 290px;
    margin-top: -16px;
/* 	margin-right:-72px; */
}

section.career-cta .bogusia--meta{
    max-width: 275px;
}


section.career-cta .bogusia--meta h4{
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0;
}

section.career-cta .bogusia--meta.grzegorz--meta h4 {
    line-height: 28px;
}

section.career-cta .bogusia--meta  h5{
    font-size: 17px;
    line-height: 25px;
    color: #252525;
    margin: 4px 0 24px;
    width: 100%;
}

section.career-cta .bogusia--meta.grzegorz--meta  h5{
    line-height: 22px;
    margin: 16px 0 24px;
}

section.career-cta .bogusia--meta  a{
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    color: #252525;
    margin: 4px 0;
    width: 100%;
    display:block;
}

section.career-cta .bogusia--meta  a i{
    color:#000;
    margin-right: 16px;
}

.career-open{
    padding:96px 0 120px;
    background-color:#FAFAFA;
}

.career-open h2{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 72px;
    width: 100%;
    text-align: center;
}

.career-open .sidebar{
    width:25%;
}

.career-open .sidebar .single--widget{
    margin-bottom:40px;
}

.career-open .sidebar hr{
    display:block;
    width: 100%;
    height: 1px;
    background-color: #BCBCBC;
    border:0;
    margin:24px 0;
}

.career-open .sidebar input[type="search"]{
    display:block;
    font-size:14px;
    padding:16px 24px;
    width: 100%;
    margin-bottom:12px;
    color:#7C7C7C;
}

.career-open .sidebar input[type="search"]::placeholder{
    color:#7C7C7C;
}

.career-open .sidebar input.primary--dark{
    display:block;
    font-size:15px;
    text-align:center;
    width: 100%;
}

.career-open .sidebar  h5{
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 16px;
    letter-spacing: 1px;
}

.career-open .sidebar p{
    font-size:15px;
}

.career-open .open--positions{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.career-open .open--positions .single--position{
    background: #fff;
    padding: 32px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    width:48%;
    margin-bottom:32px;
}

.career-open .open--positions .single--position .rotate{
    position: absolute;
    top:-24px;
    height:80px;
    width: 80px;
    right:-24px;
    display:block;
}

.career-open .open--positions .single--position a{
    display:block;
    text-align: center;
}

.career-open .open--positions .single--position span{
    color:#616161;
    display:block;
    margin:16px 0 32px;
    font-size:15px;
}

.career-open .open--positions .single--position span i{
    margin-right: 12px;
}

.career-open .open--positions .single--position h4{
    margin: 0;
    font-size: 19px;
    line-height: 25px;
    font-weight: 700;
    letter-spacing: -.5px;
    max-width: 85%;
}

@media (max-width:960px){
    section.single--hero{
        padding:24px 0 56px;
    }
    section.single--hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .career-open .sidebar{
        display:none;
    }
    .career-open .open--positions{
        width:100%;
    }
    .career-open .open--positions .single--position{
        width:100%;
    }
    .career-open, section.career-process  {
        padding:80px 0;
    }
    .career-open h2, section.career-process h2, section.career-benefits h2, section.career-testimonies h2 {
        font-size: 28px;
    }
    section.career-process ul {
        flex-wrap: wrap;
        gap:48px
    }
    section.career-process ul li{
        width:100%;
    }
    section.career-process::before, section.career-testimonies .single--testimony img.quote{
        display:none;
    }
    section.career-benefits .single--benefit{
        width:100%;
        padding: 32px;
    }
    section.career-testimonies .col{
        width:100%; 
    }
    section.career-testimonies .single--testimony{
        padding:40px 32px;
    }
    section.career-cta .desc{
        width:100%;
        text-align: center;
        order:1;
    }
    section.career-cta{
        padding:56px 0; 
    }
    section.career-cta .bogusia, section.career-cta .bogusia--meta{
        max-width: 100%;
        width: 100%;
        margin-top: 24px;
        text-align: center;
        order:2;
    }
    section.career-cta .desc h3{
        font-size:24px;
        line-height: 32px;
    }
    section.career-cta img.grzegorz{
        order:3;
    }
    footer.main .copy .copy--nav{
        width:100%;
		flex-wrap:wrap;
    }
}

.page--wrapper{
    padding:80px 0;
}

.page--wrapper .rotate{
    position:absolute;
    display:block;
    top:-130px;
    right:0;
    width:100px;
    height: auto;
}

.page--wrapper .page--sidebar{
    width:25%;
    padding: 32px;
    background: #F2F2F2;
    border-radius: 3px;
}

.page--wrapper .page--sidebar.case-study--meta{
	background:transparent;
	padding:0;
}

.page--wrapper .page--sidebar.case-study--meta .single--meta{
	width:100%;
	margin-bottom:24px;
    padding: 32px;
    background: #F2F2F2;
    border-radius: 3px;
}

.page--wrapper .page--sidebar.case-study--meta .single--meta h6{
    font-size: 18px;
    margin: 16px 0 0;
}

.page--wrapper .page--sidebar.case-study--meta .single--meta h5{
	font-size:13px;
	opacity:.5;
}

.page--wrapper .page--sidebar.case-study--meta .single--meta ul.industries li{
    display: inline-block;
    background: rgba(0,0,0,0.1);
    padding: 8px 24px;
    border-radius: 40px;
    margin: 4px 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    color: #000;
}

.page--wrapper .page--sidebar h5{
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page--wrapper .page--sidebar ul{
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.page--wrapper .page--sidebar li a{
    color: rgba(0,0,0,0.75);
    text-decoration: none;
    font-size: 15px;
    line-height: 28px;
}

.page--wrapper .page--content{
    width:70%;
}

.page--wrapper .page--content p{
    font-size: 16px;
    line-height: 28px;
    margin: 12px 0;
    width: 100%;
}


.page--wrapper .page--content ul{
	list-style: none;
	padding:0;
	margin:24px 0 0;
}

.page--wrapper .page--content ol{
	margin:24px 0 0;
}

.page--wrapper .page--content ul li{
	position:relative;
	padding-left:24px;
    font-size: 16px;
    line-height: 26px;
    margin: 8px 0px;
}

.page--wrapper .page--content ol li{
	position:relative;
    font-size: 16px;
    line-height: 26px;
    margin: 8px 0px;
}

.page--wrapper .page--content ul li::before {
  content: "\2022"; 
  color: #FFE80A; 
  font-weight: bold; 
  display: inline-block; 
position:absolute;
	left:0;
	top:0;
}

.page--wrapper .page--content h3{
    margin: 16px 0 24px;
    font-size: 21px;
    font-weight: 800;
    line-height: 32px;
}

.page--wrapper .page--content h2{
    margin: 32px 0 32px;
    font-weight: 800;
    font-size: 28px;
    line-height: 40px;
}

.page--wrapper .page--content figure.wp-block-image.size-large {
    margin: 32px 0;
}

.page--wrapper .page--content h4{
    
    margin: 16px 0 24px;
    font-size: 21px;
    font-weight: 800;
}

.page--wrapper .page--content figure{
    padding: 16px;
    background: #F2F2F2;
    border-radius: 3px;
}

.page--wrapper .page--content > figure{
	margin:32px auto;
}

.page--wrapper .page--content .wp-block-image img{
    max-width: 100%;
    /* width: 100%; */
    height: auto;
    /* border: 10px solid; */
    margin: 0 auto;
    display: block;
    border-radius: 3px;
}

body .page--wrapper .page--content  .is-layout-flex{
    margin:32px 0;
}

.page--wrapper .page--content .wp-block-quote{
	border-left: 2px solid #000;
    margin-left: 0;
    padding-left: 32px;
	margin-top:24px;
	margin-bottom:24px;
}

.page--wrapper .page--content .wp-block-quote cite{
	font-weight:600;
}

.single-post .single--hero{
    background-position: center center;
}

@media (max-width:960px){
    .page--wrapper{
        padding:40px 0 64px;
    }
    .page--wrapper .rotate{
        right: 24px;
        width:64px;
        top:-72px;
    }
    .page--wrapper .page--sidebar{
        width:100%;
        order:2;
        margin-top:40px;
    }
    .page--wrapper .page--content{
        width:100%;
        order:1;
    }
}

.archive--filters{
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,.2);
    margin-top: -176px;
    position: relative;
    z-index: 10;
}

.archive--filters form{
    width: 100%;
    display:flex;
    justify-content: space-between;
    align-items:flex-end;
    flex-wrap: wrap;
}

.archive--filters form .col{
    width: 31%;
}

.archive--filters form .col input, .archive--filters form .col select{
    width: 100%;
}

.archive--filters form .col label{
    color:#fff;
    font-weight: 800;
    font-size:15px;
    margin-bottom:16px;
    display:block;
}

.archive--filters form .col  select{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    padding: 19px 25px;
    border:1px solid #4E4E4E;
    letter-spacing: -.5px;
    transition: .5s;
    height: 60px;
    background: url("https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg") no-repeat right 0.8em center/1.4em, linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, rgba(255, 255, 255, 0.2) 3em);
    background-color: #272727;
}

.archive--filters form .col select:focus {
    outline: none;
  }

.archive--filters form .col  select::-ms-expand {
    display: none;
  }

  .archive--wrapper{
    padding:72px 0 32px;
  }
  
.archive--wrapper .single--post{
    width:31%;
    border-radius:3px;
    overflow: hidden;
    margin-bottom:40px;
	margin:0 1.16% 40px;
}

.archive--wrapper .single--post .thumb{
    position: relative;
}

.archive--wrapper .single--post .thumb img{
    display:block;
    width:100%;
    height: 190px;
    object-fit: cover;
}

.archive--wrapper .single--post .thumb span{
    position:absolute;
    display:inline-block;
    top:16px;
    left:16px;
    background: #000;
    padding: 10px 16px;
    color: #FFE80A;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.archive--wrapper .single--post .thumb span a{
	text-decoration:none;
	color:#FFE80A
}

.archive--wrapper .single--post .desc{
    background: #FAFAFA;
    color: #000;
    padding: 32px;
}

.archive--wrapper .single--post .desc a.secondary--dark{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top:24px;
}

.archive--wrapper .single--post .desc p{
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    color: rgba(0,0,0,.8);
    margin: 0;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive--wrapper .single--post .desc  h3{
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px;
    letter-spacing: -.5px;
    min-height: 75px;
}

.single--post .desc h3 strong{
    font-weight: 600;
}

@media (max-width:960px){
    .archive--filters form .col{
        width:100%;
        margin-bottom:24px;
    }
    .archive--wrapper .single--post{
        width:100%;
    }
    .archive--wrapper .single--post .desc h3{
        font-size:19px;
    }
}

.page--content .post--author{
    background: #FAFAFA;
    color: #000;
    padding: 32px;
    margin-top: 40px;
    display: flex;
    position: relative;
    align-items: flex-start;
}

.page--content .post--author img{
    width: 110px;
    height: auto;
    display: block;
    border: 2px solid #fff;
    border-radius: 2px;
    margin-right: 32px;
}

.page--content .post--author  a.social{
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: absolute;
    right: 32px;
    right:32px;
    top:32px;
    text-decoration: none;
}

.page--content .post--author h4 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 800;
}

.page--content .post--author h5 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.5px;
    color: rgba(0,0,0,0.5);
}

.page--content .post--newsletter {
    background: #FAFAFA;
    color: #000;
    padding: 32px;
    margin:40px 0;
    text-align: center;
}


.page--content .post--newsletter h3{
    font-size: 24px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0;
    width: 100%;
}

.page--content .post--newsletter p{
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    color: #464646;
    margin: 24px 0 24px;
}

.page--content .post--newsletter  span{
    width: 100%;
    font-size: 13px;
    line-height: 25px;
    color: #464646;
    margin: 0;
}

.page--content .post--newsletter form{
    width: 100%;
    margin: 16px 0 32px;
    display:flex;
    justify-content: center;
    gap:24px;
}

.page--content .post--newsletter form input[type="text"]{
    padding: 18px 32px;
    min-width: 400px;
    font-size: 15px;
    border-radius: 3px;
    border: 0;
}

.page--content .post--newsletter form input[type="submit"]{
    padding: 18px 32px;
    min-width: 275px;
    font-size: 15px;
    border-radius: 3px;
    border: 0;
    background: #000;
    color: #fff;
    font-weight: 600;
}

@media (max-width:960px){
    .page--content .post--author img{
        display:none;
    }
    .page--wrapper .page--content  .post--author p {
        font-size: 14px;
    }
    .page--content .post--author a.social{
        display:none;
    }
    .page--content .post--newsletter form{
        flex-direction: column;
    }
    .page--content .post--newsletter form input[type="text"], .page--content .post--newsletter form input[type="submit"]{
        min-width: 0;
        width: 100%;
    }
}



.trainings--wrapper .single--training{
    border-radius:3px;
    overflow: hidden;
    width:31%;
    margin-bottom:40px;
}

.trainings--wrapper  .single--training .thumb{
    position: relative;
}

.trainings--wrapper .single--training .thumb img{
    display:block;
    width:100%;
    height: 190px;
    object-fit: cover;
}

.trainings--wrapper .single--training .thumb span{
    position:absolute;
    display:inline-block;
    top:16px;
    left:16px;
    background: #000;
    padding: 10px 16px;
    color: #FFE80A;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.trainings--wrapper .single--training .desc{
    background: #fff;
    color: #000;
    padding: 32px;
}

.trainings--wrapper .single--training .desc a.secondary--dark{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top:24px;
}

.trainings--wrapper .single--training .desc p{
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    color: rgba(0,0,0,.8);
    margin: 0;
}

.trainings--wrapper .single--training .desc  h3{
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 24px;
    letter-spacing: -.5px;
}

.home--training.training--center .training--slider .single--training{
    background: #fff;
    padding: 48px 32px;
    text-align: center;
}

.home--training.training--center .training--slider .single--training img{
    width: auto;
    max-width: 200px;
    margin:0 auto 40px;
}

@media (max-width:960px){
    .trainings--wrapper .single--training{
        width: 100%;
    }
}

section.single--hero.contact--hero{
    padding-bottom: 120px;
}

section.single--hero.contact--hero .row{
    align-items: center;
}

section.single--hero.contact--hero .poland--map{
    width:45%;
}

section.single--hero.contact--hero .poland--map svg{
    width:100%;
}

section.single--hero.contact--hero .poland--map svg path{
    transition:.5s;
}

section.single--hero.contact--hero .poland--map svg path:hover{
    fill:#2C2C2C
}

section.single--hero.contact--hero .desc{
    width:46%;
}

section.single--hero .contact--data{
    display: flex;
    margin-top: 40px;
    gap: 56px;
    align-items: flex-start;
}



section.single--hero .contact--data div{
    padding-bottom:24px;
    border-bottom:1px solid rgba(255,255,255,.3);
}

section.single--hero .contact--data h5{
    color: #FFE80A;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 12px;
}

section.single--hero .contact--data h4{
    color: #fff;
    font-weight: 800;
    font-size: 21px;
    margin: 0;
}

.contact--places{
    padding:96px 0 24px;
    margin-top:-120px;
}

.contact--places .row{
    gap:3.5%;
    justify-content: center;
}

.contact--places .single--location{
    width:31%;
    margin-bottom:40px;
    background: #FAFAFA;
    padding: 32px;
    border-radius: 3px;
    position: relative;
}

.contact--places .single--location img.rotate{
    width: 64px;
    top: -24px;
    position: absolute;
    right: 16px;
}

.contact--places .single--location.mt{
    margin-top:-64px
}

.contact--places .single--location .thumb{
    width: 100%;
    height: 160px;
    background: #efefef;
    border-radius: 3px;
    position: relative;
}

.contact--places .single--location .thumb img.building{
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
    object-position: bottom center;
}

.contact--places .single--location .thumb img.rotate{
    
    width: 64px;
    right: 10px;
    position: absolute;
    top: -32px;
}

.contact--places .single--location  a.maps{
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -.5px;
}

.contact--places .single--location h3{
    margin: 0 0 16px;
    font-weight: 800;
    font-size: 17px;
}

.contact--places .single--location  p{
    font-size: 15px;
    line-height: 26px;
    margin: 16px 0;
    width: 100%;
    color: #252525;
}

.pipedrive--form{
    padding: 80px 0;
    background-color: #FAFAFA;
}

.pipedrive--form h5{
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    width: 100%;
    color: #000;
    margin: 0 0 72px;
}

.pipedrive--form h6{
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    width: 100%;
    color: #000;
    margin: 0 0 72px;
}

.pipedrive--form  .single--person{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom:40px;
    width:48%;
    margin:0 1% 24px;
    padding:36px;
    background:#fff;
    border-radius: 3px;
    box-shadow:0 0 10px rgba(0,0,0,0.01);
}

.pipedrive--form  .single--person h6{
    color: #000;
    font-size: 18px;
    line-height: 36px;
    margin: 0;
    text-align: left;
}

.pipedrive--form  .single--person .linkedin{
    display: inline-block;
    position:absolute;
    text-decoration: none;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.pipedrive--form  .single--person .linkedin i{
    background: #FFE80A;
    color: #000;
    text-decoration: none;
    width: 32px;
    height: 32px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.pipedrive--form  .single--person  ul{
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    line-height: 26px;
    color: rgba(0,0,0,0.75);
}

.pipedrive--form  .single--person  span.position{
    font-weight: 500;
    color: rgba(0,0,0,0.75);
    font-size: 15px;
}

.single--person .photo{
    width: 120px;
    height: 120px;
    position: relative;
    border-bottom:2px solid rgba(0,0,0,0.9);
    background-color: rgba(0,0,0,0.1);
    background-size: cover;
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
}

.pipedrive--form .col{
    width:48%;
    display:flex;
    flex-direction: column;
}

.pipedrive--form .col input[type="text"]{
    width: 100%;
    padding: 20px 28px;
    font-size: 15px;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
}

.pipedrive--form .col textarea{
    width: 100%;
    padding: 20px 28px;
    font-size: 15px;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    height: 216px;
}

.pipedrive--form  input[type="submit"]{
    width:100%;
    margin-top:24px;
    display:block;
    font-size:18px;
    padding:24px;
}

@media (max-width:960px){
    section.single--hero .contact--data{
        flex-wrap: wrap;
        gap:32px;
    }
    section.single--hero .contact--data > div{
        width:100%
    }
    .contact--places{
        padding-top:80px;
        margin-top:0;
    }
    .contact--places .single--location{
        width:100%;
    }
    .contact--places .single--location.mt{
        margin-top:0;
    }
    .contact--places .single--location.mt:first-of-type{
        margin-top:-64px;
    }
}

.support--certificates {
    padding: 80px 0 40px;
    background-color: #FAFAFA;
}

.support--certificates h2 {
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 16px;
    letter-spacing: -.5px;
}

.support--certificates  p{
    font-size: 16px;
    line-height: 25px;
    color: #252525;
    margin: 16px auto 64px;
    width: 100%;
    max-width: 815px;
    text-align: center;
}

.single--certificate{
    width: 19%;
    background: #fff;
    padding: 32px 24px 32px;
    text-align: center;
    margin-bottom:32px;
    min-height: 275px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.support--certificates .aspice{
    margin-top:32px;
    display:flex;
    width:100%;
    align-items: center;
    justify-content: center;
    gap:24px;
}

.support--certificates .aspice p{
    margin: 0;
    text-align: right;
    width: 100%;
    max-width: 650px;
}

.support--certificates .aspice img{
    width: 180px;
    display: block;
    filter: grayscale(100%);
    object-fit: contain;
    object-position: center;
}

.page-template-page-support-center #certificates .single--certificate{
    width:23%;
}

.single--certificate img {
    width: 90%;
    display: block;
    height: 90px;
    filter: grayscale(100%);
    object-fit: contain;
    object-position: center;
}

.single--certificate h4{
    font-weight: 800;
    font-size: 17px;
    line-height: 23px;
    margin: 24px 0 0;
}

section.career-process.support-process .row > ul{
    gap:72px;
}

section.career-process.support-process ul li h3{
    width:100%;
    font-weight: 800;
}

section.career-process.support-process ul li p{
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #252525;
    margin: 16px 0 0;
    width: 100%;
}

section.career-benefits.support-files .single--benefit {
    width: 32%;
    margin: 0 0.55% 24px;
}

section.career-benefits.support-files .single--benefit a{
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

section.career-benefits.support-files .row{
    justify-content: center;
}

section.career-benefits.support-files .single--benefit img {
    width: 40px;
    height: 40px;
    margin-right: 32px;
    filter: none;
}

@media (max-width:960px){
    .support--certificates .aspice{
        flex-direction: column;
    }
    .support--certificates .aspice p{
        text-align: center;
    }
    .single--certificate{
        width:100%
    }
    .single--certificate br{
        display:none;
    }
    section.career-benefits.support-files .single--benefit{
        width:100%;
        margin:0 0 24px;
        padding:24px;
    }
    section.career-benefits.support-files .single--benefit img {
        width: 24px;
        height: 24px;
        margin-right: 24px;
    }
    section.career-benefits.support-files .single--benefit h4 {
        font-size: 16px;
    }
}

.poland--map{
    position: relative;
}

.ring-container {
    position: absolute;
    width:40px;
    height:40px;
    cursor: pointer;
}
.poland--map .circle{
    background-color:#FFE80A;
}
.circle {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.ringring {
    border: 3px solid #FFE80A;
    -webkit-border-radius: 64px;
    height: 40px;
    width: 40px;
    position: absolute;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}

.poland--map .ring--4 .ringring{
	width:64px;
	height:64px;
}

.poland--map .ring--4  .circle {
    width: 44px;
    height: 44px;
}


@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

.poland--map .ring--1{
    top: 9%;
    left: 41%;
}

.poland--map .ring--2{
    top: 56%;
    right: 12%;
}

.poland--map .ring--3{
    top: 80%;
    left: 76%;
}

.poland--map .ring--4{
    top: 74%;
    left: 53%;
	width:64px;
	height:64px;
}

.poland--map .ring--5{
    top: 72%;
    left: 42%;
}

.poland--map .ring--6{
    top: 60%;
    left: 25%;
}

.poland--map .ring--7{
    top: 60%;
    left: 11%;
}

.poland--map span{
    color: #fff;
    font-weight: 800;
    display: block;
    font-size: 13px;
    white-space: nowrap;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.poland--map  span.bottom{
    top:auto;
    bottom:-24px;
}

section.single--hero.contact--hero .breadcrumbs{
    margin-bottom:40px;
}


.poland--map .location--desc {
        position: absolute;
        min-width: 250px;
        background: #2C2C2C;
        z-index: 10;
        border-radius: 6px;
        display:none;
        overflow: hidden;
        top: 0;
        left: 0;
        transform: translate(-50%, -100%);
}

.poland--map .location--desc.bottom{
    transform: translate(-50%, 20%);
}

.poland--map .ring-container:hover .location--desc{
    display:flex;
}

.poland--map .location--desc .thumb{
    width: 175px;
    height: auto;
    background: rgba(255,255,255,.1);
}


.poland--map .location--desc .thumb img{
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
    object-position: bottom center;
}

.poland--map .location--desc .meta{
    width: 300px;
    padding:24px;
}

.poland--map .location--desc .meta h5{

    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 24px;
    font-size: 12px;
}

.poland--map .location--desc .meta p{
    font-size: 15px;
    line-height: 25px;
    margin: 16px 0 24px;
    display:none;
}

.poland--map .location--desc .meta .more{
    display:inline-block;
    width:100%;
    text-align: center;
    font-size:15px;
    padding:12px;;
}

@media (max-width:960px){
    section.single--hero.contact--hero .poland--map svg{
        height: auto;
    }
    section.single--hero.contact--hero .poland--map{
        width:100%;
        order:1;
    }
    section.single--hero.contact--hero .desc{
        width:100%;
        order:2;
    }
    .pipedrive--form .col{
        width:100%;
    }
}

      header.sub {
        padding: 10px 0;
        background: #fff;
      }

      header.sub nav {
        width: 100%;
        display: flex;
        justify-content: flex-end;
      }

      header.sub nav ul {
        list-style: none;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 24px;
        padding: 0;
        margin: 0;
      }
      
      header.sub nav ul li a {
        font-size: 13px;
        color: #343434;
        text-decoration: none;
        display: flex;
        align-items: center;

      }

      header.sub nav ul li a img {
        display: inline-block;
        width: 20px;
        border: 1px solid #efefef;
        margin-right: 4px;
      }

      header.main {
        padding: 24px 0;
width: 100%;
        background: #000;
        z-index: 98;
        position: sticky;
        top:0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      }

      header.main .row {
        align-items: center;
      }


      header.main nav ul {
        list-style: none;
        display: flex;
        margin-left: auto;
        gap: 32px;
        padding: 0;
        align-items: center;
        margin: 0;
      }

      header.main nav ul li a {
        display: block;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
      }

      @media (min-width: 1200px) {
        .hvr-underline-from-center {
          display: inline-block;
          vertical-align: middle;
          -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          position: relative;
          overflow: hidden;
          padding: 6px 0;
        }
        .hvr-underline-from-center:before {
          content: "";
          position: absolute;
          z-index: -1;
          left: 51%;
          right: 51%;
          bottom: 0;
          background: #ffe80a;
          height: 1px;
          -webkit-transition-property: left, right;
          transition-property: left, right;
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
        }
        .hvr-underline-from-center:hover:before,
        .hvr-underline-from-center:focus:before,
        .hvr-underline-from-center:active:before {
          left: 0;
          right: 0;
        }
        header.subnav .hvr-underline-from-center:before {
          background: #000;
        }
      }

      header.main #menu-opener,
      header.subnav #menu-closer {
        display: none;
      }

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

      header.main nav ul li.button a {
        font-weight: 600;
        border: 2px solid #ffe80a;
        background: #ffe80a;
        color: #000;
        padding: 12px 24px;
        transition: 0.5s;
      }

      header.main nav ul li.button a:hover {
        background: #000;
        color: #ffe80a;
      }

      header.subnav {
        background: #ffe80a;
        padding: 16px 0;
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
      }

      header.subnav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 32px;
      }

      header.subnav ul li a {
        color: #000;
        text-decoration: none;
        display: block;
      }
.page--wrapper .page--sidebar.case-study--meta{
	order:1;
	margin-top:0;
	margin-bottom:40px;
}
.page--wrapper .page--content{
	order:2;
}

.about--mission{
    padding: 48px 0 96px;
}

.about--mission .row{
	align-items:stretch
}

.about--mission .col{
	min-height:100%;
	width:48%;
	border-radius:0px;
	padding:16px 32px;
    border-left: 3px solid #FFE80A;
}

.about--mission .col h3{
    font-weight: 800;
    font-size: 24px;
    margin: 0 0 32px;
}

.about--mission .col p strong{
	color:#000;
	font-weight:600;
	font-size:18px;
	line-height:30px
}

.about--mission .col p{
    font-size: 16px;
    line-height: 26px;
}

.about--values{
	background-color:#F2F2F2;
	padding:96px 0 72px;
	background-image:url('../png/training-bg.png');
	background-size:cover;
	background-position:left center;
}

.about--values .value-carousel{
    width:95%;
    margin:0 auto;
}

.about--values .owl-carousel .owl-nav button.owl-prev{
    background: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 21px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgb(0 0 0 / 3%);
    color:rgba(0,0,0,0.6);
}

.about--values .owl-carousel .owl-nav button.owl-next{
    background: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 21px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgb(0 0 0 / 3%);
    color:rgba(0,0,0,0.6);
}

.about--values h2{
    color: #000;
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 72px;
    letter-spacing: -.5px;
}


.about--values .single--desc{
    width: 100%;
	background:#fff;
	border-radius:3px;
	padding:40px 64px;
	border-bottom:4px solid #FFE80A;
	transition:.5s;
    filter: grayscale(1);
    transform: scale(0.8);
    opacity: .70;
    margin:24px 0;
}

.about--values .center .single--desc{
    filter: grayscale(0);
    transform: scale(1.1);
    opacity: 1;
}

.about--values .owl-carousel.owl-drag .owl-item{
	padding:24px 0;
}



.about--values .single--desc h3{
    margin: 0 0 24px;
    font-weight: 800;
    font-size: 24px;
}

.about--values .single--desc p{
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.about--values  ul.buttons{
    display: flex;
    width: 100%;
    justify-content: center;
    list-style: none;
    margin-top: 56px;
    flex-wrap: wrap;
}

.about--values  ul.buttons li {
    margin-bottom: 24px;
	width:25%;
    text-align: center;
}

.about--values  ul.buttons li a{
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: #000;
    font-size: 18px;
	text-decoration:none;
    position: relative;
    justify-content: center;
}

.about--values  ul.buttons li a .icon{
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: #000;
    font-size: 18px;
    width: 100%;
	text-decoration:none;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about--values  ul.buttons li a .ringring{
    left:-4px;
    width:64px;
    border: 4px solid #E7E7E7;
    height: 64px;
}

.about--values  ul.buttons li a.active .ringring{
    border:4px solid #ffe80a;
}

.about--values  ul.buttons i{
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E7E7E7;
    border-radius: 50%;
    font-size: 16px;
}


.about--values  ul.buttons .active i{
	background:#FFE80A;
	color:#000;
}

.industries--list{
	padding:96px 0;
	background:#FAFAFA;
}

.industries--list h3{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 72px;
    width: 100%;
    text-align: center;
}

.industries--list h5{
    font-size: 28px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 56px 0 72px;
    width: 100%;
    text-align: center;
    color: rgba(0,0,0,0.5);
}

.industries--list .row.justify-center{
	align-items:stretch;
}

.industries--list .single--industry {
    padding: 40px 32px;
    border-radius: 3px;
    background-color: #fff;
    width: 32%;
    margin: 0 .66% 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-direction: column;
    text-align: center;
}


.industries--list .single--industry a.primary--dark{
	margin-top:auto;
}

.industries--list .single--industry.small{
	width:100%;
}

.industries--list .single--industry h4{
    font-size: 19px;
    font-weight: 800;
    margin: 24px 0 0;
}

.industries--list .single--industry.small h4{
	margin-bottom:32px;
	min-height:44px;
}

.industries--list .single--industry p{
    font-size: 16px;
    margin: 24px 0 32px;
    line-height: 23px;
    font-weight: 500;
}

.industries--list .single--industry img{
	filter: invert(82%) sepia(98%) saturate(947%) hue-rotate(344deg) brightness(99%) contrast(102%);
    display: block;
    width: 92px;
    height: 92px;
    object-fit: contain;
    object-position: center;
	/*filter:grayscale(1);*/
}

.industries--list .single--industry.small img{
	width:72px;
	height:72px;
}

.split--decision{
	background:#212121;
}

.split--decision .single--path{
    width: 50%;
    min-height: 720px;
    padding: 72px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
	background-size:cover;
	background-position:center center;
	position:relative;
}

.split--decision .single--path:before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.5));
}

.split--decision .row .single--path:nth-of-type(2):before{
	
    background-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0.5));
}

.split--decision .row .single--path:nth-of-type(2){
	align-items:flex-end;
    background-color: rgba(255,255,255,.05);
	text-align:right;
}

.split--decision .single--path p{
	
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 28px;
    margin: 32px 0 40px;
    max-width: 600px;
    position: relative;
}

.split--decision .single--path h4{
    font-size: 32px;
    color: #fff;
    margin: 0;
    font-weight: 800;
	position:relative;
}

.split--decision .single--path a{
	position:relative;
}

.interactive--offer{
    padding: 0;
    background: #FAFAFA;
}
.interactive--offer h2 {
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    margin: 0 0 56px;
    letter-spacing: -.5px;
}
.interactive--offer ul.types{
    display: flex;
    width: 100%;
    justify-content: center;
    list-style: none;
    margin: 0 0 -10px;
    position: relative;
    z-index: 10;
}
.interactive--offer ul.types li{
	padding: 16px 24px;
    border-left: 1px solid rgba(0,0,0,0.1);
    border-right: 1px solid rgba(0,0,0,0.1);
	border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 3px solid transparent;
	color:rgba(0,0,0,0.5);
	background:#fff;
    transition:.5s;
}
.interactive--offer ul.types li a{
    color:rgba(0,0,0,.5);
    text-decoration: none;
	font-weight:600;
    transition:.5s;
}
.interactive--offer ul.types li.tab-active{
	border-bottom:3px solid #FFE80A;
	color:#000;
}
.interactive--offer ul.types li.tab-active a{
    color:rgba(0,0,0,1);
}
.interactive--offer .interactive--wrapper{
    background: rgba(0,0,0,0.25);
	position:relative;
	border-radius:2px;
    background-size:cover;
    background-position: center center;
	min-height:575px;
	width:100%;
}



.interactive--offer .interactive--wrapper .location--desc {
        position: absolute;
        min-width: 50px;
        background: #2C2C2C;
        z-index: 10;
        border-radius: 6px;
        display:none;
        overflow: hidden;
        top: 0;
        left: 0;
        transform: translate(-50%, -100%);
}

.interactive--offer .interactive--wrapper .location--desc.bottom{
    transform: translate(-50%, 20%);
}

.interactive--offer .interactive--wrapper .ring-container:hover .location--desc{
    display:flex;
}

.interactive--offer .interactive--wrapper .location--desc .thumb{
    width: 175px;
    height: auto;
    background: rgba(255,255,255,.1);
}


.interactive--offer .interactive--wrapper .location--desc .thumb img{
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
    object-position: bottom center;
}

.interactive--offer .interactive--wrapper .location--desc .meta{
    width: auto;
    max-width: 700px;
    padding:24px;
}
.interactive--offer .interactive--wrapper .location--desc .meta h5{
white-space: nowrap;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    font-size: 12px;
    text-align: center;
    width:100%;
}

.interactive--offer .interactive--wrapper .location--desc .meta p{
    font-size: 15px;
    line-height: 25px;
    margin: 16px 0 0;
	color:rgba(255,255,255,.75);
    display:none;
}

.interactive--offer .interactive--wrapper .location--desc .meta .more{
    display:inline-block;
    width:100%;
    text-align: center;
    font-size:15px;
    padding:12px;;
}


.interactive--offer .ring--1 {
    top: 35%;
    left: 10%;
}


.interactive--offer .ring--2 {
    top: 20%;
    right: 38%;
}


.interactive--offer .ring--3 {
    bottom: 35%;
    left: 44%;
}


.interactive--offer .ring--4 {
    bottom: 20%;
    right: 16%;
}


.interactive--offer .exterior .ring--1 {
    top: 53%;
    right: 20%;
    left: auto;
}

.interactive--offer .exterior .ring--2 {
    top: 65%;
    right: 6%;
}

.interactive--offer .exterior .ring--3 {
    bottom: 44%;
    left: 57%;
}


.interactive--offer .exterior .ring--4 {
    bottom: 69%;
    right: 45%;
}
.interactive--offer .exterior .ring--5{
        top: 60%;
    left: 5%;
}

.interactive--offer .exterior .ring--7{
    top: 70%;
    left: 7%;
}

.interactive--offer .exterior .ring--6{
    bottom: 42%;
    right: 64%;
}

.interactive--offer .interior2 .ring--1{
    top: 24%;
    left: 32%;
}

.interactive--offer .interior2 .ring--2{
    top: 34%;
    right: 60%;
}


.interactive--offer .interior2 .ring--3{
    bottom: 39%;
    left: 44%;
}


.interactive--offer .interior2 .ring--4{
    top: 3%;
    right: 46%;
}

.interactive--offer .interior2 .ring--5{
    right: 50%;
    top: 24%;
}


.interactive--offer .interior2 .ring--6{
    top: 81%;
    right: 35%;
}

.interactive--offer .interior2 .ring--7{
    top: 50%;
    right: 7%;
}

.interactive--offer .lighting1 .ring--1 {
    top: 51%;
    left: 22%;
}

.interactive--offer .lighting1 .ring--2 {
    top: 47%;
    left: 78%;
}

.interactive--offer .lighting1 .ring--3 {
    top: 19%;
    left: 49%;

}

.interactive--offer .lighting2 .ring--2 {
    top: 42%;
    left: 25%;
}

.interactive--offer .lighting2 .ring--1 {
    top: 4%;
    right: 48%;
    left:auto;
}

.interactive--offer .mechanical .ring--1 {
    top: 30%;
    left: 34%;
}
.interactive--offer .mechanical .ring--2 {
    top: 38%;
    right: 62%;
}
.interactive--offer .mechanical .ring--3 {
    bottom: 45%;
    left: 45%;
}

.interactive--offer .mechanical .ring--4  {
    bottom: 58%;
    right: 58%;
}

.interactive--offer .mechanical .ring--5  {
    top: 50%;
    left: 28%;
}

.interactive--offer .mechanical .ring--6 {
    top: 30%;
    left: 40%;
}


.interactive--offer .wiring1 .ring--1 {
    top: 83%;
    left: 36%;
}

.interactive--offer .wiring1 .ring--2 {
    top: 55%;
    right: 65%;
}

.interactive--offer .wiring1 .ring--3 {
    bottom: 42%;
    left: 54%;
}

.interactive--offer .wiring1 .ring--4 {
    bottom: 50%;
    right: 44%;
}

.interactive--offer .wiring1 .ring--5 {
    top: 20%;
    left: 52%;
}

.interactive--offer .wiring1 .ring--6 {
    top: 22%;
    left: 75%;
}

.interactive--offer .wiring1 .ring--7 {
    top: 38%;
    left: 48%;
}

.interactive--offer .wiring1 .ring--8 {
    top: 45%;
    left: 43%;
}

.interactive--offer .software .ring--1 {
    top: 14%;
    left: 50%;
}

.interactive--offer .software .ring--2 {    top: 64%;
    right: 45%;
}

.interactive--offer .software .ring--3 {
    bottom: 35%;
    left: 48%;
}


section.hero.single-training-hero .desc{
	width:100%;
	text-align:center;
	max-width:100%;
	margin:48px 0 24px;
}
section.hero.single-training-hero .desc .meta{
    border-radius: 3px;
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    gap: 40px;
	flex-wrap:wrap;
}
section.hero.single-training-hero .desc .meta h5{
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -.5px;
    margin: 0;
    color: #fff;
}
section.hero.single-training-hero .desc .meta h5 small{
    color: #FFE80A;
    font-weight: 600;
    letter-spacing: 0;
    margin-right: 4px;
}

.training--content{
	padding:96px 0;
}
.training--content .wrapper{
	width:100%;
	max-width:900px;
	margin:0 auto;
}
.training--content .wrapper h3{
    font-weight: 800;
    font-size: 24px;
    margin: 32px 0;
}

.training--content .wrapper h4{
    font-weight: 600;
    font-size: 18px;
    margin: 32px 0;
}

.training--content .wrapper ul {
  list-style: none; 
	padding:0;
	margin:32px 0;
}

.training--content .wrapper ul li{
	position:relative;
	padding-left:24px;
    line-height: 40px;
    font-size: 17px;
}

.training--content .wrapper ul li::before {
  content: "\2022"; 
  color: #000; 
  font-weight: bold; 
  display: inline-block; 
	position:absolute;
	left:0;
	top:0;
}

.training--content .wrapper ul ul{
	margin:0;
}

.training--content .wrapper ul ul li::before {
  color: rgba(0,0,0,.5); 

}

.single-szkolenie .pipedrive--form .row{
	width:100%;
	max-width:900px;
	margin:0 auto;
}
.single-szkolenie .newsletter{
	display:none;
}
.training--content .wrapper .cta{
	margin-top:32px;
    padding: 32px;
    background: #FAFAFA;
    text-align: center;
}
.training--content .wrapper .cta a{
	color:#000;
	font-weight:600;
}
.training--content .wrapper p{
	
    margin: 32px 0;
    font-size: 17px;
    line-height: 28px;
}
.trainings--wrapper{
	padding:96px 0 56px;
}
.trainings--wrapper h2{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 120px;
    width: 100%;
	text-align:center;
}

.training--content .wrapper .wp-block-separator {
	border-color:rgba(0,0,0,0.25);
}

.trainings--wrapper .single--training .desc span{
    background: #F5F5F5;
    padding: 8px 16px;
    font-weight: 500;
    displaY: inline-block;
    border-radius: 2px;
	margin-bottom:24px;
}
.trainings--wrapper .single--training{
    border-bottom: 1px solid rgba(0,0,0,0.2);
    margin-bottom: 32px;
    padding-bottom: 32px;
}


.trainings--wrapper .single--training{
    border-radius:3px;
    overflow: hidden;
    width:31%;
    margin-bottom:40px;
	display:flex;
}

.trainings--wrapper  .single--training .thumb{
    position: relative;
	width:80px;
	height:80px;
	border-radius:2px;
	background-color:#F5F5F5;
	display:flex;
	justify-content:center;
	align-items:center;
}

.trainings--wrapper .single--training .thumb img{
    display:block;
    width:100%;
    height: 190px;
    object-fit: cover;
}

.trainings--wrapper .single--training .thumb span{
    position:absolute;
    display:inline-block;
    top:16px;
    left:16px;
    background: #000;
    padding: 10px 16px;
    color: #FFE80A;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.trainings--wrapper .single--training .desc{
	background: #fff;
    color: #000;
    padding: 0 0 0 32px;
    width: calc(100% - 112px);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trainings--wrapper .single--training .desc a.secondary--dark{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top:auto;
	padding:18px;
}

.trainings--wrapper .single--training .desc p{
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    color: rgba(0,0,0,.8);
    margin: 0;
}

.trainings--wrapper .single--training .desc  h3{
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 24px;
    letter-spacing: -.5px;
}

.page-template-page-home .business-model{
    background-color: #FAFAFA;
}

.home--numbers.white{
    padding:96px 0 40px;
    background-image:none;
}

.home--numbers.white h2 {
    color: #000;
}

.home--numbers.white  .single--number h4{
    color:#000;
    margin:0;
}

.home--numbers.white .single--number p{
    color:#000;
    margin:0;
}

.home--numbers.white .row{
    align-items: stretch;
}

.home--numbers.white .single--number {
    width: 31%;
    color: #fff;
    background: #FAFAFA;
    border: 1px solid rgba(0,0,0,0.02);
    margin: 0 auto;
    perspective: 150rem;
    position: relative;
    min-height: 150px;
    border-radius: 3px;
    margin-bottom:32px;
    cursor:pointer;
}

  
  .project__hover-reverse-card--front,
  .project__hover-reverse-card--back {
    align-items: center;
    background-color: #fafafa;
    border-radius: 3px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color:  #000;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.8s ease-in-out;
    width: 100%;
    min-height: 150px;
  }
  
  .project__hover-reverse-card--back {
    background-color: #ffe80a;
    color: #000;
    transform: rotateY(180deg);
  }
  
  .home--numbers.white .single--number:hover .project__hover-reverse-card--front {
    transform: rotateY(-180deg);
  }
  
  .home--numbers.white .single--number:hover .project__hover-reverse-card--back {
    transform: rotateY(0);
  }


.home--engineering  ul.buttons{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    list-style: none;
    margin-top: 56px;
    margin-bottom:80px;
    flex-wrap: wrap;
    gap:0;

}

.home--engineering  ul.buttons li {
    margin-bottom: 24px;
}

.home--engineering  ul.buttons li a{
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: #000;
    font-size: 18px;
    width: 100%;
	text-decoration:none;
    justify-content: center;
}

.home--engineering  ul.buttons i{
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.075);
    border-radius: 50%;
    font-size: 16px;
}


.home--engineering  ul.buttons .active i{
	background:#FFE80A;
	color:#000;
}

.home--engineering  ul.buttons li:hover i{
	background:#FFE80A;
	color:#000;
} 

.page-template-page-industries .business-model {
    background-color: #FAFAFA;
}


.home--about .desc  ul{
	list-style: none;
	padding:0;
	margin:24px 0 0;
}

.home--about .desc ul li{
	position:relative;
	padding-left:24px;
    font-size: 16px;
    line-height: 26px;
    margin: 8px 0px;
}

.home--about .desc ul li::before {
  content: "\2022"; 
  color: #FFE80A; 
  font-weight: bold; 
  display: inline-block; 
position:absolute;
	left:0;
	top:0;
}

.what-we-do{
    padding:80px 0;
    background-color: #FAFAFA;
}

.what-we-do h2{
    font-size: 36px;
    letter-spacing: -.5px;
    font-weight: 800;
    margin: 0 0 72px;
    width: 100%;
    text-align: center;
}

.what-we-do  .single--do{
    padding: 40px 48px;
    border-radius: 3px;
    background-color: #fff;
    width: 31%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:32px;
    position: relative;
    margin-bottom: 24px;
}

.what-we-do  .single--do img{
    display:block;
    width:64px;
}

.what-we-do  .single--do h5{
    font-size: 21px;
    font-weight: 800;
    line-height: 25px;
margin:0;
width:100%;
}

.what-we-do  .single--do  a.more{
    position: relative;
    font-size: 14px;
    line-height: 20px;
    margin: 16px 0 0;
    padding: 8px 16px;
    text-align: center;
    background-color: #ffe80a;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    width: 100%;
    display: block;
}

.what-we-do  .single--do  h5 small{
    opacity: .75;
    font-size: 16px;
    display: block;
}

.what-we-do .single--do .software--list{
    opacity: 0;
    position: absolute;
    left: -5%;
    top: -15%;
    width: 110%;
    min-height: 130%;
    padding: 32px 40px;
    border-radius: 3px;
    background-color: #ffe80a;
    transition: .5s;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
    z-index: 1000;
    transform: scale(0);
}

.what-we-do .single--do .software--list img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: .02;
    z-index: 0;
    width: 96px;
}

.what-we-do .single--do .software--list h6{
    position: relative;
    z-index:2;
    margin:0;
    font-size:19px;
    font-weight: 800;
    width:100%;
    line-height: 25px;
}

.what-we-do .single--do .software--list ul{
    width:100%;
    columns: 2;
    position: relative;
    z-index:2;
    list-style: none;
    margin:0;
    padding:0;
}

.what-we-do .single--do .software--list ul.one-col{
    columns:1;
}

.what-we-do .single--do .software--list ul.one-col li{
    font-size:15px;
}

.what-we-do .single--do .software--list ul li{
    font-size: 16px;
    color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 26px;
    padding-left: 30px;
    position: relative
}

.what-we-do .single--do .software--list ul li:before{
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    left:0;
    color: #000;
    font-size: 8px;
    margin-right: 7px;
    width: 16px;
    height: 16px;
    background: rgba(0,0,0,0.1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top:5px;
}



.what-we-do .single--do:hover .software--list{
    opacity:1;
    transform:scale(1);
}

@media (max-width:960px){
    section.career-process.business-model .row > ul > li{
        flex:auto;
    }
    .what-we-do h2{
        font-size: 28px;
    }
    
    .what-we-do  .single--do{
        padding: 40px 48px;
        border-radius: 3px;
        background-color: #FAFAFA;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap:32px;
        margin-bottom: 24px;
    }

    .home--engineering .single--end{
        width:100%;
        margin-bottom:56px;
    }
}


.interactive--offer .tabs{
    width:100%;
}

  .interactive--offer .tabs-stage {
    position: relative;
    top: -1px;
  }
  
  .single-post section.hero .desc{
    max-width: 700px;
  }

  .single-post .page--wrapper .row{
    justify-content: center;
    gap:5%;
  }

  .home--training.training--center{
    display:none;
  }

  .wp-pagenavi{
    width: 100%;
    display: block;
    text-align: center;
    margin:24px 0 48px;
  }

  .wp-pagenavi a, .wp-pagenavi span{
    border:0;
    padding:6px 8px;
    background:#FAFAFA;
    color:rgba(0,0,0,0.6)
  }

  .wp-pagenavi a{
    color:#000;
  }

  section.hero.sample-hero{
    padding:48px 0;
  }

  .sample-page--content{
    padding:56px 0;
  }

  .sample-page--content  .content--wrapper{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  .sample-page--content  .content--wrapper a{
    font-weight: 600;
    color:#000;
    text-decoration: none;
  }

  header#mobile{
    display:none;
    position: fixed;
    width: 100%;
    height: 100%;
    padding-top: 72px;
    padding-bottom:32px;
    background: #000;
    top:0;
    left:0;
    z-index: 1000;
    overflow:scroll;
  }

  @media (max-width:960px){
    .home--numbers.white .single--number{
        width:100%;
    }
    .home--engineering{
        height:auto;
    }
    .home--engineering .single--end{

    padding: 0 32px 32px 32px;
    }
    .home--engineering .single--end ul{
        max-height: 1000px;
        opacity:1;
    }
    .home--engineering .single--end:after{
        display:none;
    }

.home--engineering  .single--end.active{
    transform:scale(1);
    padding: 0 32px 32px 32px;

}
.home--competences .col{
    width:100%;
    margin-bottom:40px;
    padding: 0;
}
.home--software .secondary--dark{
    display:block;
    text-align: center;;
}
section.newsletter h2{
    font-size:24px;
}
section.newsletter h3{
    font-size:21px
}
.pipedrive--form .single--person{
    width:100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.poland--map .location--desc{
    display:none !important
}
.split--decision .single--path{
    width:100%;
    min-height:400px;
    padding:40px;
}
.split--decision .single--path p{
    font-size:16px;
    line-height: 26px;
}
section.career-benefits .single--benefit{
    flex-direction: column;
    gap:24px;
}
.about--mission .col{
    width:100%;
    margin-bottom:40px;
}
.about--values ul.buttons{
    display:none;
}
.about--values .value-carousel{
    width:90%;
}
.about--values .owl-theme .owl-nav.disabled + .owl-dots{
    margin-top:32px;
}
.support--certificates h2{
    font-size: 28px;
}
.interactive--offer{
    display:none;
}
section.career-cta.sales-person-cta .desc{
    width:100%;
}
section.career-cta img.grzegorz{
    width:95%;
    margin:24px auto 0 auto;
}
section.sales-person-cta{
    padding:56px 0 0;
}
footer.main .copy .copy--nav{
    justify-content: center;
}

.page-template-page-support-center #certificates .single--certificate{
    width:100%;
}
.poland--map span{
    font-size:9px;
    top:-16px;
}.poland--map span.bottom{
    top:auto;
    bottom:-16px;
}
  }


  @media (max-width: 1300px){

    .home--about .img img {
        right: 25px;
        top: 25px;
    }
  }

  @media (min-width:1200px){
    .primary, .primary--dark, .secondary, .secondary--dark{
        min-width:250px;
        text-align: center;
    }
  }


  .page-template-page-off-lp .home--engineering{
    height:770px;
  }
  .page-template-page-off-lp .home--engineering p.additional-info{
    background-color: #FFE80A;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    flex-wrap: wrap;
    margin:8px 0;
  }

  .page-template-page-off-lp .home--engineering .row p.additional-info:first-of-type{
    margin-top:24px;
  }

  .page-template-page-off-lp .home--engineering p.additional-info i{
    width: 32px;
    height: 32px;
    background: #000;
    border-radius: 3px;
    color: yellow;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page-template-page-off-lp .home--engineering p.additional-info.second{
    width:75%;
    margin-bottom:104px;
    background-color:#FFF7B7;
  }
  .page-template-page-off-lp  .interactive--offer ul.types li a{
    display:block;
    text-align: center;
  }

  .page-template-page-off-lp .interactive--offer .ring--1{
    top: 49%;
    left: 5%;
}

.page-template-page-off-lp .interactive--offer .ring--2{
    top: 43%;
    right: 35%;
    left:auto; 
}


.page-template-page-off-lp .interactive--offer .ring--3{
    bottom: 67%;
    left: 71%;
}

.page-template-page-off-lp .interactive--offer .ring--4{
    bottom: 88%;
    right: 57%;
    left:auto;
}

.page-template-page-off-lp .interactive--offer .ring--5{
    top: 5%;
    left: 66%;
}

.page-template-page-off-lp .interactive--offer .ring--6{
    top: 31%;
    left: 30%;
}

.page-template-page-off-lp .interactive--offer .ring--6a{
    top: 80%;
    left: 60%;
}


.page-template-page-off-lp .interactive--offer .ring--23{
    left: 36%;
    top: 20%;
}

.page-template-page-off-lp .interactive--offer .ring--24{
    left: 34%;
    top: 38%;
}

.page-template-page-off-lp .interactive--offer .ring--26{
    left: 19%;
    top: 64%;
}

.page-template-page-off-lp .interactive--offer .ring--27{
    left: 30%;
    top: 90%;
}

.page-template-page-off-lp .interactive--offer .ring--28{
    left: 55%;
    top: 61%;
}

.page-template-page-off-lp .interactive--offer .ring--29{
    left: 82%;
    top: 53%;
}

.page-template-page-off-lp .interactive--offer .ring--30{
    top: 50%;
    left: 73%;
}

.page-template-page-off-lp .interactive--offer .ring--31{
    top: 20%;
    left: 15%;
}

.page-template-page-off-lp .interactive--offer .ring--32{
    left: 18%;
    top: 75%;
}

.page-template-page-off-lp .interactive--offer .ring--33{
    left: 30%;
    top: 61%;
}

.page-template-page-off-lp .interactive--offer .ring--34{
    left: 42%;
    top: 66%;
}

.page-template-page-off-lp .interactive--offer .ring--35{
    top: 15%;
    left: 55%;
}



.page-template-page-off-lp .interactive--offer .ring--19{
    top: 46%;
    left: 39%;
}

.page-template-page-off-lp .interactive--offer .ring--20{
    left: 42%;
    top: 51%;
}

.page-template-page-off-lp .interactive--offer .ring--21{
    left: 50%;
    top: 45%;
}

.page-template-page-off-lp .interactive--offer .ring--22{
    left: 53%;
    top: 18%;
}

.page-template-page-off-lp .interactive--offer .ring--7{
    top: 45%;
    left: 80%;
}

.page-template-page-off-lp .interactive--offer .ring--8{
    left: 46%;
    top: 57%;
}

.page-template-page-off-lp .interactive--offer .ring--9{
    left: 30%;
    top: 45%;
}

.page-template-page-off-lp .interactive--offer .ring--10{
    left: 70%;
    top: 34%;
}

.page-template-page-off-lp .interactive--offer .ring--11{
    left: 43%;
    top: 26%;
}

.page-template-page-off-lp .interactive--offer .ring--11a{
    left: 16%;
    top: 57%;
}

.page-template-page-off-lp .interactive--offer .ring--11b{
    left: 56%;
    top: 46%;
}

.page-template-page-off-lp .interactive--offer .ring--11c{
    left: 71%;
    top: 41%;
}

.page-template-page-off-lp .interactive--offer .ring--11d{

    left: 64%;
    top: 29%;
}

.page-template-page-off-lp .interactive--offer .ring--13{
    left: 67%;
    top: 28%;
}

.page-template-page-off-lp .interactive--offer .ring--14{
    left: 80%;
    top: 20%;
}

.page-template-page-off-lp .interactive--offer .ring--15{
    left: 66%;
    top: 20%;
}

.page-template-page-off-lp .interactive--offer .ring--16{
    left: 20%;
    top: 55%;
}

.page-template-page-off-lp .interactive--offer .ring--17{
    left: 33%;
    top: 40%;
}

.page-template-page-off-lp .interactive--offer .ring--18{
    left: 63%;
    top: 38%;
}

.page-template-page-off-lp .interactive--offer .ring--18a{
    left: 43%;
    top: 46%;
}

.page-template-page-off-lp .interactive--offer .ring--18b{
    left: 62%;
    top: 44%;
}

.page-template-page-off-lp .interactive--offer .ring--18c{
    left: 34%;
    top: 51%;
}

.page-template-page-off-lp .interactive--offer .ring---1{
    top: 31%;
    left: 65%;
}

.page-template-page-off-lp .interactive--offer .ring---2{
    top: 28%;
    left: 37%;
}

.page-template-page-off-lp .interactive--offer .ring---3{
    left: 76%;
    top: 8%;
}

.page-template-page-off-lp .interactive--offer .ring---6{
    left: 44%;
    top: 20%;
}

.page-template-page-off-lp .interactive--offer .ring---7{
    left: 38%;
    top: 44%;
}

.page-template-page-off-lp .interactive--offer .ring---8{
    top: 58%;
    left: 75%;;
}

.page-template-page-off-lp .interactive--offer .ring---14{
    left: 63%;
    top: 34%;
}

.page-template-page-off-lp .interactive--offer .ring---13{
    left: 33%;
    top: 52%;
}

.page-template-page-off-lp .interactive--offer .ring---19{
    left: 33%;
    top: 42%;
}

.page-template-page-off-lp .interactive--offer .ring---20{
    left: 36%;
    top: 49%;
}

.page-template-page-off-lp .interactive--offer .ring---21{
    left: 40%;
    top: 50%;
}

.page-template-page-off-lp .interactive--offer .ring---22{
    left: 47%;
    top: 24%;
}

@media (max-width:900px){
    .page-template-page-off-lp .home--engineering p.additional-info.second{
        width:100%;
    }
    .page-template-page-off-lp .home--engineering{
        height:auto;
    }
}


header.sub nav .wpml-ls-legacy-dropdown{
    width:auto;
  }

  header.sub nav .wpml-ls-legacy-dropdown ul{
    background-color: #fafafa;
    z-index:99;
  }


  header.sub nav .wpml-ls-legacy-dropdown ul ul{
    display:flex;
    flex-direction: column;
    gap:4px;
  }

  .wpml-ls-legacy-dropdown a{
    border:0;
    padding:8px 10px;
  }

  header.sub nav .wpml-ls-legacy-dropdown ul ul a, .wpml-ls-legacy-dropdown .wpml-ls-item{
    width:100%;
  }


  @media (max-width:980px){
    .wpml-ls-legacy-dropdown{
        margin-right:-10px;
        min-width: 115px;
    }
    header.sub{
        padding:5px 0;
        display:block;
    }
    header.sub ul li{
        display:none;
    }
    header.sub ul li:last-of-type, header.sub ul ul li{
        display:block;
    }
    header.sub nav{
        display:block;
    }
    header.sub nav .wpml-ls-legacy-dropdown ul{
        margin-right:-10px;
    }
    
  }

  .page-template-page-autosar .what-we-do.white-bg{
    background-color:#fff;
}

.page-template-page-autosar .what-we-do h6 {
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: rgba(0,0,0,0.5);
}

.page-template-page-autosar .what-we-do .logos {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    list-style: none;
    align-items: center;
    padding:0;
}

.page-template-page-autosar .what-we-do .logos img {
    display: block;
    width: 100%;
    max-width: 225px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .5;
}
@media (min-width:1200px){
    .page-template-page-motorcycles section.hero{
        padding-bottom:48px;
    }
    .page-template-page-autosar section.hero{
        padding-bottom:48px;
    }
    .page-template-page-autosar .what-we-do .single--do{
        width:49%;
        background-color:#FAFAFA;
    }
    .page-template-page-autosar .what-we-do .single--do h5 {
        font-weight: 500;
        font-size:19px;
    }
    .page-template-page-autosar .what-we-do .single--do img {
        display: block;
        width: 56px;
    }

    .page-template-page-autosar .what-we-do.hardware .single--do{
        width:32%;
        background-color:#fff;
    }
    .page-template-page-autosar .what-we-do.hardware .single--do h5 {
        font-weight: 500;
        font-size: 17px;
        line-height: 24px;
    }
    .page-template-page-autosar .what-we-do.hardware .single--do img {
        display: block;
        width: 48px;
    }
}

@media (max-width:900px){
    .page-template-page-autosar .what-we-do .single--do img{
        display:none
    }
    .page-template-page-autosar .what-we-do .single--do h5 {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }

    .page-template-page-autosar .what-we-do .logos {
        display: flex;
        justify-content: space-between;
        gap: 32px;
        padding:0;
        list-style: none;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-template-page-autosar .what-we-do .logos img {
        display: block;
        width: 100%;
        max-width: 110px;
        max-height: 40px;
        object-fit: contain;
        filter: grayscale(1);
        opacity: .5;
    }
    .page-template-page-autosar .what-we-do.hardware{
        background-color:#FAFAFA;
    }
    .page-template-page-autosar .what-we-do.hardware .single--do{
        background:#fff;
    }
	.split--decision .single--path h4 {
    font-size: 20px;
    line-height: 28px;
	}
}

.page-template-page-motorcycles .home--engineering p.additional-info {
    background-color: #FFE80A;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    flex-wrap: wrap;
    margin: 24px 0 96px;
}


@media (max-width:1039px){
	
    header.main nav ul{
        display:none;
    }
	
    header.sub nav {
        width:100%;
    }
	header#mobile #menu-closer {
    display: block;
}
header#mobile #menu-closer img {
    display: block;
    width: 24px;
    right: 28px;
    top: 28px;
    position: absolute;
}
header#mobile ul {
    flex-wrap: wrap;
    flex-direction: column;
    font-size: 21px;
    text-align: center;
    padding: 0;
	margin:0;
    gap: 12px;
    width: 100%;
    display: flex;
}
header#mobile .row > ul > li > a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
}
header#mobile ul ul.sub{
    flex-wrap: wrap;
    flex-direction: column;
    font-size: 24px;
    text-align: center;
    padding: 0;
    gap: 6px;
    display: flex;
    margin: 14px 0;
}
header#mobile ul ul.sub a{
    font-size: 15px;
    text-decoration: none;
    color: rgba(255,255,255,.75);
}
header.sub{
    padding:8px 0;
}
header.sub ul li{
    display:none;
}
header.sub ul li:last-of-type, header.sub ul ul li{
    display:block;
}
	header.sub nav {
            display:none;
          width: 100%;
        }
        header.sub nav ul {
          justify-content: flex-end;
          gap: 16px;
          width: 100%;
        }
        header.sub nav ul li a {
          font-size: 12px;
        }
        header.main #menu-opener,
        header.subnav #menu-closer {
          display: block;
        }
        .single--certificate {
          width: 100%;
        }
        .single--certificate br {
          display: none;
        }
        section.career-benefits.support-files .single--benefit {
          width: 100%;
          margin: 0 0 24px;
          padding: 24px;
        }
        section.career-benefits.support-files .single--benefit img {
          width: 24px;
          height: 24px;
          margin-right: 24px;
        }
        section.career-benefits.support-files .single--benefit h4 {
          font-size: 16px;
        }
        .career-open .open--positions .single--position h4 {
          min-height: 0;
        }
        header.main nav {
          display: none;
        }
        header.main #menu-opener {
          width: 32px;
          display: block;
        }
        header.subnav {
          display: none;
          position: fixed;
          width: 100%;
          height: 100%;
          padding-top: 140px;
          background: #000;
          z-index: 1000;
        }
        header.subnav #menu-closer img {
          display: block;
          width: 32px;
          right: 24px;
          top: 24px;
          position: absolute;
        }
        header.subnav ul {
          flex-wrap: wrap;
          flex-direction: column;
          font-size: 24px;
          text-align: center;
          gap: 40px;
        }
        header.subnav ul li a {
          color: #ffe80a;
        }
        header.main {
          position: sticky;
          top: 0;
          z-index: 98;
        }
}
