body>div.container>section {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

body>div.container>section .btn-dark {
  background-color: #343a40;
  border: none;
}

body>div.container>section .btn-dark:hover {
  background-color: #212529;
}

body>div.container>section .card {
  border-radius: 0.75rem;
  overflow: hidden;
}

body>div.container>section .blockquote-footer {
  color: #6c757d;
}

body>div.container>section footer.small {
  color: #adb5bd;
}

body>div.container>section .slider {
  position: relative;
  width: 100%;
  height: 50px;
}

body>div.container>section .slider .slide-track {
  display: flex;
  width: max-content;
  animation: scroll-infinite 40s linear infinite;
  position: relative;
}

body>div.container>section .slider .slide-track::after {
  content: attr(data-logos);
  display: flex;
}

body>div.container>section .slider .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  object-fit: contain;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

body>div.container>section .slider::before,
body>div.container>section .slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

body>div.container>section .slider::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa 40%, transparent);
}

body>div.container>section .slider::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa 40%, transparent);
}

body>div.container>section .slider .slide img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

body>div.container>section .slider .slide img:hover {
  filter: grayscale(100%);
}

body>div.container>section ul.nav.small li a {
  width: 40px;
  height: 40px;
}

body>div.container>section .card .card-img-overlay .blur-background {
  backdrop-filter: blur(2px);
}

body>section>h1.display-1.fw-bold.mt-auto.opacity-25.overflow-hidden.position-absolute.text-center.text-opacity-25.text-secondary.z-n1 {
  bottom: -35px;
  font-size: 12rem;
}

@media screen and (max-width: 768px) {
  body>section>h1.display-1.fw-bold.mt-auto.opacity-25.overflow-hidden.position-absolute.text-center.text-opacity-25.text-secondary.z-n1 {
    font-size: 8rem;
    bottom: -16px;
  }
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

body>div.container>section div.rounded.shadow-sm.photos {
  background: url('https://i.imgur.com/jSzLmN5.png') no-repeat center center/75px;
  width: 50px;
  height: 50px;
  transform: rotate(3deg);
  transition: .2s;
}

body>div.container>section div.rounded.shadow-sm.photos:not(.os):after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  right: -5px;
  top: -3px;
  background-color: var(--bs-teal);
}

body>div.container>section div.rounded.shadow-sm.photos.os {
  background: url('https://i.imgur.com/MXLLsgT.jpeg') no-repeat center center/cover;
}

body>div.container>section div.rounded.shadow-sm.photos:hover {
  transform: rotate(0deg);
}

section.py-3.d-flex.text-center.bg-light.justify-content-center.position-relative {
  box-shadow: 0 -4px 11px var(--bs-light);
}