@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

html,
body {
    width: 100%;
    height: auto;
    min-height: 100%;
    font-family: "Roboto", sans-serif;
    background-color: #0b1748;
    transition: background-color 0.3s ease;
}

/* Dark mode styles */
html.dark,
html.dark body {
    background-color: #0b1748;
}

/* Section dark mode - using attribute selector for Tailwind classes */
html:not(.dark) section[class*="pt-3"] {
    background-color: #ffffff;
}

html.dark section[class*="pt-3"] {
    background-color: #0b1748;
}

/* Smooth transitions for theme changes */
section {
    transition: background-color 0.3s ease;
}

/* Section header borders - black in light mode, white in dark mode */
.section-header-border {
    border-color: #000000;
}

html.dark .section-header-border {
    border-color: #ffffff;
}

a {
    text-decoration: none;
}
.only-mobile-ad {
    display: none;
}

.cookies {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    background-color: #000;
    box-sizing: border-box;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 99999;
}
.cookies p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.cookies a {
    display: inline-block;
    padding: 7px 15px;
    background-color: #0052f9;
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
}

.container {
    width: 100%;
    max-width: 1300px;
    height: auto;
    margin: 0px auto;
    
}
.postintitle {
    display: inline-block;
    margin: 0px 5px;
    filter: brightness(0) invert(0.8);
}
.searchbox {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.searchbox.active {
    display: flex;
}
.searchbox .searchbox__pop {
    width: 300px;
    height: auto;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    
    display: flex;
    flex-direction: column;
}
.searchbox .searchbox__pop form input,
button {
    
}
.searchbox .searchbox__pop form button {
    
}
.searchbox .searchbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #000;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header {
    width: 100%;
    height: auto;
    background-color: #0b1748;
    border-bottom: 1px solid #dddddd47;
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    left: 0px;
    z-index: 9999;
}
.header .header__block {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .header__block .header__block--nav ul li {
    display: inline-block;
    padding: 15px 10px;
    position: relative;
}
.header .header__block .header__block--nav ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #0b1748;
}

.header .header__block .header__block--nav ul li a img {
    width: 27px;
    filter: brightness(0) invert(1);
}
.header .header__block .header__block--nav ul li a:hover {
    border-bottom: 1px solid #f2ad1c;
}

.header .header__block .header__block--nav ul li .submenu {
    position: absolute;
    top: 30px;
    left: 0px;
    width: 240px;
    height: auto;
    box-sizing: border-box;
    padding: 10px;
    background-color: #fff;
    display: none;
}
.header .header__block .header__block--nav ul li.active .submenu {
    display: block;
}

.header .header__block .header__block--nav ul li .submenu li {
    width: 100%;
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    max-height: 35px;
    padding: 0px 10px;
}
.header .header__block .header__block--nav ul li .submenu li a {
    color: #000;
}
.header .header__block .header__block--nav ul li .submenu li a:hover {
    border-bottom: 0px;
    color: #15132b;
}
.header .header__block .header__block--nav--hamburger {
    margin-right: 30px;
    float: left;
    display: none;
    position: absolute;
    left: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.header .header__block .header__block--nav--hamburger.mobile-menu-toggle {
    display: none;
}

.header .header__block .header__block--nav--hamburger .hamburger-line {
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.header .header__block .header__block--nav--hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header .header__block .header__block--nav--hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.header .header__block .header__block--nav--hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}
.header .header__block .header__block--search img.search--icon {
    padding: 5px 12px;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    margin-right: 0;
    transition: opacity 0.3s ease;
}
.header-icon:hover {
    opacity: 0.8;
}
.header-icon svg {
    width: 24px;
    height: 24px;
}

.main {
    width: 100%;
    height: auto;
}
.main .featured {
    width: 100%;
    height: auto;
    margin-top: 10px;
    box-sizing: border-box;
    background-color: #0b1748;
}
.main .featured .featured__top {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.main .featured .featured__top .featured__top--big {
    flex-basis: 70%;
}
.main .featured .featured__top .featured__top--side {
    flex-basis: 30%;
}
.main .featured .featured__list {
    display: flex;
    justify-content: space-between;
}
.main .ads {
    width: 100%;
    height: 130px;
    background-color: red;
    display: none;
}
.main .news {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 5px 0px;
    background-color: #dcdcdc;
    display: flex;
    justify-content: space-between;
}
.main .news .google-auto-placed {
    display: none !important;
}
.main .news .news__content {
    flex-basis: 72%;
    box-sizing: border-box;
    padding-right: 10px;
    max-width: 100%;
}
.main .news .news__content .news__content--top {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2a3a7d;
}
.main .news .news__content .news__content--top h4 {
    color: #fff600;
    font-size: 21px;
    font-weight: 500;
    font-family: inherit;
}
.main .news .news__content .news__content--top h4 span.rand--item {
    display: none;
}
.main .news .news__content .news__content--top h4 span.rand1 {
    display: inline-block;
}
.main .news .news__content .news__content--top h4 span a {
    color: #fff;
}
.main .news .news__content .news__content--top h4 img {
    display: block;
    float: left;
    height: 20px;
    margin-right: 7px;
}
.main .news .news__content .news__content--top .news__content--top--sub ul li {
    display: inline-block;
    box-sizing: border-box;
    padding: 0px 10px;
}
.main
    .news
    .news__content
    .news__content--top
    .news__content--top--sub
    ul
    li
    a {
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    font-weight: 300;
}
.main .news .news__content .news__content--items {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-left: 10px;
}
.main .news .news__sidebar {
    flex-basis: 28%;
    overflow-x: hidden;
}
.main .news .news__sidebar .ads {
    margin: 10px 0px;
}
.main .news .news__sidebar .news__sidebar--top {
    width: 100%;
    height: 40px;
    background-color: #2a3a7d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}
.main .news .news__sidebar .news__sidebar--top h4 {
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
}
.main .news .news__sidebar .news__sidebar--top .sidebar--top--double {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
.main .news .news__sidebar .news__sidebar--top .sidebar--top--double ul {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
.main .news .news__sidebar .news__sidebar--top .sidebar--top--double ul li {
    display: inline-block;
    box-sizing: border-box;
    width: 49%;
    height: 39px;
    line-height: 39px;
    border: 0px;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
}
.main
    .news
    .news__sidebar
    .news__sidebar--top
    .sidebar--top--double
    ul
    li:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.main .news .news__sidebar .news__sidebar--top .sidebar--top--double ul li h4 {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
}
.main .news .news__sidebar .news__sidebar--items {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0px 15px;
    background-color: #2a3a7d;
    
}
.main .news .news__sidebar .news__sidebar--items.side {
    display: none;
}
.main .news .news__sidebar .news__sidebar--items.side-2 {
    display: block;
}

.footer {
    width: 100%;
    height: auto;
}
.footer .footer__block {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .footer__block .footer__block--logo {
    flex-basis: 24%;
    height: auto;
}
.footer .footer__block .footer__block--info {
    box-sizing: border-box;
    padding-left: 10px;
    flex-basis: 24%;
}
.footer .footer__block .footer__block--info h5 {
    font-size: 11px;
    color: #262626;
    font-weight: bold;
}
.footer .footer__block .footer__block--info ul li {
    display: inline-block;
    font-size: 9.6px;
    color: #262626;
    box-sizing: border-box;
    padding: 2px 7px;
    border-right: 1px solid #262626;
}
.footer .footer__block .footer__block--info ul li:first-child {
    padding-left: 0px;
}
.footer .footer__block .footer__block--info ul li:last-child {
    border-right: 0px;
}
.footer .footer__block .footer__block--nav {
    flex-basis: 28%;
}
.footer .footer__block .footer__block--nav ul li {
    display: inline-block;
    padding: 0px 5px;
}
.footer .footer__block .footer__block--nav ul li a {
    font-size: 11px;
    font-weight: 700;
    color: #262626;
}

.slick-dots {
    width: 100%;
    height: auto;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    box-sizing: border-box;
    padding: 0px 7px;
}
.slick-dots li button {
    text-indent: -9999px;
    background-color: #fff;
    border: 0px;
    outline: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.slick-dots li.slick-active button {
    background-color: #fff600;
}

.sidebar__follow {
    width: 100%;
    height: 235px;
    box-sizing: border-box;
    padding-top: 15px;
}
.sidebar__follow .sidebar__follow--top {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.sidebar__follow .sidebar__follow--top h3 {
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    font-weight: 700;
}
.sidebar__follow .sidebar__follow--social {
    width: 100%;
    height: auto;
}
.sidebar__follow .sidebar__follow--social ul {
    width: 100%;
    height: auto;
    text-align: center;
    box-sizing: border-box;
    padding: 30px 0px;
}
.sidebar__follow .sidebar__follow--social ul li {
    display: inline-block;
    box-sizing: border-box;
    padding: 0px 5px;
}
.sidebar__follow .sidebar__follow--social h4 {
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.sidebar__talents {
    width: 100%;
    height: auto;
    max-height: 375px;
    box-sizing: border-box;
    padding-top: 10px;
}
.sidebar__talents .sidebar__talents--talent {
    width: 100%;
    height: auto;
    max-width: 278px;
    float: left;
}
.sidebar__talents .sidebar__talents--talent .sidebar__talents--talent--image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: 50% 50%;
}
.sidebar__talents .sidebar__talents--talent .sidebar__talents--talent--content {
    padding: 25px 0px;
    box-sizing: border-box;
}
.sidebar__talents
    .sidebar__talents--talent
    .sidebar__talents--talent--content
    p {
    font-size: 20px;
    font-family: "Roboto Condensed", sans-serif;
    color: #fff;
    font-weight: 500;
    text-align: left;
}

.sidebarbig {
    width: 100%;
    height: 305px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 15px 0px;
}
.sidebarbig.sb-155 {
    height: 152.5px;
}
.sidebarbig .sidebarbig--image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: 50% 50%;
}
.sidebarbig .sidebarbig--content {
    width: 100%;
    height: auto;
    margin-top: 10px;
}
.sidebarbig .sidebarbig--content h4 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}
.sidebarbig:hover > .sidebarbig--content h4 {
    color: #fff600;
}
.sidebarbig .sidebarbig--content .sidebarbig--content--info {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.sidebarbig
    .sidebarbig--content
    .sidebarbig--content--info
    .sidebarbig--content--info--date
    span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.sidebarnormal {
    width: 100%;
    height: 100%px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebarnormal .sidebarnormal--image {
    min-width: 125px;
    height: 80px;
    background-size: cover;
    background-position: 50% 50%;
}
.sidebarnormal .sidebarnormal--content {
    height: 100%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.sidebarnormal .sidebarnormal--content h5 {
    font-size: 13px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    color: #fff600;
}
.sidebarnormal .sidebarnormal--content h4 {
    font-size: 16px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300;
    color: #fff;
}

.sidebarnormal:hover > .sidebarnormal--content h4 {
    color: #fff600;
}
.sidebarnormal:hover > .sidebarnormal--content h5 {
    color: #fff;
}
.normalitem {
    flex-basis: calc(25% - 7.5px);
    margin-top: 10px;
    /* display: flex; */
}
.normalitem.ni-140 .normalitem--image {
    height: 140px;
}
.normalitem.nc-155 .normalitem--content {
    margin-top: 0px;
    height: 155px;
}
.normalitem.nf-small .normalitem--content .normalitem--content--title h5 {
    font-size: 13px;
}
.normalitem.nf-small .normalitem--content .normalitem--content--title h4 {
    font-size: 18px;
    line-height: 18px;
}
.normalitem .normalitem--image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: 50% 50%;
}
.normalitem .normalitem--content {
    margin-top: 0px;
    width: 100%;
    height: 160px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.normalitem .normalitem--content .normalitem--content--title h5 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 13px;
    color: #002eff;
}
.normalitem .normalitem--content .normalitem--content--title h4 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    color: #15132b;
    font-size: 18px;
    margin-top: 0px;
    transition: 0.2s color;
}
.normalitem:hover .normalitem--content .normalitem--content--title h4 {
    color: #002eff;
}
.normalitem .normalitem--content .normalitem--content--info {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.normalitem
    .normalitem--content
    .normalitem--content--info
    .normalitem--content--info--date
    img {
    float: left;
    margin-right: 6px;
    margin-top: 2px;
}
.normalitem
    .normalitem--content
    .normalitem--content--info
    .normalitem--content--info--date
    span {
    float: left;
    font-size: 10px;
    color: #9b9b9b;
    font-weight: 400;
}
.normalitem
    .normalitem--content
    .normalitem--content--info
    .normalitem--content--info--share
    img {
    float: left;
}

.fullitem {
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    display: inline-block;
}
.fullitem.h-200 {
    height: 200px;
}
.fullitem.h-410 {
    height: 410px;
}
.fullitem.h-122d5 {
    height: 122.5px;
}
.fullitem.h-122d5 .fullitem--image {
    padding: 10px 15px;
}
.fullitem.h-122d5 .fullitem--image .fullitem--content h3 {
    font-size: 16.5px;
    font-weight: 400;
}
.fullitem.pr-10 {
    padding-right: 10px;
}
.fullitem.mt-10 {
    margin-top: 10px;
}
.fullitem.fb-50 {
    flex-basis: 50%;
}
.fullitem.h-295 {
    height: 295px;
}
.fullitem.h-295 .fullitem--image {
    padding: 20px;
}
.fullitem.h-295 .fullitem--image .fullitem--content h5 {
    font-size: 13px;
}
.fullitem.h-295 .fullitem--image .fullitem--content h3 {
    font-size: 29px;
    font-weight: 700;
    line-height: 30px;
}
.fullitem.f-small .fullitem--image {
    padding: 20px 10px;
}
.fullitem.f-small .fullitem--image .fullitem--content h5 {
    font-size: 10px;
}
.fullitem.f-small .fullitem--image .fullitem--content h3 {
    font-size: 25px;
    font-weight: 700;
}
.fullitem .fullitem--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    box-sizing: border-box;
    padding: 10px 10px;
}
.fullitem .fullitem--image::before {
    position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}
.fullitem .fullitem--image .fullitem--content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 9;
}
.fullitem .fullitem--image .fullitem--content h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    font-family: "Roboto Condensed", sans-serif;
}
.fullitem .fullitem--image .fullitem--content h5 span {
    background-color: red;
    padding: 0 5px;
    font-size: 15px;
}
.fullitem .fullitem--image .fullitem--content h3 {
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    font-size: 40px;
    color: #fff;
    font-weight: 900;
    font-family: "Roboto Condensed", sans-serif;
    transition: 0.2s color;
    background: #00000094;
    
}


}
.fullitem:hover > .fullitem--image .fullitem--content h3 {
    color: #fffc00;
}
.fullitem .fullitem--image .fullitem--content .fullitem--info {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}
.fullitem
    .fullitem--image
    .fullitem--content
    .fullitem--info
    .fullitem--info--date
    img {
    float: left;
    margin-right: 6px;
    margin-top: 2px;
}
.fullitem
    .fullitem--image
    .fullitem--content
    .fullitem--info
    .fullitem--info--date
    span {
    float: left;
    font-size: 10px;
    color: #fff;
    font-weight: 400;
}
.fullitem
    .fullitem--image
    .fullitem--content
    .fullitem--info
    .fullitem--info--share
    img {
    float: left;
}

.post {
    padding-top: 10px;
}
.post .news {
    padding-bottom: 0px;
}
.post .news .news__content .news__content--top h4 span {
    color: #fff;
    font-size: 18px;
    padding-left: 10px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
}
.post .news .news__content .post__block {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 10px;
    padding-right: 0px;
}
.post .news .news__content .post__block .post__content {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-sizing: border-box;
    padding: 15px 20px;
}
.post .news .news__content .post__block .post__content h5 {
    font-size: 15px;
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
    color: #fafafa;
    text-align: center;
    margin-bottom: 5px;
}
.post .news .news__content .post__block .post__content h5 span {
    background: red;
    padding: 0 10px;
 }   
.post .news .news__content .post__block .post__content h3 {
    font-size: 45px;
    font-weight: 900;
    color: #2b3a7e;
    padding-left: 5px
    padding-bottom: 5px;
    padding-top: 5px;
    text-transform: uppercase;
    font-family: -webkit-body;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -1px;

}

.post .news .news__content .post__block .post__content .kontakt {
    text-align: center;
}

.post .news .news__content .post__block .post__content .kontakt div {
    width: 100%;
    height: auto;
}

.post .news .news__content .post__block .post__content .kontakt div {
    margin-top: 10px;
}
.post .news .news__content .post__block .post__content .kontakt div input,
.post .news .news__content .post__block .post__content .kontakt div textarea {
    width: 100%;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.post
    .news
    .news__content
    .post__block
    .post__content
    .kontakt
    div
    input[type="file"] {
    border: 0px;
}

.post .news .news__content .post__block .post__content .kontakt button {
    width: 100%;
    height: 35px;
    
    background-color: #0052f9;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.post .news .news__content .post__block .post__content .kontakt div textarea {
    height: 65px;
}
.post .news .news__content .post__block .post__content .post__content--image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: 5px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--image::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    
   
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--image
    .post__content--image--slug {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--image
    .post__content--image--slug
    p {
    font-size: 15px;
    color: #fafafa;
    padding-left: 5px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-weight: bold;
    font-family: "Roboto Condensed", sans-serif;
    background: linear-gradient(244deg, transparent 0%, rgb(0 0 0 / 82%) 90%)
}
.post .news .news__content .post__block .post__content .post__content--info {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    border: 1px solid #bfbfbf;
    margin-top: 4px;
}
.post .news .news__content .post__block .post__content .post__content--info ul {
    width: 100%;
    height: auto;
    display: inline-flex;
    align-items: center;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--info
    ul
    li {
    display: flex;
    box-sizing: border-box;
    padding: 0px 25px;
    align-items: center;
    height: 30px;
    border-right: 1px solid #bfbfbf;
    font-size: 13px;
    color: #rgb(0 0 0);
    font-weight: 900;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--info
    ul
    li
    .post__content--info--button {
    float: left;
    margin-right: 5px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--info
    ul
    li:nth-child(3) {
    flex: 5;
    border-right: 0px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--info
    ul
    li:last-child {
    border-right: 0px;
}
.post .news .news__content .post__block .post__content .post__content--text {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 15px 10px;
    font-family: "Roboto", sans-serif;
}
.post .news .news__content .post__block .post__content .post__content--text h4 {
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
}
.post .news .news__content .post__block .post__content .post__content--text p {
    box-sizing: border-box;
    padding: 14px 0px;
    font-size: 18px;
    /* font-family: "Roboto Condensed", sans-serif; */
    color: #000000;
    font-weight: 400;
    text-align: justify;
    font-family: "Roboto", sans-serif;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--text
    img {
    margin: 0px auto;
    max-width: 100%;
    display: flex;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--text
    table {
    border: 0px;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--text
    table
    tbody
    tr
    td {
    box-sizing: border-box;
    padding: 5px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--text
    table
    thead
    tr
    td {
    box-sizing: border-box;
    padding: 5px;
    color: #fff;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--text
    table
    thead {
    background-color: #0052f9;
}
.post .news .news__content .post__block .post__content .post__content--bottom {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--bottom
    .post__content--bottom--tags
    ul {
    padding-left: 70px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--bottom
    .post__content--bottom--tags
    ul
    li {
    display: inline-block;
    margin-top: 7px;
    transition: 0.2s all ease-in;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--bottom
    .post__content--bottom--tags
    ul::before {
    content: "Tagovi:";
    position: absolute;
    top: 5px;
    left: 0px;
    width: 65px;
    height: 26px;
    background-color: red;
    
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    color: #fff;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--bottom
    .post__content--bottom--tags
    ul
    li
    a {
    box-sizing: border-box;
    padding: 6px 15px;
    
    background-color: #dcdcdc;
    color: #585858;
    font-size: 12px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--bottom
    .post__content--bottom--tags
    ul
    li
    a:hover {
    background-color: #0052f9;
    color: #fff;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--bottom
    .post__content--bottom--shares {
    padding-top: 0px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__content--bottom
    .post__content--bottom--shares
    .post__content--bottom--button {
    float: left;
    margin-right: 5px;
}
.post .news .news__content .post__block .post__content .post__related {
    width: 100%;
    height: auto;
    margin-top: 5px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__related
    .post__related--title {
    width: 100%;
    height: 40px;
    background-color: #dcdcdc;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 15px;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__related
    .post__related--title
    h4 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__related
    .post__related--items {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__related
    .post__related--items
    .normalitem {
    border: 1px solid #bfbfbf;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__related
    .post__related--items
    .normalitem
    .normalitem--content
    .normalitem--content--title
    h4 {
    font-size: 16.3px;
    color: #000;
    font-weight: 700;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__related
    .post__related--items
    .normalitem
    .normalitem--content
    .normalitem--content--info {
    justify-content: flex-end;
}
.post .news .news__content .post__block .post__content .post__more {
    margin-top: 15px;
    width: 100%;
    height: auto;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__more
    .post__more--title
    h4 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__more
    .post__more--items {
    width: 100%;
    height: auto;
    margin: 15px 0px;
    display: flex;
    justify-content: space-between;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__more
    .post__more--items
    .post__more--item {
    flex-basis: calc(25% - 7.5px);
    height: 140px;
    box-sizing: border-box;
    padding: 15px;
    background-color: #959595;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__more
    .post__more--items
    .post__more--item
    h5 {
    font-size: 12px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__more
    .post__more--items
    .post__more--item
    p {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}
.post
    .news
    .news__content
    .post__block
    .post__content
    .post__more
    .post__more--items
    .post__more--item
    .post__more--item--share {
    display: flex;
    justify-content: flex-end;
}
.post__end {
    width: 100%;
    height: auto;
    padding: 5px 17px 10px 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    background-color: #293a7d;
    /* display:none !important; */
}
.post__end .post__end--item {
    flex-basis: calc(20% - 5px);
    height: auto;
    /* background-color: red; */
    max-width: 240px;
}
.post__end .post__end--item:nth-child(6) {
    display: none;
}
.post__end .post__end--item img {
    width: 100%;
}

.pagination {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0px 0px;
}
.pagination ul li {
    display: inline-block;
    margin: 0px 3px;
}
.pagination ul li a {
    box-sizing: border-box;
    padding: 5px 10px;
    
    background-color: #bfbfbf;
    color: #5e5f65;
    font-size: 14px;
    font-weight: 500;
}
.category {
    margin-top: 10px;
}
.category .news .news__content .category__block {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 10px;
    padding-right: 0px;
}
.category .news .news__content .category__block .normalitem {
    flex-basis: 100%;
    display: flex;
}
.category .news .news__content .category__block .normalitem .normalitem--image {
    width: 150px !important;
    height: 120px !important;
}
.category
    .news
    .news__content
    .category__block
    .normalitem
    .normalitem--content {
    height: 120px !important;
    margin-top: 0px !important;
}

.double__ads {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.double__ads .dad {
    flex-basis: calc(50% - 5px);
    height: 130px;
    background-color: red;
}

.copyright {
    width: 100%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background-color: #2a3a7d;
}
.copyright p {
    font-size: 12px;
    color: white;
}
.copyright p a {
    color: #0052f9;
}

.banner-center {
    display: none;
}

@media screen and (min-width: 1001px) {
    .header .header__block .header__block--nav ul li:hover > .submenu {
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    .only-mobile-ad {
        display: block;
    }
    
    .mobile-hide-bih {
        display: none;
    }
    .header .header__block {
        height: 80px;
    }
    .header .header__block .header__block--logo {
        max-width: 180px;
        margin: 0px auto;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .header .header__block .header__block--logo img {
        max-width: 180px !important;
        width: auto;
        height: auto;
    }
    
    .header__actions {
        display: flex;
        align-items: center;
        gap: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }
    
    .header__actions .header-icon {
        margin-right: 0;
        padding: 8px;
    }
    
    .header__actions .header__block--search {
        margin-left: 0;
    }
    
    .header__actions .header__block--search img.search--icon {
        padding: 5px 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        border-right: none;
    }
    .header .header__block .header__block--nav ul:first-child,
    .header .header__block .header__block--nav ul.flex {
        display: block !important;
        position: fixed;
        top: 80px;
        left: 0;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        background-color: #fff;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        opacity: 0;
    }
    
    .header .header__block .header__block--nav ul:first-child.mobile-menu-open,
    .header .header__block .header__block--nav ul.flex.mobile-menu-open {
        display: block !important;
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    
    /* Prevent hover effects on mobile menu items */
    .header .header__block .header__block--nav ul.flex.mobile-menu-open li:hover .menu-arrow {
        transform: none !important;
    }
    
    .header .header__block .header__block--nav ul.flex.mobile-menu-open li:hover .submenu {
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Hide all submenus in mobile menu */
    .header .header__block .header__block--nav ul.flex.mobile-menu-open li .submenu,
    .header .header__block .header__block--nav ul.flex.mobile-menu-open li.active .submenu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        padding: 0 !important;
    }
    
    /* Hide menu arrow in mobile menu since submenus are hidden */
    .header .header__block .header__block--nav ul.flex.mobile-menu-open li .menu-arrow {
        display: none !important;
    }
    
    html.dark .header .header__block .header__block--nav ul:first-child,
    html.dark .header .header__block .header__block--nav ul.flex {
        background-color: #0b1748;
    }

    .header .header__block .header__block--nav ul li {
        width: 100%;
        min-height: 50px;
        line-height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    html.dark .header .header__block .header__block--nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .header .header__block .header__block--nav ul li.active a.menucat::before {
        display: none !important;
    }
    .header .header__block .header__block--nav ul li a.menucat::before {
        display: none !important;
    }
    .header .header__block .header__block--nav ul li .submenu {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.03);
        display: none !important;
        margin: 0;
        box-shadow: none;
        border: none;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none;
        max-height: 0 !important;
        overflow: hidden;
        transition: none;
    }
    
    html.dark .header .header__block .header__block--nav ul li .submenu {
        background-color: rgba(255, 255, 255, 0.03);
    }

    .header .header__block .header__block--nav ul li.active .submenu {
        display: none !important;
        max-height: 0 !important;
        padding: 0 !important;
    }

    .header .header__block .header__block--nav ul li .submenu li {
        background-color: transparent;
        padding: 0;
        min-height: 45px;
        line-height: 45px;
        margin: 0;
        display: block;
        box-sizing: border-box;
        padding-left: 40px;
        padding-right: 20px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    html.dark .header .header__block .header__block--nav ul li .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .header .header__block .header__block--nav ul li .submenu li a {
        font-size: 14px;
        font-weight: 400;
        padding: 8px 20px 8px 0;
        color: #fff !important;
        display: block;
        width: 100%;
    }
    
    html.dark .header .header__block .header__block--nav ul li .submenu li a {
        color: #fff !important;
    }
    .header .header__block .header__block--nav ul li a {
        font-size: 16px;
        color: #000;
        font-weight: 700;
        padding: 12px 20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background-color 0.2s ease;
    }
    
    .header .header__block .header__block--nav ul li a:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    html.dark .header .header__block .header__block--nav ul li a {
        color: #fff;
    }
    
    html.dark .header .header__block .header__block--nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    .header .header__block .header__block--nav ul li a:hover {
        border: 0px;
    }
    .header .header__block .header__block--nav--hamburger,
    .header .header__block .header__block--nav--hamburger.mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        cursor: pointer;
    }

    .main .news .news__sidebar {
        display: none;
    }
    .main .news .news__content {
        flex-basis: 100%;
        padding: 0px;
    }
    .main .news .news__content .news__content--items {
        padding-right: 10px;
    }

    .footer .footer__block {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .footer__block .footer__block--logo {
        order: 1;
        flex-basis: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .footer .footer__block .footer__block--info {
        order: 2;
        flex-basis: 30%;
    }
    .footer .footer__block .footer__block--nav {
        order: 2;
        flex-basis: 40%;
    }

    .post .news .news__content .post__block {
        padding-right: 10px;
    }

    .category .news .news__content .category__block {
        padding-right: 10px;
    }

    .post .news {
        flex-wrap: wrap;
    }
    .post .news .news__sidebar {
        display: block;
        flex-basis: 100%;
    }
    .post .news .news__sidebar .news__sidebar--top,
    .post .news .news__sidebar .news__sidebar--items,
    .news .news__sidebar .ads {
        display: none;
    }
    .post .news .news__sidebar .divshow {
        display: block;
    }
    .post .news .news__sidebar .sidebarnormal .sidebarnormal--image {
        min-width: 90px;
        height: 60px;
    }
    .post .news .news__sidebar .sidebarnormal {
        height: 90px;
    }
}
@media screen and (max-width: 820px) {
    .main .featured {
        margin-top: 0!important;
    }
    .main .featured .featured__top {
        flex-wrap: wrap;
    }
    .main .featured .featured__top .featured__top--big {
        flex-basis: 100%;
    }
    .main .featured .featured__top .featured__top--big .fullitem {
        padding-right: 0px;
        

    }
    .main .featured .featured__top .featured__top--side {
        flex-basis: 100%;
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
    }
    .main .featured .featured__top .featured__top--side .fullitem {
        flex-basis: calc(50% - 5px);
        margin-top: 0px;
    }
    .main .featured .featured__list {
        flex-wrap: wrap;
    }

    .normalitem {
        flex-basis: 100%;
        display: flex;
    }
    .normalitem .normalitem--image {
        width: 230px !important;
        height: 100px !important;
    }
    .normalitem .normalitem--content {
        height: 100px !important;
        margin-top: 0px !important;
    }

    .news .fullitem {
        flex-basis: 100%;
    }

    .footer .footer__block .footer__block--nav {
        order: 2;
        flex-basis: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .footer .footer__block .footer__block--info {
        order: 3;
        flex-basis: 50%;
    }

    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__related
        .post__related--items {
        flex-wrap: wrap;
    }

    .post .news .news__content .news__content--top h4 span {
        display: none;
    }
}
@media screen and (max-width: 767px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--info {
        height: auto;
    }
    .post .news .news__content .news__content--top {
        display: none;
    }
    .post .news .news__content .news__content--top.page--top {
        display: flex;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--info
        ul {
        flex-wrap: wrap;
        height: auto;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--info
        ul
        li {
        height: 30px;
        order: 1;
        float: left;
        padding: 0px 20px;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--info
        ul
        li:nth-child(3) {
        order: 2;
        /* flex-basis: 100%; */
        box-sizing: border-box;
        border-left: 1px solid #bfbfbf;
        float: left;
    }
    .banner-center {
        display: flex;
        justify-content: center;
    }
}
@media screen and (max-width: 680px) {
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__more
        .post__more--items {
        flex-wrap: wrap;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__more
        .post__more--items
        .post__more--item {
        flex-basis: calc(50% - 5px);
        margin-top: 10px;
    }
}
@media screen and (max-width: 580px) {
    .main .news .news__content .news__content--top .news__content--top--sub {
        display: none;
        
    }
    .main .news .news__content .news__content--items {
        padding: 5px 5px;
    }
    .main .featured {
        padding: 10px 5px;
    }
    .main .featured .featured__top .featured__top--side {
        flex-wrap: wrap;
    }
    .main .featured .featured__top .featured__top--side .fullitem {
        flex-basis: 100%;
    }
    .main .featured .featured__top .featured__top--side .fullitem:last-child {
        margin-top: 10px;
    }

    .post .news .news__content .post__block {
        padding: 0px 3px;
    }
    .post .news .news__content .post__block .post__content {
        padding: 15px 7px;
    }
    .post .news .news__content .post__block .post__content h3 {
    font-size: 40px;
    font-family: 'system-ui';
    font-weight: 900;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--info
        ul
        li:nth-child(2) {
        border-right: 0px;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--info
        ul
        li:nth-child(4) {
        display: none;
        padding-top: 4px;
        flex-basis: 100%;
        border-top: 1px solid #bfbfbf;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--image {
        height: 280px;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--image
        .post__content--image--slug
        p {
        font-size: 16px;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--text
        video,
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--text
        iframe {
        height: 200px;
    }

    .post__end {
        flex-wrap: wrap;
    }
    .post__end .post__end--item {
        flex-basis: 100%;
        margin-top: 5px;
        max-width: 170px;
    }
    .post__end .post__end--item:nth-child(6) {
        display: block;
    }

    .double__ads {
        flex-wrap: wrap;
    }
    .double__ads .dad {
        flex-basis: 100%;
    }
    .double__ads .dad:last-child {
        margin-top: 10px;
    }
}
@media screen and (max-width: 480px) {
    .header .header__block .header__block--logo img {
        max-width: 240px !important;
        margin: 0px auto;
    }
    .post {
        padding-top: 0px;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--text
        p {
        text-align: left;
    }
    .sidebarnormal .sidebarnormal--content h4 {
        font-size: 18px;
    }
    .fullitem.f-small .fullitem--image .fullitem--content h3 {
        font-size: 22px;
        font-weight: 800;
    }
    .header .header__block .header__block--search {
        display: block !important;
    }
    
    .header__actions .header__block--search {
        display: block !important;
    }
    
    .header__actions .header__block--search img.search--icon {
        display: block !important;
        visibility: visible !important;
    }

    .normalitem .normalitem--content .normalitem--content--title h4 {
        font-size: 18px !important;
        line-height: 19px !important;
    }

    .main .featured .featured__top .featured__top--big .fullitem {
        height: 295px !important;
    }
    .main
        .featured
        .featured__top
        .featured__top--big
        .fullitem
        .fullitem--image
        .fullitem--content
        h3 {
        font-size: 32px;
    }

    .footer .footer__block .footer__block--logo img {
        width: 250px;
    }
    .footer .footer__block .footer__block--info {
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer .footer__block .footer__block--info ul li {
        width: 100%;
        border: 0px;
    }

    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--bottom {
        flex-wrap: wrap;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--bottom
        .post__content--bottom--tags {
        flex-basis: 100%;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--bottom
        .post__content--bottom--shares {
        flex-basis: 100%;
        margin-top: 0px;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--bottom
        .post__content--bottom--tags
        ul::before {
        width: 60px;
    }
    .post
        .news
        .news__content
        .post__block
        .post__content
        .post__content--bottom
        .post__content--bottom--tags
        ul {
        padding-left: 65px;
    }

    .post__end .post__end--item {
        max-width: calc(50% - 7px);
    }
}

/*# sourceMappingURL=style.css.map */

/*# Last Changes */
.main-box {
    flex-wrap: wrap;
    box-sizing: border-box;
}

.main-box .fullitem {
margin-top: 6px;
}

.h-250 {
height: 250px;
}

.box-item {
    width: 33%;
}

.news-box {
    flex-basis: 100% !important;
    padding-right: 0px !important;
}

.news-box-items {
    flex-wrap: nowrap !important;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.multimedia {
display: block !important;
}

.partner-banner .news__content--top {
justify-content: center !important;
}

.partner-banner h4 {
color: #fff !important;
}

.gray-background {
background: #ddd !important;
}

.post-promo-section .post__more--items {
  margin: 0px !important;
}

.post-promo-section .post__more--title {
    background: #ddd;
    width: 100%;
    height: 40px;
    background-color: #dcdcdc;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 15px;
}

.show-other-news, .show-other-news-2 {
display: none;
}

.more-news, .more-news-2 {
display: none;
}

.post .news .news__content .post__block .post__content .post__content--image {
    height: 500px;
}

.image-container {
    position: relative;
    width: auto;
    height: auto;
}
.image-container .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    display: block;
    color: #FFF;
}

.image-container .after {
    display: block;
    background: rgba(0, 0, 0, 20%);
}

.image-container:hover .after {
    display: none;
    background: rgba(0, 0, 0, .6);
}


.news__content--top h4:hover {
color: #b5c100 !important;
}

.news__content--top--sub a:hover {
color: #b5c100 !important;
}

.sidebar__talents .sidebar__talents--talent {
   max-width: 334px !important;
}

.post__end .image-container {
margin-bottom: -3px;
margin-right: -8px;
margin-left: -1px;
margin-top: 0px;
}



.sidebarnormal .sidebarnormal--image {
    margin-bottom: 10px;
    margin-top: 10px;
}


.bhf-pages {
flex-basis: 100% !important;
}




.video-section-single .sidebarbig.sb-155 {
    height: 230.5px;
}

.video-section-single .fullitem.h-122d5 {
    height: 200.5px;
}

.post .news .news__content .post__block .post__content h3 {
    font-weight: 300;
    font-family: "Anton";
}

.promo-single-list {
flex-wrap: wrap;
}


.main-box .fullitem--image {
    transition: transform .5s, filter 1.5s ease-in-out;
}

.main-box .fullitem--image:hover {
    transform: scale(0.95);
}



.single-par-page {
padding-bottom: 0px !important;
padding-top: 0px !important;
}



.show-only-mobile {
display: none;
}














@media screen and (max-width: 820px) {
.box-item {
    width: 100% !important;
}

.news-box-items {
    flex-wrap: wrap !important;
}

.promo {
flex-direction: column !important;
}
}


@media screen and (max-width: 767px) {
.post .partner-banner .news__content .news__content--top {
    display: flex !important;
    margin: 10px 0px 10px 0px;
}

.main .partner-banner .news__content .news__content--top {
      margin-bottom: 10px;
}

.show-only-mobile {
display: block;
height: 100%;
}

.nocrop-img {
    height: auto !important;
    align-items: flex-end !important;
    flex-direction: column !important;
}

}

@media screen and (max-width: 580px) {
.only-desktop {
    display: none !important;
}

.show-more-news, .show-more-news-2 {
color: #fff;
    text-align: center;
    font-size: 17px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.more-news, .more-news-2 {
display: block;
}

.bhf-show-items {
display: flex;
}

.partner-banner {
padding-bottom: 0px !important;
}

.post__end {
    padding-top: 0px !important;
}

.post .news .news__content .post__block .post__content .post__content--image {
    height: 280px !important;
}



}


[style*=--aspect-ratio]>.news-block-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
    z-index: 0;
}

[style*=--aspect-ratio]:before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
    background: rgba(0, 0, 0, .5);
    pointer-events: none;
    border-radius: 8px;
}

.overlay-title {
    background-image: linear-gradient(0deg, rgba(9, 20, 37, .97) 0%, rgba(12, 22, 39, .83) 77%, rgba(9, 15, 37, .57) 87%, transparent);
}

.text-vijesti, .text-red, .etf-vijesti p a, .etf-vijesti h2, .etf-vijesti h3, .etf-vijesti h4, .etf-vijesti .related-article span, .etf-vijesti ul li:before, .text-default, .etf-vijesti .blockQuote:before {
    color: #f04733;
}

.text-lifestyle, .etf-lifestyle p a, .etf-lifestyle h2, .etf-lifestyle h3, .etf-lifestyle h4, .etf-lifestyle .related-article span, .etf-lifestyle ul li:before, .etf-lifestyle .blockQuote:before {
    color: #c825a8;
}

:is(.dark .dark\:text-white) {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}


:is(.dark .dark\:text-black) {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}

:is(.dark .dark\:text-\[\#ddd\]) {
    --tw-text-opacity: 1;
    color: rgb(221 221 221 / var(--tw-text-opacity));
}

.bhf-text-meta {
    color: #000;
}

.dark .bhf-text-meta {
   color: #ddd;
}

.bhf-text-white {
color: #fff;
}

:is(.dark .dark\:md\:bg-\[\#172132\]) {
    --tw-bg-opacity: 1;
    background-color: rgb(24 39 102 / var(--tw-bg-opacity));
}

.tab-show {
    padding: 1.25rem .625rem;
}

.tab-show[style*="overflow-y"] {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.tab-show[style*="overflow-y"]::-webkit-scrollbar {
    width: 6px;
}

.tab-show[style*="overflow-y"]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    
}

.tab-show[style*="overflow-y"]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    
}

.tab-show[style*="overflow-y"]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab-title {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-size: 18px;
}

.whiteborder {
    border-bottom: 1px solid #000;
}

.dark .whiteborder {
    border-bottom: 1px solid #fff;
}

.tab-title.active-tab {
    border-bottom: 2px solid #000000;
    font-weight: 700;
}

.dark .tab-title.active-tab {
    border-bottom: 2px solid #fff;
}

#reprezentacija .text-vijesti, #reprezentacija .text-red, #reprezentacija .etf-vijesti p a, #reprezentacija .etf-vijesti h2, #reprezentacija .etf-vijesti h3, #reprezentacija .etf-vijesti h4, #reprezentacija .etf-vijesti .related-article span, #reprezentacija .etf-vijesti ul li:before, #reprezentacija .text-default, #reprezentacija .etf-vijesti .blockQuote:before {
    color: #155DFC;
}

.text-sport, .etf-sport p a, .etf-sport h2, .etf-sport h3, .etf-sport h4, .etf-sport .related-article span, .etf-sport ul li:before, .etf-sport .blockQuote:before {
    color: #0b1748;
}

.dark .text-sport, .dark .etf-sport p a, .dark .etf-sport h2, .dark .etf-sport h3, .dark .etf-sport h4, .dark .etf-sport .related-article span, .dark .etf-sport ul li:before, .dark .etf-sport .blockQuote:before {
    color: #fff600;
}

.bhf-yellow-border {
    color: #0b1748;
}

.dark .bhf-yellow-border {
    color: #fff600;
}

.text-intervjui, .etf-intervjui p a, .etf-intervjui h2, .etf-intervjui h3, .etf-intervjui h4, .etf-intervjui .related-article span, .etf-intervjui ul li:before, .etf-intervjui .blockQuote:before {
    color: #fff;
}

.dark .text-intervjui, .dark .etf-intervjui p a, .dark .etf-intervjui h2, .dark .etf-intervjui h3, .dark .etf-intervjui h4, .dark .etf-intervjui .related-article span, .dark .etf-intervjui ul li:before, .dark .dark\:text-intervjui, .dark    .dark\:etf-intervjui .blockQuote:before {
    color: #ff0000;
}


.text-ino-fudbal, .etf-ino-fudbal p a, .etf-ino-fudbal h2, .etf-ino-fudbal h3, .etf-ino-fudbal h4, .etf-ino-fudbal .related-article span, .etf-ino-fudbal ul li:before, .etf-ino-fudbal .blockQuote:before {
    color: #0bb700;
}

@media only screen and (min-width: 1200px) {
    .bhf-pages-left {
        width: calc(100% - 420px);
    }

    .bhf-pages--right {
        width: 360px;
    }
}

:is(.dark .dark\:bg-\[\#0b1748\]) {
    --tw-bg-opacity: 1;
    background-color: #0b1748;
}

.bhf-post-content p {
    box-sizing: border-box;
    padding: 14px 0px;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    font-family: "Roboto", sans-serif;
}

#banner {
    margin-bottom: -2px;
}

/* Modern Menu Styles - Override existing styles */
.header .header__block .header__block--nav ul.flex {
    display: flex !important;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.header .header__block .header__block--nav ul.flex li {
    display: inline-block;
    position: relative;
    padding: 0;
}

.header .header__block .header__block--nav ul.flex li a {
    border-bottom: none !important;
    text-decoration: none;
    white-space: nowrap;
}

.header .header__block .header__block--nav ul.flex li a:hover {
    border-bottom: none !important;
}

.header .header__block .header__block--nav ul.flex li .submenu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 8px 0;
    margin-top: 8px;
}

/* Add invisible bridge between menu item and submenu to prevent hover gap */
.header .header__block .header__block--nav ul.flex li .submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: 1;
}

/* Keep submenu open when hovering over li or submenu - only on desktop */
@media screen and (min-width: 1001px) {
    .header .header__block .header__block--nav ul.flex li:hover .submenu,
    .header .header__block .header__block--nav ul.flex li.group:hover .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Also keep open when directly hovering submenu */
    .header .header__block .header__block--nav ul.flex li .submenu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Rotate arrow on hover - only on desktop */
@media screen and (min-width: 1001px) {
    .header .header__block .header__block--nav ul.flex li:hover .menu-arrow {
        transform: rotate(180deg);
    }
}

.header .header__block .header__block--nav ul.flex li .submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    height: auto;
    line-height: normal;
    max-height: none;
    display: block;
    width: 100%;
}

.header .header__block .header__block--nav ul.flex li .submenu li:last-child {
    border-bottom: none;
}

.header .header__block .header__block--nav ul.flex li .submenu li a {
    color: inherit;
    font-weight: normal;
    display: block;
    width: 100%;
}

/* Dark mode submenu */
html.dark .header .header__block .header__block--nav ul.flex li .submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile menu adjustments */
@media screen and (max-width: 1000px) {
    .header .header__block .header__block--nav ul.flex {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header .header__block .header__block--nav ul.flex li {
        width: 100%;
        padding: 0;
    }
    
    .header .header__block .header__block--nav ul.flex li .submenu {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        width: 100% !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        left: 0 !important;
        top: 0 !important;
    }
    
    .header .header__block .header__block--nav ul.flex li.active .submenu {
        display: block !important;
    }
    
    .header .header__block .header__block--nav ul.flex li a.menucat::before {
        content: "+";
        position: absolute;
        top: 50%;
        right: 50px;
        transform: translateY(-50%);
        font-size: 19px;
        color: #000;
        font-weight: 400;
    }
    
    .header .header__block .header__block--nav ul.flex li.active a.menucat::before {
        content: "-";
    }
    
    html.dark .header .header__block .header__block--nav ul.flex li a.menucat::before {
        color: #fff;
    }
    
    html.dark .header .header__block .header__block--nav ul.flex li.active a.menucat::before {
        display: none;
    }
}

/* Izdvojeno Slider Styles */