.topBar {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--bg);
    box-shadow: 0 0 10px #5499c7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topBar .left .menu {
    display: flex;
}

.topBar .left .menu li {
    height: 50px;
    position: relative;
}

.topBar .left .menu li.active,
.topBar .left .menu li:hover .menu {
    border-bottom: 3px solid #fff;
}

.topBar .left .menu li.ktgr:hover ul {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

.topBar .left .menu li ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
    min-width: 250px;
    height: auto;
    background: #5499c7;
    box-shadow: 0 0 10px #2682c0;
    visibility: hidden;
    opacity: 0;
    transition: 250ms;
}

.topBar .left .menu li ul li {
    height: 40px;
    line-height: 15px;
}

.topBar .left .menu li ul li:hover {
    background: #6bb4e4;
}

.topBar .left .menu li ul li a {
    font-size: 16px;
}

.topBar .left .menu li a {
    display: block;
    height: 50px;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

.topBar .left .menu li a.bar {
    font-size: 24px;
    margin-top: -6px;
}

.topBar .left .menu li a.logo {
    font-size: 24px;
    margin-top: -14px;
}

.topBar .bottom {
    width: 30%;
}

.topBar .bottom input {
    width: 80%;
    height: 40px;
    font-size: 14px;
    font-weight: 300;
    background: transparent;
    color: #fff;
    padding-left: 25px;
    border: none;
    border-bottom: 2px solid #fff;
}

.topBar .bottom button {
    padding: 10px;
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.topBar .right {
    padding-right: 15px;
}

.topBar .right a {
    color: #fff;
    font-weight: 700;
}

@media all and (max-width: 1280px) {
    .topBar {
        position: fixed;
        z-index: 4;
        top: 0;
        left: 0;
    }

    .topBar .left ul.menu li a.logo {
        margin-top: -14px;
        font-size: 18px;
    }

    .topBar .right {
        font-size: 14px;
    }

    .topBar .left .menu .a {
        display: none;
    }

    .disabled {
        display: none;
    }
}

@media all and (max-width: 600px) {
    body {
        width: 100%;
    }

    .topBar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .topBar .left .logo {
        margin-left: -15px;
    }

    .haberler .yeni {
        padding: 0;
        margin-top: 25px;
    }
}