/* =========================================================
   BASE
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        'Manrope',
        'Montserrat',
        'Anton',
        'Oswald',
        'Roboto Condensed',
        'Bona Nova SC',
        sans-serif;
    line-height: 1.6;
    font-size: 15px;

    background:
        linear-gradient(93deg,
            #050000,
            #300303,
            #9b0502,
            #1b0401);

    color: antiquewhite;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

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

a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 1000;
}

.header__inner {
    position: relative;

    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;
}


/* =========================================================
   LOGO
========================================================= */

.header_logo {
    position: absolute;
    left: 20px;
    top: 70%;

    z-index: 1002;

    display: block;

    width: 100px;
    height: auto;

    padding: 0;

    transform: translateY(-50%);
}

.header_logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    position: absolute;
    right: 20px;
    top: 50%;

    z-index: 1003;

    width: 46px;
    height: 46px;

    padding: 10px;

    border: 1px solid rgba(211, 144, 49, .7);
    border-radius: 50%;

    background: rgba(20, 0, 0, .8);

    cursor: pointer;

    transform: translateY(-50%);
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: #d39031;

    border-radius: 2px;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    margin: 0;
    padding: 0;

    white-space: nowrap;
}

.nav_link {
    position: relative;

    display: inline-block;

    padding: 8px 10px;

    color: antiquewhite;

    font-size: 14px;
    font-weight: 400;

    text-decoration: none;

    transition: color .3s ease;
}

.nav_link:hover {
    color: #d39031;
}

.nav_link::after {
    content: "";

    position: absolute;

    left: 10px;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #d39031;

    box-shadow:
        0 0 6px rgba(255, 212, 0, .8),
        0 0 12px rgba(255, 180, 0, .35);

    transition: width .4s ease;
}

.nav_link:hover::after {
    width: calc(100% - 20px);
}


/* =========================================================
   HEADER BUTTON
========================================================= */

.nav_link_lesson {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 9px 16px;

    color: antiquewhite;

    text-decoration: none;

    border: 1px solid #d39031;
    border-radius: 20px;

    box-shadow:
        0 0 8px rgba(255, 212, 0, .45),
        0 0 20px rgba(255, 180, 0, .25);

    transition:
        color .3s ease,
        background .3s ease,
        transform .2s ease;
}

.nav_link_lesson:hover {
    color: #1a1a2e;

    background: #d39031;

    transform: translateY(-1px);
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    position: relative;

    min-height: 100vh;
    min-height: 100dvh;

    overflow: hidden;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
    position: absolute;

    top: 155px;
    left: 50px;

    width: calc(100% - 100px);

    display: flex;
    flex-direction: column;

    z-index: 30;

    font-family: 'Montserrat', sans-serif;

    font-weight: 900;

    text-transform: uppercase;

    line-height: .95;

    letter-spacing: -1px;
}

.hero-title span:nth-child(1),
.hero-title span:nth-child(2) {
    color: antiquewhite;

    font-size: clamp(48px, 8vw, 110px);
}

.hero-title span:nth-child(3),
.hero-title span:nth-child(4) {
    margin-top: 8px;

    color: #ffb52a;

    font-size: clamp(36px, 6.5vw, 90px);
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title,
.section-title2,
.section-title3,
.section-title4,
.section-title5,
.section-title6 {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 0 auto;

    padding: 60px 20px 30px;

    color: #d39031;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.2;

    letter-spacing: 1px;

    text-align: center;

    text-transform: uppercase;
}

.section-title::before,
.section-title::after,
.section-title2::before,
.section-title2::after,
.section-title3::before,
.section-title3::after,
.section-title4::before,
.section-title4::after,
.section-title5::before,
.section-title5::after,
.section-title6::before,
.section-title6::after {
    content: "";

    flex: 0 1 130px;

    width: 130px;
    height: 1px;
}

.section-title::before,
.section-title2::before,
.section-title3::before,
.section-title4::before,
.section-title5::before,
.section-title6::before {
    background:
        linear-gradient(to right,
            transparent,
            rgba(211, 144, 49, .8));
}

.section-title::after,
.section-title2::after,
.section-title3::after,
.section-title4::after,
.section-title5::after,
.section-title6::after {
    background:
        linear-gradient(to left,
            transparent,
            rgba(211, 144, 49, .8));
}


/* =========================================================
   MUSIC STUDIO
========================================================= */

.music-studio {
    width: 100%;

    min-height: 100vh;

    margin-top: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 25px;

    color: #1a1a2e;

    font-family: 'Manrope', sans-serif;
}

.music-studio__card {
    width: 1300px;
    max-width: 100%;

    display: grid;

    grid-template-columns: 1.12fr .88fr;

    overflow: hidden;

    background: #fff;

    border: 1px solid rgba(211, 144, 49, .3);

    border-radius: 32px;

    box-shadow:
        0 25px 70px rgba(26, 26, 46, .12);
}


/* =========================================================
   MUSIC STUDIO — LEFT
========================================================= */

.music-studio__left {
    position: relative;

    padding: 52px 58px;

    background: antiquewhite;

    overflow: hidden;
}

.music-studio__left::before,
.music-studio__left::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(211, 144, 49, .15);

    border-radius: 50%;
}

.music-studio__left::before {
    width: 430px;
    height: 430px;

    right: -220px;
    top: -220px;
}

.music-studio__left::after {
    width: 300px;
    height: 300px;

    right: -150px;
    top: -150px;
}


/* =========================================================
   MUSIC STUDIO — TOP
========================================================= */

.music-studio__top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.music-studio__label,
.music-studio__form-label {
    display: inline-block;

    padding: 8px 13px;

    border-radius: 30px;

    background: rgba(211, 144, 49, .12);

    color: #d39031;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


/* =========================================================
   MUSIC STUDIO — TITLE
========================================================= */

.music-studio__title {
    position: relative;

    z-index: 2;

    margin: 40px 0 18px;

    font-size: 62px;

    line-height: .96;

    letter-spacing: -3px;

    font-weight: 800;
}

.music-studio__title span {
    color: #d39031;
}


/* =========================================================
   MUSIC STUDIO — INTRO
========================================================= */

.music-studio__intro-text {
    position: relative;

    z-index: 2;

    max-width: 650px;

    margin: 0 0 24px;

    color: #303040;

    font-size: 17px;

    line-height: 1.55;

    font-weight: 600;
}


/* =========================================================
   MUSIC STUDIO — STATEMENT
========================================================= */

.music-studio__statement {
    position: relative;

    z-index: 2;

    display: flex;

    gap: 14px;

    max-width: 650px;

    margin-bottom: 30px;

    padding: 17px 19px;

    background: rgba(255, 255, 255, .72);

    border: 1px solid rgba(211, 144, 49, .18);

    border-radius: 16px;
}

.music-studio__statement>span {
    color: #d39031;

    font-size: 22px;
}

.music-studio__statement p {
    margin: 0;

    color: #74747c;

    font-size: 11px;

    line-height: 1.55;
}

.music-studio__statement strong {
    display: block;

    margin-bottom: 3px;

    color: #1a1a2e;

    font-size: 13px;
}


/* =========================================================
   MUSIC STUDIO — DIRECTIONS
========================================================= */

.music-studio__directions {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 10px;
}

.music-studio__direction {
    position: relative;

    min-height: 150px;

    display: flex;

    flex-direction: column;

    padding: 17px;

    background: #fff;

    border: 1px solid #eadfce;

    border-radius: 17px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.music-studio__direction:hover {
    transform: translateY(-4px);

    border-color: rgba(211, 144, 49, .5);

    box-shadow:
        0 12px 25px rgba(26, 26, 46, .08);
}

.music-studio__direction-symbol {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 11px;

    background: rgba(211, 144, 49, .12);

    color: #d39031;

    font-size: 18px;
}

.music-studio__direction h3 {
    margin-bottom: 6px;

    color: #1a1a2e;

    font-size: 12px;

    line-height: 1.25;
}

.music-studio__direction p {
    margin: 0;

    color: #777780;

    font-size: 9.5px;

    line-height: 1.5;
}

.music-studio__arrow {
    position: absolute;

    top: 14px;
    right: 14px;

    color: #d39031;

    font-size: 15px;
}


/* =========================================================
   MUSIC STUDIO — RIGHT
========================================================= */

.music-studio__right {
    padding: 52px 50px;

    background: #fff;
}

.music-studio__form-top h2 {
    margin: 24px 0 11px;

    color: #1a1a2e;

    font-size: 35px;

    line-height: 1.05;

    letter-spacing: -1px;
}

.music-studio__form-description {
    max-width: 450px;

    margin: 0 0 27px;

    color: #777780;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   MUSIC STUDIO — FORM
========================================================= */

.music-studio__form {
    width: 100%;
}

.music-studio__field {
    margin-bottom: 14px;
}

.music-studio__field label {
    display: block;

    margin-bottom: 6px;

    color: #1a1a2e;

    font-size: 11px;

    font-weight: 700;
}

.music-studio__field input,
.music-studio__field select,
.music-studio__field textarea {
    width: 100%;

    font-family: Arial, sans-serif;

    font-size: 12px;

    color: #1a1a2e;

    background: #fff;

    border: 1px solid #ddd3c7;

    border-radius: 11px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.music-studio__field input,
.music-studio__field select {
    height: 44px;

    padding: 0 13px;
}

.music-studio__field textarea {
    height: 70px;

    padding: 11px 13px;

    resize: none;
}

.music-studio__field input::placeholder,
.music-studio__field textarea::placeholder {
    color: #aaaab0;
}

.music-studio__field input:focus,
.music-studio__field select:focus,
.music-studio__field textarea:focus {
    border-color: #d39031;

    box-shadow:
        0 0 0 3px rgba(211, 144, 49, .1);
}

.music-studio__row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 11px;
}


/* =========================================================
   MUSIC STUDIO — BUTTON
========================================================= */

.music-studio__button {
    width: 100%;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    border: none;

    border-radius: 12px;

    background: #d39031;

    color: #fff;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.music-studio__button b {
    font-size: 20px;

    transition: transform .2s ease;
}

.music-studio__button:hover {
    background: #bd7d26;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(211, 144, 49, .25);
}

.music-studio__button:hover b {
    transform: translateX(5px);
}


/* =========================================================
   MUSIC STUDIO — BOTTOM
========================================================= */

.music-studio__bottom {
    display: flex;

    gap: 11px;

    margin-top: 28px;

    padding-top: 19px;

    border-top: 1px solid #eee8e0;
}

.music-studio__bottom-icon {
    color: #d39031;

    font-size: 16px;
}

.music-studio__bottom strong {
    display: block;

    margin-bottom: 3px;

    color: #1a1a2e;

    font-size: 10px;
}

.music-studio__bottom span {
    display: block;

    color: #888890;

    font-size: 9px;

    line-height: 1.45;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    width: 100%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 70px 30px;

    font-family: 'Manrope', sans-serif;
}

.services {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    background: antiquewhite;

    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .25);
}

.services-box {
    position: relative;

    min-height: 430px;

    padding: 32px 30px 40px;

    background: antiquewhite;

    border-right: 1px solid rgba(26, 26, 46, .12);

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.services-box:last-child {
    border-right: none;
}

.services-number {
    color: #d39031;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: transform .3s ease;
}

.services-line {
    width: 45px;

    height: 2px;

    margin: 45px 0 30px;

    background: #d39031;

    transition:
        width .35s ease,
        box-shadow .35s ease;
}

.services-box h3 {
    min-height: 65px;

    color: #1a1a2e;

    font-size: 26px;

    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -1px;
}

.services-box p {
    margin-top: 22px;

    color: rgba(26, 26, 46, .62);

    font-size: 14px;

    line-height: 1.7;

    font-weight: 400;
}

.btn2 {
    position: absolute;

    left: 30px;
    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 14px;

    color: #1a1a2e;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease,
        gap .3s ease;
}

.btn-arrow {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d39031;

    border-radius: 50%;

    color: #d39031;

    font-size: 16px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.services-box:hover {
    z-index: 2;

    background: #fffaf2;

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(26, 26, 46, .12);
}

.services-box:hover .services-number {
    transform: translateX(5px);
}

.services-box:hover .services-line {
    width: 80px;

    box-shadow:
        0 0 10px rgba(211, 144, 49, .4);
}

.services-box:hover .btn2 {
    gap: 20px;

    color: #d39031;
}

.services-box:hover .btn-arrow {
    background: #d39031;

    color: #1a1a2e;

    transform: rotate(45deg);
}


/* =========================================================
   TEACHERS
========================================================= */

.olga,
.nastya,
.nikolay {
    width: 100%;

    max-width: 1550px;

    display: flex;

    justify-content: flex-start;
    align-items: flex-start;

    gap: 40px;

    margin: 0 auto;

    padding: 20px;
}

.olga img,
.nastya img,
.nikolay img {
    width: 200px;
    height: auto;

    flex-shrink: 0;

    margin: 20px 0 0 80px;

    border-radius: 20px;
}

.olga h2,
.nastya h2,
.nikolay h2 {
    flex: 1;

    max-width: 940px;

    margin: 20px 0 0;

    padding: 25px;

    background: #f8ead7;

    border-radius: 30px;

    color: #1f0b03;

    font-size: 17px;

    line-height: 1.6;

    font-weight: 400;

    overflow-wrap: break-word;
}

.olga_btn,
.nastya_btn,
.nikolay_btn {
    display: inline-block;

    color: #d39031;

    font-family: 'Manrope', sans-serif;

    font-size: 17px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.olga_btn:hover,
.nastya_btn:hover,
.nikolay_btn:hover {
    color: #bd7d26;

    transform: translateX(3px);
}


/* =========================================================
   ABOUT SLIDER
========================================================= */

.about {
    position: relative;

    width: 100%;

    max-width: 1400px;

    margin: 30px auto;

    padding: 0 70px;
}

.about-slider {
    width: 100%;

    overflow: hidden;
}

.about-track {
    display: flex;

    gap: 20px;

    transition: transform .5s ease;
}

.about-track img {
    flex: 0 0 calc((100% - 40px) / 3);

    width: calc((100% - 40px) / 3);

    height: 400px;

    object-fit: cover;

    border-radius: 4px;
}

.about-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 0 4px;

    border: 1px solid #d39031;

    border-radius: 50%;

    background: rgba(20, 0, 0, .8);

    color: #d39031;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition:
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.about-arrow:hover {
    background: #d39031;

    color: #300303;

    box-shadow:
        0 0 10px rgba(211, 144, 49, .7),
        0 0 20px rgba(211, 144, 49, .4);
}

.about-arrow-left {
    left: 10px;
}

.about-arrow-right {
    right: 10px;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.text-about {
    max-width: 1250px;

    margin: 0 auto;

    padding: 0 15px;

    text-align: center;
}

.text-about h2 {
    margin: 20px 0 0;

    padding: 25px;

    background: #f8ead7;

    border-radius: 30px;

    color: #1f0b03;

    font-size: 17px;

    line-height: 1.6;

    font-weight: 400;
}


/* =========================================================
   BUTTON 5
========================================================= */

.btn5 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin: 15px 0 20px;

    padding: 12px 28px;

    border: 2px solid #d39031;

    border-radius: 50px;

    background: #d39031;

    color: #300303;

    font-size: 16px;

    font-weight: 500;

    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease,
        transform .2s ease;
}

.btn5:hover {
    background: transparent;

    color: #d39031;

    box-shadow:
        0 0 10px rgba(211, 144, 49, .7),
        0 0 20px rgba(211, 144, 49, .4);

    transform: translateY(-2px);
}


/* =========================================================
   PRICE
========================================================= */

.price {
    width: 100%;

    max-width: 1374px;

    margin: 0 auto;

    padding: 35px 30px 80px;

    font-family: 'Manrope', sans-serif;
}


/* =========================================================
   PRICE TABS
========================================================= */

.teach {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    width: fit-content;
    max-width: 100%;

    margin: 0 auto 35px;

    padding: 6px;

    background: rgba(250, 235, 215, .06);

    border: 1px solid rgba(250, 235, 215, .13);

    border-radius: 50px;
}

.teach__link {
    display: block;

    padding: 12px 20px;

    color: rgba(250, 235, 215, .6);

    font-family: 'Manrope', sans-serif;

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;

    border-radius: 40px;

    transition:
        color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.teach__link:hover {
    color: antiquewhite;
}

.teach__link.active {
    background: #d39031;

    color: #1a1a2e;

    box-shadow:
        0 5px 20px rgba(211, 144, 49, .2);
}


/* =========================================================
   PRICE CONTAINERS
========================================================= */

.cost {
    display: none;

    width: 100%;

    flex-wrap: wrap;

    justify-content: center;

    align-items: stretch;

    gap: 16px;
}

.cost.active {
    display: flex;
}


/* =========================================================
   PRICE CARD
========================================================= */

.cost__card {
    position: relative;

    width: 250px;
    height: 240px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    background: antiquewhite;

    border: 1px solid rgba(26, 26, 46, .08);

    border-radius: 18px;

    color: #1a1a2e;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.cost__card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #d39031;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;
}

.cost__card h2 {
    width: 100%;

    margin: 0;

    color: #1a1a2e;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 500;

    letter-spacing: -.3px;

    overflow-wrap: break-word;
}


/* =========================================================
   PRICE BOTTOM
========================================================= */

.cost__bottom {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 27px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
}

.cost__bottom strong {
    color: #1a1a2e;

    font-size: 21px;

    line-height: 1;

    font-weight: 700;

    white-space: nowrap;
}

.cost__bottom a {
    display: inline-flex;

    align-items: center;

    color: #d39031;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}

.cost__bottom a::after {
    content: "↗";

    margin-left: 7px;

    font-size: 15px;

    transition: transform .3s ease;
}

.cost__bottom a:hover {
    color: #bd7d26;

    transform: translateX(2px);
}

.cost__bottom a:hover::after {
    transform: translate(3px, -3px);
}


/* =========================================================
   PRICE HOVER
========================================================= */

.cost__card:hover {
    transform: translateY(-6px);

    border-color: rgba(211, 144, 49, .4);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .13);
}

.cost__card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   OPTIONAL NOTES
========================================================= */

.card_text {
    order: 100;

    flex: 0 0 100%;

    width: 100%;

    margin-top: 8px;

    padding: 18px 22px;

    background: rgba(250, 235, 215, .06);

    border-left: 2px solid #d39031;

    border-radius: 0 10px 10px 0;
}

.card_text h2 {
    margin: 0;

    color: rgba(250, 235, 215, .75);

    font-family: 'Manrope', sans-serif;

    font-size: 12px;

    line-height: 1.7;

    font-weight: 300;
}

#rehab .card_text {
    max-width: 850px;

    margin: 10px auto 0;

    text-align: center;
}


/* =========================================================
   PRICE INFORMATION
========================================================= */

.price::after {
    content:
        "Длительность занятия — 50 минут.\A"
        "Реабилитация и восстановление голоса — 45 минут.";

    white-space: pre-line;

    display: block;

    width: 100%;

    max-width: 900px;

    margin: 30px auto 0;

    padding: 18px 22px;

    color: rgba(250, 235, 215, .75);

    font-family: 'Manrope', sans-serif;

    font-size: 13px;

    line-height: 1.7;

    font-weight: 300;

    text-align: center;

    background: rgba(250, 235, 215, .05);

    border-top: 1px solid rgba(211, 144, 49, .35);

    border-bottom: 1px solid rgba(211, 144, 49, .15);
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    width: 100%;

    max-width: 900px;

    margin: 15px auto;

    padding: 0 15px 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(211, 144, 49, .5);
}

.faq-item details {
    width: 100%;
}

.faq-item summary {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 10px;

    color: antiquewhite;

    font-size: 18px;

    font-weight: 500;

    cursor: pointer;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d39031;

    border-radius: 50%;

    color: #d39031;

    font-size: 25px;

    font-weight: 300;

    transition:
        transform .3s ease,
        background .3s ease;
}

.faq-item details[open] .faq-icon {
    transform: rotate(45deg);

    background: rgba(211, 144, 49, .08);
}

.faq-answer {
    padding: 0 50px 25px 10px;

    color: antiquewhite;

    font-size: 15px;

    line-height: 1.7;

    opacity: .8;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-grid {
    position: relative;

    max-width: 1300px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin: 0 auto;

    padding: 20px;
}

.review-card {
    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    padding: 30px 28px;

    background: antiquewhite;

    border-radius: 20px;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, .08);

    cursor: pointer;

    user-select: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .4s ease,
        filter .4s ease;
}

.review-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 35px rgba(0, 0, 0, .13);
}

.reviews-grid.blurred .review-card:not(.active) {
    opacity: .25;

    transform: scale(.94);

    filter: blur(4px);

    pointer-events: none;
}

.reviews-grid.blurred .review-card.active {
    z-index: 10;

    transform: scale(1.04);

    box-shadow:
        0 12px 50px rgba(0, 0, 0, .25);
}

.review-name {
    margin: 0 0 4px;

    color: #1a1a2e;

    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    font-size: 20px;

    font-weight: 700;
}

.review-stars {
    display: block;

    margin: 6px 0 14px;

    color: #f5b342;

    font-size: 22px;

    letter-spacing: 3px;

    line-height: 1;
}

.review-text-wrapper {
    position: relative;

    max-height: 160px;

    overflow: hidden;
}

.review-text-wrapper::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    height: 40px;

    background:
        linear-gradient(transparent,
            antiquewhite);

    pointer-events: none;
}

.review-text {
    display: -webkit-box;

    margin: 0;

    overflow: hidden;

    color: #2d2d44;

    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.7;

    text-overflow: ellipsis;

    word-break: normal;

    white-space: normal;

    -webkit-line-clamp: 6;

    -webkit-box-orient: vertical;
}

.review-hint {
    display: block;

    margin-top: 14px;

    color: #f5b342;

    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: .5px;

    text-align: center;

    transition: color .2s ease;
}

.review-card:hover .review-hint {
    color: #e09e2f;
}


/* =========================================================
   MODAL
========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, .7);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    animation: fadeIn .3s ease;
}

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

.modal-content {
    position: relative;

    width: 100%;

    max-width: 750px;

    max-height: 80vh;

    padding: 50px 55px;

    overflow-y: auto;

    background: antiquewhite;

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .3);

    animation: slideUp .4s ease;
}

.modal-close {
    position: absolute;

    top: 18px;
    right: 22px;

    padding: 5px;

    background: none;

    border: none;

    color: #999;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}

.modal-close:hover {
    color: #333;

    transform: rotate(90deg);
}

.modal-name {
    margin: 0 0 8px;

    padding-right: 40px;

    color: #1a1a2e;

    font-family: 'Segoe UI', Roboto, Arial, sans-serif;

    font-size: 28px;

    font-weight: 700;
}

.modal-stars {
    display: block;

    margin: 0 0 20px;

    color: #f5b342;

    font-size: 28px;

    letter-spacing: 4px;

    line-height: 1;
}

.modal-text {
    margin: 0;

    color: #2d2d44;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.8;

    text-align: left;

    white-space: normal;

    overflow-wrap: break-word;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;

    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #f5b342;

    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #e09e2f;
}


/* =========================================================
   BOOKING TITLE
========================================================= */

.section-title7 {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    padding: 60px 20px 25px;

    color: #d39031;

    font-family: 'Montserrat', sans-serif;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: 2px;

    text-align: center;

    text-transform: uppercase;
}

.section-title7 .section-decor {
    color: #f5b342;

    font-size: 24px;
}


/* =========================================================
   BOOKING
========================================================= */

.booking {
    padding: 20px 20px 70px;
}

.booking__container {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    padding: 50px 55px;

    background: antiquewhite;

    border-radius: 30px;

    box-shadow:
        0 8px 40px rgba(0, 0, 0, .08);
}


/* =========================================================
   BOOKING — INFO
========================================================= */

.booking__info h2 {
    margin-bottom: 16px;

    color: #1a1a2e;

    font-family: 'Montserrat', sans-serif;

    font-size: 32px;

    font-weight: 800;

    line-height: 1.2;
}

.booking__info p {
    margin: 0 0 30px;

    color: #2d2d44;

    font-family: 'Manrope', sans-serif;

    font-size: 16px;

    line-height: 1.7;
}

.booking__features {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.booking__feature {
    display: flex;

    align-items: center;

    gap: 14px;

    color: #1a1a2e;

    font-size: 16px;

    font-weight: 500;
}

.booking__feature-icon {
    flex-shrink: 0;

    font-size: 24px;
}


/* =========================================================
   BOOKING — FORM
========================================================= */

.booking__form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px 24px;
}

.booking__form-group {
    display: flex;

    flex-direction: column;
}

.booking__form-group--full {
    grid-column: 1 / -1;
}

.booking__form-group label {
    margin-bottom: 6px;

    color: #1a1a2e;

    font-size: 14px;

    font-weight: 600;
}

.booking__form-group input,
.booking__form-group textarea {
    width: 100%;

    padding: 14px 18px;

    background: #fff;

    border: 2px solid #e0d5c8;

    border-radius: 12px;

    outline: none;

    color: #1a1a2e;

    font-family: 'Manrope', sans-serif;

    font-size: 16px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.booking__form-group input:focus,
.booking__form-group textarea:focus {
    border-color: #f5b342;

    box-shadow:
        0 0 0 4px rgba(245, 179, 66, .15);
}

.booking__form-group textarea {
    min-height: 80px;

    resize: vertical;
}

.booking__submit {
    grid-column: 1 / -1;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 6px;

    padding: 16px 35px;

    border: none;

    border-radius: 12px;

    background: #1a1a2e;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .2s ease,
        box-shadow .3s ease;
}

.booking__submit:hover {
    background: #f5b342;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(245, 179, 66, .35);
}

.booking__submit:active {
    transform: translateY(0);
}

.booking__submit span:last-child {
    font-size: 22px;

    transition: transform .3s ease;
}

.booking__submit:hover span:last-child {
    transform: translateX(4px);
}

.booking__agreement {
    grid-column: 1 / -1;

    margin: 4px 0 0;

    color: #777;

    font-size: 13px;

    text-align: center;
}

.booking__agreement a {
    color: #f5b342;

    text-decoration: underline;

    transition: color .2s ease;
}

.booking__agreement a:hover {
    color: #e09e2f;
}


/* =========================================================
   BOOKING — SUCCESS
========================================================= */

.booking__success {
    grid-column: 1 / -1;

    display: none;

    padding: 20px;

    text-align: center;
}

.booking__success.show {
    display: block;
}

.booking__success-icon {
    margin-bottom: 10px;

    font-size: 48px;
}

.booking__success h3 {
    margin-bottom: 6px;

    color: #1a1a2e;

    font-family: 'Montserrat', sans-serif;

    font-size: 22px;
}

.booking__success p {
    margin: 0;

    color: #555;

    font-size: 15px;
}

.booking__submit.loading {
    pointer-events: none;

    opacity: .7;
}

.booking__submit.loading span:first-child::after {
    content: "";

    display: inline-block;

    width: 18px;
    height: 18px;

    margin-left: 12px;

    vertical-align: middle;

    border: 3px solid #fff;

    border-top-color: transparent;

    border-radius: 50%;

    animation: spin .8s linear infinite;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;

        transform:
            translateY(40px) scale(.95);
    }

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }
}


/* =========================================================
   TABLET — 1024px
========================================================= */

@media (max-width: 1024px) {

    /* HEADER */

    .header__inner {
        min-height: 70px;

        padding: 10px 25px;
    }

    .header_logo {
        left: 25px;

        width: 85px;
    }

    .nav {
        gap: 12px;
    }

    .nav_link {
        padding: 7px 7px;

        font-size: 12px;
    }

    .nav_link_lesson {
        padding: 8px 13px;

        font-size: 12px;
    }


    /* HERO */

    .hero-title {
        top: 130px;

        left: 30px;

        width: calc(100% - 60px);
    }


    /* SECTION TITLES */

    .section-title,
    .section-title2,
    .section-title3,
    .section-title4,
    .section-title5,
    .section-title6 {
        padding: 55px 20px 28px;
    }


    /* MUSIC STUDIO */

    .music-studio {
        min-height: auto;

        margin-top: 60px;

        padding: 35px 20px;
    }

    .music-studio__card {
        grid-template-columns: 1fr;
    }

    .music-studio__left,
    .music-studio__right {
        padding: 40px;
    }

    .music-studio__title {
        font-size: 52px;
    }

    .music-studio__intro-text {
        max-width: 700px;
    }


    /* SERVICES */

    .services-section {
        padding: 70px 25px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-box:nth-child(2) {
        border-right: none;
    }

    .services-box:nth-child(3),
    .services-box:nth-child(4) {
        border-top: 1px solid rgba(26, 26, 46, .12);
    }


    /* TEACHERS */

    .olga,
    .nastya,
    .nikolay {
        gap: 25px;

        padding: 20px;
    }

    .olga img,
    .nastya img,
    .nikolay img {
        width: 190px;

        margin-left: 15px;
    }

    .olga h2,
    .nastya h2,
    .nikolay h2 {
        max-width: none;

        font-size: 16px;
    }


    /* ABOUT */

    .about {
        padding: 0 50px;
    }

    .about-track img {
        height: 330px;
    }


    /* PRICE */

    .price {
        padding: 35px 25px 70px;
    }

    .cost__card {
        width: calc(50% - 8px);
    }


    /* REVIEWS */

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    /* BOOKING */

    .booking__container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 40px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP — 900px
========================================================= */

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

    .nav {
        gap: 7px;
    }

    .nav_link {
        padding: 6px 5px;

        font-size: 11px;
    }

    .nav_link_lesson {
        padding: 7px 10px;

        font-size: 11px;
    }

    .header_logo {
        width: 75px;
    }
}


/* =========================================================
   MOBILE — 768px
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       HEADER
    ===================================================== */

    .header {
        background:
            linear-gradient(to bottom,
                rgba(5, 0, 0, .94),
                rgba(5, 0, 0, .55),
                transparent);
    }

    .header__inner {
        min-height: 70px;

        padding: 10px 15px;

        justify-content: space-between;
    }

    .header_logo {
        position: absolute;

        left: 15px;
        top: 50%;

        width: 75px;

        transform: translateY(-50%);
    }

    .menu-toggle {
        display: block;

        right: 15px;
    }


    /* =====================================================
       MOBILE NAV
    ===================================================== */

    .nav {
        position: absolute;

        top: calc(100% + 8px);

        left: 15px;
        right: 15px;

        width: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 12px;

        background: rgba(20, 0, 0, .97);

        border: 1px solid rgba(211, 144, 49, .45);

        border-radius: 20px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, .4);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;
    }

    .nav.active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

    .nav_link {
        width: 100%;

        display: block;

        padding: 13px 15px;

        border-radius: 12px;

        color: antiquewhite;

        font-size: 14px;

        text-align: center;
    }

    .nav_link:hover {
        color: antiquewhite;

        background: rgba(211, 144, 49, .08);
    }

    .nav_link::after {
        display: none;
    }

    .nav_link_lesson {
        width: 100%;

        margin-top: 6px;

        padding: 13px 15px;

        border-radius: 12px;

        background: #d39031;

        color: #1a1a2e;

        text-align: center;
    }

    .nav_link_lesson:hover {
        background: #bd7d26;

        color: #1a1a2e;

        transform: none;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .intro {
        min-height: auto;

        padding-bottom: 30px;
    }

    .hero-title {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;

        padding:
            130px 20px 30px;
    }

    .hero-title span:nth-child(1),
    .hero-title span:nth-child(2) {
        font-size:
            clamp(42px,
                13vw,
                70px);
    }

    .hero-title span:nth-child(3),
    .hero-title span:nth-child(4) {
        font-size:
            clamp(32px,
                10vw,
                55px);
    }


    /* =====================================================
       SECTION TITLES
    ===================================================== */

    .section-title,
    .section-title2,
    .section-title3,
    .section-title4,
    .section-title5,
    .section-title6 {
        gap: 10px;

        padding:
            45px 15px 25px;

        font-size: 15px;

        letter-spacing: .7px;
    }

    .section-title::before,
    .section-title::after,
    .section-title2::before,
    .section-title2::after,
    .section-title3::before,
    .section-title3::after,
    .section-title4::before,
    .section-title4::after,
    .section-title5::before,
    .section-title5::after,
    .section-title6::before,
    .section-title6::after {
        flex: 1 1 auto;

        width: auto;

        max-width: 70px;
    }


    /* =====================================================
       MUSIC STUDIO
    ===================================================== */

    .music-studio {
        margin-top: 30px;

        padding: 15px;
    }

    .music-studio__left,
    .music-studio__right {
        padding:
            30px 22px;
    }

    .music-studio__title {
        margin-top: 30px;

        font-size: 42px;

        letter-spacing: -2px;
    }

    .music-studio__intro-text {
        font-size: 15px;
    }

    .music-studio__directions {
        grid-template-columns: 1fr;
    }

    .music-studio__direction {
        min-height: auto;
    }

    .music-studio__row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .music-studio__form-top h2 {
        font-size: 30px;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services-section {
        padding:
            65px 18px;
    }

    .services {
        grid-template-columns: 1fr;

        border-radius: 14px;
    }

    .services-box,
    .services-box:nth-child(2),
    .services-box:nth-child(3),
    .services-box:nth-child(4) {
        min-height: 360px;

        border-right: none;

        border-top:
            1px solid rgba(26, 26, 46, .12);
    }

    .services-box:first-child {
        border-top: none;
    }

    .services-box h3 {
        font-size: 24px;
    }


    /* =====================================================
       TEACHERS — MOBILE
       PNG НЕ ОБРЕЗАЕМ
    ===================================================== */

    .olga,
    .nastya,
    .nikolay {
        width: 100%;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding:
            25px 15px 35px;

        text-align: center;
    }

    .olga img,
    .nastya img,
    .nikolay img {
        position: relative;

        z-index: 2;

        /*
           Ширина остаётся 215px.
           Реальный визуальный размер увеличиваем
           через transform.
        */

        width: 215px;

        height: auto;

        display: block;

        margin:
            0 auto -32px;

        object-fit: contain;

        border-radius: 0;

        transform: scale(1.08);

        transform-origin: center center;

        filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .20));
    }

    .olga h2,
    .nastya h2,
    .nikolay h2 {
        position: relative;

        z-index: 1;

        width: 100%;

        max-width: 600px;

        margin: 0;

        padding:
            55px 22px 22px;

        background: #f8ead7;

        border-radius: 28px;

        color: #1f0b03;

        font-size: 15px;

        line-height: 1.65;
    }

    .olga_btn,
    .nastya_btn,
    .nikolay_btn {
        font-size: 14px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about {
        padding:
            0 50px;
    }

    .about-track img {
        flex: 0 0 100%;

        width: 100%;

        height: 320px;
    }

    .about-arrow {
        width: 40px;
        height: 40px;

        font-size: 28px;
    }

    .about-arrow-left {
        left: 5px;
    }

    .about-arrow-right {
        right: 5px;
    }

    .text-about {
        padding:
            0 15px;
    }

    .text-about h2 {
        padding: 20px;

        font-size: 14px;
    }


    /* =====================================================
       PRICE
    ===================================================== */

    .price {
        padding:
            30px 15px 65px;
    }

    .teach {
        width: 100%;

        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        scrollbar-width: none;

        border-radius: 20px;
    }

    .teach::-webkit-scrollbar {
        display: none;
    }

    .teach__link {
        flex-shrink: 0;

        padding:
            11px 16px;

        font-size: 14px;
    }

    .cost {
        flex-direction: column;

        gap: 12px;
    }

    .cost__card {
        width: 100%;

        height: 225px;

        padding: 24px;
    }

    .cost__card h2 {
        font-size: 18px;

        line-height: 1.4;
    }

    .cost__bottom {
        left: 24px;
        right: 24px;

        bottom: 23px;
    }

    .cost__bottom strong {
        font-size: 21px;
    }

    .cost__bottom a {
        font-size: 14px;
    }

    .card_text {
        padding:
            16px 18px;
    }

    .card_text h2 {
        font-size: 12px;
    }

    .price::after {
        margin-top: 25px;

        padding:
            16px 15px;

        font-size: 12px;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .faq {
        padding:
            0 15px 20px;
    }

    .faq-item summary {
        padding:
            16px 5px;

        font-size: 15px;
    }

    .faq-answer {
        padding:
            0 35px 20px 5px;

        font-size: 14px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;

        font-size: 21px;
    }


    /* =====================================================
       REVIEWS
    ===================================================== */

    .reviews-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        padding: 12px;
    }

    .review-card {
        padding:
            22px 18px;
    }

    .review-name {
        font-size: 18px;
    }

    .review-stars {
        font-size: 18px;
    }

    .review-text {
        font-size: 14px;
    }


    /* =====================================================
       MODAL
    ===================================================== */

    .modal-overlay {
        padding: 15px;
    }

    .modal-content {
        max-height: 90vh;

        padding:
            30px 25px;

        border-radius: 20px;
    }

    .modal-name {
        font-size: 22px;

        padding-right: 35px;
    }

    .modal-stars {
        font-size: 22px;
    }

    .modal-text {
        font-size: 15px;
    }

    .modal-close {
        top: 14px;
        right: 18px;

        font-size: 28px;
    }


    /* =====================================================
       BOOKING
    ===================================================== */

    .section-title7 {
        padding:
            50px 15px 25px;

        font-size: 22px;

        gap: 10px;
    }

    .section-title7 .section-decor {
        font-size: 16px;
    }

    .booking {
        padding:
            15px 15px 45px;
    }

    .booking__container {
        padding:
            30px 20px;

        border-radius: 20px;
    }

    .booking__info h2 {
        font-size: 24px;
    }

    .booking__info p {
        font-size: 14px;
    }

    .booking__feature {
        font-size: 14px;
    }

    .booking__form {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .booking__form-group--full,
    .booking__submit,
    .booking__agreement {
        grid-column: 1;
    }

    .booking__form-group input,
    .booking__form-group textarea {
        padding:
            12px 14px;

        font-size: 14px;
    }

    .booking__submit {
        padding:
            14px 28px;

        font-size: 16px;
    }

    .booking__agreement {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE — 480px
========================================================= */

@media (max-width: 480px) {

    /* =====================================================
       HEADER
    ===================================================== */

    .header__inner {
        min-height: 64px;

        padding:
            9px 12px;
    }

    .header_logo {
        left: 12px;

        width: 65px;
    }

    .menu-toggle {
        right: 12px;

        width: 42px;
        height: 42px;
    }

    .menu-toggle span {
        width: 18px;
    }

    .nav {
        top: calc(100% + 6px);

        left: 10px;
        right: 10px;

        padding: 10px;

        border-radius: 18px;
    }

    .nav_link {
        padding:
            12px 13px;

        font-size: 14px;
    }

    .nav_link_lesson {
        padding:
            12px 13px;

        font-size: 14px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero-title {
        padding:
            115px 15px 25px;
    }

    .hero-title span:nth-child(1),
    .hero-title span:nth-child(2) {
        font-size:
            clamp(34px,
                12vw,
                52px);
    }

    .hero-title span:nth-child(3),
    .hero-title span:nth-child(4) {
        font-size:
            clamp(28px,
                9vw,
                42px);
    }


    /* =====================================================
       SECTION TITLES
    ===================================================== */

    .section-title,
    .section-title2,
    .section-title3,
    .section-title4,
    .section-title5,
    .section-title6 {
        gap: 7px;

        padding:
            40px 12px 22px;

        font-size: 13px;

        letter-spacing: .5px;
    }

    .section-title::before,
    .section-title::after,
    .section-title2::before,
    .section-title2::after,
    .section-title3::before,
    .section-title3::after,
    .section-title4::before,
    .section-title4::after,
    .section-title5::before,
    .section-title5::after,
    .section-title6::before,
    .section-title6::after {
        max-width: 40px;
    }


    /* =====================================================
       MUSIC STUDIO
    ===================================================== */

    .music-studio {
        padding: 10px;
    }

    .music-studio__left,
    .music-studio__right {
        padding:
            25px 17px;
    }

    .music-studio__title {
        font-size: 34px;
    }

    .music-studio__intro-text {
        font-size: 14px;
    }

    .music-studio__statement {
        padding: 14px;
    }

    .music-studio__form-top h2 {
        font-size: 26px;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services-section {
        padding:
            55px 12px;
    }

    .services-box {
        min-height: 330px;

        padding:
            25px 20px 35px;
    }

    .services-box h3 {
        font-size: 21px;
    }

    .services-box p {
        font-size: 13px;
    }

    .btn2 {
        left: 20px;
        bottom: 25px;
    }


    /* =====================================================
       TEACHERS — SMALL MOBILE
       ШИРИНА НЕ МЕНЯЕТСЯ
    ===================================================== */

    .olga,
    .nastya,
    .nikolay {
        padding:
            20px 10px 30px;
    }

    .olga img,
    .nastya img,
    .nikolay img {
        width: 215px;

        height: auto;

        margin:
            0 auto -28px;

        object-fit: contain;

        transform: scale(1.08);
    }

    .olga h2,
    .nastya h2,
    .nikolay h2 {
        padding:
            48px 17px 18px;

        font-size: 14px;

        line-height: 1.6;

        border-radius: 24px;
    }

    .olga_btn,
    .nastya_btn,
    .nikolay_btn {
        font-size: 13px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about {
        padding:
            0 45px;
    }

    .about-track img {
        height: 280px;
    }

    .text-about {
        padding:
            0 10px;
    }

    .text-about h2 {
        padding: 17px;

        font-size: 13px;
    }

    .btn5 {
        padding:
            10px 24px;

        font-size: 14px;
    }


    /* =====================================================
       PRICE
    ===================================================== */

    .price {
        padding:
            30px 10px 55px;
    }

    .teach {
        padding: 5px;
    }

    .teach__link {
        padding:
            10px 14px;

        font-size: 13px;
    }

    .cost__card {
        height: 215px;

        padding: 21px;
    }

    .cost__card h2 {
        font-size: 16px;

        line-height: 1.4;
    }

    .cost__bottom {
        left: 21px;
        right: 21px;

        bottom: 20px;
    }

    .cost__bottom strong {
        font-size: 19px;
    }

    .cost__bottom a {
        font-size: 13px;
    }

    .card_text {
        padding:
            14px 15px;
    }

    .card_text h2 {
        font-size: 11px;
    }

    .price::after {
        padding:
            14px 10px;

        font-size: 11px;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .faq {
        padding:
            0 10px 15px;
    }

    .faq-item summary {
        padding:
            13px 4px;

        font-size: 14px;
    }

    .faq-answer {
        padding:
            0 25px 18px 4px;

        font-size: 13px;
    }


    /* =====================================================
       REVIEWS
    ===================================================== */

    .review-card {
        padding:
            20px 16px;
    }

    .review-name {
        font-size: 17px;
    }

    .review-stars {
        font-size: 17px;
    }

    .review-text {
        font-size: 13px;
    }

    .review-hint {
        font-size: 11px;
    }


    /* =====================================================
       MODAL
    ===================================================== */

    .modal-content {
        padding:
            28px 20px;
    }

    .modal-name {
        font-size: 20px;
    }

    .modal-text {
        font-size: 14px;
    }


    /* =====================================================
       BOOKING
    ===================================================== */

    .section-title7 {
        padding:
            40px 10px 20px;

        font-size: 18px;
    }

    .booking {
        padding:
            10px 10px 35px;
    }

    .booking__container {
        padding:
            22px 15px;
    }

    .booking__info h2 {
        font-size: 20px;
    }

    .booking__info p {
        font-size: 13px;
    }

    .booking__feature {
        font-size: 13px;
    }

    .booking__form-group input,
    .booking__form-group textarea {
        font-size: 13px;
    }

    .booking__submit {
        padding:
            12px 20px;

        font-size: 15px;
    }
}