@charset "UTF-8";

.sedi_container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    text-align: center;
    align-items: center;
    background-color: white;
}





.sedi_column {
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(186, 185, 189, 0.121);
}


.sedi_column_first {
    background-color: rgba(186, 185, 189, 0.537);

}

.location_icon {
    fill: rgb(170, 169, 169);
    width: 25px;
    height: 25px;
    padding-top: 20px;
    padding-bottom: 25px;


}


.sedi_column:hover {
    background-color: rgba(186, 185, 189, 0.196);

    .location_icon {
        fill: #60ab76;
    }
}


.sedi_column h1 {
    font-weight: lighter;
    text-transform: uppercase;
    color: black;

}

.sedi_column p {
    color: rgba(0, 0, 0, 0.646);
    text-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;

}

.sedi_column a {
    text-decoration: none;
}






/* Media query for smaller screens */
@media (max-width: 768px) {

    .sedi_container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }


}