.header-1 {
    width: 100%
}

.header-1 .bigyapaan__section {
    margin: 1rem
}

.header-1-middle {
    padding: 1rem 0
}

.header-1-bottom {
    background: var(--theme-color);
    padding: .5rem 0
}

#webStickyHeader.sticky {
    animation: stickyHeaderTransition .5s alternate
}

.logo__section {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem
}

@media(max-width:600px) {
    .logo__section {
        flex-direction: column-reverse
    }
}

.logo__section .bigyapaan__section {
    margin-left: auto;
    margin-bottom: 1rem;
    margin-right: 0
}

.header__navbar {
    width: 100%;
    display: flex;
    align-items: center;
    grid-gap: 1rem
}

.header__navbar .hamburger__icon {
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, .3333333333);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    display: none
}

@media(max-width:992px) {
    .header__navbar .hamburger__icon {
        display: flex
    }
}

.header__navbar .hamburger__icon i {
    color: #fff;
    font-size: 24px
}

.header__navbar .navbar__menu {
    display: flex;
    align-items: center;
    grid-gap: 3rem
}

@media(max-width:992px) {
    .header__navbar .navbar__menu {
        display: none
    }
}

.header__navbar .navbar__menu .nav__link {
    color: #fff !important;
    letter-spacing: .5px;
    font-size: 22px;
    font-weight: 300
}

.header__navbar .navbar__cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 1rem
}

.header__navbar .navbar__cta .nav__link {
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px !important;
    background: #c40016;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.header__navbar .navbar__cta .nav__link:hover {
    background: #fff
}

.header__navbar .navbar__cta .nav__link:hover svg {
    fill: var(--theme-color)
}

.header__navbar .navbar__cta .nav__link:hover .search__icon {
    color: var(--theme-color)
}

.header__navbar .navbar__cta .nav__link svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
    transition: all 300ms ease-in-out
}

.header__navbar .navbar__cta .nav__link .search__icon {
    font-size: 22px;
    color: #fff;
    transition: all 300ms ease-in-out
}

@media(max-width:600px) {
    .logo__date {
        display: flex;
        align-items: center;
        flex-direction: column
    }
}

.logo__date .header__logo {
    height: auto;
    max-width: 250px
}

@media(max-width:992px) {
    .logo__date .header__logo {
        max-width: 200px
    }
}

.logo__date .header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.logo__date .today__date {
    margin-top: .5rem
}

@media(max-width:600px) {
    .logo__date .today__date {
        text-align: center
    }
}

.logo__date .today__date span {
    font-size: 14px;
    margin-right: 5px;
    color: #656565
}

.mobile__navbar {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    min-width: 500px;
    height: 100vh;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    grid-gap: 3rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 500ms cubic-bezier(.68, -.55, .27, 1.55)
}

@media(max-width:500px) {
    .mobile__navbar {
        min-width: 100%
    }
}

.mobile__navbar.active {
    transform: scaleX(1);
    opacity: 1;
    visibility: visible;
    transition-delay: 50ms
}

.mobile__navbar-close {
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    background: var(--theme-color);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    position: absolute;
    top: 2rem;
    right: 1rem
}

@media(max-width:500px) {
    .mobile__navbar-close {
        top: 1rem
    }
}

.mobile__navbar-close i {
    color: #fff;
    font-size: 24px
}

.mobile__navbar .header__logo {
    padding: 1rem 2rem
}

@media(max-width:500px) {
    .mobile__navbar .header__logo {
        max-width: 150px;
        padding: 1rem
    }
}

.mobile__navbar-menu {
    flex: 1;
    padding: 0 2rem
}

@media(max-width:500px) {
    .mobile__navbar-menu {
        padding: 1rem
    }
}

.mobile__navbar-menu .nav__list {
    display: flex;
    position: relative
}

.mobile__navbar-menu .nav__list:hover::before {
    width: 100%;
    opacity: 1
}

.mobile__navbar-menu .nav__list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #f6f6f6;
    width: 0;
    height: 100%;
    opacity: 0;
    transition: all 300ms ease-in-out
}

.mobile__navbar-menu .nav__list .nav__link {
    width: 100%;
    height: 100%;
    position: relative;
    color: var(--theme-color);
    font-size: 16px;
    letter-spacing: .5px;
    padding: 1rem
}

.mobile__navbar-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 1rem;
    background: var(--secondary-color);
    padding: 1rem 0
}

.mobile__navbar-footer .powered__by {
    max-width: 100px
}

.mobile__navbar-footer .powered__by img {
    width: 100%;
    object-fit: contain
}

.backdrop__overlay {
    background: #000;
    backdrop-filter: blur(50px);
    opacity: .6;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    transition: all 500ms ease-in-out
}

.news__ticker-slider {
    display: flex;
    align-items: center;
    width: 100%;
    grid-gap: 1rem;
    padding: .7rem 0
}

@media(max-width:580px) {
    .news__ticker-slider {
        flex-direction: column;
        align-items: flex-start
    }
}

.news__ticker-slider .slider-label {
    padding-right: 1rem;
    position: relative;
    border-right: 2px solid #999
}

.news__ticker-slider .slider-label .slider-title {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    white-space: nowrap
}

.news__ticker-slider marquee {
    position: relative
}

.news__ticker-slider marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5rem;
    height: 100%;
    background: linear-gradient(to left, transparent, #f6f6f6);
    z-index: 5
}

.news__ticker-slider marquee::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 100%;
    background: linear-gradient(to right, transparent, #f6f6f6);
    z-index: 5
}

.news__ticker-slider .news__ticker-menu {
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    position: relative
}

.news__ticker-slider .news__ticker-menu .news__ticker-list {
    position: relative;
    border-right: 2px solid var(--secondary-color);
    padding-right: 1rem
}

.news__ticker-slider .news__ticker-menu .news__ticker-list:last-child {
    border-right: 0
}

.news__ticker-slider .news__ticker-menu .news__ticker-list .news__ticker-link {
    display: flex;
    align-items: center;
    white-space: nowrap;
    grid-gap: .5rem;
    letter-spacing: .5px;
    font-size: 14px;
    color: #333
}

.news__ticker-slider .news__ticker-menu .news__ticker-list .news__ticker-link label {
    margin: 0;
    color: #000
}

.news__ticker-slider .news__ticker-menu .news__ticker-list .news__ticker-link .percent-change {
    display: flex;
    align-items: center;
    grid-gap: .3rem;
    color: var(--secondary-color)
}

.fullwidth__dropdown {
    width: 100%;
    height: auto;
    max-height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    padding: 5rem 0;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms cubic-bezier(.68, -.55, .27, 1.55)
}

@media(max-width:992px) {
    .fullwidth__dropdown {
        padding: 3rem 0
    }
}

@media(max-width:500px) {
    .fullwidth__dropdown {
        padding: 1rem 0
    }
}

.fullwidth__dropdown.active {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible
}

.fullwidth__dropdown .dropdown__wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 2rem
}

.fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem
}

@media(max-width:1024px) {
    .fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news {
        grid-gap: 2rem
    }
}

@media(max-width:992px) {
    .fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news {
        grid-template-columns: repeat(2, 1fr)
    }
}

.fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem
}

@media(max-width:650px) {
    .fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card {
        display: flex;
        flex-direction: column;
        grid-gap: .5rem
    }
}

.fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-img {
    grid-column: 3/4;
    grid-row: 1/2;
    height: 120px;
    aspect-ratio: 1/1
}

@media(max-width:650px) {
    .fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-img {
        grid-column: unset;
        grid-row: unset;
        width: 100%;
        max-width: 150px;
        height: 150px
    }
}

@media(max-width:480px) {
    .fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-img {
        max-width: 100px;
        height: 100px
    }
}

.fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-details {
    grid-column: 1/3;
    grid-row: 1/2
}

@media(max-width:650px) {
    .fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-details {
        grid-column: unset;
        grid-row: unset
    }
}

.fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-details .news__title {
    line-height: 25px
}

.fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-details .news__title a {
    font-size: 20px;
    color: #333 !important;
    letter-spacing: .5px;
    font-weight: 400
}

@media(max-width:650px) {
    .fullwidth__dropdown .dropdown__wrapper .trending__dropdown-news .dropdown__card-details .news__title a {
        font-size: 16px
    }
}

.fullwidth__search {
    width: 100%;
    height: auto;
    max-height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    padding: 5rem 0;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms cubic-bezier(.68, -.55, .27, 1.55)
}

@media(max-width:992px) {
    .fullwidth__search {
        padding: 3rem 0
    }
}

@media(max-width:500px) {
    .fullwidth__search {
        padding: 1rem 0
    }
}

.fullwidth__search.active {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible
}

.fullwidth__search .dropdown__wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 2rem
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem
}

@media(max-width:1024px) {
    .fullwidth__search .dropdown__wrapper .trending__dropdown-news {
        grid-gap: 2rem
    }
}

@media(max-width:992px) {
    .fullwidth__search .dropdown__wrapper .trending__dropdown-news {
        grid-template-columns: repeat(2, 1fr)
    }
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem
}

@media(max-width:650px) {
    .fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card {
        display: flex;
        flex-direction: column;
        grid-gap: .5rem
    }
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-img {
    grid-column: 3/4;
    grid-row: 1/2;
    height: 120px;
    aspect-ratio: 1/1
}

@media(max-width:650px) {
    .fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-img {
        grid-column: unset;
        grid-row: unset;
        width: 100%;
        max-width: 150px;
        height: 150px
    }
}

@media(max-width:480px) {
    .fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-img {
        max-width: 100px;
        height: 100px
    }
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-details {
    grid-column: 1/3;
    grid-row: 1/2
}

@media(max-width:650px) {
    .fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-details {
        grid-column: unset;
        grid-row: unset
    }
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-details .news__title {
    line-height: 25px
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-details .news__title a {
    font-size: 20px;
    color: #333 !important;
    letter-spacing: .5px;
    font-weight: 400
}

@media(max-width:650px) {
    .fullwidth__search .dropdown__wrapper .trending__dropdown-news .dropdown__card-details .news__title a {
        font-size: 16px
    }
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news.search__recommendation {
    margin-top: 4rem;
    display: none;
    transform-origin: top;
    animation: topBottomAnimation 300ms ease-in-out
}

.fullwidth__search .dropdown__wrapper .trending__dropdown-news.search__recommendation.active {
    display: grid
}

.titles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 300ms ease-in-out
}

.titles::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: .1rem;
    background: #f6f6f6
}

.dropdown__title {
    background: #fff;
    position: relative;
    padding-right: 1rem;
    color: var(--theme-color);
    font-size: 34px;
    font-weight: 500
}

@media(max-width:450px) {
    .dropdown__title {
        font-size: 24px
    }
}

.closing__btn {
    position: relative;
    z-index: 5;
    padding-left: 1rem;
    background: #fff
}

.closing__btn .dropdown__close {
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none
}

.closing__btn .dropdown__close span i {
    display: flex;
    font-size: 20px;
    color: #fff
}

.global__search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width:650px) {
    .global__search {
        flex-direction: column-reverse;
        grid-gap: 1rem;
        align-items: flex-end
    }
}

.search__input {
    display: flex;
    align-items: center;
    grid-gap: .5rem
}

@media(max-width:650px) {
    .search__input {
        width: 100%
    }
}

.search__input input {
    width: 100%;
    height: 100%;
    background: 0 0;
    outline: none;
    border: 0;
    padding: 0 1.5rem;
    font-size: 16px;
    color: #333;
    min-width: 500px;
    background: #f6f6f6;
    height: 45px;
    border-radius: 50px;
    font-weight: 300;
    letter-spacing: .5px
}

@media(max-width:650px) {
    .search__input input {
        min-width: 100px
    }
}

.search__input input::placeholder {
    color: #777;
    font-weight: 300;
    letter-spacing: .5px;
    font-size: 14px
}

.search__input .btn__submit {
    min-width: 45px;
    height: 45px;
    border-radius: 50px;
    border: 0;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out
}

.search__input .btn__submit:hover {
    opacity: .8
}

.search__input .btn__submit span i {
    color: #fff;
    font-size: 20px;
    display: flex
}

.search__close {
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none;
    transition: all 300ms ease-in-out
}

.search__close:hover {
    opacity: .8
}

.search__close span i {
    display: flex;
    font-size: 20px;
    color: #fff
}

.empty__message {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2rem
}

.empty__message.active {
    display: none
}

.empty__message-text {
    font-weight: 300;
    font-size: 22px;
    color: #999;
    letter-spacing: .5px;
    text-align: center
}

@media(max-width:500px) {
    .empty__message-text {
        font-size: 18px
    }
}

.dropdown__wrapper {
    max-width: 1336px;
    margin: auto
}

@media(max-width:1336px) {
    .dropdown__wrapper {
        max-width: 95%
    }
}

.sticky {
    position: fixed;
    top: 0;
    z-index: 998;
    width: 100%
}

@keyframes stickyHeaderTransition {
    0% {
        transform: translateY(-100px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes topBottomAnimation {
    0% {
        transform: scaleY(0);
        opacity: 0
    }

    100% {
        transform: scaleY(1);
        opacity: 1
    }
}