body,
html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size:18px;
}

.maincontent {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.maincontent_wrapper {
    padding-top: 0;
}

img {
    width: 100%;
}
#hero h1{
  font-size:clamp(33px, 3vw, 60px);
  font-weight:700;
}
#hero h3{
  font-weight:300;
  margin:0;
}
#hero{
  background-image: url('/imageserver/Reusable/gaf-canada23/hdr-roofingshingles_2021.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position:center;
  min-height:350px;
  display:flex;
  align-items: center;
}
#hero-content{
  color:#fff;
  padding-left:2rem;
  font-family: 'Raleway', sans-serif;
}
.title{
  font-family: 'Raleway', sans-serif;
  font-weight:700;
  font-size:1.3rem;
}
.subtitle{
  font-family: 'Raleway', sans-serif;
  font-size:1.2rem;
}
.product-header{
  background-color: #E3E3E3;
  padding:1% 2%;
  margin-block:2%;
}
.products{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content: space-evenly;
}
.product-box{
  position: relative;
  margin:10px 5px;
}
.product-image{
  max-width:300px;
}
.product-content{
  position: absolute;
  top:5%;
  left:5%;
  color:#fff;
}
.product-content span{
  display:block;
}
.btn-wrapper{
  position: absolute;
  /* height:45px;*/
  bottom:0; 
  opacity: 0;
  display:block;
  width:100%;
  transition:.3s;
}
.btn{
  display:block;
  background-color:rgba(0,0,0,0.5);
  color:#fff;
  font-size:1rem;
  padding-block:.7rem;
  text-align: left;
  padding-left:-10px;
  font-weight:500;
}
.arrow{
  margin-left:2px;
}
.btn:hover .arrow {
  transform: scale(1.2);
  margin-left:3px;
  transition:.2s;
}
.product-box:hover .btn-wrapper{
  opacity: 1;
  transition:.3s;
}
.btn a:hover{
  text-decoration: none;
}

@media screen and (max-width:762px) {
  #hero-content{
    text-align: center;
    padding:0 4%;
  }
  #hero h3{
    font-size: 18px;
  }
  .product-header{
    text-align: center;
  }
}