*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  -webkit-user-drag: none;
  user-drag: none;
}



body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", "Roboto", "Sans Serif";
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

:root {

  --banner-height: 350px;
  --banner-height-mobile: 250px;

}

body {
  position: relative;
}


.montserrat-base {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nav-title {

  color: white;
  font-size: calc(1.0rem * 1.5);


}

.banner-video-container {

  display: flex;

}

.disclaimer {

  text-align: center;
  padding: 0px 5%;

}

#banner-video {

  object-fit: cover;
  width: 100%;
  height: var(--banner-height);
}


nav {

  background-color: black;
  display: flex;
  position: sticky;
  top: 0;
  height: 65px;
  width: 100%;
  align-items: center;
  z-index: 3;
  gap: 20px;

}

.nav-image-link {

  display: flex;
  height: 60%;
  /* max-width: 10%; */
  /* width: max-content; */
  padding-left: 30px;
  /* aspect-ratio: 525 / 121; */

}

.nav-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  /* aspect-ratio: 525 / 121; */

}

.last-updated {
  display: flex;
  justify-content: center;
  color: rgb(150, 150, 150);
}

.banner {

  position: relative;
  justify-content: center;

}

.banner-caption {

  text-align: center;
  width: 100%;
  color: white;
  font-size: 50px;
  font-weight: 500;

}

.promotion-caption {
  padding-left: 1px;
  text-overflow: ellipsis;
  width: max-content;
  font-size: 1.25rem * 1.1vw;
}

.banner-text {

  display: flex;
  flex-direction: column;
  position: absolute;
  width: 50%;
  height: var(--banner-height);
  top: 0px;
  left: 25%;
  /* outline: red solid 1px; */
  justify-content: space-evenly;

}

.nav-search {

  /* width: clamp(300px, 50%, 500px); */
  width: 100%;
  height: 45px;
  border-radius: 50px;
  /* margin: 20px; */
  font-size: 25px;

}

.nav-search::placeholder {
  /* color: rgb(200, 200, 200) */
  color: white;
}

.search-bar-container {

  /* outline: white solid 3px; */
  display: flex;
  gap: 15px;
  outline: white solid 5px;
  border-radius: 50px;
  align-items: center;

}

.search-image {
  width: 35px;
  height: 35px;
  position: relative;
  left: 10px;
}

input[type=search] {

  appearance: none;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  font-size: 40px;
  border-left-color: rgba(0, 0, 0, 0);
  border-right-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0);


}

input:focus {
  outline: none;

}

.promotions-container {

  display: flex;
  /* outline: red solid 1px; */
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: center;
  height: auto;
  flex-direction: column;

}

.promotion-group-title {

  font-size: 2rem;
  text-align: center;
  font-weight: 600;

}

.promotion-group {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;

}

.square-promo-image {
  object-fit: cover;
  width: 250px;
  height: 250px;
  outline: rgb(0, 0, 0, 0.2) solid 1px;
}

.square-promo-item {
  display: flex;
  flex-direction: column;
  width: min-content;
  margin-bottom: 20px;
}

.promotion-group-content {
  width: 80%;
  display: grid;
  grid-template-columns: 250px 250px 250px 250px;
  gap: 25px;
  /* justify-items: center; */
  justify-content: center;
  padding-bottom: 75px;
}

.search-link {
  width: max-content;
}

.redirects {
  display: flex;
  justify-content: center;
  gap: min(50px, 5%);
}

.help-redirect, .view-all-redirect {
  display: flex;
  justify-content: center;
}

.help-redirect a {
  text-align: center;
  font-size: 1.5rem;
}

.view-all-redirect a {
  text-align: center;
  font-size: 1.5rem;
}

.help-redirect a:link {
  color: white;
}

.view-all-redirect a:link {
  color: white;
}

.help-redirect a:hover {
  color: white;
}

.view-all-redirect a:hover {
  color: white;
}

.help-redirect a:visited {
  color: white;
}

.view-all-redirect a:visited {
  color: white;
}

.view-all-redirect a:active {
  color: white;
}

@media(max-width: 1298px) {

  .promotion-caption {
    font-size: 1.25rem;
  }

  .promotion-group-title {
    font-size: 1.5rem;
  }

}

@media (max-width: 1024px) {

  .help-redirect a {
    text-align: center;
    font-size: 1.10rem;
  }

  .view-all-redirect a {
    text-align: center;
    font-size: 1.10rem;
  }

  input[type=search] {
    font-size: 25px;
  }

  nav {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .nav-title {
    font-size: calc(4.9vw);
    /* padding-right: 15px; */
    width: 60%;
    text-align: center;

  }


  #banner-video {
    height: var(--banner-height-mobile);
  }

  .banner-caption {

    font-size: 25px;

  }

  .banner-text {
    left: 12.5%;
    width: 75%;
    height: var(--banner-height-mobile);
  }

  .nav-search::placeholder {
    /* font-size: 1.1rem; */
    /* font-size: 5vw; */
    padding-top: auto;
    padding-bottom: auto;
    height: 100%;
  }

  .nav-image-link {

    width: auto;
    height: auto;
    max-height: 60%;
    max-width: 25%;
    padding-left: 0px;

  }

  .promotions-container {

    width: 100%;

  }

  .promotion-caption {

    font-size: .9rem;
    text-overflow: ellipsis;
    overflow: hidden;
    /* line-height: normal; */
    /* white-space: nowrap; */
  }

  .square-promo-item {
    text-overflow: ellipsis;
  }

  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */

  .promotion-group-content {
    width: 100%;
    display: grid;
    gap: 0px;
    grid-template-columns: 50% 50%;
    justify-content: center;
    justify-items: center;
  }

  .square-promo-image {

    width: calc(45vw);
    height: calc(45vw);

  }

  .promotion-group-title {

    font-size: 20px;

  }



  /* 

  .promotion-type-title {

    font-size: 30px;

  }


  .promotion-caption {

    display: flex;
    padding-left: 10px;

  }

  .rectangular-promo-item {
    width: 100%;
  }

  .square-promo-item {
    width: 100%;

  }

  .rectangular-promo-image {
    width: 100%;
  }

  .square-promo-image {

    width: auto;
    height: auto;
    max-width: 50%;
    max-width: 50%;

  }

  .new-products,
  .latest-promotions,
  .ao-core,
  .product-updates {
    gap: 0px;

  }

  .product-updates {
    gap: 5%;
  } */





}