/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url("https://fonts.googleapis.com/css2?family=Bowlby+One&family=Inter:wght@300;400;500;700&display=swap");
/* line 5, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* line 5, ../../sass/partials/_scroll.scss */
.carousel-container {
  min-height: 420px;
  position: relative;
}

/* line 9, ../../sass/partials/_scroll.scss */
.card-stack {
  width: 100%;
  max-width: 93%;
  height: 250px;
  position: absolute;
  margin: 20px auto;
}
/* line 16, ../../sass/partials/_scroll.scss */
.card-stack .buttons {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.46);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  left: 0;
  top: 55%;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 35px;
  text-decoration: none;
  font-size: 22px;
  z-index: 100;
  outline: none;
  transition: all 0.2s ease;
}
/* line 34, ../../sass/partials/_scroll.scss */
.card-stack .buttons:hover {
  transform: scale(1.3, 1.3);
}
/* line 39, ../../sass/partials/_scroll.scss */
.card-stack .prev {
  left: 15px;
  right: auto;
}
/* line 44, ../../sass/partials/_scroll.scss */
.card-stack .next {
  left: auto;
  right: 15px;
}
/* line 49, ../../sass/partials/_scroll.scss */
.card-stack .carousel .buttons:hover {
  color: #c01313;
  background: #fff;
}
/* line 54, ../../sass/partials/_scroll.scss */
.card-stack .card-list {
  width: 300px;
}
/* line 57, ../../sass/partials/_scroll.scss */
.card-stack .card-list .card {
  background-size: cover;
  background-position: center;
}
/* line 62, ../../sass/partials/_scroll.scss */
.card-stack .card-list__image {
  height: 200px;
}
/* line 66, ../../sass/partials/_scroll.scss */
.card-stack .card-list__text {
  color: #fff;
  font-weight: 300;
}
/* line 70, ../../sass/partials/_scroll.scss */
.card-stack .card-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 100ms ease-in-out;
  border-radius: 10px;
  position: absolute;
  list-style: none;
  height: 300px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  -webkit-box-shadow: 0 2px 15px 1px rgba(225, 225, 225, 0.5);
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.5);
}
/* line 86, ../../sass/partials/_scroll.scss */
.card-stack .card-list li:nth-child(1) {
  top: 24px;
  width: 60%;
  /* animation: scaleCard 100ms; */
}
/* line 91, ../../sass/partials/_scroll.scss */
.card-stack .card-list li:nth-child(2) {
  top: 36px;
  width: 70%;
}
/* line 95, ../../sass/partials/_scroll.scss */
.card-stack .card-list li:nth-child(3) {
  top: 48px;
  width: 80%;
}
/* line 99, ../../sass/partials/_scroll.scss */
.card-stack .card-list li:nth-child(4) {
  top: 60px;
  width: 90%;
}
/* line 103, ../../sass/partials/_scroll.scss */
.card-stack .card-list li:nth-child(5) {
  top: 72px;
  width: 100%;
}
/* line 111, ../../sass/partials/_scroll.scss */
.card-stack:hover > .buttons.prev {
  display: block;
  animation: bounceInLeft 200ms;
}
/* line 116, ../../sass/partials/_scroll.scss */
.card-stack:hover > .buttons.next {
  display: block;
  animation: bounceInRight 200ms;
}

/* line 123, ../../sass/partials/_scroll.scss */
.transformThis {
  animation: scaleDown 500ms;
}

/* line 127, ../../sass/partials/_scroll.scss */
.transformPrev {
  animation: scaleUp 100ms;
  display: none;
}

@keyframes scaleUp {
  0% {
    transform: scale(1.2) translateY(50px);
    opacity: 0;
  }
  20% {
    transform: scale(1.15) translateY(40px);
    opacity: 0.1;
  }
  40% {
    transform: scale(1.1) translateY(30px);
    opacity: 0.2;
  }
  60% {
    transform: scale(1.05) translateY(20px);
    opacity: 0.4;
  }
  80% {
    transform: scale(1.01) translateY(10px);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  20% {
    transform: scale(1.01) translateY(20px);
    opacity: 0.8;
  }
  40% {
    transform: scale(1.05) translateY(40px);
    opacity: 0.4;
  }
  60% {
    transform: scale(1.1) translateY(60px);
    opacity: 0.2;
  }
  80% {
    transform: scale(1.15) translateY(80px);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.2) translateY(100px);
    opacity: 0;
  }
}
@keyframes scaleCard {
  0% {
    top: 5px;
  }
  100% {
    top: 24px;
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0);
  }
}
/* line 1, ../../sass/partials/_split_logo_scroll.scss */
.brand-list-container {
  height: calc(100vh - 105px);
  display: flex;
}
/* line 5, ../../sass/partials/_split_logo_scroll.scss */
.brand-list-container .bl-title {
  display: flex;
  align-items: center;
}
/* line 9, ../../sass/partials/_split_logo_scroll.scss */
.brand-list-container .bl-logo-container {
  display: flex;
  flex: 1;
}
/* line 13, ../../sass/partials/_split_logo_scroll.scss */
.brand-list-container .bl-logo-container .bl-logo-list {
  display: flex;
  position: relative;
  flex: 1;
  overflow: hidden;
}
/* line 19, ../../sass/partials/_split_logo_scroll.scss */
.brand-list-container .bl-logo-container .bl-logo-list .marquee-inner {
  flex: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: absolute;
}
/* line 26, ../../sass/partials/_split_logo_scroll.scss */
.brand-list-container .bl-logo-container .bl-logo-list .marquee-inner img {
  max-width: 300px;
}

/* line 33, ../../sass/partials/_split_logo_scroll.scss */
.marquee-item {
  width: 230px;
  height: 230px;
  display: block;
  margin: 10px;
  transition: all 0.2s linear;
  background: #00cc00;
}
/* line 41, ../../sass/partials/_split_logo_scroll.scss */
.marquee-item p {
  font-weight: 800;
  font-size: 30px;
  padding: 100px;
  font-family: cursive;
}

/* line 49, ../../sass/partials/_split_logo_scroll.scss */
.marquee-inner.to-left {
  top: 0;
  animation: marqueeTop 50s linear infinite;
}

/* line 53, ../../sass/partials/_split_logo_scroll.scss */
.marquee-inner.to-right {
  bottom: 0;
  animation: marqueeBottom 50s linear infinite;
}

@keyframes marqueeTop {
  from {
    top: 0;
  }
  to {
    top: -165%;
  }
}
@keyframes marqueeBottom {
  from {
    bottom: 0;
  }
  to {
    bottom: -165%;
  }
}
@media screen and (max-width: 1000px) {
  /* line 75, ../../sass/partials/_split_logo_scroll.scss */
  .brand-list-container {
    flex-direction: column;
  }
}
/* line 12, ../../sass/screen.scss */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #ffd4af;
  padding-top: 6.5rem;
}

/* line 19, ../../sass/screen.scss */
.text-bg-dark {
  color: #ffd4af;
}

/* line 23, ../../sass/screen.scss */
.dark-bg .navbar {
  background: #090000;
}

/* line 28, ../../sass/screen.scss */
.navbar-nav .nav-link {
  color: #ffd4af;
  padding: 16px !important;
}
/* line 32, ../../sass/screen.scss */
.navbar-nav .nav-link.active {
  color: #ed1c24;
  font-weight: bold;
}

/* line 39, ../../sass/screen.scss */
h1 {
  font-size: 64px;
  font-family: "Bowlby One", cursive;
  line-height: 115%;
}

/* line 45, ../../sass/screen.scss */
h4 {
  color: #ed1c24;
  font-weight: bold;
  text-transform: uppercase;
}

/* line 51, ../../sass/screen.scss */
p {
  line-height: 150%;
}

/* line 55, ../../sass/screen.scss */
.middle-align {
  display: flex;
  align-items: center;
}

/* line 60, ../../sass/screen.scss */
.dark-bg {
  background-color: #090000;
}
/* line 63, ../../sass/screen.scss */
.dark-bg .offcanvas-backdrop, .dark-bg .offcanvas {
  background-color: #090000;
}

/* line 68, ../../sass/screen.scss */
.grey-bg {
  background-color: #161314;
}

/* line 71, ../../sass/screen.scss */
.light-bg {
  background-color: #ffd4af;
  color: #090000;
}
/* line 75, ../../sass/screen.scss */
.light-bg .offcanvas-backdrop, .light-bg .offcanvas {
  background-color: #ffd4af;
}
/* line 80, ../../sass/screen.scss */
.light-bg .navbar {
  background: #ffd4af;
  color: #090000;
}
/* line 84, ../../sass/screen.scss */
.light-bg .navbar a, .light-bg .navbar a.nav-link {
  color: #090000;
}
/* line 88, ../../sass/screen.scss */
.light-bg .navbar a.active, .light-bg .navbar a.nav-link.active {
  color: #ed1c24;
}