:root {
  --header-height: 75px;
}
@font-face {
  font-family: "openSans-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/open-sans/OpenSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/open-sans/OpenSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/open-sans/OpenSans-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/open-sans/OpenSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Thin";
  font-style: normal;
  font-weight: 100;
  src: url("/assets/font/IvyMode/IvyMode-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/IvyMode/IvyMode-Light.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/IvyMode/IvyMode-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/IvyMode/IvyMode-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/IvyMode/IvyMode-Bold.woff2") format("woff2");
}
.brands {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 65px 0 0 0;
}
.brands__title {
  align-self: center;
  margin-bottom: 74px;
  padding: 0 20px;
  max-width: 600px;
  text-align: center;
}
.brands__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 146px;
  border-top: 1px solid #d9d9d9;
  overflow: hidden;
  user-select: none;
}
.brands__items {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  width: max-content;
  height: 100%;
  animation: 30s slide infinite linear;
}
.brands__item {
  margin: 0 50px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --header-height: 101px;
  }
  .brands {
    padding: 120px 0 0 0;
  }
  .brands__title {
    margin-bottom: 74px;
    padding: 0;
  }
  .brands__content {
    height: 184px;
  }
}