@charset "UTF-8";
/**
 * Colors
 */
:root {
    --black: #000000;
    --purple: #29235c;
    --red: #d20a11;
    --defence: #8e995e;
    --grey:#8a8b8f;
    --lightgrey: #dedee0;

    --section-padding: 120px 0;
    --border-radius: 18px;
    --header-overlay: rgba(0, 0, 0, 0.4);

}

body {
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    color: var(--black);
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

h1, h2, h3, h4 {
    text-wrap: balance;
    margin: 0 0 0 -1px;
    color: var(--purple);
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.2;
}

h1 {
    font-size: clamp(32px, 27.2px + 1.5vw, 56px);
}

h2 {
    font-size: clamp(32px, 27.2px + 1.5vw, 56px);
}

h3 {
    font-size: clamp(16px, 12.8px + 1vw, 32px);
}

h4 {
    font-size: clamp(16px, 14.4px + 0.5vw, 24px);
}

span.title {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: .25em;
    margin-bottom: 1em;
}

span.title:before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(img/apla-title.png);
    background-size: cover;
    position: relative;
    display: block;
}
h1.title,
h2.title {
    display: inline-block;
}

h1.title:after,
h2.title:after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    margin-right: .125em;
}

strong {
    font-weight: 600;
    line-height: 1.6;
}

/* container*/

section.container {
    padding: var(--section-padding);
}

/* wrapper */

.wrapper {
    width: 100rem;
	max-width: calc(100% - 6rem);
	margin: 0 auto;
	position: relative;
}

@media only screen and (max-width: 1024px) {
    .wrapper {        
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .wrapper {        
        max-width: calc(100% - 4rem);
    }
}

.wrapperLeft,
.wrapperRight {   
    width: calc(100% - 1.5rem);
	position: relative;
    display: flex;
    gap: 2em;
}

@media only screen and (max-width: 1024px) {
    .wrapperLeft,
    .wrapperRight {   
        width: calc(100% - 2rem);
        margin: 0 auto;
        position: relative;
        flex-direction: column;
    }
}

.wrapperLeft .colLeft,
.wrapperRight .colRight {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
}

.wrapperLeft .colRight,
.wrapperRight .colLeft {
    flex: 0 0 calc(65% - 2em);
    display: flex;
    flex-direction: column;
}

.wrapperLeft img,
.wrapperRight img {
    width: 100%;
    height: auto;
}

.wrapperWide {
    width: 100%;
    max-width: calc(100% - 2rem);
  }

.wrapper-narrow {
    width: 48rem;
    max-width: calc(100% - 6rem);
    margin: 0 auto;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .wrapper-narrow {
        width: 100%;
        max-width: calc(100% - 4rem);
    }
}

.wrapper-m {
    width: 80rem;
    max-width: calc(100% - 6rem);
    margin: 0 auto;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .wrapper-m {
        width: 100%;
        max-width: calc(100% - 4rem);
    }
}

.wrapper-s {
    width: 64rem;
    max-width: calc(100% - 6rem);
    margin: 0 auto;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .wrapper-s {
        width: 100%;
        max-width: calc(100% - 4rem);
    }
}

.intro,
.teaser {
    font-size: 24px;
    line-height: 1.6;
}

@media only screen and (max-width: 1024px) {
    .intro,
    .teaser {
        font-size: 16px;
    }
}

.teaser li::marker,
.intro li::marker {
    color: var(--green);
}

/* body */

body:not(.home) #primary {
    margin-top: 112px;
}

body.archive #primary,
body.single-product #primary {
    margin-top: 160px;
}

body.page-template-page-hardox #primary {
    margin-top: 0;
}

/* row */

.row-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-12 {
    display: flex;
    justify-content: space-between;
  }
}

.row {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 2em;
}

.row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 6em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.row-2-70-30 {
    display: grid;
    grid-template-columns: 7fr 3fr;
    column-gap: 6em;
    row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
    .row-2-70-30 {
      display: flex;
      flex-direction: column;
      gap: 2em;
    }
}

.row-2-30-70 {
    display: grid;
    grid-template-columns: 3fr 7fr;
    column-gap: 6em;
    row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
    .row-2-30-70 {
      display: flex;
      flex-direction: column;
      gap: 2em;
    }
}

.row-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-3 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.row-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1366px) {
  .row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .row-4 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.row-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 2em;
    row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
    .row-5 {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }
}

.row-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 2em;
  row-gap: 2em;
}

@media only screen and (max-width: 1024px) {
  .row-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .row-6 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.mt-1em {
  margin-top: 1em;
}


.mt-2em {
  margin-top: 2em;
}

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

.mt-4em {
  margin-top: 4em;
}

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

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

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

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
    margin-top: 120px;
  }

.mt-160 {
  margin-top: 160px;
}

.mb-1em {
    margin-bottom: 1em;
}

.mb-2em {
    margin-bottom: 2em;
}

.mb-3em {
    margin-bottom: 3em;
}

.mb-4em {
    margin-bottom: 4em;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-24 {
    margin-bottom: 24px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.col {
    position: relative;
}

.d-flex {
  display: flex;  
}

.d-flex-column {
    display: flex;
    flex-direction: column;
}

.flex-column {
    flex-direction: column;
}

.align-items-flex-start {
    align-items: flex-start;
}

.gap-1 {
    gap: 1em;
}

.gap-2 {
    gap: 2em;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
    grid-auto-rows: 1fr;
}

@media only screen and (max-width: 1024px) {
    .d-grid {
        grid-auto-rows: auto;
    }
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
    align-items: flex-start;
}

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

.transition,
a,
:before,
.splide__arrow,
.contact-form input#submit-contact,
.products .product {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;  
}

.box-shadow {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
}

.box-shadow:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

a {
    text-decoration: none;
    color: inherit;
}

p, ul, ol {
  line-height: 1.6;
}

.image img {
    width: 100%;
    height: auto;
}

.bg-color {
    background-color: var(--lightgrey);
}

.color-defence {
    color: var(--defence);    
}

.rounded img {
    border-radius: var(--border-radius);
}

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

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

.text-red {
    color: var(--red) !important;
}

.text-purple {
    color: var(--purple) !important;
}

ul.pointer li {
    display: flex;
    flex: 1 1 auto;
    gap: .5em;
    align-items: baseline;
}

ul.pointer li:before {
    content: "";
    width: 8px;
    height: 8px;
    position: relative;
    background-color: var(--red);
    flex: none;
}

/* TopBar */

.topBar {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 3em;
    z-index: 3;
    background-color: var(--black);
    color: #ffffff;
}

.topBar.scroll {
    top: -66px;
}

.topBar .wrapper {
    display: flex;
    gap: 3em;
    align-items:center;
    justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
    .topBar .container {
        justify-content: space-between;
    }
}

.topBar .social {
    display: inline-flex;
    align-items: center;
    gap: .5em;
}

.topBar .social a {
    display: flex;
}

/* header */

header.site-header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 3;
    padding: 1em 0;
    top: 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.2);
}

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

header.woocommerce-products-header {
    position: relative;
    box-shadow: none;
}

/* logo */

.logo {
    display: flex;
    width: 200px;
    height: 81px;
    background-image: url(img/logo-kolor.png);
    background-size: contain;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1024px) {
    .logo {
        width: 126px;
        height: 51px;
    }
  }
/* navigation */

.menu-toggle {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .menu-toggle {
    display: block;
    position: relative;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
    z-index: 1;
  }
}

.main-navigation.toggled .close-menu {
    display: block;
}

.main-navigation .close-menu {
    display: none;
}

.main-navigation.toggled .open-menu {
    display: none;
}

.main-navigation .open-menu {
    display: block;
}

#primary-menu {  
    list-style-type: none;
    display: flex;
    gap: 1em;    
    margin: 0;
}

#primary-menu > li {
    padding: 1em 0;
}

#primary-menu a {
    text-decoration: none;
    position: relative;
    color: var(--purple);
    font-weight: 600;
}

#primary-menu .sub-menu a {
    color: var(--purple);
}

header.scroll #primary-menu a,
header.subpage #primary-menu a {
    color: var(--purple);
}

#primary-menu a:after {
    opacity: 0;
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: var(--purple);
    left: 0;
    bottom: -.5em;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#primary-menu .sub-menu a:after {
    opacity: 0;
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    background-color: var(--purple);
    left: -12px;
    top: calc(50% - 4px);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border-radius: 50%;
    background-color: var(--red) !important;
}

header.scroll #primary-menu a:after,
header.subpage #primary-menu a:after,
#primary-menu .sub-menu a:after {
    background-color: var(--purple);
}

#primary-menu a:hover:after {
    opacity: 1;
}

#primary-menu li.lang-item-first {
    padding-left: 2em;
    border-left: 1px solid;
}

#primary-menu .sub-menu {
    display: none;
}

#primary-menu .menu-item-has-children {
    background-image: url(img/svg/down-arrow-purple.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 20px;
    padding-right: 24px;
}

header.scroll #primary-menu .menu-item-has-children,
header.subpage #primary-menu .menu-item-has-children {
    background-image: url(img/svg/down-arrow.svg);
}

#primary-menu > li.menu-item-has-children:hover > .sub-menu {
    animation: rotateMenu .8s ease-in-out forwards;
    transform-origin: top center;
    display: grid;
    row-gap: .5em;
    list-style: none;
    position: absolute;
    padding: 40px;
    background-color: #ffffff;    
    top: 4em;
    border-radius: 0 0 18px 18px;
    width: 270px;
}

@keyframes rotateMenu {
    0% {
      transform: rotateX(-90deg)
    }
    70% {
      transform: rotateX(20deg)
    }
    100% {
      transform: rotateX(0deg)
    }
}

#primary-menu .sub-menu li.menu-item-has-children {
    padding-right: 0;
    background-image: none;
}

#primary-menu .sub-menu li.menu-item-has-children .sub-menu {
    display: grid;    
}

#primary-menu .sub-menu li > .sub-menu {
    list-style: none;
    padding-left: 1em;
    font-size: 14px;
}

#primary-menu .sub-menu li > .sub-menu a {
    font-weight: 400;
}

#menuMobile {
    display: none;
}

#menu-menu-mobile {
    list-style: none;
    text-transform: uppercase;
    padding: 0;
    display: grid;
    gap: 0.5em;
}

@media only screen and (max-width: 1024px) {
    .main-navigation #primary-menu {
        display: none;
    }

    .main-navigation.toggled ul {
        list-style: none;
    }

    .main-navigation.toggled ul:not(.sub-menu) {        
        padding: 0;
    }

    .main-navigation.toggled #menuMobile {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        padding: 40px;
        height: calc(100% - 80px);
        animation: menuIn .8s ease;
        overflow: auto;
        gap: 1em;
        font-size: 24px;
        list-style: none;
    }

    .main-navigation.toggled #menuMobile ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .main-navigation.toggled #menuMobile ul li {
        line-height: 1.1;
    }

    .main-navigation.toggled #menuMobile a {
        color: var(--purple);
    }

    .main-navigation.toggled #menuMobile .menu-item-has-children {        
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: fit-content;
        position: relative;
    }

    .main-navigation.toggled #menuMobile .menu-item-has-children > a {
        position: relative;
        display: flex;
        gap: .5em;
        align-items: center;
    }

    .main-navigation.toggled #menuMobile .menu-item-has-children > a:after {
        content: "";
        width: 20px;
        height: 20px;
        position: relative;
        background-image: url(img/svg/down-arrow.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: contain;
    }

    .main-navigation.toggled #menuMobile .sub-menu {
        display: none;        
    }

    .main-navigation.toggled #menuMobile .sub-menu.open {
        display: flex;
        font-size: 16px;
        font-weight: 400;
        padding-left: 1em;
        padding-top: 1em;
      }

    @keyframes menuIn {
        0% {
            transform: translateX(300px);
        }
        100% {
            transform: translateX(0);
        }
    }

    @keyframes menuOut {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(300px);
        }
    }

    .main-navigation.toggled #menuMobile li.lang-item {
        display: inline-flex;
        font-size: 14px;
        margin-top: .5em;
        margin-right: .5em;
    }

    .main-navigation.toggled .topBarMobile {
        display: none;
        position: fixed;
        top: 80px;
        right: 40px;
        padding: 40px;
        margin-top: 40px;
        color: #ffffff;
        border-radius: var(--border-radius);
    }

    .main-navigation.toggled .topBarMobile .container {
        display: grid;
        gap: 1em;
    }

    #primary-menu .sub-menu > li.current-menu-item,
    #primary-menu .sub-menu > li.menu-item {
        color: var(--black);
    }
}

/* pagination */
.pagination .page-numbers {
    padding: 8px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-numbers.current {
    background-color: transparent;
}

.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    width: auto;
    height: auto;
    background-color: transparent;
}

/* trust */

.trust {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.trust .row-2-70-30,
.trust .row-2-30-70 {
    column-gap: 2em;
}

.trust .item {
    background-color: var(--lightgrey);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 2em;
    min-height: 516px;
}

@media only screen and (max-width: 1024px) {
    .trust .item {
        min-height: 346px;
    }
}

.trust .image img {
    height: 516px;
    object-fit: cover;
}

@media only screen and (max-width: 1024px) {
    .trust .image img {
        height: 346px;
    }
}

.trust .trustHeader {
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 1em;
    left: 1em;
    font-size: 24px;
}

.trust .number {
    font-size: clamp(32px, 27.2px + 1.5vw, 56px);
    margin-top: 8px;
}

.trust .intro {
    margin-top: 2px;
    font-size: clamp(16px, 12.8px + 1vw, 32px);
    text-align: center;
}

.trust .row-2.colspan {
    grid-template-columns: 2fr 512px;
}

/* esg */

.esg.description {
    padding: var(--section-padding);
}

.esg.important {
    padding-bottom: 120px;
}

.esg.important img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.esg.strategy {
    padding: var(--section-padding);
    position: relative;
    background-image: url(img/las.jpg);
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.esg.strategy:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--purple);
    opacity: .4;
    top: 0;
}

.esg.strategy h2 {
    color: #ffffff;
}

.esg.reports {
    padding: var(--section-padding);
}

.esg.reports .year {
    font-size: clamp(16px, 14.4px + 0.5vw, 24px);
    font-weight: 800;
}

.esg .splide__slide {
    position: relative;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
}

.esg .report {
    background-color: var(--lightgrey);
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    gap: 1em;
    justify-content: center;
    height: 200px;
    align-items: center;
    margin-bottom: 2em;
}

.esg .report:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.esg .report:hover img {
    transform: scale(1.1);
}

.esg .splide__slide:hover:before {
    opacity: 0.6;
}

.esg .splide__arrow {
    transform: none;
    background-color: var(--purple);
    background-image: url(img/svg/right-chevron-sharp-wh.svg); 
}

.esg .splide__arrow.splide__arrow--prev {
    transform: rotate(180deg);
}

.esg .splide__arrows {
    justify-content: space-between;
    width: 100%;
    top: calc(50% - 5em);
}

.esg .splide__arrows svg {
    display: none;
}

.esg.policy {
    padding-bottom: 120px;
}

.esg.policy .group {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: space-between;
}

.esg.policy .group .item {
    flex: 1 1 auto;
    display: flex;
}

.esg.policy .group .item a {
    width: 100%;
}

.esg.conference {
    padding: var(--section-padding);
}

.esg.complaints {
    padding: var(--section-padding);
}

.esg.complaints .group {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

/* catalog */

body.page-template-page-catalog .catalog .btnText {
    color: #ffffff;
}

body.page-template-page-catalog .catalog h3 {
    color: #ffffff;
}

body.page-template-page-catalog .catalog .btnText:after {
    background-image: url(img/svg/right-up-wh.svg);
}

.catalog .entry {
    background-image: url(img/katalog-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.catalog .entry .content {
    background-color: #29235c;
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 4em;
}

.catalog .entry .content h1 {
    color: #ffffff;
}

.catalog {
    padding-bottom: 120px;
}

.catalog .content {
    background-color: var(--purple);
    color: #ffffff;
    padding: 2em;
}

.catalog .about-us .content {
    background-color: #ffffff;
    color: var(--purple);
}
/* trusted */

.trusted .wrapper {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 1024px) {
    .trusted .wrapper {
        display: flex;
        flex-direction: column;
    }
}

.trusted strong {
    min-width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
}

.trusted .splide4 {
    width: 100%;
    overflow: hidden;
}

.trusted p {
    flex: 0 0 160px;
}

@media only screen and (max-width: 1024px) {
    .trusted p {
        flex: auto;
    }
}

.trusted img {
    height: auto;
    max-height: 60px;
    max-width: 100%;
}

.trusted .splide__slide {
    text-align: center;
    width: auto !important;
}

.trusted .splide__list {
    align-items: center;
    gap: 2em;
}
/* recentProjects */

.recentProjects {
    padding: 80px 0;
}


@media only screen and (max-width: 1024px) {
    .recentProjects {
        padding: 80px 0 0;
    }
}

.recentProjects .splide__arrows {
    top: calc(50% - 2.5em);
    width: calc(100% - 3rem);
    justify-content: space-between;    
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .recentProjects .splide__arrows {
        position: relative;
        width: calc(100% - 2rem);
        margin-bottom: 40px;
    }
}

.recentProjects .splide__arrows svg {
    display: none;
}

.recentProjects .splide__arrow--prev {
    background-image: url(img/svg/right-arrow-wh.svg);
    transform: rotate(180deg) translateY(0);
    left: 0;
    padding: 2.5em;
    background-color: var(--black);
}

@media only screen and (max-width: 1024px) {
    .recentProjects .splide__arrow--prev {
        background-image: url(img/svg/right-arrow.svg);        
        padding: 0;
        background-color: transparent;
    }
}

.recentProjects .splide__arrow--prev:hover {
    background-color: var(--tide);
}

.recentProjects .splide__arrow--next {
    transform: translateY(0);
    right: 0;
}

.recentProjects .colRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recentProjects h3 {
    margin-top: 0;
    margin-bottom: 40px;
}

.recentProjects .description {
    padding-right: 5em;
}

@media only screen and (max-width: 1024px) {
    .recentProjects .description {
        padding-right: 0;
    }
}

/* press */

.press  {
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.press:before {
    content: "";
    width: calc(35% + 2.5em);
    height: 100%;
    background: black;
    position: absolute;
    top: 0;
}

@media only screen and (max-width: 1024px) {
    .press  {
        background-color: var(--black);
    }

    .press:before {
        display: none;
    }
}

/* contact */

.form {
    padding: 80px 320px 80px 80px;
}

@media only screen and (max-width: 1366px) {
    .form {
        padding-right: 160px;
    }
}

@media only screen and (max-width: 1024px) {
    .form {
        padding: 2em;
    }
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
    border: 1px solid var(--purple);
    background-color: #ffffff;
    outline: none;
    color: var(--purple);
    width: calc(100% - 2em);
    padding: 1em;
}

@media only screen and (max-width: 1024px) {
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form input[type="date"],
    .contact-form textarea {
        width: calc(100% - 2em);
    }
}

.contact-form select {
    width: 100%;
}

.contact-form .contact-form__field {
    width: 100%;
}

.contact-form span.wpcf7-list-item {
    margin: 0;
}

.contact-form span.wpcf7-list-item-label {
    font-size: 12px;
}

.contact-form .policy {
    font-size: 12px;
}

.contact-form .policy label {
    display: flex;
    gap: 0.5em;
    margin-top: 1em;
}

.contact-form .policy input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.contact-form .policy input[type="checkbox"]:checked {
    accent-color: var(--magenta);
}

.contact-form ::placeholder {
    color: #00000066;
    opacity: 1; /* Firefox */
}
  
.contact-form ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #00000066;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 1em;
}

/* feedback */

#type-complaint,
#brand-ota,
#brand-other {
    display: none;
}

/* nav.navigation */

nav.navigation.post-navigation {
    padding-top: 40px;
}

nav.navigation .nav-links {
    display: flex;
    justify-content: center;
    gap: 4em;
}

@media only screen and (max-width: 800px) {
    nav.navigation .nav-links {
        display: grid;
        gap: 2em;
    }
}

nav.navigation .nav-links .nav-subtitle {
    font-size: 0;
    display: block;
    background-image: url(img/svg/right-chevron.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    flex: 0 0 auto;
}

nav.navigation .nav-links .nav-previous .nav-subtitle {
    transform: rotate(180deg);
}

nav.navigation .nav-title {
    display: block;
}

nav.navigation .nav-next,
nav.navigation .nav-previous {
    flex: 1 1 0;
}

nav.navigation .nav-next a,
nav.navigation .nav-previous a {
    display: flex;
    align-items: center;
    gap: 1em;
}

nav.navigation .nav-next a {
    flex-direction: row-reverse;
}

nav.navigation .nav-next .nav-title {
    text-align: right;
}

/* page blog */

main.page.blog section.blog,
main.page.archive section.blog {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

main.page.blog section.blog .col,
main.page.archive section.blog .col {
    background-image: url(img/blog-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    height: 330px;
    padding: 40px;
}

main.page.blog section.blog .content,
main.page.archive section.blog .content {
    text-align: left;
}


main.page.blog section.blog h1,
main.page.archive section.blog h1 {
    font-size: 32px;
}

@media only screen and (max-width: 468px) {
    main.page.blog section.blog h1,
    main.page.archive section.blog h1 {
        font-size: 28px;
    }
}

main.page.blog section.blog .seeMore,
main.page.archive section.blog .seeMore {
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 1024px) {
    main.page.blog section.blog .seeMore,
    main.page.archive section.blog .seeMore {
        display: none
    }
}

/* Headers */

.preTitle {
    text-transform: uppercase;
    letter-spacing: .2rem;
}

/* Buttons */

.buttons {
    display: flex;
    gap: 1em;
}

.btn,
.contact-form input#submit-contact,
ul.products li.product .button {
    text-decoration: none;
    display: inline-block;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    border: solid 1px;
    padding: 14px 20px;
    border-color: var(--purple);
    color: var(--purple);
    background-color: transparent;
    border-radius: 32px;
}

.btn:hover {
    background-color: var(--purple);
    color: #ffffff;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.btnReverse {
    background-color: var(--purple);
    border-color: var(--purple);
    color: #ffffff;
}

.btnReverse:hover {
    background-color: transparent;
    color: var(--purple);
}

.btnReverseRed,
.contact-form input#submit-contact {
    background-color: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.btnReverseRed:hover,
.contact-form input#submit-contact:hover {
    background-color: #ffffff;
    border-color: var(--purple);
    color: var(--purple);
}

.btn.btnRed {
    background-color: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.btn.btnRed:hover {
    background-color: transparent;
    border-color: #ffffff;
}

.btnGreen {
    background-color: #50b24d;
    border-color: #50b24d;
    color: #ffffff;
}

.btnGreen:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn.btnWhite {
    color: #ffffff;
    border-color: #ffffff;
}

.btn.btnWhite:after {
    background-color: #ffffff;
    color: var(--grey);
}

.btn.btnWhite:hover {
    background-color: #ffffff;
    color: var(--black);
}

.btnFull {
    text-decoration: none;
    display: inline-block;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .2em;
    position: relative;
    padding: 1em;
    background-color: var(--black);
    color: #ffffff;
}

.btnFull:hover {
    background-color: #000000CC;
}

.btnFullWhite {
    text-decoration: none;
    display: inline-block;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .2em;
    position: relative;
    padding: 1em;
    background-color: #ffffff;
    color: var(--tide);
}

.btnText {
    color: var(--purple);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .25em;
}

.btnText:hover {    
    gap: .5em;
}

.btnText:after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(img/svg/right-up.svg);
    background-size: cover;
}

/* keyframes */

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translatey(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translatey(120px);
        -webkit-transform: translatey(120px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

.fadeUp {
    opacity: 0;
    animation: fadeUp linear forwards;
    animation-timeline: view();
    animation-range: entry 10% contain 10%;
    animation-fill-mode: both;
    animation-duration: 1ms;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #000000;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: relative;
    top: 50%;
    left: 50%
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Makes a fixed background wrapper which the user cannot interact with */

.iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
  
/* Make the iframe keep an aspect ratio, and position it in the middle of its parent wrapper*/
  
.iframe-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* splide */

.splide__arrow {
    background-image: url(img/svg/right-arrow-wh.svg);
    background-size: 3em 3em;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    background-color: transparent;
    width: 5em;
    height: 5em;
    position: relative;
}

.splide__arrows {
    position: absolute;
    display: flex;
    align-items: center;
}

/* entry */

.entry {
    height: 100vh;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .entry {
        min-height: 100svh;
        height: 100%;
    }
}

.entry .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

@media only screen and (max-width: 1024px) {
    .entry {
        background-image: none;
        background-color: var(--purple);
        color: #ffffff;
    }

    .entry .btn {
        color: #ffffff;
    }

    .entry .btn:hover {
        background-color: #ffffff;
        color: var(--purple);
    }
}

.entry .splide {
    height: 100%;
}

.entry .splide__track {
    height: 100%;
}

.entry .splide__slide {
    overflow: hidden;
    height: 100vh;
    display: flex;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.entry .splide__slide .content {
    background-color: #29235c;
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 4em;
}

@media only screen and (max-width: 1024px) {
    .entry .splide__slide .content {
        padding: 2em;
    }
}

.entry .splide__slide .content h1,
.entry .splide__slide .content h2 {
    color: #ffffff;
}

.entry .splide__slide .content h2 {
    font-size: clamp(16px, 12.8px + 1vw, 32px);
}

.entry .splide__arrows svg {
    display: none;
}

.entry .splide__arrows {
    top: calc(50% - 48px);
    width: 100%;
    justify-content: space-between;
}

@media only screen and (max-width: 1700px) {
    .entry .splide__arrows {
        display: none;
    }
}

.entry .splide__arrow:hover {
    background-color: #ffffff;
    background-image: url(img/svg/right-arrow.svg);
}

.entry .splide__arrow--prev {
    transform: rotate(180deg) translateY(0);
    left: 3em;
}

.entry .splide__arrow--next {
    transform: translateY(0);
    right: 3em;
}

.entry .slideContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.entry .slide1 {
    background-image: url(img/slajd-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.entry .slide2 {
    background-image: url(img/karuzela-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.entry .slide3 {
    background-image: url(img/slajd-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.entry .slide4 {
    background-image: url(img/karuzela-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.entry .slide5 {
    background-image: url(img/karuzela-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.entry .social {
    position: absolute;
    bottom: 1em;
    right: 0;
}

.entry .splide__pagination__page {
    width: 10px;
    height: 10px;
}

.entry .splide__pagination__page.is-active {
    background: var(--red);
}

/* counter */

section.counter {
    padding: var(--section-padding);
    color: var(--purple);
}

section.counter .counter .item {
    background: var(--purple);
    color: #ffffff;
    padding: 6em 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.counter .counter .item h3 {
    color: #ffffff;
}

section.counter img {
    margin: 0 auto;
    margin-bottom: 1em;
}


/* about-us */

.about-us {
    padding: var(--section-padding);
}

/* more-about-us */

.more-about-us {
    position: relative;
    padding: var(--section-padding);
    background-color: var(--purple);
    background-image: url(img/spawanie.jpg);
    background-position: center;
    color: #ffffff;
}

.more-about-us:before {
    content: "";
    width: 56px;
    height: 56px;
    background-image: url(img/apla-title.png);
    background-size: cover;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
}

.more-about-us h2 {
    color: #ffffff;
}

/* career-home */

.career-home {
    padding: var(--section-padding);
    background-image: url(img/apla-section-top.png);
    background-position: top right;
    background-repeat: no-repeat;
}

/* contact-home */

.page-template-page-career .contact-home,
.page-template-page-esg .contact-home,
.page-template-page-quality .contact-home,
.page-template-page-certificates .contact-home,
.single-product .contact-home {
    display: none;
}

.page-template-page-career .contact-home.career {
    display: block;
}

.contact-home {
    padding: var(--section-padding);
}

.page-template-page-hardox .contact-home {
    padding-top: 0;
}

.page-template-page-contact .contact-home {
    display: none;
}

.page-template-page-contact .contact-home.contact {
    display: block;
}

.contact-home .row-2 {
    column-gap: 2em;
}

.contact-home .title {
    justify-content: center;
}

.contact-home .intro {
    margin-top: 0;
}

.contact-home .direct {
    display: flex;
    justify-content: space-evenly;
    padding: 2em 2em 4em;
    background-color: var(--purple);
    color: #ffffff;
}

@media only screen and (max-width: 1024px) {
    .contact-home .direct {
        justify-content: flex-start;
    }
}

.contact-home.contact .direct {
    justify-content: flex-start;
    flex-direction: column;
    padding: 4em;
}

@media only screen and (max-width: 1200px) {
    .contact-home.contact .direct {
        padding: 2em;
    }
}

.contact-home.career .direct {
    padding: 0;
}

.contact-home .direct h2,
.contact-home .direct h3,
.contact-home .direct h4 {
    color: #ffffff;
}

.contact-home .direct h4 {
    display: flex;
    align-items: center;
    gap: .5em;
}

.contact-home.career .direct h4 {
    justify-content: center;
}

.contact-home .direct h4:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--red);
    border-radius: 50%;
    display: block;
}

.contact-home.career .direct h4:before {
    display: none;
}

.contact-home.career .direct .image {
    position: relative;
}

.contact-home.career .direct .image:after {
    content: "";
    width: 3em;
    height: 3em;
    position: absolute;
    background-color: var(--red);
    bottom: -1.5em;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
}

.contact-home .direct .group {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.contact-home.career .direct .group {
    gap: 0;
}

.contact-home .direct .item {
    display: flex;
    gap: 1em;
    flex-direction: column;
}

.contact-home.career .direct .item {
    padding: 4em 2em 2em;
}

.contact-home .direct .item .details {
    display: flex;
    gap: 1em;
    padding-left: 24px;
}

.contact-home.career .direct .item .details {
    flex-direction: column;
    align-items: center;
    gap: 0;
}

@media only screen and (max-width: 1200px) {
    .contact-home .direct .item .details {
        flex-direction: column;
    }
}

.contact-home .direct .item .details .box {
    display: flex;
    gap: .5em;
    align-items: center;
}

/* contact */

.contact .container .item {
    border: 2px solid var(--purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
}

/* article */

.article.header:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--header-overlay);
}

.article.content {
    padding: var(--section-padding);
}

article.type-projekt {
    padding-top: 240px;
    width: calc(100% - 3em);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    article.type-projekt {
        padding-top: 180px;
        width: calc(100% - 2em);
    }
}

article.type-projekt .details{
    opacity: .8;
}

/* blogPage */

.blogPage .col {
    display: flex;
}

.blogPage .article {
    background-color: #0000000D;
    padding: 80px 40px;
}

.blogPage .article:hover {
    background-color: #ffffff;
}

.blogPage time {
    display: block;
    font-size: 12px;
    margin-bottom: 1em;
}

/* page default */

.page.description {
    padding: var(--section-padding);
}

/* singleArticle */

.singleArticle h2 {
    margin-top: 24px;
    margin-bottom: 24px;
}

/* header */

.header {
    display: flex;
    align-items: center;
    height: 400px;
    background-color: var(--purple);
    position: relative;
    margin-top: 90px;
}

@media only screen and (max-width: 1024px) {
    .header {
        margin-top: 64px;
    }
}

.header .content {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
}

.header .content h1 {
    color: #ffffff;    
}

.header .content .buttons {
    position: relative;
    z-index: 1;
}

/* aboutUs */

.aboutUs.header {
    background-image: url(img/hala.jpg);
    background-position: bottom;
}

.aboutUs.description {
    padding: var(--section-padding);
}

.aboutUs iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.aboutUs.description.container-1 {
    padding-bottom: 0;
    padding-top: 40px;
}

@media only screen and (max-width: 1024px) {
    .aboutUs.description.container-2 .image {
        order: 1;
    }

    .aboutUs.description.container-2 .content {
        order: 2;
    }
}

.aboutUs ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    position: relative;
    background-color: var(--red);
}

.aboutUs.technologies {
    padding: var(--section-padding);
    background-color: var(--lightgrey);
}

.aboutUs .timeline {
    background-color: var(--purple);
    color: #ffffff;
}

.aboutUs .timeline h3 {
    color: #ffffff;
}

.aboutUs .timeline .item {
    padding: 2em;
}

.aboutUs .timeline .item:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #ffffff;
    position: absolute;
    right: -1em;
    top: calc(50% - 16px);
}

@media only screen and (max-width: 1024px) {
    .aboutUs .timeline .item:after {
        right: 0;
        top: auto;
        left: 0;
        transform: rotate(90deg);
        margin: 0 auto;
    }
  }

.aboutUs .timeline .item:last-child:after {
    display: none;
}

.aboutUs.details {
    padding: var(--section-padding);    
    background-color: var(--purple);
}

.aboutUs.details .wrapper.box-1 {
    background-color: #ffffff;
    padding: 6em;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
}

.aboutUs.details .wrapper.box-1 .image img {
    height: 400px;
    object-fit: cover;
}

@media only screen and (max-width: 1024px) {
    .aboutUs.details .wrapper.box-1 .image {
        order: 1;
    }

    .aboutUs.details .wrapper.box-1 .content {
        order: 2;
    }
  }

.aboutUs.details .wrapper.box-2 {
    color: #ffffff;
}

.aboutUs.details .wrapper.box-2 h2 {
    color: #ffffff;
}

.aboutUs.details .teamMembers .item {
    background-color: #ffffff;
    color: var(--purple);
}

.aboutUs.details .teamMembers .item .image {
    position: relative;
    display: flex;
}

.aboutUs.details .teamMembers .item .image:after {
    content: "";
    width: 3em;
    height: 3em;
    position: absolute;
    background-color: var(--red);
    bottom: -1.5em;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
}

.aboutUs.details .teamMembers .details {
    padding: 2em;
}

.aboutUs.details .teamMembers .card {
    padding: 2em;
    background-color: #ffffff;
    color: var(--purple);
    min-height: 132px;
}

.aboutUs.details .teamMembers .item p {
    margin-top: 0;
}

/* offer */

.offer.header {
    background-image: url(img/hala.jpg);
    background-position: bottom;
}

.offer.description,
.offer.details {
    padding: var(--section-padding);
}

@media only screen and (max-width: 1024px) {
    .offer.details .row-3 {
        gap: 0;
    }
  }

.offer.description .content {
    background-color: var(--grey);
    padding: 2em;
}

/* career */

.career.header {
    background-image: url(img/kariera.jpg);
    background-position: center;
}

.career.description {
    padding: var(--section-padding);
}

.career.description .counter .item {
    position: relative;
}

.career.offers {
    padding: var(--section-padding);
}

.career.follow {
    padding: var(--section-padding);
}

.career.important {
    padding-bottom: 120px;
}

.career.important .item {
    border: 2px solid var(--purple);
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}

.career.important .content {
    background-color: #ffffff;
}

.career.important .content h3 {
    color: var(--purple);
}

/* important */

.important .item {
    position: relative;
    display: flex;
}

.important .content {
    padding: 2em;
    bottom: 0;
    color: #ffffff;
    background-color: var(--purple);
}

.important .content h3,
.important .content p,
.important .content a {
    color: #ffffff;
}

/* portfolio */

.portfolio.description {
    padding: var(--section-padding);
}

/* certificates */

.certificates {
    padding: var(--section-padding);
}

.docs.certificates {
    padding: var(--section-padding);
}

.docs.awards {
    padding: var(--section-padding);
}

.col.doc.cert,
.col.doc.award {
    background-color: #ECECEF;
    display: flex;
    gap: 1em;
    align-items: center;
    padding: 1em;
}

.col.doc.cert:before,
.col.doc.award:before {
    content: "";
    width: 32px;
    height: 32px;
    position: relative;
    background-size: cover;
    flex: none;
    margin-left: 8px;
}

.col.doc.cert:before {
    background-image: url(img/svg/document.svg);
}

.col.doc.award:before {
    background-image: url(img/svg/trophy.svg);
}

.col.doc.cert:hover,
.col.doc.award:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.col.doc.cert:hover:before {
    background-image: url(img/svg/document-red.svg);
}

.col.doc.award:hover:before {
    background-image: url(img/svg/trophy-red.svg);
}

/* defence */

.defence.header {
    background-color: var(--defence);
}

.defence.description {
    padding: var(--section-padding);
}

.defence.description .group a {
    flex-flow: column;
    gap: 1em;
}

.defence .din {
    color: var(--defence);
    font-size: 64px;
    line-height: 64px;
    font-weight: 900;
}

/* contact */

.contact.header {
    background-position: center;
}

.contact.description .group .item {
    display: flex;
    gap: .5em;
    align-items: center;
}

/* newsSection */

.newsSection {
    padding: 80px 0;
}

.newsSection .item {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.newsSection .image {
    overflow: hidden;
    align-items: center;
    height: 300px;
}

.newsSection .image img {
    box-shadow: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.newsSection h3 {
    margin: 0;
}

/* contactSection */

.contactSection {
    padding: 80px 0;
}

.contactSection .form {
    padding: 0;
}

.contactSection .phoneMail {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contactSection .contact-form input[type="text"],
.contactSection .contact-form input[type="email"],
.contactSection .contact-form input[type="tel"],
.contactSection .contact-form input[type="date"],
.contactSection .contact-form select,
.contactSection .contact-form textarea {
    border: 1px solid var(--black);
    background-color: #ffffff;
    outline: none;
    color: var(--black);
    width: calc(100% - 2em);
    padding: 1em;
}

.contactSection .contact-form ::placeholder {
    color: #00000066;
    opacity: 1; /* Firefox */
}
  
.contactSection .contact-form ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #00000066;
}

/* contactDetails */

.contactDetails {
    background-color: #f3f2f2;
    padding-bottom: 160px;
}

.contactDetails h2 {
    background-color: var(--magenta);
    color: #ffffff;
    padding: 40px;
}

.contactDetails a {
    font-weight: 600;
    color: var(--green);
    display: block;
}

.contactDetails a:hover {
    color: var(--magenta);
}

.contactDetails .content {
    padding: 0 40px;
}

.contactDetails .linkedIn .group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.contactDetails .linkedIn a {
    display: flex;
    gap: 1em;
    align-items: center;
}

/* scrollbar */

::-webkit-scrollbar {
    width: 1em;
}

::-webkit-scrollbar-track {
  background: #ffffff; 
}

::-webkit-scrollbar-thumb {
  background: var(--purple); 
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple); 
}

/* footer */

footer {
    width: 100%;
}

@media only screen and (max-width: 1366px) {
    footer {
        position: relative;
    }
}

@media only screen and (max-width: 1024px) {
    footer .row-2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 768px) {
    footer .row-2 {
        flex-direction: column;
        justify-content: center;
    }
}

.footer .design {
    display: flex;
    justify-content: end;
}

.footer .social {
    display: flex;
    gap: 1em;
}

/* footerDetails */

.footerDetails {  
    padding: 80px 0;
    background-color: var(--purple);
    color: #ffffff;
}

.footerDetails h2 {
    margin-top: 0;
}

.footerDetails h4 {
    color: #ffffff;
}

.footerDetails ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1em 0 0;
    display: grid;
}

.footerDetails li {
    line-height: 24px;
}

.footerDetails .icon-text {
    display: flex;
    gap: .5em;
    align-items: center;
}

.footer .socialIcons {
    display: flex;
    gap: .5em;
    justify-content: end;
}

.footer .design {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.footer .contact {
    padding: 0;
    background-image: none;
}

.footer .contact .group {
    gap: 0.5em;
}

.footer .contact .group .value {
    font-weight: 400;
}

.footer .policy a {
    color: inherit;
    text-decoration: none;
}


.footer .bottomBar {
    background-color: var(--purple);
    color: #ffffff;
    display: flex;    
    padding: 40px 0;
}

/* accordion */

.accordion {
    padding: 40px 0 80px;
}

.accordion h4 {
    font-weight: normal;
}

ul.accordion-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2em;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media only screen and (max-width: 1024px) {
    ul.accordion-list {
        width: 100%;
    }   
}

ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    background-color: var(--lightgrey);
    padding: 2em;
}

@media only screen and (max-width: 1024px) {
    ul.accordion-list li {
        margin: 0;
    }    
}

ul.accordion-list .number {
    color: #00000066;
}

@media only screen and (max-width: 1024px) {
    ul.accordion-list li {
        width: auto;
    }
}

ul.accordion-list .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.accordion-list li .title .icon img {
    transform: rotate(90deg);
}

@media only screen and (max-width: 1024px) {
    ul.accordion-list li .title .icon img {
        width: 24px;
        height: 24px;
    }
}

ul.accordion-list li.active .title .icon img {
    transform: rotate(-0.25turn);
}

ul.accordion-list li .answer {
    display: none;
}

ul.accordion-list li .answer li {
    list-style-type: disc;
    border: none;
    padding: 0;
}

/* .skk_container */
.skk_container {
    margin: 0 auto;
}

/* products home */

.home .products {
    background-color: var(--lightgrey);
}

.home .products .splide__track {
    padding-bottom: 1.5em;
}

.home .product {
    background-color: #ffffff;
    padding: 2em;
}

.home .product:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.home .products .splide__arrows svg {
    display: none;
}

.home .products .splide__arrows {
    top: 50%;
    width: 100%;
    justify-content: space-between;
}

@media only screen and (max-width: 1700px) {
    .home .products .splide__arrows {
        display: none;
    }
}

.home .products .splide__arrow {
    background-color: var(--purple);
    background-image: url(img/svg/right-arrow-wh.svg);
}

.home .products .splide__arrow:hover {
    background-color: var(--red);
}

.home .products .splide__arrow--prev {
    transform: rotate(180deg) translateY(0);
    left: 3em;
}

.home .products .splide__arrow--next {
    transform: translateY(0);
    right: 3em;
}

/* WOOCOMMERCE */

aside {
    display: none;
}

.anzo-attribute-options > div {
    border: 1px solid #29235c;
    margin: 5px;
    padding: 1em;
}

.anzo-attribute-option.selected {
    color: #ffffff;
}

.anzo-option-description {
    margin-top: 1em;
    font-weight: 600;
    color: var(--purple);
}

.products .product {
    display: flex;
    flex-direction: column;
    padding-top: 2em !important;
    padding-bottom: 2em !important;
    min-height: 453px;
}

.products .product:hover {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    -moz-box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
    box-shadow: 0px 8px 16px 0px rgba(79, 81, 89, 0.4);
}

.products .product .product-category {
    margin-top: 1em;
    color: var(--purple);
}

.products .product h2 {
    text-align: center;
}

.products .product .price {
    display: none !important;
}

.products .product .attachment-woocommerce_thumbnail {
    max-height: 240px;
    object-fit: contain;
}

.woocommerce-Tabs-panel h2 {
    font-size: clamp(16px, 14.4px + 0.5vw, 24px);
}

.related.products {
    margin-top: 80px;
    clear: both;
}

.related.products h2 {
    margin-bottom: 40px;
}

.woocommerce-ordering {
    display: none;
}

/* hardox */

.hardox .entry {
    background-image: url(img/hardox-entry.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
}

.hardox .entry:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
    position: absolute;
    top: 0;
}

.hardox .entry h1 {
    color: #ffffff;
}

.hardox .entry .content {
    background-color: #97233fE6;
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 4em;
}

.hardox .hardoxAboutUs .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hardox .hardoxAboutUs .image img {
    max-width: 480px;
    transform: rotate(15deg);
}

.hardox .hardoxDetails {
    background-image: url(img/hardoxDetails.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    color: #ffffff;
}

.hardox .hardoxDetails:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
    position: absolute;
    top: 0;
}

.hardox .hardoxDetails .row-2.group {
    column-gap: 3em;
}

.hardox .hardoxDetails .item {
    background-color: #97233f;
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 4em 1.5em;
}

.hardox .hardoxDetails .item .value {
    font-size: 40px;
    font-weight: 800;
}

.hardox section.hardoxPerformance {
    padding-top: 0;
}

.hardox .hardoxPerformance h3 {
    border-bottom: 1px solid;
    padding-bottom: .5em;
}

/* strenx */

section.strenx {
    padding-top: 0;
}

.strenx .box-1 {
    background-image: url(img/strenx-tlo.jpg);
    background-repeat: no-repeat;
}

.strenx .box-1 h2 {
    color: #ffffff;
    padding-left: 40px;
    padding-bottom: 40px;
}

.hardox .strenx .image img.strenxLogo {
    transform: rotate(15deg);
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    max-width: 480px;
}

/* awards */

.awards {
    padding: var(--section-padding);
}

.awards .year {
    margin-top: 0;
    border-bottom: 1px solid;
}

/* measures */

.measures {
    background-image: url(img/jakosc.jpg);
    padding: var(--section-padding);
    background-size: cover;
    background-position: center;
}

.measures .item {
    background-color: #ffffffCC;
    backdrop-filter: blur(8px);
    padding: 2em;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    min-height: 338px;
}

.measures .item p {
    color: var(--purple);
    margin-top: 0;
}