.brand-history {
  background: transparent; 
  overflow: hidden;
  position: relative;
}

.brand-history > svg {
	position: absolute;
	width: 100%;
	height: auto;
	left: 50%;
	transform: translatex(-50%);
	top: 0;
}

.brand-history__running-text {
  font-family: Kenyan Coffee;
  font-weight: 400;
  font-style: Regular;
  font-size: 176.22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  transform: translateY(-20px);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.brand-history__running-text span {
  display: inline-block;
  padding-right: 60px;
  animation: runningText 15s linear infinite;
  color: #F15024;
}
@keyframes runningText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-102.5%);
  }
}
.brand-history__content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  margin: auto;
  gap: 40px;
  width: 100%;
  padding: 100px 0 140px 0;
}
.brand-history__texting {
  align-self: center;
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.brand-history__text {
  max-width: 486px;
  width: 100%;
  color: #3A3A3A;
}
.brand-history__button:hover {
	color: #3a3a3a;
}
.brand-history__gallery {
  display: flex;
  gap: 0px;
  overflow: hidden;
  position: relative;
}
.brand-history__gallery-single-image {
  width: 100%;
  max-height: 482px;
  height: 100%;
}
@media (max-width: 992px) {
  .brand-history__gallery-single-image {
    max-height: 140px;
  }
}
.brand-history__gallery-track {
  display: flex;
  gap: 0px;
  animation: galleryLoop 30s linear infinite;
}
@keyframes galleryLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-history__gallery-image {
  height: 180px;
  width: 180px;
  aspect-ratio: 1;
}
.brand-history__gallery-image img {
  width: 100%;
  height: 100%;
}
.brand-history__button {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 992px) {
	
.brand-history > svg {
	position: absolute;
	width: auto;
	height: 100%;
	left: 50%;
	transform: translatex(-50%);
	top: 0;
}
  .brand-history__running-text {
    font-family: Kenyan Coffee;
    font-weight: 400;
    font-style: Regular;
    font-size: 72px;
    leading-trim: NONE;
    line-height: 54px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    transform: translateY(0px);
  }
  .brand-history__running-text span {
    padding-right: 30px;
  }
  .brand-history__content {
    gap: 20px;
    padding: 60px 0 80px 0;
  }
  .brand-history__texting {
    gap: 40px;
    max-width: 205px;
  }
  .brand-history__text {
    max-width: 100%;
  }
  .brand-history__gallery-image {
    height: 94px;
    width: 94px;
  }
}/*# sourceMappingURL=style.css.map */