/*--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)
}

:root {
    --light-pink: #fff0f5;
    --hover-link-color: #b8941f;
    --main-pink-color: #ff97bb;
    --main-red-color: #8f2447;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: sans-serif;
    font-size: 18px;
    color: #fff;
    background-color: var(--light-pink);
    padding: 0;
    margin: 0
}

.container {
    width: 1400px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.container-inner {
    width: 1200px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.accent-link {
    color: #DB004B;
}

.bold-text {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.section-text {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0 0 24px 0;
}

.header {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80px;
    background-color: #000;
    position: fixed;
    top: 0;
    z-index: 50;
    padding: 10px 0;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;
}

.header-logo {
    transition: all .2s ease-in-out;
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 24px;
    color: var(--main-red-color);
    padding: 0;
    margin-right: auto;
}

.header-logo:hover {
    color: #fff
}

.header-logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

.navigation {
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 1.5vw, 25px);
}

.main-menu {
    min-width: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 0;
    margin: 0
}

.main-menu-item {
    flex-shrink: 1;
    padding: 15px 10px;
}

@media screen and (max-width: 1200px) {
    .main-menu-item {
        min-width: 40px;
    }
}

.main-menu-link {
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s ease;
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .main-menu-link {
        color: var(--main-pink-color);
    }
}

.main-menu-link:hover {
    color: var(--main-pink-color);
}

/*-----------------language-block-----------------*/

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 10px 10px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.language-block-head {
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
}

.language-block-head span {
    margin-right: 5px;
}

.language-block-head::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%);
}

.language-block-list {
    list-style: none;
    width: 90px;
    background-color: #fff;
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.4);
    padding: 0 0;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    display: none;
}

@media screen and (max-width:992px) {
    .language-block-list {
        right: auto;
        left: 0;
    }
}

.language-block-list.active {
    display: block;
}

.language-block-list li {
    padding: 10px 15px;
}

.language-block-list li:not(:last-child) {
    border-bottom: 1px solid var(--main-pink-color);
}

.language-block-list li:hover {
    background-color: var(--main-pink-color);
}

.language-block-list li a {
    display: block;
    font-size: 14px;
    color: #333;
    text-align: left;
}

/*-----------------language-block-end-------------*/

.header-options {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

@media screen and (max-width: 992px) {
    .header-options {
        margin: 0 50px 0 0;
    }
}

.header-options .social-link {
    width: 50%;
    max-width: 200px;
}

.social-link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    margin: 0 auto 40px auto;
}

.social-link-circle svg {
    width: 30px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    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);
    column-gap: 5px;
    padding: 8px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow .3s ease, color .3s ease;
}

.social-link--watsapp {
    background-color: #25D366;
}

.social-link--telegram {
    background-color: #2AABEE;
}

@media screen and (max-width: 640px) {
    .social-link {
        min-width: 120px;
        width: 50%;
        max-width: 200px;
        font-size: 12px;
        padding: 10px 10px;
    }
}

.social-link svg {
    width: 20px;
    flex-shrink: 0;
    fill: #fff;
}

.social-link:hover {
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.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: 17px;
        right: 15px;
        transform: translateY(0);
    }
}

/*------------------------ mega-menu --------------------*/

.mega-menu {
    list-style: none;
    width: 160px;
    max-height: 80vh;
    overflow-y: auto;
    background-color: var(--main-red-color);
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.6);
    scrollbar-width: thin;
    scrollbar-color: var(--main-pink-color) rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 15px;
    margin: 0;
    display: none;
}

@media screen and (max-width: 992px) {
    .mega-menu {
        width: 100%;
        max-height: none;
        overflow-y: visible;
        box-shadow: none;
        position: static;
        display: none;
    }

    .mega-menu.is-visible {
        display: block;
    }
}

.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background-color: var(--main-pink-color);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-pink-color);
    filter: brightness(1.2);
}

.mega-menu__item {
    padding: 5px 0;
}

.mega-menu__link {
    font-size: 14px;
    color: #fff;
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .dropdown-item:hover>.mega-menu {
        display: block;
    }
}

/*------------------------ burger --------------------*/

.button-burger {
    width: 30px;
    height: auto;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    padding: 0;
    display: none;
}

.button-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 0 0 6px
}

.page-nav-name {
    overflow: hidden;
}

.main-grid {
    display: inline-block;
    width: 100%
}

.main-grid {
    padding-left: 0;
}

.main-content {
    padding: 120px 0 40px 0;
}

.main-content__inner {
    width: 1400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    margin: 0 auto;
}

.banner-top {
    order: 1;
}

.main-content__top {
    order: 2;
}

.main-content__middle {
    order: 3;
}

.main-content__bottom {
    order: 4;
}

/*------------------------- banner ---------------------*/

.banner-top {
    padding: 15px 0;
}

.banner-top__inner {
    background-color: var(--main-red-color);
    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 {
    position: relative;
    z-index: 1;
}

.banner-top__content a {
    display: block;
    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 /--------------------*/

.main-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media screen and (max-width: 992px) {
    .main-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 32px;
    color: var(--main-red-color);
    margin: 0 0 15px 0;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
}

.diamonds-cards,
.cold-cards,
.premium-cards {
    margin: 0 0 60px 0;
}

/*-------------------- card ------------------*/

.main-card {
    position: relative;
    background-image: linear-gradient(to bottom, #FFCF48 0%, #FFCF48 75%, #b35b47 100%);
    overflow: hidden;
    padding-top: 165%;
}

.card-inner {
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
}

.card-diamond-inner {
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
}

.card-premium-inner {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.virified-label {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}

.virified-label::before {
    content: "";
    display: block;
    width: 80%;
    height: 100%;
    background-color: var(--main-pink-color);
    position: absolute;
    top: 0;
    left: 80px;
    z-index: 0;
    transform: rotate(45deg);
    transition: all .3s ease;
}

.virified-label:hover::before {
    width: 215%;
    left: 0;
    transform: rotate(0deg);
}

@media screen and (max-width: 992px) {
    .virified-label::before {
        width: 215%;
        left: 0;
        transform: rotate(0deg);
    }
}

.virified-label-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 5px;
    padding: 3px 0 3px 10px;
    position: relative;
    z-index: 5;
}

.virified-label-text {
    font-size: 18px;
    color: #fff;
    line-height: 1;
    opacity: 0;
    transition: all .3s ease;
}

.virified-label:hover .virified-label-text {
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .virified-label-text {
        font-size: 16px;
        opacity: 1;
    }
}

.virified-label svg {
    width: 30px;
    fill: var(--main-red-color);
}

.main-card.card-diamond::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 220%;
    height: 190%;
    border-radius: inherit;
    padding: 5px;
    background: conic-gradient(from 0deg, #ffffff, #dff7ff, #9fe7ff, #7aa6ff, #b59cff, #ffd1f2, #ffffff);
    filter: saturate(1.25) brightness(1.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    pointer-events: none;
    will-change: transform, filter;
    animation: diamondFlow 4s linear infinite;
}

@keyframes diamondFlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-card-info {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    background-image: linear-gradient(to top, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 50%) 60%, rgb(0 0 0 / 0) 100%);
    padding: 50px 8px 8px 8px;
    transition: all 0.3s ease;
}

.main-card-info h3 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    margin: 0 0;
}

.main-card-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 10px;
}

.contact-phone {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 12px;
    color: #fff;
    margin-right: auto;
}

.contact-phone:hover {
    color: var(--light-pink);
}

.contact-phone svg {
    width: 24px;
}

.contact-phone-numer {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.contact-telegram svg,
.contact-whatsapp svg {
    width: 30px;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.card-price-item {
    font-size: 14px;
    color: #fff;
}

.card-price-item sup {
    font-size: 10px;
}

.bottom-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-pink-color);
    margin: 0 0 60px 0;
}

/*--------------------- seo-articles ----------------*/

.seo-articles {
    border-bottom: 2px solid #e0e0e0;
    margin: 0 0 40px 0;
}

.seo-articles h1 {
    text-transform: uppercase;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.seo-articles h2 {
    text-transform: uppercase;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.seo-articles h3 {
    text-transform: uppercase;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.seo-articles p {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.seo-articles ul {
    color: #1a1a1a;
}

/*----------------- options-list ------------*/

.options-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 50px 0;
}

.options-list__item {
    min-width: 0;
}

.options-list__link {
    display: inline-block;
    max-width: 100%;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 5px;
    background-color: var(--main-red-color);
    padding: 7px 10px;
    transition: all .3s ease;
}

.options-list__link:hover {
    color: var(--main-red-color);
    background-color: var(--main-pink-color);
}

/*---------------------- more-offers ----------------*/

.more-offers-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
}

@media screen and (max-width: 992px) {
    .more-offers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 520px) {
    .more-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.more-offers-inner {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.more-offers-card .main-card-info {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    padding: 50px 8px 8px 8px;
}

.more-offers-card-title {
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 5px 0;
}

.more-offers-card .contact-whatsapp {
    width: 100%;
    justify-content: flex-start;
}

.more-offers-card .contact-telegram svg,
.more-offers-card .contact-whatsapp svg {
    width: 24px;
}

.single-page-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    column-gap: 25px;
    row-gap: 10px;
    padding: 10px 0;
    margin: 0;
}

.breadcrumbs li {
    position: relative;
    font-size: 12px;
    padding: 0;
    color: #000;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: var(--main-red-color);
    position: absolute;
    top: 0;
    right: -15px;
}

.breadcrumbs li a {
    position: relative;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.breadcrumbs li a::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    content: "";
    width: 100%;
    height: 1px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.breadcrumbs li a:hover {
    color: var(--main-red-color);
}

.breadcrumbs li a:hover::after {
    background-color: var(--main-red-color);
}

@media screen and (max-width: 580px) {
    .single-page-top {
        flex-direction: column;
    }

    .breadcrumbs {
        justify-content: center;
    }
}

.page-nav-button {
    display: inline-flex;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    line-height: 1.1;
    border-radius: 5px;
    background-color: var(--main-red-color);
    align-items: center;
    column-gap: 5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.page-nav-button.page-step {
    font-size: 14px;
}

.page-nav-button:hover {
    color: var(--main-red-color);
    background-color: var(--main-pink-color);
}

.page-nav-button svg {
    width: 15px;
    fill: var(--main-pink-color);
    transition: all 0.3s ease;
}

.page-nav-button:hover svg {
    fill: var(--main-red-color);
}

.page-navigation {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.single-page-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 30px;
    margin: 0 0 120px 0;
}

@media screen and (max-width: 992px) {
    .single-page-grid {
        grid-template-columns: 420px 1fr;
        gap: 20px;
        margin: 0 0 80px 0;
    }
}

@media screen and (max-width: 768px) {
    .single-page-grid {
        grid-template-columns: 1fr;
        margin: 0 0 60px 0;
    }
}

.single-slider {
    max-width: 500px;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .single-slider {
        max-width: 420px;
    }
}

@media screen and (max-width: 768px) {
    .single-slider {
        max-width: 100%;
    }
}

.product-gallery {
    display: grid;
    grid-template-columns: 125px 1fr;
    height: 650px;
    position: sticky;
    top: 0;
}

@media screen and (max-width: 992px) {
    .product-gallery {
        height: 520px;
    }
}

@media screen and (max-width: 580px) {
    .product-gallery {
        grid-template-columns: 85px 1fr;
        height: 450px;
    }
}

/*------------------------ swiper -------------------------*/

.swiper {
    width: 100%;
    height: 100%;
}

.main-swiper {
    border: 10px solid var(--main-red-color);
}

.thumbs-swiper {
    height: 100%;
    overflow: hidden;
    background: linear-gradient(to left, #ffa0c1 0%, #ffd0e1 50%, rgba(255, 208, 225, 0) 100%);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 100% 100%;
    padding: 0 30px 0 0;
}

@media screen and (max-width: 580px) {
    .thumbs-swiper {
        padding: 0 20px 0 0;
    }
}

.thumbs-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbs-swiper .swiper-slide {
    height: 130px;
    cursor: pointer;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0;
}

@media screen and (max-width: 580px) {
    .thumbs-swiper .swiper-slide {
        height: 95px;
    }
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    transform: translateX(15px);
}

.thumbs-swiper img,
.main-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-info {
    min-width: 0;
}

.single-info-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 15px;
    margin: 0 0 20px 0;
}

.single-main-title {
    font-size: 18px;
    color: #000000;
    margin: 0 0;
}

.count-views {
    font-size: 18px;
    color: #DB004B;
}

.single-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 20px;
    margin: 0 0 15px 0;
}

.single-secondary-title {
    text-transform: uppercase;
    font-size: 32px;
    color: #000000;
    margin: 0 0;
}

.single-info-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.single-info-item {
    border-top: 1px solid var(--main-pink-color);
    margin: 25px 0 0 0;
    padding: 25px 0 0 0;
}

.small-title {
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    margin: 30px 0 10px;
}

.single-info-contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
}

@media screen and (max-width: 992px) {
    .single-info-contacts {
        display: none;
    }
}

.single-info-contacts .contact-phone {
    width: auto;
    font-size: 18px;
    color: #DB004B;
}

.single-info-contacts .contact-whatsapp {
    width: auto;
}

.single-info-contacts svg {
    width: 30px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list-item {
    font-size: 14px;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.detail-list-item.bg {
    color: #fff;
    background-color: var(--main-red-color);
}

.detail-list-naming {
    color: #DB004B;
}

.detail-list-item.bg .detail-list-naming {
    color: #fff;
}

.detail-list-value a {
    color: #000;
}

.detail-list-item.bg .detail-list-value a {
    color: #fff;
}

.single-services {
    background-color: var(--main-red-color);
    padding: 15px 15px;
}

.single-services-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    padding: 0 0;
    margin: 0 0;
}

.single-services-list li {
    font-size: 14px;
    color: #fff;
    padding: 5px 0;
}

/*-------------------- booking-form -----------------*/

#form-container {
    border-bottom: 1px solid var(--main-pink-color);
    padding: 25px 0 25px 0;
}

#book-button-container {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}

#contact-form-wrapper {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}

#contact-form-wrapper .card-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-align: center;
    margin: 0 0 15px 0;
}

#contact-form-wrapper label {
    display: block;
    font-size: 12px;
    color: #000000;
    margin: 0 0 5px 0;
}

#contact-form-wrapper input {
    width: 100%;
    color: #000000;
    border: 1px solid var(--main-pink-color);
    background-color: #fff;
    padding: 10px 15px;
    margin: 0 0 10px 0;
}

#contact-form-wrapper textarea {
    width: 100%;
    color: #000000;
    border: 1px solid var(--main-pink-color);
    background-color: #fff;
    resize: vertical;
    padding: 10px 15px;
    margin: 0 0 10px 0;
}

#contact-form-wrapper .alert-success {
    font-size: 12px;
    color: #000000;
    text-align: center;
    padding: 5px 0;
}

#form-container .btn-block {
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    color: var(--main-red-color);
    border: none;
    background-color: var(--main-pink-color);
    padding: 15px 30px;
    transition: all .3s ease;
}

#form-container .btn-block:hover {
    color: #fff;
    background-color: var(--main-red-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/*-------------------- booking-form /----------------*/

@media screen and (max-width:992px) {
    .page-navigation {
        position: sticky;
        top: 85px;
        z-index: 15;
    }

    .navigation {
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--main-red-color);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 30px 20px;
        display: none;
    }

    .navigation.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .main-menu {
        width: 100%;
        flex-direction: column;
        order: 2;
        overflow-y: auto;
    }

    .language-block {
        order: 1;
        margin: 0 0 20px 0;
    }

    .main-menu-item {
        width: 100%;
        border-bottom: 1px solid #954460;
        padding: 10px 0;
    }

    .button-burger {
        display: block
    }
}

::placeholder {
    font-size: 12px;
    color: #757575
}

.random-block {
    padding: 40px 0
}

/*-------------------- top-services ------------------*/

.top-services {
    margin: 0 0 40px 0;
}

.top-services .section-title {
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 0 15px 0;
    margin: 0 0 32px 0;
}

/*-------------------- why-choose --------------------*/

.why-choose {
    margin: 0 0 40px 0;
}

.why-choose .section-title {
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 0 15px 0;
    margin: 0 0 32px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media screen and (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 580px) {
    .why-choose-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.why-choose-item {
    min-width: 0;
    max-width: 100%;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 20px 20px;
}

.why-choose-item-title {
    display: block;
    font-weight: 700;
    font-size: 28px;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 10px 0 10px;
}

@media screen and (max-width: 460px) {
    .why-choose-item-title {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.why-choose-item-text {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.8;
}

/*------------------ section-preview -----------------*/

.section-preview {
    margin: 0 0 100px 0;
}

@media screen and (max-width: 768px) {
    .section-preview {
        margin: 0 0 40px 0;
    }
}

.section-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .section-preview-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-preview .section-title {
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 0 15px 0;
    margin: 65px 0 32px 0;
}

@media screen and (max-width: 768px) {
    .section-preview .section-title {
        margin: 40px 0 32px 0;
    }
}

.section-preview-image {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*---------------------- services --------------------*/

.services {
    background-color: #f7f8fa;
    padding: 40px 20px;
    margin: 0 0 40px 0;
}

.services .section-title {
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 0 15px 0;
    margin: 0 0 32px 0;
}

.services-subtitle {
    display: block;
    font-size: 14px;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 25px 0;
}

.services-items-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    column-gap: 20px;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 992px) {
    .services-items-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 580px) {
    .services-items-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

.services-item {
    font-size: 14px;
    color: #1a1a1a;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    background-color: #fff;
    padding: 16px 16px;
    margin: 0 0 10px 0;
}

/*-------------------- unique-section ---------------*/

.unique-section {
    text-align: center;
    background: #fff;
    padding: 20px 20px 40px;
    margin: 0 0 40px 0;
}

.unique-section .section-title {
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 0 15px 0;
    margin: 0 0 32px 0;
}

.unique-section-list {
    list-style: none;
    max-width: 700px;
    padding: 0;
    margin: 0;
}

.unique-section-list li {
    font-size: 14px;
    color: #1a1a1a;
    text-align: center;
    border-radius: 12px;
    background-color: #f1f1f1;
    padding: 15px 20px;
    margin: 0 0 20px 0;
}

/*--------------------- reviews -----------------*/

.reviews {
    background: #fafafa;
    padding: 20px 20px 40px;
    margin: 0 0 40px 0;
}

.reviews .section-title {
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding: 0 0 15px 0;
    margin: 0 0 32px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.reviews-item {
    font-size: 14px;
    color: #1a1a1a;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
    background-color: #ffffff;
    padding: 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.blockquote-item {
    font-style: italic;
    font-size: 14px;
    color: #555;
    border-left: 4px solid var(--main-pink-color);
    background-color: #f9f9f9;
    padding: 20px 28px;
    margin: 28px 0;
}

/*---------------------- about ------------------*/

.about {
    margin: 0 0 100px 0;
}

@media screen and (max-width: 992px) {
    .about {
        margin: 0 0 60px 0;
    }
}

.about .section-title {
    color: #000;
    text-align: center;
    margin: 0px 0 30px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 580px) {
    .about-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.about-item {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-item-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-top: 70%;
    margin: 0 0 10px 0;
}

.about-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-item-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #DB004B;
    margin: 0 0 15px 0;
}

.about-item-text {
    font-size: 14px;
    color: var(--main-red-color);
}

/*-------------------- top-category -----------------*/

.top-category {
    margin: 0 0 80px 0;
}

.top-category .section-title {
    color: #000;
    text-align: center;
    margin: 0px 0 30px 0;
}

/*--------------------- advertise -------------------*/

.advertise {
    text-align: center;
    margin: 0 0 60px 0;
}

@media screen and (max-width: 768px) {
    .advertise {
        margin: 0 0 30px 0;
    }
}

.advertise .section-title {
    color: #000;
    text-align: center;
}

.advertise-subtitle {
    display: block;
    font-size: 14px;
    color: #000;
    text-align: center;
    margin: 0 0 40px 0;
}

.advertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0 0 50px 0;
}

@media screen and (max-width: 992px) {
    .advertise-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.advertise-item {
    color: #fff;
    text-align: center;
    background-color: var(--main-red-color);
    padding: 15px 15px;
}

.advertise-item-title {
    display: block;
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px 0;
}

.advertise-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

/*-------------------- pagination ------------------*/

.pagination-list {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 40px;
    padding: 30px 0;
    margin: 0 0 60px 0;
}

.pagination-list li a {
    display: inline-block;
    min-width: 42px;
    height: 42px;
    font-size: 14px;
    color: #423b2a;
    line-height: 1.4;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #423b2a;
    background-color: #f9f7f1;
    padding: 10px 15px;
    position: relative;
    z-index: 20;
    transition: all .3s ease;
}

.pagination-list li a::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 36px;
    border-radius: 5px 0 0 5px;
    background-color: #6A685A;
    position: absolute;
    top: 50%;
    left: -15px;
    z-index: 10;
    transform: translateY(-50%);
}

.pagination-list li a::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 36px;
    border-radius: 0 5px 5px 0;
    background-color: #6A685A;
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 10;
    transform: translateY(-50%);
}

.pagination-list li a:hover,
.pagination-list li a.active {
    color: #fff;
    border: 1px solid var(--main-pink-color);
    background-color: var(--main-pink-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/*---------------------- footer --------------------*/

.footer {
    color: #fff;
    background-color: var(--main-red-color);
    padding: 40px 0 40px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin: 0 0 50px 0;
}

.footer-logo a {
    display: inline-block;
    font-weight: 700;
    font-size: 30px;
    color: var(--main-pink-color);
}

.footer-logo img {
    width: 250px;
    max-width: 100%;
    height: auto;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 15px;
    padding: 0 0;
    margin: 0 0 40px 0;
}

.footer-menu li {
    text-align: center;
}

.footer-menu li a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    padding: 5px 10px;
    transition: all .3s ease;
}

.footer-menu li a:hover {
    color: var(--main-pink-color);
}

.footer-social {
    max-width: 100%;
}

.footer-social-title {
    display: block;
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin: 0 0 10px 0;
}

.footer-description {
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.copyright {
    max-width: 100%;
    overflow: hidden;
}

.copyright-text {
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 20px 0 0;
    margin: 0
}

/*-------------------- go-top-top ----------------------*/

.go-top-top {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    border: 1px solid var(--main-pink-color);
    background-color: var(--main-pink-color);
    position: fixed;
    bottom: 65px;
    right: 20px;
    z-index: 20;
    cursor: pointer;
    transition: all .3s ease;
    display: none;
}

.go-top-top::after {
    content: '';
    display: inline-block;
    border-top: 1px solid var(--main-red-color);
    border-left: 1px solid var(--main-red-color);
    height: 10px;
    width: 10px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all .3s ease;
}

.go-top-top:hover {
    border: 1px solid var(--main-pink-color);
    background-color: #fff;
}

.go-top-top:hover::after {
    border-top: 1px solid var(--main-pink-color);
    border-left: 1px solid var(--main-pink-color);
}

/*-------------------- 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;
    transition: all .3s ease;
    padding: 10px 20px;
    box-shadow: 0px 3px 14px -6px rgba(0, 0, 0, 0.8);
}

.fixed-social__link.btn_wa {
    background-color: #25D366;
}

.fixed-social__link.btn_tg {
    background-color: #2AABEE;
}

.fixed-social__link svg {
    width: 20px;
    fill: #fff;
}