/* ============================================================================
   KURUMSAL - HAKKIMIZDA SINGLE SAYFASI
   ============================================================================ */

.mk-about-page {
    padding: 1.875rem 0 3.75rem 0;
}

.mk-about-hero {
    background: linear-gradient(95deg, #f6a136 0%, #ee8d24 100%);
    border-radius: 0.938rem;
    min-height: 6.563rem;
    padding: 1.25rem 1.563rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mk-about-hero::after {
    content: "";
    position: absolute;
    right: -2.5rem;
    top: -2.5rem;
    width: 12.5rem;
    height: 12.5rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.mk-about-hero-left {
    display: flex;
    align-items: center;
    gap: 0.938rem;
    position: relative;
    z-index: 2;
}

.mk-about-hero-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.375rem;
}

.mk-about-hero-title {
    color: #ffffff;
    font-size: 1.563rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.mk-about-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0.25rem 0 0 0;
}

.mk-about-hero-right {
    position: relative;
    z-index: 2;
}

.mk-about-hero-brand {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mk-about-hero-brand i {
    color: #ffffff;
    font-size: 2.063rem;
}

.mk-about-hero-brand img {
    width: auto;
    height: 2.188rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mk-about-content-card {
    background-color: #f3f3f3;
    border-radius: 0.938rem;
    border: 1px solid #eeeeee;
    padding: 1.875rem;
}

.mk-about-content {
    color: #5f6368;
    font-size: 1.438rem;
    font-weight: 300;
    line-height: 1.8;
}

.mk-about-content *:last-child {
    margin-bottom: 0;
}

.mk-about-content h2,
.mk-about-content h3,
.mk-about-content h4,
.mk-about-content h5 {
    color: #222631;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

.mk-about-content h3 {
    font-size: 1.625rem;
    text-transform: uppercase;
}

.mk-about-content h4 {
    font-size: 1.5rem;
}

.mk-about-content p {
    margin-bottom: 1.25rem;
}

.mk-about-content hr {
    border: 0;
    border-top: 1px solid #d7d7d7;
    margin: 1.5rem 0 1.25rem 0;
    opacity: 1;
}

.mk-about-sidebar {
    background-color: #f8f8f8;
    border-radius: 0.938rem;
    border: 1px solid #ededed;
    overflow: hidden;
}

.mk-about-sidebar-title {
    color: #222631;
    font-size: 1.375rem;
    font-weight: 500;
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid #ececec;
    background-color: #f6f6f6;
}

.mk-about-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mk-about-sidebar-list li {
    border-bottom: 1px solid #ececec;
}

.mk-about-sidebar-list li:last-child {
    border-bottom: 0;
}

.mk-about-sidebar-list li a {
    color: #616776;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.125rem 0.875rem 1.438rem;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.mk-about-sidebar-list li a i {
    font-size: 1rem;
    color: #77808f;
    transition: all 0.2s ease-in-out;
}

.mk-about-sidebar-list li.active a {
    color: #dc8930;
    background-color: #f9f9f9;
}

.mk-about-sidebar-list li.active a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #dc8930;
}

.mk-about-sidebar-list li.active a i {
    color: #dc8930;
}

.mk-about-sidebar-list li:not(.active) a:hover {
    color: #dc8930;
    background-color: #ffffff;
}

.mk-about-sidebar-list li:not(.active) a:hover i {
    color: #dc8930;
    transform: translateX(2px);
}

@media (max-width: 991.98px) {
    .mk-about-page {
        padding: 1.25rem 0 2.5rem 0;
    }

    .mk-about-hero {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.938rem;
        padding: 1.25rem;
    }

    .mk-about-hero-right {
        display: none;
    }

    .mk-about-content-card {
        padding: 1.25rem;
    }

    .mk-about-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .mk-about-content h3 {
        font-size: 1.25rem;
    }

    .mk-about-content h4 {
        font-size: 1.125rem;
    }

    .mk-about-sidebar-title {
        font-size: 1.125rem;
    }

    .mk-about-sidebar-list li a {
        font-size: 1rem;
        min-height: 3.375rem;
    }
}

/* ============================================================================
   KURUMSAL - HAKKIMIZDA V2 DEMO BLOK
   ============================================================================ */

.mk-about-v2 {
    padding: 0.625rem 0 0.625rem 0;
}

.mk-about-v2__hero ::selection {
    background-color: #ffffff;
    color: #151515;
}

.mk-about-v2__hero {
     position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #151515 0%, #3A3A3A 100%);
    border-radius: 3px;
    padding: 20px;
    min-height: 20rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.mk-about-v2__hero-content,
.mk-about-v2__stats {
    position: relative;
    z-index: 2;
}

.mk-about-v2__hero-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.mk-about-v2__hero-top {
    display: flex;
    gap: 1.25rem;
    margin-top: 0;
}

.mk-about-v2__iconbox {
    width: 5.25rem;
    height: 5.25rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

.mk-about-v2__iconbox i {
    color: #ffffff;
}

.mk-about-v2__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.438rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}

.mk-about-v2__title {
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #ffffff;
}

.mk-about-v2__desc {
    max-width: 48rem;
    margin: 0;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mk-about-v2__breadcrumb {
    min-height: 45px;
    margin-top: 1.5rem;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
    padding: 0rem 1rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    position: static;
    width: auto;
}
.mk-about-v2__breadcrumb a{
     color: #ffffff;
}
.mk-about-v2__breadcrumb a:hover{
     color: #f1f1f1;
}
.mk-about-v2__breadcrumb i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.mk-about-v2__breadcrumb strong {
    color: #ffffff;
    font-weight: 600;
}

.mk-about-v2__stats {
    width: 14.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.mk-about-v2__stat-card {
    border-radius: 3px;
    height: 70px;
    padding: 15px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);

}

.mk-about-v2__stat-card > div {
    width: 100%;
    text-align: left;
}

.mk-about-v2__stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 0;
    color: #ffffff;
    margin-top: 17px;
}

.mk-about-v2__stat-label {
    display: block;
    margin-top: 0.438rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.76);
}

@media (min-width: 1200px) {
    .mk-about-v2__hero {
        min-height: 285px;
    }

    .mk-about-v2__hero-top {
        margin-top: 45px;
    }

    .mk-about-v2__breadcrumb {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .mk-about-v2__hero {
        flex-direction: column;
        min-height: auto;
        padding: 60px 15px 15px 15px;
    }

    .mk-about-v2__stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .mk-about-v2__stat-card {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .mk-about-v2 {
        padding-bottom: 1.875rem;
    }

    .mk-about-v2__hero {
        padding: 60px 15px 15px 15px;
        border-radius: 3px;
    }

    .mk-about-v2__hero-content {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "hero-text hero-text"
            "icon breadcrumb";
        align-items: stretch;
        gap: 0.75rem;
    }

    .mk-about-v2__hero-top {
        display: contents;
    }

    .mk-about-v2__hero-text {
        grid-area: hero-text;
        padding-bottom: 60px;
    }

    .mk-about-v2__iconbox {
        grid-area: icon;
        width: 3rem;
        height: auto;
        min-height: 3rem;
        padding: 0 0.5rem;
    }

    .mk-about-v2__breadcrumb {
        grid-area: breadcrumb;
        margin-top: 0;
        min-height: 3rem;
        display: flex;
        align-items: center;
        position: static;
    }

    .mk-about-v2__title {
        font-size: 1.375rem;
    }

    .mk-about-v2__desc {
        font-size: 0.938rem;
        line-height: 1.7;
    }

    .mk-about-v2__stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .mk-about-v2__stat-card {
        min-width: 0;
        padding: 0.625rem 0.5rem;
        text-align: center;
    }

    .mk-about-v2__stat-card > div {
        text-align: center;
    }

    .mk-about-v2__stat-number {
        font-size: 1.125rem;
        line-height: 1.1;
    }

    .mk-about-v2__stat-label {
        margin-top: 0.25rem;
        font-size: 0.688rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

}

/* ============================================= */
/* KURUMSAL - HAKKIMIZDA V2 İÇERİK BLOĞU        */
/* ============================================= */

/* -- Separator & Slogan -- */
.mk-about-v2__separator-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
}

.mk-about-v2__separator {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background-color: #d5343e;
    margin: 0 auto;
}

.mk-about-v2__slogan {
    display: flex;
    justify-content: center;
    flex: 1;
}

.mk-about-v2__slogan img {
    max-width: 100%;
    height: auto;
}

/* -- Body Wrapper -- */
.mk-about-v2__body {
    color: #252525;
}

.mk-about-v2__body-inner {
    position: relative;
}

/* -- Col Card (beyaz arka plan) -- */
.mk-about-v2__body-col {
    margin-top: 8px;
    padding: 20px;
}

/* -- Selection (metin seçimi) -- */
.mk-about-v2__body .mk-about-v2__body-inner ::selection {
    background-color: #151515 !important;
    color: #ffffff !important;
}

/* -- Info Paragraf -- */
.mk-about-v2__body-info {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #252525;
}

/* -- Misyon -- */
.mk-about-v2__body-mission {
    margin-bottom: 45px;
}

.mk-about-v2__body-mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 9px solid #252525;
    padding-left: 21px;
    margin-bottom: 15px;
}

.mk-about-v2__body-mission-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

/* -- Vizyon -- */
.mk-about-v2__body-vision {
    margin-bottom: 45px;
}

.mk-about-v2__body-vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 9px solid #252525;
    padding-left: 21px;
    margin-bottom: 15px;
}

.mk-about-v2__body-vision-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

/* -- Bottom Image -- */
.mk-about-v2__body-bottom-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}

/* -- Sticky Image -- */
.mk-about-v2__body-sticky-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}

/* -- Footer Text -- */
.mk-about-v2__body-footer-text {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #252525;
}

/* -- Mobile (max-width: 767.98px) -- */
@media (max-width: 767.98px) {
    .mk-about-v2__separator-wrap {
        padding: 20px 0;
    }

    .mk-about-v2__body-col {
        padding: 15px;
    }

    .mk-about-v2__body-mission,
    .mk-about-v2__body-vision {
        margin-bottom: 30px;
    }

    .mk-about-v2__body-mission-title,
    .mk-about-v2__body-vision-title {
        font-size: 1.25rem;
    }

    .mk-about-v2__body-bottom-img {
        height: 150px;
    }
}

/* ============================================= */
/* KURUMSAL ARŞİV SAYFASI - İÇERİK STİLLERİ     */
/* ============================================= */

/* -- Light Card -- */
.meka-light-card {
    background-color: #f3f3f3;
    color: #252525;
}

.meka-light-card-top-celtik {
    background-color: #ffffff;
    height: 30px;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-top: -5px;
}

.meka-light-card-bottom-celtik {
    background-color: #ffffff;
    height: 30px;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-bottom: -5px;
}

.meka-light-card-content {
    padding: 15px;
    color: #252525;
}

.meka-light-card-pragraf {
    padding: 0 15px 0 30px;
    margin: 0;
    margin-bottom: 15px;
}

.meka-light-card-content-padding {
    padding-bottom: 0;
}

/* -- Light Card Title -- */
.meka-light-card-title-darkborder {
    font-size: 20px;
    font-weight: 700;
    border-left: 9px solid #252525;
    padding-left: 21px;
    margin-bottom: 30px;
    margin-top: 30px;
}

/* -- Dark Card Bottom Celtik -- */
.meka-dark-card-bottom-celtik {
    background-color: #ffffff;
    height: 30px;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-bottom: -5px;
}

/* -- Dark Card Buton Siyah -- */
.meka-dark-card-buton-siyah {
    height: 58px;
    border: 1px solid #ffffff;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #252525;
    color: #ffffff;
    border-radius: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 14px;
    transition: all 0.2s;
}

.meka-dark-card-buton-siyah:hover {
    background-color: #151515;
}

/* -- Kurumsal Açıklama Resim -- */
.kurumsal-aciklama-resim {
    margin-bottom: 30px;
    margin-top: 30px;
}

.kurumsal-aciklama-resim img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

/* -- Kurumsal Kartlar -- */
.kurumsal-card-content {
    padding: 45px 0;
}

.kurumsal-card-bg {
    background-color: #F1F1F1;
    border: 1px solid #F1F1F1;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
}

.kurumsal-card-bg:hover {
    border: 1px solid #cccccc;
}

.kurumsal-card-arrow img {
    width: 16px;
}

.kurumsal-icon {
    width: 64px;
}

.kurumsal-icon img {
    width: 32px;
}

.kurumsal-title-p-icon {
    display: flex;
    align-items: center;
}

.kurumsal-card-title {
    font-size: 16px;
    font-weight: 400;
    color: #252525;
}

.kurumsal-card-p {
    font-size: 14px;
    font-weight: 300;
    color: #252525;
}

/* -- Desktop (min-width: 992px) -- */
@media (min-width: 992px) {
    .meka-light-card-top-celtik {
        margin-bottom: 60px;
    }

    .meka-light-card-bottom-celtik {
        margin-top: 60px;
    }

    .meka-light-card-content {
        padding: 15px;
    }

    .meka-light-card-pragraf {
        padding: 0;
    }

    .meka-light-card-title-darkborder {
        font-size: 24px;
        margin-top: unset;
    }

    .meka-dark-card-bottom-celtik {
        margin-top: 60px;
    }

    .kurumsal-aciklama-resim {
       
        margin-bottom: unset;
        margin-top: unset;
    }

    .kurumsal-aciklama-resim img {
        height: 600px;
        width: 400px;
        object-fit: cover;
    }
}

/* ============================================= */
/* KURUMSAL KİMLİK SAYFASI - İÇERİK STİLLERİ   */
/* ============================================= */

/* -- Content Seperator -- */
.meka-content-seperator {
    max-width: 100px;
    height: 1px;
    background-color: #d5343e;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* -- White Card -- */
.meka-white-card {
    background-color: #ffffff;
    color: #252525;
}

.meka-white-card-content {
    padding: 15px;
    color: #252525;
}

.meka-white-card-pragraf {
    padding: 0 15px 0 30px;
    margin: 0;
    margin-bottom: 15px;
}

.meka-white-card-top-celtik {
    background-color: #ffffff;
    height: 30px;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-top: -5px;
}

.meka-white-card-bottom-celtik {
    background-color: #ffffff;
    height: 30px;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-bottom: -5px;
}

/* -- Kurumsal Kimlik İçerik -- */
.meka-dark-kurumsalkimlik-content {
    position: relative;
    padding: 30px 15px;
}

.kurumsalkimlik-title {
    font-size: 24px;
    font-weight: 700;
    border-left: 9px solid #252525;
    padding-left: 21px;
    margin-bottom: 15px;
}

.kurumsalkimlik-p {
    font-size: 16px;
    font-weight: 300;
}

.kurumsal-kimlik-card {
    margin-top: 30px;
    background-color: #ffffff;
    border: 1px solid #252525;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.kurumsal-kimlik-card:hover {
    border: 1px solid #d5343e;
}

.kurumsal-kimlik-card-icon {
    margin-right: 15px;
}

.kurumsal-kimlik-card-icon img {
    width: 65px;
    height: auto;
}

.kurumsal-kimlik-card-title {
    font-size: 14px;
    padding: 15px 0 0 0;
}

.kurumsal-kimlik-img {
    padding: 30px 0;
    width: 100%;
}

/* -- Desktop (min-width: 992px) -- */
@media (min-width: 992px) {
    .meka-white-card-pragraf {
        padding: 0;
    }

    .meka-white-card-top-celtik {
        margin-bottom: 60px;
    }

    .meka-white-card-bottom-celtik {
        margin-top: 60px;
    }

    .kurumsal-kimlik-card {
        flex-direction: unset;
    }
}

/* ============================================= */
/* REFERANS SAYFASI - İÇERİK STİLLERİ           */
/* ============================================= */

/* -- Referans Kartları -- */
.meka-ref-card {
    border: 1px solid #E1E1E1;
    height: 125px;
    width: 100%;
    border-radius: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.meka-ref-card img {
    width: 50%;
    height: auto;
    filter: grayscale(1);
    transition: all 0.2s ease-in-out;
}

.meka-ref-card:hover img {
    filter: grayscale(0);
}

/* -- Referans İçerik Wrapper -- */
.meka-dark-referans-content {
    position: relative;
    padding: 30px 15px;
}

/* -- Desktop (min-width: 992px) -- */
@media (min-width: 992px) {
    .meka-dark-referans-content {
        position: relative;
        padding: 30px 15px;
    }
}

/* ============================================= */
/* BANKA BİLGİLERİ SAYFASI - İÇERİK STİLLERİ    */
/* ============================================= */

/* -- Banka İçerik Wrapper -- */
.meka-dark-bankabil-content {
    position: relative;
    padding: 30px 15px;
}

/* -- Fatura Bilgileri -- */
.faturabil-title {
    border-left: 9px solid #252525;
    padding: 0 0 0 21px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.faturabil-p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}

.bankabil-faturainfo {
    border: 1px solid #cccccc;
    padding: 15px;
}

.bankabil-faturainfo-list {
    margin-bottom: 5px;
    display: unset;
}

.bankabil-faturainfo-list:nth-child(5) {
    margin-bottom: 0;
    border-bottom: unset;
}

.bankabil-faturainfo-listtitle {
    font-weight: 600;
    font-size: 14px;
    margin-right: 5px;
    text-decoration: underline;
}

.bankabil-faturainfo-listp {
    font-size: 14px;
}

.bankabil-fatura-kartvizit {
    min-height: 100px;
    background-color: #252525;
    height: 100%;
    width: 100%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -- Banka Kartları -- */
.bankabil-title {
    border-left: 9px solid #252525;
    padding: 0 0 0 21px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bankabil-p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}

.bankabil-card {
    margin: 8px 0;
    border: 1px solid #ccc;
}

.bankabil-card-head {
    height: 100px;
    border-bottom: 1px solid #ccc;
    display: block;
    justify-content: unset;
    align-items: unset;
    background-color: #F0F0F0;
    padding: 15px 30px;
    font-weight: 500;
}

.hesap-bilgi {
    margin-top: 8px;
}

.bankabil-card-content {
    padding: 30px;
    min-height: 100px;
}

.bankabil-card-content-list {
    display: unset;
    margin-bottom: 15px;
}

.bankabil-card-content-list:nth-child(6) {
    margin-bottom: 0;
    border-bottom: unset;
}

.bankabil-card-content-list-title {
    font-weight: 600;
    margin-right: 5px;
    text-decoration: underline;
}

.bankabil-card-content-list-p {
    font-weight: 300;
    font-size: 16px;
}

/* -- Desktop (min-width: 992px) -- */
@media (min-width: 992px) {
    .meka-dark-bankabil-content {
        position: relative;
        padding: 30px 15px;
    }

    .faturabil-title {
        border-left: 9px solid #252525;
        padding: 0 0 0 21px;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .faturabil-p {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 15px;
    }

    .bankabil-faturainfo {
        border: 1px solid #cccccc;
        padding: 15px;
    }

    .bankabil-faturainfo-list {
        margin-bottom: 5px;
        display: flex;
    }

    .bankabil-faturainfo-list:nth-child(5) {
        margin-bottom: 0;
    }

    .bankabil-faturainfo-listtitle {
        font-weight: 600;
        font-size: 16px;
        margin-right: 5px;
        text-decoration: underline;
    }

    .bankabil-faturainfo-listp {
        font-size: 16px;
    }

    .bankabil-fatura-kartvizit {
        min-height: 100px;
        background-color: #252525;
        height: 100%;
        width: 100%;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bankabil-title {
        border-left: 9px solid #252525;
        padding: 0 0 0 21px;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .bankabil-p {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 15px;
    }

    .bankabil-card {
        margin: 8px 0;
        border: 1px solid #ccc;
    }

    .bankabil-card-head {
        height: 100px;
        border-bottom: 1px solid #ccc;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #F0F0F0;
        padding: 0 30px;
        font-weight: 500;
    }

    .hesap-bilgi {
        margin-top: 0;
    }

    .bankabil-card-content {
        padding: 30px;
        min-height: 100px;
    }

    .bankabil-card-content-list {
        display: flex;
        margin-bottom: 15px;
    }

    .bankabil-card-content-list:nth-child(6) {
        margin-bottom: 0;
        border-bottom: unset;
    }

    .bankabil-card-content-list-title {
        font-weight: 600;
        margin-right: 5px;
        text-decoration: underline;
    }

    .bankabil-card-content-list-p {
        font-weight: 300;
        font-size: 16px;
    }
}

