/* makes sizing simpler */

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

/* remove default spacing */
/* force styling of type through styling, rather than elements */

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* dark mode user-agent-styles */

html {
  color-scheme: dark light;
}

/* min body height */

body {
  min-height: 100vh;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-image: url(images/noise.png);
  background-repeat: repeat;
background-color: #fefaf0;
white-space:nowrap;
}

body.loaded {
  opacity: 1;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

a[href^="tel"] {
  text-decoration: none;
  color: white;
  }

h1 {
    
   
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 900;
    font-style: normal;
    text-wrap: balance;

   
}

h1.intro {
  color: #010150;
  text-transform: none;
  font-size: 3.5rem;;
  font-weight: 900;
  margin: 2rem 0;
}

h1.product-copy {
    font-size: 4rem;
    text-align: left;
    padding-bottom: .5rem;
    text-wrap: balance;

    
    
  }

  h1.product-copy.bozeman-breaks {
    font-size: 3rem;
    text-align: left;
    padding: 0 0;
    text-wrap: balance;
  }

  h1.footer-text {
    font-size: 1.5rem;
    text-align: center;
    padding: 2rem 0 1rem 0;
    text-wrap: balance;
    font-weight: 500;
  }



h2 {
    color: rgb(255, 255, 255);
    text-align:center;
    font-size: .75rem;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 900;
    font-style: normal;
    text-wrap: balance;
    text-transform: uppercase;
    padding: .5rem;
}

h2.hero-text {
  font-size: 1.5rem;
}

h2.red-underline {
  font-size: 1rem;
  padding: 1rem;
}

h2.intro {
  color: #000034;
  text-transform: none;
  font-size: 1.75rem;;
  font-weight: 200;
}

h2.product-copy {
  font-size: 1.5rem;;
  font-weight: 200;
  text-transform: uppercase;
  text-align: left;
  padding: 1rem 0 0 0;


}
h2.product-copy.bozeman-breaks {
  font-size: 1.25rem;;
  font-weight: 200;
  text-transform: uppercase;
  text-align: left;
  padding: 0rem;
}

h2.footer-text {
  font-size: 1.25rem;
  font-weight: 500;
  padding: .25rem 0;
}

h2.review-text {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1rem 0;;
}

span.red-underline {
  text-decoration: underline;
  text-decoration-color: #BE0707;
  text-underline-offset: 1rem;
  text-decoration-thickness: 3px;
 
}



h3 {
  color: rgb(255, 255, 255);
  text-align: left;
  font-size: .50rem;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-wrap: balance;
  text-transform: uppercase;
  padding: .5rem;
}

h3.product-copy {
  font-size: 1.75rem;
  text-align: left;
  padding: .5rem 0 0 0;
  text-transform: none;
  font-weight: 500;
}

h3.product-copy.bozeman-breaks {
  font-size: 1rem;
}

h1.product-copy.bozeman-breaks,
h2.product-copy.bozeman-breaks,
h3.product-copy.bozeman-breaks {
  color: #000034;
}

p {
   
  color: #000034;
  text-align: center;
  font-size: 1.5rem;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 200;
  font-style: normal;
  text-wrap: balance;
  padding: 0 1rem;;
}

p.review-text {
  padding: 2rem 3rem;
}

.review-text {
  color: #000034;
}

.review-text.large {
  font-size: 3rem;
}


/*Hero*/

.hero-content {
    max-width: 100%;
    margin: 0 1rem;
    padding: 2rem 1rem;
    text-align: center;
    background-image: url(images/bsc-storefront-website.jpg);
    background-image: no-repeat;
    background-size: cover;
    background-position: center;
   

    border-radius: 0 0 2rem 2rem;
    
}


.hero-container.footer {
  margin-top: 3rem;
  
}
 
.hero-content.footer {
  max-width: 100%;
  margin: 0 0;
  padding: 2rem 1rem;
  text-align: center;
  background-color: #000034;
  background-image:  linear-gradient(to bottom right,#000034, #03016e), url(images/noise.png);
  background-repeat: repeat;
  border-radius: 0;

}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.flex-center-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  padding: 1rem 0 0 0;
}

.logo-image {
  max-width: 15rem;
  padding-bottom: 1rem;
}


.social-icon {
  max-width: 3rem;
  padding: 0 .25rem .5rem .25rem;
}


/*Ticker*/

@keyframes ticker-kf {
  0% {
    transform: translateX(0);
  }

  100% {
    /* 10rem for each logo x 6 logos total = -60rem */
    transform: translateX(-60rem);
  }
}

.img-ticker {
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
  animation: ticker-kf 30s linear infinite;
  padding: 2rem 0;
}

.tickerlogo {
  width:auto;
  flex: none;
  margin: 0 3rem 0 3rem;
  align-self: flex-start;
  max-width: 100%;
  height: 3rem;
}

img.tickerlogo{
  max-height: 100px;
}

/*About*/
.about-container {
  max-width: 100%;
  margin: 0 1rem;
  padding: 2rem 0rem;
  text-align: center;
}

.about-content {
  max-width: 100%;
  
  text-align: left;
}

.content.footer {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1rem 0;
}

.content.footer.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Product Showcase */

.product-showcase {
  display:grid;
  grid-template-rows: .5fr 1fr;
  background-image: linear-gradient(to bottom right,#000034, #000063);
  justify-content: center;
  background-color: #000034;
  border-radius: 2rem;
  padding: 2rem 2rem 4rem 2rem;
  margin:  1rem;

}




/*Bozeman Breaks*/

.product-showcase.no-background {
  display:grid;
  grid-template-rows: 1fr .5fr;
  justify-content: center;
  background-image: url(images/noise.png);
  background-repeat: repeat;
background-color: #fefaf0;
  
  border-radius: 2rem;
  padding: 2rem 1rem 0 1rem;
  margin:  1rem;

}

.product-showcase.join-our-email {
  grid-template-rows: 1fr;
}

.product-img {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  
}



.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 1rem 0 0rem 0;
}

.product-copy.bozeman-breaks {
  padding-bottom: 0rem;
}

.fanatics-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #BE0707;
  border-radius: 50rem;
  margin: 3rem auto;
  padding: 1rem 2rem;
  text-decoration: none;
}

.fanatics {
  padding: 0 .5rem 0 0;
  height: 25px;
}



a.fanatics {
  text-decoration: none;
}

a.fanatics-link {
  text-decoration: none;;
}

/* Review Section*/

.review {
  margin: 8rem 0;
}


@media (min-width: 500px) {

  .product-showcase {
    display:grid;
    grid-template-rows: 1fr .5fr;
    background-image: linear-gradient(to bottom right,#000034, #000063);
  
    background-color: #000034;
    border-radius: 2rem;
    padding: 2rem 2rem 0 2rem;
    margin:  1rem;
  
  }

  .product-showcase.no-background {
    display:grid;
    grid-template-rows: 1fr;
    justify-content: center;
    background-image: url(images/noise.png);
    background-repeat: repeat;
    background-color: none;
    border-radius: 2rem;
    padding: 2rem 2rem 0 2rem;
    margin:  1rem;
  
  }

  .product-img.bozeman-breaks {
    padding: 1rem 1rem;
  }


}


@media (min-width: 1000px) {

  h1.intro {
    color: #010150;
    text-transform: none;
    font-size: 4rem;;
    font-weight: 900;
  }
  
  h1.product-copy.bozeman-breaks {
    color: #010150;
    text-transform: none;
    font-size: 4rem;;
    font-weight: 900;
  }

  h2.product-copy.bozeman-breaks {
    color: #010150;
    text-transform: none;
    font-size: 1.5rem;;
    font-weight: 500;
  }

  h3.product-copy.bozeman-breaks {
    color: #010150;
    text-transform: none;
    font-size: 1.25rem;;
    font-weight: 500;
  }

  .hero-content {
    margin: 0 10rem;
  }


  .about-container {
    max-width: 100%;
    margin: 0 1rem;
    padding: 2rem 15rem;
    text-align: center;
  }

  .about-content {
    margin: 0 5rem;
  }

  .content.footer {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .content.footer.center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 5rem 10rem;
    padding: 2rem 2rem 0 2rem;
    background-image: linear-gradient(to bottom right,#000034, #000063);
    background-color: #000034;
    border-radius: 2rem;
    
  }

  .product-showcase.join-our-email {
    padding: 3rem 2rem 3rem 2rem;
  }

  a.fanatics-link {
    padding: 0 3rem;
  }

  .product-copy {
    display: flex;
    flex-direction: column;
    align-items: left;
    align-self: center;

    padding: 0rem 0;
  }

.copy-wrapper {
  max-width: 30rem;
  padding: 0 0 0 2rem;
}

.copy-wrapper.join-our-email {
  max-width: none;
}


.product-img.bozeman-breaks {
  padding: 1rem 3rem;
}

}
