@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap&subset=cyrillic-ext');

@font-face {
    font-family: 'Aubrey Pro';
    src: url('./assets/fonts/AubreyPro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/*
Theme Name: Custom SEO Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Кастомная WordPress тема с оптимизацией для SEO
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-seo-theme
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.entry-title {
    text-align: center;
}

.policy-page h1 {
    text-align: center;
}

.policy-page img {
    width: 100%;
}

.policy-page .flex {
  display: flex;
  gap: 20px;
  justify-content: center;
}

:root {
    /* Primary Colors */
    --white: #FFFFFF;
    --text-dark: #1F1C1C;

    /* Accent Colors */
    --accent-dark: #833036;
    --accent-medium: #C15966;
    --accent-light: #FFE9E9;
    --accent-extra-light: #FFF6EB;

    /* Headings */
    --heading-color: #6A282C;

    /* Secondary */
    --background-light: #f5f5f5;
    --border-color: #ddd;

    /* Fonts */
    --font-display: 'Wix Madefor Display', sans-serif;
    --font-body: 'Rubik', sans-serif;
    --font-aubrey: 'Aubrey Pro', sans-serif;

    /* Legacy (for compatibility) */
    --primary-color: #0073aa;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --background-color: #fff;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--heading-color);
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
}



.site-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--text-dark);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .post,
.page {
    margin-bottom: 40px;
    line-height: 1.8;
} */

.post h1,
.page h1 {
    font-family: var(--font-display);
    font-size: 32px;
    margin: 20px 0;
    color: var(--heading-color);
    font-weight: 700;
}

.post-meta {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar {
    width: 300px;
    float: right;
}

.widget {
    background-color: var(--accent-extra-light);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--accent-light);
}

.widget-title {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}


section {
    padding: 60px 0px;
    position: relative;
}

.section__title {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.section__description {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 18px;
    font-weight: 400;
    max-width: 1027px;
    line-height: 1.2;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

/* ========== TWO WAYS SECTION ========== */



.two_ways__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.two_ways__card {
    padding: 36px;
    border-radius: 50px;
    min-height: 342px;
    position: relative;
    display: flex;
    align-items: start;
    gap: 10px;
    justify-content: space-between;
}

.two_ways__card.song {
    background: var(--accent-light);
}

.two_ways__card.book {
    background: var(--accent-extra-light);
}

.two_ways__card-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.two_ways__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.two_ways__card-list li {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.two_ways__card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    /* height: 100%; */
    height: stretch;
}

.two_ways__card-list li:before {
    content: "•";
    position: absolute;
    left: 7px;
    color: var(--accent-dark);
    font-weight: bold;
    font-size: 16px;
}


.two_ways__card-link {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-dark);
    cursor: pointer;
    /* margin-top: 56px; */
    max-width: max-content;
    display: block;
    margin-bottom: 23px;
    /* position: absolute; */
    /* bottom: 59px; */
    line-height: 1.2;
    margin-top: auto;
}

.two_ways__card-link:hover {
    color: var(--accent-medium);
}

.two_ways__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: var(--accent-dark);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    width: max-content;
    text-decoration: none;
    height: max-content;
}

.btn:hover {
    background-color: var(--accent-medium);
    text-decoration: none;
}

.two_ways__price {
    font-family: var(--font-body);
    font-size: 14px;
    color: #9C27B0;
    font-weight: 600;
}

.two_ways__card-image {
    /* position: absolute; */
}

.two_ways__card-image.song-image {
    /* top: 0px; */
    /* right: 20px; */
    width: 308px;
    height: auto;
    background-size: cover;
    background-position: center;
    margin-top: -48px;
    margin-right: -20px;
}

.two_ways__card-image.book-image {
    /* top: 36px; */
    /* right: 25px; */
    width: 248px;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.section_by_fact__background {
    padding: 120px 0;
    background: var(--accent-dark);
    border-radius: 30px;
    background-image: url('./assets/images/facts_bg.webp');
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.section_by_fact .section__title,
.section_by_fact .section__description {
    color: var(--white);
}

.section_by_fact .section__description {
    max-width: 930px;
}

.btn.white {
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    padding: 18px 40px;
    line-height: 1.25;
}

.arrow_by_fact {
    background-image: url('./assets/images/arrow.webp');
    width: 113px;
    height: 95px;
    background-size: cover;
    background-position: center;
    display: block;
}

.map_by_fact .top_sect {
    display: flex;
    max-width: 1183px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.map_by_fact div {
    color: var(--white);
}

.map_by_fact .top_sect p {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    ;
}

.map_by_fact .top_sect p:first-child {
    margin-top: 44px;
    width: 150px;
    text-align: right;
    margin-right: 20px;
}

.map_by_fact .top_sect .arrow_by_fact:first-of-type {
    margin-top: 27px;
    transform: rotate(4deg);
    margin-right: 58px;
}

.map_by_fact .top_sect .arrow_by_fact:last-of-type {
    margin-top: 39px;
    transform: rotate(74deg);
    margin-right: 46px;
    margin-left: 39px;
    width: 110px;
    height: 92px;
}

.map_by_fact .top_sect p:last-child {
    margin-top: 52px;
    max-width: 157px;
    width: 100%;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 40px 0 0 auto;
    padding: 7.3px 13.26px;
    height: max-content;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-display);
    gap: 7px;
}

.category p {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12.17px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}


.map_by_fact .category div {
    width: 54.76px;
    height: 54.76px;
    border-radius: 50%;
    background-color: var(--white);
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 54%;
}

.categories .category img {
    background-color: #EDEDED;
    border-radius: 50%;
}

.map_by_fact .middle_sect {
    display: flex;
    max-width: 1160px;
    justify-content: space-between;
    margin: 0 auto;
}

.map_by_fact .middle_sect .desc {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
    margin-top: 124px;
    max-width: 402px;
}

.map_by_fact .middle_sect img {
    max-width: 383px;
    width: 100%;
    height: auto;
    max-height: min-content;
}


.map_by_fact .middle_sect .category img {
    width: auto;
}

.map_by_fact .bottom_sect {
    display: flex;
    max-width: 1183px;
    width: 100%;
    margin: 20px auto 0 auto;
    justify-content: center;
}

.map_by_fact .cloud_text {
    max-width: 523px;
    padding: 36px 39.88px 36.26px 41.58px;
    background-image: url('./assets/images/cloud_by_fact.webp');
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

.map_by_fact .cloud_text .time {
    position: absolute;
    right: 49px;
    bottom: 17px;
    color: #303030;
}

.map_by_fact .bottom_sect p {
    line-height: 1.2;
    font-weight: 400;
}

.map_by_fact .bottom_sect p:first-child {
    margin-top: 50px;
    text-align: right;
}

.map_by_fact .bottom_sect .arrow_by_fact {
    background-image: url('./assets/images/arrow_bottom.webp');
    width: 95px;
    height: 113px;
}

.map_by_fact .bottom_sect .arrow_by_fact:first-of-type {
    margin-top: -20px;
    transform: rotate(350deg);
    margin-right: 20px;
}

.map_by_fact .bottom_sect .arrow_by_fact:last-of-type {
    transform: rotate(262deg);
    margin: -20px 10px 0px 20px;
}

.map_by_fact .bottom_sect p:last-child {
    margin-left: 7px;
    margin-top: 40px;
}

/* .book_section .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
} */

.book_section .step {
    display: flex;
    flex-direction: column;
}

.book_section .steps .circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1.65px solid var(--accent-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.book_section .steps .circle .number {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--accent-medium)
}

.book_section .step__number {
    display: flex;
    align-items: center;
    gap: 20px;
}


.book_section .steps .line {
    flex: 1;
    height: 2px;
    background: #C15966;
    background: linear-gradient(100deg, rgba(193, 89, 102, 0.3) 0%, rgba(193, 89, 102, 1) 50%, rgba(193, 89, 102, 0.3) 100%);
}

.book_section .steps .step__cart {
    padding: 40px 20px;
    margin-top: 46px;
    flex: 1;
    min-height: 550px;
}

.book_section .steps .step__cart .step__title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--heading-color);
}

.book_section .steps .step__cart .step__description {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
    font-family: Rubik, sans-serif;
}

.book_section .steps .categories {
    gap: 28px 14px;
    padding: 0;
    margin: 0;
}

.book_section .steps .step_content {
    margin-top: 24px;
}

.book_section .steps .category div {
    width: 54.76px;
    height: 54.76px;
    border-radius: 50%;
    background-color: var(--white);
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 54%;
}

.book_section .steps .step:nth-child(odd) .step__cart {
    background: var(--accent-extra-light);
    border-radius: 48px;
}

.book_section .steps .step:nth-child(even) .step__cart {
    background: #FFE9E9;
    border-radius: 48px;
}

.book_section .steps .step .step__cart {
    position: relative;
}

.book_section .steps .category p {
    color: var(--text-dark);
}

.book_section .abs_imgs img:first-child {
    position: absolute;
    bottom: 65px;
    left: 44px;
    transform: rotate(-13.34deg);
    z-index: 1;
    max-width: 161px;
}


.book_section .abs_imgs img:nth-of-type(2) {
    position: absolute;
    top: 172px;
    right: 25px;
    max-width: 148px;
    transform: rotate(8.22deg);
    z-index: 0;
}

.photo_cloud {
    background: #ffffffd1;
    border-radius: 16px;
    padding: 11px 3px 11px 16px;
    position: absolute;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    font-family: var(--font-body);
    line-height: 1.45;
    z-index: 5;
    bottom: 308px;
}

.step_content.abs_imgs .photo_cloud:first-of-type {
    max-width: 194px;
}

.step_content.abs_imgs .photo_cloud:nth-of-type(2) {
    max-width: 165px;
    bottom: 45px;
    right: 8px;
    left: unset;
    line-height: 1.2;
}

.step_content.abs_imgs .photo_cloud:nth-of-type(2)::after {
    left: -15px;
    top: 20px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #ffffffd1;
    border-left: unset;
}

.step_content.abs_imgs .photo_cloud:nth-of-type(2)::before {
    display: none;
}

.photo_cloud::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 31px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 0 solid transparent;
    border-top: 15px solid #ffffffd1;
}

.photo_cloud::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 45px;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ffffffd1;
}


.step__cart .stories_select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 250px;
}

.img_stories p {
    font-family: var(--font-aubrey);
    font-size: 5.63px;
    max-width: 88px;
    text-align: center;
    line-height: 1.25;
    position: absolute;
    top: 145px;
    left: calc(50% - 44px);
}

.mar_48 {
    margin-top: 48px;
}

.btn.center {
    display: block;
    margin: 0 auto;
}

/* ========== FAQ SECTION ========== */

.faq_section {
    background: var(--accent-dark);
    padding: 120px 40px;
    border-radius: 30px;
    margin-top: 60px;
}

.faq_section h2 {
    color: var(--white);
    margin-bottom: 48px;
}

.faq_container {
    max-width: 782px;
    margin: 40px auto 0;
}

.faq_item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq_item:last-child {
    border-bottom: none;
}



.faq_question {
    width: 100%;
    padding: 36px 0 24px 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    font-family: var(--font-display);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq_item:first-child .faq_question {
    padding-top: 0;
}

.faq_question:hover {
    padding-left: 10px;
}

.faq_question::after {
    content: '▼';
    display: inline-block;
    margin-left: 15px;
    transition: transform 0.3s ease;
    font-size: 12px;
    flex-shrink: 0;
}

.faq_question.active::after {
    transform: rotate(-180deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
    padding: 0;
}

.faq_answer.show {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq_answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.reviews_slider_container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.review_card {
    width: 100%;
    min-width: 0;
}

/* Swiper styles for reviews slider */
.reviews_slider {
    position: relative;
    width: 100%;
    padding-bottom: 60px;
}

.reviews_slider .swiper-wrapper {
    display: flex;
}

.reviews_slider .swiper-slide {
    height: auto;
}

.reviews_slider .swiper-pagination {
    bottom: 0;
}

.reviews_slider .swiper-pagination-bullet {
    background: #C15966;
}


.reviews_slider .swiper-button-prev,
.reviews_slider .swiper-button-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
    width: 50px !important;
    height: 50px !important;
    background: rgba(193, 89, 102, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reviews_slider .swiper-button-prev::after,
.reviews_slider .swiper-button-next::after {
    color: #C15966 !important;
    font-size: 24px !important;
}

.reviews_section .swiper-button-next::after {
    /* content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M1.37793 17.9113L9.6446 9.6446L1.37793 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); */
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M1.37793 17.9113L9.6446 9.6446L1.37793 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    font-size: unset;
}

.reviews_section .swiper-button-prev::after {
    /* content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M1.37793 17.9113L9.6446 9.6446L1.37793 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); */
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M9.64453 17.9113L1.37787 9.6446L9.64453 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    font-size: unset;
}

.reviews_section .swiper-button-next {
    height: 55px;
    width: 55px;
    background: #F7E2D499;
    border-radius: 50%;
    bottom: 0;
    top: unset;
    right: calc(50% - 65px);
}

.steps-button-next {
    height: 55px;
    width: 55px;
    background: #F7E2D499;
    border-radius: 50%;
    bottom: 0;
    top: unset;
    right: calc(50% - 65px);
    position: absolute;
    z-index: 3;
    align-items: center;
    justify-content: center;
}


.steps-button-prev {
        height: 55px;
    width: 55px;
    background: #F7E2D499;
    border-radius: 50%;
    bottom: 0;
    top: unset;
    left: calc(50% - 65px);
        position: absolute;
    z-index: 3;
    align-items: center;
    justify-content: center;
}
 .steps-button-next::after {
    /* content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M1.37793 17.9113L9.6446 9.6446L1.37793 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); */
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M1.37793 17.9113L9.6446 9.6446L1.37793 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    font-size: unset;
    line-height: 1;
}

 .steps-button-prev::after {
    /* content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M1.37793 17.9113L9.6446 9.6446L1.37793 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); */
   content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M9.64453 17.9113L1.37787 9.6446L9.64453 1.37793' stroke='%23AD6262' stroke-width='2.75556' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    font-size: unset;
    line-height: 1;

}

.reviews_section {
    padding-bottom: 83px;
    margin-bottom: 120px;
}

.reviews_section .swiper-button-prev {
    height: 55px;
    width: 55px;
    background: #F7E2D499;
    border-radius: 50%;
    bottom: 0;
    top: unset;
    left: calc(50% - 65px);

}

.reviews_slider .swiper-button-prev {
    left: 10px !important;
}

.reviews_slider .swiper-button-next {
    right: 10px !important;
}

.reviews_slider .swiper-button-prev:hover,
.reviews_slider .swiper-button-next:hover {
    background: rgba(193, 89, 102, 0.4) !important;
}

.review_card {
    display: flex;
    padding: 30px;
    background-image: url('./assets/images/review_bg.webp');
    border-radius: 30px;
    background-size: cover;
    gap: 62px;
    background-position: center;
    height: 453px;
    width: 100%;
    min-width: 0;
}

.img_video_block {
    flex: 1;
    width: 50%;
    position: relative;
    display: flex;
}

.review_content {
    flex: 1;
    width: 50%;
    position: relative;
}

.img_video_block img {
width: 100%;
    max-width: 286px;
    border-radius: 15px;
    height: 100%;
    margin: auto 0;
    display: block;
    object-fit: cover;
}

.img_video_block video {
width: 100%;
    max-width: 286px;
    border-radius: 15px;
    height: 100%;
    margin: auto 0;
    display: block;
    object-fit: cover;
}


.review_content .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.review_content .profile {
    display: flex;
    gap: 18px;
    align-items: center;
}

.profile .fio_text .fio {
    font-size: 13px;
    color: #8d2a317d;
    line-height: 1.2;
    margin-bottom: 3px;
}

.profile .fio_text .text {
    font-size: 13px;
    color: #8d2a30;
    line-height: 1.2;
}

.reviews__slide-content blockquote {
    font-size: 16px;
    line-height: 1.2;
    color: var(--heading-color);
    margin: 67px auto 0 auto;
    text-align: center;
    font-family: var(--font-display);
    max-width: 254px;
}

.start_video_btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #F5D4D5;
    border: none;
    border-radius: 50%;
    padding: 8px;
    width: 100%;
    max-width: 32px;
    max-height: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start_video_btn svg path {
    stroke: #851732;
    fill: #851732;
}

.play-example__content-player__wrapper {
    display: flex;
    justify-content: center;
}

.play-example__content-player {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 34px;
    position: relative;
    z-index: 3;
    background: #8d2a3133;
    backdrop-filter: none;
    gap: 10px;
    box-shadow: none;
    border-radius: 130px;
}

.abs_mob {
    display: none;
}

.reviews__slide-content .play-example__content-player__btn {
    width: 37px;
    height: 37px;
    background: #8D2A30;
    flex-shrink: 0;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reviews__slide-content .play-example__content-player__btn svg {
    fill: #fff;
    stroke: #fff;
}

.reviews__slide-content .play-example__content-player__btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.reviews__slide-content .play-example__content-player__btn div svg:last-child {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    fill: #833036;
}

.reviews__slide-content .play-example__content-player__btn svg path {
    fill: #fff;
    stroke: #fff;
}

.reviews__slide-content .play-example__content-player__btn div svg:last-child {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    fill: #833036;
}

.reviews__slide-content .play-example__content-player__btn--play div svg:last-child {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.reviews__slide-content .play-example__content-player__btn--play {
    box-shadow: 0px 0px 21px 5px #F7E2D4;
    transition: box-shadow 0.2s ease-in-out;
}

.reviews__slide-content .play-example__content-player__btn--play div svg:first-child {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.play-example__content-player__progress {
    display: flex;
    align-items: center;
}

.play-example__content-player__progress svg {
    max-width: 100%;
}

.reviews__slide-content.audio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.reviews__slide-content.audio span {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--heading-color);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 13px;
}

.site-footer {
    background-color: var(--accent-dark);
}

.site-footer .footer_container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 70px 0;
    max-width: 985px;
    gap: 28px;
}

.site-footer .footer_menu {
    display: flex;
    align-items: start;
    color: white;
    max-width: 685px;
    justify-content: space-between;
    width: 100%;
}

.site-footer .footer_menu a {
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.site-footer li {
    list-style-type: none;
    line-height: 1.2;
}

.site-footer .footer_col_header {
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 22px;
}

.site-footer li+li {
    margin-top: 10px;
}

.copyright {
    color: white;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 55px;

}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 80px;
    padding: 22px 20px;
    backdrop-filter: blur(10px);
    background-color: rgb(255 255 255 / 54%);
}

header .btn {
    padding: 12px 24px;
}

header .site-logo {
    line-height: 0;
}

header li {
    list-style-type: none;
    line-height: 1.2;
}

header .header_menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .header_menu a {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-display);
    text-decoration: none;
}

header .header_menu a:hover {
    color: var(--accent-dark);
}

.steps-button-next, .steps-button-prev {
    display: none;
}


header .header_soc {
    display: flex;
    align-items: center;
    gap: 1px;
}

header .header_soc a {
    line-height: 0;
}

header {
    position: sticky;
    top: 28px;
    z-index: 100;
    transition: all 0.3s ease;
}

.hero__wrapper {
    background-color: var(--accent-dark);
    border-radius: 20px;
    color: var(--white);
    padding: 57px 80px 38px 80px;
    background-image: url('./assets/images/wooden_panels.webp');
    background-size: 45.07% 100%;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
}

.hero__wrapper .couple_of_lovers {
    position: absolute;
    bottom: 0;
    right: 14.64%;
}

.hero__wrapper h1 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
    max-width: 614px;
    line-height: 1;
    margin-top: 0;
}

.hero__wrapper p {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 545px;
    line-height: 1.2;
    margin-top: 0;
}

.hero__wrapper .btn {
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1.25;
    padding: 20px 52px;
    margin-bottom: 65px;
}

.section_by_fact__background .play-example__content-player {
    backdrop-filter: blur(231.1832275390625px);
    box-shadow: 0 2px 108px 0 rgb(10 13 20 / 0%), inset 0 2px 19px 0 rgb(255 255 255 / 22%), inset 0 0 2px 0 rgb(255 255 255 / 18%), inset 0 -4px 12px 0 rgb(255 255 255 / 19%);
    background: #FFFFFF80;
    border-radius: 27px;
    width: 382px;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 51px 9px 12px;
    position: relative;
    z-index: 3;
}

.step_content.back_abs_imgs img {
        width: 207px;
        height: 257px;
    margin: 0 auto;
    display: block;
}

.step_content.back_abs_imgs .abs {
    width: auto;
    height: auto;
    left: 30px;
    bottom: 30px;
    position: absolute;

}

.section_by_fact__background .play-example__content-player__btn {
    border-radius: 100%;
    background: #a98487;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    position: relative;
    height: 52px;
}

.section_by_fact__background .play-example__content-player__btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 17px;
}

.section_by_fact__background .play-example__content-player__progress svg {
    max-width: 253px;
}

.section_by_fact__background .play-example__content-player__time {
    position: absolute;
    bottom: 13px;
    left: 76px;
    color: #833036;
    opacity: 0.6;
    /* font-weight: 500; */
    /* font-size: 26px; */
    font-size: 13px;
    line-height: 152%;
    letter-spacing: -0.01em;
}

.section_by_fact__background .play-example__content-player__btn div svg:last-child {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    fill: #833036;
}

.section_by_fact__background .play-example__content-player__btn--play div svg:last-child {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.section_by_fact__background .play-example__content-player__btn--play {
    /* box-shadow: 0px 0px 21px 5px #F7E2D4; */
    transition: box-shadow 0.2s ease-in-out;
}

.section_by_fact__background .play-example__content-player__btn--play div svg:first-child {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.section_by_fact__background .play-example__content-player__btn div svg:last-child path {
    stroke: #833036;
}

.img_player_record {
    position: relative;
}

.section_by_fact__background .play-example__content-player__wrapper {
    position: absolute;
    bottom: 20px;
}

.products__mini_cart {
    display: flex;
    gap: 43px;
    max-width: 470px;
}

.products__mini_cart .mini_title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 8px;
}

.products__mini_cart p {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

.products__mini_cart .mini_cart {
    flex: 1 1 0px;
    padding: 65px 9px 39px 9px;
    background-color: #AE4D58;
    border-radius: 20px;
    position: relative;
}

.products__mini_cart .mini_cart img {
    position: absolute;
    top: -41px;
    right: -29px;
}

/* ====== МОБИЛЬНОЕ БУРГЕР МЕНЮ ====== */

/* Бургер кнопка */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    z-index: 999;
    height: 44px;
    justify-content: space-around;
    align-items: end;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--accent-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu span:nth-child(2n) {
    width: 19px;
}


/* .burger-menu span + span {
    margin-top: 5px;
} */

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Мобильное боковое меню */
.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Кнопка закрытия меню */
.mobile-menu__close {
    position: absolute;
    top: 58px;
    right: 31px;
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.reviews_slider_mob {
    display: none !important;
}

.copyright_mob {
    display: none;
}
.mobile-menu__close span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu__close span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu__close span:nth-child(2) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Навигация в меню */
.mobile-menu__nav {
    flex: 1;
    padding: 105px 44px 40px;
}

.mobile-menu__list {
   list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 16px;
}

.mobile-menu__item {
    animation: slideInLeft 0.4s ease forwards;
    opacity: 0;
}

.mobile-menu__item:nth-child(1) {
    animation-delay: 0.05s;
}

.mobile-menu__item:nth-child(2) {
    animation-delay: 0.1s;
}

.mobile-menu__item:nth-child(3) {
    animation-delay: 0.15s;
}

.mobile-menu__item:nth-child(4) {
    animation-delay: 0.2s;
}

.mobile-menu__item:nth-child(5) {
    animation-delay: 0.25s;
}

.mobile-menu__item:nth-child(6) {
    animation-delay: 0.3s;
}

.mobile-menu__link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}


/* Нижняя секция меню */
.mobile-menu__footer {
    padding: 20px 20px;
    margin-top: auto;
}

.mobile-menu__footer .header_soc{
    display: flex;
    justify-content: space-between;
}

.mobile-menu__footer .btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Оверлей фона */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.couple_of_lovers_mob {
    display: none;
}

.map_by_fact_mob {
    display: none;
}

footer .col-4 {
    display: none;
}

/* Анимация входа элементов */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header_right_side {
    display: flex;
    align-items: center;
    gap: 27px;
}

.book_section .steps .step.even .step__cart {
    background-color: var(--accent-light);
    /* или любой другой цвет */
}

.steps .swiper-slide {
    width: 335px;
} 

.steps-button-next, .steps-button-prev {
    display: none;
}

.abs_p.first {
        font-family: var(--font-aubrey);
    font-size: 8px;
    max-width: 110px;
    text-align: center;
    line-height: 1.1;
    position: absolute;
    bottom: 38px;
    left: 45px;
}

.abs_p.second {
font-family: var(--font-aubrey);
    font-size: 8px;
    max-width: 111px;
    text-align: center;
    line-height: 1.1;
    position: absolute;
    bottom: 38px;
    left: 181px;
}

@media (max-width: 1450px) {

}

@media (max-width: 1350px) {

    .hero__wrapper .couple_of_lovers {
        right: 100px;
    }

    .two_ways__card-image.song-image {
        width: 200px;
        margin-top: 0;
        margin-right: 0;
    }

    .two_ways__card-image.book-image {
        width: 200px;
    }

    .abs_p.first {
        left: 45px;
    }

    .abs_p.second {
        left: 181px;
    }
    

.steps.swiper {
    padding-bottom: 70px;
}

.steps-button-next, .steps-button-prev {
    display: flex;
}

    /* .steps.swiper {
        overflow: visible;
    } */
   
}

@media (max-width: 1275px) {
    header .header_menu {
        gap: 15px;
    }

    .hero__wrapper .couple_of_lovers {
        right: 50px;
        width: 425px;
    }

    .two_ways__card-image.song-image,
    .two_ways__card-image.book-image {
        display: none;
    }

    .section__title {
        font-size: 36px;
    }

    .section__description {
        font-size: 16px;
    }

    .section_by_fact h2 {
        max-width: 464px;
        margin: 0 auto 18px auto;
    }

    .section_by_fact .section__description {
        max-width: 486px;
    }

    .btn.white {
        font-size: 14px;
    }

    .map_by_fact .top_sect p {
        display: none;
    }

    .map_by_fact .middle_sect .desc {
        font-size: 14px;
        max-width: 227px;
    }

    .categories {
        margin: 0;
    }

    .img_player_record {
        max-width: 221px;
    }

    .categories {
        max-width: 221px;
        gap: 10px;
    }

    .map_by_fact .middle_sect {
        max-width: 748px;
    }

    .section_by_fact__background .play-example__content-player {
        width: 220px;
        height: 52px;
        padding: 5px 29px 5px 7px;
        border-radius: 7px;

    }

    .section_by_fact__background .play-example__content-player__progress svg {
        max-width: 145px;
        height: auto;
    }

    .section_by_fact__background .play-example__content-player__btn {
        width: 30px;
        height: 30px;
    }

    .section_by_fact__background .play-example__content-player__btn svg {
        width: 8px;
        height: auto;
    }

    .section_by_fact__background .play-example__content-player__time {
        bottom: 4px;
        left: 43px;
        font-size: 7px;
    }

    .section_by_fact__background .play-example__content-player__wrapper {
        bottom: 30px;
    }

    .map_by_fact .middle_sect .img_player_record {
        margin-top: 30px;
    }

    .map_by_fact .middle_sect .desc {
        margin: auto 0;
    }

    .map_by_fact .bottom_sect p {
        display: none;
    }

    .map_by_fact .cloud_text {
        font-size: 10px;
        padding: 24px 27px;
        max-width: 356px;
    }

    .map_by_fact .cloud_text .time {
        font-size: 10px;
    }

    .map_by_fact .cloud_text .time svg {
        width: 15px;
    }
}



@media (max-width: 1180px) {
    header .header_menu {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header_menu {
        display: none;
    }

    .mobile-menu {
        max-width: 100%;
    }

    .reviews_slider, .swiper-button-prev, .swiper-button-next{
        display: none !important;
    }

    .reviews_slider_mob {
        display: block !important;
        overflow: visible;
    }

    .reviews_slider_mob .swiper-slide {
        display: flex ;
        height: 383px;
    }

     .swiper-button-prev.mob, .swiper-button-next.mob{
        display: flex !important;
     }

     .review_card {
        gap:30px
     }
    
}


@media (max-width: 1080px) {
    .couple_of_lovers {
        display: none;
    }

    .hero__wrapper {
        background-image: unset;
        padding: 36px 20px 50px 20px;
        border-radius: unset;
    }

    .hero__wrapper h1 {
        margin: 0 auto 15px auto;
        text-align: center;
    }

    .hero__wrapper p {
        margin: 0 auto 25px auto;
        text-align: center;
    }

    .couple_of_lovers_mob {
        display: block;
        border-radius: 20px;
        margin: 0 auto 28px auto;
        width: 100%;
    }

    .hero__wrapper h1 {
        font-size: 45px;
    }

    .hero__wrapper p {
        font-size: 20px;
    }

    .hero__wrapper .btn {
        width: 100%;
        max-width: 100%;
        font-size: 20px;
        text-align: center;
    }

    .products__mini_cart {
        max-width: 100%;
    }

    .products__mini_cart p {
        font-size: 12px;
        text-align: left;
        margin-bottom: 0;
    }

    .hero .container {
        padding: 0;
    }

    .two_ways__card-image.song-image,
    .two_ways__card-image.book-image {
        display: block;
    }

    .two_ways__container {
        grid-template-columns: 1fr;
    }

    .section__title {
        font-size: 30px;
    }

    .section__description {
        font-size: 20px;
    }

    .map_by_fact .middle_sect .category img {
        width: 30px;
    }

    .category p {
        font-size: 6px;
    }

    .map_by_fact .middle_sect .img_player_record {
        margin-top: 0;
    }

    .section_by_fact__background .play-example__content-player__wrapper {
        bottom: 0;
    }

    .map_by_fact .middle_sect {
        max-width: 691px;
    }
}


@media (max-width: 780px) {
    header .header_soc {
        display: none;
    }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {


.reviews_slider_mob  .play-example__content-player {
            padding: 11px 16px;
}

    .two_ways__title {
        font-size: 32px;
    }

    .two_ways__container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 28px;
    }

    .two_ways__card {
        min-height: auto;
        padding: 30px;
        gap: 14px;
    }

    .hero__wrapper {
        padding: 36px 16px 50px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .products__mini_cart .mini_cart img {
        right: -10px;
    }

    .two_ways__card {
        flex-direction: column-reverse;
    }

    .two_ways__card-image.song-image,
    .two_ways__card-image.book-image {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .site-footer .footer_container {
        flex-direction: column;
        gap: 25px;
    }

    .site-footer .footer_menu {
     display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

/* Первая колонка — занимает 1 столбец и 2 строки */
.site-footer .footer_menu .col-1 {
  grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Вторая колонка — верхняя правая */
.site-footer .footer_menu .col-2 {
         grid-column: 2 / 2;
    grid-row: 1 / 2;
}

.site-footer .footer_menu .col-3 {
         display: none;
}



.site-footer .footer_menu .col-3::before {
   display: none;
}

.copyright_mob {
    display: block;
            color: #FFFFFF99;
        font-size: 12px;
        font-family: var(--font-display);
        font-weight: 400;
}

.copyright {
    display: none;
}

footer .col-4 {
    display: block;
    width: 100%;
        padding-top: 25px;
        border-top: 1px white solid;
}

footer .col-4 a {
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}


}

@media (max-width: 760px) {
    .map_by_fact {
        display: none;
    }

    .map_by_fact_mob {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
    }

    .section_by_fact .container {
        padding: 0;
    }

    .section_by_fact__background {
        border-radius: unset;
        padding: 40px 16px;
    }

    .section_by_fact .btn.white {
        width: 100%;
        text-align: center;
    }

    .map_by_fact_mob .right {
        color: white;
        text-align: right;
        font-size: 12px;
        font-family: var(--font-display);
        line-height: 1.2;
        margin-left: auto;
        margin-right: 37px;
        position: relative;
    }

    .map_by_fact_mob .right1 {
        max-width: 88px;
    }

    .map_by_fact_mob .category p {
        font-size: 10px;
    }

    .map_by_fact_mob .categories {
        margin: 0 auto;
        max-width: 100%;
        gap: 16px;
    }

    .map_by_fact_mob .left {
        color: white;
        text-align: left;
        font-size: 12px;
        font-family: var(--font-display);
        line-height: 1.2;
        margin-left: 23px;
        position: relative;
    }

    .map_by_fact_mob .cloud_text {
        max-width: 300px;
        padding: 11px 15px 23px 22px;
        background-image: url('./assets/images/cloud_by_fact.webp');
        color: var(--text-dark);
        font-size: 12px;
        font-weight: 400;
        line-height: 1.2;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        position: relative;
        margin: 0 auto;
    }

    .map_by_fact_mob .cloud_text .time {
        position: absolute;
        right: 15px;
        bottom: 8px;
        color: #303030;
    }

    .map_by_fact_mob .cloud_text .time svg {
        width: 15px;
    }

    .map_by_fact_mob .right2 {
        max-width: 164px;
    }

    .map_by_fact_mob .img_player_record{
        max-width: 210px;
        height: 173px;
margin: 0 auto;
    }

    .map_by_fact_mob .img_player_record img {
        width: 100%;
    }

    .section_by_fact__background .play-example__content-player {
        width: 210px;
                padding: 5px 19px 5px 7px;
    }

    
    .map_by_fact_mob .left3 {
        max-width: 95px;
    }

    .map_by_fact_mob .left3 + .btn.white {
        margin-top: 25px;
    }

    .map_by_fact_mob .right1::after {
        content: "";
        width: 77px;
        height: 114px;
        background: url('./assets/images/map_arrow_mob.webp');
        background-size: 100% 100%;
        background-repeat: no-repeat;
                display: block;
        position: absolute;
        top: -15px;
        right: -35px;
    }

       .map_by_fact_mob .left1::after {
        content: "";
        width: 77px;
        height: 114px;
        background: url('./assets/images/map_arrow_mob.webp');
        background-size: 100% 100%;
        background-repeat: no-repeat;
                display: block;
        position: absolute;
        top: -41px;
        left: -35px;
                transform: scaleX(-1);
    }

      .map_by_fact_mob .right2::after {
        content: "";
        width: 77px;
        height: 114px;
        background: url('./assets/images/map_arrow_mob.webp');
        background-size: 100% 100%;
        background-repeat: no-repeat;
                display: block;
        position: absolute;
        top: -30px;
        right: -35px;
    }

    
       .map_by_fact_mob .left3::after {
        content: "";
        width: 77px;
        height: 114px;
        background: url('./assets/images/map_arrow_mob.webp');
        background-size: 100% 100%;
        background-repeat: no-repeat;
                display: block;
        position: absolute;
        top: -41px;
        left: -35px;
                transform: scaleX(-1);
    }
}


@media (max-width: 550px) {

    .abs {
    }

    .step_content.back_abs_imgs .abs {
        display: block;
   
    left: 15px;
    bottom: 25px;
    position: absolute;
    width: 240px;
    height: auto;
}

    .abs_p.second {
            left: 140px;
            bottom: 31px;
            font-size: 7px;
   }

   .abs_p.first{
  left: 23px;
            bottom: 33px;
            font-size: 7px;
   }


    .img_stories p {
        top: 134px;
    }
    header .btn {
        font-size: 12px;
        padding: 8px 11px;
    }

    header .header_content {
        padding: 14px 15px;
    }

    .header_right_side {
        gap: 10px;
    }

    .hero__wrapper h1 {
        font-size: 30px;
        max-width: 303px;
    }

    .hero__wrapper p {
        font-size: 14px;
    }

    .hero__wrapper .btn {
        font-size: 14px;
        padding: 14px 20px;
        margin-bottom: 40px;
    }

    .products__mini_cart {
        gap: 16px;
    }

    .products__mini_cart .mini_cart img {
        width: 59px;
        top: -20px;
    }

    .products__mini_cart .mini_cart {
        padding: 12px 8px;
    }

    .products__mini_cart .mini_title {
        font-size: 14px;
        line-height: 1.2;
        max-width: 111px;
    }

    .hero__wrapper p {
        font-size: 14px;
    }

    .products__mini_cart p {
        font-size: 12px;
    }

    .section__title {
        font-size: 24px;
               /* margin-bottom: 8px; */
        max-width: 300px;
        margin: 0 auto 8px auto;
    }

    .section_by_fact h2 {
        max-width: 300px;
        margin-bottom: 8px;
    }

    .section__description {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .section_by_fact .section__header{
        margin-bottom: 0;
    }

    .two_ways__card-name {
        font-size: 18px;
    }

    .two_ways__card-list li {
        font-size: 16px;
    }

    .two_ways__card {
        border-radius: 20px;
    }

    .two_ways__card-link {
        margin: unset;
        font-size: 14px;
    }

    .two_ways__card-image.song-image {
        margin-top: -20px;
    }

    section {
        padding: 25px 0px;
    }

    .section_by_fact .btn.white {
        padding: 14px 20px;
    }

    header {
        top: 12px;
    }

    .map_by_fact_mob .right1::after {
        right: -50px;
    }

    .section__header {
        margin-bottom: 28px;
    }

    .book_section .steps .circle .number {
        font-size: 20px;
    }

    .book_section .steps .circle {
        width: 45px;
        height: 45px;
    }

    .steps .swiper-slide {
    width: 100%;
    } 

    .book_section .steps .categories {
        max-width: 100%;
            gap: 27px 5px;
    }

.book_section .steps .step__cart .step__title {
    font-size: 18px;
    margin-bottom: 8px;
}
.book_section .steps .step__cart .step__description{
    font-size: 14px;
}

.categories .category img{
    width: 50px;
    height: 50px;
}

.step_content .category p {
    font-size: 10px;
}

.stories_select img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.book_section .steps .step__cart {
        min-height: 440px;
}

.book_section .abs_imgs img:nth-of-type(2) {
    max-width: 111px;
        top: 128px;
}

.photo_cloud {
    font-size: 12px;
        padding: 10px 10px 5px 12px;
        bottom: 227px;
}

.step_content.abs_imgs .photo_cloud:nth-of-type(2){
    max-width: 123px;
}

.step_content.abs_imgs .photo_cloud:nth-of-type(2)::after {
        left: -15px;
    top: 13px;
}
.step_content.abs_imgs .photo_cloud:first-of-type{
    max-width: 145px;
}

.book_section .abs_imgs img:first-child {
        left: 37px;
        bottom: 55px;
        max-width: 121px;
}

.book_section .steps .step__cart {
    margin-top: 20px;
}

.btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.3;
}

.btn.white {
    line-height: 1.3;
}

.mar_48 {
    margin-top: 28px;
}

.reviews_slider_mob .swiper-slide {
    height: 283px;
    padding: 14px;
}

.review_card {
    gap: 15px;
}

.review_content .avatar{
    width: 21px;
    height: 21px;
}

.profile .fio_text .fio, .profile .fio_text .text{
    font-size: 10px
}
.review_content .profile {
    gap: 5px;
}

.reviews__slide-content blockquote, .reviews__slide-content.audio span{
    font-size: 13px;
    line-height: 1.2;
}

.reviews_slider_mob .play-example__content-player{
    padding: 5px 10px;
}
/* .reviews__slide-content .play-example__content-player__btn{
    width: 15px;
    height: 15px;
} */

/* .reviews__slide-content .play-example__content-player__btn svg {
    width: 5px;
    height: 5px;
} */

/* .play-example__content-player__progress svg{
        height: 18px;
} */

.play-example__content-player  {
    gap: 5px;
}

.faq_section {
    margin-top: 0;
    padding: 32px 21px 40px 21px;
}

.faq_question {
    font-size: 16px;
}

.faq_section h2 {
    margin-bottom: 28px;
}

.faq_container {
    margin-top: 28px;
}

.faq_item:first-child .faq_question{
    padding-bottom: 12px;
}

.faq_question {
    padding-top: 16px;
        padding-bottom: 12px;
}

.faq_answer p{
    font-size: 14px;
}

.reviews_section{
    margin-bottom: 60px;
}

  .products__mini_cart {
        flex-direction: column;
    }

    .products__mini_cart .mini_cart img {
        width: 70px;
        top: -20px;
    }

    .hero__wrapper .btn {
        margin-bottom: 30px;
    }

    .steps .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Если нужна фиксированная высота */
.steps .swiper-slide {
  min-height: 250px; /* Установите нужную вам высоту */
}
.steps .swiper-slide {
    width: 271px;
} 

.book_section .step {
    height: 100%;
}

.policy-page .flex {
    flex-direction: column;
    gap: 20px;
}

.page .entry-title {
    font-size: 20px;
    line-height: 1.2;
}

.policy-page h1 {
    font-size: 20px;
    line-height: 1.2;

}
}

@media (max-width: 420px) {
    header .header_right_side .btn {
        display: none;
    }

    .map_by_fact_mob .right1::after {
        width: 50px;
    }

    .map_by_fact_mob .left1::after {
        width: 45px;
    }
}

@media (max-width: 350px) {
    header .header_right_side .btn {
        display: none;
    }

  
}