.content-container{
        width: 80%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
    }
.product-infomation-container{
  display: flex;
  flex-direction: column;
}
.product-infomation-container h2{
  text-align: center;
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
}
.prod-info-desc{
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}

.product-info{
  display: flex;
}
.product-info-tabs{
  width: 20%;
  border-right: 1px solid #ccc;
}
.product-info-content{
  width: 80%;
  padding-left: 40px;
}
.product-content{
  display: none;
  background-color: #fff;
  padding: 40px 30px;
}
.product-tab{
  color: #fff;
  opacity: .6;
  font-size: 18px;
  background-color: transparent;
  opacity .2s ease-in-out, background-color .2s ease-in-out;
  padding: 15px 20px;
  cursor: pointer;
}
.product-tab:hover{
  opacity: 1;
}
.product-tab.active{
  opacity: 1;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.3);
  border-right: 1px solid #fff;
  
}
.product-content.active{
  display: block;
}

@media(max-width: 1024px){
  .product-info{
    flex-direction: column;
    width: 100%;
  }
  .product-info-tabs{
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
  }
  .product-info-content{
    padding-left: 0px;
    width: 100%;
  }
  .product-info-tabs{
    border-right: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 24px;
  }
  .product-tab.active{
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .content-container{
    width: 90%;
  }
}