@charset "UTF-8";

:root {
    --black-bg: #000;
    --white-color: #fff;
    --main-background: #161616;
    --header-background: #070707;
    --header-background2: #000;
    --thumb-box-bg: #070707;
    --thumb-placeholder-bg: #070707;
    --footer-bg: #000;
    --pagination-bg: #070707;
    --sort-bg: #070707;
    --input-bg: #1d1d1d;
    --general-color: #fff;
    --main-grey-color: #b8b8b8;
    --thumb-text-color: #fff;
    --nav-link-color: #fff;
    --pagination-color: #b8b8b8;
    --sort-color: #b8b8b8;
    --thumb-info-color: #b8b8b8;
    --heading-title-color: #fff;
    --footer-color: #b8b8b8;
    --desc-color: #fff;
    --color-active: #ea1853;
    --btn-box-shadow: 0 4px 14px rgba(234, 24, 83, .5);
    --font-main: Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

html {
    background: var(--main-background);
    color: var(--general-color);
    font-size: 14px;
}

body {
    margin: 0;
    background: var(--main-background);
    color: var(--general-color);
    font: 400 14px / 1.4 var(--font-main);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    stroke-width: 0;
}

.icon-top-arrow {
    font-size: 9px;
}

.icon-arrow-down {
    font-size: 10px;
}

.icon-search,
.icon-info {
    font-size: 20px;
}

.icon-calendar,
.icon-like,
.icon-dislike {
    font-size: 14px;
}

.icon-eye {
    font-size: 17px;
}

.icon-heart,
.icon-oclock {
    font-size: 12px;
}

.skip-to-main-content {
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--color-active);
    color: #000;
    border-radius: 10px;
    transform: translateY(-150%);
}

.skip-to-main-content:focus {
    transform: translateY(0);
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1 0 auto;
}

.container {
    max-width: 1460px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

.section-row {
    margin-bottom: 44px;
}

.header {
    flex: 0 0 auto;
    margin-bottom: 30px;
}

.header-inner {
    display: flex;
    align-items: center;
}

.header-links {
    background: #000;
}

.header-links .header-inner {
    padding: 5px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.header-links .header-inner::-webkit-scrollbar {
    display: none;
}

.header-links a {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: var(--main-grey-color);
    margin-right: 18px;
    transition: color .3s;
}

.header-links a:hover {
    color: var(--color-active);
}

.header-links i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    color: var(--color-active);
}

.header-holder {
    background: var(--header-background);
    border-bottom: 1px solid #161616;
    padding: 12px 0 11px;
    position: relative;
}

.header-holder .header-inner {
    gap: 10px;
}

.logo {
    opacity: 1;
    transition: opacity .3s;
}

.text-logo {
    flex: 0 0 auto;
    max-width: 290px;
}

.text-logo a,
.text-logo span {
    display: block;
}

.text-logo span {
    color: transparent;
    background: linear-gradient(100deg, #fff33b 0%, #f37424 21%, #ea1853 74%, #e71e55 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 22px rgba(234, 24, 83, .18);
}

.search {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

.search form {
    max-width: 630px;
    width: 100%;
}

.search-inner {
    width: 100%;
    position: relative;
}

.search input {
    background: var(--input-bg);
    border: 0;
    border-radius: 10px;
    height: 40px;
    width: 100%;
    padding: 10px 45px 10px 20px;
    color: #fff;
    outline: none;
}

.search input::placeholder {
    color: #8b8f96;
}

.btn-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-42%);
    background: transparent;
    border: 0;
    color: var(--main-grey-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: color .3s;
}

.btn-search:hover {
    color: var(--color-active);
}

.buttons-col {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.leng-holder {
    position: relative;
}

.lang-item {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 13px;
    color: var(--main-grey-color);
    border-radius: 10px;
    background: #111;
    transition: color .3s, background .3s;
}

.lang-item:hover,
.leng-holder.lang-open .lang-item {
    color: var(--color-active);
}

.lang-item i {
    display: flex;
    align-items: center;
    margin-left: 10px;
    transition: transform .3s;
}

.leng-holder.lang-open .lang-item i {
    transform: rotate(180deg);
}

.leng-holder .drop {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    min-width: 190px;
    max-height: 360px;
    overflow: auto;
    background: var(--sort-bg);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s, visibility .3s, transform .3s;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.leng-holder.lang-open .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.leng-holder .drop a {
    display: block;
    padding: 9px 12px;
    color: var(--sort-color);
    transition: background .3s, color .3s;
}

.leng-holder .drop a:hover,
.leng-holder .drop a.active {
    background: var(--color-active);
    color: #000;
}

.btn-mobile,
.menu-icon {
    display: none;
    border: 0;
    background: none;
    cursor: pointer;
}

.btn-mobile {
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: var(--main-grey-color);
}

.btn-mobile i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-mobile .svg-close {
    position: absolute;
    opacity: 0;
    transform: scale(0);
    transition: .3s;
}

.btn-mobile .svg-search {
    transition: .3s;
}

.header.search-open .logo {
    opacity: 0;
}

.header.search-open .btn-mobile .svg-search {
    opacity: 0;
    transform: scale(0);
}

.header.search-open .btn-mobile .svg-close {
    opacity: 1;
    transform: scale(1.25);
}

.menu-icon {
    width: 20px;
    height: 14px;
    position: relative;
    flex: 0 0 auto;
}

.menu-icon span {
    background: #fff;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    transition: all .3s ease;
}

.menu-icon span:first-child {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 6px;
}

.menu-icon span:last-child {
    top: 12px;
}

body.nav-open .menu-icon span:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-icon span:first-child,
body.nav-open .menu-icon span:last-child {
    top: 6px;
    background: var(--color-active);
}

body.nav-open .menu-icon span:first-child {
    transform: rotate(45deg);
}

body.nav-open .menu-icon span:last-child {
    transform: rotate(-45deg);
}

.header-nav {
    background: var(--header-background2);
}

.header-nav .header-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
}

.header-nav .header-inner::-webkit-scrollbar {
    display: none;
}

.nav-link {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--nav-link-color);
    position: relative;
    padding: 15px 20px;
    transition: color .3s;
    white-space: nowrap;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-active);
    transition: width .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-active);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.ad-container {
    margin-bottom: 18px;
}

.ad-slot {
    text-align: center;
    margin: 10px 0;
}

.ad-slot:empty {
    display: none;
}

.heading {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    gap: 5px;
}

.heading .title {
    flex: 1 1 auto;
    margin: 0;
    color: var(--heading-title-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.sort {
    position: relative;
    flex: 0 0 auto;
}

.sort-title,
.more-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--sort-color);
    background: var(--sort-bg);
    border: 0;
    border-radius: 10px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all .3s;
}

.sort-title i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.sort-title:hover,
.sort.sort-open .sort-title {
    color: #000;
    background: var(--color-active);
    box-shadow: var(--btn-box-shadow);
}

.sort-drop {
    position: absolute;
    z-index: 10;
    width: 100%;
    min-width: 180px;
    background: var(--sort-bg);
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(35px);
    transition: all .3s;
}

.sort.sort-open .sort-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-drop a,
.sort-drop span {
    display: block;
    text-align: center;
    color: var(--sort-color);
    padding: 8px 10px;
    transition: all .3s;
    width: 100%;
}

.sort-drop a:hover,
.sort-drop span:hover {
    background: var(--color-active);
    color: #000;
}

.thumbs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 39px;
}

.thumb {
    width: 20%;
    padding: 5px;
}

.thumb_rel {
    position: relative;
}

.thumb a {
    display: block;
}

.thumb i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb .img-holder {
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 8px;
    background: var(--thumb-placeholder-bg);
}

.thumb .img-holder img,
.thumb .img-holder .no-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.thumb .img-holder .no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-active);
    font-weight: 700;
}

.thumb .item-bottom,
.thumb .item-top {
    position: absolute;
    display: flex;
    align-items: center;
}

.thumb .qualtiy,
.thumb .time {
    background: rgba(0, 0, 0, .8);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    border-radius: 5px;
    padding: 0 6px;
}

.thumb .qualtiy {
    font-weight: 700;
    margin-right: 5px;
}

.thumb .item-bottom {
    right: 5px;
    bottom: 5px;
}

.thumb .item-top {
    z-index: 1;
    top: 10px;
    left: 10px;
    transition: transform .3s;
    transform: translate3d(-45px, -45px, 0);
}

.thumb .item-heart,
.thumb .item-time {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    transition: background .3s, color .3s;
}

.thumb .item-heart {
    margin-right: 5px;
}

.thumb a:hover .item-top {
    transform: translate3d(0, 0, 0);
}

.thumb .item-heart:hover,
.thumb .item-time:hover {
    background: var(--color-active);
    color: #000;
}

.thumb .title {
    margin: 0 0 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: var(--thumb-text-color);
    transition: color .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.thumb a:hover .title {
    color: var(--color-active);
}

.thumb-bottom {
    display: flex;
    align-items: center;
    min-height: 17px;
}

.thumb-bottom .thumb-item {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    display: block;
    letter-spacing: -.02em;
    color: var(--thumb-info-color);
    margin-right: 10px;
    position: relative;
    padding-left: 20px;
}

.thumb-bottom .thumb-item:first-child {
    padding-left: 22px;
}

.thumb-bottom .thumb-item-date {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumb-bottom .thumb-item i {
    left: 0;
    top: 1px;
    position: absolute;
    color: var(--thumb-info-color);
}

.pagination-holder {
    margin-top: -10px;
}

.pagination-holder > div[style] {
    display: none;
}

.pagination,
.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pagination-bg);
    border-radius: 10px;
    color: var(--pagination-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    min-height: 40px;
    min-width: 40px;
    transition: all .3s;
    padding: 0 12px;
}

.pagination-prev a,
.pagination-next a {
    min-width: 60px;
}

.pagination a:hover,
.pagination .current,
.pagination .chosen span,
.pagination .active {
    background: var(--color-active);
    color: #000;
}

.pagination-count {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--main-grey-color);
    font-size: 12px;
    margin-top: 12px;
}

.empty-state {
    width: 100%;
    padding: 35px 20px;
    background: var(--thumb-box-bg);
    border-radius: 10px;
    color: var(--main-grey-color);
    text-align: center;
}

.search-history-row {
    margin: 0 0 16px;
}

.tags-row-wrapper {
    margin-top: 12px;
}

.tags-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-row span {
    color: var(--main-grey-color);
    font-weight: 700;
}

.tags-row a {
    display: flex;
    background: #070707;
    border-radius: 10px;
    padding: 10px 15px;
    color: #fff;
    transition: color .3s, background .3s, box-shadow .3s;
}

.tags-row a:hover {
    background: rgba(234, 24, 83, .18);
    color: var(--color-active);
}

.video-holder {
    width: 100%;
}

.video-inner,
.video-cols {
    width: 100%;
}

.video-cols {
    display: flex;
}

.col-video {
    flex: 1 1 auto;
    min-width: 0;
}

.title-holder {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 12px;
}

.title-holder .title {
    flex: 1 1 100%;
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
}

.count-item {
    display: flex;
    align-items: center;
    color: var(--main-grey-color);
    font-size: 13px;
}

.count-item i {
    display: flex;
    align-items: center;
    margin-right: 6px;
}

.player.video {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #000;
}

.player-holder {
    width: 100%;
}

.player-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.player-wrap #player,
.player-wrap .jwplayer {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

.flex {
    display: flex;
    align-items: center;
}

.video-controls {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #000;
    flex-wrap: wrap;
}

.video-controls .col {
    padding: 5px 0;
}

.video-controls .grow {
    flex: 1 1 auto;
}

.rate-holder {
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.rate-holder::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 20px;
    background: #000;
    transform: translateY(-50%);
}

.btn,
.video-controls .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070707;
    border-radius: 10px;
    color: #b8b8b8;
    min-height: 40px;
    padding: 8px 16px;
    transition: all .3s;
}

.video-controls .btn i {
    margin-right: 6px;
}

.video-controls .btn.active,
.video-controls .btn:hover {
    color: #000;
    background: var(--color-active);
}

.block-tabs {
    margin-bottom: 20px;
}

.block-tabs .description {
    color: var(--desc-color);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
}

.sort-holder {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sort-holder span,
.sort-holder a {
    display: block;
    font-weight: 400;
    font-size: 20px;
    line-height: 18px;
    color: var(--color-active);
    margin-right: 40px;
    position: relative;
    padding-bottom: 14px;
}

.sort-holder span::before,
.sort-holder a::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-active);
}

.ralated-holder .thumb {
    width: 33.33%;
}

.description-holder {
    background: #070707;
    border-radius: 10px;
    padding: 22px 24px;
}

.description-holder .title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
}

.description-holder .text {
    color: var(--main-grey-color);
    font-size: 13px;
    line-height: 1.7;
}

.description-holder .text p {
    margin: 0 0 12px;
}

.description-holder .text a {
    color: var(--color-active);
}

.footer {
    flex: 0 0 auto;
    background: var(--footer-bg);
}

.footer-inner {
    padding: 44px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .logo {
    margin-bottom: 23px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px;
}

.footer-nav a {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--nav-link-color);
    transition: color .3s;
    padding: 5px;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--color-active);
}

.footer-desc {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    color: var(--footer-color);
}

.footer-desc p {
    margin: 0 0 14px;
}

.footer-desc a {
    color: #fff;
}

.footer-counters:empty {
    display: none;
}

.directory-page,
.error404-page {
    max-width: 1460px;
    width: calc(100% - 20px);
    margin: 0 auto 44px;
}

.section-head h1,
.error404-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
}

.directory-card,
.error404-card {
    display: flex;
    align-items: center;
    background: #070707;
    border-radius: 10px;
    padding: 16px;
    color: #fff;
    transition: color .3s, background .3s, transform .3s;
}

.directory-card:hover {
    color: var(--color-active);
    transform: translateY(-2px);
}

.directory-card__letter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-right: 12px;
    border-radius: 10px;
    background: var(--color-active);
    color: #000;
    font-weight: 900;
}

.directory-card__content,
.directory-card__title,
.directory-card__meta {
    display: block;
}

.directory-card__title {
    font-weight: 700;
}

.directory-card__meta {
    margin-top: 3px;
    color: var(--main-grey-color);
    font-size: 12px;
}

.error-hero {
    max-width: 980px;
    width: calc(100% - 20px);
    margin: 0 auto 44px;
}

.error-hero__panel {
    display: grid;
    grid-template-columns: minmax(160px, .45fr) 1fr;
    gap: 24px;
    align-items: center;
    background: #070707;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
}

.error-hero__code {
    color: transparent;
    background: linear-gradient(100deg, #fff33b 0%, #f37424 24%, #ea1853 78%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(78px, 14vw, 160px);
    line-height: .85;
}

.error-hero__eyebrow {
    margin: 0 0 8px;
    color: var(--color-active);
    font-weight: 700;
    text-transform: uppercase;
}

.error-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1;
}

.error-hero__text {
    margin: 0 0 18px;
    color: var(--main-grey-color);
    line-height: 1.7;
}

.error-hero__search {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.error-hero__search input {
    min-width: 0;
    flex: 1 1 auto;
    background: var(--input-bg);
    border: 0;
    border-radius: 10px;
    height: 42px;
    color: #fff;
    padding: 0 14px;
    outline: none;
}

.error-hero__search button,
.error-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: #111;
    color: #fff;
    cursor: pointer;
    transition: background .3s, color .3s, box-shadow .3s;
}

.error-hero__search button,
.error-button--primary,
.error-button:hover {
    background: var(--color-active);
    color: #000;
    box-shadow: var(--btn-box-shadow);
}

.error-hero__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

html[dir="rtl"] .header-links a,
html[dir="rtl"] .title-holder,
html[dir="rtl"] .thumb-bottom,
html[dir="rtl"] .tags-row {
    direction: rtl;
}

html[dir="rtl"] .header-links i,
html[dir="rtl"] .count-item i,
html[dir="rtl"] .video-controls .btn i {
    margin-right: 0;
    margin-left: 6px;
}

html[dir="rtl"] .leng-holder .drop {
    right: auto;
    left: 0;
}

@media (max-width: 1100px) {
    .nav-link {
        padding: 10px 14px;
    }

    .text-logo span {
        font-size: 31px;
    }
}

@media (max-width: 1024px) {
    .header-holder .header-inner {
        justify-content: space-between;
    }

    .menu-icon,
    .btn-mobile {
        display: flex;
    }

    .menu-icon {
        display: block;
        order: 1;
    }

    .logo {
        order: 2;
    }

    .buttons-col {
        order: 3;
    }

    .btn-mobile {
        order: 4;
    }

    .search {
        position: absolute;
        justify-content: flex-start;
        width: 100%;
        z-index: 10;
        left: 0;
        max-width: calc(100% - 46px);
        padding-left: 10px;
        transition: transform .3s;
        transform: translateX(-105%);
    }

    .header.search-open .search {
        transform: translateX(0);
    }

    .header-nav {
        position: absolute;
        min-height: -webkit-fill-available;
        height: calc(100vh - 90px);
        width: 100%;
        left: 0;
        top: 90px;
        display: flex;
        z-index: 12;
        opacity: 0;
        visibility: hidden;
        overflow-x: auto;
        transition: opacity .3s, visibility .3s;
    }

    body.nav-open .header-nav {
        opacity: 1;
        visibility: visible;
    }

    .header-nav .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 40px 0 120px;
        width: 100%;
        overflow: visible;
    }

    .nav-link {
        width: 100%;
        font-size: 18px;
        padding: 14px 20px;
    }

    .thumb {
        width: 33.33%;
    }
}

@media (max-width: 900px) {
    .sort-holder span,
    .sort-holder a {
        font-size: 15px;
    }
}

@media (max-width: 800px) {
    .thumb,
    .ralated-holder .thumb {
        width: 50%;
    }

    .heading {
        flex-wrap: wrap;
    }

    .heading .title {
        flex-basis: 100%;
    }

    .title-holder .title {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .header {
        margin-bottom: 22px;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .footer-inner {
        padding: 24px 0;
    }

    .footer-nav {
        margin-bottom: 15px;
    }

    .video-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .video-controls .col {
        justify-content: center;
    }

    .error-hero__panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

@media (max-width: 665px) {
    .sort {
        width: 100%;
        margin-top: 5px;
    }

    .sort-title {
        justify-content: space-between;
        width: 100%;
    }

    .sort-drop {
        min-width: 100%;
    }
}

@media (max-width: 560px) {
    .text-logo span {
        font-size: 25px;
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lang-item {
        min-height: 34px;
        padding: 0 9px;
        font-size: 12px;
    }

    .leng-holder .drop {
        right: -32px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        min-height: 36px;
        padding: 0 10px;
    }

    .pagination-count {
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }
}

@media (max-width: 435px) {
    .thumb,
    .ralated-holder .thumb {
        width: 100%;
    }

    .header-links a {
        margin-right: 14px;
    }
}
