@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

:root {
  --color-brand: #231F20;
  --color-dark: #231F20;
  --color-black: #000;
  --color-white: #fff;
  --color-brand-light-bg: #F9F5ED;
  --grey: #707070;
  --color-body-bg: #F9F5ED;
  --color-body-text: #696767;
  --white: #ffffff;
  --card-hover-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  --body-font: "Cabinet Grotesk Regular";
  --heading-font: "Oswald", sans-serif;
  --transition: all .3s ease-in-out;
  --radius: 1.25rem;
  --header-stack-height: 40px;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  /* scroll-behavior: smooth;
  overflow-x: hidden; */
}

body {
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  color: var(--color-body-text);
}

.ff-heading {
  font-family: var(--heading-font);
  font-weight: 400 !important;
}

.ff-light {
  font-family: 'Cabinet Grotesk Light';
}

.fs-15 {
  font-size: 0.937rem;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.border {
  border-color: var(--border-color) !important;
}

.fw-medium {
  font-family: "Cabinet Grotesk Medium";
}

.round {
  border-radius: var(--radius);
}

.text-gray {
  color: #525252 !important;
}

.text-muted {
  color: #ADADAD !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-primary {
  background-color: var(--color-brand) !important;
}

.text-primary {
  color: var(--color-brand) !important;
}

.text-lime {
  color: var(--lime) !important;
}

.text-warning {
  color: var(--red) !important;
}

.text-dark {
  color: var(--color-dark) !important;
}

.text-justify {
  text-align: justify;
}

.bg-light {
  background-color: var(--color-brand-light-bg) !important;
}

.bg-gradient {
  background: rgba(228, 228, 228, 0.14) !important;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.fw-extrabold {
  font-weight: 800;
}

.link {
  color: var(--color-brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}

.link:hover {
  color: var(--color-dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--color-dark);
}

a:hover {
  color: var(--color-brand);
}

b,
strong {
  font-weight: 600;
}






/*--------- BRANDS PAGE STYLES --------*/
.hero__banner__wrapper {
  min-height: 550px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  .hero__banner__wrapper {
    min-height: 260px;
  }
}

.sticky__brand__item {
  top: 100px;
}

.brand__item__card {
  max-height: calc(100vh - 100px);
  overflow: hidden;
}






.brand__item__card .brand__logo {
  width: auto;
  max-height: 15rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

@media (max-width: 1700px) {
  .brand__item__card .brand__logo {
    max-height: 13rem;
  }
}

@media (max-width: 991px) {
  .brand__item__card .brand__logo {
    max-height: 10rem;
  }
}

@media (max-width: 575px) {
  .brand__item__card .brand__logo {
    max-height: 8rem;
    margin-bottom: 1rem;
  }
}

.brand__item__card .btn-primary {
  backdrop-filter: blur(11.8000001907px);
  border: 2px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.2509803922);
  text-transform: uppercase;
}

/* Keep card content inside container */
.brand__item__card {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.brand__item__card img.img-fluid {
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .brand__item__card {
    max-height: 100%;
    height: 600px;
  }

  .brand__item__card .fs-5 {
    font-size: 1rem !important;
  }
}

/* Brands cards scroll section */
.cards-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-white);
}

.cards-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
}

.card {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
  height: 85vh;
  max-height: 85vh;
  overflow: hidden;
}

.card .brand__item__card {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .brand__item__card > img {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .brand__item__card .position-absolute.d-flex {
  overflow: hidden;
  box-sizing: border-box;
}

.card .brand__item__card .position-absolute.d-flex > div {
  min-height: 0;
  max-height: 100%;
}