body {
    background: #e6e4e7;
}

body::-webkit-scrollbar {
    display: none;
}

body *::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body *::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: .5rem;
}

body *::-webkit-scrollbar-thumb {
    background: #d50008;
    border-radius: .5rem;
}

body *::-webkit-scrollbar-thumb:hover {
    background: #7a060e;
}

.navbar,
footer {
    background: linear-gradient(78deg, #d50008 0%, #90000a 48%);
}

.nav-link {
    color: white;
}

a {
    text-decoration: none;
}

.dropdown-menu {
    background: #90000a;
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background: unset;
    color: rgb(180, 180, 180);
}

.col-lg-3 {
    background: #d50008;
}

#headlines {
    border-radius: .5rem;
    background: #90000a;
}

.clamp-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

img {
    transition: transform 0.5s ease;
}

.banner img:hover,
.carousel img:hover {
    transform: scale(1.1);
}

.hidden {
    display: none;
}

@media (max-width: 1199px) {
    #headlines {
        min-height: 380px;
        max-height: 380px;
        overflow: auto;
    }
}

@media (min-width: 1200px) {
    .col-lg-9 {
        min-height: calc(85vh - 2px);
    }

    .khususMobile {
        display: none;
    }

    #headlines {
        min-height: 440px;
        max-height: 440px;
        overflow: auto;
    }
}