@font-face {
  font-family: "GummyBears";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/GummyBears.ttf) format("truetype");
}

@font-face {
  font-family: "PatrickHand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/PatrickHand.ttf) format("truetype");
}

@font-face {
  font-family: "DynaPuff";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/DynaPuff.ttf) format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PatrickHand", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    line-height: 1.2;
}

:root {
  --dark: #050505;
  --green: #25695F;
  --green-one:#13534A;
  --green-two: #064A42;
  --pink: #FFEAEC;
  --grey: #404040;
  --white-one: #EFFFFD;
  --white-two: #F6EDE4;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
}

body {
    background: url("../img/background_kids_club.webp") no-repeat center center;
    background-size: cover;
    position: relative;
}

header {
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 100;
    padding-top: 30px;
}

main {
    overflow: hidden;
    margin-top: 25px;
}

.intro_page {
    padding-top: 220px;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 100;
}

#header.scrolled {
  background-color: #7E9754;
  background-color: transparent;
}

#header .container {
    padding: 20px;
    position: relative;
    z-index: 3;
}

.cloud_image_header {
    position: absolute;
    top: 0;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_menu ul {
    display: flex;
    justify-content: space-between;
    gap: 65px;
}

.nav_menu ul li a,
.language {
    font-size: 22px;
    color: var(--green);
    font-family: "PatrickHand";
}

.language {
    text-transform: uppercase;
}

.nav_menu ul li:hover a {
    cursor: pointer;
}

.logo {
    width: 160px;
}

.logo img {
    display: block;
}

.nav_menu ul li,
.footer_nav_menu ul li {
    position: relative;
}

.nav_menu ul li a {
    display: inline-block;
    text-decoration: none;
}

.nav_menu ul li::after, .language::after, .footer_nav_menu ul li::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    max-width: 170px;
    height: 70px;
    background-image: url('data:image/svg+xml;utf8,<svg width="136" height="65" viewBox="0 0 136 65" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M80.9874 1.88443C96.6719 3.03185 109.56 6.70215 119.32 12.758C126.255 17.0603 131.25 22.976 133.087 28.9451C135.093 35.4733 133.22 41.5885 127.743 46.2149C124.049 49.3361 119.227 51.4428 113.843 53.0284C108.459 54.614 102.559 55.6665 96.7215 56.7073H96.7208C95.5604 56.915 94.4016 57.1208 93.2536 57.3315C90.2135 57.8873 87.1272 58.5039 84.1472 59.099C77.4849 60.4295 70.6332 61.7966 63.5843 62.6511L62.1717 62.8149C55.9688 63.5035 49.878 63.6358 44.0725 63.2111L44.0705 63.211C29.3165 62.1316 17.4825 57.5545 9.78589 50.0466C5.49084 45.8558 2.88241 41.6353 1.92175 37.508C0.964492 33.3948 1.63131 29.3236 3.98044 25.3843C7.48908 19.5014 14.6337 14.0738 24.7358 9.73935C33.8417 5.83104 44.6487 3.1381 55.1562 2.15876C56.244 2.05786 57.3418 1.96922 58.4182 1.89795C66.3337 1.37123 73.9284 1.36804 80.9874 1.88443Z" stroke="%23064A42" stroke-width="3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.breadcumbs_wrapper {
    margin-bottom: 80px;
}

.breadcrumbs p {
    color: #818181;
    cursor: pointer;
    transition: all 0.3s;
}

.breadcrumbs p:hover {
    color: #25695F;
}

p.breadcrumb_active {
    color: #25695F;
    cursor: default;
}

.nav_menu ul li:hover::after,
.footer_nav_menu ul li:hover::after {
    opacity: 1;
}

.languages {
    display: flex;
    align-items: center;
    position: relative;
}

.arrow_languages {
    padding: 0px 10px 6px 6px;
}

.another_languages {
    padding-top: 30px;
    padding-right: 30px;
    display: flex;
    position: absolute;
    display: none;
    bottom: -130%;
    /* left: 30%; */
    /* transform: translateX(-50%); */
}


.languages:hover .another_languages {
    display: flex;
    position: absolute;
}

.another_languages .language::after {
    content: '';
    position: absolute;
    bottom: -23px;
    left: 30%;
    transform: translateX(-50%);
    width: 140%;
    max-width: 160px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg width="136" height="65" viewBox="0 0 136 65" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M80.9874 1.88443C96.6719 3.03185 109.56 6.70215 119.32 12.758C126.255 17.0603 131.25 22.976 133.087 28.9451C135.093 35.4733 133.22 41.5885 127.743 46.2149C124.049 49.3361 119.227 51.4428 113.843 53.0284C108.459 54.614 102.559 55.6665 96.7215 56.7073H96.7208C95.5604 56.915 94.4016 57.1208 93.2536 57.3315C90.2135 57.8873 87.1272 58.5039 84.1472 59.099C77.4849 60.4295 70.6332 61.7966 63.5843 62.6511L62.1717 62.8149C55.9688 63.5035 49.878 63.6358 44.0725 63.2111L44.0705 63.211C29.3165 62.1316 17.4825 57.5545 9.78589 50.0466C5.49084 45.8558 2.88241 41.6353 1.92175 37.508C0.964492 33.3948 1.63131 29.3236 3.98044 25.3843C7.48908 19.5014 14.6337 14.0738 24.7358 9.73935C33.8417 5.83104 44.6487 3.1381 55.1562 2.15876C56.244 2.05786 57.3418 1.96922 58.4182 1.89795C66.3337 1.37123 73.9284 1.36804 80.9874 1.88443Z" stroke="%23064A42" stroke-width="3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.languages_header_mob_wrapper::after {
    content: '';
    position: absolute;
    bottom: -23px;
    left: 30%;
    transform: translateX(-50%);
    width: 140%;
    max-width: 160px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg width="136" height="65" viewBox="0 0 136 65" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M80.9874 1.88443C96.6719 3.03185 109.56 6.70215 119.32 12.758C126.255 17.0603 131.25 22.976 133.087 28.9451C135.093 35.4733 133.22 41.5885 127.743 46.2149C124.049 49.3361 119.227 51.4428 113.843 53.0284C108.459 54.614 102.559 55.6665 96.7215 56.7073H96.7208C95.5604 56.915 94.4016 57.1208 93.2536 57.3315C90.2135 57.8873 87.1272 58.5039 84.1472 59.099C77.4849 60.4295 70.6332 61.7966 63.5843 62.6511L62.1717 62.8149C55.9688 63.5035 49.878 63.6358 44.0725 63.2111L44.0705 63.211C29.3165 62.1316 17.4825 57.5545 9.78589 50.0466C5.49084 45.8558 2.88241 41.6353 1.92175 37.508C0.964492 33.3948 1.63131 29.3236 3.98044 25.3843C7.48908 19.5014 14.6337 14.0738 24.7358 9.73935C33.8417 5.83104 44.6487 3.1381 55.1562 2.15876C56.244 2.05786 57.3418 1.96922 58.4182 1.89795C66.3337 1.37123 73.9284 1.36804 80.9874 1.88443Z" stroke="%23064A42" stroke-width="3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.language:hover::after {
    opacity: 1;
    cursor: pointer;
}

.header_mob {
  display: none;
}

.header_mob_menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header_mob_menu a {
    font-size: 22px;
    color: #25695F;
    opacity: 1;
    margin: 0 auto;
}

.image_background_burger {
    position: absolute;
    top: -10%;
}

.languages_header_mob_wrapper {
    display: flex;
    gap: 16px;
}

footer {
    position: relative;
    height: 1082px;
    margin-top: 140px;
}

.container_footer {
    width: 528px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo_footer {
    width: 260px;
    height: 260px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.footer_nav_menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 65px;
    justify-content: space-evenly;
}

.footer_nav_menu ul li a {
    font-size: 24px;
    color: #25695F;
    font-family: "PatrickHand";
}

.footer_nav_menu {
    margin-bottom: 64px;
}

.social_block {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.copyright {
    color: #404040;
    text-align: center;
    font-size: 16px;
}

.video_wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

.video_wrapper video {
    width: 100%;
    height: 100%;
    display: none;
}

.social_block a svg {
    width: 50px;
    height: 50px;
}

.social_block a svg rect {
    transition: all 0.3s;
}

.social_block a:hover svg rect {
    fill: #CB8B8F;
}

.slider_block {
    width: 100%;
    position: relative;
}

.mainSlider {
    width: 100%;
    height: 100vh;
}

.mainSlider .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.mainSlider .swiper-button-prev,
.mainSlider .swiper-button-next {
    color: white;
}

.mainSlider .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.mainSlider .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

.mainSlider .swiper-pagination {
    bottom: 130px;
    z-index: 2;
}

.video_wrapper_slider {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.video_wrapper_slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainSlider .swiper-button-prev:after,
.mainSlider .swiper-button-next:after {
    content: '';
}

.mainSlider .swiper-button-prev,
.mainSlider .swiper-button-next {
    width: 63px;
    height: 67px;
}


.mainSlider .swiper-button-prev {
   left: 18.7%;
}

.mainSlider .swiper-button-next {
    right: 18.7%;
}

.mainSlider .swiper-button-prev:hover svg path:first-child ,
.mainSlider .swiper-button-next:hover svg path:first-child {
    transition: all 0.3s;
    fill: #397D73;
}

.mainSlider .swiper-button-prev:hover svg path:last-child ,
.mainSlider .swiper-button-next:hover svg path:last-child {
    transition: all 0.3s;
    fill: #CB8B8F;
}

.wrapper_slide_title {
    z-index: 1;
}

.title_slide {
    font-family: "GummyBears";
    font-size: 65px;
    font-weight: 400;
    text-align: center;
    color: #064A42;
}

.subtitle_slide {
    font-family: "PatrickHand";
    font-weight: 400;
    text-align: center;
    font-size: 26px;
    color: #064A42;
}

.wrapper_slide_title {
    z-index: 1;
    width: 550px;
    position: absolute;
    right: 18%;
    top: 20%;
}

.end_block_slider {
    position: absolute;
    width: 100%;
    height: 424px;
}

.end_block_slider {
    position: absolute;
    width: 100%;
    height: 424px;
    z-index: 1;
    bottom: -28%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.end_block_slider img {
    width: 1920px;
}

.btn_feedback_wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.btn_feedback {
    font-family: "PatrickHand";
    text-transform: uppercase;
    font-size: 22px;
    color: #FFEAEC;
    position: absolute;
    bottom: 0%;
    background-color: #B7777B;
    padding: 22px 32px;
    border-radius: 36px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_feedback:hover {
    color: #FFEAEC;
    background-color: #CB8B8F;
}

section.vitajte {
    margin-top: 210px;
}

.wrapper_content_section_vitajte {
    display: flex;
}

.content_text_section_vitajte {
    width: calc(60% - 20px);
}

.content_image_section_vitajte {
    width: calc(40% - 20px);
}

.title_section_vitajte {
    font-family: "DynaPuff";
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
    color: #13534A;
    margin-bottom: 24px;
}

.subtitle_section_vitajte {
    text-align: center;
    font-size: 24px;
    font-family: "PatrickHand";
    color: #13534A;
    margin-bottom: 24px;
}

.vitajte_odseku li {
    position: relative;
}

.wrapper_marker_vitajte_odseku {
    position: absolute;
    width: 34px;
    height: 38px;
}

.wrapper_text_content_vitajte_odseku {
    padding-left: 50px;
}

.marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "PatrickHand";
    text-transform: uppercase;
    font-weight: 400;
}

.title_odseku {
    font-size: 24px;
    font-family: "PatrickHand";
    font-weight: 400;
    color: #25695F;
    margin-bottom: 8px;
}

.text_adseku {
    color: #404040;
    margin-bottom: 18px;
}

section.pokyny_v_klube {
    margin-top: 80px;
    position: relative;
}

.title_section_pokyny_v_klube {
    font-family: "DynaPuff";
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
    color: #13534A;
    margin-bottom: 24px;
}

.subtitle_section_pokyny_v_klube {
    font-size: 20px;
    text-align: center;
    color: #404040;
    margin-bottom: 16px;
}

.workTabs_nav.choose-buttons.tabs__nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tabs__nav {
    margin-bottom: 34px;
}

.tabs__link {
    border-radius: 16px;
    border: 1px solid #25695F;
    color: #25695F;
    font-size: 20px;
    padding: 12px 24px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.tabs__link_active {
    background-color: #25695F;
    border: 1px solid #25695F;
    color: #EFFFFD;
}

.tabs__content {
    margin-bottom: 40px;
}

.tabs__pane {
    display: none;
}

.tabs__pane_show {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cart_pokyny_v_klube {
    /* width: calc(25% - 20px); */
    position: relative;
    height: 445px;
}

.title_cart_pokyny_v_klube {
    font-family: "PatrickHand";
    font-size: 24px;
    text-align: center;
    color: #25695F;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    top: -75px;
    line-height: 100%;
}

.text_cart_pokyny_v_klube {
    color: #404040;
    text-align: center;
    position: relative;
    z-index: 2;
    top: -65px;
    padding: 0 10px;
}

.back_image_content {
    position: absolute;
    bottom: 4%;
    z-index: 1;
}

.nas_blog_back_image_content {
    position: absolute;
    bottom: 4%;
    z-index: 1;
}

.nas_blog_content_cart_pokyny_v_klube {
    height: 120px;
    position: relative;
}


a.btn_cart_pokyny_v_klube {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    background: #25695F;
    width: 100%;
    padding: 18px 0;
    text-align: center;
    border-radius: 18px;
    text-transform: uppercase;
}

section.btn_more_section {
    margin-top: 0px;
}

.btn_more_wrapper {
    display: flex;
    justify-content: center;
}

a.btn_more_a {
    color: #25695F;
    font-size: 20px;
    border: 1px solid #25695F;
    padding: 12px 22px;
    border-radius: 18px;
    transition: all 0.3s;
    text-transform: uppercase;
}

a.btn_more_a:hover {
    color: #EFFFFD;
    background-color: #25695F;
}

section.skúsení_učitelia {
    margin-top: 120px;
    position: relative;
}

.title_section_ucitelia {
    font-family: 'DynaPuff';
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
    color: #13534A;
    margin-bottom: 24px;
    z-index: 1;
}

.subtitle_section_ucitelia {
    font-size: 20px;
    text-align: center;
    color: #404040;
    margin-bottom: 16px;
    width: 41%;
    margin: 0 auto;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}

a.btn_cart_ucitelia {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    background: #25695F;
    width: 100%;
    padding: 18px 0;
    text-align: center;
    border-radius: 18px;
    cursor: pointer;
    text-transform: uppercase;
}

a.btn_cart_ucitelia:hover {
    background: #397D73;
}

section.skГєsenГ­_uДЌitelia {
    margin-top: 120px;
}

.wrapper_cart_ucitelia {
    display: flex;
    gap: 20px;
}

a.btn_cart_pokyny_v_klube:hover {
    background: #397D73;

}

.cart_block {
    width: 100%;
    position: relative;
}

.foto_ucitelia img {
    border-radius: 32px;
}

.image_background_ucitelia {
    position: absolute;
    bottom: -4%;
    z-index: 1;
}

.name_ucitelia {
    color: #25695F;
    position: relative;
    z-index: 2;
    text-align: center;
    top: -22px;
    font-size: 26px;
    font-weight: 400;
    font-family: "PatrickHand";
}

.plachka {
    padding: 6px 12px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 16px;
}

.wrapper_plachka {
    display: flex;
    top: 20px;
    z-index: 1;
    position: absolute;
    gap: 10px;
    left: 20px;
    flex-wrap: wrap;
    padding: 0 10px 0 0;
}

section.narodeniny {
    margin-top: 140px;
    position: relative;
}

.a_more_info_narodeniny {
    font-size: 22px;
    color: #FFEAEC;
    background-color: #B7777B;
    padding: 22px 32px;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.a_more_info_narodeniny:hover {
    color: #FFEAEC;
    background-color: #CB8B8F;
}

.title_section_narodeniny {
    font-family: 'DynaPuff';
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
    color: #13534A;
    margin-bottom: 24px;
}

.subtitle_section_narodeniny {
    font-size: 20px;
    text-align: center;
    color: #404040;
    width: 650px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.narodeniny_content_wrapper {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.content_title_narodeniny {
    width: calc(50% - 20px);
}

.image_block_narodeniny {
    width: calc(50% - 20px);
}

.more_info_narodeniny_wrapper {
    height: 69px;
    display: flex;
}

section.nas_blog {
    margin-top: 120px;
    position: relative;
}


.image_cart__pokyny_v_klube img {
    border-radius: 36px;
    transition: all 0.3s;
}

.image_cart__pokyny_v_klube {
    overflow: hidden;
    border-radius: 36px;
}

.cart_pokyny_v_klube:hover .image_cart__pokyny_v_klube img {
     scale: 1.1;
     transition: all 0.3s;
}

.text_cart_pokyny_v_klube p {
    color: #404040;
    margin-bottom: 5px;
}

.date_card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    z-index: 2;
    color: #404040;
}

.btn_more_wrapper_nas_blog {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.fotogaleria {
    overflow: hidden;
    /* height: 505px; */
}

.wrapper_title_and_button_slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.gallery_title {
    text-align: center;
    font-size: 50px;
    color: #13534A;
    margin-bottom: 24px;
    font-family: 'DynaPuff';
    text-transform: uppercase;
}

section.fotogaleria_section {
    margin-top: 120px;
}

.fotogaleria-swiper-button-prev.main-slider-prev,
.fotogaleria-swiper-button-next.main-slider-next {
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}
    
.fotogaleria-swiper-button-prev.main-slider-prev:hover svg path:first-child, 
.fotogaleria-swiper-button-next.main-slider-next:hover svg path:first-child {
    transition: all 0.3s;
    fill: #397D73;
}

.fotogaleria-swiper-button-prev.main-slider-prev:hover svg path:last-child, 
.fotogaleria-swiper-button-next.main-slider-next:hover svg path:last-child {
    transition: all 0.3s;
    fill: #CB8B8F;
}

.fotogaleria-wrapper{
    display: flex;
    align-items: center;
    padding: 30px 0;
    height: 500px;
}

.fotogaleria_slide {
    position: relative;
  height: 320px;
  display: block;
  padding: 0;
  transition: all 0.3s;
}

.fotogaleria_slide .fotogaleria_slide_img_wrapper {
  height: 100%;
  border-radius: 60px;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  transform: perspective(800px) rotateY(22deg) scale(.96) rotate(-4deg);
  background-size: cover;
  background-repeat: no-repeat;
}

.fotogaleria_slide .fotogaleria_slide_img_wrapper img{
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiper-slide.fotogaleria_slide.swiper-slide-active .fotogaleria_slide_img_wrapper {
  transform: perspective(800px) rotateY(-18deg) scale(.96) rotate(2deg);
  filter: brightness(.95);
}

.swiper-slide.fotogaleria_slide.swiper-slide-next .fotogaleria_slide_img_wrapper {
    transform: perspective(900px) rotateY(8deg) scale(.98) rotate(0deg);
    filter: brightness(.95);
}

.swiper-slide.fotogaleria_slide.swiper-slide-next {
    transform: perspective(800px) rotateY(18deg) scale(.96) rotate(-3deg);
    padding: 0 0 0 60px;
}

.swiper-slide-next + .swiper-slide.fotogaleria_slide {
    height: 480px;
    width: 320px !important;
}

.swiper-slide-next + .swiper-slide.fotogaleria_slide .fotogaleria_slide_img_wrapper {
    transform: perspective(800px) rotateY(5deg) scale(.96) rotateX(-10deg);
    filter: brightness(.95);
}

.swiper-slide-next + .swiper-slide.fotogaleria_slide + .swiper-slide.fotogaleria_slide {
    padding: 10px 0 0 50px;
}


.section_form_submit {
    padding-top: 120px;
    height: 600px;
    position: relative;
}

.block_mail_image {
    position: absolute;
    top: 0;
    right: -10%;
    width: 454px;
    height: 485px;
}

.title_form_submit {
    font-family: 'DynaPuff';
    text-transform: uppercase;
    font-size: 32px;
    color: #13534A;
    margin-bottom: 24px;
    padding: 60px 0 0 60px;
}

.wrapper_form_submit {
    position: relative;
    z-index: 3;
}

form.form {
    width: 64%;
    padding: 0 0 0 60px;
}

.form__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__left label input {
    text-transform: uppercase;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
}

.block_mail_image {
    position: absolute;
}

.block_mail_background_image {
    top: 0;
    z-index: -1;
    position: absolute;
}

.form__left label input {
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    border: 1px solid transparent;
    color: #AEAEAE;
}

.form__left label input[type="text"] {
    color: #AEAEAE;
}

input:focus-visible {
    outline: transparent 1px;
    border: 1px solid transparent !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: #AEAEAE !important;
    background-color: white;
    color: #AEAEAE !important;
}

.form_checkbox {
    padding-top: 30px;
}


button.form_submit {
    background: #B7777B;
    color: #FFEAEC;
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
}

button.form_submit:hover {
    background: #CB8B8F;
    color: #FFEAEC;
}

.block_mail_image_mob {
    display: none;
}

.slider_pokyny_v_klube {
    width: 100%;
    overflow: hidden;
    height: 580px;
}

.swiper-wrapper {
    display: flex;
}

.slider_pokyny_v_klube {
    cursor: grab;
}

.slider_pokyny_v_klube:active {
    cursor: grabbing;
}

.slider-nav-container {
    bottom: 50px;
    position: relative;
}

.slider-nav-container .swiper-button-prev,
.slider-nav-container .swiper-button-next {
    width: 45px;
}

.ucitelia_slider {
    height: 500px;
}

.foto_ucitelia img {
    border-radius: 32px;
    max-height: 368px;
    object-fit: cover;
}

.ucitelia_slider {
    height: 570px;
}

.nas_blog_slide {
    height: 420px;
}

.nas_blog_slide .cart_pokyny_v_klube {
    height: 420px;
}

.content_cart_pokyny_v_klube {
    height: 120px;
}

.title_cart_pokyny_v_klube {
    padding: 0 15px;
}

.nas_blog_slider {
    height: 500px;
}

.video_wrapper img {
    display: none;
}

.block_top_list {
    position: absolute;
}

.list_top_left {
    left: 0;
}

.list_top_right  {
    right: 0;
}

.list_top_left, .list_top_right {
    width: 30vw;
    position: absolute;
    height: 50vw;
    z-index: 1;
    top: 38%;
}

.swiper-button-prev.main-slider-prev,
.main-slider-next.main-slider-next {
    z-index: 3;
    width: 63px;
    height: 67px;
}

.main-slider-prev.main-slider-prev:hover svg path:first-child, 
.main-slider-next.main-slider-next:hover svg path:first-child {
    transition: all 0.3s;
    fill: #397D73;
}

.main-slider-prev.main-slider-prev:hover svg path:last-child, 
.main-slider-next.main-slider-next:hover svg path:last-child {
    transition: all 0.3s;
    fill: #CB8B8F;
}

.swiper-button-prev.main-slider-prev {
    left: 0%;
}

.swiper-button-next.main-slider-next {
    right: 0%;
}

.list_top_left,
.list_top_right {
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  will-change: left, right;
}

.list_default_left{
    top: -62%;
}

.claudes_right {
    position: absolute;
    right: -40px;
    width: 54vw;
    height: 31vw;
    top: 8%;
    transform: rotate(-8deg);
    z-index: 0;
}


.claudes_left {
    position: absolute;
    left: -40px;
    width: 54vw;
    height: 25vw;
    top: 8%;
    transform: rotate(9deg);
    z-index: 0;
}

img.cloud_narode {
    width: 768px;
    height: 511px;
    position: absolute;
    top: 0;
}

.cloud_narode {
    width: 40vw;
    height: 26vw;
    position: absolute;
    top: 0;
    left: -10%;
}

.little_cloud_narode {
    width: 19vw;
    height: 12vw;
    position: absolute;
    bottom: -60%;
    left: 18%;
}

.swiper-button-next.main-slider-next {
        right: 20%;
    }
    .swiper-button-prev.main-slider-prev {
        left: 20%;
    }

.animate_cloud_left,
.animate_little_cloud_left {
    transform: translateX(0);
    will-change: transform;
}

.animate_cloud_left.active {
    animation: moveCloudRight 1.2s ease forwards;
}

.animate_little_cloud_left.active {
    animation: moveCloudRight 0.8s ease forwards;
}

header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

header.header-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.desk_img_footer {
    display: block !important;
}
.nas_blog_list {
    z-index: 0;
}

img.cloud_form_feedback {
    position: absolute;
    z-index: 0;
    width: 768px;
    height: 511px;
    top: -8%;
}

.btn_feedback_intro {
    font-family: "PatrickHand";
    text-transform: uppercase;
    font-size: 22px;
    color: #FFEAEC;
    position: absolute;
    bottom: 0%;
    background-color: #B7777B;
    padding: 22px 32px;
    border-radius: 36px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;  
}

.btn_feedback_intro:hover {
    color: #FFEAEC;
    background-color: #CB8B8F;
}

.btn_feedback_intro_wrapper {
    display: flex;
    position: relative;
    height: 72px;
}

.herecke_umenie_content {
    width: calc(50% - 20px);
}

.herecke_umenie_image {
    width: calc(40% - 20px);
}

.herecke_umenie_content {
    display: flex;
    flex-direction: column;
}

.herecke_umenie_content_wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.main_intro_title {
    font-family: 'DynaPuff';
    font-size: 50px;
    color: #13534A;
    margin-bottom: 24px;
}

.herecke_umenie_content p {
    color: #404040;
    margin-bottom: 32px;
}

.na_nasich_hodinach {
    margin-top: 80px;
}

.h2_title_intro {
    font-family: 'DynaPuff';
    text-align: center;
    font-size: 50px;
    color: #13534A;
    margin-bottom: 24px;
}

.cart_nasich_hodinach {
    width: calc(50% - 20px);
    display: flex;
    background: #F6EDE4;
    border-radius: 60px;
    box-shadow: 0px 4px 4px 0px #60606026;
    transform: perspective(800px) rotateY(-15deg) scale(.99) rotate(0deg);
    filter: brightness(.95);
    padding: 25px 0px 0px 25px;
    margin: 0 0 50px 0;
}


.content_cart_nasich_hodinach h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    color: #25695F;
}

.content_cart_nasich_hodinach p {
    text-align: center;
    font-size: 18px;
    color: #404040;
    padding-right: 10px;
}

.wrapper_cart_nasich_hodinach {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
}

.content_cart_nasich_hodinach {
    width: calc(70% - 10px);
}

.image_cart_nasich_hodinach {
    width: calc(30% - 10px);
    position: relative;
}
.image_cart_nasich_hodinah_child {
    width: 100%;
    padding-top: 100%;
}

.image_cart_nasich_hodinah_child_image {
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 155%;
}

.image_cart_nasich_hodinah_child_image img {
    display: block;
    width: 100%;
}

.child_image_mobile {
    display: none !important;
}

.two_block_intro_title,
.two_block_intro_title p {
    text-align: center;
}

section.herecke_umenie {
    position: relative;
}

.herecke_umenie_two {
    margin-top: 60px;
}

.list_top_lesson {
    top: -38%;
}

.cloud_lesson_block {
    display: none;
}

.section_form_submit_lesson {
    height: 740px;
}

.title_nas_blog {
    position: relative;
    z-index: 4;
}

.wrapper_ceny_cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cena_card {
    width: calc(25% - 20px);
    background: #F6EDE4;
    border-radius: 60px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: perspective(800px) rotateY(-15deg) scale(.99) rotate(0deg);
}

.title_cena_card {
    color: #25695F;
    font-size: 28px;
    margin-bottom: 10px;
}

.lesson_period {
    font-size: 20px;
    color: #404040;
    margin-bottom: 18px;
}

.price_cena_card {
    color: #25695F;
    font-size: 28px;
}

@keyframes moveCloudRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(10%);
    }
}

@media (max-width: 1600px) {
    header {
        padding-top: 15px;
    }
    .nav_menu ul li a, .language {
        font-size: 1.72vw;
    }
    .container {
        padding: 0 20px;
    }
    .nav_menu ul {
        gap: 2vw;
    }
    .cart_pokyny_v_klube {
        height: 27vw;
    }
    footer {
        height: 55vw;
    }
    .list_top_left, .list_top_right {
        top: 48%;
    }
    .end_block_slider {
        height: 28vw;
    }
    .list_default_left {
        top: -55%;
    }
    .list_top_lesson {
        top: 0%;
    }
}
@media (max-width: 1550px) {
    .cart_pokyny_v_klube {
        height: 28vw;
    }
}
@media (max-width: 1500px) {
    .cart_pokyny_v_klube {
        height: 29vw;
    }
    .logo_footer {
        margin-bottom: 40px;
    }
}
@media (max-width: 1450px) {
    .cart_pokyny_v_klube {
        height: 29vw;
    }
    .nav_menu ul li a, .language {
        font-size: 1.92vw;
    }
    .block_mail_image {
        top: 10%;
        right: -5%;
        width: 404px;
        height: 435px;
    }
}
@media (max-width: 1400px) {
    .cart_pokyny_v_klube {
        height: 30vw;
    }
}
@media (max-width: 1380px) {
    footer {
        margin-top: 125px;
    }
    .social_block {
        margin-bottom: 15px;
    }
    .list_top_left, .list_top_right {
        top: 50%;
    }
    .end_block_slider {
        bottom: -24%;
    }
    .list_default_left {
        top: -48%;
    }
    .swiper-button-next.main-slider-next {
        right: 10%;
    }
    .swiper-button-prev.main-slider-prev {
        left: 10%;
    }
    .list_top_lesson {
        top: 20%;
    }
    .cloud_image_header {
        width: 1380px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 1350px) {
    .cart_pokyny_v_klube {
        height: 32vw;
    }
}
@media (max-width: 1280px) {
    .cart_pokyny_v_klube {
        height: 34vw;
    }
    .block_mail_image {
        top: 30%;
        right: 0;
        width: 304px;
        height: 335px;
        max-height: 30vw;
    }
    .title_form_submit {
        font-size: 28px;
        margin-bottom: 18px;
        padding: 50px 0 0 50px;
    }
    form.form {
        padding: 0 0 0 50px;
    }
    .form__left label input {
        padding: 18px;
    }
    button.form_submit {
        padding: 16px 26px;
    }
    footer {
        margin-top: 160px;
    }
    footer {
        height: 58vw;
    }
    .end_block_slider {
        bottom: -22%;
    }
}
@media (max-width: 1200px) {
    .cart_pokyny_v_klube {
        height: 34vw;
    }
    .text_cart_pokyny_v_klube {
        font-size: 14px;
    }
    .title_cart_pokyny_v_klube {
        font-size: 22px;
    }
    a.btn_cart_pokyny_v_klube {
        font-size: 12px;
    }
    .slider_pokyny_v_klube {
        height: 540px;
    }
    .title_odseku,
    .text_adseku {
        text-align: start;
    }
    .wrapper_text_content_vitajte_odseku {
        padding-left: 45px;
    }
    footer {
        height: 70vw;
    }
    .container_footer {
        width: 420px;
    }
    .narodeniny_content_wrapper {
        display: flex;
        gap: 0px;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .a_more_info_narodeniny {
        width: 100%;
        text-align: center;
    }
    .more_info_narodeniny_wrapper {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        bottom: 0;
        width: 320px;
    }
    .list_top_left, .list_top_right {
        top: 60%;
    }
    .list_default_left {
        top: -42%;
    }
    .claudes_left {
        left: -40px;
        width: 60vw;
        height: 30vw;
        top: 10%;
    }
    .claudes_right {
        right: -40px;
        width: 60vw;
        height: 40vw;
        top: 10%;
    }
    .wrapper_cart_nasich_hodinach {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cart_nasich_hodinach {
        width: 550px;
        transform: perspective(800px) rotateY(-3deg) scale(.99) rotate(0deg);
        filter: brightness(.95);
        padding: 30px 20px 20px 20px;
        align-items: center;
    }
    .list_top_lesson {
        top: 40%;
    }
}

@media (max-width: 1199px) {
    .content_text_section_vitajte {
        width: 100%;
    }
    .content_image_section_vitajte {
        display: none;
    }
    .text_cart_pokyny_v_klube p {
        font-size: 15px;
    }
}
@media (max-width: 1187px) {
    .foto_ucitelia img {
        border-radius: 32px;
        max-height: 31vw;
        object-fit: cover;
    }
    .ucitelia_slider {
        height: 48vw;
    }
    .nas_blog_slide_text {
        top: -50px;
    }
    .nas_blog_slide_title {
        font-size: 20px;
        top: -60px;
    }
    .nas_blog_slide_text p {
        font-size: 14px;
    }
    .date_card {
        font-size: 14px;
    }
}
@media (max-width: 1163px) {
    .herecke_umenie_content {
        width: calc(60% - 20px);
    }
}
@media (max-width: 1150px) {
    .slider_pokyny_v_klube {
        height: 500px;
    }
}
@media (max-width: 1142px) {
    .foto_ucitelia img {
        max-height: 31vw;
    }
}
@media (max-width: 1132px) {
    .foto_ucitelia img {
        max-height: 30vw;
    }
}
@media (max-width: 1100px) {
    .slider_pokyny_v_klube {
        height: 480px;
    }
    .end_block_slider {
        bottom: -18%;
    }
}
@media (max-width: 1050px) {
    .slider_pokyny_v_klube {
        height: 460px;
    }
    .subtitle_section_ucitelia {
         width: 60%;
    }
    .nas_blog_slide_title {
        font-size: 18px;
        top: -55px;
    }
    .nas_blog_slide_text p {
        font-size: 12px;
    }
    .date_card {
        font-size: 12px;
    }
    .content_title_narodeniny {
        width: 70%;
    }
    .image_block_narodeniny {
        width: 80%;
    }
}
@media (max-width: 1024px) {
    .nav_menu {
        display: none;
    }

    .header_mob {
        display: block;
    }

    .header_burger {
        display: flex;
        flex-direction: column;
        width: 40px;
        height: 33px;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        position: relative;
        z-index: 1;
    }

    .header_burger span {
        width: 100%;
        height: 2px;
        background-color: rgba(255, 255, 255, 1);
        border-radius: 2px;
        transition: all 0.5s;
        z-index: 1;
    }

    .header_burger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(6px) translatex(3px);
    }

    .header_burger.active span:nth-child(2) {
        display: none;
    }

    .header_burger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-5px) translatex(2px);
    }

    .header_mob_menu {
        width: 100%;
        height: 370px;
        border-radius: 0 0 16px 16px;
        position: absolute;
        z-index: 10;
        transition: all 0.5s;
        right: 0px;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        overflow: hidden;
        opacity: 0;
        justify-content: center;
        top: 92.59px;
    }

    .header_mob_menu.active {
        will-change: backdrop-filter;
        transform: translateX(0);
        overflow: visible;
        opacity: .9;
        z-index: 0;
        z-index: 101 !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .header_mob_img {
        width: 100%;
        height: 150px;
        margin-top: 20px;
        margin-bottom: 90px;
    }

    .header_mob_link {
        font-family: "notoReg", sans-serif;
        font-size: 24px;
        margin-bottom: 16px;
        margin-left: 16px;
        transition: all .5s;
    }

    .header_mob_link:hover {
        color: var(--red);
    }

    .header_mob_soc {
        display: flex;
        gap: 5px;
        margin-left: 16px;
        margin-top: 20px;
    }

    .header_mob_soc a {
        width: 32px;
        height: 32px;
    }

    .header_mob_btn {
        font-family: "notoSemi", sans-serif;
        font-size: 16px;
        margin: 0 16px 16px;
        margin-top: auto;
        border-radius: 10px;
        color: var(--white);
        background-color: var(--red);
        padding: 10px;
        text-align: center;
    }
    .nav_menu ul li a, .language {
        font-size: 22px;
    }
    .container_footer {
        width: 36vw;
    }
    .footer_nav_menu ul {
        gap: 20px;
    }
    .container_footer {
        bottom: 15%;
    }
    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0px 0 0 0;
        transition: all 0.3s ease;
        z-index: 100;
    }
    .wrapper_slide_title {
        z-index: 1;
        width: 100%;
        position: absolute;
        right: 0;
        top: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    h2.subtitle_slide {
        width: 550px;
    }
    .block_mail_background_image {
        display: none;
    }
    .wrapper_form_submit {
        position: relative;
        background-color: #f6ede4;
        border-radius: 30px;
    }
    form.form {
        padding: 0 0 50px 50px;
    }
    .swiper-slide.fotogaleria_slide.swiper-slide-next {
        padding: 0 0 0 20px;
    }
    .end_block_slider {
        height: 300px;
    }
    .slider_pokyny_v_klube {
        height: 475px;
    }
    header#header .container {
        padding: 0 20px 0 0;
    }
    
}

@media (max-width: 1023px) {
    .slider_pokyny_v_klube {
        height: 58vw;
    }
    .cart_pokyny_v_klube {
        height: 46vw;
    }
    .plachka {
        font-size: 12px;
    }
    .name_ucitelia {
        top: -22px;
        font-size: 22px;
    }
    .image_background_ucitelia {
        bottom: -2%;
    }
    .text_cart_pokyny_v_klube p {
        font-size: 16px;
    }
    .title_cart_pokyny_v_klube {
        top: -90px;
    }
    .text_cart_pokyny_v_klube {
        top: -70px;
    }
    .title_cart_pokyny_v_klube {
        font-size: 22px;
    }
    .date_card {
        font-size: 16px;
    }
    .video_wrapper_slider video {
        display: none;
    }
    .mainSlider {
        width: 100%;
        height: 85vw;
    }
    .mainSlider .swiper-slide {
        flex-direction: column;
    }
    .wrapper_slide_title {
        top: 0%;
        position: relative;
    }
    .slider_pokyny_v_klube {
        height: 60vw;
    }
    .list_default_left {
        top: -32%;
    }
    .herecke_umenie_image, .herecke_umenie_content {
        width: calc(60% - 20px);
    }
    .herecke_umenie_image {
        width: calc(40% - 20px);
    }
    .btn_feedback_intro {
        font-size: 20px;
        padding: 20px 24px;
    }
    .cloud_image_header {
        width: 120vw;
    }
    .cena_card {
        width: calc(50% - 20px);
        margin-bottom: 30px;
    }
}
@media (max-width: 950px) {
    .title_cart_pokyny_v_klube {
        top: -75px;
    }
    .content_title_narodeniny {
        width: 100%;
    }
    .image_block_narodeniny {
        width: 100%;
    }
    .mainSlider {
        height: 92vw;
    }
}
@media (max-width: 920px) {
    .cena_card {
        width: calc(50% - 20px);
        margin-bottom: 25px;
    }
}
@media (max-width: 900px) {
    .mainSlider {
        height: 100vw;
    }
}
@media (max-width: 870px) {
    .title_cart_pokyny_v_klube {
        font-size: 18px;
    }
    .text_cart_pokyny_v_klube p {
        font-size: 12px;
    }
    .date_card {
        font-size: 12px;
    }
    .mainSlider .swiper-button-next {
        right: 14.7%;
        top: 60%;
    }
    .mainSlider .swiper-button-prev {
        left: 14.7%;
        top: 60%;
    }

}
@media (max-width: 859px) {
    .ucitelia_slider {
        height: 70vw;
    }
    .foto_ucitelia img {
        max-height: 45vw;
    }
    .plachka {
        font-size: 16px;
    }
    .name_ucitelia {
        top: -22px;
        font-size: 24px;
    }
    a.btn_cart_ucitelia {
        font-size: 16px;
    }
    .image_background_ucitelia {
        bottom: -2%;
    }
    .title_cart_pokyny_v_klube {
        top: -66px;
    }
    .text_cart_pokyny_v_klube {
        top: -60px;
    }
    .nas_blog_slide_title {
        top: -58px;
    }
    .nas_blog_slide_text {
        top: -40px;
    }
    .swiper-button-prev.main-slider-prev {
        left: 10%;
    }
    .swiper-button-next.main-slider-next {
        right: 10%;
    }
    .pokyny_v_klube_prev {
        width: 45px !important;
        left: 0% !important;
    }
    .pokyny_v_klube_next {
        width: 45px !important;
        right: 0% !important;
    }
    .main_intro_title {
        font-size: 36px;
    }
}
@media (max-width: 800px) {
    .container_footer {
        bottom: -35%;
    }
    .footer_nav_menu ul li a {
        font-size: 20px;
    }
    .container_footer {
        bottom: 25%;
    }
    .title_cart_pokyny_v_klube {
        top: -70px;
    }
    .nas_blog_slide_title {
        top: -45px;
    }
    .mainSlider {
        height: 110vw;
    }
}
@media (max-width: 768px) {
    .footer_nav_menu {
        margin-bottom: 30px;
    }
    .social_block {
        margin-bottom: 30px;
    } 
    .container_footer {
        min-width: 304px;
    }
    .block_mail_image {
        right: -20px;
    }
    .cart_pokyny_v_klube {
        height: 45vw;
    }
    section.narodeniny {
        margin-top: 70px;
    }
    .mainSlider .swiper-button-next {
        right: 8%;
    }
    .mainSlider .swiper-button-prev {
        left: 8%;
    }
    .mainSlider {
        height: 120vw;
    }
    .list_top_left, .list_top_right {
        top: 58%;
        width: 50vw;
        height: 92vw;
    }
    .list_default_left {
        top: -48%;
        width: 40vw;
        height: 76vw;
    }
    .claudes_left,
    .claudes_right {
        top: 15%;
    }
    .h2_title_intro {
        font-size: 36px;
    }
    .list_top_lesson {
        top: 0%;
    }
    .cloud_image_header {
        width: 200vw;
    }
    .cena_card {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .title_form_submit {
        padding: 50px 25px 0 25px;
    }
    form.form {
        padding: 0 0 40px 25px;
    }
    .slider_pokyny_v_klube {
        height: 84vw;
    }
    .cart_pokyny_v_klube {
        height: 67vw;
    }
    .workTabs_nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 10px 0;
        scroll-behavior: smooth;
        
        /* Скрываем скроллбар, но оставляем функциональность */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE и Edge */
        justify-content: flex-start !important;
    }

    /* Скрываем скроллбар для Chrome/Safari/Opera */
    .workTabs_nav::-webkit-scrollbar {
        display: none;
    }

    .workTabs_nav .example-btn {
        flex: 0 0 auto;
    }
    .title_slide {
        font-size: 50px;
    }
    .title_section_vitajte,
    .gallery_title,
    .title_section_narodeniny,
    .title_section_ucitelia,
    .title_section_pokyny_v_klube  {
        font-size: 36px;
    }
    .plachka {
        font-size: 12px;
    }
    .name_ucitelia {
        top: -22px;
        font-size: 22px;
    }
    a.btn_cart_ucitelia {
        font-size: 15px;
    }
    .image_background_ucitelia {
        bottom: -2%;
    }
    .subtitle_section_ucitelia {
        width: 70%;
    }
    .fotogaleria-wrapper {
        height: 360px;
    }
    footer {
        margin-top: 200px;
        height: 75vw;
    }
    .logo_footer {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }
    .nas_blog_slider {
        height: 72vw;
    }
    .slider-nav-container {
        bottom: 55px;
    }
    .slider_pokyny_v_klube {
        height: 90vw;
    }
    .list_default_left {
        top: -35%;
    }
    .subtitle_section_narodeniny {
        width: 90%;
    }
}

@media (max-width: 730px) {
    .slider-nav-container {
        bottom: 40px;
    }
}
@media (max-width: 700px) {
    .block_mail_image_mob {
        display: block;
        position: absolute;
        left: 50%;
        z-index: 6;
        top: -25%;
        transform: translate(-50%);
        right: 0;
        width: 186px;
        height: 140px;
    }
    .block_mail_image {
        display: none;
    }
    form.form {
        width: 100%;
        padding: 0 25px 40px 25px;
    }
    .title_form_submit {
        padding: 70px 25px 0 25px;
    }
    .title_form_submit {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }
    footer {
        margin-top: 240px;
        height: 97vw;
    }
    .nas_blog_slider {
        height: 74vw;
    }
    .mainSlider {
        height: 130vw;
    }
    .claudes_left, .claudes_right {
        display: none;
    }
    .herecke_umenie_image, .herecke_umenie_content {
        width: 100%;
    }
    .herecke_umenie_content_wrapper {
        gap: 10px;
        flex-direction: column-reverse;
        position: relative;
    }
    .btn_feedback_intro {
        width: 100%;
        text-align: center;
    }
    .btn_feedback_intro_wrapper {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    .herecke_umenie_content p {
        margin-bottom: 0px;
    }
    .main_intro_title {
        text-align: center;
    }
    .breadcumbs_wrapper {
        margin-bottom: 20px;
    }
    .breadcrumbs {
        justify-content: flex-start;
    }
    .image_cart_nasich_hodinah_child {
        padding-top: 0;
    }
    .image_cart_nasich_hodinah_child_image {
        position: relative;
        bottom: 0px;
    }
    .cart_nasich_hodinach {
        padding: 0px 20px 20px 20px;
    }
    .list_top_lesson {
        top: 45%;
    }
    .title_nas_blog {
        bottom: 65px;
    }
    .section_ceny {
        margin-top: 80px;
    }
}
@media (max-width: 650px) {
    .nas_blog_slider {
        height: 76vw;
    }
    .mainSlider {
        height: 160vw;
    }
    .list_top_left, .list_top_right {
        top: 75%;
    }
    .list_default_left {
        top: -35%;
    }
    .slider-nav-container {
        bottom: 30px;
    }
    .list_top_lesson {
        top: 50%;
    }
    
}
@media (max-width: 600px) {
    .name_ucitelia {
        top: -16px;
        font-size: 22px;
    }
    .foto_ucitelia img {
        max-height: 44vw;
    }
    .swiper-slide.fotogaleria_slide.swiper-slide-next {
        padding: 0 0 0 20px;
    }
    .gallery_title {
        margin-bottom: 0px;
    }
    .fotogaleria-swiper-button-prev,
    .fotogaleria-swiper-button-next {
        display: none;
    }
    .wrapper_title_and_button_slider {
        justify-content: center;
    }
    footer {
        margin-top: 240px;
        height: 105vw;
    }
    .cart_nasich_hodinach {
        width: 100%;
    }
    .content_cart_nasich_hodinach {
        width: 100%;
    }
    .image_cart_nasich_hodinach {
        width: 100%;
    }
    .image_cart_nasich_hodinah_child_image {
        width: 100%;
    }
    .cart_nasich_hodinach {
        flex-direction: column;
    }
    .image_cart_nasich_hodinah_child_image img {
        display: none;
    }
    .image_cart_nasich_hodinah_child_image {
        width: 50%;
    }

    .child_image_mobile {
        display: block !important;
    }
    .image_cart_nasich_hodinah_child_image {
        left: 0px;
    }
    .image_cart_nasich_hodinah_child {
        display: flex;
        justify-content: center;
    }
    .cart_nasich_hodinach {
        padding: 20px 20px 10px 20px;
    }
    .cloud_lesson_block {
        display: block;
        position: relative;
        bottom: 125px;
    }
    img.cloud_form_feedback {
        width: 90vw;
        height: 62vw;
        top: 15%;
    }
    section.herecke_umenie {
        height: 108vw;
    }
}

@media (max-width: 580px) {
    .nas_blog_slider {
        height: 78vw;
    }
    .mainSlider .swiper-button-next {
        right: 6%;
    }
    .mainSlider .swiper-button-prev {
        left: 6%;
    }
    .mainSlider .swiper-button-prev, .mainSlider .swiper-button-next {
        width: 37px;
        height: 40px;
    }
    .title_slide {
        font-size: 40px;
    }
    .subtitle_slide {
        width: 80% !important;
        font-size: 20px;
    }
    .wrapper_slide_title {
        gap: 10px;
    }
}

@media (max-width: 549px) {
    .image_background_ucitelia {
        display: none;
    }
    .name_ucitelia {
        top: 0;
    }
    .wrapper_name_ucitelia {
        background-color: #F6EDE4;
        position: relative;
        top: -42px;
        padding: 26px;
        border-radius: 24px;
    }
    .foto_ucitelia img {
        max-height: 82vw;
    }
    .ucitelia_slider {
        height: 120vw;
    }
    a.btn_cart_ucitelia {
        bottom: -4%;
    }
    .cena_card {
        width: calc(50% - 5px);
        margin-bottom: 15px;
    }
    .wrapper_ceny_cards {
        justify-content: space-around;
    }
    .main_intro_title {
        font-size: 28px;
    }
}
@media (max-width: 539px) {
    .back_image_content {
        display: none;
    }
    .title_cart_pokyny_v_klube {
        position: unset;
    }
    .text_cart_pokyny_v_klube {
        position: unset;
    }
    .slider_pokyny_v_klube {
        height: 140vw;
    }
    .cart_pokyny_v_klube {
        height: 115vw;
    }
    .content_cart_pokyny_v_klube {
        background: #F6EDE4;
        border-radius: 64px;
        position: relative;
        top: -26%;
        padding: 10px;
        height: 42vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .title_cart_pokyny_v_klube {
        font-size: 24px;
    }
    .text_cart_pokyny_v_klube {
        font-size: 16px;
    }
    .nas_blog_slider {
        height: 138vw;
    }
    .text_cart_pokyny_v_klube p {
        font-size: 16px;
    }
    .date_card {
        font-size: 16px;
    }
    .date_card {
        position: relative;
        bottom: 0;
        text-align: center;
    }
    .slider-nav-container {
        bottom: 35px;
    }
     .list_default_left {
        top: -23%;
    }
}
@media (max-width: 500px) {
    .container_footer {
        bottom: 25%;
    }
    .title_section_pokyny_v_klube {
        font-size: 38px;
    }
    .title_odseku {
        text-align: start;
    }
    .text_adseku {
        display: none;
    }
    ul.vitajte_odseku {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .wrapper_marker_vitajte_odseku {
        width: 38px;
        height: 40px;
    }
    .wrapper_text_content_vitajte_odseku {
        padding-left: 55px;
    }
    section.vitajte {
        margin-top: 160px;
    }
    .video_wrapper video {
        display: none;
    }
    .video_wrapper img {
        display: block;
    }
    footer {
        margin-top: 200px;
        height: 105vw;
    }
    .swiper-button-prev.main-slider-prev, .main-slider-next.main-slider-next {
        width: 48px;
        height: 52px;
    }
    .list_default_left {
        top: -62%;
        top: 115%;
        z-index: 4;
        width: 40vw;
        height: 75vw;
    }
    .desk_img_footer {
        display: none !important;
    }
    .cloud_image_header {
        width: 250vw;
    }
    section.herecke_umenie {
        height: 120vw;
    }
    .cena_card {
        border-radius: 20px;
    }
    .title_cena_card {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .lesson_period {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .price_cena_card {
        font-size: 24px;
    }
}

@media (max-width: 450px) {
    .header_mob_menu {
        width: 100%;
        height: 310px;
    }
    button.form_submit {
        width: 100%;
    }
    .block_mail_image_mob {
        top: -18%;
    }
    .subtitle_section_ucitelia {
        width: 88%;
    }
    footer {
        height: 112vw;
    }
    .mainSlider {
        height: 175vw;
    }
    .btn_feedback {
        font-size: 20px;
        width: 90%;
        text-align: center;
    }
    section.vitajte {
        margin-top: 120px;
    }
    .end_block_slider {
        height: 370px;
    }
    .list_top_left, .list_top_right {
        top: 79%;
        width: 54vw;
        height: 95vw;
    }
    .list_default_left {
        top: 126%;
        z-index: 4;
        width: 28vw;
        height: 56vw;
    }
    .list_top_lesson {
        top: 56%;
    }
    section.herecke_umenie {
        height: 130vw;
    }
    .cena_card {
        margin-bottom: 15px;
    }
}
@media (max-width: 448px) {
    .section_ceny {
        margin-top: 160px;
    }
}
@media (max-width: 430px) {
    footer {
        height: 115vw;
    }
    .list_default_left {
        top: 128%;
        z-index: 4;
        width: 28vw;
        height: 56vw;
    }
    .slider-nav-container {
        bottom: 25px;
    }
    
}

@media (max-width: 420px) {
    .slider_pokyny_v_klube {
        height: 145vw;
    }
    .wrapper_name_ucitelia {
        top: -45px;
        padding: 22px;
    }
    .subtitle_slide {
        width: 90% !important;
    }
    .slider-nav-container {
        bottom: 40px;
    }
    .slider-nav-container {
        bottom: 25px;
    }
}
@media (max-width: 400px) {
    .ucitelia_slider {
        height: 125vw;
    }
    .subtitle_section_ucitelia {
        width: 100%;
    }
    footer {
        margin-top: 170px;
        height: 125vw;
    }
    .content_cart_pokyny_v_klube {
        gap: 0px;
    }
    .title_cart_pokyny_v_klube {
        font-size: 20px;
    }
    .text_cart_pokyny_v_klube p {
        font-size: 14px;
    }
    .date_card {
        font-size: 14px;
    }
    .mainSlider {
        height: 190vw;
    }
    .list_default_left {
        top: 132%;
        z-index: 4;
        width: 28vw;
        height: 56vw;
    }
    .list_top_lesson {
        top: 60%;
    }
}
@media (max-width: 380px) {
    footer {
        margin-top: 170px;
        height: 130vw;
    }
    .slider-nav-container {
        bottom: 25px;
    }
    img.cloud_form_feedback {
        top: 25%;
    }
    .cena_card {
        margin-bottom: 10px;
    }
}
@media (max-width: 360px) {
    .slider-nav-container {
        bottom: 32px;
    }
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
}