@charset "UTF-8";
.about-us-section {
  background: linear-gradient(106deg, #CC4002 0%, #F25700 100%);
}
.about-us-section .content {
  padding: 96px 0px;
}
@media screen and (max-width: 992px) {
  .about-us-section .content {
    padding: 40px 24px;
  }
}
.about-us-section .content .sm-title {
  color: #0A3055;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  display: flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #FFF;
  width: fit-content;
}
.about-us-section .content .title {
  color: #FFF;
  text-align: left;
  font-feature-settings: "liga" off;
  font-family: "Happy Season";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 66px */
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 32px;
}
.about-us-section .content .text {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding-bottom: 40px;
}
.about-us-section .content .text p {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.about-us-section .content .text b, .about-us-section .content .text strong {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.about-us-section .content .btn-one {
  text-decoration: none;
  width: fit-content;
  color: #FFF;
  font-feature-settings: "liga" off;
  font-family: "Happy Season";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  text-transform: uppercase;
  border-radius: 8px;
  background: #0A3055;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.about-us-section .content .btn-two {
  text-decoration: none;
  width: fit-content;
  color: #0A3055;
  font-feature-settings: "liga" off;
  font-family: "Happy Season";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  text-transform: uppercase;
  border-radius: 8px;
  background: #FFF;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.about-us-section .content .btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.about-content {
  width: 100%;
  display: grid;
  grid-template-columns: 564px 1fr;
  gap: 64px;
}

.images-about-us {
  display: flex;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .images-about {
    display: none;
  }
}

.column {
  width: 278px;
  height: 800px; /* Výška podle viewportu */
  overflow: hidden;
  position: relative;
  max-height: 100%;
}

.image-list {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media screen and (max-width: 992px) {
  .image-list {
    display: none;
  }
}

.column:first-child .image-list {
  animation-name: scrollUp;
}

.column:last-child .image-list {
  animation-name: scrollDown;
}

.image-list img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  min-height: 200px;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */
