@font-face {
    font-family: 'Saira Light';
    src: url('/default/assets/fonts/Saira-Light.eot');
    src: local('Saira Light'), local('Saira-Light'),
        url('/default/assets/fonts/Saira-Light.eot?#iefix') format('embedded-opentype'),
        url('/default/assets/fonts/Saira-Light.woff2') format('woff2'),
        url('/default/assets/fonts/Saira-Light.woff') format('woff'),
        url('/default/assets/fonts/Saira-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Saira';
    src: url('/default/assets/fonts/Saira-Regular.eot');
    src: local('Saira Regular'), local('Saira-Regular'),
        url('/default/assets/fonts/Saira-Regular.eot?#iefix') format('embedded-opentype'),
        url('/default/assets/fonts/Saira-Regular.woff2') format('woff2'),
        url('/default/assets/fonts/Saira-Regular.woff') format('woff'),
        url('/default/assets/fonts/Saira-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: local('Space Grotesk SemiBold'), local('SpaceGrotesk-SemiBold'),
        url('/default/assets/fonts/SpaceGrotesk-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('/default/assets/fonts/space-grotesk-latin-700-normal.woff2') format('woff2'),
        url('/default/assets/fonts/space-grotesk-latin-700-normal.woff') format('woff'),
        url('/default/assets/fonts/space-grotesk-latin-700-normal.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk Light';
    src: local('Space Grotesk Light'), local('SpaceGrotesk-Light'),
        url('/default/assets/fonts/SpaceGrotesk-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('/default/assets/fonts/space-grotesk-latin-500-normal.woff2') format('woff2'),
        url('/default/assets/fonts/space-grotesk-latin-500-normal.woff') format('woff'),
        url('/default/assets/fonts/space-grotesk-latin-500-normal.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --white: #fff;
    --txt: rgba(255, 255, 255, 0.74);
    --white: rgba(255, 255, 255, 1);
    --light-bg: rgba(255, 255, 255, 0.1);
    --black-bg: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    --accent: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    --blur: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    --font-main: 'Saira', sans-serif;
    --font-title: 'Space Grotesk', sans-serif;
    --font-title-md: 'Space Grotesk Light', sans-serif;
    --black-240: rgba(0, 0, 0, 0.24);
    --txt-740: rgba(255, 255, 255, 0.74);
    --white-100: rgba(255, 255, 255, 0.1);
}

.debug_block {
    background-color: black;
    z-index: 1;
    max-width: 1200px;
}

p,
li,
span,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--txt);
}

html {
    scroll-behavior: smooth;
}

p strong,
.text strong {
    font-family: var(--font-main);
    font-weight: 700;
    color: #fff;
}

html {
    box-sizing: border-box;
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
}

body {
    margin: 0 auto;
    padding-top: 0;
    font-family: var(--font-main);
    background: var(--black-bg);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    box-sizing: border-box;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

* {
    box-sizing: border-box;
}

main {
    width: 100%;
    display: flex;
    flex-flow: column;
}

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.rotate-0 {
    transform: rotate(0deg);
}

.rotate-45 {
    transform: rotate(45deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-135 {
    transform: rotate(135deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-270 {
    transform: rotate(270deg);
}

.light-decor {
    position: relative;
    z-index: 0;
    background: rgba(255, 255, 255, 0.1);
}

.dark-decor {
    position: relative;
    z-index: 0;
    background: rgba(0, 0, 0, 0.24);
}

.light-decor>* {
    position: relative;
    z-index: 3;
}

.light-decor::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 24px;
}

.dark-decor::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 24px;
}

p,
li {
    font-size: 18px;
    line-height: 28px;
}


h2 {
    font-size: 52px;
}

h3 {
    font-size: 28px;
}

a {
    text-decoration: none;
    transition: color 0.2s ease-out;
}

p i {
    font-style: italic;
}

/*Header*/
.header {
    margin-top: 10px;
    width: 100%;
    max-width: 1300px;
    position: relative;
    z-index: 2;
    display: flex;
}
.header.is-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    z-index: 22;
}
.header.is-fixed .container{
    background: rgb(0 0 0 / 15%);
}

.header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    gap: 10px;
    isolation: isolate;
    /* white 10% */
    background: rgba(255, 255, 255, 0.1);
    /* blur */
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    width: 100%;
    max-width: 1300px;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.navigation {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 100% !important;
}

.menu {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 0;
    padding: 0;
    align-items: center;
}

.menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    border-radius: 100px;

}

.menu-item a {
    padding: 0 25px;

    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
}

.menu-item a:focus,
.menu-item a:active,
.menu-item a:visited {
    color: #FFFFFF;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);

}
.visually-hidden{
    display: none;
}
.menu-item:hover a{
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.contacts {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: fixed;
    right: 5px;
    top: 50%;
    padding: 10px;
    gap: 10px;
    /* white 10% */
    background: rgb(20 18 4);
    /* blur */
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    z-index: 99;
    transform: translateY(-50%);
}

.actions {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    width: max-content;
    position: relative;
    min-width: 230px;
}

.actions .circle-btn {
    width: 70px;
    height: 70px;
}

.actions .languages {
    position: absolute;
    right: 160px;
    top: 0;
    left: 0;
    border-radius: 0 0 100px 100px;
    width: 70px;
    height: 70px;
}

.actions .languages.active {
    height: 201px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
    border-radius: 50px;
    width: 70px;
}

.actions .languages.active .lang-btn {
    background: transparent;
}

.actions .languages.active .lang-btn::before {
    display: none;
}

.search-wrapper {
    position: relative;

}

.search-form {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    /* blur */
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all .2s ease;
}

.search-form.is-open {
    display: flex !important;
}

.search-form[hidden] {
    display: none !important;
}

.toggle-menu {
    display: none !important;
    cursor: pointer;
}

.mobile-menu,
.mobile-menu-search {
    display: none;
}

/*Main styles*/


.page-title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 66px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-title.main-title {
    font-size: 55px;
    line-height: 79px;
}

h2.page-title {
    font-size: 52px;
    line-height: 66px;
}

.text {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
}

.circle-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    width: 50px;
    height: 50px;

    background: rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    position: relative;
}

.circle-btn img {
    position: relative;
    z-index: 2;
}

.circle-btn::before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px 0px #EADF8257 inset;
    backdrop-filter: blur(20px);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 35px;
}

.search-icon {
    cursor: pointer;
    border: none;
}

.link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 40px;
    gap: 10px;
    width: max-content;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 100px;
}

.favorite-btn {
    cursor: pointer;
    position: relative;
}

.favorite-btn:hover,
.search-icon:hover,
.actions .languages:not(.active) .lang-btn:hover {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    border-radius: 50%;
}

.favorites-count {
    position: absolute;
    background: rgba(95, 93, 80, 1);
    top: 14px;
    right: 13px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 5px;
    z-index: 2;
    width: 20px;
    height: 20px;
}

.link span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 31px;
    /* main */
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.link:hover {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.link:hover span {
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: relative;
    min-width: 50px;
    padding: 0 5px;
    z-index: 999;
}

.lang-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.lang-dropdown li {
    width: 60px !important;
    height: 60px !important;
    cursor: pointer;
}

.lang-dropdown li span {
    position: relative;
    z-index: 3;
}

.lang-dropdown li:hover,
.lang-dropdown li.current {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.lang-dropdown li:hover span,
.lang-dropdown li.current span {
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-dropdown li a {
    text-decoration: none;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-dropdown li a:hover span {
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Адаптив — на мобільному під кнопкою */
@media (max-width: 480px) {
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}

.section-intro {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    width: 100%;
}

.section-intro h2 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 450px;
    margin: 0;
}

.intro-desciption {
    flex: 1;
    width: 100%;
    max-width: 710px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
    gap: 30px;
    /* white 10% */
    background: rgba(255, 255, 255, 0.1);
    /* blur */
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 24px;
}

.intro-desciption p {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}
.intro-desciption a {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: #efa75e;
    margin: 0;
}

/*Footer*/
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0 20px 0;
    gap: 30px;
    width: 100%;
    min-width: 290px;
    /* black 24% */
    background: rgba(0, 0, 0, 0.24);
    /* blur */
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
}

footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

footer::after {
    z-index: 0;
    display: block;
    content: '';
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 14%;
    width: 250px;
    height: 250px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    position: absolute;
}

.top-footer {
    width: 100%;
    max-width: 100% !important;
}

.footer_wrapper .container {
    flex-flow: column;
    gap: 30px;
    position: relative;
    z-index: 3;
}

.footer-navigation {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    gap: 44px;
}

.footer-menu-block {
    flex: 0 0 calc((100% - 88px) / 3);
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.footer-menu-title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 41px;
    text-align: center;
    /* white */
    color: #FFFFFF;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu-title .arrow {
    display: none;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: auto;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-menu.popular-menu {
    grid-template-columns: repeat(3, auto);
    gap: 10px 30px;
    justify-content: flex-start;
}

.footer-menu__item-link {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* txt 74% */
    color: var(--txt);
}

.footer-menu__item-link:hover {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.contacts-list {
    display: grid;
    grid-template-rows: auto;
    width: 100%;
    grid-template-columns: repeat(3, auto);
    gap: 10px 30px;
    justify-content: flex-start;
}

.contacts-link {
    width: 70px;
    height: 70px;
}

.contacts-link:hover {
    background: var(--accent);
}

.contacts-list .contacts-list__item {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* main */
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    cursor: pointer;
}

.contacts-list .contacts-list__item:hover {
    background: linear-gradient(90deg, #FFEF68 0%, #FF8000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-bar {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 15px 40px;
    width: 100%;
    max-width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: relative;
}

.footer-bar .language {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    width: max-content;
    height: 50px;
    /* white 10% */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.footer-bar .language.active {
    height: 170px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    top: 20px;
    padding: 12px 15px 10px 15px;
    width: 130px;
    border-radius: 24px;
}

.footer-bar .language.active img {
    margin-top: 1px;
}

.footer-bar .language span,
.footer-bar .language img {
    position: relative;
    z-index: 1;
}

.footer-bar .language::before {
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(80px);
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    border-radius: 35px;
    overflow: hidden;
}

.footer-bar .language.active::before {
    border-radius: 24px;
}

.footer-bar .languages-menu {
    display: none;
    position: relative;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    width: 100%;
    padding: 0;
    gap: 10px;
    flex: 0 0 100%;
    flex-flow: column;
    opacity: 1;
    pointer-events: auto;
    width: 150px;
}

.footer-bar .language:active {
    background: rgba(0, 0, 0, 0.24);
}

.footer-bar .languages-menu .languages-menu__item {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: relative;
    border-radius: 35px;
}

.footer-bar .languages-menu .languages-menu__item::before {
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    border-radius: 35px;
    overflow: hidden;
}

.footer-bar .languages-menu .languages-menu__item span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
}

.footer-bar .languages-menu .languages-menu__item:hover,
.footer-bar .languages-menu .languages-menu__item.current {
    background: rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px)
}

.footer-bar .languages-menu .languages-menu__item:hover span,
.footer-bar .languages-menu .languages-menu__item.current span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-bar .languages-menu.open {
    display: flex;
}

.footer-bar-menu {
    list-style-type: none;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    gap: 20px;
    flex: 0 0 auto;
    width: max-content;
    margin: 0;
    padding: 0;
}

.footer-bar-menu>li {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: max-content;
    position: relative;
}

.footer-bar-menu>li a {
    padding-left: 14px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    /* txt 74% */
    color: rgba(255, 255, 255, 0.74);

}

.footer-bar-menu>li:hover a {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-bar-menu>li:hover a::before {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.footer-bar-menu>li a::before {
    display: block;
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    width: 6px;
    height: 6px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.copyright {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.footer-disclaimer {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 10px auto;
}

.footer-disclaimer p {
    text-align: center;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    /* identical to box height */
    text-align: center;
    /* txt 74% */
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

.footer-copy {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    /* identical to box height */
    text-align: center;
    /* txt 74% */
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

/*Breadcrumbs*/
.breadcrums_wrapper {
    border-radius: 24px;
    padding: 8px 20px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 30px 0 70px 0;
}

.breadcrums_item {}

.breadcrums_item span {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: var(--txt-740);
}

.breadcrums_item a {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.separator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--white-100);

}

/*Pagination*/
.pagination {
    margin-top: 30px;
}

.pagination-list {
    display: flex;
    gap: 10px;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pagination-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    transition: all 0.3s ease-in;
}

.pagination-item.active {
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
}

.pagination-item-link.active {
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pagination-item-link {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pagination-item:hover {
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
}

.pagination-arrow.prev {
    rotate: 90deg;
}

.pagination-arrow.next {
    rotate: -90deg;

}

@media (max-width: 525px) {
    .pagination {
        margin-top: 15px;
    }
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    width: 100vw
}

.modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 47, 47, 0.84);
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
}

.modal-overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
}

.modal-content {
    position: relative;
    background: rgba(0, 0, 0, 0.24);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px 30px;
    border-radius: 10px;
    z-index: 10000;
    border-radius: 24px;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    border-radius: 14px;
    background: var(--liner-bg);
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.modal-close img {
    width: 24px;
    height: 24px;
}

/* ---- Desktop modal ---- */
.search-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 500;
}

.search-modal.active {
    display: flex;
}

.search-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
}

.search-modal__overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
}

.search-modal__content {
    position: relative;
    padding: 30px;
    border-radius: 12px;
    width: 90vw;
    max-width: 900px;
    z-index: 501;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.search-modal.active .search-modal__content {
    transform: translateY(0);
    opacity: 1;
}

.search-modal__form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
}

.search-modal__form input[type="search"] {
    width: 100%;
    height: 70px;
    border-radius: 50px;
    box-shadow: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding-left: 24px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: rgba(255, 255, 255, 0.74);
}

.search-modal__form input[type="search"]:focus,
.search-modal__form input[type="search"]:active,
.search-modal__form input[type="search"]:hover {
    outline: none;
    border: none;
    box-shadow: none;
}

.modal-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0;
    z-index: 0;
    cursor: pointer;
    border: none;
    box-shadow: none;
    outline: none;
}

.search-title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 56px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0 auto 30px auto;
    text-align: center;
}

.modal-search-btn::before {
    content: '';
    display: block;
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.modal-search-btn img {
    position: relative;
    z-index: 3;
}

.search-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 5;
}

.search-results {
    display: none;
    flex-flow: column;
    gap: 10px;
}

.search-results.open {
    display: flex;
}

.search-results-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 10px;
}

.search-results-list__item {
    flex: 0 0 calc((100% - 20px) / 3);
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
}

.search-results-list__item-link {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 5px 10px 5px;
}

.search-model-thumb {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100px;
    height: 100%;
    max-height: 150px;
    border-radius: 14px;
}

.search-model-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
}

.search-model-info {
    flex: 1;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
}

.model-info-btns {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 10px;
}

.model-info-btns .circle-btn {
    width: 30px;
    height: 30px;
}

.model-info-btns .circle-btn img {
    width: 16px;
    height: auto;
}

.search-model-info .girl-name {
    margin: 0;
    border-radius: 100px;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-model-info .girl-name::before {
    border-radius: 100px;
}

.search-model-info .girl-name span {
    position: relative;
    z-index: 3;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
}

.search-model-info .favorite:not(.active):hover {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.search-model-info .favorite {
    width: 100%;
    height: 40px;
}

.search-results-list__item:hover .search-model-info .girl-name span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.see-more-link {
    width: max-content;
    margin: 0 auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 24px;
    border-radius: 100px;
    cursor: pointer;
}

.see-more-link span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.search-category-title {
    margin: 20px 0 10px 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    text-align: left;
    color: #FFFFFF;
}

.categories-result-list {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.categories-result-list .category-item {
    flex: 0 0 auto;
    height: 70px;
    width: max-content;
}

.categories-result-list .category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
}

.categories-result-list .category-item::before {
    border-radius: 24px;
}

.categories-result-list .category-item a {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 5px 20px;
    height: 70px;
}

.categories-result-list .category-item:hover a span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.categories-result-list .category-item:hover img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(63%) saturate(392%) hue-rotate(347deg) brightness(101%) contrast(87%);
}

.tabs {
    width: 100%;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-btn {
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transition: background .25s;
}

.tab-btn.active {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.tab-btn.active span {
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
}

.tab-panel.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.bottom-actions-bar {
    display: none;
}

.page-title.mobile {
    margin: 70px 0 40px 0;
}

.girls-list.open {
    flex-wrap: wrap;
}

.menu-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 35px;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px 25px 2px 25px;
    border-radius: 100px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 130px;
    list-style: none;
    margin: 0;
    padding: 10px 20px;

    background: rgb(17 16 6 / 95%);
    box-shadow: 0px 0px 10px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.dropdown-item-link {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    transition: color 0.3s ease-in-out;
}

.dropdown-item-link:hover {
    color: #EADF82;
}

.menu-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
}

.menu-item-dropdown:focus-within .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    color: #EADF82;
}


.mobile-menu-item {
    list-style: none;
}

.open-submenu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding-right: 22px;
    /* місце під іконку */
}

.open-submenu-btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(90deg);

    background-color: #EADF82;
    mask-image: url('../../images/front/arrow_drop_down_circle_light.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
}

.submenu-panel {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    padding: 20px;
    transition: left .35s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.submenu-panel.active {
    left: 0;
}

.submenu-back {
    background: none;
    border: none;
    color: #eadf82;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 12px;
}
.submenu-back img{
    transform: rotate(90deg);
}

.submenu-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.submenu-list a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    display: inline-block;
}


.success-popup {
       position: fixed;
    top: 10px;
    right: 10px;
    bottom: 0;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 9999;
}

.success-popup.visible {
    opacity: 1;
}

.popup-content {
    background: rgba(14, 11, 11, 0.85);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(234, 223, 130, 0.34) inset;
    width: fit-content;
}

.popup-content p {
    margin: 0;
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
}




@media screen and (max-width: 1490px) {
    .filter-item__dropdown {
        left: 0% !important;
        transform: translateX(0%) !important;
    }
}
@media screen and (max-width: 1400px) {

    .footer-menu,
    .footer-menu.popular-menu {
        grid-template-columns: repeat(3, auto);
    }

    .contacts-list {
        grid-template-columns: repeat(2, auto);
    }

    .footer-navigation {
        gap: 30px;
    }
}

@media screen and (max-width: 1340px) {
    .header {
        padding-inline: 20px;
    }
}

@media screen and (max-width: 1200px) {

    .footer-menu,
    .contacts-list {
        grid-template-columns: repeat(2, auto);
    }

    .footer-menu.popular-menu {
        grid-template-columns: repeat(3, auto);

    }

    .footer-menu.main-menu {
        gap: 10px 30px;
    }

    .menu-item a {
        padding: 0 15px;
    }

    .footer-menu-block.main-menu-block,
    .footer-menu-block {
        flex: 0 0 auto;
    }
}

@media screen and (max-width: 1023px) {
    .toggle-menu {
        display: flex !important;
    }

    .footer-navigation {
        gap: 30px;
    }

    .contacts {
        display: none;
    }

    .navigation .menu {
        display: none;
    }

    .mobile-menu.open {
        display: flex;
        flex-flow: column;
        position: absolute;
        width: 100%;
        height: 100%;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        max-width: 100% !important;
        z-index: 999;
        border-radius: 0;
        padding: 15px;
    }

    .mobile-menu.open::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background:
            linear-gradient(90deg, #0A0A0A 0%, #171502 100%),
            linear-gradient(rgba(0, 0, 0, 0.74),
                rgba(0, 0, 0, 0.74));
        opacity: 0.94;
        box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
        backdrop-filter: blur(20px);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .mobile-menu-actions {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
    }

    .mobile-menu-actions .close-menu {
        cursor: pointer;
        margin-left: auto;
    }

    .mobile-menu-actions .favorite-btn {
        margin-left: auto;
    }

    .mobile-menu-actions .favorite-btn .circle-btn {
        position: relative;
        z-index: 3;
    }

    .mobile-menu-actions .favorite-btn .circle-btn:hover {
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    }

    .mobile-menu-actions .circle-btn {
        background: rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .mobile-menu-actions .lang-dropdown li.current {
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    }

    .circle-btn::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
        backdrop-filter: blur(20px);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .menu {
        flex-flow: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        position: relative;
        z-index: 2;
        margin: auto;
        height: auto;
    }

    .mobile-menu-footer {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        padding: 5px;
        z-index: 1;
        border-radius: 100px;

    }

    .mobile-menu-footer>* {
        position: relative;
        z-index: 3;
    }

    .mobile-menu-footer::before {
        border-radius: 100px;
    }

    .mobile-menu-footer .back-btn img {
        transform: rotate(90deg);
    }

    .mobile-contacts {
        display: flex;
        justify-content: flex-start;
        flex: 0 0 auto;
        gap: 20px;
        width: max-content;
        margin: 0 auto;
    }

    .back-btn {
        cursor: pointer;
    }

    .mobile-contacts .contacts-link {
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);

    }

    .filter-btn {
        cursor: pointer;
    }

    .search-wrapper {
        margin-left: 80px;
    }

    .mobile-menu-actions .languages {
        display: flex;
        position: absolute;
        flex-flow: row;
        background: rgba(0, 0, 0, 0.24);
        border-radius: 50px;
    }

    .mobile-menu-actions .languages.active {
        background: rgba(0, 0, 0, 0.24);
        padding: 5px;
    }

    .mobile-menu-actions .search-icon:hover {
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    }

    .mobile-menu-actions .languages.active .lang-dropdown {
        display: flex;
        align-items: center;
    }

    .mobile-menu-actions .languages.active .lang-btn {
        background: transparent;
        width: 40px;
        height: 40px;
    }

    .mobile-menu-actions .languages .lang-btn,
    .mobile-menu-actions .search-icon {
        position: relative;
        z-index: 3;
    }

    .mobile-menu-actions .languages.active .lang-btn::before {
        display: none;
    }

    .mobile-menu-actions .languages.active::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
        backdrop-filter: blur(20px);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        border-radius: 50px;
    }

    .mobile-menu-actions .lang-dropdown ul {
        flex-flow: row;
        align-items: center;
        position: relative;
        z-index: 3;
    }
}

@media screen and (max-width: 990px) {
    .footer-menu.popular-menu {
        grid-template-columns: repeat(2, auto);
    }

    .footer-menu__item-link {
        font-size: 16px;
    }
}

@media screen and (max-width: 900px) {

    .section-intro {
        flex-flow: column;
        align-items: flex-start;
        gap: 20px;
    }

    .search-wrapper {
        margin-left: 80px;
    }

    .search-results-list__item {
        flex: 0 0 calc(50% - 5px);
    }

    .section-intro h2 {
        flex: 1;
        max-width: 100%;
        padding: 0;
    }

    .intro-desciption {
        width: auto;
        padding: 20px !important;
    }

    .footer-navigation {
        flex-wrap: wrap;
        gap: 30px 20px;
    }

    .footer-menu-block.main-menu-block,
    .footer-menu-block {
        flex: 0 0 calc(50% - 40px);
    }

    .footer-menu.main-menu,
    .footer-menu.popular-menu {
        grid-template-columns: repeat(3, auto);
    }

    .footer-menu-block.contacts-menu-block {
        flex: 0 0 100%;
        width: 100%;
    }

    .contacts-list {
        grid-template-columns: repeat(5, auto);
        column-gap: 20px;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .contacts {
        display: none;
    }

    .search-modal {
        display: none !important;
    }

    .breadcrums_wrapper {
        margin: 30px auto 50px 0;
    }

    .footer-bar {
        height: auto;
        min-height: 110px;
        padding: 15px 15px 85px 15px;
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
    }

    .intro-desciption {
        padding: 15px !important;
    }

    .footer-bar-menu {
        flex-wrap: wrap;
        flex: 0 0 100%;
        width: 100%;
    }

    .footer-bar .language {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        top: auto;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bar .language.active {
        top: calc(100% - 65px);
        width: 100%;
        max-width: 260px;
    }

    .contacts-list {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    .contacts-list .contacts-list__item {
        flex: 0 0 auto;
        gap: 20px;
    }

    footer {
        padding-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .circle-btn {
        width: 50px;
        height: 50px;
    }

    .page-title.mobile {
        margin: 50px 0 30px 0;
    }

    .section-intro h2 {
        flex: 0 0 auto;
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .catalog-link {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 5px 20px;
        gap: 10px;
        width: max-content;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
        backdrop-filter: blur(10px);
        border-radius: 100px;
    }

    .catalog-link span {
        font-family: var(--font-main);
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 31px;
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .actions .circle-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .favorites-count {
        top: 9px;
        right: 6px;
    }

    .actions .languages {
        display: none;
    }

    .search-wrapper {
        margin-left: 0;
    }

    .mobile-menu-search {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        height: 90px;
        z-index: 9;
        top: 70px;
        border-radius: 50px;
    }

    .mobile-menu-search .mobile-menu-search-warpper {
        width: 100%;
        background: rgba(0, 0, 0, 0.74);
        border-radius: 50px;
    }

    .mobile-menu-search>* {
        position: relative;
        z-index: 2;
    }

    .close-search {
        position: absolute;
        right: 70px;
        top: 33px;
        width: 24px;
        height: 24px;
    }

    .mobile-menu-search input[type="search"] {
        width: 100%;
        height: 90px;
        border-radius: 50px;
        box-shadow: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 24px;
        font-family: var(--font-main);
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 25px;
        color: rgba(255, 255, 255, 0.74);
        box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
        backdrop-filter: blur(20px);
        background: rgba(0, 0, 0, 0.24);
    }

    .mobile-menu-search input[type="search"]::placeholder {
        font-family: var(--font-main);
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 25px;
        color: rgba(255, 255, 255, 0.74);
    }

    .mobile-menu-search .search-btn {
        position: absolute;
        right: 5px;
        top: 15px;
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        padding: 0;
        z-index: 2;
        cursor: pointer;
        border: none;
        box-shadow: none;
        outline: none;
    }

    .mobile-menu-search .search-btn img {
        position: relative;
        z-index: 2;
    }

    .mobile-menu-search .search-btn::before {
        content: '';
        display: none;
        box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
        backdrop-filter: blur(20px);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        border-radius: 50%;
        width: 60px;
        height: 60px;
    }

    .mobile-menu-search input[type="search"]:focus,
    .mobile-menu-search .search-btn:focus,
    .mobile-menu-search input[type="search"]:active,
    .mobile-menu-search .search-btn:active {
        outline: none;
    }

    .mobile-menu-search::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
        backdrop-filter: blur(20px);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        border-radius: 50px;
    }

    .mobile-menu-search.active {
        display: flex;
        position: absolute;
        top: 0;
    }

    .actions .languages {
        top: 10px;
        left: auto;
        right: 120px;
    }

    .mobile-menu-actions .languages.active .lang-dropdown {
        margin-top: 0;
    }

    .mobile-menu-actions .circle-btn:hover {
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%) !important;
    }

    .actions .languages {
        width: 50px !important;
        height: 50px !important;
    }

    .mobile-menu-actions .lang-dropdown li,
    .lang-dropdown li {
        width: 40px !important;
        height: 40px !important;
    }

    .lang-dropdown li a {
        font-size: 14px;
    }

    .actions .languages.active {
        width: 50px;
        height: 145px;
    }
}

@media screen and (max-width: 650px) {
    .container {
        padding-inline: 15px;
    }

    .header {
        padding-inline: 15px;
    }

    .mobile-menu-search,
    .mobile-menu-search input[type="search"] {
        height: 70px;
    }

    .mobile-menu-search .search-btn {
        top: 10px;
        width: 50px;
        height: 50px;
    }

    .close-search {
        top: 23px;
        right: 60px;
    }

    .actions {
        min-width: auto;
    }

    .actions .languages {
        top: 0;
    }

    .left-wrap {
        border-radius: 24px !important;
    }

    .left-wrap::before {
        border-radius: 24px !important;
    }

    h1.page-title.main-title {
        font-size: 32px;
        line-height: 41px;
    }

    .breadcrums_wrapper {
        margin: 15px auto 40px 0;
    }

    .logo-wrapper,
    .logo-wrapper img {
        width: 50px;
        height: 50px;
    }

    h2.page-title,
    h2.help-section__title {
        font-size: 32px !important;
        line-height: 48px !important;
    }

    .footer-menu-block.main-menu-block,
    .footer-menu-block {
        flex: 0 0 100%;
        width: 100%;
    }

    .footer_wrapper .container,
    .footer-navigation {
        gap: 10px;
    }

    .copyright {
        margin-top: 10px;
    }

    .footer-menu-title {
        font-size: 20px;
        line-height: 26px;
        padding: 10px 0;
        position: relative;
        padding: 10px 15px;
        cursor: pointer;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .footer-menu-title .arrow {
        display: flex;
    }

    .footer-menu-block.responsive {
        overflow: hidden;
        height: 50px;
        transition: height 0.4s ease;
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
        backdrop-filter: blur(10px);
        border-radius: 24px;
    }

    .footer-menu-block.responsive.open .footer-menu {
        padding: 0 15px 10px 15px;
    }

    .footer-menu-block.contacts-menu-block .footer-menu-title {
        text-align: center;
        justify-content: center;
        padding-bottom: 0;
    }

    .footer-menu-block.responsive.open .footer-menu-title .arrow {
        transform: rotate(180deg);
    }

    .footer-menu-block.responsive.open .footer-menu-title {
        padding: 10px 15px 10px 15px;
    }

    .footer-menu.main-menu,
    .footer-menu.popular-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-menu-block.responsive.open {
        height: auto;
    }

    footer {
        padding-top: 20px;
    }
}

/* Last reviews */
@media screen and (max-width: 560px) {
    h2.page-title {
        font-size: 32px;
        line-height: 41px;
    }

    .actions .languages {
        display: none;
    }

    .languages.active {
        display: flex;
        flex-flow: row;
    }

    .pagination-item {
        width: 40px;
        height: 40px;
    }

    .pagination-item-link {
        font-size: 15px;
    }

    .pagination-list {
        gap: 5px;
    }

    .page-title.mobile {
        margin: 30px 0 20px 0;
    }
}

@media screen and (max-width: 475px) {
    .bottom-actions-bar {
        position: fixed;
        bottom: 15px;
        width: 100%;
        z-index: 9999;
        display: block;

    }

    .bottom-actions-inner {
        margin: 0 auto;
        border-radius: 100px;
        padding: 10px;
        backdrop-filter: blur(20px);
        box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
        background: var(--black-240);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 30px);
    }

    .action-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        backdrop-filter: blur(20px);
        box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
        background: var(--black-240);
    }

    .bottom-actions-social {
        display: flex;
        flex-direction: row;
        gap: 10px;

    }

    .bottom-actions-social .action-btn {
        backdrop-filter: blur(20px);
        box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
        background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    }

    .action-btn.go-prev {
        transform: rotate(90deg);
    }

}

@media screen and (max-width: 375px) {

    .footer-menu.main-menu,
    .footer-menu.popular-menu {
        grid-template-columns: 1fr;
    }
}






.girls-list,
.girls-list-desc {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.girl-card {
    max-width: 310px;
    height: 460px;
    width: 100%;
    flex: 1 1 calc(25% - 15px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    border-radius: 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.girl-card::before {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 0;
}

.girl-card a {
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 24px;
}

.girl-thumb {
    width: 100%;
    height: 100%;
    margin: 0 0;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.girl-thumb img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 24px;

}

.left-card-btns {
    display: flex;
    flex-flow: column;
    gap: 10px;
    position: absolute;
    left: 15px;
    top: 15px;
}

.left-card-btns .circle-btn,
.right-card-btns .circle-btn {
    background: rgba(0, 0, 0, 0.24);
}

.right-card-btns {
    display: flex;
    flex-flow: column;
    gap: 10px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.girl-card:hover .girl-thumb {
    width: 100%;
    height: 100%;
    margin: 0;
}

.girl-card-wrapper {
    display: flex;
    width: 100%;
    height: 460px;
    z-index: 1;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.girl-card:hover .girl-card-wrapper {
    width: 100%;
    padding: 0;
}

.girl-card-img-holder {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.girl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.2s ease-in-out;
}

.girl-info {
    position: absolute;
    left: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    bottom: 25px;
    padding-inline: 10px;
    width: calc(100% - 10px);
}

.girl-card-data {
    display: flex;
    justify-content: center;
    padding: 0 25px;
}

.girl-info__title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.girl-card-name {
    flex: 1;
    text-align: center;
    padding: 5px 30px;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
}

.girl-card-name span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
}

.girl-card:hover .girl-card-name span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.girl-card:hover .favorite {
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 35px;
}

.girl-card:hover .girl-thumb {
    margin: 0;
}

.favorite {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 35px;
}

.girl-card .favorite:hover,
.girl-card .favorite.active {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.favorite.active img {
    transform: rotate(45deg);
}

.girl-card-model-icons {
    padding: 0 25px 25px 25px;
    display: flex;
    gap: 10px;
}

.girl-card-model-icon {
    flex: 1 1 32%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 20px 0 rgba(205, 52, 51, 0.5);
    background: var(--acsent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.girl-card-model-icon-img {
    width: 30px;
    height: 30px;
}

.girl-card-container:hover .girl-card-img {
    transform: scale(1.2) translateY(5%);
}

.girl-card-container:hover .girl-card-name {
    color: var(--acsent);
}

.girl-card-container:hover {
    background-color: #000;
}

.girl-card-container:hover .girl-card-img-wrapper {
    padding: 0;
}

.girl-card-container:hover .girl-card-img-holder {
    border-radius: 0;
}

@media screen and (max-width: 1224px) {
    .girl-card-container {
        max-width: 451px;
        min-width: 315px;
    }

    .girl-card-img-wrapper {
        padding: 20px 20px 0;
        height: 343px;
        margin-bottom: 15px;
    }

    .girl-card-data {
        padding: 0 20px;
    }

    .girl-card-model-icons {
        padding: 0 20px 20px 20px;
    }
}

@media screen and (max-width: 1100px) {
    .girl-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

@media screen and (max-width: 1024px) {
    .girl-card-container {
        max-width: 354px;
        min-width: 290px;
    }

    .girl-card {
        flex: 0 0 calc((100% - 20px) / 2);
        height: auto;
        max-height: 526px;
    }

    .girl-card-img-wrapper {
        height: 392px;
    }

    .girl-card-name,
    .girl-card-price {
        font-size: 24px;
    }

    .girl-card-info {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {

    .girls-list,
    .slider-wrapper {
        flex-wrap: nowrap;
    }

    .girl-card {
        flex: 1 1 49%;
        max-width: 354px;
        height: 526px;
    }

    .girl-slider-wrapper,
    .slider-wrapper {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    .girl-slide {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        width: calc(50% - 10px) !important;
        box-sizing: border-box;
        transition: transform .55s cubic-bezier(.4, .0, .2, 1);
        will-change: transform;
        gap: 10px;
        height: 461px;
    }

    .slider-progress-bars {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-bottom: 0;
        margin-top: 15px;
    }

    .slider-mobile {
        overflow: hidden;
    }

    .slider-mobile a,
    .slider-mobile img {
        -webkit-user-drag: none;
        user-drag: none;
        touch-action: pan-y;
    }

    .slider-wrapper {
        touch-action: pan-y;
    }


    .slider-progress-segment {
        width: 20px;
        height: 3px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        overflow: hidden;
    }

    .slider-progress-segment.active {
        width: 32px;
        background: rgba(255, 255, 255, 0.6);
    }

    .slider-progress-fill {
        width: 0;
        height: 100%;
        background: #EFA75E;
        transition: width 5s linear;
    }
}

@media screen and (max-width: 700px) {}

@media screen and (max-width: 560px) {
    .girls-list {
        gap: 5px !important;
    }

    .girl-card {
        flex: 0 0 calc(50% - 2.5px) !important;
        max-width: calc(50% - 2.5px) !important;
        width: calc(50% - 2.5px) !important;
        max-height: 315px !important;
    }

    .girl-card-name {
        padding: 4px 10px;
        height: 30px;
    }

    .girl-card-name span {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .girl-info {
        bottom: 11px !important;
        left: 0 !important;
    }

    .girl-thumb {
        max-height: 305px;
        overflow: hidden;
        border-radius: 20px;
    }

    .girl-thumb img {
        max-height: 100% !important;
        object-fit: cover;
    }

    .girl-card-wrapper {
        height: auto !important;
    }

    .girls-list {
        gap: 5px !important;
    }

    .girl-card {
        flex: 0 0 calc(50% - 2.5px) !important;
        max-width: calc(50% - 2.5px) !important;
        width: calc(50% - 2.5px) !important;
        max-height: 315px !important;
    }

    .girl-card-name {
        padding: 4px 10px;
        height: 30px;
    }

    .girl-card-name span {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .girl-info {
        bottom: 11px !important;
        left: 0 !important;
    }

    .favorite {
        height: 30px !important;
        width: 30px !important;
    }

    .favorite img {
        width: 13px;
        height: 13px;
    }

    .girl-thumb {
        max-height: 305px;
        overflow: hidden;
        border-radius: 20px;
    }

    .girl-thumb img {
        max-height: 100% !important;
    }

    .girl-card-wrapper {
        height: auto !important;
    }

}

@media screen and (max-width: 475px) {
    .girl-card {
        max-height: 265px !important;
    }

    .girl-card-wrapper {
        height: 100% !important;
    }

    .girl-thumb {
        max-height: 260px !important;

    }

    .girl-card .circle-btn {
        width: 30px;
        height: 30px;
    }

    .girl-card .circle-btn img {
        width: 16px;
        height: 16px;
    }


}

@media screen and (max-width: 420px) {
    .girl-card-model-icon {
        padding: 5px;
    }

    .girl-card-name,
    .girl-card-price {
        font-size: 20px;
    }

    .girl-card-img-wrapper {
        padding: 15px 15px 0;
    }

    .girl-card-data {
        padding: 0 15px;
    }

    .girl-card,
    .girl-thumb {
        max-height: 209px !important;
    }

    .girl-card-model-icons {
        padding: 0 15px 15px 15px;
    }
}