/****************** DOM *******************/

.container {max-width: 1280px; margin: 0px auto; padding:0px 20px;}

.background__items {position:absolute;z-index:-1;width:100%;height:100%;overflow:hidden;top:0px;left:0px;}

/****************** DOM - END *******************/

/****************** HEADER *******************/
html {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    overflow-y: scroll;
}

body {position:relative;}
header {min-height:100px;z-index:10;position:relative;}
.header__wrapper {
	position: fixed;z-index:10;
    top: 0; left: 0; width: 100%;
	background: rgba(255,255,255, 0.2);
	box-shadow: 0px 1px 3px rgb(0 0 0 / 5%);
	-webkit-transition: transform .2s ease-in-out;
    -moz-transition: transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	background: rgba(255,255,255, 0.7);
}
.header__wrapper.header-shown{
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	background: rgba(255,255,255, 0.9);
}

@media screen and (min-width: 1101px) {
	.header__wrapper.header-hidden {
		box-shadow: none;
		transform: translate3d(0,-100%,0);
	}
}

.header__inner {padding: 20px 0px;gap:20px;}
.header__logo {width: 60px;height: 60px;min-width: 60px;}
.header__logo img {}

.header__mobile-wrapper {flex-grow: 1;}
.header__mobile-inner {}
.header__mobile-content {}

.header__menu {}
.header__menu ul {}
.header__menu ul li {list-style: none;}
.header__menu ul li a {
    text-decoration: none;
    color: inherit;
    padding: 15px 20px;
    color: var(--text_color);
    font-weight: bold;
}
.header__menu ul li a:hover {color: var(--orange);}
.header__menu ul li.current a {color: var(--orange);}

.header__items {gap:20px;}
.header__search {}
.header__search-btn {padding: 15px 15px;}
.header__search-btn svg {fill:var(--blue_dark);}
.header__search-btn:hover svg {fill:var(--orange);}


.header__language {}

.header__dropdown {}
.header__dropdown-btn {}
.header__dropdown-btn svg {}
.header__dropdown-btn span {}

.header__dropdown-menu {}
.header__dropdown-menu {}

.header__dropdown-item {}
.header__dropdown-item a {}

.header__burger {display: none;position: relative;}
.header__burger svg {fill: var(--blue_2);}
.header__burger-icon-cross {position: absolute;top:0px;left:0px;}

@media screen and (max-width: 1150px) {
	header {min-height:80px;}
    .header__burger {display: block;}
	.header__inner {padding: 10px 0px;}
    html.menu__mobile-show {overflow: hidden;}
    .header__mobile-wrapper {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
		
        position: fixed; width: 100%;z-index: 3;
        height: calc(100dvh - 80px);
        background-color: var(--white);
        right: -100%; bottom: 0;top:80px;
        min-height: fit-content;
        -webkit-transition: right 0.2s ease-in-out;
        -moz-transition: right 0.2s ease-in-out;
        -o-transition: right 0.2s ease-in-out;
        transition: right 0.2s ease-in-out;
    }
    .header__mobile-inner {overflow: auto;height: 100%;}
    html.menu__mobile-show .header__mobile-wrapper {right: 0%;}
    .header__menu ul {flex-direction: column;align-items: center;}
    .header__menu ul a {display: block;font-weight: 600;font-size: 22px;}
}
@media screen and (max-width: 420px) {
    .header__language .nav__dropdown-btn span {display: none;}
}
@media screen and (max-width: 360px) {
    .header__inner {gap:5px;}
    .header__items {gap:5px;}
}

/****************** HEADER - END *******************/

/****************** CONTENT *******************/

main {overflow-x:clip;}

.breadcrumbs__wrapper {
	box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
	background: #f8f8f81c; overflow: auto;
	-webkit-backdrop-filter: blur(9px);
	backdrop-filter: blur(9px);
}
.breadcrumbs__items {}
.breadcrumbs__items ul {gap:20px;justify-content: flex-start;}
.breadcrumbs__items ul li {display: inline-block;}
.breadcrumbs__items ul li a {
    font-weight: 300;
    font-size: 16px;
    color: #6b6e7c;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    padding: 15px 0px;
    line-height: 125%;
}
.breadcrumbs__items ul li:not(:last-child) a:hover {text-decoration: underline;}
.breadcrumbs__items ul li:last-child a {cursor: default;}

.content__blocks {}
.content__block {}
.content__block-inner {padding: 40px 0px;}

.i-home__wrap {
    border-radius: 50px;
    max-width: 720px;
    margin: 0 auto;
    background-color: #f8f8f8;
	background-color: transparent;
	background: rgba(255,255,255, 0.5);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 10px;
}

.i-home__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    font-weight: 800;
    font-size: 35px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 20px;
	overflow-x: hidden;
}

.i-home__title-top {
    color: #000;
	font-size: 145%;
}

.i-home__title-bottom {
    color: var(--blue_1);
    position: relative;
    overflow-y: hidden;
}

.i-home__title-bottom-placeholder {
    color: transparent;
}

.i-home__title-bottom-slide {
    transform: translate(-50%, -100%);
    height: 100%;
    width: 100%;
    transition: .3s all ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	overflow-x: hidden;
}

.i-home__title-bottom-slide-active {
    animation: slide-in 10s ease-out forwards;
}

@keyframes slide-in {
    0% {
        transform: translate( -50%, -100%);
        opacity: 0;
    }
    7% {
        transform: translate( -50%, 10%);
        opacity: 1;
    }
    10% {
        transform: translate( -50%, 0);
    }
    90% {
        transform: translate( -50%, 0);
        opacity: 1;
    }
    97% {
        transform: translate( -50%, -100%);
        opacity: 0;
    }
}

@media screen and (max-width: 991px) {
	.i-home__title-bottom-slide {font-size: 28px;}
}

.i-home__title-sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 139%;
    color: #1e1e1e;
    margin: 15px 0 20px;
}

.i-home__title-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	max-width: 80%;
	margin: 0px auto;
}


.i-home__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 80px;
	margin-left: -10px;
    margin-right: -10px;
	
	margin-bottom: 200px;
    top: 200px;
    position: relative;
    margin-top: -100px !important;
}

.i-home__card {
    padding: 5px 10px 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: scale .3s ease;
}

.i-home__card:hover {
    /*scale: 1.02;*/
}

.i-home__card-1 {
    grid-area: 1 / 1 / 2 / 2;
    background-color: var(--blue_1);
    color: var(--white);
}

.i-home__card-2 {
    grid-area: 1 / 2 / 2 / 3;
    background-color: #ffdfb8;
    border-radius: 30px;
    color: #000;

}

.i-home__card-title {
    font-weight: 900;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 10px;
}

.i-home__card-sub {
    font-weight: 300;
    font-size: 14px;
    line-height: 143%;
    text-align: center;
}

.i-home__card-1 > .i-home__card-img-top {
    height: 130px;
    margin-bottom: 15px;
}

.i-home__card-2 > .i-home__card-img-top {
    margin-top: 10px;
    height: 105px;
    margin-bottom: 30px;
}

.i-home__card-3 {
    grid-area: 2 / 1 / 3 / 3;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 120px;
    grid-template-rows: 1fr 70px;
    z-index: 1;
    position: relative;
    transition: scale .3s ease;
}

.i-home__card-3:hover {
    /*scale: 1.02;*/
}

.i-home__card-3-img {
    position: absolute;
    left: 20px;
    bottom: 10px;
    z-index: 3;
}

.i-home__card-3-little {
    grid-area: 2 / 2 / 3 / 3;
    background-color: var(--white);
    border-radius: 30px;
    border: 10px solid #fff;
    border-bottom: none;
    border-right: none;
    position: relative;
}

.i-home__card-3-little:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    z-index: -1;
    background-color: var(--blue_2);
}

.i-home__card-3-little__inner {
    border-radius: 20px;
    background-color: var(--orange);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--white);
    padding: initial;
    border: none;
    min-width: 0px;
}

.i-home__card-3-content {
    grid-area: 1 / 1 / 2 / 3;
    background-color: var(--blue_2);
    border-radius: 30px 30px 30px 0px;
    z-index: 1;
    padding-top: 50px;
    padding-left: 20px;
    color: var(--white);
}

.i-card-3__title {
    font-weight: 900;
    font-size: 35px;
    line-height: 71%;
    letter-spacing: 0.1em;
}

.i-card-3__sub {
    margin-top: 30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 143%;
}

.i-home__card-3-filler {
    grid-area: 1 / 1 / 3 / 2;
    background-color: var(--blue_2);
    border-radius: 30px;
}

.i-home {
    margin-bottom: clamp(560px, calc(700px - 20vw), 700px);
    margin-bottom: 250px;
}

@media screen and (min-width: 600px) {
	.i-home__title-btn .btn {padding: 15px 100px;}
}

@media screen and (max-width: 390px) {
    .i-home {
        margin-bottom: 250px;
    }
}

@media screen and (min-width: 1320px) {

    .i-home {
        margin-bottom: 250px;
    }

    .i-home__title {
        font-size: 40px;
        font-weight: 900;
        padding-top: 40px;
    }

    .i-home__title-sub {
        font-size: 25px;
    }

    .i-home__wrap {
        max-width: 1280px;
    }

    .i-home__cards {
        grid-template-columns: 1fr 1fr 470px;
        grid-template-rows: 1fr;
        margin: 40px;
        margin-bottom: 0;
    }
	.i-home__card {
		padding: 5px 30px 40px 30px;
	}
    .i-home__card-1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .i-home__card-2 {
        grid-area: 1 / 2 / 2 / 3;
    }

    .i-home__card-title {
        font-size: 40px;
        font-weight: 900;
        text-align: left;
        width: 100%;
    }

    .i-home__card-sub {
        font-size: 19px;
        font-weight: 400;
        text-align: left;
    }

    .i-home__card-3 {
        grid-area: 1 / 3 / 2 / 4;
    }

    .i-home__card-3-img {
        left: 50px;
        bottom: 10px;
    }

    .i-card-3__title {
        font-size: 40px;
    }

    .i-card-3__sub {
        font-size: 19px;
        font-weight: 400;
    }
	
	.i-home__card-3-content {
		padding-left: 30px;
		padding-right: 30px;
	}
}






.article__mentors-title {margin-bottom: 20px;}

.article__mentors-sub {
    font-weight: 900;
    text-align: center;
    color: #000;
    font-size: 25px;
}
.article__mentors-list {padding-top: 50px; gap: 30px;align-items: stretch;overflow:hidden;}
.article__mentors-item {align-items: stretch;width:(33.3333% - 20px);min-width:calc(33.3333% - 20px);max-width:calc(33.3333% - 20px);flex-grow:1;}
.article__mentors-item-inner {
	flex-grow:1;
    flex-direction: column;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    margin: 50px 0;
    padding: 75px 20px 50px;
    border-radius: 20px;
    position: relative;
}
.courses__filter, .article__mentors-item-inner  {-webkit-backdrop-filter: blur(8px);backdrop-filter: blur(8px); background: #ffffffa8;}
.article__mentors-item-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.article__mentors-item-title {
    text-align: center;
    font-weight: 800;
    font-size: 50px;
}

.article__mentors-item-price {
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    color: var(--blue_3);
    margin: 10px 0 25px;
}
.article__mentors-item-content {flex-grow: 1;}
.article__mentors-item-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 15px 70px;
}

@media screen and (max-width: 991px) {
    .article__mentors-item {width:calc(50% - 16px);}
    .article__mentors-list {
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .article__mentors-sub {
        font-size: 20px;
    }
}
@media screen and (max-width: 640px) {
    .article__mentors-item {width:auto;max-width: 400px;}
}





.form__shaped {position: relative;padding: 160px 0 80px;margin-bottom: 50px;}
.form__shaped-inner {background-color: #61b3fc;border-radius: 20%;}
.form__shaped-inner.form__shaped-inner-home {margin-top: 100px;}
.form__shaped-bg {
    position: absolute; height: 100%; z-index: -1; top: 0; left: 50%;
    transform: translate(-50%, 100px) scale(1.3);
}
.form__shaped-2-title {
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 0.05em;
    text-align: center;
}
.form__shaped-inner .title__white {text-shadow: 1px 1px 0 #61b3fc, -1px -2px 0 #61b3fc, 0px -0px 1px #61B3FD;}
.form__shaped-sub {
    font-weight: 500;
    font-size: 22px;
    line-height: 145%;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--white);
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 10px;
}
.form__shaped-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.form__shaped-btn-inner {
    display: inline-block;border-radius: 50px;
    border: 10px solid var(--white);
}
.form__shaped-btn-inner {}
.form__shaped .article__title-large {margin-bottom: 40px;}
.form__shaped2-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 50px;
}
.form__shaped2-input-wrapper {flex: 1;}
.form__shaped2-input {width: 100%;}
@media screen and (max-width: 1280px) {
	.form__shaped {overflow:clip;margin:0px -20px;}
}
@media screen and (min-width: 700px) {
    .form__shaped-bg {transform: translate(-50%, 100px) scale(1.1);}
    .form__shaped-inner {
        padding: 20px 0;
        max-width: 950px;
        margin: 0 auto;
    }
    .form__shaped2-inputs {flex-direction: row;margin-bottom: 20px;}
    .form__shaped-inner {border-radius: 40%;}
}
@media screen and (min-width: 1320px) {
    .form__shaped-inner {margin: 0 250px 50px;max-width: initial;}
    .form__shaped-bg {transform: translate(-50%, 50px) scale(1);}
    .form__shaped2-inputs {margin-bottom: 0;}
}


/********* FAQ *********/

.f-page__sub {
    font-weight: 800;
    font-size: 25px;
    margin: 5px 0 30px 0;
}

.article__faq_list {}

.article__faq_item {
    background-color: rgb(255 255 255 / 80%);
    padding: 0 20px;
    border-radius: 20px;
    box-shadow: 1px 1px 15px #ddd;

}
.article__faq_item+.article__faq_item {margin-top: 30px;}

.article__faq_item-header {
    cursor: pointer;
    padding: 25px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.article__faq_item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: var(--orange);
    transition: color .3s ease
}

.article__faq-item-icon {
    background-color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    position: relative;
    transition: background-color .3s ease;
    min-width: 40px;
}

.article__faq-item-icon:before, .article__faq-item-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--white);
    transition: all .3s ease
}

.article__faq-item-icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.article__faq_item:has(.article__faq_item-content-active) .article__faq-item-icon {
    background-color: var(--blue_2);
}

.article__faq_item:has(.article__faq_item-content-active) .article__faq_item-title {
    color: #2f364c;
}

.article__faq_item:has(.article__faq_item-content-active) .article__faq-item-icon:before {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.article__faq_item-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.article__faq_item-content > div {
    overflow: hidden;
}

.article__faq_item-content-active {
    grid-template-rows: 1fr;
    padding: 15px 0 25px;
    border-top: 1px solid #e9e9e9;
}

.article__faq_item-content-inner, .article__faq-item-file {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.article__faq-item-file-link {
    font-weight: 300;
    font-size: 16px;
    line-height: 137%;
    color: #017eff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    transition: all .3s ease;
}

.article__faq-item-file-link:hover {
    color: var(--orange);
}

/********* FAQ - END *********/

/********* CONTACTS *********/

.contacts__page {position: relative;}

.c-page__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
}

.c-page__contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
    margin-top: 35px;
}

.c-page__contacts-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    transition: all .3s ease;
    text-decoration: none;
}

.c-page__contacts-item:hover, .c-page__contacts-item:hover .c-page__contacts-phone {
    color: var(--orange);
}

.c-page__contacts-img {
    width: 40px; height: 40px;
    background-color: var(--blue_1);
    border-radius: 10px;
    color: var(--white);
    transition: all .3s ease;
    justify-content: center;
    align-items: center;
}
.c-page__contacts-img svg {fill: var(--white);}

.c-page__contacts-item:hover .c-page__contacts-img {
    background-color: var(--orange);
}

.c-page__contacts-phone {
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    color: #000;
}

.c-page__contacts-mail {
    font-weight: 500;
    font-size: 17px;
    text-decoration: underline;
}

.c-page__links {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.c-page__links > a {
    flex: none;
}

.c-page__img {
    width: 100%;
    margin-top: 40px;
    max-width: 450px;
}

.c-page__address {
    border-radius: 50px;
	background-color: #ffffffc9;
    padding: 40px;
    margin-top: 40px;
}

.c-page__address-title {
    text-align: center;
    font-weight: 600;
    font-size: 40px;
    /* padding-bottom: 40px; */
}

.c-page__address-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.c-page__address-item {
    text-align: center;
}
.c-page__address-item a {color:inherit;}
.c-page__address-item a:hover {color:var(--blue_2);}

@media screen and (min-width: 900px) {

    .c-page__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .c-page__address {
        max-width: 830px;
        margin: 40px auto 0;
    }

    .c-page__address-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .c-page__address-item {
        text-align: left
    }
}

@media screen and (min-width: 1000px) {
    .e-page__calendar-day-active {
        cursor: initial;
    }

    .e-page__calendar-day-content {
        display: block;
        cursor: pointer;
    }
}

@media screen and (min-width: 1320px) {

    .c-page__inner {
        display: block;
    }

    .c-page__contacts {
        flex-direction: row;
        gap: 90px;
    }

    .c-page__img {
        position: absolute;
        top: 0;
        right: 50px;
    }

    .c-page__address {
        max-width: 830px;
        margin: 40px 0 0;
    }
}

/********* CONTACTS - END *********/

.b-page__tags-list {gap: 10px;flex-wrap: wrap;justify-content: flex-start;margin-bottom: 30px;}
.b-page__tags-list li {list-style:none;}
.b-page__tags-list-item a {
    display: block;
    padding: 10px 30px;
    border: 1px solid var(--blue_1);
    border-radius: 90px;
    color: var(--blue_1);
    transition: all .3s ease;
    cursor: pointer;
    user-select: none;
    text-decoration:none;
}
.b-page__tags-list-item a.active {background-color: var(--blue_1); color: var(--white);}
.b-page__tags-list-item a:hover {scale: .95;}
.b-page__tags-list-item:has(input:checked) {background-color: var(--blue_1);color: var(--white);}
.b-page__tags-list-item input {display: none;}

.blog__items {flex-wrap: wrap;margin: 0 -15px -30px;align-items: stretch;justify-content: flex-start;list-style:none;}
.blog__items-2 {}
.blog__items-3 {}
.blog__items-2 .blog__item {width:50%;}
.blog__items-3 .blog__item {width:33.3333%;}
.blog__items-4 .blog__item {width:25%;}
.blog__item {flex-grow: 1;margin-bottom: 30px;
/* border-bottom: 1px solid #e7e7e7; */
}
.blog__items .blog__item .blog__item-inner {margin: 0 15px;flex-grow: 1;height: 100%;align-items: stretch;}
.blog__item-link {width: 100%;align-items: stretch;flex-direction: column;color: var(--black);flex-grow: 1;}
.blog__item-link:hover .blog__item-name {color: var(--blue_2);}
.blog__item-img {height: 195px;width:100%;overflow: hidden;position: relative;border-radius: 10px;}
.blog__item-img-inner {position: absolute;top:0px;left:0px;height:100%;width:100%;}
.blog__item-link:hover .blog__item-img-inner {padding:10px;top:-10px;left:-10px;}
.blog__item-img-inner img {position: absolute; top: 0px;left: 0px;}
.blog__item-name {
    flex-grow:1;font-size: 20px;
    font-weight: bold;padding:15px 0px 15px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 1099px) {
    .blog__items-4 .blog__item {width:33.3333%;}
}
@media screen and (max-width: 867px) {
    .blog__items-4 .blog__item {width:50%;}
    .blog__items-3 .blog__item {width:50%;}
}
@media screen and (max-width: 640px) {
    .blog__items-4 {justify-content: center;}
    .blog__items-4 .blog__item {width: 100%;max-width: 400px;}
    .blog__items-3 {justify-content: center;}
    .blog__items-3 .blog__item {width: 100%;max-width: 400px;}
}

/* AUTHOR */


.article__author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 35px 0 0;
}

.article__author-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.article__author-img {
    width: 160px;
    height: 160px;
}

.article__author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.article__author-name {
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    color: #000;
}

.article__author-sub {
    text-align: center;
    margin: 10px 0;
}

.article__author-more {
    display: block;
    padding: 15px 35px;
    width: fit-content;
    margin: 15px auto 0;
}

@media screen and (min-width: 1320px) {
    .article__author-wrapper {
        flex-direction: row;
        align-items: start;
    }

    .article__author-img {
        flex: none;
    }

    .article__author-name, .article__author-sub {
        text-align: left;
    }

    .article__author-more {
        margin: 15px 0 0;
    }
}

/* ARTICLE__REVIEWS */

.voting__block {max-width:150px;margin:0px auto;font-size:0px;margin-bottom:20px;}
.voting__item {width:20%;display:inline-block;}
.voting__item-image {display:block;position:relative;text-align:center;}
.voting__item-image svg {
	fill: var(--text_color);
	position:relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.voting__item-image:after {}
.voting__item-text {display: block; padding-top: 10px; font-size: 14px; text-align: center;}

.voting__block a.active .voting__item-image svg {fill: var(--orange);}
.voting__block:hover 	.voting__item-image svg,
.voting__block a:hover 	.voting__item-image svg {fill: var(--orange);}
.voting__block a:hover ~ a>.voting__item-image>svg {fill: var(--text_color_3);}


.article__reviews-wrapper, .article__reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article__reviews-item {
    padding: 30px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
}

.article__reviews-item-author {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.article__reviews-item-rate {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    transition: all .3s ease;
}
.article__reviews-item-rate svg {fill:var(--text_color);}
.article__reviews-item-rate svg.active {fill:var(--orange);}

.article__reviews-item-name {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.article__reviews-item-date {
    font-weight: 300;
    font-size: 17px;
    margin: 5px 0;
}

.article__review-add-wrapper {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 30px;
    width: 100%;
    padding: 50px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.article__review-add-title {
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    color: #000;
	margin-bottom:10px;
}

.article__review-add-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

textarea.article__review-add-textarea {
    height: 150px;
    border-radius: 20px;
}

.article__review-add-send {
    margin-top: 25px;
}

@media screen and (min-width: 700px) {

    .article__review-add-wrapper {
        padding: 50px;
    }

    .article__reviews-item-info {
        display: flex;
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .article__reviews-item-author {
        justify-content: initial;
    }

    .article__reviews-item-date {
        margin: 0;
    }

    .article__review-add-title {
        font-size: 35px;
    }

}

@media screen and (min-width: 1320px) {
    .article__review-add-inputs {
        flex-direction: row;
        gap: 20px;
    }

    .article__review-add-input-wrapper {
        flex: 1;
    }
}


.cases__items {flex-wrap: wrap;margin: 0 -15px -30px;align-items: stretch;justify-content: flex-start;list-style:none;}
.cases__items-4 .cases__item {width:25%;}
.cases__items-3 .cases__item {width:33.3333%;}
.cases__item {flex-grow: 1;margin-bottom: 30px;}
.cases__item-inner {margin: 0 15px;flex-grow: 1;height: 100%;align-items: stretch;position: relative;}
.cases__item-link {
    align-items: stretch;flex-direction: column;color: var(--black);flex-grow: 1;
    top: 0px;position: relative;width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.cases__item-link:hover {top: -5px;}
.cases__item-link:hover .cases__item-name {color: var(--blue_2);}
.cases__item-img {height: 600px;width:100%;overflow: hidden;position: relative;border-radius: 20px;}
.cases__item-img-inner {position: absolute;top:0px;left:0px;height:100%;width:100%;}
.cases__item-link:hover .cases__item-img-inner {padding:10px;top:-10px;left:-10px;}
.cases__item-img-inner img {position: absolute; top: 0px;left: 0px;}
.cases__item-name {
    flex-grow:1;font-size: 20px;
    font-weight: bold;
    padding:10px 0px 0px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    position: relative;
	text-align:center;
}


.events__title {margin: 40px 0px;}
.events__title .title__big {margin-bottom: 0px;}
.e-page__header-settings {gap:20px;}
.e-page__calendar {display: none;}
@media screen and (max-width: 767px) {
    .events__title {display: block;}
    .events__title .title__big {margin-bottom: 20px;}
}
@media screen and (max-width: 580px) {
    .e-page__header-settings {flex-direction: column;}
}

.e-page__header-switch-label {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.e-page__header-switch-label input {
    display: none;
}

.e-page__header-switch-itself {
    display: block;
    width: 60px;
    height: 35px;
    position: relative;
    border-radius: 90px;
    background-color: #f1f1f1;
}

.e-page__header-switch-itself:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background-color: var(--orange);
    transition: all .3s ease;
}

.e-page__header-switch-text {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    transition: color .3s ease;
}

.e-page__header-switch-label input:checked + .e-page__header-switch-itself:after {
    left: calc(100% - 30px);
}

.e-page__header-switch-list {
    color: var(--orange);
}

.e-page__header-switch-label:has(input:checked) .e-page__header-switch-calendar {
    color: var(--orange);
}

.e-page__header-switch-label:has(input:checked) .e-page__header-switch-list {
    color: #000;
}

main:has(.e-page__header-switch-label input:checked) .e-page__events-tab {
    display: none;
}
main:has(.e-page__header-switch-label input:checked) .e-page__calendar {
    display: initial;
}

main:has(.e-page__header-switch-label input:checked) .e-page__dropdown-location {
    display:none;
}

.events__dark-block {position: relative;padding: 70px 0;}
.events__dark-block:before {
    content: "";
    width: calc(100vw);
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: calc(-1 * (100vw - 100%) / 2);
    z-index: -2;
}
.events__dark-blue {
    position: absolute;
    bottom: -4px;
    right: calc(-1 * (100vw - 100%) / 2);
    z-index: -1;
}
.events__dark-yellow {
    position: absolute;
    top: 0;
    left: calc(-1 * (100vw - 100%) / 2);
    z-index: -1;
}
.events__dark-title {
    position: absolute;
    top: 10px;
    left: calc(50% - 200px);
}
.events__dark-inner {position: relative;z-index: 1;}

.events__items {flex-wrap: wrap;margin: 0 -15px -30px;align-items: stretch;justify-content: flex-start;list-style:none;}
.events__item {flex-grow: 1;margin-bottom: 30px;}
.events__item-inner {margin: 0 15px;max-width: calc(100% - 30px);flex-grow: 1;height: 100%;align-items: stretch;position: relative;}
.events__item-link {
    background-color: #F3F6F9;width: 100%;border-radius: 20px;
    align-items: stretch;flex-direction: column;
    color: var(--black);flex-grow: 1;top: 0px;position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.events__item-link:hover {top: -5px;box-shadow: 0 -10px 30px 0 rgb(0 0 0 / 10%);}
.events__item-link:hover .events__item-name {color: var(--blue_2);}
.events__item-img {padding: 50% 0px;width:100%;overflow: hidden;position: relative;border-radius: 20px;}
.events__item-img-inner {position: absolute;top:0px;left:0px;height:100%;width:100%;}
.events__item-link:hover .events__item-img-inner {padding:10px;top:-10px;left:-10px;}
.events__item-img-inner img {position: absolute; top: 0px;left: 0px;}

.events__item-content {overflow:hidden;flex-direction: column;flex-grow: 1;padding: 15px 20px 15px 20px;}
.events__item-content>* {margin-top:15px;width:100%;}
.events__item-name {
    height:50px;font-size: 20px;font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.events__item-details {color: var(--blue_1);gap:15px;}
.events__item-detail {font-size: 15px;gap:5px;max-width: 50%;}
.events__item-detail svg {fill: var(--blue_1);min-width: 20px;}
.events__item-detail span {white-space: nowrap;text-overflow: ellipsis;overflow: hidden;}
.events__item-preview {
    flex-grow: 1;
    color: var(--black);
    font-weight: 300;
    font-size: 16px;
    line-height: 135%;
    overflow: hidden;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.events__items-dark {}
.events__items-dark .events__item-link {background-color: #161616;}
.events__items-dark .events__item-name {color: var(--white);}
.events__items-dark .events__item-link:hover .events__item-name {color: var(--blue_1);}
.events__items-dark .events__item-details {color: var(--yellow);}
.events__items-dark .events__item-detail svg {fill: var(--yellow);}
.events__items-dark .events__item-preview {color: var(--white);}

@media screen and (max-width: 640px) {
    .events__item-details {flex-wrap:wrap;}
    .events__item-detail {max-width: 100%;}
}

/********** CALENDAR ***********/

.calendar__wrapper {
    background: #fff;
    box-shadow: 0px 3px 4.85px 0.15px rgba(0, 0, 0, 0.2);
}

.calendar__narrow {
    padding: 25px 35px;
}

.calendar__top {
    text-align: center;
    padding-bottom: 25px;
}

.calendar__top a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #000;
    transition: .3s all ease;
    background-color: #fff;
    display:inline-block;
    vertical-align: middle;
}
.calendar__top a:first-child {
    transform: rotate(180deg);
}
.calendar__top a:hover i {
    color: var(--color_1_2);
    background: rgba(249, 167, 0, 0.1);
}
.calendar__top a svg {color:#000;}

.calendar__top-current {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5em;
    font-weight: bold;
    color: #3e3f41;
    padding:0px 15px;
}

.calendar__wrapper {
    width: 100%;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin-bottom: 15px;
}

.calendar__wrapper .calendar__table {
    min-width: 500px;
    width: 100%;
    border-spacing: 0px;
    border-collapse: collapse;
}

.calendar__table-wrapper {
    position: relative;
}

.calendar__table {
    display: table;
    width: 100%;
}

.calendar__head {
    display: thead;
}

.calendar__body {
    display: tbody;
}

.calendar__row {
    display: table-row;
}

.calendar__cell {
    border-top: 1px solid #e9eff5;
    display: table-cell;
    height: 110px;
    padding: 10px 10px;
    color: #94989e;
    position: relative;
    width: 14.2857%;
    vertical-align: bottom;
}

.calendar__cell+.calendar__cell {
    border-left: 2px solid #e9eff5;
}

.calendar__cell-has-event {
    background: rgba(249, 167, 0, 0.1);
}

.calendar__head .calendar__cell {
    padding: 20px 10px;
    text-align: center;
    color: #3e3f41;
    height: auto;
    font-size: 1.1em;
    font-weight: bold;
    border-left-color: transparent;
}

.calendar__cell-day {
    font-weight: 900;
    font-size: 1.1em;
    position: absolute;
    top: 10px;
    left: 10px;
}

.calendar__cell-other-month .calendar__cell-day {
    font-weight: normal;
}

.calendar__cell-future .calendar__cell-day {
    color: #3b3d3f;
}

.calendar__cell-has-event .calendar__cell-day {
    color: var(--color_1_2);
}

.calendar__cell-has-event:hover {
    background: rgba(249, 167, 0, 0.2);
}

.calendar__cell-events {
    margin-top: 25px;
}

.calendar__cell-event,
.calendar__cell-event a {
    color: #3e3f41;
}

.calendar__cell-event a span {
    font-weight: bold;
}

.calendar__cell-events_link {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
}

.calendar__cell-event a:hover {
    color: var(--color_1_2);
    text-decoration: underline;
}

.calendar__cell-events-link {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
}

.calendar__cell-future .calendar__cell-event,
.calendar__cell-future .calendar__cell-event a {
    color: var(--color_0);
    font-weight: 500;
}


.calendar__table-pop-up {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--color_1_3);
    display: none;
}

.calendar__table-inner-pop-up {
    margin: 35px 0px 20px 0px;
    top: 0px;
    left: 0px;
    overflow: auto;
    width: 100%;
    height: calc(100% - 55px);
}

.calendar__table-content-pop-up {}

.calendar__table-content-pop-up a {
    font-size: 1.4em;
    padding: 10px 20px;
    display: block;
}

.calendar__table-content-pop-up a span {
    font-weight: bold;
    vertical-align: baseline;
    margin-right: 5px;
}

.calendar__table_close-pop-up {
    position: absolute;
    top: 10px;
    right: 10px;
}

@media screen and (max-width: 767px) {
    .calendar__wrapper {
        margin: 0px -15px;
        width: auto;
    }

    .calendar__narrow {
        padding: 25px 0px;
    }

    .calendar__cell {
        height: 100px;
    }

    .calendar__cell-mobile-title {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .calendar__cell {
        height: 70px;
        text-align: center;
    }

    .calendar__cell-day {
        position: relative;
        top: 0px;
        left: 0px;
    }

    .calendar__cell-events {
        display: none;
    }
}

@media screen and (max-width: 510px) {
    .calendar__cell {
        height: 50px;
        padding: 10px;
    }

    .calendar__wrapper .calendar__table {
        min-width: 0px;
    }

    .calendar__top {
        padding-bottom: 1rem;
    }

    .calendar__narrow {
        padding: 1rem 0 0.5rem 0;
    }
}

@media screen and (max-width: 400px) {
    .calendar__filter-wrapper {
        display: block;
    }

    .calendar__filter-block+.calendar__filter-block {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 360px) {
    .calendar__head .calendar__cell {
        padding: 15px 5px;
        font-size: 1em;
    }
}

/********** CALENDAR - END ***********/



.courses__page-wrapper {align-items: flex-start;justify-content: flex-start;gap:30px;}
.courses__page-filters {width:300px;min-width: 300px;}
.courses__page-content {flex-grow: 1;position: relative;}

.courses__filter-title {align-items:center;font-weight: 700;font-size: 35px;color: #000;padding: 0 20px;margin-bottom: 10px;}
.courses__filter-clear {display: none;}

.courses__filter-item {
    /*margin-top: 20px;*/
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.courses__filter-item-dropdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.courses__filter-item-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 18px;
    color: #6b6e7c;
    cursor: pointer;
}

.courses__filter-item-dropdown-btn svg {
    rotate: 0deg;
    transition: rotate .3s ease;
    fill: var(--gray_2);
}

.courses__filter-item:has(.courses__filter-item-dropdown-active) .courses__filter-item-dropdown-btn svg {
    rotate: -180deg;
}

.courses__filter-item-dropdown-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    user-select: none;
    font-weight: 300;
    font-size: 16px;
    color: #6b6e7c;
    cursor: pointer;
}

.courses__filter-item-dropdown-option:hover {
    color: var(--orange);
}

.courses__filter-item-dropdown-option:first-child {
    margin-top: 15px;
}

.courses__filter-item-dropdown-option:last-child {
    margin-bottom: 15px;
}

.courses__filter-item-dropdown-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.courses__filter-item-dropdown-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #999999;
    border-radius: 5px;
    position: relative;
    transition: all .3s ease;
}

.courses__filter-item-dropdown-option input[type='radio'] ~ .courses__filter-item-dropdown-checkbox {
    border-radius: 100%;
}

.courses__filter-item-dropdown-checkbox:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--blue_2);
    border-radius: 2px;
    display: none;
}

.courses__filter-item-dropdown-option input[type='radio'] ~ .courses__filter-item-dropdown-checkbox:after {
    border-radius: 100%;
}

.courses__filter-item-dropdown-option input:checked + .courses__filter-item-dropdown-checkbox , .courses__filter-item-dropdown-option:hover .courses__filter-item-dropdown-checkbox{
    border: 1px solid var(--blue_2);
}

.courses__filter-item-dropdown-option input:checked + .courses__filter-item-dropdown-checkbox:after {
    display: block;
}

.courses__filter-item-dropdown-option input:active + .courses__filter-item-dropdown-checkbox {
    border: 1px solid #005fc1;
}

.courses__filter-item-dropdown-option input:active + .courses__filter-item-dropdown-checkbox:after {
    display: block;
    background-color: #005fc1;
}

.courses__content {
    margin-top: 35px;
    position: relative;
    flex-grow:1;
}
.courses__content .title__big {margin-top: 0px;}

.courses__content-decor {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.courses__filter-btn-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.courses__filter-btn {
    padding: 15px 80px;
    margin-top: 30px;
}

.courses__content-header {
    margin-bottom: 30px;
    text-align: center;
}








.courses__content-decor {position: absolute;top: 0;left: 0;z-index: -1;}

.courses__content-filter {
    margin-bottom: 30px;
    display: none;
}

.courses__content-filter-btn {
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    color: #6b6e7c;
    max-width: 305px;
    margin: 0 auto;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 15px 0;
    margin:0px auto;
    display: block;
}

.courses__content-filter-btn:hover {
    background-color: var(--blue_2);
    color: #fff;
}

.courses__content-filter-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}


@media screen and (min-width: 992px) {
    .courses__filter {width: 305px; box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%); border-radius: 0 0 30px 30px; padding: 40px 0; z-index: 2;}
	.courses__filter-menu-total {display:none;}
}
@media screen and (max-width: 991px) {
	.courses__filter-menu-total {
		position: absolute;
		bottom: 10px;
		left: 15px;
		width: calc(100% - 30px);
		text-align: center;
	}
    .courses__page-wrapper {display: block;}
    .courses__content-filter {display: block;}
    .courses__filters-show {overflow: hidden;}
    .courses__filter {
        position: fixed;
        top: 0px !important;
        left: 0px;
        width: 350px;
        height: 100%;
        bottom: 0px;
        z-index: 1010 !important;
        overflow-x: hidden;
        overflow-y: auto;
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        max-height: 100%;
        border: none;
        margin: 0px;
        opacity: 1 !important;
        display: block !important;
    }
    .courses__filter.active {
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }
    .courses__filter-content {
        height: 100%;
        width: 100%;
        overflow: auto;
        height: 100%;
    }
    .courses__filter-inner {
        background: var(--white);
        position: fixed;
        z-index: 10;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .courses__filter-narrow {
        padding: 65px 0px 75px 0px;
        width: 100%;
        overflow: auto;
        height: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .courses__filters-shadow-block {
        display: none;
        position: fixed;
        z-index: 100;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .courses__filters-shadow {
        position: absolute;
        z-index: 1;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        opacity: 0.7;
        background: var(--black);
    }
    .courses__filters-shadow {overflow: hidden;}
    .courses__filters-show .courses__filters-shadow-block {display: block;}

    .courses__filter-title {width: calc(100% - 20px);position: absolute;top:0px;left:0px;padding: 10px 10px;background: var(--white);}
}
@media screen and (max-width: 340px) {
	.courses__page-filters {width:auto;min-width: 0px;}
	.courses__filter {width:calc(100vw - 40px);}
}

.courses__items {
    flex-wrap: wrap;
    margin: 0 -15px -30px;
    align-items: stretch;
    justify-content: flex-start;
    list-style: none;
}
.courses__items.courses__items-3 .courses__item {width:33.3333%;min-width: 33.3333%;}

.courses__items.courses__items-line {flex-wrap: nowrap;justify-content:flex-start;margin: 0px -15px;}
.courses__item {margin-bottom: 30px;}
.courses__item-inner {
    margin: 0 15px;
    max-width: calc(100% - 30px);
    flex-grow: 1;
    height: 100%;
    align-items: stretch;
    position: relative;
	
}
.courses__item-favorite {
    z-index:1;position: absolute;
    width: 34px; height: 34px;
    top: 15px; right: 10px;
    display: flex; padding-top: 2px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 100%;
    border: none; cursor: pointer;
    transition: all .3s ease;
}
.courses__item-favorite svg {fill: #DADADA;}
.courses__item-favorite:hover svg {fill: rgba(250, 114, 181, 0.6);}
.courses__item-favorite.active svg {fill: var(--pink);}

.courses__item-link {
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    color: var(--text_color);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.courses__item-inner:hover .courses__item-link {
	box-shadow: 0 -10px 30px 0 rgb(0 0 0 / 10%);
    transform: translateY(-5px);
}
.courses__item-img {padding: 50% 0px;width:100%;overflow: hidden;position: relative;border-radius: 20px;}
.courses__item-img-inner {position: absolute;top:0px;left:0px;height:100%;width:100%;}
.courses__item-img-inner img {position: absolute; top: 0px;left: 0px;}
.courses__item-link:hover .courses__item-img-inner {padding:10px;top:-10px;left:-10px;}

.courses__item-label:after {
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid #C5528B;
    border-bottom: 7px solid transparent;
    content: '';position: absolute;
    top:100%;left:-7px;
}
.courses__item-label {
    position: absolute;
    top: 25px;
    left: -5px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    z-index: 2;
    background-color: #1363DF;
    padding: 4px 10px;
}
.courses__item-label-text {}
.courses__item-label-icon {}

.courses__item-content {flex-direction: column;padding:20px;flex-grow: 1;}
.courses__item-content>* {width:100%;}
.courses__item-content>*+* {margin-top: 10px;}
.courses__item-info {font-weight: 400; font-size: 14px; color: var(--gray_2);}
.courses__item-category {}
.courses__item-info-items {gap:30px;}
.courses__item-info-item {gap:5px;}
.courses__item-info-item svg {fill: var(--blue_4);}
.courses__item-info-item span {}

.courses__item-name {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.05em;
    transition: .3s all ease;
}
.courses__item-text-wrapper {flex-grow: 1;}
.courses__item-text-wrapper>*+* {margin-top: 10px;}
.courses__item-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 137%;
    color: #1e1e1e;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}
.courses__item-tags {justify-content: flex-start;flex-wrap: wrap;gap:8px;}
.courses__item-tags li {list-style: none;}
.courses__item-tags li div {
    background-color: rgb(162 211 255 / 10%);
    border-radius: 5px;
    color: var(--blue_2);
    transition: all .3s ease;
    padding: 5px 7px;
    font-weight: 500;
    font-size: 13px;
    border-radius: 5px;
    user-select: none;
	padding: 4px 4px;
}

.courses__item-price {font-weight: 700; font-size: 17px;}


@media screen and (max-width: 1150px) {
    .courses__items.courses__items-3 .courses__item {width:50%;min-width: 50%;}
}
@media screen and (max-width: 991px) {
    .courses__items.courses__items-3 .courses__item {width:33.3333%;min-width: 33.3333%;}
}
@media screen and (max-width: 867px) {
    .courses__items.courses__items-3 .courses__item {width:50%;min-width: 50%;max-width: 50%;}
}
@media screen and (max-width: 640px) {
    .courses__items.courses__items-3 {justify-content: center;}
    .courses__items.courses__items-3 .courses__item {width: 100%;max-width: 400px;}
	.courses__items-line.items__list-4 .courses__item {min-width: 400px;max-width: 400px;}
}
@media screen and (max-width: 430px) {
	.courses__items-line.items__list-4 .courses__item {min-width: 90%;max-width: 90%;}
}


.items__list-4, .items__list-3, .items__list-2 {flex-wrap: wrap;}
.items__list-4>* {width:25%;min-width: 25%;max-width: 25%;}
.items__list-3>* {width:33.3333%;min-width: 33.3333%;max-width: 33.3333%;}
.items__list-2>* {width:50%;max-width: 50%;max-width: 50%;}

@media screen and (max-width: 1099px) {
    .items__list-4>* {width:33.3333%;min-width: 33.3333%;max-width: 33.3333%;}
}
@media screen and (max-width: 867px) {
    .items__list-4>* {width:50%;min-width: 50%;max-width: 50%;}
    .items__list-3>* {width:50%;min-width: 50%;max-width: 50%;}
}
@media screen and (max-width: 640px) {
    .items__list-4, .items__list-3 {justify-content: center;}
    .items__list-4>*, .items__list-3>* {width: 100%;max-width: 400px;}
}

.blocks__constructor {
    background-color: #f8f8f8;
    color: rgba(0, 0, 0, 0.1);
    font-weight: 900;
    font-size: 35px;
    height: 400px;
    text-align: center;
    justify-content: center;
}







.container__article img {
    width: 100%;
    border-radius: 10px;
}

.article__page-title {
    margin-top: 40px;
}

.article__image {
    margin: 50px 0 30px;
}

.article__page-block {
    margin-top: 40px;
}

.article__block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article__block-wrapper > * {
    flex: 1;
}

.swiper {
    position: relative;
}

.swiper-slide {
    position: relative;
}

.swiper-buttons {
    position: absolute;
    right: 10px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
    align-items: center;
}

.swiper-button {
    padding: 5px 14px;
    cursor: pointer;
}

.swiper-button-disabled svg {
    opacity: .5;
}

@media screen and (min-width: 1320px) {
    .swiper-buttons {
        right: 20px;
        bottom: 30px;
    }

    .swiper-button {
        padding: 10px 18px;
    }
}

.swiper-button svg {
    margin-top: 4px;
}

.swiper-button-mid {
    content: "";
    height: 30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.animation__button-scale svg {
    transition: all .3s ease;
}

.animation__button-scale:hover svg {
    scale: 1.1;
}

.animation__button-scale:active svg {
    scale: .9;
}

.article__block-item {
    margin-top: 60px;
}

.article__block-img, .article__block-img-large {
    position: relative;
}

.article__block-video-button {
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    pointer-events: none;
    border-radius: 100%
}

.article__block-video-button-large svg {
    padding-left: 3px;
    transition: all .3s ease;
}

.play-button {
    padding-left: 3px;
    transition: .3s all ease;
}

.article__block-img-large:hover .play-button {
    scale: 1.15;
}

.pulse{
    height: 150px;
    width: 150px;
    background: linear-gradient(
            rgba(46, 46, 46, 0.6),
            rgba(0, 0, 0, 0.6)
    );
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 50px;
    color: #ffffff;
    z-index: 2;
    pointer-events: none;
}
.pulse:before,
.pulse:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}
.pulse:before{
    animation: pulse 2s ease-out infinite;
}
.pulse:after{
    animation: pulse 2s 1s ease-out infinite;
}

@keyframes pulse{
    100%{
        transform: scale(2);
        opacity: 0;
    }
}


@media screen and (min-width: 750px) {
    .article__block-wrapper {
        flex-direction: row;
    }

    .article__block-item:nth-child(odd) .article__block-wrapper {
        flex-direction: row-reverse;
    }

    .article__block-img {
        position: sticky;
        top: 30px;
        max-width: calc(50% - 30px);
        height: fit-content;
    }
}

.article__colBlocks {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
}

.colBlock-img {
    margin-bottom: 20px;
}

.colBlock-img img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

@media screen and (min-width: 700px) {
    .article__colBlocks {
        flex-direction: row;
        justify-content: space-between;
    }

    .article__colBlocks > * {
        max-width: 49%;
        margin-top: 0;
    }
}

.article__access {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
    align-items: center;
}

.article__access > * {
    flex: 1;
    height: auto;
    width: 360px;
    max-width: 360px;
    min-width: 360px;
}

.article__access-item-img {
    height: 230px;
    width: 100%;
}

.article__access-item-img img {
    width: 100%;
    object-fit: cover;
}

.article__access-item:hover .article__access-item-title{
    color: var(--button-blue-color);

}

.article__access-item-title {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin-top: 15px;
    height: 75px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 125%;
    letter-spacing: 0.05em;
    transition: color .3s ease;
    text-decoration: none;
}

.article__access-item-text {
    margin-top: 10px;
    font-weight: 300;
    font-size: 16px;
    color: #1e1e1e;
}

.article__access-item-btn {
    display: block;
    padding: 10px 35px;
    text-decoration: none;
    margin-top: 20px;
    width: fit-content;
    font-size: 17px;
}

.article__block-title-more {
    display: flex;
    flex-direction: column;
    gap: 30px;
	margin-bottom:25px;
}

.article__block-title-more-btn {
    margin: 15px auto 0;
}

.article__access-btn-more {
    margin-top: 40px;
}

@media screen and (min-width: 420px) {
    .article__access {
        gap: 30px;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    .article__block-title-more {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .article__block-title-more-btn {
        margin: 0;
    }
}

@media screen and (min-width: 1320px) {
    .article__access {
        gap: initial;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
}


/* CONTENT__TEXT */

.courses__selection-review {padding-bottom:30px;}

.content__text {
    color: #000;
    font-weight: 300;
    font-size: 17px;
    line-height: 132%;
}

.content__text img {
	height: auto !important;
}

.content__text p {
    color: inherit;
    font-size: inherit;
}

.content__text * + * {
    margin-top: 15px;
}

.content__text ul {
    font-weight: inherit;
    font-size: 17px;
    padding-left: 20px;
    list-style: none;
}

.content__text ul li {
    position: relative;
    font-size: 17px;
}

.content__text ul li:before {
    content: "";
    position: absolute;
    left: -11px;
    top: 13px;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background-color: #000;
}

.content__text blockquote {
    margin: 50px 0 30px 0;
    padding: 50px 30px 30px 30px;
    background-color: rgba(2, 151, 255, 0.05);
    text-align: center;
    font-weight: 300;
    font-size: 22px;
    position: relative;
    border-radius: 10px;
}

.content__text blockquote:before {
    position: absolute;
    content: "";
    top: -25px;
    left: calc(50% - 25px);
    background-color: transparent;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 50px;
    height: 50px;
}

.content__text h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 105%;
}

.content__text h3 {
    font-size: 23px;
    font-weight: 700;
    line-height: 105%;
}

.content__text b, .content__text strong {
    font-weight: 700;
}

.content__text hr {
    color: #1e1e1e;
}

@media screen and (min-width: 1320px) {

    .content__text p {
        font-size: 19px;
    }

    .content__text h2 {
        font-size: 30px;
    }

    .content__text h3 {
        font-size: 25px;
    }

    .content__text ul li {
        font-size: 19px;
    }

    .content__text ul {
        padding-left: 30px;
    }

    .content__text ul li:before {
        left: -16px;
    }

}


.gallery__photos {
	margin-top: 30px;
}

.gallery__photo {
	max-width: 20%;
}

.gallery__photo-inner {
	overflow: hidden;
	display: block;
	position: relative;
	margin: 2px;
	border-radius: 10px;
}

.gallery__photo a {
	display: block;
	position: relative;
}

.gallery__photo a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__photo a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__photo-img {
	position: absolute;
	top: 0px;
	left: 0px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.gallery__photo a:hover .gallery__photo-img {
	margin: -10px;
}

@media screen and (max-width: 991px) {
	.gallery__photo {
		max-width: 25%;
	}
}

@media screen and (max-width: 767px) {
	.gallery__photo {
		max-width: 33.3333%;
	}
}

@media screen and (max-width: 680px) {
	.gallery__photo {
		max-width: 50%;
	}
}

@media screen and (max-width: 520px) {
	.gallery__photo {
		max-width: auto;
	}
}

.masonry_lazy_loading {
	position: relative;
}

.masonry_lazy_loading>* {
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.masonry_lazy_loading:not(.loaded)>* {
	opacity: 0;
}

.masonry_lazy_loading:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	background-image: url("../images/loader.gif");
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.masonry_lazy_loading.loaded:after {
	display: none;
}

/****************** CONTENT - END *******************/

/****************** FOOTER *******************/

footer {position:relative;z-index:1;}
.footer__form-wrapper {padding-top: 30px;}
.footer__form {
    border: 20px solid var(--white);
    background-color: var(--white);
    border-radius: 20px;
    margin: 0px -20px -80px -20px;
    position: relative;
    z-index: 1;
}
.footer__form-inner {
    border-radius: 20px;
    background-color: var(--blue_dark);
    padding: 25px 20px;
}
.footer__form-header {}
.footer__form-title {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    color: var(--white);
    display: inline;
    vertical-align: middle;
	padding-right: 10px;
}
.footer__form-subtitle {
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    color: var(--white);
    margin: 15px 0;
    display: inline;
    vertical-align: middle;
}

.footer__form-header+.footer__form-content {margin-top: 10px;}
.footer__form-content {}
.footer__form-inputs {gap: 20px;}
.footer__form-input {}
.footer__form-input:nth-child(2) {flex-grow: 1;}
.footer__form-input-inner {}
.input__wrapper {}
.input__text {}
.input__error-text {display: none;}


.footer__form-wrapper+.footer__wrapper {padding-top: 80px;}
.footer__wrapper {background-color: var(--blue_dark);}
.footer__columns {padding: 30px 0px;margin:0px -20px;}
.footer__column {flex-grow: 1;}
.footer__column-inner {padding: 0px 20px;}

.footer__logo {width: 60px;display: block;}
.footer__logo img {}
.footer__logo-mobile {display: none;}

.footer__menu {}
.footer__menu ul {flex-wrap: wrap;margin: 0px -15px;}
.footer__menu ul li {list-style: none;width:33.3333%;}
.footer__menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    margin: 15px 15px;
    display: block;
}
.footer__menu ul li a:hover {color: var(--orange);}

.footer__contacts-block {gap:20px;}
.footer__contacts {flex-grow: 1;}
.footer__phone {}
.footer__phone+* {margin-top: 20px;}
.footer__phone a {font-weight: 600;color: var(--white); text-decoration: none;}
.footer__phone a:hover {color: var(--orange);}
.footer__btn {white-space: nowrap;}

*+.socials__items-contacts {margin-top: 40px;}
.socials__items {}
.socials__items ul {gap: 20px;}
.socials__items-contacts ul {justify-content: flex-start;}
.socials__items ul li {list-style: none;}
.socials__items ul li a {
    width: 40px;height: 40px;
    text-align: center;line-height: 40px;
    background-color: var(--blue_1);
    border-radius: 40px;
    display: block;
    vertical-align: middle;
    font-size: 0px;
    position: relative;top:0px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.socials__items ul li a:hover {background-color: var(--pink);}
.socials__items-contacts ul li a:hover {top:-5px;}
.socials__items ul li a svg {vertical-align: middle;fill: var(--white);}

.copyright__wrapper {background-color: var(--blue_dark);}
.copyright__inner {padding: 30px 0; border-top: 1px solid rgba(255, 255, 255, 0.2);}
.copyright {font-weight: 300; font-size: 16px; color: var(--white);}
.copyright__developer {}
.copyright__developer img {}

@media screen and (max-width: 1280px) {
    .footer__form {border:none;border-radius:0px;border-bottom: 5px solid var(--white);}
    .footer__form-inner {border-radius: 0px;}
}
@media screen and (max-width: 1100px) {
    .footer__columns {flex-direction: column;max-width: 500px;margin: 0px auto;gap:20px;}
    .footer__column {width:100%;}
    .footer__logo-desktop {display: none;}
    .footer__logo-mobile {display: block;}
    .footer__menu {border-bottom: 1px solid rgba(255, 255, 255, 0.2);}
}
@media screen and (max-width: 680px) {
    .footer__form-header {text-align: center;}
    .footer__form-header>* {display: block;}
    .footer__form-inputs {flex-direction: column;}
    .footer__form-input {width: 100%;}
    .footer__btn {white-space: normal;}
    .socials__items ul {flex-wrap: wrap;justify-content: center;}
}
@media screen and (max-width: 540px) {
    .footer__columns {margin:0px -20px;}
}

.fixed__buttons {z-index: 1;}
.fixed__buttons ul {}
.fixed__buttons ul li {list-style: none;}
.fixed__buttons ul li+li .fixed__button {margin-top: 15px;}
.fixed__buttons {position: fixed; bottom: 55px; right: 15px;}
.fixed__button {
    width: 60px; height: 60px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(var(--blue_num), 0.6);
    text-decoration: none;
    border:none;
    cursor: pointer;
}
.fixed__button:hover {background-color: rgba(var(--blue_num), 0.8);}
.fixed__button * {vertical-align: middle;}
.fixed__button svg {fill:var(--white);}
.fixed__button-up {fill:var(--blue_1);position: relative;top: -1px;}

.fixed__button-favorite {color: var(--white);flex-direction: column;}
.fixed__button-favorite svg {fill: var(--pink);}
.fixed__button-favorite-total {
    display: inline-block;
    line-height: 20px;
    width: 44px;
    text-align: center;
}


/****************** FOOTER - END *******************/

/****************** PAGINATION *******************/

.pagination {margin-top: 35px;}
.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}
.pagination ul li {list-style:none;}
.pagination ul li a,
.pagination ul li strong {
    min-width: 35px; height: 35px; font-weight: normal;
    line-height:35px;padding:0px 5px;
    text-decoration: none; border-radius: 5px;
    background-color: rgba(107, 110, 124, 0.1);
    color: #454c5b; border: none;
    transition: .3s all ease;
    display: block; text-align: center;
}
.pagination ul li:not(.active) a:hover {background-color: var(--blue_1); color: var(--white); scale: 1.1;}
.pagination ul li:not(.active) a:active {scale: .9; background-color: var(--blue_1);}
.pagination ul li.active a,
.pagination ul li strong {
    background-color: var(--blue_1);
    color: var(--white); cursor:default;
    pointer-events: none;
}

.pagination__more-button {
    align-items: center;
    gap: 20px;cursor: pointer;
    color: var(--blue_3);
    font-weight: 700;
    font-size: 18px;
    margin: 50px auto 30px auto;
    background-color: transparent;
    border: none; padding: 5px;
    transition: all .3s ease;
}
.pagination__more-button svg {fill: var(--blue_3);transition: all .3s ease;}
.pagination__more-button:hover {scale: 1.05;}
.pagination__more-button:hover svg {rotate: -90deg;}
.pagination__more-button:active {scale: .95;}
.pagination__more-button:active svg {rotate: -480deg;}

/****************** PAGINATION - END *******************/

/****************** POP_UP_WINDOW *******************/


body.html__popup {overflow:hidden;}
.popup__window-wrapper{
    z-index:10000;
    position:fixed;
    top:0px; left:0px;
    background:rgba(0,0,0,0.7);
    height:100%; width:100%;
    vertical-align:middle;
    text-align:center;
    display:none;
    overflow-y:auto;
    overflow-x:hidden;
}
.popup__window-wrapper-1 {display:table;height:100%;width:100%;}
.popup__window-wrapper-2 {display:table-row;height:100%;width:100%;}
.popup__window-wrapper-3 {display:table-cell;height:100%;width:100%;vertical-align: middle;text-align:center;}

.popup__window {
    display:inline-block;
    vertical-align:middle;
    border-radius:10px;
    margin:20px 20px;padding: 20px;
    background-color: var(--white);
    z-index:10;
    position:relative;
    text-align:justify;
    opacity: 0;
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transition: opacity .5s, transform .5s;
    border-radius: 30px;
}
.popup__window-narrow {max-width: 650px;}

html.html__popup .popup__window {opacity: 1; -ms-transform: scale(1); transform: scale(1);}

.popup__window-close {
    position: absolute;
    display: block;
    top: 15px; right: 15px;
    cursor: pointer;
    display: block;
    line-height: 0px;
}
.popup__window-shadow {
    z-index:1; position:fixed;
    top:0px; left:0px;
    height:100%; width:100%;
}

.popup__window-title {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    padding: 0px 30px;
	padding-top:20px;
    color: #000;
}
.popup__window-subtitle {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #000;
    line-height: 150%;
    max-width: 510px;
    margin: 0px auto;
    margin-top: 30px;
}
.popup__window-image {margin-top: 30px;text-align: center;}
.popup__window-content {padding:30px 0px;}
.popup__window-content-narrow {max-width: 460px;margin: 0px auto;}

@media screen and (max-width: 767px) {
    .popup__window-title {font-size: 27px;}
    .popup__window-subtitle {font-size: 14px;}
}
@media screen and (max-width: 480px) {
    .popup__window-content-inner {width:auto;}
}




.popup__search-wrapper {}
.popup__search {width: 100%;}
.popup__search-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


.popup__search-item {margin-top:10px;}
.popup__search-items-title {}
.popup__search-item {gap:10px;color: #000;}
.popup__search-item:hover {color:var(--blue_2);}
.popup__search-item-img {width: 150px;min-width:150px;height:100px;overflow: hidden;border-radius: 15px;}
.popup__search-item-img img {}
.popup__search-item-name {
    flex-grow: 1;
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    position: relative;
}

@media screen and (max-width: 480px) {
    .popup__search-item {flex-direction: column;}
    .popup__search-item-img {width: 100%;flex-grow:1;min-width:150px;}
    .popup__search-item-name {text-align: center;}
}

.popup__menu {}
.popup__menu ul {}
.popup__menu ul li {list-style:none;}
.popup__menu ul li a {
	text-decoration: none;
    color: inherit;
    padding: 5px 5px;
	display:block;
	font-size:18px;
	color:var(--text_color);
}
.popup__menu ul li a:hover {color: var(--orange);}

/****************** POP_UP_WINDOW - END *******************/