/*products*/

#hd .content-products{
  background: #000;
  overflow: hidden;
}
#hd .content-products h2{
  text-align: center;
  font-size: 3.5vw;
}
#hd .content-products h2 span{
  background: linear-gradient(to right, rgb(246, 111, 25), rgb(242, 20, 33));
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hd .content-products .products-list{
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}
#hd .content-products .products-list .entry{
  width: 25%;
  box-sizing: border-box;
  padding: 0 3%;
  text-align: center;
}
#hd .content-products .products-list .entry h3{
  font-size: 1.3em;
  color: #f16322;
  font-weight: bold;
}
#hd .content-products .products-list .entry a{
  color: #fff;
  transition: all 0.2s;
  padding: 3px;
}
#hd .content-products .products-list .entry a:hover{
  color: #aaa;
}

@media (max-width: 1023px) {
#hd .content-products h2{
  font-size: 5vw;
}
}

@media (max-width: 767px) {
#hd .content-products{
  padding-top: 50px;
}
#hd .content-products h2{
  font-size: 9vw;
}
#hd .content-products .products-list .entry{
  width: 50%;
  margin-bottom: 30px;
}
}





/*table*/

#hd .content-table{
  background: #000;
  overflow: hidden;
  padding: 80px 30px;
}
#hd .content-table .table{
  max-width: 1100px;
  margin: 0 auto;
}
#hd .content-table .table.table-1{
  margin-bottom: 30px;
}
#hd .content-table .table .table-head{
  display: flex;
}
#hd .content-table .table .table-head h3{
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
}
#hd .content-table .table .table-head .column{
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  box-sizing: border-box;
}
#hd .content-table .table .table-head .column.products{
  background: linear-gradient(to right, rgb(246, 111, 25), rgb(239, 65, 36));
  border-right: 2px solid #000; 
}
#hd .content-table .table .table-head .column.check{
  background: linear-gradient(to right, rgb(239, 65, 35), rgb(242, 20, 33));
}
#hd .content-table .table.table-1 .table-head .column{
  width: 50%;
}
#hd .content-table .table.table-2 .table-head .column.products{
  width: 75%;
}
#hd .content-table .table.table-2 .table-head .column.check{
  width: 25%;
}


#hd .content-table .table .table-body{
  display: flex;
}
#hd .content-table .table .table-body .column{
  color: #fff;
  padding: 30px 10px;
  text-align: center;
  box-sizing: border-box;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #000; 
}
#hd .content-table .table .table-body .column p{
  line-height: 2em;
}
#hd .content-table .table .table-body .column p a{
  color: #fff;
  display: inline-block;
  line-height: 1em;
}
#hd .content-table .table .table-body .column.check{
  border-right: none; 
}
#hd .content-table .table .table-body .column.check img{
  width: 200px;
  display: block;
}

#hd .content-table .table.table-1 .table-body .column{
  width: 50%;
}
#hd .content-table .table.table-2 .table-body .column.product1{
  width: 30%;
}
#hd .content-table .table.table-2 .table-body .column.product2{
  width: 29%;
}
#hd .content-table .table.table-2 .table-body .column.add{
  width: 8%;
  font-size: 80px;
}
#hd .content-table .table.table-2 .table-body .column.equal{
  width: 8%;
  font-size: 80px;
}
#hd .content-table .table.table-2 .table-body .column.check{
  width: 25%;
}

@media (max-width: 767px) {
#hd .content-table .table.table-2 .table-body .column.add{
  font-size: 40px;
}
#hd .content-table .table.table-2 .table-body .column.equal{
  font-size: 40px;
}
}
@media (max-width: 650px) {
#hd .content-table{
  padding: 30px 10px;
}
#hd .content-table .table.table-2 .table-body .column.add{
  font-size: 20px;
}
#hd .content-table .table.table-2 .table-body .column.equal{
  font-size: 20px;
}
#hd .content-table .table .table-body .column p {
  font-size: 0.9em;
}
#hd .content-table .table .table-head h3{
  font-size: 1em;
  font-weight: bold;
}
}
