body,
html {
  height: 100%;
  scroll-behavior: smooth;
}

#tygrys {
  font-size: 0;
  margin: 0;
  padding: 0;

  transform: translateX(0%);
  animation-name: tygrys;
  animation-duration: 14s;
  overflow: hidden;

  background-color: blueviolet;
}

.crop1 {
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-color: aqua;
}

.crop1 img {
  width: 100%;
  margin: 0;
  transform: translateX(0%);
  animation-name: crop1;
  animation-duration: 14s;
}

.crop2 {
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-color: chartreuse;
}

.crop2 img {
  width: 100%;
  margin: 0;
  transform: translateX(-100%);
  animation-name: crop2;
  animation-duration: 14s;
  background-color: cyan;
}

@keyframes crop1 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes crop2 {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes tygrys {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.hero-image {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(29754664466d9d2488e2.jpg);

  width: 100%;
  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.trackmania-hero-image {
  background-image:
          linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
          url(c061f97ca33c75657426.jpg);
}
.smile-hero-image {
  background-image:
          linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
          url(4ac25c12d534c940e879.jpg);
}

.dialogflow-hero-image {
  background-image:
          linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
          url(6ffa3e3377edf80b28be.png);
}


.hero-text {
  text-align: center;
  position: relative;
  color: white;

  animation: hero-anim 1s;
}

@keyframes hero-anim {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  20% {
    transform: translateY(70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.loader1 {
  position: fixed;
  z-index: 2;
  top: -200px;
  left: 0;
  border: 14px solid #f3f3f3;
  border-top: 14px solid #3498db;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin1 3s;
}

.loader2 {
  position: fixed;
  z-index: 2;
  top: -200px;
  left: 0;
  border: 12px solid #f3f3f3;
  border-top: 12px solid #6734db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin2 3s;
}

.loader3 {
  position: fixed;
  z-index: 2;
  top: -200px;
  left: 0;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3474db;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  animation: spin2 3s;
}

.blur {
  animation: blur cubic-bezier(1, -0.2, 0.78, 0.4) 3s;
}

@keyframes spin1 {
  0% {
    transform: translate(-50%, -50%) rotate(0);
    top: 50%;
    left: 50%;
  }
  50% {
    transform: translate(-50%, -50%) rotate(340deg);
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    top: 50%;
    left: 50%;
    opacity: 0;
  }
}

@keyframes spin2 {
  0% {
    transform: translate(-50%, -50%) rotate(0);
    top: 50%;
    left: 50%;
  }
  50% {
    transform: translate(-50%, -50%) rotate(-340deg);
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
    top: 50%;
    left: 50%;
    opacity: 0;
  }
}

@keyframes blur {
  from {
    filter: blur(10px);
  }
  to {
    filter: blur(0px);
  }
}

.img-container {
  position: relative;
  margin: 0 auto;
}

.img-container .content {
  position: absolute; /* Position the background text */
  bottom: 0; /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1; /* Grey text */
  width: 100%; /* Full width */
  padding: 20px; /* Some padding */
}

* {
  box-sizing: border-box;
}

.img-comp-container {
  position: relative;
  height: 100%; /*should be the same height as the images*/
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}

.img-comp-img img {
  display: block;
  vertical-align: middle;
}

.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  background-color: #2196f3;
  opacity: 0.7;
  border-radius: 50%;
}

.img-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.83);
  color: whitesmoke;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: 1.5s opacity;
  z-index: 1;
}
.hover-img:hover {
  opacity: 1;
}

.heading {
}

@media (min-width: 40em) {
  .heading {
    font-size: 50px;
  }
}

@media (min-width: 60em) {
  .heading {
    margin-top: 7rem;
  }
}

img {
  -webkit-box-shadow: 0px 0px 28px -6px rgba(0, 0, 0, 0.59);
  -moz-box-shadow: 0px 0px 28px -6px rgba(0, 0, 0, 0.59);
  box-shadow: 0px 0px 28px -6px rgba(0, 0, 0, 0.59);
}

body,
html {
  font-family: "Poppins", sans-serif !important;
}

header {
  position: relative;
  overflow: hidden;
  height: 200vh;
}

.drfidget-hero-image {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(f3acf192ae3779dfcfc5.jpg);

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#flying-fidgets-container {
  width: 100%;
  height: 200vh;
}

.drfidget-hero-text {
  text-align: center;
  position: relative;
  color: white;

  animation: drfidget-hero-anim 1s;
}

@keyframes drfidget-hero-anim {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  20% {
    transform: translateY(70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.flier {
  pointer-events: none;
  position: absolute;
}

.flier > * {
  /* Adjust animation duration to change the element’s speed */
  animation: vibrate-3 10s linear infinite;
  pointer-events: none !important;
  z-index: 999999;
}

/* Keyframe values control where the element will begin
    and end its trajectory across the screen. Each rule
    represents a path the element follows across the screen. */

@keyframes fly {
  0% {
    transform: translateX(8px) translateY(10px) rotateZ(0deg);
  }

  15% {
    transform: translateX(-5px) translateY(-10px);
  }

  18% {
    transform: translateX(7px) translateY(-3px);
  }

  40% {
    transform: translateX(13px) translateY(-9px);
  }

  43% {
    transform: translateX(-5px) translateY(5px);
  }

  65% {
    transform: translateX(0px) translateY(0px);
  }

  68% {
    transform: translateX(-5px) translateY(4px);
  }

  100% {
    transform: translateX(0px) translateY(0px) rotateZ(360deg);
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2026-2-17 16:19:56
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation vibrate-3
 * ----------------------------------------
 */
@-webkit-keyframes vibrate-3 {
  0% {
    -webkit-transform: translate(0) rotateZ(0deg);
    transform: translate(0) rotateZ(0deg);
  }
  10% {
    -webkit-transform: translate(-2px, -2px) rotateZ(5deg);
    transform: translate(-2px, -2px) rotateZ(5deg);
  }
  20% {
    -webkit-transform: translate(2px, -2px) rotateZ(-5deg);
    transform: translate(2px, -2px) rotateZ(-5deg);
  }
  30% {
    -webkit-transform: translate(-2px, 2px) rotateZ(5deg);
    transform: translate(-2px, 2px) rotateZ(5deg);
  }
  40% {
    -webkit-transform: translate(2px, 2px) rotateZ(-5deg);
    transform: translate(2px, 2px) rotateZ(-5deg);
  }
  50% {
    -webkit-transform: translate(-2px, -2px) rotateZ(5deg);
    transform: translate(-2px, -2px) rotateZ(5deg);
  }
  60% {
    -webkit-transform: translate(2px, -2px) rotateZ(-5deg);
    transform: translate(2px, -2px) rotateZ(-5deg);
  }
  70% {
    -webkit-transform: translate(-2px, 2px) rotateZ(5deg);
    transform: translate(-2px, 2px) rotateZ(5deg);
  }
  80% {
    -webkit-transform: translate(-2px, -2px) rotateZ(-5deg);
    transform: translate(-2px, -2px) rotateZ(-5deg);
  }
  90% {
    -webkit-transform: translate(2px, -2px) rotateZ(5deg);
    transform: translate(2px, -2px) rotateZ(5deg);
  }
  100% {
    -webkit-transform: translate(0) rotateZ(-5deg);
    transform: translate(0) rotateZ(-5deg);
  }
}
@keyframes vibrate-3 {
  0% {
    -webkit-transform: translate(0) rotateZ(5deg);
    transform: translate(0) rotateZ(5deg);
  }
  10% {
    -webkit-transform: translate(-2px, -2px) rotateZ(-5deg);
    transform: translate(-2px, -2px) rotateZ(-5deg);
  }
  20% {
    -webkit-transform: translate(2px, -2px) rotateZ(5deg);
    transform: translate(2px, -2px) rotateZ(5deg);
  }
  30% {
    -webkit-transform: translate(-2px, 2px) rotateZ(-5deg);
    transform: translate(-2px, 2px) rotateZ(-5deg);
  }
  40% {
    -webkit-transform: translate(2px, 2px) rotateZ(5deg);
    transform: translate(2px, 2px) rotateZ(5deg);
  }
  50% {
    -webkit-transform: translate(-2px, -2px) rotateZ(-5deg);
    transform: translate(-2px, -2px) rotateZ(-5deg);
  }
  60% {
    -webkit-transform: translate(2px, -2px) rotateZ(5deg);
    transform: translate(2px, -2px) rotateZ(5deg);
  }
  70% {
    -webkit-transform: translate(-2px, 2px) rotateZ(-5deg);
    transform: translate(-2px, 2px) rotateZ(-5deg);
  }
  80% {
    -webkit-transform: translate(-2px, -2px) rotateZ(5deg);
    transform: translate(-2px, -2px) rotateZ(5deg);
  }
  90% {
    -webkit-transform: translate(2px, -2px) rotateZ(-5deg);
    transform: translate(2px, -2px) rotateZ(-5deg);
  }
  100% {
    -webkit-transform: translate(0) rotateZ(5deg);
    transform: translate(0) rotateZ(5deg);
  }
}

#flying-fidgets-container {
}

#flying-fidgets-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

#flying-fidgets-container img {
  box-shadow: none;
}

#historia {
  min-height: 100vh;
  background-color: #f7f9fc;
  border-top: solid #fe5f00 12px;
}

.text-dark {
  color: #2d2424 !important;
}

.header-lg {
  font-weight: bold;
  color: #2d2424;
}

.history-card h2 {
  font-weight: bold;
  color: #2d2424;
}

.history-card p {
  font-weight: normal;
  color: #6e6e6e;
}

.header-lg {
  font-weight: bold;
  color: #2d2424;
}

.text-lg {
  font-weight: normal;
  color: #6e6e6e;
}

.text-lg {
  font-weight: normal;
}

.history-section {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  width: 100%;
  min-height: 50vh;
}

.history-card {
  height: auto;
}

.history-img img {
  width: 100%;
  border-radius: 25% 35% 25% 35%;
  aspect-ratio: 35 / 30;
  object-fit: cover;
}

.b2b-img-container {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 25% 35% 25% 35%;
}

.b2b-img-container img {
  aspect-ratio: 35 / 30;
  object-fit: cover;
}
.hole-container {
}
.hole-top {
  height: 80px;
  width: 80px;
  background-color: white;
  border-radius: 50% 50% 0 0;
}
.hole-middle {
  height: 80px;
  width: 80px;
  background-color: white;
  border-radius: 0 0 0 0;
}
.hole-bottom {
  height: 80px;
  width: 80px;
  background-color: white;
  border-radius: 0 0 50% 50%;
}

@media (min-width: 992px) {
  .history-card {
   background: inherit;
    aspect-ratio: 30 / 35;
    border-radius: 35% 25% 35% 25%;
  }

  .header-lg {
    font-size: 48px;
  }

  .history-card h2 {
    font-size: 48px;
  }

  .history-card p {
    font-size: 24px;
  }

  .header-lg {
    font-size: 48px;
  }

  .text-lg {
    font-size: 24px;
  }

  .text-lg {
    font-size: 36px;
  }

  .drfidget-hero-image {
    height: auto;
    aspect-ratio: 30 / 35;
    border: solid rgb(242, 242, 242) 15px;
    box-shadow: -3px 3px 0px 10px #fe5f00;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(f3acf192ae3779dfcfc5.jpg);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 35% 25% 35% 25%;
  }

  header {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
}

@-webkit-keyframes slidein {
  0% {
    top: -400px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes slidein {
  0% {
    top: -400px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@-webkit-keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -400px;
    opacity: 0;
  }
}
@keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -400px;
    opacity: 0;
  }
}

main #scene {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
main #scene #left-zone {
  background: #fff;
  height: 75%;
  flex-grow: 0;
  display: flex;
  width: 350px;
  align-items: center;
  justify-content: left;
}
main #scene #left-zone .list {
  display: flex;
  list-style: none;
  align-content: stretch;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
main #scene #left-zone .list li.item input[type="radio"] {
  display: none;
}
main #scene #left-zone .list li.item input[type="radio"] ~ label {
  display: block;
  opacity: 0.5;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
main #scene #left-zone .list li.item input[type="radio"] ~ label:first-letter {
  text-transform: uppercase;
}
main #scene #left-zone .list li.item input[type="radio"] ~ label:hover {
  opacity: 0.75;
  cursor: pointer;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ label.label_orange:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-color: #f27935;
  border-radius: 100%;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ label.label_beige:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-color: #d0a060;
  border-radius: 100%;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ label.label_brown:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-color: #61351c;
  border-radius: 100%;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ label.label_yellow:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-color: #fafa33;
  border-radius: 100%;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ label.label_pink:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-color: #ff8499;
  border-radius: 100%;
}
main #scene #left-zone .list li.item input[type="radio"] ~ .content {
  position: absolute;
  left: 350px;
  top: -100%;
  width: 100%;
  height: 100%;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_orange
  .picto {
  height: 100%;
  width: 100%;
  background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/83067-200.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_orange
  h1 {
  color: #f27935;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_beige
  .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/53209-200.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_beige
  h1 {
  color: #d0a060;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_brown
  .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/14333-200.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_brown
  h1 {
  color: #61351c;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_yellow
  .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/9636-200.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_pink
  .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/9636-200.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_yellow
  h1 {
  color: #fafa33;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content.content_pink
  h1 {
  color: #ff8499;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]
  ~ .content
  h1:first-letter {
  text-transform: uppercase;
}
main #scene #left-zone .list li.item input[type="radio"] ~ .content p {
  max-width: 50%;
  text-align: center;
}
main #scene #left-zone .list li.item input[type="radio"]:checked ~ label {
  opacity: 1;
  -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]:checked
  ~ label.label_orange {
  color: #f27935;
  border-right: solid 4px #f27935;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]:checked
  ~ label.label_beige {
  color: #d0a060;
  border-right: solid 4px #d0a060;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]:checked
  ~ label.label_brown {
  color: #61351c;
  border-right: solid 4px #61351c;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]:checked
  ~ label.label_yellow {
  color: rgb(227, 206, 89);
  border-right: solid 4px #fafa33;
}
main
  #scene
  #left-zone
  .list
  li.item
  input[type="radio"]:checked
  ~ label.label_pink {
  color: #ff8499;
  border-right: solid 4px #ff8499;
}
main #scene #left-zone .list li.item input[type="radio"]:checked ~ .content {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
main #scene #middle-border {
  background-color: #eee;
  height: 75%;
  flex-grow: 1;
  max-width: 2px;
  z-index: 0;
}
main #scene #right-zone {
  background: #fff;
  height: 100%;
  width: 100%;
  flex-grow: 3;
}

.content img {
  box-shadow: none;
}

