﻿#top-info .section-description {
    margin-bottom: 0px;
}

/*.hero-section {
    background-image: url('images/hero-vectors-bg.png');
    height: 364px;
    background-repeat: no-repeat;
    background-color: #0A0A0A;
    background-size: contain;
    padding-top: 160px;
}*/

/* .hero-content {
        } */

/*.hero-content h1 {
    font-size: 80px;
    font-weight: 200;
    line-height: 120%;*/
    /* 96px */
    /*letter-spacing: 1.6px;
    font-family: Changa;
    margin-top: 0px;
}*/


.coloured-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.coloured-card {
    padding: 32px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

    .coloured-card h3 {
        font-size: 24px;
        font-weight: 500;
        line-height: 120%;
        margin-top: 0;
        margin-bottom: 20px;
    }


    .coloured-card .card-description {
        font-size: 18px;
        font-weight: 500;
        line-height: 150%;
        /* 27px */
        letter-spacing: 0.36px;
    }

/* Card variations */
.card-yellow {
    background-color: #FBE10E;
}

.card-red {
    background-color: #EC1E35;
    color: white;
}

.card-white {
    border: 1px solid #0A0A0A;
}

.card-black {
    background-color: #0A0A0A;
    color: white;
    grid-column: span 2;
}

.card-blue {
    background-color: #3598D2;
    color: white;
}

/* Last row container */
.last-row-container {
    grid-column: 1 / -1;
    /* Span all columns */
    display: flex;
    gap: 20px;
}

    .last-row-container .coloured-card {
        flex: 1;
        /* Make cards take equal width */
    }

.image-card {
    height: 360px;
}

    .image-card img {
        height: 360px;
    }

    .image-card .title {
        font-size: 48px;
        font-weight: 500;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 0.96px;
        margin-bottom: 40px;
    }

.partner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Son iki elemanı yan yana yerleştir */
    gap: 16px;
    grid-column: 1 / -1;
}





@media (max-width: 1024px) {
    .coloured-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .coloured-card-grid {
        grid-template-columns: 1fr;
    }

    .coloured-card {
        min-height: 100px;
        padding: 20px;
    }

    .card-black {
        grid-column: unset;
    }

    .last-row-container {
        flex-direction: column;
    }


    #yazılım {
        padding-top: 44px;
    }

    .hero-content h1 {
        font-size: 36px;
        font-weight: 200;
        line-height: 120%;
        /* 43.2px */
        letter-spacing: 0.72px;
    }

    .hero-section {
        background-image: url('images/hero-vectors-bg-mobile.png');
        height: 240px;
        padding-top: 100px;
    }
}



.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    position: relative;
    width: 600px;
    margin: 10% auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 5px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    padding: 0;
    overflow: hidden;
}

.modal-header {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f1f1f1;
    font-weight: bold;
}

.modal-body {
    padding: 1rem;
}

.modal-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: right;
    background-color: #f9f9f9;
}

.modal-title {
    margin: 0;
    line-height: 1.5;
    font-size: 1.25rem; /* fs-5 karşılığı */
}

.btn-close {
    float: right;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    border: none;
    background: transparent;
    cursor: pointer;
}

    .btn-close:focus {
        outline: none;
    }

.page-padding-25 {
    padding-top: 50px;
}
.page-padding-50 {
    padding-top: 50px;
}

.page-padding-75 {
    padding-top: 75px;
}

.page-padding-bottom-50 {
    padding-bottom: 50px !important;
}


.page-padding-top-new {
    padding-top: 50px !important;
}

.coloured-card-grid-2x {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.coloured-card-grid-4x {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}