.directions_search_box {
    width: 100%;
}

.directions_search_box .ip_cell {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.directions_search_box .input_text {
    width: 100%;
}

.input_text.ip_search, 
.select2-container .select2-selection--multiple.ip_search, 
.select2-container--default .select2-selection--multiple.ip_search {
    background-image: url(../../img/i_search.svg);
    background-position: 17rem 50%;
    background-repeat: no-repeat;
    padding-left: 50rem;
}

.directions_search_box .button-search {
    position: relative;
    flex-shrink: 0;
    margin-left: -7rem;
    margin-right: 0;
    background-color: var(--text-white-color);
}

.search_flex {
    display: flex;
    justify-content: space-between;
}

.search_flex .filters_nav {
    flex-shrink: 0;
    margin-right: 27rem;
}

.search_flex .custom_dropdown_box {
    margin-right: 20rem;
}

.search_flex>*:last-child {
    margin-right: 0;
}

.button-o.button-search {
    height: 40rem;
    padding: 7rem 20rem;
    font-size: 14rem;
    color: #4F5159;
    border-color: #4F5159;
}

.button-o.button-search:hover {
    background-color: #0086FF;
    border-color: #0086FF;
    color: var(--text-white-color);
}

.directions_box {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20rem;
    width: 100%;
}

.direction_item {
    position: relative;
    width: 100%;
    min-height: 255rem;
    padding: 20rem 30rem;
    border: 1rem solid #dadada;
    border-radius: 10rem;
    background: linear-gradient(131.01deg, #0086FF 26.75%, #086AC2 95.59%);
    transition: all 0.3s ease;
    grid-column-end: span 4;
}

.direction_item[onclick] {
    cursor: pointer;
}

.direction_item h3 {
    margin: 0;
    margin-bottom: 5rem;
    font-weight: 600;
    font-size: 21rem;
    line-height: 150%;
}

.direction_item h3 a {
    color: inherit;
    transition: none;
}

.direction_item h3 a:hover {
    text-decoration: none !important;
}

.direction_item .relative {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.direction_item:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    background: #Fff;
    border: 1rem solid #dadada;
    border-radius: 10rem;
    transition: all 0.3s ease;
    opacity: 1;
}

.direction_item:hover {
    color: var(--text-white-color);
}

.direction_item:hover:before {
    opacity: 0;
}

.direction_item:hover h3 a {
    color: var(--text-white-color);
    text-decoration: underline;
}

.direction_item-desc {
    display: flex;
    flex-direction: column;
    gap: 5rem 0;
    min-height: 72rem;
    font-size: 16rem;
    line-height: 150%;
    color: var(--text-main-color-transparent90);
    margin-bottom: 10rem;
}

.direction_item:hover .direction_item-desc {
    color: var(--text-white-color);
}

.direction_item-persons {
    display: flex;
    flex-wrap: wrap;
}

.person_item_small {
    display: inline-block;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    overflow: hidden;
}

.person_item_small:not(:first-child) {
    margin-left: -10rem;
}

.person_item_small.more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 40rem;
    height: 40rem;
    margin-left: 15rem;
    background: url(../../img/new-site/icons/arrow-nav-blue-opacity.svg) center/18rem no-repeat var(--gray-bg-color);
    border-radius: 40rem;
    overflow: hidden;
    font-size: 0;
}

.person_item_small.more:hover,
.direction_item:hover .person_item_small.more {
    background: url(../../img/new-site/icons/arrow-nav-blue.svg) center/18rem no-repeat var(--white-color);
    transform: rotate(-45deg);
}

.sec-bg-pic {
    position: relative;
    background-color: #333d61;
}

.pic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pic-bg img {
    min-width: 100%;
    object-fit: cover;
    max-width: initial;
    min-height: 100%;
    width: 100%;
}

.sec-bg-pic .container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10rem 0;
    z-index: 2;
}

.sec-bg-pic h1 {
    color: var(--text-white-color);
}

.sec-bg-pic .subheader {
    max-width: 915rem;
    color: var(--text-white-color);
}

.nav-wrap {
    line-height: 0;
}

.nav-wrap .container {
    position: relative;
    line-height: 22rem;
}

.nav {
    display: flex;
    margin: 0;
    padding: 0;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    border-radius: 15rem;
    box-shadow: 0rem 4rem 25rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nav li {
    flex-grow: 1;
    display: flex;
}

.nav li a {
    position: relative;
    flex-grow: 1;
    color: #3C3E45;
    font-size: 18rem;
    overflow: hidden;
    height: 60rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav li.current a,
.nav li a:hover {
    color: #0086FF;
}

.page-promo {
    padding-top: 30rem;
}

.index_video-area {
    display: flex;
    justify-content: space-between;
}

.index_video-right {
    position: relative;
    width: 50%;
    max-width: 560rem;
}

.index_video-area.ver-3 .index_video-right {
    max-width: 672rem;
}

.index_video-area.ver-4 {
    align-items: center;
}

.index_video-area.ver-4 .index_video-left {
    padding: 0;
}

.youtube_preview {
    margin-bottom: 30rem;
    border-radius: 10rem;
}

.youtube_link {
    position: relative;
    display: inline-block;
    margin-bottom: 15rem;
    border-radius: 10rem;
    overflow: hidden;
    line-height: 0;
}

.youtube_link:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60rem;
    height: 60rem;
    background: url(../../img/i_play_btn2.svg) center/contain no-repeat;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0rem 0rem 20rem rgba(0, 0, 0, 0.35));
    transition: all 0.3s ease;
}

.youtube_link:hover:after {
    transform: translate(-50%, -50%) scale(0.9);
}

.index_video-left {
    width: 40%;
    font-size: 16rem;
    line-height: 150%;
}

.index_video-area.ver-3 .index_video-left {
    width: 45%;
    padding-top: 30rem;
}

.index_video-left h2 {
    margin: 0;
    font-size: 54rem;
    line-height: 100%;
    margin: 0;
    margin-bottom: 10rem;
}

.index_video-area.ver-3 .index_video-left h2 {
    font-size: 24rem;
    line-height: 1.3;
    color: #282828;
}

.index_video-area.ver-3 .index_video-left p {
    font-size: 16rem;
    line-height: 1.5;
}

.content_txt {
    padding: 30rem 0;
}

.txt_expand {
    position: relative;
    max-height: 250rem;
    overflow: hidden;
    transition: all .3s ease;
}

.txt_expand-open {
    max-height: 100000rem;
    padding-bottom: 65rem;
}

.txt_expand::after {
    content: '';
    display: block;
    height: 150rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 60%);
    pointer-events: none;
}

.gray-bg .txt_expand::after {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f8f8f8 60%);
}

.txt_expand-open::after,
.gray-bg .txt_expand-open::after {
    background: none;
}

.text-content,
.text-content p,
.index_video-area.ver-3 .index_video-left .text-content p {
    font-size: 18rem;
    line-height: 1.8;
}

.content_txt p,
.content_txt ul,
.content_txt ol {
    margin: 20rem 0;
    font-size: 16rem;
    line-height: 1.8;
}

.button-o.arr_down {
    height: 40rem;
    padding: 0 15rem 0 40rem;
    color: #0086FF;
    border-color: #0086FF;
    font-size: 14rem;
    line-height: 38rem;
    font-weight: 600;
}

.button-o.arr_down:hover {
    background-color: #0086FF;
    color: var(--text-white-color);
}

.button-o.arr_down:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 24rem;
    line-height: 1.2em;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 15rem;
    transform: translateY(-50%);
    transition: all .2s;
}

.txt_expand .button-o,
.txt_expand .button-open {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.teachers_slider {
    padding-bottom: 50rem;
}

.teacher_slide {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1180rem;
    margin: auto;
    padding: 0 20rem;
}

.teacher_slide:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 30rem;
    width: 200rem;
    height: 154rem;
    background: url(../../img/bqg.svg) no-repeat;
    background-size: contain;
}

.teacher_slide-info {
    width: 261rem;
}

.teacher_slide-img {
    width: 261rem;
    height: 261rem;
    margin-bottom: 20rem;
    border-radius: 100%;
    background: #3C3E45;
    overflow: hidden;
}

.teacher_slide-img img {
    width: 100% !important;
    max-width: 100%;
}

.teacher_slide-name {
    margin-bottom: 20rem;
    font-size: 18rem;
    font-weight: 700;
    text-align: center;
}

.teacher_slide-post {
    font-size: 18rem;
    font-weight: 200;
    text-align: center;
}

.teacher_slide-text {
    position: relative;
    max-width: 710rem;
    font-weight: 500;
    font-size: 18rem;
    line-height: 32rem;
    z-index: 2;
}

.teachers_slider .swiper-button-prev {
    left: 5rem;
    background: url(../../img/arrow-slider-left.png) center/contain no-repeat !important;
}

.teachers_slider .swiper-button-next {
    right: 5rem;
    background: url(../../img/arrow-slider-right.png) center/contain no-repeat !important;
}

.index_specs_sec .subheader {
    max-width: 580rem;
    margin-top: 20rem;
    font-size: 20rem;
}

.index_experts_box {
    margin-top: 40rem;
}

.index_experts_box:not(.swiper) {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40rem 20rem;
    width: 100%;
}

.index_experts_box.swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40rem 20rem;
    width: 100%;
}

.expert_item {
    display: flex;
    width: 100%;
    padding: 0 24rem;
    grid-column-end: span 4;
}

.swiper-initialized .expert_item {
    width: auto;
    max-width: 400rem;
    height: 100%;
    padding: 15rem;
    background: var(--gray-bg-color);
    border-radius: 10rem;
    grid-column-end: span 12;
}

.expert_item-img_box {
    position: relative;
    flex-shrink: 0;
    width: 180rem;
    height: 180rem;
    margin-right: 25rem;
    margin-bottom: 15rem;
    text-align: center;
}

.expert_item-img {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.expert_item-img img {
    width: 100% !important;
}

.expert_rang {
    position: relative;
    display: inline-block;
    height: 26rem;
    line-height: 26rem;
    border-radius: 10rem;
    background-color: #F8F8F8;
    padding: 0 12rem;
    padding-left: 28rem;
    font-size: 12rem;
    white-space: nowrap;
}

.expert_rang.blue {
    background: #0086FF;
    color: var(--text-white-color);
}

.expert_item-img_box .expert_rang {
    top: -26rem;
}

.no-rang {
    min-height: 26rem;
    height: auto;
    padding: 4rem 12rem;
    line-height: 1.5;
    white-space: normal;
}

.expert_rang img {
    position: absolute;
    top: -6rem;
    left: -8rem;
}

.expert_item-info {
    padding-top: 20rem;
}

.expert_item-info h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16rem;
    font-weight: 600;
}

.expert_item_spec h5 {
    margin-bottom: 17rem;
    color: #0086FF;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert_item-city {
    font-size: 12rem;
    color: #787885;
    font-weight: 500;
}

.expert_item-city:before {
    content: '\f041';
    font-family: 'FontAwesome';
    margin-right: 5rem;
}

.expert_item-direction {
    font-size: 12rem;
    color: #787885;
    line-height: 16rem;
    padding-top: 2rem;
    margin-bottom: -3rem;
}

.expert_item-desc {
    margin-bottom: 20rem;
}

.expert_item-direction + .expert_item-desc {
    margin-top: 8rem;
}

.index_experts_box .expert_item-desc {
    font-size: 12rem;
    line-height: 150%;
}

.expert_item-desc a {
    color: #3C3E45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expert_item-desc p {
    display: none;
}

.expert_item-desc p:first-child {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-page-3card-slider:not(.owl-carousel) {
    margin-top: 20rem;
	padding-right: 35rem;
}

.blog-card {
    max-width: 432rem;
    width: 100%;
    height: auto;
    margin-bottom: 40rem;
    background: #F8F8F8;
    border-radius: 10rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-card:hover,
.blog-card:active {
    box-shadow: var(--main-shadow);
}

.section-from-blog .blog-card {
    margin-bottom: 0;
}

.blog-card-info-top {
    padding: 15rem 20rem;
}

.blog-card-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card-author {
    display: flex;
    align-items: center;
    min-height: 60rem;
}

.blog-card-author-img {
    position: relative;
    width: 60rem;
    min-width: 60rem;
    height: 60rem;
    margin-right: 10rem;
    border-radius: 50%;
    overflow: hidden;
}

.blog-card-author-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-author-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 16rem;
    line-height: 150%;
    color: #282828;
}

.blog-card-img {
    position: relative;
    display: block;
    width: 100%;
    height: 280rem;
}

.blog-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-info {
    display: flex;
    flex-direction: column;
    padding: 20rem;
}

.blog-card-title {
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 99rem;
    margin: 0 0 20rem;
    font-weight: 600;
    font-size: 22rem;
    line-height: 150%;
    color: #3C3E45;
}

.blog-card-title a,
a.blog-card-title {
    color: #3C3E45;
}

.blog-card-title a:hover,
a.blog-card-title:hover {
    color: #0075DF;
}

.blog-card-text-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.blog-card-date {
    font-weight: 500;
    font-size: 16rem;
    line-height: 150%;
    color: #878787;
}

.corporate-offer-element-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 320rem;
    width: 100%;
    height: auto;
    padding: 30rem;
    background: url(../../img/corporate-offer-element-banner.png) center/cover no-repeat #0086FF;
    box-shadow: 0rem 4rem 25rem rgba(0, 0, 0, 0.1);
    border-radius: 15rem;
}

.section-from-blog .corporate-offer-element-banner {
    max-width: 432rem;
}

.corporate-offer-banner-title {
    font-weight: 800;
    font-size: 30rem;
    line-height: 150%;
    color: var(--text-white-color);
    margin-bottom: 30rem;
}

.corporate-offer-element-banner .button {
    display: flex;
    align-items: center;
    font-weight: 700;
    line-height: 150%;
    margin: 0;
    height: auto;
    min-height: 56rem;
    border-color: transparent;
    box-shadow: none;
}

.blog-page-4card-slider:not(.owl-carousel) {
    margin-top: 20rem;
	padding-right: 15rem;
}

.blog-page-4card-slide {
	position: relative;
	display: block;
	max-width: 320rem;
	width: 100%;
	background: #F8F8F8;
	border-radius: 10rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.gray-bg .blog-page-4card-slide {
	background: #fff;
}

.blog-page-4card-slide:hover,
.blog-page-4card-slide:active {
	box-shadow: var(--main-shadow);
}

.blog-page-4card-slide-img {
	position: relative;
	max-width: 320rem;
	width: 100%;
	height: 213rem;
	border-radius: 10rem 10rem 0rem 0rem;
	overflow: hidden;
}

.blog-page-3card-slider .blog-page-4card-slide-img {
	max-width: 260rem;
	height: 173rem;
}

.blog-page-4card-slide-img img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100% !important;
	height: 100%;
	object-fit: cover;
}

.blog-page-4card-slide-info {
	padding: 10rem 25rem 20rem 20rem;
}

.blog-page-4card-slide-title {
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	min-height: 70rem;
	margin: 0 0 15rem;
	font-weight: 500;
	font-size: 16rem;
	line-height: 150%;
	color: #3C3E45;
}

.blog-page-4card-slide-title a {
	color: #3C3E45;
}

.blog-page-4card-slide-title a:hover {
	color: #0075DF;
}

.blog-page-4card-slide-text-wrapper {
	display: flex;
	justify-content: space-between;
}

.blog-page-4card-slide-date {
	font-weight: 500;
	font-size: 14rem;
	line-height: 150%;
	color: #878787;
}

.blog-page-4card-slide-viewed {
	position: relative;
	padding-left: 28rem;
	font-size: 16rem;
	line-height: 170%;
	color: #878787;
}

.blog-page-4card-slide-viewed::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 20rem;
	height: 20rem;
	background: url(../../img/i_viewed.png) center/contain no-repeat;
}

.all-events-compilation .blog-page-4card-slide {
    max-width: 290rem;
    margin-bottom: 10rem;
    transition: all 0.3s ease;
}

.section-event-page2 .all-events-compilation .blog-page-4card-slide {
    max-width: 320rem;
    margin-bottom: 0;
    background: #fff;
}

.all-events-compilation .blog-page-4card-slide:hover,
.all-events-compilation .blog-page-4card-slide:active {
    box-shadow: var(--main-shadow);
}

.all-events-compilation .blog-page-4card-slide-img {
    display: block;
    max-width: 290rem;
    width: 100%;
    height: 191rem;
}

.all-events-compilation .blog-page-4card-slide-img {
    max-width: 320rem;
    height: 213rem;
}

.all-events-compilation .blog-page-4card-slide-info {
    padding: 15rem 15rem 25rem;
}

.all-events-card-dates {
    position: relative;
    display: flex;
    align-items: baseline;
    margin-top: 10rem;
    font-weight: 600;
    font-size: 22rem;
    line-height: 150%;
    color: #4F5159;
}

.all-events-card-date {
    position: relative;
    display: inline-block;
}

.all-events-card-date:first-child {
    margin-right: 5rem;
}
  
.all-events-card-date:last-child {
    margin-left: 5rem;
}
  
.all-events-card-year {
    position: absolute;
    top: -10rem;
    left: 0;
    font-weight: 500;
    font-size: 12rem;
    line-height: 16rem;
    color: #878787;
}
  
.all-events-card-times {
    margin-left: 5rem;
    font-weight: 600;
    font-size: 18rem;
    line-height: 25rem;
}
  
.all-events-card-type {
    margin-top: 20rem;
    font-weight: 600;
    font-size: 18rem;
    line-height: 150%;
    color: #787885;
}

.all-events-compilation .all-events-card-dates {
    margin-top: 20rem;
    font-size: 18rem;
}

.all-events-compilation .all-events-card-year {
    font-size: 10rem;
}

.all-events-compilation .all-events-card-times {
    font-size: 16rem;
}

.all-events-compilation .all-events-card-type {
    margin-bottom: 5rem;
    font-size: 14rem;
}

.all-events-compilation .blog-page-4card-slide-title {
    min-height: 81rem;
    margin-bottom: 20rem;
    font-size: 18rem;
}

.all-events-compilation .all-events-card-price {
    position: relative;
    top: auto;
    left: 0;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: auto;
}

.all-events-card-author-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.all-events-card-author {
    display: flex;
    align-items: center;
    min-height: 42rem;
    color: var(--blue-color);
}

.all-events-card-author:hover {
    color: var(--blue-hover-color);
}

.all-events-card-author-img {
    position: relative;
    width: 30rem;
    min-width: 30rem;
    height: 30rem;
    margin-right: 10rem;
    border-radius: 50%;
    overflow: hidden;
}

.all-events-card-author-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
}

.all-events-card-author-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300rem;
    font-size: 14rem;
    line-height: 150%;
}

.all-events-card-price {
    position: absolute;
    top: 22rem;
    right: 15rem;
    padding: 8rem 10rem 8rem 40rem;
    background: transparent;
    border: 1rem solid #787885;
    border-radius: 12rem;
    font-weight: 800;
    font-size: 16rem;
    line-height: 150%;
    color: #787885;
    z-index: 1;
}

.all-events-compilation .all-events-card-price {
    position: relative;
    top: auto;
    left: 0;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: auto;
}

.all-events-card-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10rem;
    bottom: 0;
    margin: auto;
    width: 24rem;
    height: 24rem;
    background: url(../../img/i_confirmation_number.svg) center/contain no-repeat;
}

a.all-events-card-price:hover {
    background: #0086FF;
    border-color: transparent;
    color: var(--text-white-color);
}

.all-events-card-price.superprice {
    background: #F57575;
    border-color: transparent;
    color: var(--text-white-color);
}

.all-events-card-price.superprice::before {
    background: url(../../img/i_confirmation_number-white.svg) center/contain no-repeat;
}

a.all-events-card-price.superprice:hover {
    background: #f78d8d;
}

.section-event-page2.white-bg .all-events-compilation .blog-page-4card-slide {
    background: #F8F8F8;
}

.services-slide {
    display: flex;
    flex-direction: column;
    max-width: 432rem;
    width: 100%;
    height: auto;
    padding: 20rem 25rem;
    background: #FFFFFF;
    border-radius: 10rem;
}

.section-page.white-bg .services-slide {
    background: #F8F8F8;
}

.services-slide-autor {
    display: flex;
    align-items: center;
}

.services-slide-autor-img {
    position: relative;
    display: block;
    width: 35rem;
    min-width: 35rem;
    height: 35rem;
    border-radius: 35rem;
    margin-right: 15rem;
    overflow: hidden;
}

.services-slide-autor-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-slide-autor-info {
    display: flex;
    flex-direction: column;
    gap: 5rem 0;
}

.services-slide-autor-name {
    position: relative;
    font-weight: 600;
    font-size: 14rem;
    line-height: 1;
    color: #3C3E45;
}

.services-slide-autor-status {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 12rem;
    line-height: 1;
    color: #4F5159;
    opacity: 0.8;
}

.services-slide-service-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 30rem;
}

.services-slide-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 10rem;
    font-weight: 600;
    font-size: 20rem;
    line-height: 130%;
    color: #000;
}

.services-slide-text a {
    color: #000;
}

.services-slide-text2 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 72rem;
    margin-bottom: 30rem;
    font-weight: 500;
    font-size: 16rem;
    line-height: 150%;
    color: #3C3E45;
    opacity: 0.8;
}

.services-slide-text2 p {
    margin: 0;
}

.services-slide-tags {
    margin-top: auto;
}

.services-slide-tag {
    display: inline-block;
    max-width: 300rem;
    min-height: 28rem;
    margin-right: 7rem;
    margin-bottom: 7rem;
    padding: 0;
    font-size: 14rem;
    line-height: 26rem;
    color: #787885;
}

.services-slide-tags .tag {
    padding: 0;
}

.services-slide-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 432rem;
    width: 100%;
    height: auto;
    padding: 30rem;
    background: url(../../img/experts-academy-element-banner.png) center/cover no-repeat;
    border-radius: 15rem;
}

.experts-academy-banner-title {
    font-weight: 700;
    font-size: 20rem;
    line-height: 150%;
    color: var(--text-white-color);
    margin-bottom: 25rem;
}

.services-slide-banner .button {
    display: flex;
    align-items: center;
    font-weight: 700;
    line-height: 150%;
    margin: 0;
    height: auto;
    min-height: 56rem;
    border-color: transparent;
    box-shadow: none;
}

.tag {
    display: inline-block;
    margin-right: 7rem;
    margin-bottom: 7rem;
}

.tag.hide {
    display: none;
}

.tag span,
.tag b.tag-hovered {
    display: inline-block;
    max-width: 300rem;
    min-height: 28rem;
    background: #F8F8F8;
    border-radius: 10rem;
    padding: 0 10rem;
    color: #787885;
    line-height: 26rem;
    font-size: 14rem;
}

.tag span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag b.tag-hovered {
    display: none;
}

.tag u {
    text-decoration: none;
}

.tag:hover span {
    background-color: #E3F2FF;
    color: #787885;
}

.tag:hover b.tag-hovered {
    display: inline-block;
    position: absolute;
    font-weight: 500;
    pointer-events: none;
    background-color: #E3F2FF;
    color: #787885;
}

.tag.more {
    display: none;
}

.default-slider-3 {
    margin-top: 20rem;
}

.join_us_box {
    position: relative;
    background: radial-gradient(50% 50% at 50% 50%, #0086FF 0%, #006AC9 75%);
    padding-top: 130rem;
    padding-bottom: 130rem;
    color: var(--text-white-color);
    font-size: 18rem;
    line-height: 150%;
}

.join_us_box .container {
    text-align: center;
    position: relative;
    max-width: 900rem;
    z-index: 2;
}

.join_us_box h2 {
    margin: 0;
    margin-bottom: 35rem;
}

.join_us_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10rem;
    max-width: 700rem;
    width: 100%;
    margin: 0 auto;
}

.join_us_box .button {
    font-size: 18rem;
}

.join_us_box .button.white {
    border: none;
    box-shadow: none;
}

.join_us_bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../img/join_us_bg.png) no-repeat 50% 50% fixed;
}

.join_us_box-v2 {
    padding: 60rem 0;
    background: radial-gradient(50% 50% at 50% 50%, #f2f2f2 0%, #f8f8f8 75%);
    box-shadow: 0rem 4rem 25rem 0rem rgba(0, 0, 0, 0.10);
    color: #3C3E45;
    overflow: hidden;
}

.join_us_box-v3 {
    padding: 60rem 0;
    background: radial-gradient(50% 50% at 50% 50%, #f2f2f2 0%, #f8f8f8 75%);
    box-shadow: 0rem 4rem 25rem 0rem rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.join_us_bg-v2 {
    background: url(../../img/join_us_bg2.jpg) center/cover no-repeat;
}

.join_us_bg-v3 {
    background: url(../../img/join_us_bg3.png) center/cover no-repeat;
}

.join_us_box-v2 h2 {
    color: #000;
}

.section-personal-consultation-v2 {
    padding-top: 0;
}

.section-personal-consultation .join_us_box {
    text-align: center;
    padding: 70rem 0;
    border-radius: 15rem;
}

.section-personal-consultation .join_us_bg {
    z-index: auto;
}

.section-personal-consultation .join_us_box h2,
.section-personal-consultation .join_us_box-title {
    position: relative;
    max-width: 700rem;
    width: 100%;
    margin: 0 auto 20rem;
    font-weight: 800;
    font-size: 32rem;
    line-height: 1.25;
}

.section-personal-consultation .join_us_box p {
    position: relative;
    max-width: 700rem;
    width: 100%;
    margin: 0 auto 30rem;
    font-size: 20rem;
}

.section-personal-consultation .join_us_box .button {
    position: relative;
    width: fit-content;
    margin: 0;
    font-weight: 600;
}

.labs-top-wrapper {
    margin-top: 30rem;
}

.labs-top-text {
    margin-bottom: 10rem;
    font-size: 14rem;
    line-height: 1;
    color: var(--text-white-color);
}

.sec-bg-pic .expert_item-tags {
    margin-bottom: 0;
}

.sec-bg-pic .tag {
    margin-right: 10rem;
    margin-bottom: 10rem;
}

.sec-bg-pic .tag span,
.sec-bg-pic .tag b.tag-hovered {
    max-width: none;
    font-weight: 400;
    font-size: 16rem;
    line-height: 34rem;
    background: #fff;
}

.sec-bg-pic .tag:hover b.tag-hovered {
    background-color: #E3F2FF;
}

.txt_expand h2 {
    font-size: 24rem;
    line-height: 1.5;
}

.button-open.arr_down {
    padding: 0 40rem 0 0;
    background: none;
    border: 0;
    font-size: 16rem;
    line-height: 1.5;
    color: #0086FF;
}

.button-open.arr_down:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 22rem;
    transform: translateY(-50%);
    transition: all .2s;
}

.txt_expand-open .arr_down:before {
    transform: translateY(-50%) rotateX(180deg);
}

.goals-and-problems-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.goals-and-problems-element {
    max-width: calc(50% - 15rem);
    width: 100%;
    padding: 30rem;
    background: #EAF5FF;
    border-radius: 20rem;
}

.goals-and-problems-element.blue {
    background: #EAF5FF;
}

.goals-and-problems-element.orange {
    background: #FFEED4;
}

.goals-and-problems-element-title {
    margin-bottom: 20rem;
    font-weight: 600;
    font-size: 24rem;
    line-height: 1.25;
}

.goals-and-problems-element-list {
    display: flex;
    flex-direction: column;
}

.goals-and-problems-element-item {
    position: relative;
    max-width: calc(100% - 30rem);
    margin-bottom: 20rem;
    padding-left: 30rem;
    font-size: 16rem;
    line-height: 1.5;
    color: #4F5159;
}

.goals-and-problems-element-item::before {
    content: '';
    position: absolute;
    top: 4rem;
    left: 0;
    width: 15rem;
    height: 15rem;
    background: url(../../img/i_check.svg) center/contain no-repeat;
}

.experts-academy-list {
    margin-top: 40rem;
}

.section-page-title {
    margin-bottom: 20rem;
}

@media (min-width: 481px) {
    .swiper-experts-academy-mobile .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20rem;
    }

    .swiper-experts-academy-mobile .experts-academy-element {
        max-width: calc(25% - 15rem);
    }
}

.experts-academy-element {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 320rem;
    width: 100%;
    height: auto;
    padding: 30rem;
    background: #F8F8F8;
    border-radius: 15rem;
    transition: all 0.3s ease;
}

.gray-bg .experts-academy-element {
    background: #fff;
}

.experts-academy-element:hover,
.experts-academy-element:active {
    box-shadow: var(--main-shadow);
}

.experts-academy-element .expert_item {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0;
    border: 0;
    background: none;
}

.experts-academy-element .expert_item-img_box {
    position: relative;
    flex-shrink: 0;
    max-width: 220rem;
    width: 100%;
    height: 220rem;
    margin: 0 auto 15rem;
    text-align: center;
}

.experts-academy-element .expert_item-info h5,
.experts-academy-element .expert_item-info h4 {
    font-weight: 700;
    font-size: 20rem;
    margin-top: 0;
    margin-bottom: 10rem;
}

.experts-academy-element .expert_item-desc a {
    font-size: 14rem;
    line-height: 150%;
    color: #4F5159;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.experts-academy-element .expert_item-caf a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14rem;
    line-height: 150%;
    color: #787885;
}

.modal-speaker-wrapper {
    display: flex;
}

.modal-speaker-img {
    position: relative;
    width: 120rem;
    min-width: 120rem;
    height: 120rem;
    margin-right: 30rem;
    border-radius: 120rem;
    overflow: hidden;
}

.modal-speaker-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-speaker-info {
    max-width: 490rem;
    width: 100%;
}

.modal-speaker-name {
    font-weight: 600;
    font-size: 30rem;
    line-height: 1.3;
}

a.modal-speaker-name {
    color: #0086FF;
}

.modal-speaker-status {
    margin-top: 6rem;
    font-weight: 600;
    font-size: 16rem;
    line-height: 1.3;
}

.modal-speaker-text {
    margin-top: 16rem;
    font-weight: 500;
    font-size: 16rem;
    line-height: 1.3;
}

.modal-speaker-link-main-site {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 39rem;
    padding-left: 126rem;
    margin-top: 16rem;
    font-weight: 500;
    font-size: 16rem;
    line-height: 1.3;
    text-decoration-line: underline;
    color: #0086FF;
}

.modal-speaker-link-main-site::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 102rem;
    height: 39rem;
    background: url(../../img/logo.svg) center/contain no-repeat;
}

@media (max-width: 480px) {
    .content_sec.sec-bg-pic {
        padding: 40rem 0;
    }

    .sec-bg-pic h1 {
        font-size: 32rem;
    }

    .sec-bg-pic .subheader {
        font-size: 14rem;
    }

    .nav-wrap {
        display: none;
    }

    .index_video-area {
        flex-direction: column; 
    }

    .index_video-left,
    .index_video-right {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .index_video-area.ver-3 .index_video-left {
        width: 100%;
        padding-top: 0;
    }

    .index_video-left {
        text-align: left;
    }

    .index_video-area.ver-3 .index_video-left h2 {
        margin-bottom: 20rem;
        font-size: 20rem;
        line-height: 1.2;
    }

    .index_video-area.ver-3 .index_video-left p {
        font-size: 14rem;
        line-height: 1.4;
        margin: 20rem 0;
    }

    .youtube_link:after {
        width: 40rem;
        height: 40rem;
    }

    .directions_mobile.mobile-visible {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20rem;
    }

    .directions_mobile .button-search {
        margin-left: 10rem;
        padding: 0;
        width: 40rem;
        border-color: #dadada;
        font-size: 18rem;
        color: #787885;
    }

    .directions_mobile .button-search .fa {
        color: #787885;
    }

    .directions_mobile .button-search:hover .fa {
        color: var(--text-white-color);
    }

    .direction_item {
        min-height: auto;
        padding: 15rem 20rem;
        grid-column-end: span 12;
    }

    .direction_item h3 {
        font-size: 16rem;
    }

    .direction_item-desc {
        font-size: 12rem;
    }

    .content_txt p,
    .content_txt ul,
    .content_txt ol {
        font-size: 14rem;
        line-height: 20rem;
    }

    .teacher_slide {
        flex-direction: column;
        padding: 0;
    }

    .teacher_slide:before {
        width: 120rem;
        height: 84rem;
    }

    .teacher_slide-info {
        width: auto;
    }

    .teacher_slide-img {
        width: 150rem;
        height: 150rem;
        margin: 0 auto 20rem;
    }

    .teacher_slide-text {
        margin: 20rem 0;
        font-size: 16rem;
        line-height: 28rem;
    }

    .teachers_slider .swiper-arrow {
        display: none;
    }

    .index_specs_sec .subheader {
        font-size: 12rem;
    }

    .index_experts_box.swiper .swiper-wrapper {
        display: flex;
        gap: 0;
    }

    .expert_item {
        flex-direction: column;
        max-width: 320rem !important;
        width: 100% !important;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .expert_item-img_box {
        margin-left: auto;
        margin-right: auto;
    }

    .blog-card-author {
        min-height: 42rem;
    }

    .blog-card-author-img {
        width: 30rem;
        min-width: 30rem;
        height: 30rem;
        border-radius: 30rem;
    }

    .blog-card-author-name {
        font-size: 14rem;
    }

    .blog-card-img {
        height: auto;
    }

    .blog-card-img img {
        position: static;
        width: 100% !important;
        height: auto;
        object-fit: contain;
    }

    .blog-card-info {
        padding: 20rem;
    }

    .blog-card-title {
        min-height: auto;
        font-size: 16rem;
    }

    .blog-card-date {
        font-size: 14rem;
    }

    .corporate-offer-banner-title {
        font-size: 24rem;
    }

    .corporate-offer-element-banner,
    .section-from-blog .corporate-offer-element-banner,
	.experts-academy-element-banner,
    .experts-academy-list-v2 .experts-academy-element,
    .supervisor-and-orgs-element,
    .corporate-offer-element,
    .academy-smi-element,
    .academy-smi-element-banner,
    .section-event-page2 .all-events-compilation .blog-page-4card-slide,
    .all-events-compilation .blog-page-4card-slide-img {
        max-width: 100%;
    }

    .section-personal-consultation .join_us_box {
        padding: 50rem 25rem;
    }

    .section-personal-consultation .join_us_box h2,
    .section-personal-consultation .join_us_box-title {
        font-size: 20rem;
    }

    .section-personal-consultation .join_us_box p {
        font-size: 16rem;
    }

    .section-personal-consultation .join_us_button {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: fit-content;
        margin: 0 auto;
    }

    .join_us_box .button {
        font-size: 16rem;
    }

    .section-page-title {
        font-size: 24rem;
    }

    .sec-bg-pic .tag {
        padding: 0;
    }

    .sec-bg-pic .tag span, 
    .sec-bg-pic .tag b.tag-hovered {
        font-size: 14rem;
        line-height: 28rem;
    }

    .goals-and-problems-list {
        flex-direction: column;
    }

    .goals-and-problems-element {
        max-width: 100%;
        margin-bottom: 20rem;
        padding: 20rem 15rem;
        border-radius: 10rem;
    }

    .goals-and-problems-element:last-child {
        margin-bottom: 0;
    }

    .goals-and-problems-element-title {
        font-size: 20rem;
    }

    .goals-and-problems-element-item {
        margin-bottom: 10rem;
        padding-left: 24rem;
        font-size: 14rem;
    }

    .goals-and-problems-element-item::before {
        top: 2rem;
    }

    .modal-speaker-img {
        width: 60rem;
        min-width: 60rem;
        height: 60rem;
        margin-right: 20rem;
        border-radius: 60rem;
    }

    .modal-speaker-name {
        font-size: 18rem;
    }

    .modal-speaker-status {
        margin-top: 4rem;
        font-size: 12rem;
    }

    .modal-speaker-text {
        margin-top: 12rem;
    }

    .modal-speaker-link-main-site {
        margin-top: 12rem;
        font-size: 14rem;
    }
}