﻿.columns {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.column {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(253, 253, 253, 0.1);
}
.column h3 {
    color: #00c4cc;
}
.containers {
    
    margin: 20px auto;
    padding: 20px;
}
h2 {
    
    text-align: center;
    margin-bottom: 40px;
}
.section-title {
    font-size: 1.3em;
    color: #00c4cc;
    align-content: center;
    font-weight: bolder;
    margin-top: 20px;
}
.list-item {
    margin: 10px 0;
    color: #000205;
    font-size: 1.3em;
    font-weight: inherit;
}

.card {
    border: none;
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.05);
}
.card-img-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
.section-titles {
    text-align: center;
    margin: 40px 0;
}
.st-iconbox{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
}
.st-blue-box{
    height: 900%;
}
@media screen and (max-width: 928px){
    .st-iconbox {
        height: 100%
    }
}

.language-selector {
    margin: 20px;
    margin-top: 10px;
}
.language-selectors {
    margin: 20px;
    display: none;
}

.language-selector button {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
}

.content {
    display: none; /* Tüm içerikler başlangıçta gizli */
}

.content.active {
    display: block; /* Aktif içerik görünür */
}
@media screen and (max-width: 991px) {
    .language-selectors{
        display: flex;
    }
    
    
}
@media screen and (max-width: 991px) {
    .columns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
