/*--flags--*/
.fib,
.fi {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.fi {
    position: relative;
    display: inline-block;
    width: 1.333333em;
    line-height: 1em
}

.fi:before {
    content: " "
}

.fi.fis {
    width: 1em
}

.fi-cn {
    background-image: url(../libs/flags/4x3/cn.svg)
}

.fi-de {
    background-image: url(../libs/flags/4x3/de.svg)
}

.fi-fr {
    background-image: url(../libs/flags/4x3/fr.svg)
}

.fi-gb {
    background-image: url(../libs/flags/4x3/gb.svg)
}

.fi-it {
    background-image: url(../libs/flags/4x3/it.svg)
}

.fi-kz {
    background-image: url(../libs/flags/4x3/kz.svg)
}

.fi-nl {
    background-image: url(../libs/flags/4x3/nl.svg)
}

.fi-pl {
    background-image: url(../libs/flags/4x3/pl.svg)
}

.fi-ru {
    background-image: url(../libs/flags/4x3/ru.svg)
}

.fi-th {
    background-image: url(../libs/flags/4x3/th.svg)
}

.fi-tr {
    background-image: url(../libs/flags/4x3/tr.svg)
}

.fi-ua {
    background-image: url(../libs/flags/4x3/ua.svg)
}

.fi-eg {
    background-image: url(../libs/flags/4x3/eg.svg)
}

.fi-es {
    background-image: url(../libs/flags/4x3/es.svg)
}

.fi-jp {
    background-image: url(../libs/flags/4x3/jp.svg)
}

/*--main-style--*/

:root {
    --header-bg: #000000;
    --main-bg: #242424;
    --menu-bg: #363636;
    --accent-yellow: #eebd22;
    --accent-pink: #f26d7d;
    --color-grey: #959595;
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    height: 100%;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.accent-link {
    text-decoration: underline;
    color: var(--accent-yellow);
}

.text-link {
    text-decoration: underline;
    font-weight: 700;
    color: #fff;
}

a:hover {
    color: var(--neutral-color);
}

body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: var(--main-bg);
    padding: 0;
    margin: 0
}

body.age-gate-open {
    overflow: hidden;
}

.container {
    width: 1190px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    width: 100%;
    border-bottom: 1px solid #64470b;
    background-color: var(--header-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    position: fixed;
    top: 0;
    z-index: 50;
    padding: 7px 15px;
    transition: padding .3s ease;
}

@media (min-width: 992px) {
    header.sticky {
        padding: 0 15px;
    }
}

@media screen and (max-width:992px) {
    .header {
        height: 45px;
    }
}

.header.no-border {
    border-bottom: none;
}

.header__logo {
    display: inline-block;
    height: 100%;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    padding: 5px 0;
    transition: color .3s ease;
}

.header__logo:hover {
    color: var(--color-grey);
}

.header__logo img {
    width: 150px;
    max-width: 100%;
    height: auto;
    transition: transform .3s ease;
}

@media screen and (max-width:992px) {
    .header__logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 992px) {
    header.sticky .header__logo img {
        transform: scale(0.7) translateX(-2.4rem);
    }
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width:992px) {
    .navigation {
        width: 100%;
        background-color: var(--menu-bg);
        box-shadow: 0 3px 14px -6px rgba(0, 0, 0, .4);
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
        padding: 30px 20px;
        display: none;
    }

    .navigation.active {
        display: flex;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}

.main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

@media screen and (max-width: 992px) {
    .main-menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
}

.main-menu-item {
    padding: 15px 15px;
}

@media screen and (max-width: 992px) {
    .main-menu-item {
        width: 100%;
        order: 2;
        border-bottom: 1px solid #4a4a4a;
        padding: 10px 0 10px 0;
    }
}

.dropdown-item {
    position: relative;
}

.dropdown-item::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

@media screen and (max-width: 992px) {
    .dropdown-item::after {
        top: 18px;
        right: 5px;
        transform: translateY(0);
    }
}

.main-menu-link {
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: color .3s ease;
}

@media screen and (max-width: 992px) {
    .main-menu-link {
        display: block;
        color: var(--accent-yellow);
        width: 100%;
    }
}

.main-menu-link:hover {
    color: var(--color-grey);
}

.mega-menu {
    list-style: none;
    width: 160px;
    max-height: 85vh;
    overflow-y: auto;
    background-color: var(--menu-bg);
    position: absolute;
    top: 85%;
    right: 0;
    z-index: 30;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-yellow) var(--header-bg);
    padding: 20px 15px;
    margin: 0;
    display: none;
}

@media screen and (max-width: 992px) {
    .mega-menu {
        width: 100%;
        max-height: none;
        overflow-y: visible;
        position: static;
        padding: 10px 10px;
        display: none;
    }

    .mega-menu.is-visible {
        display: block;
    }
}

.mega-menu::-webkit-scrollbar {
    width: 10px;
}

.mega-menu::-webkit-scrollbar-track {
    background: var(--header-bg);
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 10px;
    transition: background 0.3s;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (min-width: 992px) {
    .main-menu-item:hover>.mega-menu {
        display: block;
    }
}

.mega-menu li {
    padding: 5px 0;
}

@media screen and (max-width: 992px) {
    .mega-menu li {
        width: 100%;
    }
}

.mega-menu li a {
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: color .3s ease;
}

.mega-menu li a:hover {
    color: var(--accent-yellow);
}

/*---------------------- language ----------------------*/

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 10px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

@media screen and (max-width:992px) {
    .main-menu-lang {
        order: 1;
    }
}

.language-block-head {
    height: 100%;
    text-transform: uppercase;
    color: var(--accent-yellow);
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: relative;
}

.language-block-head::after {
    content: "";
    border-left: 1px solid var(--accent-yellow);
    border-bottom: 1px solid var(--accent-yellow);
    height: 8px;
    width: 8px;
    position: absolute;
    top: 35%;
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
}

.language-block-list {
    list-style: none;
    width: 120px;
    border-bottom: 1px solid #64470b;
    background-color: var(--menu-bg);
    box-shadow: 0 3px 14px -6px rgba(0, 0, 0, .4);
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    padding: 0 0;
    margin: 0 0;
    display: none;
}

@media screen and (max-width:992px) {
    .language-block-list {
        background-color: var(--header-bg);
        right: auto;
        left: 0;
    }
}

.language-block-list.active {
    display: block;
}

.language-block-list li {
    position: relative;
}

.language-block-list li:not(:first-child):before {
    content: "";
    background-image: linear-gradient(to right, #5e5e5e, transparent 100%);
    height: 1px;
    position: absolute;
    width: 100%;
}

.language-block-list li:hover {
    background-image: linear-gradient(to right, #eebd22 0%, #eebd22 40%, rgba(238, 189, 34, 0.88) 53%, transparent 100%);
}

.language-block-list li a {
    display: block;
    color: #fff;
    line-height: 1.4;
    text-align: left;
    padding: 10px 15px;
}

.language-block-list li:hover a {
    color: #000;
}

/*--------------------- social-mobile ------------------*/

.social-mobile {
    align-items: center;
    column-gap: 5px;
    margin-left: auto;
    display: none;
}

@media screen and (max-width: 992px) {
    .social-mobile {
        display: flex;
    }
}

.social-mobile__link {
    width: 30px;
    height: 30px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.social-mobile__link svg {
    width: 25px;
}

.social-mobile__link.btn_wa svg {
    fill: #19D66B;
}

.social-mobile__link.btn_tg svg {
    fill: #0088cc;
}

.social-mobile__link.btn_ph svg {
    fill: #E11D48;
}

.social-mobile__link.btn_ln svg {
    fill: #06C755;
}

/*---------------------- burger ---------------------*/

.burger {
    width: 25px;
    height: auto;
    border: none;
    background-color: transparent;
    flex-shrink: 0;
    padding: 5px 0 0 0;
    display: none;
}

@media screen and (max-width: 992px) {
    .burger {
        display: block;
    }
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 0 0 5px 0;
}

/*---------------------- breadcrumbs ----------------------*/

.breadcrumbs {
    border-top: 1px solid #64470b;
    background-color: var(--header-bg);
}

@media screen and (max-width: 992px) {
    .breadcrumbs {
        background-color: var(--main-bg);
    }
}

.breadcrumbs__list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 12px 0;
    margin: 0 0;
}

.breadcrumbs__list-item {
    font-size: 12px;
    position: relative;
    padding: 0;
    margin-right: 22px;
}

.breadcrumbs__list-item:first-child {
    padding-left: 0
}

.breadcrumbs__list-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    border-top: 1px solid var(--color-grey);
    border-left: 1px solid var(--color-grey);
    height: 6px;
    width: 6px;
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%) rotate(135deg);
}

.breadcrumbs__list-item,
.breadcrumbs__list-link:hover {
    color: var(--color-grey);
}

.breadcrumbs__list-link {
    color: var(--accent-yellow);
}

/*-------------------------- breadcrumbs /-------------------------*/

.main-content {
    padding: 120px 0 40px 0;
}

.main-content__inner {
    width: 1190px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 15px;
}

.banner-top {
    order: 1;
}

.main-content__top {
    order: 2;
}

.seo-articles {
    order: 3;
}

/*------------------------- banner ---------------------*/

.banner-top {
    padding: 0 0 15px 0;
}

.banner-top__inner {
    border-radius: 8px;
    background-color: #020001;
    overflow: hidden;
    position: relative;
    padding: 4px;
}

@media screen and (max-width: 640px) {
    .banner-top__inner {
        padding: 2px;
    }
}

.banner-top__inner::before {
    content: '';
    width: 150%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.2) calc(50% - 40px),
            rgba(255, 255, 255, 1) calc(50% - 5px),
            rgba(255, 255, 255, 1) calc(50% + 5px),
            rgba(255, 255, 255, 0.2) calc(50% + 40px),
            transparent calc(50% + 60px),
            transparent 100%);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: right;
    animation: glint-spin 5s infinite;
    z-index: 0;
}

.banner-top__content {
    border-radius: 7px;
    position: relative;
    z-index: 1;
}

.banner-top__content a {
    display: block;
    border-radius: 7px;
    overflow: hidden;
}

.banner-top__content img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@keyframes glint-spin {
    0% {
        transform: rotate(0deg);
    }

    45% {
        transform: rotate(195deg);
    }

    55% {
        transform: rotate(205deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*------------------------- banner /--------------------*/

/*---------------------------- stories ---------------------------*/

.stories {
    max-width: 100%;
    min-height: 115px;
    display: flex;
    align-items: flex-start;
    column-gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #959595 #1b1b1b;
    padding: 0 0 15px 0;
    margin: 0 0 30px 0;
}

.stories::-webkit-scrollbar {
    height: 4px;
}

.stories::-webkit-scrollbar-track {
    background: #1b1b1b;
    border-radius: 2px;
}

.stories::-webkit-scrollbar-thumb {
    background-color: #959595;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0);
    background-clip: content-box;
}

.stories::-webkit-scrollbar-thumb:hover {
    background-color: #b0b0b0;
}

.stories__item {
    width: 100px;
    height: 100px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 2px solid #b70d4b;
    position: relative;
    scroll-snap-align: start;
    padding: 3px 3px;
    cursor: pointer;
}

.stories__item:hover img {
    transform: scale(1.4);
}

.stories__image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.stories__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .3s ease;
}

.stories__label {
    display: inline-block;
    min-width: 24px;
    height: 24px;
    font-size: 14px;
    color: #000;
    text-align: center;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding: 4px 3px;
}

/*---------------------------- stories /--------------------------*/

/*-------------------------- content-head ------------------------*/

.content-head {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 10px 0;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
    .content-head {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.content-head__title {
    font-size: 21px;
    color: var(--color-grey);
}

@media screen and (max-width: 768px) {
    .content-head__title {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 0 15px 0;
    }
}

.content-head__line {
    height: 1px;
    background-color: var(--color-grey);
    flex-grow: 1;
}

@media screen and (max-width: 768px) {
    .content-head__line {
        display: none;
    }
}

.content-head__action {
    font-size: 12px;
    color: var(--color-grey);
}

@media screen and (max-width: 768px) {
    .content-head__action {
        display: none;
    }
}

.button-indicator {
    font-size: 12px;
    color: var(--color-grey);
    border: none;
    border-radius: 3px;
    background-color: #111;
    display: flex;
    align-items: center;
    padding: 3px 6px 3px 6px;
}

.button-indicator.active {
    color: var(--accent-yellow);
}

.button-indicator__item {
    display: inline-block;
    height: 9px;
    width: 6px;
    border-radius: 2px;
    background-color: var(--color-grey);
    margin-right: 2px;
    transition: background-color .2s ease;
}

.button-indicator.active .button-indicator__item {
    background-color: var(--accent-yellow);
}

.button-indicator__text {
    display: inline-block;
    white-space: nowrap;
    margin-left: 3px;
}

@media screen and (min-width: 992px) {

    .grid-two,
    .grid-one {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {

    .grid-six,
    .grid-one {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    .grid-six,
    .grid-four {
        display: none;
    }
}

/*-------------------------- content-head /-----------------------*/

.main-grid {
    display: grid;
    transition: all 0.35s ease;
}

.main-grid.one-cards {
    grid-template-columns: repeat(1, 1fr);
}

.main-grid.two-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.main-grid.four-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.main-grid.six-cards {
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/*------------------------------ card ---------------------------*/

.card {
    min-width: 0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.card.disable-transition * {
    transition: none !important;
}

.main-grid.one-cards .card {
    margin: 0 0 15px 0;
}

.swiper-card {
    position: relative;
}

.swiper-card .swiper-slide {
    transition-property: opacity;
}

.card__image {
    position: relative;
}

.card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card__info {
    width: 100%;
    background-color: rgb(0 0 0 / .78);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    padding: 15px 15px 40px 15px;
    transition: transform .3s ease;
}

.card:hover .card__info {
    transform: translateY(100%);
}

.main-grid.six-cards .card__info {
    padding: 10px 10px 15px 10px;
}

@media screen and (max-width: 460px) {
    .main-grid.two-cards .card__info {
        padding: 10px 10px 15px 10px;
    }
}

.card__title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-yellow);
}

.online-badge {
    height: 8px;
    width: 8px;
    min-height: 8px;
    min-width: 8px;
    margin-left: 4px;
    background-color: #96c552;
    display: inline-block;
    border-radius: 50%;
    align-self: center;
    position: relative;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(150, 197, 82, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(150, 197, 82, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(150, 197, 82, 0);
    }
}

.online-badge--offline {
    background-color: #9ca3af;
    animation: none;
    box-shadow: none;
}

.card a {
    display: inline-block;
    width: 100%;
}

.card__labels-left {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 10;
    transition: transform .3s ease;
}

.card:hover .card__labels-left {
    transform: translate(-90px, -90px);
}

.card__label-video {
    line-height: 1;
    border-radius: 3px;
    background-color: var(--accent-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
}

.card__label-video svg {
    width: 20px;
    stroke: #000;
}

.card__label-vip {
    display: inline-block;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 3px;
    background-color: #cc1658;
    padding: 2px 5px;
}

.card__labels-right {
    width: 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 10;
    transition: transform .3s ease;
}

.card:hover .card__labels-right {
    transform: translate(90px, -90px);
}

.card__label-verified {
    height: 24px;
    width: 24px;
    min-height: 24px;
    min-width: 24px;
    display: inline-flex;
    background: url(/images/eros-verified.svg) no-repeat center;
}

.card__label-goldverified {
    height: 24px;
    width: 24px;
    min-height: 24px;
    min-width: 24px;
    display: inline-flex;
    background: url(/images/eros-gold-verified.svg) no-repeat center;
}

/*------------------------------ card /--------------------------*/

/*--------------------------- pagination -----------------------*/

.pagination-list {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 50px 0;
}

.pagination-list__link {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    color: var(--accent-yellow);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--accent-yellow);
    background-color: #111;
    padding: 7px 10px;
    transition: background-color .3s ease, color .3s ease;
}

.pagination-list__link.active,
.pagination-list__link:hover {
    color: #111;
    background-color: var(--accent-yellow);
}

/*--------------------------- pagination /----------------------*/

/*-------------------------- single-page ----------------------*/

.single-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 15px;
    margin: 0 0 15px 0;
}

.single-top__title {
    text-transform: uppercase;
    font-size: 24px;
    color: #f26d7d;
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin: 0 0 15px 0;
}

.single-top__title svg {
    width: 20px;
    fill: #f26d7d;
}

.single-top__title img {
    width: 26px;
    margin-left: 15px;
}

.single-top__location {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
}

.single-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

@media screen and (max-width: 992px) {
    .single-social {
        display: none;
    }
}

.single-social__link {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.single-social__link.btn_wa {
    background-color: #25D366;
}

.single-social__link.btn_wa svg {
    width: 28px;
    fill: #fff;
}

.single-social__link.btn_tg {
    background-color: #0088cc;
}

.single-social__link.btn_tg svg {
    width: 28px;
    fill: #fff;
}

.single-social__link.btn_ph {
    background-color: #cb2845;
}

.single-social__link.btn_ph svg {
    width: 28px;
    fill: #fff;
}

.single-social__link.btn_ln svg {
    width: 42px;
}

/*------------------------- single-gallery --------------------*/

.single-gallery {
    background-color: var(--header-bg);
    padding: 30px 0;
}

.single-gallery__slider {
    position: relative;
    width: 100%;
}

.single-gallery__slider::before,
.single-gallery__slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 135px;
    z-index: 10;
    pointer-events: none;
}

.single-gallery__slider::before {
    background-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.8) 35%, rgba(0, 0, 0, 0) 100%);
    left: 0;
}

.single-gallery__slider::after {
    background-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.8) 35%, rgba(0, 0, 0, 0) 100%);
    right: 0;
}

@media (max-width: 1025px) and (orientation: portrait) {
    .contact-number {
        font-size: 18px;
    }

    .single-gallery__slider::before {
        background-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.8) 5%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0) 100%);
        left: 0;
    }

    .single-gallery__slider::after {
        background-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.8) 5%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0) 100%);
        right: 0;
    }
}

.single-slider {
    width: 100%;
}

.single-slider .swiper-slide {
    height: 350px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .single-slider .swiper-slide {
        height: auto;
    }
}

.single-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-slider .swiper-slide:hover img {
    transform: scale(1.04);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    z-index: 15;
    cursor: pointer;
    border-radius: 50%;
}

.slider-arrow--prev {
    left: 10px;
}

.slider-arrow--next {
    right: 10px;
}

.slider-arrow--prev::after,
.slider-arrow--next::after {
    content: '';
    display: inline-block;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    height: 23px;
    width: 23px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.slider-arrow--prev::after {
    transform: translate(-50%, -50%) rotate(315deg);
}

.slider-arrow--next::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

/*----------------------- lightbox --------------------*/

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.is-active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__inner {
    width: 100%;
    max-width: 100%;
    gap: 0;
    display: flex;
    align-items: center;
}

.lightbox-swiper {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
}

.lightbox-swiper .swiper-slide {
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
}

.lightbox-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10001;
    transition: background 0.2s;
}

.lb-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lb-arrow--prev {
    left: 16px;
}

.lb-arrow--next {
    right: 16px;
}

.lb-arrow--prev::after,
.lb-arrow--next::after {
    content: '';
    display: inline-block;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    height: 23px;
    width: 23px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.lb-arrow--prev::after {
    transform: translate(-50%, -50%) rotate(315deg);
}

.lb-arrow--next::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgb(0 0 0 / .2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    z-index: 10000;
}

.lb-close:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lb-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    z-index: 10000;
}

#lb-current {
    color: #fff;
}

/*------------------------- single-gallery /-------------------*/

/*----------------------- single-description ------------------*/

.single-description {
    padding: 25px 0 0 0;
}

.single-description__title {
    display: block;
    font-size: 28px;
    color: #fff;
    margin: 0 0 34px 0;
}

.single-description__grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 30px;
}

@media screen and (max-width: 992px) {
    .single-description__grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

.single-description__content {
    border-radius: 4px;
    background-color: #111;
    padding: 25px 25px;
}

.single-description__aside {
    background-color: #111;
    padding: 25px 25px 20px 25px;
}

.single-description__aside:nth-child(1) {
    border-radius: 4px 4px 0 0;
    margin: 0 0 3px 0;
}

.single-description__aside:nth-child(2) {
    border-radius: 0 0 4px 4px;
}

.single-description__subtitle {
    text-transform: uppercase;
    font-size: 20px;
    color: #f26d7d;
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin: 0 0 24px 0;
}

.single-description__text {
    font-size: 14px;
    color: #d7d7d7;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.list-details {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.list-details__item {
    font-size: 14px;
    display: flex;
    column-gap: 10px;
}

.list-details__item:not(:last-child) {
    margin: 0 0 17px 0;
}

.list-details__label {
    display: inline-block;
    width: 50%;
    color: var(--color-grey);
}

.list-details__value {
    display: inline-block;
    color: #d7d7d7;
}

.list-contact {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.list-contact__item {
    margin: 0 0 25px 0;
}

.list-contact .contact-number {
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}

.list-contact .contact-number svg {
    width: 16px;
    fill: var(--accent-yellow);
}

.list-contact .contact-email {
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}

.list-contact .contact-email svg {
    width: 16px;
    fill: var(--accent-yellow);
}

.list-actions {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.list-actions__item {
    border-bottom: 1px solid #363636;
}

.list-actions__link {
    font-size: 14px;
    color: #d7d7d7;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 17px 25px;
}

.list-actions__link svg {
    width: 15px;
    fill: #d7d7d7;
}

/*---------------- booking-form ---------------*/

#form-container {
    border: none;
    padding: 10px 0;
    margin: 0 0 15px 0;
}

#form-container .form-group {
    padding: 0 2px;
}

#form-container label {
    display: block;
    font-size: 12px;
    color: var(--color-grey);
    margin: 0 0 5px 0;
}

#form-container input {
    width: 100%;
    color: var(--color-grey);
    border: none;
    border-radius: 4px;
    background-color: #111;
    padding: 15px 15px;
    margin: 0 0 10px 0;
}

#form-container textarea {
    width: 100%;
    color: var(--color-grey);
    border: none;
    border-radius: 4px;
    background-color: #111;
    resize: vertical;
    padding: 15px 15px;
    margin: 0 0 10px 0;
}

#form-container .btn-block {
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    color: #111;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--accent-yellow);
    background-color: var(--accent-yellow);
    padding: 10px 15px;
    transition: all .3s ease;
}

#form-container .btn-block:hover {
    color: var(--accent-yellow);
    background-color: #111;
}

/*---------------- booking-form /--------------*/

@media screen and (max-width: 768px) {
    .single-description__footer {
        display: none;
    }
}

.bottom-breadcrumbs {
    border-radius: 4px;
    border: 1px solid #959595;
    background-color: #111;
    padding: 13px 12px;
    margin: 12px 0;
}

.bottom-breadcrumbs .breadcrumbs__list {
    padding: 0 0;
}

/*----------------------- single-description /-----------------*/

/*----------------------- single-disclaimer -------------------*/

.single-disclaimer {
    padding: 5px 0 0 0;
}

.single-disclaimer__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 0px 0 8px 0;
}

.single-disclaimer__link {
    font-size: 14px;
    color: #d7d7d7;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 10px 0;
}

.single-disclaimer__link svg {
    width: 15px;
    fill: #d7d7d7;
}

.single-disclaimer__text {
    font-size: 11px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

/*-------------------- fixed-social -----------------*/

.fixed-social {
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 15px;
    display: none;
}

@media screen and (max-width: 992px) {
    .fixed-social {
        display: flex;
    }
}

.fixed-social__link {
    flex: 1;
    color: #fff;
    font-size: 16px;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.2), 1px -1px 0 rgba(0,0,0,0.2), -1px 1px 0 rgba(0,0,0,0.2), 1px 1px 0 rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    border-radius: 5px;
    transition: all .3s ease;
    padding: 10px 20px;
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.4);
}

.fixed-social__link.btn_wa {
    background-color: #25D366;
}

.fixed-social__link.btn_tg {
    background-color: #0088cc;
}

.fixed-social__link svg {
    width: 20px;
    fill: #fff;
}

/*---------------------- Seo-articles -----------------*/

.seo-articles {
    border-radius: 4px;
    background-color: #111;
    padding: 25px 25px;
}

.seo-articles h1 {
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    color: #f26d7d;
    margin-bottom: 1rem;
}

.seo-articles h2 {
    font-size: clamp(24px, 3.6vw, 30px);
    font-weight: 700;
    color: #f26d7d;
    margin-bottom: 1rem;
}

.seo-articles h3 {
    font-size: clamp(20px, 3.2vw, 24px);
    font-weight: 700;
    color: #f26d7d;
    margin-bottom: 1rem;
}

.seo-articles p {
    color: #d7d7d7;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
}

/*---------------------------- footer -----------------------*/

.footer {
    color: #fff;
    background-color: #000;
    background-image: url(/images/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 50px 0 20px 0;
}

@media screen and (max-width:768px) {
    .footer {
        background-position: center bottom;
        padding: 30px 0;
    }
}

.footer-wrap-list {
    list-style: none;
    columns: 150px 5;
    column-gap: 15px;
    padding: 0;
    margin: 0 0 30px
}

.footer-wrap-list li {
    margin-bottom: 20px
}

.footer-title {
    display: block;
    font-weight: 700;
    color: var(--color-grey);
    font-size: 18px;
    margin-top: 0;
    line-height: 1.4;
    padding-bottom: 5px;
    margin-bottom: 10px
}

.footer-wrap-list li a {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 8px;
    transition: .3s
}

.copyright {
    overflow: hidden;
}

.copyright-text {
    font-size: 14px;
    color: var(--color-grey);
    text-align: center;
    padding: 20px 0 0;
    margin: 0 0;
}

@media (max-width: 1025px) and (orientation: portrait) {
    .copyright-text {
        padding: 20px;
    }
}

/*---------------------------- footer /----------------------*/

.button-up {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 3px;
    flex-wrap: wrap;
    border: none;
    background-color: #111111;
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 45;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 12px 10px;
}

.button-up.visible {
    opacity: 1;
}

.button-up svg {
    width: 12px;
    fill: var(--accent-yellow);
}

.button-up__text {
    display: block;
    width: 100%;
    font-size: 10px;
    color: var(--accent-yellow);
    text-align: center;
    margin: 5px 0 0 0;
}

/*---------------------------- modal -----------------------*/

.modal {
    background-color: rgb(0 0 0 / .85);
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    overflow-y: auto;
    padding: 15px 15px;
    display: none;
}

.modal__content {
    width: 900px;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 3px;
    border: 1px solid #252525;
    background: url(/images/bg-popup.jpg) left bottom no-repeat #000;
    display: flex;
    justify-content: flex-end;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-yellow) rgba(255, 255, 255, 0.05);
    overflow-y: auto;
    margin: auto;
}

.modal__content::-webkit-scrollbar {
    width: 8px;
}

.modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal__content::-webkit-scrollbar-thumb {
    background-color: var(--accent-yellow);
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0);
    background-clip: content-box;
}

.modal__content::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-yellow);
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .modal__content {
        background: none;
        background-color: #000;
    }
}

.modal__content-item {
    width: 50%;
    height: 100%;
    padding: 15px 34px 15px 15px;
}

@media screen and (max-width: 768px) {
    .modal__content-item {
        width: 100%;
        padding: 15px 15px;
    }
}

.modal__content-title {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 32px;
    color: var(--accent-yellow);
    margin: 0 0 24px 0;
}

.modal__content-text {
    font-size: 12px;
    color: var(--color-grey);
    line-height: 1.49;
    margin: 0 0 17px 0;
}

.modal__error-indicator {
    border: 1px solid transparent;
    padding: 5px 8px;
    margin: 0 0 20px 0;
}

.modal__error-indicator.error {
    border: 1px solid #ff0000;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.modal__content-label {
    font-size: 12px;
    color: var(--color-grey);
    display: flex;
    align-items: flex-start;
    column-gap: 5px;
}

.modal__content-checkbox {
    margin: 0;
}

.modal__content-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.modal__content-button {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    white-space: nowrap;
    border: none;
    border-radius: 4px;
    background-color: var(--accent-yellow);
    padding: 14px 16px;
    cursor: pointer;
    transition: background-color .2s ease, opacity .2s ease;
}

.modal__content-links {
    text-align: right;
}

.modal__content-link {
    display: block;
    font-size: 14px;
    color: var(--accent-yellow);
    line-height: 1.4;
    padding: 5px 0;
}

/*---------------------------- modal /----------------------*/

.s-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.s-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.s-modal__wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: #121212;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.s-modal.is-active .s-modal__wrapper {
    transform: translateY(0);
}

.s-modal__close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.s-modal__close:hover {
    color: #fff;
}

.page-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
    width: 100%;
}

.page-nav-button {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    max-width: 48%;
}

.page-nav-button:hover {
    background: #222;
    border-color: #ea0c68;
    box-shadow: 0 0 12px rgba(234, 12, 104, 0.3);
}

.page-nav-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-btn__arrow-prev,
.premium-btn__arrow-next {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.s-modal__content {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #000;
    aspect-ratio: 450 / 600;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.s-modal__footer {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.s-modal__social {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.s-modal__social--wa {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.s-modal__social--wa:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.s-modal__social--wa svg {
    width: 20px;
    fill: #25D366;
}

.s-modal__social--wa:hover svg {
    fill: #fff;
}

.s-modal__social--tg {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.15);
}

.s-modal__social--tg:hover {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

.s-modal__social--tg svg {
    width: 18px;
    fill: #0088cc;
}

.s-modal__social--tg:hover svg {
    fill: #fff;
}

@media (min-width: 992px) {
    .s-modal__wrapper {
        max-width: 550px;
    }

    .s-modal__content {
        height: auto;
        aspect-ratio: 550 / 700;
        max-height: 80vh;
    }
}

/*------------------------ blog-pages ---------------------*/

.main-blog {
    padding: 80px 0 40px 0;
}

.blog-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.blog-hero__title {
    text-transform: uppercase;
    font-size: 30px;
    color: #f26d7d;
    text-align: center;
    margin: 0 0 20px 0;
}

.blog-breadcrumbs {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0;
    margin: 0 0 15px 0;
}

.blog-breadcrumbs li {
    color: #fff;
    position: relative;
    padding: 0;
}

.blog-breadcrumbs li:not(:last-child) {
    margin-right: 25px;
}

.blog-breadcrumbs li:first-child {
    padding-left: 0;
}

.blog-breadcrumbs li:not(:last-child)::after {
    content: "/";
    position: absolute;
    top: 0;
    right: -15px;
}

.blog-breadcrumbs li a {
    color: var(--accent-yellow);
}

.blog__grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
}

.blog__content {
    min-width: 0;
}

.blog__content-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}

@media screen and (max-width: 992px) {
    .blog__content-cards {
        grid-template-columns: 1fr;
    }
}

.blog__card-image {
    overflow: hidden;
    margin: 0 0 15px 0;
}

.blog__card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: .8;
    transition: transform .3s ease, opacity .3s ease;
}

.blog__card-image:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.blog__card-meta {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 0 0 10px 0;
}

.blog-author {
    color: var(--accent-yellow);
}

.blog-date {
    color: #d7d7d7;
}

.blog__card-title {
    font-size: 20px;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 992px) {
    .blog__card-title {
        min-height: auto;
    }
}

.blog__card-title a {
    font-weight: 700;
    color: var(--text);
    transition: color .3s ease;
}

.blog__card-title a:hover {
    color: var(--accent-yellow);
}

.blog__card-description {
    color: #d7d7d7;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    margin: 0 0 15px 0;
}

.blog__card-more {
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-yellow);
}

.blog__sidebar-item {
    margin: 0 0 30px 0;
}

.blog__sidebar-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #f26d7d;
    margin: 0 0 15px 0;
}

.blog__sidebar-list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.blog__sidebar-list-item {
    border-bottom: 1px solid #363636;
    padding: 5px 0;
}

.blog__sidebar-list-link {
    font-size: 16px;
    color: #d7d7d7;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.blog__sidebar-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 0;
    margin: 0 0;
}

.blog__sidebar-tags-link {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: #111;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid var(--accent-yellow);
    background-color: var(--accent-yellow);
    padding: 5px 15px;
    transition: all .3s ease;
}

.blog__sidebar-tags-link:hover {
    color: var(--accent-yellow);
    background: transparent;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

/*------------------- blog-post --------------*/

.blog__post {
    margin: 0 0 40px 0;
}

.blog__post-image {
    margin: 0 0 15px 0;
}

.blog__post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog__post-meta {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 0 0 10px 0;
}

.blog__post-content img {
    margin: 15px 0 15px 0;
}

.blog__post-content h2 {
    font-size: 28px;
    margin: 0 0 15px 0;
}

.blog__post-content h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
}

.blog__post-content p {
    color: #d7d7d7;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.blog__post-content a {
    color: var(--accent-yellow);
}

.blog__post-content ol {
    padding-left: 15px;
}

.blog__post-content ol li {
    padding: 5px 0;
}

.blog__post-content ul {
    list-style: none;
    padding-left: 15px;
}

.blog__post-content ul li {
    padding: 5px 0;
}

.blog__post-content ul li,
.blog__post-content ul li a {
    color: #546e7a;
}

.blog__post-content blockquote {
    font-style: italic;
    padding: 10px 20px;
    margin: 10px 0 20px 0;
    font-size: 17.5px;
    border-left: 5px solid #f26d7d;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.blog__post-content table {
    width: 100%;
    border: 1px solid #363636;
    background-color: transparent;
    border-collapse: collapse;
    margin: 15px 0;
}

.blog__post-content table,
.blog__post-content td,
.blog__post-content th {
    border: 1px solid #363636;
    border-collapse: collapse;
    padding: 10px 15px;
}

.blog__post-content td,
.blog__post-content th {
    border: 1px solid #363636;
    border-collapse: collapse;
    padding: 10px 15px;
}

.articles-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0;
}

.articles-tags__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.articles-tags__item {
    font-weight: 500;
    font-size: 12px;
    color: #0A192F;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid var(--accent-yellow);
    background-color: var(--accent-yellow);
    padding: 5px 15px;
    transition: all .3s ease;
}

.articles-tags__item:hover {
    color: var(--accent-yellow);
    background: transparent;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

/*------------------- blog-comments ----------------*/

.blog__comments-title {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #f26d7d;
    margin: 0 0 20px 0;
}

.blog__comments-list {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

.blog__comments-item {
    border-bottom: 1px solid rgba(100, 255, 218, .08);
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
}

.blog__comments-head {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 0 0 15px 0;
}

.blog__comments-avatar {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.blog__comments-avatar img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog__comments-author {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #f26d7d;
    margin: 0 0 5px 0;
}

.blog__comments-date {
    color: #d7d7d7;
}

.blog__comments-body {
    line-height: 1.4;
    color: #d7d7d7;
}

.comment-form__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 0 15px 0;
}

@media screen and (max-width: 640px) {
    .comment-form__group {
        grid-template-columns: 1fr;
    }
}

.comment-form__input {
    font-size: 14px;
    color: #fff;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    padding: 15px 15px;
}

.comment-form__textarea {
    width: 100%;
    min-height: 120px;
    font-size: 14px;
    color: #fff;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    resize: vertical;
    padding: 15px 15px;
    margin: 0 0 15px 0;
}

.button-submit {
    font-weight: 600;
    font-size: 15px;
    color: #0A192F;
    border: none;
    border-radius: 4px;
    border: 1px solid var(--accent-yellow);
    background-color: var(--accent-yellow);
    padding: 15px 15px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: all .3s ease;
}

.button-submit:hover {
    color: var(--accent-yellow);
    background-color: transparent;
    box-shadow: 0 0 20px rgba(100, 255, 218, .15);
}

.footer-blog {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media screen and (max-width: 992px) {
    .footer-blog {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .footer-blog {
        grid-template-columns: 1fr;
    }
}

.footer-blog__logo {
    display: block;
    margin: 0 0 20px 0;
}

.footer-blog__logo img {
    width: 150px;
    max-width: 150px;
}

.footer-blog__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.footer-blog__list-link {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 8px;
    transition: .3s;
}

.footer-blog__post {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    margin: 0 0 20px 0;
}

.footer-blog__post:not(:last-child) {
    border-bottom: 1px solid #363636;
}

.footer-blog__post-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-blog__post-title {
    display: block;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0 0 10px 0;
}

.footer-blog__post-date {
    display: block;
    font-size: 12px;
    color: var(--accent-yellow);
}

/*--------------------- video -------------------*/

.video-player {
    max-width: 400px;
    margin: 0 auto;
}

.video-player__main {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
    margin-top: 20px;
}

#main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    cursor: pointer;
    margin-top: 0;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.15s;
    pointer-events: none;
    opacity: 1;
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.video-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
    bottom: 48px;
}

#modal-video:fullscreen {
    object-fit: contain !important;
    background: #000;
}

/*----------------- options-list ------------*/

.options-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 50px 0;
}

.options-list__link {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: var(--accent-yellow);
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid var(--accent-yellow);
    background-color: #111;
    padding: 7px 20px;
    transition: all .3s ease;
}

.options-list__link:hover {
    color: #111;
    background-color: var(--accent-yellow);
}

/*----------------- options-list /-----------*/
