/* Universal breakpoints */
.tiles {
  display: flex;
  gap: 24px;
  padding-left: 16px;
  padding-right: 16px; }
  @media (max-width: 991px) {
    .tiles {
      flex-direction: column; } }
  .tiles .tile {
    flex: 1;
    border-radius: 8px;
    box-shadow: 4px 14px 40px rgba(59, 61, 73, 0.3);
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .tiles .tile img {
      height: 112px;
      width: 112px; }
    .tiles .tile h3 {
      font-size: 36px;
      margin-top: 40px;
      margin-bottom: 20px;
      color: #1f2026; }
    .tiles .tile p {
      font-weight: 500;
      text-align: center;
      margin-bottom: 40px;
      color: #3b3d49; }
    .tiles .tile a {
      position: relative;
      cursor: pointer;
	   padding-top: 17px;
      height: 30px;
      text-align: center;
      width: -webkit-fill-available;
      font-size: 20px;
      }
	  /* Manisha- fix for tile heading on iphone se */
	   @media (max-width: 390px){
		  .tiles .tile h3 {
          font-size: 30px !important;
		  } 
	   }
	  
    @media (max-width: 991px) {
      .tiles .tile {
        padding: 32px 24px; }
        .tiles .tile h3 {
          margin-top: 24px;
          font-size: 32px;
          }
        .tiles .tile p {
          margin-bottom: 24px;
          text-align: left; }
        .tiles .tile a {
          font-size: 18px; } }

    @media (min-width: 1160px) {
      .tiles .tile p{
        height: 100px;
      }
    }
    @media (min-width: 1024px) and (max-width: 1159px) {
      .tiles .tile p{
        height: 120px;
      }
      .tiles .tile h3 {
        height: 80px;
      }
    }