h2 {
    color: #154284;
    font-family: Altinordu-ExtraBold;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 2.8rem;
   }
  
   .grup {
    color: #222;
    font-size: 0.8rem;
   }
  
   .grup {
    background-color: #ffffffb0;
    z-index: 9;
    position: relative;
   }
  
   /*Resim Üzerine Çıkartma Alanı margin-top:170px*/
  
   /*
  @@media (max-width: 575px) {
    .grup {
      margin-top: 0;
    }
  } Mobil cihazlar için Resim Üzerine Çıkartma Alanı
  */
   .table-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
   }
  
   .cell {
    margin-right: 10px;
    padding: 5px;
   }
  
   .cell strong {
    color: white;
   }
  
   .sira-cell {
    width: 30px;
    font-family: Altinordu-ExtraBold;
    background-color: burlywood;
    border-right: 3px solid #000;
   }
  
   .name-cell {
    width: 250px;
   }
  
   .pz-cell {
    width: 110px;
   }
  
   .dg-cell {
    width: 200px;
   }
  
   .dgy-cell {
    width: 190px;
   }
  
   .gklp-cell {
    width: 200px;
   }
  
   .by-cell,
   .kg-cell {
    width: 70px;
   }
  
   .black-row {
    background-color: #f5f5f5;
   }
  
   .white-row {
    background-color: #dddddd;
   }
  
   .row-highlight {
    position: relative;
   }
  
   .row-highlight:hover {
    background-color: #c3bfbf;
   }
  
   .row-highlight.active {
    background-color: #c3bfbf;
    color: #154284;
   }
  
   .row-highlight:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -.1rem;
    left: 0;
    right: 0;
    width: 100%;
    height: .2rem;
    transform: scale(0);
    transition: transform .5s;
    background-color: #c30000;
   }
  
   .row-highlight.active:after {
    transform: scale(1);
   }
  
   /*  .table-row:hover .row-highlight:after {transform: scale(1);} */
   .mGradien {
    background: linear-gradient(90deg, #cd122d 0, #154284 80%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #dd151500;
    color: #fff;
    max-width: 60.8rem;
    font-size: 2.5rem;
    line-height: 3.4rem;
    font-family: Altinordu-ExtraBold, Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 400;
   }
  
   .mGradienA {
    background-color: #154284;
    color: #fff;
    max-width: 60.8rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-family: Altinordu-ExtraBold, Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 400;
   }
  
   .altBslk {
    font-family: Altinordu-Light;
    margin: 0 auto 1rem;
    max-width: 66.8rem;
    font-size: 1rem;
    color: #000;
    text-align: center;
    font-weight: 400;
   }
  
   .detay {
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fdfdfd;
    border-radius: 5px;
    line-height: 22px;
    font-size: .8rem;
    color: #c30000;
    font-weight: bold;
   }
  
   .as1 {
    color: #154284;
    text-decoration: dotted;
    font-style: oblique;
    font-weight: normal;
   }
  
   .detay strong {
    color: black;
   }
  
   .YMFO-Aciklama {
    background-color: #cd122d;
    line-height: 2.4rem;
    color: #ffffff;
    font-size: 1.3rem;
   }
  
  
   .content-hero-featured {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    overflow: hidden;
   }
  
   .content-hero-featured img {
    width: 100%;
    height: auto;
    display: block;
   }
  
   .content-hero-featured::before,
   .content-hero-featured::after {
    position: absolute;
    content: "";
    width: 2%;
    max-width: 3.2rem;
    z-index: 0 !important;
    animation: slide 1s 1;
   }
  
   .content-hero-featured::before {
    top: 5rem;
    left: 0;
    height: 20rem;
    background: #cd122d;
    animation-name: slideDown;
    transition: top 0.5s ease-in-out;
   }
  
   .content-hero-featured::after {
    top: 18rem;
    right: 0;
    height: 20rem;
    background: #154284;
    animation-name: slideUp;
    transition: top 0.5s ease-in-out;
   }
  
   /*.content-hero-featured:hover::before {top: -5rem;}
   .content-hero-featured:hover::after {top: 28rem;}*/
  
   @keyframes slideDown {
    from {
     top: -30rem;
    }
  
    to {
     top: 5rem;
    }
   }
  
   @keyframes slideUp {
    from {
     top: 48rem;
    }
  
    to {
     top: 18rem;
    }
   }
  
   @keyframes blink {
    0% {
     opacity: 1;
    }
  
    50% {
     opacity: 0;
    }
  
    100% {
     opacity: 1;
    }
   }