* {
  box-sizing: border-box;
}
.item2 {
  display: inline-block;
  /*border:2px solid grey;*/
  border-radius: 15px;
  box-shadow: 0px 0px 2px 2px white;*/
  width: 80%;
  padding-bottom:70px;


}
/* on PC */
@media screen and (min-width: 550px) {
  .featured-image {
    float: left;
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom:60px; 


  }
  .featured-image img {
    width: 100%;
    border-radius: 10px;
    
  }
  
  .featured-image img:hover {
  opacity: .8;
  transition: all 0.3s linear;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);


}
  
  
  .header-description {
    float: left;
    text-align: center;
    width: 40%;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    line-height:1.5;
    color: #19354b;
    font-size:40px;
    font-weight:bold;


  }
  
  
  .featured-image-2 {
    float: right;
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom:90px; 


  }
  .featured-image-2 img {
    width: 100%;
    border-radius: 15px;
    
    
      }




  .featured-image-2 img:hover {
  opacity: .8;
  transition: all 0.3s linear;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);

  
    }
  
  .product-info {
    text-align: center;
    width: 100%;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    line-height:1.75;
    font-size:24px;
    font-weight:bold;
    color: #06466E;


  }
  
  
  
  
  }
  
  
  .description {
    text-align: center;
    width: 100%;
    padding-top: 15px;
    padding-left: 15px;
    padding-bottom: 30px;
    padding-right: 15px;
    line-height:1.75;
    font-size:20px;
    font-weight:normal;
    color: #000000;


  }
  
  
  
  
  
}
/* on Mobile */
@media screen and (max-width: 550px) 
  .featured-image {
    width: 100%;
  }
  .featured-image img {
    width: 100%;
    border-radius: 15px;

  }
  
    }
  .featured-image-2 img {
    width: 100%;
    border-radius: 15px;

  }


  .product-info {
    text-align: center;
    color: #06466E;
    font-size:22px;
    padding-top:20px;



  }

  .header-description {
    text-align: center;
    color: #06466E;
    font-size:40px;
    font-weight:bold;
    padding-top:30px;




  }



  
  .featured-image-2 img {
    width: 100%;
    border-radius: 15px;

  }

  .description {
    width: 100%;
    padding-top: 30px;
    font-size:22px;


  }


}






.highlight-container {
  background: #EBEBEB;
  padding: 25px 20px;
  color: #EBEBEB;
  text-align: left;
}











.buttons {
  display: flex;
  justify-content: center;

}

.button {
  display: inline-block;
  padding: 17px 32px;
  background: rgba(255, 199, 44, 1);
  border: 0;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 3px;
  padding-bottom:15px;
}

  .button:hover {background: rgba(56, 205, 255, 1);
    
      color: #ffffff;

    
  }

@media (max-width: 50%) {

  h2 {
    font-size: 28px;
    text-align: center;
  }

  p {
    font-size: 17px;
    line-height: 1.5;
  }

  .sm-user-ui .sm-tile-info .sm-tile-title {
    font-size: 4px;
  }

  .button {
    padding: 28px 24px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #ffffff;

  }

  .hightlight-container {
    padding: 25px 5px;
    text-align: left;
  }

}





hr.new1 {
  border-top: 1px solid #d3d3d3;
  width:60%;
  margin-top: 30px;
  margin-bottom: 10px;
  
}





/* mak images fill their container*/
img {
  max-width: 100%;
}
img:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* CSS Grid*/
.img-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 5px;
}

/* Media Query for changing grid on bigger screens*/

/* Bigger than Phones(tablet) */
@media only screen and (min-width: 750px) {
  .img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Bigger than Phones(laptop / desktop) */
@media only screen and (min-width: 970px) {
  .img-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}