

.heading {
    font-size: 14px;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(100,100,100,0.5);
    padding: 15px 10px;
}

.flex{
    display: flex;
}

.g_card{
    height:auto;
    display: flex;
    background: #000;
    margin-bottom: 30px;
    cursor: pointer;
    text-decoration: none !important;
    outline: none !important;
    overflow: hidden;

    -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.g_card:hover{
    transform: scale(1.02);
}
.g_card > div:first-child{
    width: 114px;
    height: auto;
    overflow: hidden;
    display: grid;
    align-items: center;
    justify-items: center;
}
.g_card > div:first-child img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.g_card > div:nth-child(2){
    flex: 1;
    padding: 15px;
    align-self: center;
}
.g_card > div:nth-child(2) h3{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    color:#fff !important;

    height: 44px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow: hidden;
}
.g_card .flex > div {
    width: 50%;
    text-align: left;
}
.g_card .flex > div p:nth-child(1){
    font-size: 12px;
    margin-bottom: 0px;
    font-weight: 800 !important;
    color: #fff !important;
}
.g_card .flex > div p:nth-child(1) img{
    width: 16px;
    height: 16px;
    object-fit: cover;
    margin-right: 5px;
}
.g_card .flex > div p:nth-child(2){
    font-size: 14px;
    font-weight: 500 !important;
    color: #fff !important;
    margin-bottom: 0px;
}
.g_card .flex > p{
    width: 50%;
    font-size: 22px;
    font-weight: 700 !important;
    color: #fff !important;
    margin-top: 18px;
    margin-bottom: 0px;
    text-align: right;
    align-self: center;
}

center{
    display: none;
}



:root {
  --star-size: 18px;
  --star-color: #fff;
  --star-background: #fc0;
}
.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  
  display: block;
  margin: 10px 0 0;
  font-size: var(--star-size);
  font-family: Times; /* make sure ★ appears correctly */
  line-height: 1;
  
  &::before {
    content: '★★★★★';
    letter-spacing: 2.5px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}


.g_cards_side {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 30px;
}

.g_cards_side > a {
    display: inline-block;
    position: relative;
    width: 47%;
    overflow: hidden;
    height: auto;
    cursor: pointer;
    margin: 0 auto 10px;
}

.g_card_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.g_cards_side > a:hover .g_card_img{
    transform: scale(1.04);
}