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

* {
  margin: 0;
}



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;


}

#banner-video {

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


nav {

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


}

.nav-image {

  width: 300px;
  padding: 30px;

}

.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: 3px;
  text-overflow: ellipsis;
}

.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;

}

.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;
  width: 100%;
  /* outline: red solid 1px; */
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: center;
  height: auto;

}

.promotions {

  display: flex;
  width: clamp(500px, 80%, 1920px);
  /* outline: blue solid 3px; */
  height: auto;
  justify-content: center;
  flex-direction: column;
}

.new-products,
.latest-promotions,
.ao-core,
.product-updates {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
}

.rectangular-promo-image {

  height: auto;
  width: auto;
  max-height: 300px;

  outline: black solid 1px;

}

.square-promo-image {

  /* max-width: 250px; */
  height: auto;
  width: auto;
  max-height: 300px;
  /* max-inline-size: 225px; */
  outline: black solid 1px;

}

.rectangular-promo-item {
  width: 30%;
  /* height: 250px; */
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promotion-type-title {

  text-align: center;
  font-size: 40px;
  font-weight: 600;


}

.promotion-group {

  padding-bottom: 50px;

}



.square-promo-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (max-width: 768px) {

  .nav-title {
    font-size: calc(4vw);
    padding-right: 15px;
  }

  .nav-image {
    width: 50%;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 25px;
    padding-right: 10px;
  }

  .banner-caption {

    font-size: 25px;

  }

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

  }

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

  .promotion-type-title {

    font-size: 30px;

  }

  .promotion-caption {

    display: flex;
    padding-left: 10px;

  }

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

  .square-promo-item {
    width: 47.5%;
    margin-bottom: 20px;
   
  }

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

  .square-promo-image {

    width: auto;
    max-height: 200px;

  }

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

}

.product-updates {
  gap: 5%;
}

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


}