@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
  color: #1D1D1F;
  margin: 0;
  padding: 0;
}
h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}
h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
}
h3.light {
  font-weight: 200;
}
h3.bold {
  font-weight: 700;
}
p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #424244;
  margin: 0;
}
p.light {
  font-weight: 300;
}
p.bold {
  font-weight: 700;
}
p.small {
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}
small {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
}
small.italic {
  font-style: italic;
}
@media (max-width: 960px) {
  .mobile-display-none {
    display: none !important;
  }
}
.scroll-indicator {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.icon-arrow-right.indicator {
    position: absolute;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: #FFFFFF;
    padding: 17px;
    border-radius: 100%;
    color: #424244;
    z-index: 1;
    transform: rotate(-90deg);
    box-shadow: 
        -283px 0px 113px rgba(0, 0, 0, 0.01), 
        -159px 0px 96px rgba(0, 0, 0, 0.05), 
        -71px 0px 71px rgba(0, 0, 0, 0.09), 
        -18px 0px 39px rgba(0, 0, 0, 0.1); 
}

.icon-arrow-right.indicator.show {
    opacity: 1;
    pointer-events: auto;
}

.circle-progress {
    transform: rotate(-90deg);
    z-index: 2;
}

.progress {
    transition: stroke-dashoffset 0.3s ease;
}



/*loading*/
.loadingScreen {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100vh;
  background-color: #F0F0F1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lds-roller {
  /* change color here */
  color: #1c4c5b
}
.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: black;
  margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
}

/*fade*/
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}




/* Header style */
@media (min-width: 769px) {
  header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Logo */
.logo {
  font-size: 60px;
}
.logo a {
  text-decoration: none;
  color: #1D1D1F;
  transition: 0.3s ease;
}
.logo a:hover {
  opacity: .8;
}

/* Nawigacja po środku */
header .nav-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  text-align: center;
}

header .nav-links a {
  text-decoration: none;
  color: #1D1D1F;
  font-size: 18px;
  font-weight: 300;
  box-shadow: inset 0 0 0 0 #1D1D1F;
  color: #1D1D1F;
  margin: 0 -.25rem;
  padding: 0 .25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}
@media (min-width: 768px) {
  header .nav-links a:hover {
    box-shadow: inset 100px 0 0 0 #1D1D1F;
    color: white;
  }
}
header .nav-links a.active:hover {
  box-shadow: none;
  color: #1D1D1F;
}
header .nav-links a.active {
  font-weight: 600;
}
header .social-icons a {
  text-decoration: none;
}
header .social-icons a span {
  text-decoration: none;
  color: #1D1D1F;
  font-size: 27px;
  transition: 0.3s ease;
}
header .social-icons a span:hover {
  text-decoration: none;
  color: #1D1D1F;
  opacity: .8;
}


/* Ikony po prawej */
header .social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

header .social-icons span {
  font-size: 20px;
  cursor: pointer;
}

header .social-icons span:hover {
  color: #0077cc;
}

/* Responsywność - dla mniejszych ekranów */
@media (max-width: 768px) {
  .col-2.logo {
    text-align: center;
  }
  .row {
    display: block;
  }

  .logo, .nav-links, .social-icons {
    display: block;
    width: 100%;
  }

  .nav-links {
    padding-bottom: 15px;
  }

  .nav-links a {
    margin: 0 10px;
  }
  header .social-icons {
    display: none;
  }
  .col-3.logo {
    margin-bottom: 0;
  }
}

/*jumbo*/
.main-page .jumbo {
  margin-top: 40px;
}
.main-page .jumbo p {
  padding-top: 10px;
}
.main-page .jumbo img {
  border-radius: 7px;
}
@media (max-width: 768px) {
  .main-page .jumbo h1, .main-page .jumbo {
    margin-top: 10px;
  }
  .main-page .jumbo img {
    margin-top: 10px;
  }
}
@media (min-width: 960px) {
  .jumbo .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*clients*/
section.clients {
  margin-top: 80px;
}
@media (max-width: 768px) {
  section.clients {
    margin-top: 40px;
  }
}
.main-page .clients .col-3 {
  background: #F0F0F1;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 115px;
  box-sizing: border-box;
  margin-bottom: 18px;
}
.main-page .clients .col-3 img {
  max-height: 55px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(1);
  transition: 0.3s ease;
}
.main-page .clients .col-3 img:hover {
  filter: grayscale(0);
}
section.cases .col-6 {
  margin-bottom: 18px;
}
section .box {
    transition: 0.6s ease;
    min-height: 512px;
}
@media (max-width: 1200px) {
  section .box {
      min-height: 452px;
  }
}
@media (max-width: 460px) {
  section .box {
      min-height: auto;
  }
}
section.cases {
  margin-top: 80px;
}
section.cases .box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  cursor: pointer;
  border-radius: 7px;
}
section.cases .box.mobica {
  cursor: auto;
}
section.cases .box:hover .icon-arrow-right {
  background: #fff;
  color: #000;
  border-color: #fff;
}
section.cases .box.texecom {
  background: linear-gradient(306.44deg, #009BE3 0%, #008DCF 100.42%);
}
section.cases .box.skoda {
  background: linear-gradient(306.17deg, #429469 0%, #2D6B4A 100%);
}
section.cases .box.puma {
  background: linear-gradient(306.17deg, #AE946D 0%, #987E57 100%);
}
section.cases .box.mobica {
  background: linear-gradient(305.94deg, #027DBB -0.5%, #0077B4 100%);
}
section.cases .box .left-content {
    text-align: left;
    display: block;
    width: calc(70% - 40px);
    padding: 30px 0 0 40px;
}

section.cases .box .left-content h2 {
    font-size: 24px;
    margin:0;
    color: #fff;
    font-weight: 400;
}
section.cases .box .left-content p {
  color: #fff;
  font-weight: 300;
  margin: 10px 0 0 0;
  line-height: 24px;
}

section.cases .box .left-content .light {
    font-size: 16px;
    color: #777;
}

section.cases .box .right-content {
    text-align: right;
    width: calc(30% - 40px);
    padding: 30px 40px 0 0 ;
}

section.cases .box .icon-arrow-right {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 47px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    transform: rotate(-45deg);
    font-size: 27px;
    transition: 0.3s ease;
}

section.cases .box .image-container {
    width: 100%;
    margin-top: 1rem;
    display: flex;
}

section.cases .box .image-container img {
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
  section.cases {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .gray {
    filter: grayscale(0.2);
  }
  .contrast {
    filter: contrast(102%);
     -webkit-transform:scale(1.03);
     -moz-transform:scale(1.03);
     -o-transform:scale(1.03);
     transform:scale(1.03);
   }
}


/*footer*/
footer {
  background: #000;
  color: #fff;
  margin-top: 80px;
  padding: 28px 0;
}
footer a {
  color: #fff;
  opacity: .85;
  transition: 0.3s ease;
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
}
footer a:hover {
  opacity: 1;
}
footer .logo h3 {
  margin: 10px 0 0 0;
}
footer .logo a {
  color: #fff;
  font-weight: normal;
  font-size: 42px;
}
footer .logo a:hover {
  opacity: 1;
}
footer .social-icons a {
  font-size: 27px;
  margin: 0 10px 0 0;
}
footer .contact a, footer .nav-links a {
  display: block;
  margin: 15px 0 0 0;
}
footer .line-footer {
  width: 100%;
  height: 1px;
  background: #424244;
  display: block;
  margin-bottom: 28px;
}
footer .col-12 {
  padding: 40px 0 0 0;
  text-align: center;
}
@media (max-width: 768px) {
  footer .logo h3 {
    margin: 0;
  }
  footer .social-icons a {
      margin: 0 5px 0 5px;
  }
}





/*about me*/
@media (min-width: 960px) {
  main.about-me .introduction .row .col-6 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
  }
  main.about-me .introduction .row, main.about-me .text .row {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  main.about-me .text {
      margin-top: 60px;
  }
  main.about-me .text:last-child {
      margin-top: 120px;
  }
}
@media (min-width: 960px) {
  main.about-me .text {
      margin-top: 60px;
  }
  main.about-me .text:last-child {
      margin-top: 120px;
  }
}
@media (max-width: 960px) {
  main.about-me .text {
      margin-top: 20px;
  }
  main.about-me .text:last-child {
      margin-top: 60px;
  }
}
.about-me .introduction {
  background: #F5F5F7;
  padding:125px 0 80px 0;

}
header.about-me {
  margin-bottom: -94px;
}
@media (max-width: 768px) {
  header.about-me {
    margin-bottom: -148px;
  }
}
.text .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.text .col-6 {
    grid-column: span 6;
}

.text .col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .text .row {
        grid-template-columns: 1fr;
    }

    .text .col-text {
        order: 1;
    }

    .text .col-image {
        order: 2;
    }

    .text .col-image img {
        width: 100%;
        height: auto;
    }
}
main.about-me p.bold {
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1D1D1F;
}
main.about-me p, main.about-me h2 {
  color: #424244;
}
main.about-me span.icon-arrow-right {
  background: #FFFFFF;
  transform: rotate(180deg);
  padding: 17px;
  cursor: pointer;
  border-radius: 100%;
  font-size: 28px;
  display: inline-block;
  transform: rotate(90deg);
  color: #424244;
  margin-top: 30px;
  box-shadow: 
      283px 0px 113px rgba(0, 0, 0, 0.01), 
      159px 0px 96px rgba(0, 0, 0, 0.05), 
      71px 0px 71px rgba(0, 0, 0, 0.09), 
      18px 0px 39px rgba(0, 0, 0, 0.1);

}
main.about-me .introduction .col-12 {
  text-align: center;
}































