body,
html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size:18px;
    font-family: "Poppins", sans-serif;
}

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

.maincontent_wrapper {
    padding-top: 0;
}

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

.font-thin {
  font-weight: 200;
}

.heavy {
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 30px;
}

.heavy-sm {

  font-weight: 900;
  text-transform: uppercase;
}
.thin {
  font-weight: 200;
}
.my-header{
  position: relative;
  margin-bottom:30px;
}
.my-header::after{
  position: absolute;
  content:"";
  height:2px;
  width:50%;
  background-image:linear-gradient(to right, #000 0%, rgba(0,0,0,0) 100%);
  bottom:-15px;
  left:0;
}

.hero {
  position: relative;
  min-height:200px;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero-content::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
}

#hero-logo {
  position: relative;
  display: inline-block;
  width: 10vw;
  max-width: 200px;
  margin: 3%;
}

.hero-tag {
  position: relative;
  text-align: center;
  /* color: #ececec; */
}

.heroTitle {
  display: inline-block;
  position: relative;
}

.heroTitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25%;
  height: 2px;
  width: 0;
  /* background-color: #ececec; */
  animation: sidelines .5s 1.5s linear forwards;
}

.heroTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25%;
  height: 2px;
  width: 0;
  /* background-color: #ececec; */
  animation: sidelines .5s 1.5s linear forwards;
}

.main-header {
  text-align: center;
  padding: 3% 15vw;
}
.section1 {
  position: relative;
  padding:0 2%;
}

.subTitle {
  margin-right:35px;
  font-size: 2rem;
  line-height: 55px;
  opacity:0;
}

.flex-group{
  display:flex;
  flex-direction:row;
  justify-content: space-between;
  flex-wrap:wrap;
  margin:0 auto;
  
}
.product-list{
  max-width:1800px;
  margin:0 auto;
  padding:3%;
}
.product-list-title{
  font-size: 2rem;
  font-weight: 200;
  margin-left: 5%;
  text-align:center;
  position: relative;
}

.product-list-title::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  height: 90%;
  width: 2px;
  background: #000;
}
.product-details {
  width:98%;
  background-color: #FAF6F0;
  padding:2%;
}
.product-list-heading{
  margin-top:30px;
}
.product-list-item {
  position: relative;
  z-index: 2;
  margin-block:20px;
  max-width: 45%;
  min-width:350px;
  display:flex;
  flex-direction:column;
  text-align: center;
}

.product-list-img {
  max-width: 250px;
  margin:0 auto;
}
.cta{
  border:1px solid #000;
  display:inline-block;
  padding:10px 20px;
  background-color: #5E9ABD;
  color:#fff;
  filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
  cursor:pointer;
  transition:.3s;
}
.cta:hover{
  transition:.3s;
  background-color: #50A0B4;
  filter:drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.deets{
  max-width:400px;
}
.maincontent ul li{
  list-style-type: decimal;
  text-align: left;
}
.deets-list{
  padding-top:20px;
}
.deets-list li{
  font-size:.9rem;
  font-weight:200;
  margin-block:5px;
}
.img-box img{
  max-width:200px;
}
.flex-item{
  text-align: center;
  max-width:400px;
}
.flat-flex-group{
  display:flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap:wrap;
}
.e-flex-group{
  display:flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap:wrap;
}
.e-flex-group .flex-item{
  max-width:500px;

}
.img-box{
  min-height:135px;
  display:flex;
  align-items: center;
  justify-content: center;
}

.heroTitle{
  display:inline-block;
  position: relative;
  transform:scale(0);
  animation: hero 1s linear forwards;
  -webkit-animation: hero 1s linear forwards;
}
.heroTitle::after{
  content: "";
  position: absolute;
  top:50%;
  right:-25%;
  height:2px;
  width:0;
  background-color:#000;
  animation: sidelines .5s 1.5s linear forwards;
  -webkit-animation: sidelines .5s 1.5s linear forwards;
}
.heroTitle::before{
  content: "";
  position: absolute;
  top:50%;
  left:-25%;
  height:2px;
  width:0;
  background-color:#000;
  animation: sidelines .5s 1.5s linear forwards;
  -webkit-animation: sidelines .5s 1.5s linear forwards;
}
.heroSubTitle{
  animation: hero 1s .1s linear forwards;
  -webkit-animation: hero 1s .1s linear forwards;
}
@keyframes hero {
  from{
      transform:scaleX(0);
  }
  to{
      transform:scaleX(1);
  }
}
@-webkit-keyframes hero {
  from{
      transform:scaleX(0);
  }
  to{
      transform:scaleX(1);
  }
}
@keyframes sidelines {
  to{
      width:25%;
  }
}
@-webkit-keyframes sidelines {
  to{
      width:25%;
  }
}

@media screen and (max-width:1100px) {
  .sub-title::before {
      height: 0;
      width: 0px;
  }
  .product-details{
      text-align:center;
      max-width:100%;
      padding:0 2%;
  }
}
@media screen and (max-width:992px) {
  .product-details{
      text-align:center;
  }
  .heroSubTitle{
    display:none;
  }
}
@media screen and (max-width:750px) {
  .flex-group{
    justify-content: center;
  }
  .hero{
    min-height:0;
  }
  .main-header{
    padding:3%;
  }
}
@media screen and (max-width:400px) {
  .heroTitle::after {
    display:none;
  }
  .product-list-title::before{
    display:none;
  }
  
  .heroTitle::before {
    display:none;
  }
  .heroTitle{
    font-size: 1rem;
  }
}