@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --bs-body-font-family: "Inter", "Poppins", sans-serif;
    --bs-primary: #e18d16;
    --bs-primary-lite: #f5cd3d;
    --bs-link-hover-color: #ffd648;
    --bs-link-color: #f0b564;
    --bs-dark: #070a13;
    --bs-dark-lite: #212529;
    --bs-light: #f9fafb;
    --bs-dim-white: gray;
    --bs-active: #1a1a1a;
}

* {
    font-family: var(--bs-body-font-family);
}

button:focus,
input:focus,
textarea:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 103, 207, 0.158) !important;
    outline: none !important;
}

.dropdown-menu {
    border-radius: 3px;
}

.dark-placeholder::placeholder {
    color: var(--bs-dim-white);
}

.active {
    font-weight: 600;
    color: var(--bs-link-color) !important;
}

.list-unstyled>li {
    line-height: 40px;
}

.hero {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #212529;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 2rem;
    background-position: top;
}

.nav-w>.nav-item>.nav-link {
    color: white;
}

.carousel-indicators {
    padding: 0px;
    margin: 0px;
    justify-content: left;
    height: 115px;
    align-items: center;
    gap: 20px;
}

.carousel-indicators>img {
    border-radius: 11px;
}

.carousel-indicators [data-bs-target] {
    margin-top: 10px;
    height: 50px;
    width: 84px;
    opacity: 0.5;
    object-fit: cover;
    padding: 0px;
    margin: 0px;
}

.carousel-indicators [data-bs-target].active {
    opacity: 100%;
}

.hero-overlay {
    background: linear-gradient(6deg, rgb(0 0 0 / 91%), rgb(0 0 0 / 91%), #000000c9, #00000021);
    position: absolute;
    inset: 0;
}

.nav-bar-next {
    background-color: white;
    width: 100%;
    position: absolute;
    top: 0px;
    height: 100%;
    transition: all 0.3s ease 0s;
    height: 100%;
    overflow: scroll;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-weight: 800;
    font-size: 2rem;
}

.btn-custom {
    border-radius: 0.5rem;
    font-weight: 600;
}

.img-cover {
    object-fit: cover;
}

.category-list a {
    font-size: medium;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bs-dark);
    text-decoration: none;
    font-weight: 500;
    margin: 10px;
}

.r-text, .r-text > a {
    font-size: 16px;
}

.display-7 {
    font-size: 1.5rem;
    font-weight: 700;
}

.category-list a:hover {
    color: var(--bs-dark-lite);
}

.cursor-pointer {
    cursor: pointer;
}

.navbar-toggler {
    padding: 0px;
}

    .display-8 , h5{
        font-size: 1rem;
        font-weight: 600;
    }
@media(max-width: 650px) {
    .md-flex-center {
        display: flex;
        gap: 7px;
        overflow: auto;
        width: 80%;
        padding-left: 0px;
        padding-right: 0px;
    }

    .r-text, .r-text > a {
        font-size: 14px;
    }
    .display-6 {
        font-size: 1.3rem;
    }        
    .display-7 {
        font-size: 1.2rem;
        font-weight: 700;
    }
}