:root{
  --main-color:#EC6737;
  --secondary-color:#1F3949;
  --accent-dark-color:#1571A1;
  --fancy-font:'Cinzel', serif;
  --white-text:#f2f2f2;
}


body, html{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-size: 18px !important;
    /* overflow:hidden; */
}
.maincontent{
    max-width:100%;
    padding:0;
    margin:0;
}
.maincontent_wrapper{
    padding-top:0;
}
h1{
  font-size:2.8rem;
}
.maincontent h1,h2,h3,h4,h5{
  font-family:var(--fancy-font);
  margin:0;
  padding:0
}
.maincontent p{
  font-family:'Poppins', sans-serif;
}

#main-wrapper{
  position: relative;
}
img{
  width:100%;
}
.my-container{
  max-width:90%;
  padding: 2%;
  margin:0 auto;
}
.hero-container{
  max-width:80%;
  padding: 2%;
  margin:0 auto;
}
.my-header{
  text-align: center;
}
.my-hr{
  max-width:600px;
}
.highlight{
  color:var(--main-color)
}
.mt{
  margin-top:15px;
}
.document-link{
  color:var(--main-color);
}
.document-link:hover{
  color:var(--accent-dark-color);
  text-decoration: none;
}
.document-link:hover .link-arrow{
  transform:translateX(5px);
  transition:.3s;
}
.link-arrow{
  display:inline-block;
  transition:.3s;
}
#hero{
  background-image: url('/imageserver/Reusable/brava-tile23/shake-hero-min.png');
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center;
  height:clamp(200px, 25vw, 600px);
}

#hero-container{
  position: relative;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content: center;
  height:clamp(200px, 25vw, 600px);
}
#hero-text{
  max-width:400px;
  color:var(--white-text);
  background-color:var(--secondary-color);
  padding:4% 3%;
}

.main-image{
  max-width:68%;
  max-height:400px;
  order:2;
}
.my-row{
  display:flex;
  flex-direction:row;
  justify-content: space-between;
  align-items: center;
  margin:20px 0;
  flex-wrap:wrap;
  max-height:400px;
  overflow:hidden;
  margin:0 auto;
}
.flex-group{
  display:flex;
  flex-direction:row;
  justify-content: space-between;
  align-items: flex-start;
  margin:20px 0;
  flex-wrap:wrap;
}
.flex-item{
  max-width:200px;
  display:flex;
  flex-direction: column;
  margin:0 auto 20px;
  justify-content: center;
  align-items: center;
  padding:0 5px;
}
.product-text{
  max-width:28%;
  order:1;
}
.flex-item{
  display:flex;
}
#product-description{
  margin-top:10px;
}
.product-swatch img{
  padding:3px;
}
.product-swatch img:hover{
  outline:2px solid var(--main-color);
}
.compare{
  background-color:var(--secondary-color);
  color:var(--white-text);
  padding:3% 0 100px;
}
.compare-grid{
  display:grid;
  grid-template-columns: 48% 4% 48%;
  gap:50px;
}
.compare-image{
  max-width:600px;
  margin:-100px auto 0;
}
.list-title{
  font-weight:600;
}
.vert-line{
  position: relative;
}
.vert-line::before{
  content:"";
  position: absolute;
  height:100%;
  width:2px;
  margin:0 auto;
  text-align: center;
  background-color:var(--secondary-color)
}

/* ========= Media Queries ============ */
@media screen and (max-width:992px) {
  body, html{
    font-size: 16px !important;;
  }
  .my-row{
    overflow:visible;
    max-height:100%;
  }
  .main-image{
    margin:0 auto;
    min-width:550px;
    order:1;
  }
  .product-text{
    margin-top:20px;
    min-width:250px;
    max-width:100%;
    text-align: center;
    order:2;
  }
  .compare-grid{
    display: block;
  }
  .vert-line{
    height:20px;
    margin:20px;
  }
  .vert-line::before{
    content:"";
    position: absolute;
    height:1px;
    width:100%;
    margin:0 auto;
    text-align: center;
    background-color:var(--secondary-color)
  }
}
@media screen and (max-width:600px) {
  body,html{
    font-size:14px!important;
  }
  #hero-text p{
    display:none;
  }
  #hero-container{
    align-items:flex-end;
    justify-content: center;
    height:clamp(200px, 25vw, 600px);
  }
  .main-image{
    min-width:1px;
  }
}