@charset "UTF-8";
:root {
    --black             :#121515;
    --white             :#ffffff;

    --blur          :8px;
    --radius        :32px;
    --btn-radius    :50px;

    --section-padding: clamp(80px, 61.5385px + 5.1282vw, 160px) 0;
    --border-radius: 32px;
    --header-overlay: rgba(0, 0, 0, 0.4);

    --body-font-size: 16px;
    --font-size-small: clamp(12px, 11.0769px + 0.2564vw, 16px);
}

html {
    scroll-behavior: smooth;
    margin: 0;
}

body {
    padding: 0;
    box-sizing: border-box;    
    font-optical-sizing: auto;    
    font-style: normal;
    font-size: var(--body-font-size);
    overflow-x: hidden;
    position: relative;
    color: var(--black);
    margin: 0 !important;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    line-height: 1.1;
    text-wrap: balance;
    font-weight: 400;
}

h1 {
    font-size: clamp(40px, 21.5385px + 5.1282vw, 120px);
    text-transform: uppercase;
}

.project h1 {
    font-size: clamp(40px, 30.7692px + 2.5641vw, 80px);
}

h2 {
    font-size: clamp(40px, 21.5385px + 5.1282vw, 120px);
    text-transform: uppercase;
}

h3 {
    font-size: clamp(24px, 22.1538px + 0.5128vw, 32px);
}

h4 {
    font-size: var(--body-font-size);
}

p {
    margin: 0.75em 0;
    letter-spacing: 0.025em;
    line-height: 1.6 !important;
}

a:focus,
a:active,
a:visited,
a:hover {
    outline: none;
    box-shadow: none;
    color: inherit;
}

.font-size-small {
    font-size: var(--font-size-small);
}

.uppercase {
    text-transform: uppercase;
}

/* flexbox */

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
    align-items: flex-start;
}

.space-between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.gap-05 {
    gap: .5em;
}

.gap-1 {
    gap: 1em;
}

.gap-2 {
    gap: 2em;
}

.gap-3 {
    gap: 3em;
}

.flex-direction-column {
    flex-direction: column;
    -ms-flex-direction: column;
}

.border-box {
    box-sizing: border-box;
}

.section-padding {
    padding: var(--section-padding);
}

.text-nowrap {
    text-wrap-mode: nowrap;
}

.opacity-8 {
    opacity: 0.8 !important;
}

.d-block {
    display: block;
}

.full-width {
    width: 100%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.bottom-0 {
    bottom: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.overflow-hidden {
    overflow: hidden;
}

.minvh-100 {
    min-height: 100vh;
}

.grayscale {
    filter: grayscale(100%);
}

.grayscale:hover {
    filter: grayscale(0)
}

/* wrappers */

.wrapper {
    width: 110rem;
	max-width: calc(100% - 6rem);
	margin: 0 auto;
	position: relative;
}

.wrapper-xl {
    width: 100%;
    max-width: calc(100% - 2rem);
    margin: 0 auto;
}

.wrapper-l {
    width: 72rem;
    max-width: calc(100% - 6rem);
    margin: 0 auto;
    position: relative;
}

.wrapper-m {
    width: 64rem;
    max-width: calc(100% - 6rem);
    margin: 0 auto;
    position: relative;
}

.wrapper-s {
    width: 50rem;
    max-width: calc(100% - 6rem);
    margin: 0 auto;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .wrapper, .wrapper-l, .wrapper-m, .wrapper-s {
        width: 100%;
        max-width: calc(100% - 2rem);
    }
}

.intro {
    font-size: clamp(16px, 15.3455px + 0.1818vw, 20px);
    line-height: 1.6;
    position: relative;
}

.teaser li::marker,
.intro li::marker {
    color: var(--green);
}

/* section background */

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
    color: var(--white);
}

.bg-lightgrey {
    background-color: var(--lightgrey);
}

.bg-green {
    background-color: var(--green);
}

.bg-dark-green {
    background-color: var(--dark-green);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-pink {
    background-color: var(--pink);
}

.bg-pink-shade-1 {
    background-color: var(--pink-shade-1);
}

.bg-pink-shade-2 {
    background-color: var(--pink-shade-2);
}

.bg-pink-shade-3 {
    background-color: var(--pink-shade-3);
}

.bg-primary {
    background: #0540F2;
    background: linear-gradient(45deg, rgba(5, 64, 242, 1) 0%, rgba(80, 121, 242, 1) 100%);
}

.bg-grey {
    background-color: var(--grey);
}

.bg-primary-shade-1 {
    background-color: var(--primary-shade-1);
}

.bg-primary-shade-2 {
    background-color: var(--primary-shade-2);
}

.bg-primary-shade-3 {
    background-color: var(--primary-shade-3);
}

/* ratio */

.ratio-1-1 {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.ratio-4-5 {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.ratio-5-4 {
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center;
}

/* radius */

.radius {
    border-radius: var(--border-radius);
}

/* box-shadow */

.box-shadow:hover {
    -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
}

/* row */

.row-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 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: 3em;
  row-gap: 3em;
}

.row-6-4 {
  grid-template-columns: 60% 40%; 
}

.row-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2em;
  row-gap: 2em;
}

.row-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2em;
  row-gap: 2em;
  align-items: stretch; 
}

@media only screen and (max-width: 1366px) {
  .row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.row-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 2em;
    row-gap: 2em;
}

.row-6 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 1em;
  row-gap: 1em;
}

@media only screen and (max-width: 1366px) {
  .shrink {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

@media only screen and (max-width: 1024px) {
  .row-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 768px) {
  .row-2, .row-3, .row-4, .row-5, .row-6 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}

.row-7 {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 1em;
    row-gap: 1em;
}

@media only screen and (max-width: 1500px) {
  .row-7 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 1024px) {
  .row-7 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 768px) {
  .row-7 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.padding-inline {
    padding-inline: 40px;
}

.padding-block {
    padding-block: 40px;
}

.padding-inline-1 {
    padding-inline: 1em;
}

.padding-block-1 {
    padding-block: 1em;
}

.padding-2em {
    padding: 2em;
}

.mt-05 {
  margin-top: 0.5em;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mt-4 {
  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: clamp(60px, 56.7273px + 0.9091vw, 80px);
}

.mt-120 {
    margin-top: clamp(60px, 50.1818px + 2.7273vw, 120px);
  }

.mt-160 {
  margin-top: clamp(60px, 43.6364px + 4.5455vw, 160px);
}

.padding-box {
    padding: 2em;
}

.mb-1em {
    margin-bottom: 1em;
}

.mb-2em {
    margin-bottom: 2em;
}

.mb-3em {
    margin-bottom: 3em;
}

.mb-4em {
    margin-bottom: 4em;
}

.mb-80 {
  margin-bottom: clamp(60px, 56.7273px + 0.9091vw, 80px);
}

.mb-120 {
  margin-bottom: clamp(60px, 50.1818px + 2.7273vw, 120px);
}

.mb-40 {
    margin-bottom: 40px;
}

.ml-1 {
    margin-left: 1em;
}

.ml-40 {
    margin-left: 40px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-24 {
    margin-bottom: 24px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 1em;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-160 {
    padding-bottom: clamp(80px, 61.5385px + 5.1282vw, 160px);
}

.pl-2 {
    padding-left: 2em;
}

.col {
    position: relative;
}

.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;
    }
}

.minvh-100 {
    min-height: 100vh;
}

.transition, a {
  -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;
}

ul {
    margin: 0;
}

p, ul, ol {
  line-height: 1.4;
}

.image img {
    width: 100%;
    height: auto;    
}

.rounded {
    border-radius: var(--border-radius);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--black);
}

.text-primary {
    color: var(--primary);
}

.stroke {
    border: 1px solid;
}

.border-lightgrey {
    border-color: var(--grey);
}

.border-right {
    border-right: 1px solid;
}

@media only screen and (max-width: 1024px) {
    .border-right {
        border-right: none;
    }
}

.border-light {
    border-color: #00000066;
}

/* header */

header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 4;
    top: 0;
    padding: 1em;
}

@media only screen and (max-width: 1024px) {
    header {
        padding: 1em 0;
    }
}

/* navigation */

.open-menu {
    filter: brightness(0);
}

.menu-toggle {
    display: flex;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu {
    display: none;
}

.site-header-nav {
    padding: 1em 1em 1em 2em;
    border-radius: 50px;
    -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;  
}

@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg)
    }

    70% {
        transform: rotateX(20deg)
    }

    100% {
        transform: rotateX(0deg)
    }
}

@media (max-width: 1024px) {
    
}

#primary-menu {  
    list-style-type: none;
    display: flex;    
    margin: 0;
}

#primary-menu a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(40px, 30.7692px + 2.5641vw, 80px);
    color: var(--white);
}

#primary-menu .sub-menu {
    display: none;
}

#primary-menu .menu-item-has-children {
    background-image: url(../img/svg/down-wh.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 20px;
    padding-right: 24px;
}

header.scroll #primary-menu .menu-item-has-children,
.page-template-template-portfolio-item #primary-menu .menu-item-has-children,
.page-template-default #primary-menu .menu-item-has-children,
.page-template-template-contact #primary-menu .menu-item-has-children,
.blog #primary-menu .menu-item-has-children,
.single-post #primary-menu .menu-item-has-children {
    background-image: url(../img/svg/down.svg);
}

#primary-menu > li.menu-item-has-children:hover > .sub-menu {
    animation: rotateMenu .5s ease-in-out forwards;
    transform-origin: top center;
    display: grid;
    row-gap: .5em;
    list-style: none;
    position: absolute;
    padding: 2em;
    overflow: hidden; /* ważne */
    background-color: var(--black);
    box-shadow: none;
    border-radius: 24px;
    left: -4em;
}

#primary-menu > li.menu-item-has-children:hover > .sub-menu a {
    color: var(--white);
}

#primary-menu > li.menu-item-has-children:hover > .sub-menu a:after {
    display: none;
}

#primary-menu > li.menu-item-has-children:hover > .sub-menu a:hover {
    transform: translateX(8px);
}

#primary-menu li.current-lang,
#menuMobile li.current-lang {
	display: none !important;
}

@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 > .sub-menu {
    list-style: none;
    padding-left: 1em;
    font-size: 14px;
}

.main-navigation ul ul a {
    width: auto !important;
    min-width: 270px;
}

.menu-toggle {
    position: relative;
    cursor: pointer;
    z-index: 1;
    border: none;
    display: flex;
    align-items: center;
    background-color: transparent;        
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}

.main-navigation .menu-toggle {
    background-image: url(../img/svg/menu.svg);
}

.main-navigation.toggled .menu-toggle {
    background-image: url(../img/svg/close.svg);
}

.main-navigation.toggled .menu-toggle img {
    display: none;
}

header.scroll .main-navigation.toggled .menu-toggle {
    background-image: url(../img/svg/close.svg);
}

.main-navigation {
    display: flex;
    justify-content: end;
}

.menu-toggle span {
    font-size: 48px;
}

.main-navigation .menu {
    display: none;
}

.main-navigation.toggled .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: rotateMenu 500ms ease-in-out forwards;
    transform-origin: top center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--black);
    width: 100%;
    min-height: 100vh;
    align-items: center;
}

/* NAVIGATION ON MOBILE */
@media only screen and (max-width: 1024px) {
    .buttons.contact-us {
        display: none;
    }

    

    .main-navigation.toggled ul:not(.sub-menu) {        
        padding: 0;
    }

    @keyframes menuIn {
        0% {
            transform: translateX(300px);
        }
        100% {
            transform: translateX(0);
        }
    }

    @keyframes menuOut {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(300px);
        }
    }

    #primary-menu .menu-item-has-children {
        background-image: none;
    }

    #primary-menu > li.menu-item-has-children:hover > .sub-menu {
        animation: none;
        display: none;
    }

    #primary-menu > li.menu-item-has-children > .sub-menu {
        position: relative;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        left: 1em;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
  .menu-toggle span {
    font-size: 36px;
  }
}

/* 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;
}

/* work */

.works .subtitle {
    font-size: 14px;
}

.works .item:hover img {
    transform: scale(1.2) !important;
}

/* contact */

form fieldset {
    display: none;
}

.contact-form .row {
    row-gap: 0;
}

.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(--black);
    color: var(--black);
    background-color: transparent;
    outline: none;
    padding: 8px;
    width: 100%;
    border-radius: 0;
}

@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: 100%;
    }
}

.contact-form .label.focused {
    font-size: 12px;
}

.contact-form .label.focused input {
    font-size: 16px;
}

.contact-form select {
    width: 100%;
}

.contact-form .contact-form__field {
    width: 100%;
}

.contact-form span.wpcf7-list-item {
    margin: 0;
}

.contact-form .policy {
    font-size: 12px;
}

.contact-form .policy label {
    display: flex;
    gap: 0.5em;
}

.contact-form .policy input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.contact-form .policy input[type="checkbox"]:checked {
    accent-color: var(--purple);
}

.contact-form ::placeholder {
    color: var(--black);
    opacity: 1; /* Firefox */
}
  
.contact-form ::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--black);
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 1em;
}

span.wpcf7-form-control-wrap[data-name="oferta"] .wpcf7-form-control {
  display: flex;
  gap: 1em;
}

/* Buttons */

.buttons {
    display: flex;
    gap: 1em;
}

@media only screen and (max-width: 1024px) {
    .buttons {
        flex-direction: column;
        -ms-flex-direction: column;
    }
}

a.btn,
input.wpcf7-submit {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1em;
    outline: none;
    position: relative;
    padding: 12px 24px;
    border-radius: var(--btn-radius);
}

a.btn-line span:after {
    content: "";
    width: 18px;
    height: 1px;
    background-color: var(--white);
    -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;
}

a.btn-line:hover span:after {
    width: 32px;
}

a.btn-icon:after {
    content: "";
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;    
    -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;
}

a.btn-icon:hover:after {
    transform: rotate(90deg);
}

a.btn-white {
    background-color: var(--white);
    color: var(--black);
}

a.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    box-shadow: inset 0px 0px 0px 1px var(--white);
}

a.btn-white:after {
    background-image: url(../img/svg/top-right.svg);
}

a.btn-white:hover:after {
    background-image: url(../img/svg/top-right-wh.svg);
}

a.btn-dark,
input.wpcf7-submit {
    background-color: var(--black);
    color: var(--white);
}

input.wpcf7-submit {
    margin-top: 40px;
    -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;
    border: 1px solid --black;
}

a.btn-dark:after {
    background-image: url(../img/svg/top-right-wh.svg);
}

a.btn-dark:hover,
input.wpcf7-submit:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
}

a.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

a.btn-primary:after {
    background-image: url(../img/svg/top-right-wh.svg);
}

a.btn-primary:hover {
    background-color: var(--black);
}

a.btn-stroke {
    border: 1px solid;
    background-color: transparent;
    box-sizing: border-box;
}

a.btn-stroke.btn-white:hover {
    background-color: var(--black);
    border-color: var(--black);
}

a.btn-text {
    padding: 0;
}

a.btn-text:after {
    background-image: url(../img/svg/top-right.svg);
}

a.btn-text-white:after {
    background-image: url(../img/svg/top-right-wh.svg);
}

.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); }
}

/* 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;
}

/* logo */

.logo {
    /* filter: brightness(0) invert(1); */    
    position: relative;
    z-index: 999;
    transition: filter 0.3s ease; /* Płynne przejście koloru */
}

@media only screen and (max-width: 1024px) {
    .logo img {
        width: 120px;
        height: 63px;
    }
    
}

.logo--white,
body.menu-open .logo{
    filter: brightness(0) invert(1); 
}

/* hero */

.hero.home {
    background-image: url(../img/home1.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

@keyframes pulseZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero.home h1 {
    font-size: clamp(40px, 21.5385px + 5.1282vw, 120px);
}

/* social */

.social {
    bottom: 1em;
    right: 0;
}

/* rotating text */

.rotating-svg {
    width: 200px;
    height: 200px;
    /* Animacja obracania całego SVG */
    animation: spin 10s linear infinite;
}

text {
    text-transform: uppercase;
    letter-spacing: 2px;
    fill: var(--white);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* badge */

.badge {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

/* scrollbar */

/* Stylizacja scrollbara */
::-webkit-scrollbar {
    width: 16px; /* Szerokość scrollbara */
  }
  
/* Stylizacja uchwytu scrolla */
::-webkit-scrollbar-thumb {
    background-color: var(--black); /* Kolor uchwytu */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px; /* Zaokrąglenie rogów */
}

/* Stylizacja tła scrollbara */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Kolor tła */
    border-radius: 10px; /* Zaokrąglenie rogów */
}

/* accordion */

ul.accordion-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 15px auto;
    cursor: pointer;
}

@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 {
    align-items: end;
    border-bottom: 1px solid;
}

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 li {
    list-style-type: disc;
    border: none;
    padding: 0;
}

ul.accordion-list .icon {
    flex: 0 0 auto;
}

/* podstawy animacji */
.accordion-list .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* rotacja ikony (opcjonalnie) */
.accordion-list .icon img {
  transition: transform 0.28s ease;
}
.accordion-list .item.active .icon img {
  transform: rotate(180deg);
}

ul.accordion-list .answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

ul.accordion-list .item.active .answer {
  max-height: 1000px; /* coś większego niż najwyższa odpowiedź */
  opacity: 1;
  visibility: visible;
}

/* footer */

footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

@media only screen and (max-width: 1024px) {
    footer .col:not(:first-of-type) {
        margin-top: 40px;
    }
}

/* grecaptcha-badge */

.grecaptcha-badge {
    display: none;
}

/* divider */

.dividerLogo {
    top: -4px;
}

@media only screen and (max-width: 1024px) {
    .dividerImage {
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }
}

/* offer */

@media only screen and (max-width: 1024px) {
    .offer .image {
        order: 1;
    }
}

/* project */

.project .hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.project .hero:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FFFFFF;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0.1) 0%, rgba(18, 21, 21, 0.5) 50%, rgba(255, 255, 255, 0) 100%)
}

/* sticky */

@media only screen and (min-width: 1025px) {
    .sticky {
        position: sticky;
        top: 102px;
        align-self: start;
        overflow: hidden;
    }
}