/* home css */

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* facility css */
  .facility_card {
    min-height: 180px;
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.85);
  
  }
  
  
  .services_img {
    /* height: 220px; */
  }
  
  
  /* menu page */
  .main_menu_img {
    /* height: 220px; */
    width: 100%;
  }
  
  .section_title_menu {
    text-align: center;
    padding-bottom: 20px;
  }
  
  .section_title_menu h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--red);
  }
  
  .section_title_menu h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: var(--red);
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section_title_menu h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 4px;
    background: var(--red);
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  
  