:root {
    --color-blue: #141E46;
    --color-red: #ff1d58;
    --color-pink: #FF6969;
    --color-yellow: #FFF5E0;
    --color-white: #FFF;
    --color-orange: #fcb526;

    --color-purple: #a754d4;
    --color-azure: #4acbcb;
    --color-red2: #ff4b41;
    --color-pink: #e654a4;
}
/* Helpers */
.text-center { text-align: center; } .text-right { text-align: right; }
.df { display: flex; } .aic { align-items: center; } .jcc { justify-content: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.float-right { float: right; }
.display-none { display: none; }
.centered-slogan {
    text-align: center;
    max-width: 90rem;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
    font-weight: 800;
}
*, *::after, *::before { box-sizing: border-box; }

/* 1rem = 10px*/
html { font-size: 62.5%; }  
body {
/*    font-family: 'Montserrat', sans-serif;*/
    font-family: 'Nunito', sans-serif;
	font-size: 1.4rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    position: relative;
    visibility: visible;
    color: var(--color-blue);
/*    overflow-x: hidden;*/
}
a { text-decoration: none; }
p { font-size: inherit; }
.container {
    margin: 0 auto;
    max-width: 140rem;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}
 h1, h2, h3, h4, h5, h6 { 
    font-family: 'Nunito', sans-serif;
    color: var(--color-blue); 
}
h2 {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    margin: 0rem auto 3rem;
}
h3 {
    font-weight: 900;
    font-size: 1.6rem;
}
.btn {
    display: inline-flex;
    padding: 0 3rem;
    height: 5rem;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    border-radius: 5rem;
    background: linear-gradient(180deg, #FFE246 13%, #fcb526 100%), #fcb526;
    font-weight: 900;
    transition: .3s all ease;
    border: 2px solid #fcb526;
    cursor: pointer;
}
.btn:hover { background: #fcb526; }

/* Mobile First Media Queries */
/* Base style */
/* blue: #141E46; red: #C70039; pink: #FF6969; yellow: #FFF5E0;*/
header {
    position: fixed;
    left: 0;
    width: 100vw;
    top: 0;
    z-index: 22;
    background: transparent;
    transition: .3s background ease;
    height: 6rem;
    color: var(--color-blue);
}
header.white-bg {
    background: #fff;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    transition: .3s background ease;
}
header.white-font { color: #fff; }
header .menu-wrap { justify-content: space-between; }
header .menu-wrap .logo img { height: 5rem; }
header .top-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}
header .top-menu li { display: flex; margin: 0 1.5rem; }
header .top-menu li a {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    position: relative;
    font-weight: 900;
    font-size: 1.8rem;
}
header .top-menu li a:after {
    content: "";
    width: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-orange);
    transition: .3s width ease;
}
header .top-menu li:hover a:after { width: 100%; }
header.white-bg .top-menu li a { color: var(--color-blue); }
header .top-menu li a .fa-caret-down { margin-left: 0.3rem; font-size: 1.5rem; }
header .top-menu li.submenu { position: relative; }
header .top-menu li.submenu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: max-content;
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease-in;
    transform: translateY(0.5rem);
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 11%);
    overflow: hidden;
}
header .top-menu li.submenu:hover ul { 
    visibility: visible; 
    opacity: 1; 
    transform: translateY(0); 
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
header .top-menu li.submenu ul li {
    width: 100%;
    align-items: center;
    justify-content: center;
    border-left: 6px solid transparent;
    margin: 0;
    transition: .3s border ease;
}
header .top-menu li.submenu ul li:hover { border-left: 6px solid var(--color-orange) }
header .top-menu li.submenu ul li a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1.2rem 4rem 1.2rem 2rem;
    border-top: 1px solid #cecece38;
    transition: .3s transform ease;
    color: var(--color-blue);
}
header .top-menu li.submenu ul li:hover a { transform: translateX(8px); }
header .top-menu li.submenu ul li a:after { display: none; }
header .info {}
header .messengers { display: none; }
header .messengers a {
    color: var(--color-yellow);
    padding: 0 1.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    margin: 0 1rem;
    transition: .3s all ease;
    font-size: 1.4rem;
}
header .messengers a i { 
    margin: 0 0.5rem 0 0; 
}
header .messengers .tg { background: #24A1DE; }
header .messengers .wa { background: #25D366; }
/*header .messengers a:hover i { color: var(--color-red); }*/
header .messengers a:hover { background: var(--color-yellow); color: var(--color-red); }
header.white-bg .messengers a:hover { box-shadow: inset 0 0 0px 2px var(--color-red); }
header .tel { display: none; }
header .tel a { color: inherit; font-size: 1.8rem; font-weight: 900; }
header.white-bg .tel a { color: var(--color-blue); }
header .tel span { color: var(--color-pink); }
header .bars { 
    /*display: flex; margin-left: 2rem; font-size: 2.5rem; 
    cursor: pointer; color: var(--color-yellow); margin-right: 1rem; */
    display: flex;
    margin-left: auto;
    font-size: 2.5rem;
    cursor: pointer;
    color: #141e46;
    margin-right: auto;
    background: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}
header.white-bg .bars { color: var(--color-blue); }
.start {
    height: 100vh;
    margin: 0;
    padding: 7rem 0 0;
    position: relative;
    background-size: cover;
    color: var(--color-blue);
}
.start.white-font { color: #fff; }
.start .mask {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
}
.start .inner { height: 100%; } 
.start .pure-u-1 {
    z-index: 5;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 
.start .title { width:100%; color: inherit; }
.start h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: inherit;
    text-align: center;
    margin: 0;
}
.start .places {
    width: 100%;
    height: 4rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    position: absolute;
    top: 1rem;
    left: 2rem;
}
.start .places .fa-location-dot {
    color: var(--color-pink);
    margin-right: 1rem;
    font-size: 1.8rem;
    transform: translateY(-2px);
}
.start .start-bottom {
    width: 100%;
    padding: 3rem 0 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.start .start-bottom .text {
    line-height: 1.1;
    margin: 0 0 3rem;
    text-align: center;
    color: inherit;
    font-weight: 800;
}
.start .start-bottom .text .info { font-size: 1.6rem; }
.start .start-bottom .text .wrap { margin: 3rem 0 0; gap: 1rem; flex-wrap: wrap; }
.wave {
    height: 5rem;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.about { padding: 3rem 0 6rem; background: #fff; position: relative; }
.about .pic1 { display: flex; align-items: end; justify-content: end; padding: 0 1.5rem 3rem 0; }
.about .pic2 { display: flex; align-items: end; justify-content: center; }
.about .pic3 { display: flex; align-items: start; justify-content: end;}
.about .pic4 { display: flex; align-items: start; justify-content: start; padding: 0 0 0 3rem; }
.about .foto img { border-radius: 2rem; box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.22); }
.about .foto .pic1, .about .foto .pic3, .about .foto .pic4 { display: none; } 
.about .info { padding: 2rem; }
.about .info .btn { margin-top: 2rem; }  
.preim { padding: 3rem 0 0; position: relative; }
.preim .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    width: 90%;
    margin: 0 auto 5rem;
    padding: 3rem 2rem;
    border-radius: 2rem;
    max-width: 38rem;
    transition: .3s background ease, .3s transform ease;
    box-shadow: 4px 4px 16px rgb(0 0 0 / 13%);
    background: #efefefad;
    position: relative;
    overflow: hidden;
}
.preim .item .red-circle {
    position: absolute;
    bottom: -15rem;
    right: -12rem;
    width: 30rem;
    height: 30rem;
    transition: .3s background ease, .3s transform ease;
    z-index: 1;
}
.preim .item:hover { transform: translateY(-1rem); background: #e654a44d; }
.preim .item:hover .red-circle { transform: translate(-1rem, -1rem); background: #2174ea7a; }
.preim .item .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: var(--color-pink);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--color-white); 
    position: relative;
    z-index: 5;
    transition: .3s background ease;
}
.preim .item:hover .icon { background: var(--color-purple); }
.preim .item h3 { position: relative; z-index: 5; }
.preim .item:hover h3 { color: var(--color-blue); }
.preim .item .txt { position: relative; z-index: 5; }
.preim .triangles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.preim .triangles .left {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5rem 0 0 50vw;
    border-color: transparent transparent transparent #FAF3F0;
    transform: rotate(0deg);
    position: absolute;
    left: 0;
    bottom: 0;
}
.preim .triangles .right {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 5rem 50vw;
    border-color: transparent transparent #FAF3F0 transparent;
    transform: rotate(0deg);
    position: absolute;
    right: 0;
    bottom: 0;
}
.showprogramms { padding: 3rem 0 8rem; position: relative; background: #FAF3F0; }
.show-block .item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 4rem;
}
.show-block .item a { display: flex; align-items: center; justify-content: center; }
.show-block .item a h3 { transition: .3s color ease; }
.show-block .item img {
    width: 100%;
    max-width: 32rem;
    display: flex;
    transition: .3s transform ease;
}
.show-block.spisok-circle .item img {
    border-radius: 50%;
    height: 32rem;
    object-fit: cover;
}
.show-block .item:hover img { transform: scale(1.04) rotate(1deg); }
.show-block .item:hover a h3 { color: var(--color-orange) }
.show-filters {
    border-radius: 2rem;
    padding: 0rem 2rem;
    display: flex;
    background: #fff;
    justify-content: center;
    margin: 0 auto 10rem;
    width: 100%;
    box-shadow: 4px 4px 16px rgb(0 0 0 / 13%);
    flex-direction: column;
}
.show-filters .item {
    margin: 0 0 1.5rem;
}
.show-filters .item .type {
    font-size: 1.4rem;
    opacity: .8;
    color: #141e4699;
    font-weight: 600;
}
.show-filters .item .values {
    font-weight: 900;
    font-size: 1.6rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}
.show-filters .item .values span {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    width: max-content;
}
.show-filters .item .values span:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 5px;
    background: var(--color-orange);
    transition: .3s width ease;
}
.show-filters .item .values span:hover:after { width: 100%; }
.show-filters .item .values span.current:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-orange);
    transition: .3s width ease;
}
.articles-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
    padding: 5rem 0 0;
}
.articles-block .cell {}
.articles-block .cell .item { 
    border-radius: 2rem; 
    overflow: hidden; 
    height: 100%;
    position: relative; 
    padding: 0 0 6rem; 
    box-shadow: 4px 4px 16px rgb(0 0 0 / 13%); 
    background: #efefefad;
    transition: .3s background;
    max-width: 60rem;
    margin: 0 auto;
}
.articles-block .cell .item:hover { background: #e654a44d; }
.articles-block .cell .item .img-wrap { display: block; overflow: hidden; }
.articles-block .cell .item .img-wrap img { transition: .3s transform; }
.articles-block .cell .item:hover .img-wrap img { transform: scale(1.05) rotate(1deg); }
.articles-block .cell .item .info { padding: 0 2rem 2rem; position: relative; z-index: 5; }
.articles-block .cell .item .link {
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    z-index: 5;
}
.articles-block .cell .item h3 a { color: inherit; }
.articles-block .cell .item .link a {
    color: inherit;
    font-weight: 800;
    font-size: 1.6rem;
    transition: .3s color;
}
.articles-block .cell .item .link i { transition: .3s transform; transform: translate3d(3px, 2px, 0px); }
.articles-block .cell .item:hover .link a { color: var(--color-white); }
.articles-block .cell .item:hover .link i { transform: translate3d(8px, 2px, 0px); }
.articles-block .cell .item .red-circle { width: 40rem; height: 40rem; right: -20rem; bottom: -20rem; }
.articles-block .cell .item:hover .red-circle { transform: translate(-1rem, -1rem); background: #2174ea7a; }
.articles-block.keisy-block .cell .item { height: 100%; padding: 0; }
.articles-block.keisy-block .cell .item h3 { text-align: center; }
.articles-block.keisy-block .cell .item .red-circle {
    width: 14rem;
    height: 14rem;
    right: -7rem;
    bottom: -7rem;
}
.animators { padding: 3rem 0 8rem; position: relative; background-color: #D4E2D4; }
.kalend-prazdnik { padding: 3rem 0 8rem; position: relative; background-color: #FFCACC; }
.uslugi-block.var2 { flex-direction: column-reverse; }
.uslugi-block .foto .wrap { height: 100%; }
.uslugi-block .info {
    padding: 2rem 0rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 800;
}
.uslugi-block .info .text {
    margin: 0 0 3rem;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.4;
}
.uslugi-block .info .wrap { margin: 0 auto 3rem; flex-wrap: wrap; gap: 1rem; }
.uslugi-block .info .wrap .span-tag { margin: 0; }
.uslugi-block .foto img { max-width: 36rem; display: flex; width: 90%; }
.dop-uslugi { padding: 3rem 0 8rem; position: relative; background: #DBC4F0; }
.span-tag {
    color: var(--color-white);
    background: var(--color-blue);
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    display: inline-block;
    margin: 0;
    font-weight: 800;
} 
.white-font .span-tag { color: var(--color-blue); background: var(--color-white); }
.program-about { padding: 3rem 0; background: #fff; }
.program-about .wrap { 
    overflow: hidden; 
    border-radius: 2rem; 
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.22);
    max-width: 70rem;
    margin: 0 auto; 
}
.program-about .wrap .pure-g:nth-child(2) { flex-direction: column-reverse; }
.program-about .forwho .item { flex-direction: column; position: relative; margin: 0 0 2rem; }
.program-about .forwho .item .icon { font-size: 2.8rem; color: var(--color-red); }
.program-about .forwho .item .text { flex-direction: column; text-align: center; }
.program-about .forwho .item .text .title { text-transform: uppercase; font-size: 1.4rem; padding: 1rem 0 0; }
.program-about .forwho .item .text .value { font-weight: 900; }
.program-about .forwho .item .border { display: none; }
.program-about .fon1 { height: 20rem; }
.program-about .fon2 { height: 20rem; }
.program-about .info { 
    transition: .3s background ease; 
    padding: 2rem 0; 
    line-height: 1.3; 
    background: #efefefad; 
    position: relative;
    overflow: hidden;
}
.program-about .info .container { position: relative; z-index: 5; }
.program-about .info .red-circle { bottom: -21rem; right: -21rem; width: 46rem; height: 46rem; }
.program-about .info .red-circle.circle2 { bottom: -21rem; left: -21rem; }
.program-about .info:hover { background: #e654a44d; }
.program-about .info:hover .red-circle { transform: translate(-1rem, -1rem); background: #2174ea7a; }
.program-about .info:hover .red-circle.circle2 { transform: translate(1rem, -1rem); }
.program-about .sostav-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding: 1rem 0 0;
}
.program-about .sostav { list-style: none; padding: 0; }
.program-about .sostav li { margin-bottom: 0.5rem; }
.program-about .sostav i {
    font-size: 1.4rem;
    color: var(--color-red);
    margin: 0 0.8rem 0 0;
}
.program-about .text-wrap { position: relative; }
.program-about .text-wrap .blue-dots {
    top: 0rem;
    left: -2rem;
}
.program-about .text-wrap .red-circle {
    bottom: 0rem;
    left: -2rem;
}
.program-about .an-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 2rem auto 0rem;
    flex-direction: column;
}
.program-about .an-info .tezis {
    width: 30%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    position: relative;
}
.program-about .an-info .tezis.tezis-last { align-items: flex-end; }
.program-about .an-info .tezis.tezis-small {
    display: flex;
    order: 2;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2rem 0 0;
}
.program-about .an-info .tezis.tezis-small .left { width: 50%; }
.program-about .an-info .tezis.tezis-small .right { width: 50%; }
.program-about .an-info .tezis.tezis-small .item { width: 95%; margin: 0 auto 2rem; }
.program-about .an-info .tezis.tezis-small .item:first-child,
.program-about .an-info .tezis.tezis-small .item:last-child { transform: translateX(0); }
.program-about .an-info .tezis .item {
    background: #efefefad;
    padding: 1rem 1rem;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgb(0 0 0 / 15%);
    width: 95%;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    line-height: 1.4;
    font-size: 1.2rem;
}
.program-about .an-info .tezis .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-about .an-info .tezis .item .icon i {
    font-size: 1.5rem;
    color: var(--color-pink);
    margin-right: 1rem;
}
.program-about .an-info .tezis .item:first-child { transform: translateX(12%); }
.program-about .an-info .tezis .item:last-child { transform: translateX(8%); }
.program-about .an-info .tezis.tezis-last .item:first-child { transform: translateX(-12%); }
.program-about .an-info .tezis.tezis-last .item:last-child { transform: translateX(-8%); }
.program-about .an-info .img { width: 100%; position: relative; z-index: 2; position: relative; order: 1; }
.program-about .an-info .blob {
    position: absolute;
    top: 1rem;
    left: 50%;
    width: 30rem;
    z-index: 1;
    margin-left: -15rem;
}
.program-about .an-info .img img {    
    max-width: 25rem;
    display: flex;
    margin: 0 auto;
    width: 100%;
}
.program-about .price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-about .price {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    background: #2174ea;
    padding: 2rem 2rem;
    margin: 3rem auto 0;
    color: #fff;
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 11%);
    flex-direction: column;
}
.program-about .price.price-show { margin: 7rem auto 0; }
.program-about .price .text { font-size: 2rem; }
.program-about .price .text span { font-size: 3rem; font-weight: 900; }
.program-about .price .btn { margin: 1.5rem 0 0; }
.program-foto { padding: 3rem 0; background: #fff; }
.program-foto .splide__track { width: 80%; margin: 0 auto; }
.fslightbox-toolbar-button:first-child { display: none; }
.program-foto .gallery { background: radial-gradient(circle,#fcb52654 0%, rgba(255,255,255,1) 50%); position: relative; }
.program-foto .gallery .blue-dots { right: -1.5rem; bottom: -1rem; }
.program-foto .gallery .red-circle { top: -3rem; left: -1rem; }
.program-foto .gallery a {
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 1rem;
    margin: 0 auto 2rem;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.22);
    position: relative;
    transition: .3s transform ease;
    z-index: 3;
} 
.program-foto .gallery a:hover { transform: translateY(-5px);  }
.program-foto .gallery a .fon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141e46ba;
    transition: .3s opacity ease;
    opacity: 0;
}
.program-foto .gallery a .fon i { 
    font-size: 3rem; 
    color: #fff;
    transform: translate3d(20px, 20px, 0px); 
    transition: .3s transform ease;
} 
.program-foto .gallery a:hover .fon { opacity: 1; }
.program-foto .gallery a:hover .fon i { transform: translate3d(0, 0, 0); }
.video-wrap { padding-top: 0rem; }
.video { 
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.22);
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    width: 80vw;
    height: 45vw;
    max-width: 600px;
    max-height: 336px;
}
.program-dinos { padding: 3rem 0; background: #fff; }
.program-dinos .dino { margin: 0 0 3rem; flex-direction: column-reverse; }
.program-dinos .dino:last-child { margin: 0; }
.program-dinos .splide {
    width: 90%;
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.22);
}
.program-dinos .splide .splide__arrow {
    background: var(--color-orange);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    opacity: 1;
    transition: .3s all ease;
}
.program-dinos .splide .splide__arrow:disabled { opacity: .5; }
.program-dinos .splide .splide__arrow i { font-size: 2.2rem; color: var(--color-blue); }
.program-dinos .splide .splide__arrow:hover { opacity: .7; }
.program-dinos .foto .thumbnails {
    display: flex;
    margin: 2rem auto 0;
    padding: 0;
    justify-content: center;
}
.program-dinos .foto .thumbnail {
    width: 4.5rem;
    overflow: hidden;
    list-style: none;
    margin: 0 0.2rem;
    cursor: pointer;
    opacity: .7;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: .3s all ease;
    display: flex;
}
.program-dinos .foto .thumbnail:hover { transform: translateY(-3px); }
.program-dinos .foto .thumbnail.is-active, .program-dinos .foto .thumbnail:hover {
    opacity: 1;
    border: 2px solid var(--color-orange);
}
.program-dinos .foto .thumbnail img { width: 100%; height: auto; }
.program-dinos .info { padding: 0 0 2rem; }
.program-dinos .info h3 { font-size: 1.6rem; margin: 0 0 1rem; text-align: center; }
.program-price { padding: 3rem 0; background: #fff; }
.program-price .prices { margin: 0; padding-top: 2rem; }
.program-price .prices .item {
    width: 100%;
    margin: 0 auto 3rem;
    max-width: 350px;
    border-radius: 2rem;
    background: url(../images/bg2.png) no-repeat center;
    color: #fff;
    height: auto;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.22);
    position: relative;
    padding: 0 0 7rem;
}
.program-price .prices .item .img-wrap { 
    overflow: hidden; 
    height: 150px; 
    position: relative; 
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}
.program-price .prices .item .img-wrap img { transition: .3s transform ease; }
.program-price .prices .item .cena {
    position: absolute;
    top: 2rem;
    right: -1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-orange);
    color: var(--color-blue);
    height: 4.5rem;
    padding: 0 1.5rem;
    z-index: 3;
    font-size: 1.8rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
.program-price .prices .item .cena:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.4rem 1.4rem 0 0;
    border-color: #996d14 transparent transparent transparent;
    position: absolute;
    bottom: -1.4rem;
    right: 0;
}
.program-price .prices .item .cena span { margin: 0 0.4rem; font-weight: 900; }
.program-price .prices .item:hover .img-wrap img { transform: scale(1.1) rotate(3deg); }
.program-price .prices .item .text { padding: 1.5rem; }
.program-price .prices .list-wrap { padding: 0 1rem; }
.program-price .prices .item .text .fa-heart {
    font-size: 1.2rem;
    color: var(--color-red);
    margin: 0 0.8rem 0 0;
    transform: translateY(0);
}
.program-price .prices .item h3 {
    color: #fff;
    text-align: center;
    margin: 0 0 2rem;
    font-size: 1.6rem;
}
.program-price .prices .item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.program-price .prices .item .btn {
    display: flex;
    width: 16rem;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    margin-left: -8rem;
}
.program-price .prices .item .popup { border-bottom: 1px dashed var(--color-yellow); cursor: pointer; }
.tippy-box[data-theme~='custom'] {
    background-color: var(--color-red);
    color: var(--color-yellow);
}
.tippy-content { padding: 1rem 1.5rem; }
.tippy-box[data-theme~='custom'][data-placement^='top'] > .tippy-arrow::before    { border-top-color:    var(--color-red); }
.tippy-box[data-theme~='custom'][data-placement^='bottom'] > .tippy-arrow::before { border-bottom-color: var(--color-red); }
.tippy-box[data-theme~='custom'][data-placement^='left'] > .tippy-arrow::before   { border-left-color:   var(--color-red); }
.tippy-box[data-theme~='custom'][data-placement^='right'] > .tippy-arrow::before  { border-right-color:  var(--color-red); }
.tippy-content .fa-check  { margin-right: .8rem; color: var(--color-yellow); }
.tippy-content li { padding: .3rem 0; }
.program-otzyvy { padding: 3rem 0; background: #fff; }
.program-otzyvy .splide { margin: 0 auto; background: radial-gradient(circle, #ff00661c 0%, rgba(255,255,255,1) 50%); }
.program-otzyvy .splide .splide__arrow {
    background: var(--color-orange);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    opacity: 1;
    transition: .3s all ease;
}
.program-otzyvy .splide .splide__arrow:disabled { opacity: .5; }
.program-otzyvy .splide .splide__arrow i { font-size: 2.2rem; color: var(--color-white); }
.program-otzyvy .splide .splide__arrow:hover { opacity: .7; }
.program-otzyvy .splide li { padding: 1rem 0 2rem; }
.program-otzyvy .splide li a {
    transition: .3s transform ease;
    display: flex;
    width: 90%;
    max-width: 30rem;
    margin: 0 auto;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.22);
    display: flex;
    position: relative;
}
.program-otzyvy .splide li a .fon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141e46ba;
    transition: .3s opacity ease;
    opacity: 0;
}
.program-otzyvy .splide li a .fon i {
    font-size: 3rem;
    color: #fff;
    transform: translate3d(20px, 20px, 0px);
    transition: .3s transform ease;
}
.program-otzyvy .splide li a:hover .fon i { transform: translate3d(0, 0, 0); }
.program-otzyvy .splide li a:hover .fon { opacity: 1; }
.program-otzyvy .splide li a:hover { transform: translateY(-5px); }
.program-otzyvy .splide li a img {}
.keis-info .keis-block ul { margin: 0; padding: 0 2rem  4rem; list-style: none; }
.keis-info .keis-block li { font-size: 1.8rem; font-weight: 600; }
.keis-info .keis-block li i {
    color: var(--color-pink);
    margin-right: 0.5rem;
    font-size: 2rem;
    transform: translateY(1px);
}
.keis-info .keis-block .video { 
    width: 80vw; 
    height: 45vw;
    max-width: 600px;
    max-height: 336px; 
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.22);
    margin: 0 auto 3rem;
    border-radius: 2rem;
    overflow: hidden;
}
.calltoaction { padding: 2rem 0 5rem; }
.calltoaction .cta {
    border-radius: 2rem;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    background: var(--color-purple);
}
.calltoaction .cta h2 {
    color: inherit;
    padding: 0;
    margin: 0 0 1rem;
    color: #fff;
}
.calltoaction .cta .fon {
    position: absolute;
    right: 0; bottom: 0;top: 0; left: 0; 
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/pattern.png) repeat;
}
.calltoaction .cta .fon img { display: none; }
.calltoaction .cta .wrap { position: relative; z-index: 4; }
.calltoaction .cta form { 
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 40rem;
    margin: 0 auto;
} 
.calltoaction .cta form fieldset { width: 100%; }   
.calltoaction .cta input[type=text] {
    border: 1px solid #cccccc8c;
    outline: none;
    transition: .3s border ease;
    background: #fff;
    height: 5rem;
    width: 100%;
    height: 5rem;
    border-radius: 2rem;
    padding: 0 2rem;
    margin: 0 0 3rem;
}
.calltoaction .cta input[type=text]:focus { border: 1px solid var(--color-orange); }
.calltoaction .cta .label-checkbox { padding-left: 2rem; font-size: 1.2rem; color: #ffffffe0; }
.calltoaction .cta form #agree { transform: translateY(3px); margin-right: 0.4rem; }
.calltoaction .cta .label { padding-left: 2rem; color: #fff; font-weight: 600; }
.calltoaction .cta .btn { margin: 2rem auto 0; display: flex; }

.red-circle {
    z-index: 1;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    position: absolute;
    background: #2174ea1a;
    transition: .3s transform ease, .3s background ease;
}
.blue-dots {
    background-image: radial-gradient(#2174ea6e 2px,transparent 2.5px);
    background-size: 2rem 2rem;
    opacity: .5;
    width: 22rem;
    height: 22rem;
    position: absolute;
}
.content-header {
    height: 50vh;
/*height: 70vh;*/
    background: url(../images/fon-header.webp) no-repeat center;
    background-size: cover;  
    display:  flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.content-header .info {
    text-align: center;
    max-width: 600px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-blue);
}
.content-header h1 { 
    text-align: center; 
    font-size: 2.8rem; 
    font-weight: 900; 
    line-height: 1.2; 
    color: var(--color-blue); 
    max-width: 80rem;
}
.content-header h1.about-h1 { margin: -10rem 0 0; }
.marker-class {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%) translateX(-15px);
    font-size: 4.5rem;
    color: var(--color-red);
}
#map {
    position: relative;
    width: 100%;
    height: 50rem;
    z-index: 1;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#map .ymaps3x0--map-container { border-radius: 2rem; }
#map .map-info {
    background: #fff;
    padding: 1.5rem;
    position: absolute;
    z-index: 3;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    max-width: 38rem;
    /* margin-left: -45rem; */
    bottom: 43rem;
    width: 100%;
}
#map .map-info h3 { font-weight: 800; margin: 0; }
#map .map-info .subtitle { color: #878787; font-size: 1.3rem; line-height: 1.2; margin: 1rem 0; }
#map .map-info .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#map .map-info .info .stars i.fa-star {
    color: var(--color-orange);
    margin-right: 0.1rem;
    font-size: 1.4rem;
}
#map .map-info .metro-list { margin: 1rem 0; padding: 0; list-style: none; }
#map .map-info .metro-list span {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    color: #fff;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 0.4rem;
    font-size: 1.4rem;
}
#map .map-info .metro-list span.salat { background: rgb(190, 209, 46); }
#map .map-info .metro-list span.green { background: rgb(75, 175, 79); }
#map .map-info .metro-list li a { margin-left: 1rem; color: #2174ea; transition: .3s all ease; }
#map .map-info .metro-list li a:hover { color: #73a5eb; }
#map .map-info .metro-list li a i { margin-right: .4rem; }
#map .map-info .kak {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: #2174ea;
    color: #fff;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-flex;
    transition: .3s all ease;
}
#map .map-info .kak:hover { background: #73a5eb; }
.about-info { padding: 3rem 0 5rem; background: #fff; }
.blob-wrap { position: relative; }
.blob-wrap .blob {
    width: 100%;
    margin: 0 auto;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    position: absolute;
    z-index: 1;
}
.blob-wrap p { z-index: 3; position: relative; }
.about-info h2 { font-size: 3rem; margin: 0rem auto 5rem; z-index: 3; position: relative; }
.about-info .we-img {
    width: 100%;
    margin: -24rem auto 0;
    z-index: 3;
    position: relative;
    max-width: 1024px;
    border-radius: 2rem;
    overflow: hidden;
}
.about-info .facts {
    background: #2174ea;
    margin: 2rem auto 4rem;
    width: 100%;
    height: auto;
    z-index: 4;
    position: relative;
    border-radius: 2rem;
    max-width: 24rem;
    border: 7px solid #fff;
}
.about-info .facts .pure-g { flex-direction: column; flex-wrap: nowrap; height: 100%; }
.about-info .facts .item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3f3f3;
    flex-direction: column;
    font-weight: 600;
    padding: 2rem 0;
}
.about-info .facts .item .big {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
}
.about-info .facts .item:nth-child(2) { position: relative; }
.about-info .facts .item .border-left { 
    position: absolute;
    left: 50%;
    top: -1px;
    width: 6rem;
    height: 2px;
    background: #f3f3f3a8;
    transform: translateX(-3rem);
}
.about-info .facts .item .border-right { 
    position: absolute;
    right: 50%;
    bottom: -1px;
    width: 6rem;
    height: 2px;
    background: #f3f3f3a8;
    transform: translateX(3rem);
}
.quote {
    text-align: center;
    padding: 3rem;
    background: #efefefad;
    width: 90%;
    max-width: 800px;
    margin: 9rem auto;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 11%);
    z-index: 3;
    position: relative;
}
.quote .fa-quote-left {
    position: absolute;
    left: 1rem;
    top: 0;
    font-size: 8rem;
    color: #bdbdbd;
    opacity: .3;
}
.quote .fa-quote-right {
    position: absolute;
    right: 1rem;
    bottom: 0;
    font-size: 8rem;
    color: #bdbdbd;
    opacity: .3;
}
.about-info .team { 
    position: relative; 
    z-index: 2; 
    padding: 2rem 0 0; 
    background: radial-gradient(circle, #ff00661c 0%, rgba(255,255,255,1) 50%);
}
.about-info .team .item {
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 11%);
    text-align: center;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto 3rem;
    transition: .3s transform ease, .3s background ease;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    border-top: 0.6rem solid var(--color-purple);
    background: #fff;
}
.about-info .team .red-circle { top: -2rem; left: -1rem; }
/*.about-info .team .item:hover { transform: translateY(-5px); }*/
.about-info .team .item .img-wrap { overflow: hidden; display: flex; }
.about-info .team .item .info { padding: 0 2rem 2rem; }
.about-info .team .item img { width: 100%; transition: .3s all ease; }
.about-info .team .item:hover img { transform: scale(1.05) rotate(0.1deg); }
.about-info .team .item h3 { margin: 1rem 0 1.8rem; position: relative; }
.about-info .team .item h3:after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    width: 4rem;
    height: 4px;
    background: var(--color-purple);
    margin-left: -2rem;
    border-radius: 5px;
    transition: .3s all ease;
}
.about-info .team .item:hover h3:after { width: 6rem; margin-left: -3rem; } 
.c-icons { padding: 0 0 2rem; z-index: 1; position: relative; }
.c-icons .item  {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 3rem;
}
.c-icons .item .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: var(--color-pink);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--color-white);
    transition: .3s all ease;
}
.c-icons .item:hover .icon { transform: translateY(-5px); }
.c-soc { padding: 0rem 0 33rem; z-index: 1; position: relative; }
.c-soc .item { padding: 0rem 1rem; } 
.c-soc .item a { display: inline-flex; }
.c-soc .item a i { font-size: 3rem; transition: .3s all ease; }
.c-soc .item a i:hover { transform: translateY(-3px); opacity: 0.7; }
.c-soc .item a i.fa-vk { color: #45668e; }
.c-soc .item a i.fa-instagram { color: #fd1d1d; }
.c-soc .item a i.fa-youtube { color: #ff0000; }
.c-soc .item a i.fa-telegram { color: #0088cc; }
.c-soc .item a i.fa-whatsapp { color: #25d366; }
.content-wrap { padding: 3rem 0; }
.kalend-wrap { margin: 0 auto 5rem; }
.kalend-wrap .item {
    margin: 0 auto 3rem;
    width: 90%;
    height: 22rem;
    max-width: 33rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    background: #efefefad;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 11%);
    transition: .3s transform ease, .3s background ease;
}
.kalend-wrap .item:hover { transform: translateY(-1rem); background: #e654a44d; }
.kalend-wrap .pure-u-1:last-child .item { margin: 0 auto; }
.kalend-wrap .item img { max-width: 100%; margin: 0 auto; z-index: 3; }
.kalend-wrap .item.newyear img{
    position: absolute;
    bottom: -3rem;
    width: 22rem;
}
.kalend-wrap .item.ucheba img{
    position: absolute;
    bottom: 0rem;
    width: 13rem;
}
.kalend-wrap .item.hw img{
    position: absolute;
    bottom: 0rem;
    width: 22rem;
}
.kalend-wrap .item h3 {
    position: absolute;
    top: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-blue);
    z-index: 5;
}
.kalend-wrap .item .red-circle {
    z-index: 2;
    width: 35rem;
    height: 35rem;
    bottom: -17rem;
    right: -17rem;
    background: #2174ea0f;
    transition: .3s transform ease, .3s background ease;
}
.kalend-wrap .item:hover .red-circle  { transform: translate(-1rem, -1rem); background: #2174ea7a; }
.dop-wrap { margin-bottom: 5rem; }
.dop-wrap .pure-u-1 { padding: 0 0 3rem; } 
.dop-wrap .item {
    background: #efefefad;
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 11%);
    transition: .3s background ease;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    margin: 0 auto 3rem;
    position: relative;
    flex-direction: column;
    width: 93%;
    max-width: 50rem;
    padding: 0 0 16rem;
    height: 100%;
}
.dop-wrap .item .img, .dop-wrap .item .info { display: flex; }
.dop-wrap .item .info { 
    padding: 1rem 2rem; 
    flex-direction: column; 
    justify-content: space-between;
    position: relative;
    z-index: 5; 
}
.dop-wrap .item .info h3 { font-size: 2rem; margin: 0 0 1rem; }
.dop-wrap .item .price-wrap { 
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 2rem 0 1rem; 
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 5;
}
.dop-wrap .item .price { display: flex; align-items: center; justify-content: center; flex-direction: column; }
.dop-wrap .item .price .text { font-size: 2rem; }
.dop-wrap .item .price .text span { font-size: 3rem; font-weight: 800; }
.dop-wrap .item .price .btn { margin: 1rem 0 0; }
.dop-wrap .item .red-circle {
    z-index: 2;
    width: 60rem;
    height: 60rem;
    bottom: -30rem;
    right: -30rem;
    transition: .3s transform ease, .3s background ease;
}
.dop-wrap .item:hover { background: #e654a44d; }
.dop-wrap .item:hover .red-circle { transform: translate(-1rem, -2rem); background: #2174ea7a; }
.dop-wrap .item .img img { max-width: 100%; }

.content-wrap .centered-slogan { margin: 0 auto; }

footer { padding: 0; }
footer .border { border-top: 1px solid #e1e1e1; }
footer .footer-inner { justify-content: space-between; padding: 4rem 0 0; flex-wrap: wrap; } 
footer .footer-inner .block { width: 100%; margin: 0 auto 2rem; } 
footer .footer-inner .block.logo-block     { order: 1; }
footer .footer-inner .block.main-links     { order: 3; }
footer .footer-inner .block.second-links   { order: 4; }
footer .footer-inner .block.contacts-block { order: 2; }
footer .footer-inner .block ul { list-style: none; padding: 0; margin: 0 auto; text-align: center; } 
footer .footer-inner .block ul li { margin: 0 0 0.5rem; }
footer .footer-inner .block ul li i {
    color: var(--color-red);
    font-size: 1.8rem;
    margin: 0 0.5rem 0 0;
}
footer .footer-inner .block ul a {
    color: var(--color-blue);
    transition: .3s all ease;
}
footer .footer-inner .block ul a:hover { color: var(--color-red); }
footer .footer-inner .logo { margin: 0 0 1.5rem; }
footer .footer-inner .logo a { display: flex; justify-content: center; padding: 0 0 1.5rem; }
footer .footer-inner .logo img { width: 8rem; }
footer .footer-soc i {
    font-size: 3rem;
    padding: 0 1rem;
    transition: .3s all ease;
}
footer .footer-soc i:hover { transform: translateY(-3px); opacity: 0.7; }
footer .footer-soc i.fa-vk { color: #45668e; }
footer .footer-soc i.fa-instagram { color: #fd1d1d; }
footer .footer-soc i.fa-youtube { color: #ff0000; }
footer .footer-soc i.fa-telegram { color: #0088cc; }
footer .footer-soc i.fa-whatsapp { color: #25d366; }
footer .footer-bottom { 
/*    background: var(--color-yellow); */
    padding: 3rem 0; 
}

.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 44;
    background: #1e2228b3;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
}
.overlay.active {
    visibility: visible;
    opacity: 1;
    transition: visible 0.3, opacity 0.3s ease-in;
}
.mob-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    max-width: 300px;
    z-index: 55;
    background: var(--color-blue);
    color: var(--color-yellow);   
    transition: all 0.3s ease-in-out;
    transform: translateX(-100%);
    display: flex;
    align-items: center;
/*    justify-content: space-between;*/
    flex-direction: column;
    overflow: auto; 
}
.mob-menu .mob-logo img {width: 80px; padding: 5px}
.mob-menu.active { transform: translateX(0); } 
.mob-menu .close {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    z-index: 1;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 3rem;
}
.mob-menu .close i { color: var(--color-yellow); font-size: 2.5rem; cursor: pointer; } 
.mob-menu ul { list-style: none; /*margin: 15vh 0 0;*/ margin: 2vh 0 0;padding: 0; }
.mob-menu ul li a {
    color: inherit;
    font-weight: 900;
    font-size: 2rem;
    padding: 1rem;
    display: flex;
}
.mob-menu .contacts { padding: 0 0 4rem; text-align: center; }
.mob-menu .contacts .tel a {
    color: inherit;
    font-size: 2rem;
    font-weight: 900;
}
.mob-menu .contacts .tel a span { color: var(--color-red); }
.mob-menu .soc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 0;
}
.mob-menu .soc a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow);
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0.8rem;
    border-radius: 50%;
}
.mob-menu .soc i { font-size: 1.8rem; display: flex; }
.mob-menu .soc i.fa-vk { color: #45668e; }
.mob-menu .soc i.fa-instagram { color: #fd1d1d; }
.mob-menu .soc i.fa-youtube { color: #ff0000; }
.mob-menu .soc i.fa-telegram { color: #0088cc; }
.mob-menu .soc i.fa-whatsapp { color: #25d366; }

.mob-menu-pages {
    -webkit-columns: 2;
    columns: 2;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid rgba(245, 245, 245, 0.5);
    border-bottom: 1px solid rgba(245, 245, 245, 0.5);
    width: 86%;
    position: relative;
}
.mob-menu-pages a {
    display: inline-block;
    position: relative;
    padding: 8px 0;
    font-size: 16px;
    font-weight: bold;
    color: #C4C4C4;
    line-height: 1.2;
}


#custom-livetex-fab {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 9999;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        display: inline-block;
    }
    #social_chats {
        width: inherit;
        display: flex;
        align-items: center;
        flex-direction: column;

    }
    .social_chats {
        position: absolute;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 40px;
        opacity: 0;
        visibility: hidden;
        top: 0;
        transition: all .5s ease;
        background-size: cover;
        border: 1px solid white;
    }
    .openChats .social_chats {
        opacity: 1;
        visibility: visible;
    }
    #social_chats.openChats + div.background-wrapper {
        transform: rotate(360deg);
    }
    .background-wrapper {background: url(/wp-content/themes/tul/assets/images/messenger/whatsapp-glyph-snoomi.svg) center no-repeat #e654a4}
    .openChats + .background-wrapper {background: url("/wp-content/themes/tul/assets/images/messenger/close-green.svg") center center no-repeat transparent;}
    .openChats .social_chats.social_chats_whatsapp {
        top: -49px;
    }
    .openChats .social_chats.social_chats_telega {
        top: -97px;
    }
    .openChats .social_chats.social_chats_viber {
        top: -145px;
    }
    #custom-livetex-fab .background-wrapper {
        width: inherit;
        height: inherit;
        webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        display: inline-block;
        border-radius: 100%;
        transition: all .2s ease;

    }
    #custom-livetex-fab .background-wrapper {
        box-shadow: 0 2px 8px 2px rgba(0,0,0,0.2);
    }
    .openChats .social_chats.social_chats_whatsapp,.openChats .social_chats.social_chats_viber,.openChats .social_chats.social_chats_telega {box-shadow: 0 2px 6px 1px rgba(0,0,0,0.2);}
    #custom-livetex-fab .background-wrapper:hover,.openChats .social_chats.social_chats_whatsapp:hover,.openChats .social_chats.social_chats_viber:hover,.openChats .social_chats.social_chats_telega:hover {
    box-shadow: 0 0px 27px 1.5px rgba(0,0,0,0.2);
    }

    .social_chats.social_chats_whatsapp {
        background: #25D366 url("/wp-content/themes/tul/assets/images/messenger/whatsapp-icon.svg") center no-repeat;
    }
    .social_chats.social_chats_viber {
        background: #665CAC url("/wp-content/themes/tul/assets/images/messenger/viber-icon.svg") center no-repeat;
    }
    .social_chats.social_chats_viber.soc_tel {
        background: #e654a4 url("/wp-content/themes/tul/assets/images/messenger/phone_icon.svg") center no-repeat;
    }  
    .social_chats.social_chats_telega {
        background: #139bd0 url("/wp-content/themes/tul/assets/images/messenger/telegram.svg") center no-repeat;background-size: cover;
    }
    .social_chats:last-child {
        margin-bottom: 0;
    }
    .desktop .social_chats.social_chats_whatsapp::before, .mobile .social_chats.social_chats_whatsapp::before, .desktop .social_chats.social_chats_viber::before, .mobile .social_chats.social_chats_viber::before, .desktop .social_chats.social_chats_telega::before, .mobile .social_chats.social_chats_telega::before {
        position: relative;
    display: flex;
    width: 78px;
    height: inherit;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: right;
    right: 90px;
    font-family: Graphik_LC, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #555;
    background-color: white;
    border-radius: 10%;
    box-shadow: 0 0px 27px 1.5px rgb(0 0 0 / 20%);
    }
    .social_chats.social_chats_viber::before {
        content: "Viber";
    }
    .social_chats.social_chats_viber.soc_tel::before {
        content: "Позвонить";
    }    
    .social_chats.social_chats_whatsapp::before {
        content: "WhatsApp";
    }
    .social_chats.social_chats_telega::before {
        content: "Telegram";
    }

.popup-form {
    background: #fff;
    position: relative;
    z-index: 55;
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease;
    transform: translateY(3rem);
    display: flex;
    border-radius: 2rem;
    overflow: hidden;
    width: 95%;
    max-width: 36rem;
}
.popup-form.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.popup-form .left, .popup-form .right { margin: 0 auto; }
.popup-form .right { padding: 0rem 1.5rem 3rem; position: relative; }
.popup-form .right .fail, .popup-form .right .ok {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    background: #fff;
    z-index: 10;
    text-align: center;
    flex-direction: column;
}
.popup-form .right .fail i { color: var(--color-red); font-size: 5rem; margin: 0 0 2rem; }
.popup-form .right .ok i { color: #25D366; font-size: 5rem; margin: 0 0 2rem; }
.popup-form h3 { font-size: 2.2rem; }
.popup-form p { font-size: 1.4rem; }
.popup-form form { display: flex; flex-direction: column; padding: 1rem 0 0; }
.popup-form .input-wrap { flex-direction: column; position: relative; margin: 0 0 3rem; }
.popup-form .label { font-weight: 600; padding: 0 0 1rem; }
.popup-form form input, .popup-form form textarea {
    border: 1px solid #cccccc8c;
    outline: none;
    transition: .3s border ease;
    z-index: 5;
    background: transparent;
    height: 5rem;
    width: 100%;
    height: 5rem;
    border-radius: 2rem;
    padding: 0 2rem;
    margin: 0 0 3rem;
}
.popup-form form input:focus { border: 1px solid var(--color-orange); }
.popup-form form textarea {
    height: 8rem;
    resize: vertical;
    padding: 1rem 0.5rem;
}
.popup-form form button {
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 20rem;
    margin: 0 auto;
}
.popup-form .close {
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    font-size: 3rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: .3s transform ease;
    z-index: 12;
}
.popup-form .close:hover { transform: rotate(90deg); }


/* Larger than mobile screen ≥ 568px */
@media screen and (min-width: 35.5em) {
    h2 { font-size: 3rem; }
    header .tel { padding: 0 0 0 1rem; display: flex; }
    .start h1 { font-size: 4rem; }
    .start .title { width: 70%; }
    .start .start-bottom .text .info { font-size: 1.8rem; }
    .about .foto .pic1, .about .foto .pic3, .about .foto .pic4 { display: flex; }
    .about .pic2 { padding: 0 0 3rem 1.5rem; justify-content: start; }
    .program-about .fon1, .program-about .fon2 { height: 30rem; }
    .program-about .price { flex-direction: row; }
    .program-about .price .btn { margin: 0 0 0 4.5rem; }
    .program-about .an-info { flex-direction: row; }
    .program-about .an-info .tezis { display: flex; order: 1; }
    .program-about .an-info .img { order: 2; width: 40%; }
    .program-about .an-info .tezis.tezis-last { order: 3; }
    .program-about .an-info .tezis.tezis-small { display: none; }
    .program-about .an-info .tezis .item { display: flex; font-size: 1.3rem; }
    .program-about .an-info .img img { max-width: 50rem; }
    .program-foto .gallery a { margin: 0 auto 3rem; }
    .program-dinos .info h3 { font-size: 2.2rem; }
    .program-dinos .foto .thumbnail { width: 7.5rem; margin: 0 0.5rem; border-width: 4px; }
    .program-dinos .foto .thumbnail.is-active, .program-dinos .foto .thumbnail:hover { border-width: 4px; }
    .program-price .prices .item h3 { font-size: 1.8rem; } 
    .program-price .prices .item .text { padding: 2rem; }
    .content-header h1 { font-size: 4rem; }
    .content-header .info { font-size: 1.6rem; }
    .show-filters .item .values { font-size: 1.8rem; }
    .popup-form .right { padding: 0rem 3rem 3rem; }
}

/* Larger than mobile screen ≥ 768px */
@media screen and (min-width: 48em) {
    body { font-size: 1.6rem; }
    h2 { font-size: 4rem; margin: 0rem auto 5rem; }
    header .top-menu { display: flex; }
    header .bars { display: none; }
    .wave { height: 9rem; }
    .about { padding: 5rem 0 10rem; }
    .preim { padding: 5rem 0 2rem; }
    .showprogramms { padding: 7rem 0 12rem; }
    .animators { padding: 7rem 0 12rem; }
    .kalend-prazdnik { padding: 7rem 0 12rem; }
    .articles-block { grid-template-columns: 1fr 1fr; }
    .program-about { padding: 5rem 0; }
    .program-about .forwho .item .border {
        position: absolute;
        top: 50%;
        right: 0;
        width: 1px;
        height: 6rem;
        margin-top: -3rem;
        background: #cecece;
        display: block;
    }
    .program-about .price .text { font-size: 2.5rem; }
    .program-about .price .text span { font-size: 4rem; }
    .program-about .an-info .tezis .item {
        padding: 2rem 1rem;
        width: 90%;
        margin: 3rem 0;
        font-size: 1.4rem;
    }
    .program-about .an-info .tezis .item .icon i { font-size: 2rem; }
    .program-about .an-info .blob { width: 46rem; margin-left: -23rem; }
    .program-foto { padding: 5rem 0; }
    .video-wrap { padding-top: 3rem; }
    .keis-info .keis-block .video { width: 41vw; height: 23vw; }
    .keis-info .keis-block ul { padding: 0 2rem; }
    .program-dinos { padding: 5rem 0; }
    .program-dinos .dino { margin: 0 0 6rem; flex-direction: row; }
    .program-dinos .info h3 { text-align: left; }
    .program-dinos .foto .thumbnail { width: 5.5rem; border-width: 2px; }
    .program-dinos .foto .thumbnail.is-active, .program-dinos .foto .thumbnail:hover { border-width: 2px; }
    .program-price { padding: 5rem 0; }
    .program-price .prices .item { width: 90%; height: 100%; }
    .program-price .prices .pure-u-1 { padding-bottom: 3rem; }
    .program-otzyvy { padding: 5rem 0; }
    .calltoaction .cta { padding: 3rem 5rem; }
    .calltoaction .cta h2 { text-align: left; margin: 0 0 3rem; }
    .calltoaction .cta form { justify-content: start; margin: 0; }
    .calltoaction .cta .btn { margin: 2rem 0 0; }
    .calltoaction .cta .fon { justify-content: flex-end; }
    .calltoaction .cta .fon img { display: flex; max-width: 100%; right: 5rem; top: 5rem; position: absolute; }
    .about-info { padding: 7rem 0 5rem; }
    .about-info .facts {
        margin: -7rem auto 7rem;
        width: 95%;
        height: 14rem;
        max-width: 75rem;
    }
    .about-info .facts .pure-g { flex-direction: row; flex-wrap: wrap; }
    .about-info .facts .item .border-left {
        left: -1px;
        top: 4rem;
        width: 2px;
        height: 6rem;
        transform: translateX(0);
    }
    .about-info .facts .item .border-right {
        right: -1px;
        top: 4rem;
        width: 2px;
        height: 6rem;
        transform: translateX(0);
    }
    .about-info .team .item { width: 90%; }
    .blob-wrap .blob { width: 70%; }
    .c-icons { padding: 0 0 5rem; }
    .c-icons .item { margin: 0; }
    .c-soc { padding: 2rem 0 33rem; }
    .c-soc .item a i { font-size: 4rem; }
    .content-wrap { padding: 5rem 0; }
    .spisok-block { padding: 3rem 0 2rem; }
    .show-filters { padding: 2rem 2rem; width: max-content; flex-direction: row; }
    .show-filters .item { margin: 0 2rem 0rem; }
    .show-filters .item .values { flex-direction: column; gap: 0.5rem; }
    .dop-wrap .item .info h3 { font-size: 3rem; margin: 0 0 2rem; }
    footer .footer-inner .block { width: 50%; } 
    footer .footer-inner .block ul { margin: 0; text-align: left; }
    footer .footer-inner .logo a { justify-content: start; }
    footer .footer-inner { padding: 5rem 0 0; }
    .popup-form { width: auto; max-width: none; }
    .popup-form .left, .popup-form .right { width: 36rem; }
    .popup-form .left { display: flex; }
}

/* Larger than tablet screen ≥ 1024px */
@media screen and (min-width: 64em) {
    h2 { font-size: 5rem; margin: 0rem auto 7rem; }
    h3 { font-size: 1.8rem; }
    header .messengers { display: flex; }
    header .tel a { font-size: 2rem; }
    .start .title { width: 55%; }
    .start h1 { font-size: 5rem; }
    .wave { height: 14rem; }
    .about { padding: 7rem 0 10rem; }
    .about .info { padding: 2rem 2rem 2rem 5rem; }
    .preim { padding: 7rem 0 10rem; }
    .preim .triangles .left { border-width: 8rem 0 0 50vw; }
    .preim .triangles .right { border-width: 0 0 8rem 50vw; }
    .showprogramms { padding: 7rem 0 16rem; }
    .animators { padding: 7rem 0 16rem; }
    .uslugi-block.var2 { flex-direction: row; }
    .uslugi-block .info { padding: 2rem 4rem; }
    .uslugi-block .info .text { font-size: 1.8rem; }
    .show-filters .item .values { flex-direction: row; gap: 2rem; }
    .kalend-prazdnik { padding: 7rem 0 16rem; }
    .articles-block { grid-template-columns: 1fr 1fr 1fr; }
    .program-about { padding: 7rem 0; }
    .program-about .wrap { max-width: 100%; }
    .program-about .wrap .pure-g:nth-child(2) { flex-direction: row; }
    .program-about .info { padding: 2rem 0 0; }
    .program-about .fon1, .program-about .fon2 { height: 40rem; }
    .program-about .an-info .tezis .item .icon i { font-size: 2.8rem; margin-right: 1.5rem; }
    .program-about .an-info .tezis .item { padding: 2rem 2rem; width: 85%; margin: 3.5rem 0; font-size: 1.6rem; }
    .program-about .an-info .blob { width: 70rem; margin-left: -35rem; top: -3rem; }
    .program-foto { padding: 7rem 0; }
    .program-foto .gallery a { margin: 0 auto 3rem; }
    .program-dinos { padding: 7rem 0; }
    .program-dinos .info { padding: 0 8rem 0 5rem; }
    .program-dinos .info h3 { font-size: 2.5rem; }
    .program-dinos .splide .splide__arrow { width: 4.5rem; height: 4.5rem; }
    .program-dinos .foto .thumbnail { width: 8rem; margin: 0 0.6rem; border-width: 4px; }
    .program-dinos .foto .thumbnail.is-active, .program-dinos .foto .thumbnail:hover { border-width: 4px; }
    .program-dinos .splide .splide__arrow i { font-size: 2.5rem; }
    .program-price { padding: 7rem 0; }
    .calltoaction { padding: 5rem 0 8rem; }
    .calltoaction .cta .fon img { right: 10rem; }
    .content-header h1 { font-size: 5rem; }
    .content-header .info { font-size: 1.8rem; }
    .about-info { padding: 10rem 0 7rem; }
    .about-info .team .item { margin: 0 auto 4rem; }
    .blob-wrap .blob { width: 50%; }
    .c-icons { padding: 0 0 8rem; }
    .c-soc { padding: 2rem 0 7rem; }
    #map .map-info { margin-left: -45rem; bottom: unset; left: 50%; }
    .content-wrap { padding: 7rem 0; }
    .spisok-block { padding: 5rem 0 3rem; }
    .kalend-wrap .item { height: 26rem; max-width: 33rem; }
    .dop-wrap .pure-u-1 { padding: 0 0 5rem; }
    footer .footer-inner .block { width: auto; } 
    footer .footer-inner .block.logo-block, footer .footer-inner .block.main-links,     
    footer .footer-inner .block.second-links, footer .footer-inner .block.contacts-block { order: 0; }
    .popup-form .left, .popup-form .right { width: 40rem; }
}

/* Larger than tablet screen ≥ 1200px */
@media screen and (min-width: 75em) {

}

/* Larger than tablet screen ≥ 1280px */
@media screen and (min-width: 80em) {
    .calltoaction .cta .fon img { right: 15rem; }
    .program-about .an-info .tezis .item { margin: 5rem 0; }
    .articles-block { grid-gap: 5rem; }
}

/* Larger than desktop screen 1920px */
@media (min-width: 120.0em) {}


        .tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        /* Стили для всплывающей подсказки */
        .tooltip .tooltiptext {
            visibility: hidden;
            min-width: 260px;
            background-color: #ff1d58;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Смещение вверх */
            right: 0;
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Показываем подсказку при наведении */
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
.program-keisy .articles-block {padding: 2rem 0 0;}
.program-keisy.spisok-block .articles-block {padding: 0;margin: 0 auto 5rem;}
.lazy-load-item {opacity: 0; transform: translateY(20px); transition: opacity 1s ease-out, transform 1s ease-out;}
/*@media screen and (min-width: 90em){
.video-wrap.lazy-load-block {height: 45vw;
    max-height: 336px;}
}*/
/*   .video.lazy-load-item {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
        width: 100%;
        height: 315px;
        position: relative;
        overflow: hidden;
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    @keyframes loading {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }

    .video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
    }*/

    .man-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.man-block__left {
    width: 300px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 70px;
        background: #ffd44d;
    border-radius: 2rem;
}
.man-block__img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px 0 rgb(37 22 14 / 20%);
    border-radius: 2rem;
    padding: 10px 10px 0 10px;
}
.man-block__right {
    width: 100%;
}
.man-block__title {
    margin-bottom: 0.5em;
}
.h2 {
    font-weight: 900;
    font-size: 48px;
    line-height: 1.1;
}
.man-block__actions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 40px;
}
.man-block__form {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 30px;
    position: relative;
}
.man-block__wa {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.man-block__wa .menu-18 {
    color: #B4BEC8;
    margin-bottom: 2px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.35;
}
.btn--wa {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    background: transparent;
    border-color: #00D75A;
    color: #00D75A;
    padding-left: 15px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
}
.btn--wa i {
    font-size: 28px;
    margin-right: 6px;
}
.btn--tg {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    background: transparent;
    border-color: #fff;
    color: #fff;
    padding-left: 15px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
}
.man-block__wa .btn--tg {
    border-color: #34aadf;
    color: #34aadf;
}
.btn--tg i {
    font-size: 28px;
    margin-right: 6px;
    border: 2px solid white;
    border-radius: 50%;
}
.btn--wa:hover {
    background: #00D75A!important;
    color: #ffffff;
}
.btn--tg:hover {
    background: #34aadf!important;
    color: #ffffff;
}

.input-text {
    display: inline-block!important;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    -webkit-appearance: none;
    border: none;
    padding: 17px 30px;
    overflow: visible;
    background: #FFF;
    color: #1D1C21;
    border-radius: 30px!important;
    box-shadow: 0 10px 40px 0 rgb(77 77 77 / 20%), 0 0 0 3px transparent;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        font-size: 16px;
    padding: 15px 25px!important;
    height: 60px;
}

.man-block__form .input__label {
    color: #B4BEC8;
}


.menu-18 {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.35;
}
.input__label {
    display: block;
    padding-left: 30px;
    margin-bottom: 2px;
    text-align: left;
}
.man-block__form .input__label {
    color: #B4BEC8;
}

.man-block__form .btn {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    height: 60px;
}

.man-block__actions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 10px;
}
.man-block__form {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 30px;
    position: relative;
}


.mask-dark {
    background-color: #000000;
    opacity: 0.5;
}


/* Larger than mobile screen < 568px */
@media screen and (max-width: 35.5em) {
.man-block {
    flex-direction: column;
}
.man-block__left {
    margin-right: 0;
    display: none;
}
.man-block__right {
    padding: 3rem 0 1.5rem;
}
.man-block__actions {
    padding-top: 20px;
    flex-direction: column;
}
.man-block__wa {
    display: flex;
    justify-content: space-around;
    position: relative;
    width: 100%;
        display: none;
}
.menu-18 {display: none;}
.input{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.man-block__form .btn {
/*    display: flex;
    position: relative;
    margin: 5px auto 10px;*/
}
.man-block__form {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
}
.man-block__form .btn, .input-text, .btn--wa, .btn--tg {
    height: 5rem;}
}



/* Основные стили аккордеона */
#prices{
    background-color: #3c4879;
    padding: 60px 0;
    color: white;
}
#prices h2{
    color: white;
}

.price__heading {
    text-align: center;
}

.price__table {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 22%);
}

.price__table-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
/*    background-color: #141e46;*/
background-color: #ffffff;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.price__table-heading:hover {
/*    background-color: #596aae;*/
}

.price__table-heading h3 {
    margin: 0;
    font-weight: 600;
    font-size: 3rem;
    color: #141e46;
}
.price__table-heading:hover h3{
/*    color: #fff;*/
}
.price__table-toggler {
    display: flex;
    align-items: center;
}

.price__table-toggler-icon {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.price__table-toggler-icon.rotated {
    transform: rotate(90deg);
}

/* Скрытый контент */
.price__table-wrapper {
    background-color: #fff;
    transition: all 0.5s ease;
}

.price__table-toggler {
    cursor: pointer;
}

.price__table-toggler-icon {
    transition: transform 0.3s ease;
}

.price__table-toggler.open .price__table-toggler-icon {
    transform: rotate(180deg);
}

/* Стили таблицы */
.table7 {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    color: var(--color-blue);
}
.table7 tbody
{font-size: 18px;}

.table7 th, .table7 td {
    border: 1px solid #f3f3f3;
    padding: 20px 25px;
    text-align: left;
/*    white-space: nowrap;*/
}

.table7 td {
    text-align: center;
}

.table7 th {
/*    background-color: #f1f1f1;*/
/*    background-color: #141e46;*/
/*    background-color: #596aae;*/
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

.table7 th:first-child, .table7 td:first-child {
    text-align: left;
}

.table7 tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.table7 tbody tr:hover {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Для плавного скролла на iOS */
}

.table-responsive .table7 {
    min-width: 100%; /* Убедитесь, что таблица будет скроллиться, если её ширина превышает контейнер */
    border-collapse: collapse;
}
.price__table-heading-name {display: flex;
    align-items: center;}
.price__table-heading-name img{
    width: 100px;
    margin-right: 30px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .price__table-heading {
        justify-content: space-between;
        align-items: center;
    }

    .price__table-heading h3 {
        font-size: 16px;
    }

    .table7, .table7 tbody {
        font-size: 10px;
    }

    .table7 th, .table7 td {
        padding: 5px 8px;
    }
    .price__table-wrapper {
    display: none;
}   
.table7 tbody tr:nth-child(odd), .table7 tbody tr {
    background-color: #ffffff;
}
.table7 th, .table7 td {
    border: 1px solid #f3f3f3;
    border-left: none;
    border-right: none;
}
.table7 th {border:none;text-transform: none;padding: 10px 8px 5px;
}
.price__table-heading-name img {
    width: 60px;
    margin-right: 30px;
}
}


/* Скрыть элемент на всех устройствах */
.d-none {
    display: none !important;
}

/* Скрыть элемент на устройствах с шириной экрана md (768px) и выше */
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}

/* Отобразить элемент как блок на устройствах с шириной экрана md (768px) и выше */
@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}
