* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.search-box {
    max-width: 180px;
    /* Change as needed */
}

.post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-h5 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-login {
    background-color: #289dcc;
    padding: 0px 10px;
    border-radius: 6px;
    margin-left: 8px;
}

.btn-login:hover{
    background-color:#2a82a6;
}

.btn-primary-col {
    background: #289dcc;
}

.btn-custom {
    background-color: #289dcc;
    border-color: #289dcc;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #2a82a6;
    border-color: #2a82a6;
    color: #fff;
}

.text-footer {
    color: #289dcc;
}

/* Category Tabs */

.nav-pills .nav-link {
    background: transparent;
    color: #000;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-weight: 600;
    padding: 6px 12px;
    transition: all .3s ease;
    margin: 0 0 0 10px;
}

/* Hover */

.nav-pills .nav-link:hover {
    color: #289dcc;
    border-color: #289dcc;
}

/* Active */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: #289dcc;
    border-color: #289dcc;
    color: #fff;
}

/* Active Hover */

.nav-pills .nav-link.active:hover {
    background: #1f84b3;
    border-color: #1f84b3;
    color: #fff;
}

.img-hover {
    overflow: hidden;
    border-radius: 8px;
}

.img-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    border-radius: 8px;
}

.img-hover:hover img {
    transform: scale(1.15);

}

.img-hover-2 {
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.img-hover-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.img-hover-2:hover img {
    transform: scale(1.15);
    border-radius: 4px 4px 0 0;
}

.img-hover-3 {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.img-hover-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.img-hover-3:hover img {
    transform: scale(1.15);
    border-radius: 5px 5px 0 0;
}

@media(max-width:1400px) {
    .nav-item a {
        font-size: 14px;
    }
}

/* Mobile & Tablet */
.post-border {
    border-bottom: 1px solid #dee2e6;
}

/* Desktop */
@media (min-width:992px) {
    .post-border {
        border-top: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
    }
}

@media (max-width:992px) {

    .nav-pills .nav-link {
        margin: 10px 0 0 10px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0;
        border-color: white;
    }

    .navbar-toggler {
        box-shadow: 0 0 0 0;
        border-color: white;
        padding: 5px 8px;
    }

    .navbar-toggler-icon {
        width: 26px;
        height: 26px;
    }

    .mob-padding {
        padding: 5px 0;
    }

    .btn-login {
        max-width: fit-content;
        margin-left: 0px;
        margin-bottom: 10px;
    }
}

/* Search box */
.search-box {
    width: 250px;
    flex-shrink: 0;
    height: 40px;
}

/* Menu remaining */
.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

/* Disable Links wrap */
.navbar-nav .nav-link {
    white-space: nowrap;
}