@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Cal+Sans&family=Lexend:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  line-height: 1.6;
  background: #ffffff;
  color: #333;
  font-family: "Lexend", sans-serif;
  width: 100%;
  padding: 2vw;
  font-size: 1.2rem;
  overflow-x: hidden;
}

body, header {
  margin: 0;
  padding: 0;
}

header {
  background:#931621;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 400px;
  font-family: "Cal Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer {
  background: #931621;
  color: white;
  text-align: center;
  padding: 10px;
  padding-left: 0px;
  width: 100%;
}

.seek{
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-to-top {
  background-color: #931621;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 35px;
  margin: 20px;
  cursor: pointer;
  border-radius: 7px;
}

/* Back Button */
.back-desktop{
  padding: 2px;
  position: absolute;
  background-color: #a7a7a7;
  border-radius: 3px;
  margin-top: 10px;
  margin-left: 10px;
  top: 0;
  left: 0;
}
.back-desktop:active {
  background-color: #ffffff;
  transform: translateY(2px);
  transform: scale(1.05); 
}
.back-mobile{
  display: none;
  position: absolute;
  background-color: #a7a7a7;
  border-radius: 3px;
  width: 100%;
  height: 60px;
  top: 0;
}
.back-mobile:active {
  background-color: #ffffff;
  transform: translateX(2px);
  transform: scale(1.05); 
}
@media (max-width:650px){
  .back-mobile{display: block;}
  .back-desktop{display: none;}
}
/* End of Back Button */
.uniform-welcome-desktop{display: block; font-size: 70px;}
.uniform-welcome-mobile{display: none;}
@media (max-width:650px){
    .uniform-welcome-desktop{display: none;}
    .uniform-welcome-mobile{display: block; font-size: 40px;}
}

/* Uniform page*/
.column-left{ 
  flex: 2;
  border-color: #ffffff;
}




/* FAQ */
.faq-beginning{
    display: block;
    margin: 100px;
    text-align: center;
    font-size: 30px;
}
.faq-container{
    display: flex;
    margin: 20px;
    flex-direction: row;
}
.faq-box-left, .faq-box-right{
    display: flex;
    flex: 1;
    margin: 10px;
      
    display: block;
    border: 2px solid black;
}
.f-b-l-text, .f-b-r-text{
    display: inline-block;
    margin: 10px;
    width: 80%;
}
@media (max-width:650px){
    .faq-container{flex-direction: column; margin: 10px;}
    .f-b-l-text, .f-b-r-text{font-size: 15px;}
    .faq-box-left, .faq-box-right{font-size: 13px;}
    .faq-beginning{font-size: 25px; margin: 10%;}
    hr{display: none;}
}
@media (max-width:800px){
    .uniform-left, .uniform-right{font-size: 10px;}
    .uniform-item-name{font-size: 20px;}
    .price{font-size: 20px;}
}


/* Uniform Page Image Slideshow
  th:nth-child(1), td:nth-child(1) { width: 20%; }
  th:nth-child(2), td:nth-child(2) { width: 20%; }
  th:nth-child(3), td:nth-child(3) { width: 20%; }
*/

.uniform-container {
  display: flex;
  flex-direction: row;
  margin: 60px;
  background-color: #bebebe;
  overflow-x: hidden;
}

.uniform-left, .uniform-right{
    display: flex;
    flex: 1;

    display: block;
    margin: 20px;
}

.uniform-item{
    display: flex;
    justify-content: space-between;
    font-size: 25px;
}
.price{
    font-weight: bold;
    margin-left: 10px;
}


.uniform-images-container{
    display: flex;
    flex-direction: row;
    margin: 20px;
}
.images-left, .images-right{
    display: flex;
    flex: 1;

    display: block;
}
@media (max-width: 650px){
    .uniform-images-container{display: none;}
    .uniform-left, .uniform-right{font-size: 9px;}
    .uniform-item{font-size: 13px;}
    .uniform-container{flex-direction: column; margin: 15px;}
}

.faq-link{
    font-size: 30px;
    margin-left: 100px;
    margin-right: 79%;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px;
    background-color: #cfcfcf;
}
.see-more{
    margin-left: 100px;
    font-size: 30px;
}
@media (max-width:650px){
  .see-more{margin-left:10px; font-size: 18px;}
}
@media (max-width:900px){
  .faq-link{
    font-size: 20px;
    margin: 0;
    text-align: center;
    margin-left: 100px;
    margin-right: 100px;
  }
}

.slideshow{
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.slideshow-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.slide-nav button {
  background-color: #9a1616;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
}

.slide-btn, .slide-dot {
  background-color: #9a1616;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slide-btn:hover, .slide-dot:hover {
  background-color: #333;
}

.slide-dot.active {
  background-color: #333;
}

.slideshowUniform {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  
  opacity: 1;
  transition: .5s ease;
}

.slide:hover .image {
  opacity: 0.3;
}

.slide:hover .uniform-price {
  opacity: 1;
}

.headerunif{
  font-size: 80px;
}

.price-text {
  background-color: #686868;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

.uniform-price {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: .5s ease;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.uniform-content {
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: rgba(0,0,0,0.4);
  padding: 5px 0;
  font-size: 1rem;
  font-weight: bold;
}