/*Footer için Gerekli Css Kodları Başlangıcı*/
.footer-masonry-js {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

.footer-col {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

@media (max-width:1200px) {
    .footer-masonry-js {
        gap: 40px;
    }
}

@media (max-width:991px) {
    .footer-masonry-js {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width:575px) {
    .footer-col {
        flex: 1 1 100%;
    }
}

.footer-masonry,
.footer-masonry-js {
    font-family: inherit;
    font-size: 14px;
}

.footer-group {
    margin-bottom: 0px;
}

.footer-title {
    font-weight: 600;
    font-size: 15px;
    color: #0b2a55;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

    .footer-title a {
        color: #0b2a55;
        text-decoration: none;
    }

        .footer-title a:hover {
            color: #0d6efd;
            text-decoration: underline;
        }

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 10px;
    }

.footer-link {
    position: relative;
    color: #3f4b5a;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

    .footer-link:hover {
        color: #0d6efd;
        transform: translateX(4px);
    }

    .footer-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background-color: #0d6efd;
        transition: width 0.3s ease;
    }
    .footer-link:hover::after {
        width: 100%;
    }
@media (max-width: 991px) {
    .footer-title {
        font-size: 14px;
    }
}
/*Footer için Gerekli Css Kodları Bitişi*/