@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter_18pt-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter_18pt-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter_18pt-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter_18pt-Bold.ttf);
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

button {
    cursor: pointer;
    outline: 0;
    transition: 0.3s;
    border: 0;
    background-color: transparent;
}

.container {
    max-width: 1200px;
    padding: 0 32px;
    margin: 0 auto;
}

.header {
    padding: 24px 0;
    box-sizing: border-box;
    position: relative;
    background-color: #fff;
    z-index: 10;
}

.header .container {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 32px;

}

.header-logo-pic {
    max-width: 184.954px;
    width: 100%;
    height: 80px;
}

.header-logo-pic img {
    width: 100%;
}

.header-logo-text {
    max-width: 284px;
    color: rgba(1, 1, 53, 0.7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-logo:hover .header-logo-text {
    color: var(--Primary, #3156A7);
}

.header-blind {
    margin-left: auto;
    margin-right: auto;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-blind:hover {
    color: var(--Primary, #3156A7);
}

.header-blind::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../img/header/blind.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.header-blind:hover::before {
    background-image: url(../img/header/blind_active.svg);
}

.header-add {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    margin-top: -24px;
}

.header-hotline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-hotline span {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-hotline a {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.header-hotline a:hover {
    color: #3156A7;
}

.header-acc {
    width: 24px;
    height: 24px;
    background-image: url(../img/header/acc.svg);
    background-size: 100% 100%;
}

.header-acc:hover {
    background-image: url(../img/header/acc_active.svg);
}

/* .header-lang {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}

.header-lang:hover {
    color: #3156A7;
} */

.header-lang {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
    user-select: none;
}


.header-lang_selected {
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    gap: 8px;
    transition: 0.3s;
}

.header-lang_selected::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../img/header/arrow.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.header-lang_selected:hover {
    color: var(--Primary, #3156A7);
}

.header-lang_selected:hover::after {
    background-image: url(../img/header/arrow_active.svg);
}

.header-lang_selected.open::after {
    transform: rotate(180deg);
}

.header-lang_items {
    position: absolute;
    top: calc(100% + 8px);
    left: -50%;
    /* right: 0; */
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    display: none;
    z-index: 10;
    width: 128px;
    overflow-y: auto;
    padding: 8px 0;
    flex-direction: column;
}

.header-lang_items.show {
    display: flex;
}

.header-lang_item {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 56px;
    padding: 16px 24px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
}

.header-lang_item:hover {
    background: var(--Grey-1, #F7F4FC);
    color: var(--Primary, #3156A7);
}


.header-lang_item.selected {
    background: var(--Grey-1, #F7F4FC);
    color: var(--Primary, #3156A7);
}

.header-nav {
    border-bottom: 2px solid var(--Color, #FFF);
    background: var(--Grey-1, #F7F4FC);
    padding: 24px 0;
    box-sizing: border-box;
    position: relative;
    top: 0;
    z-index: 9;
}

.header-nav_scrolled {
    position: sticky;
}

.header-nav .container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav-item {
    display: flex;
    gap: 6px;
    align-items: center;
    position: relative;
}

.header-nav-item_btn {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: 0.3s;
}

.header-nav-item_link {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: 0.3s;
}

.header-nav-item_link:hover {
    color: var(--Primary, #3156A7);
    
}

.header-nav-item_drop::after {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-image: url(../img/header/arrow.svg);
    background-size: 100% 100%;
    display: flex;
}

.header-nav-item:hover .header-nav-item_btn {
    color: var(--Primary, #3156A7);
}

.header-nav-item_drop:hover::after {
    background-image: url(../img/header/arrow_active.svg);
}


.header-nav-search-btn {
    width: 24px;
    height: 24px;
    display: flex;
    background-image: url(../img/header/search.svg);
    background-size: 100% 100%;
    margin-left: auto;
}

.header-nav-search-btn:hover {
    background-image: url(../img/header/search_active.svg);
}

.main-banner {
    margin-top: 48px;
}

.main-banner-slider {
    position: relative;
    cursor: grab;
}

.main-banner-slider .slick-list.dragging{
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.main-banner-slider-item {
    /* max-height: 519px; */
    border-radius: var(--border-1, 4px);
    position: relative;
    aspect-ratio: 1200 / 519;
}

.main-banner-slider-item video {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.main-banner-slider-item_bg {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
}

.main-banner-slider-item_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-1, 4px);
}

.main-banner-slider .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -56px;
    margin: auto;
    width: 24px;
    height: 24px;
    font-size: 0;
    background-image: url(../img/main-banner/arrow.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.main-banner-slider .slick-arrow:hover {
    background-image: url(../img/main-banner/arrow_active.svg);
}

.main-banner-slider .slick-next {
    left: unset;
    right: -56px;
    transform: rotate(180deg);
}

.main-banner-slider .slick-dots {
    position: absolute;
    bottom: -22px;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
}

.main-banner-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    background-color: #D9D9D9;
    border-radius: 50%;
    transition: 0.3s;
}

.main-banner-slider .slick-dots .slick-active button {
    background-color: #3156A7;
}

.main-banner-slider-item_play {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--Primary, #3156A7);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-image: url(../img/main-banner/play.svg);
    background-size: 20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.main-banner-slider-item_play:hover {
    background-color: #153883;
}

.main-service {
    margin-top: 72px;
}

.main-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-top-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 125% */
}

.main-top-link {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.main-top-link:hover {
    color: var(--Dark-primary, #153883);
}

.main-service-row {
    display: flex;
    margin-top: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.main-service-item {
    width: calc(100% / 5 - 12.8px);
    height: 105px;
    border-radius: var(--border-1, 4px);
    background: var(--Grey-1, #F7F4FC);
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main-service-item-pic {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    position: relative;
}

.main-service-item-pic img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.main-service-item-pic_active {
    opacity: 0;
}

.main-service-item:hover {
    border-radius: var(--border-1, 4px);
    background: var(--Primary, #3156A7);
    color: var(--white, #FFF);
}

.main-service-item:hover .main-service-item-pic img {
    opacity: 0;
}

.main-service-item:hover .main-service-item-pic_active {
    opacity: 1 !important;
}

.main-teach {
    margin-top: 72px;
    overflow: hidden;
}

.main-teach-nav {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    overflow-x: scroll;
    margin-left: -32px;
    margin-right: -32px;
}

.main-teach-nav button:first-child {
    margin-left: 32px;
}

.main-teach-nav button:last-child {
    margin-right: 32px;
}

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

.main-teach-nav button {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 12px;
    border-radius: var(--border-1, 4px);
    white-space: nowrap;
}

.main-teach-nav button:hover {
    color: var(--white, #FFF);
    background: var(--Primary, #3156A7);
}

.main-teach-nav button.main-teach-nav_active {
    color: var(--white, #FFF);
    background: var(--Primary, #3156A7);
}

.main-teach-row {
    margin-top: 40px;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 20px; */
    row-gap: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-gap: 20px;
}

.main-teach-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main-teach-item_hidden {
    display: none;
}

.main-teach-item_hidden_vis {
    display: flex;
}

.main-teach-item[hidden]{
    display: none !important;
}

.main-teach-pic {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    overflow: hidden;
    background: var(--Grey-1, #F7F4FC);
    border-radius: var(--border-1, 4px);
    position: relative;
}

.main-teach-pic img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
    object-fit: contain;
    transition: 0.3s;
}

.main-teach-pic::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background-color: #3156A780;
    transition: 0.3s;
}

.main-teach-item:hover .main-teach-pic::after {
    opacity: 1;
}

.main-teach-info {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-teach-info-tag {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 12px;
    border-radius: var(--border-1, 4px);
    background: var(--Primary, #3156A7);
}

.main-teach-info-time {
    color: rgba(1, 1, 53, 0.5);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.main-teach-name {
    margin-top: 16px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.main-teach-name:hover {
    color: var(--Primary, #3156A7);
}

.main-teach-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    color: var(--Primary, #3156A7);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.main-teach-more:hover {
    color: var(--Dark-primary, #153883);
}

.main-teach_news .main-teach-pic {
    width: 100%;
    height: 290px;
    aspect-ratio: auto;
}

.main-teach_news .main-teach-info-tag {
    color: var(--Dark, #010135);
    background: var(--Grey-1, #F7F4FC);
}

.main-teach-btn {
    width: 100%;
    margin-top: 24px;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    background: #55ACE3;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.main-teach-btn:hover {
    background-color: rgba(21, 56, 131, 1);
}

.main-teach-btn::before {
    content: '';
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    background-image: url(../img/main-teach/tg_icon.svg);
    background-size: 100% 100%;
    display: flex;
}

.main-teach_digest .main-teach-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-gap: 20px;
}

.main-teach_digest .main-teach-item {
    /* width: calc(100% / 4 - 15px); */
    width: 100%;
}

.main-teach_digest .main-teach-info-time {
    margin-top: 16px;
}

.main-teach_digest .main-teach-pic {
    height: auto;
    aspect-ratio: 95/134;
}

.main-about {
    margin-top: 72px;
}

.main-about-row {
    margin-top: 40px;
    display: flex;
    gap: 48px;
}

.main-about-block p {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.main-about-block-bot {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-about-block-btn {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    padding: 12px 40px;
    box-sizing: border-box;
}

.main-about-block-btn:hover {
    background-color: #153883;
}

.main-about-block-3d {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.main-about-block-3d:hover {
    color: #153883;
}

.main-about-pic {
    min-width: 488px;
    max-width: 388px;
    height: 366px;
    border-radius: var(--border-1, 4px);
    cursor: pointer;
    position: relative;
}

.main-about-pic::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(49, 86, 167, 0.5);
    background-image: url(../img/service_single/zoom.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;
    opacity: 0;
    transition: 0.3s;
    border-radius: var(--border-1, 4px);
}

.main-about-pic img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
    object-fit: cover;
}

.main-about-pic::after {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url(../img/main-about/zoom.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: 0.3s;
    opacity: 0;
}

.main-about-pic:hover {
    cursor: zoom-in;
}

.main-about-pic:hover::after {
    scale: 1.5;
    opacity: 1;
}

.main-about-pic:hover::before {
    opacity: 1;
}

.main-add {
    margin-top: 72px;
}

.main-add .container {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.main-add-org {
    /* width: calc(100% / 3 * 1); */
}

.main-add-partner {
    /* width: calc(100% / 3 * 2); */
}

.main-add-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 32px;
}

.main-add-row {
    display: flex;
    gap: 32px;
    /* flex-wrap: wrap; */
}

.main-add-item {
    width: 100%;
    max-width: 160px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main-add-item:hover {
    color: var(--Primary, #3156A7);
}

.main-add-item-pic {
    width: 80px;
    height: 80px;
}

.main-add-item-pic img {
    width: 100%;
    height: 100%;
}

.main-map {
    margin-top: 72px;
    margin-bottom: 72px;
}

.main-map iframe {
    width: 100%;
    height: 320px;
}

.footer {
    background: var(--Dark, #010135);
    padding: 48px 0;
    /* margin-top: 72px; */
}

.footer-main {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    width: calc(100% / 3 - 30px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    width: 184.954px;
    height: 80px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 335px;
}

.footer-info {
    width: calc(100% / 3 - 30px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-info-title {
    align-self: stretch;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.footer-info-tel {
    align-self: stretch;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.footer-info-tel:hover {
    opacity: 0.5;
}

.footer-info-mail {
    align-self: stretch;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer-info-mail:hover {
    opacity: 0.5;
}

.footer-info-adr {
    align-self: stretch;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: 0.3s;
}

.footer-info-adr:hover {
    opacity: 0.5;
}

.footer-right {
    width: calc(100% / 3 - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-left, .footer-info, .footer-right {
    width: calc(100% / 3 - 27px);
}

.footer-sub {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-sub span {
    align-self: stretch;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

/* .footer-sub input {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 12px 16px;
    box-sizing: border-box;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.30);
    border: 0;
    outline: 0;
}

.footer-sub input::placeholder {
    color: var(--white, #FFF);

} */

.footer-sub-form {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.30);
    box-sizing: border-box;
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    transition: 0.3s;
}

.footer-sub-form input {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: transparent;
    border: 0;
    outline: 0;
    transition: 0.3s;
    width: 100%;
}

.footer-sub-form input::placeholder {
    color: var(--white, #FFF);
}

.footer-sub-form input[type="submit"] {
    font-size: 0;
    width: 24px;
    height: 24px;
    background-image: url(../img/footer/arrow.svg);
    background-size: 100% 100%;
    cursor: pointer;
    transition: 0.3s;
}

.footer-sub-form:hover {
    background: #fff;
}

.footer-sub-form:hover input {
    color: #010135 !important;
}

.footer-sub-form:hover input::placeholder {
    color: #010135;
}

.footer-sub-form:hover input[type="submit"] {
    background-image: url(../img/footer/arrow_active.svg);
}

.footer-soc {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-soc span {
    align-self: stretch;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.footer-soc-row {
    display: flex;
    gap: 24px;
}

.footer-soc-row a {
    width: 24px;
    height: 24px;
}

.footer-soc-row a img {
    width: 100%;
    height: 100%;
}

.footer-soc-row a:hover {
    opacity: 0.5;
}

.footer-bot {
    margin-top: 72px;
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-bot-comp {
    color: rgba(255, 255, 255, 0.7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    margin-right: auto;
}

.footer-bot a {
    color: rgba(255, 255, 255, 0.7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.footer-bot a:hover {
    opacity: 0.5;
}

.main-teach-cal {
    border-radius: var(--border-1, 4px);
    border: 2px solid var(--Grey-1, #F7F4FC);
    background: #FFF;
    /* width: calc(100% / 3 - 13.33px); */
    width: 100%;
    box-sizing: border-box;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: fit-content;
    /* overflow: hidden; */
    grid-column: 3;
    grid-row: 1;
}

.main-teach-cal-title {
    color: var(--Dark, #010135);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 158.333% */
}

.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
}

.ui-datepicker-prev, .ui-datepicker-next {
    width: 24px;
    height: 24px;
    background-image: url(../img/main-banner/arrow.svg);
    background-size: 100% 100%;
    display: flex;
    cursor: pointer;
    font-size: 0;
    order: 0;
}

.ui-datepicker-next {
    transform: rotate(180deg);
    order: 2;
}

.ui-datepicker-title {
    display: flex;
    gap: 4px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 177.778% */
}

.ui-datepicker-calendar {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    width: 100%;
}

.ui-datepicker-calendar tr {
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
    box-sizing: border-box;
    flex-wrap: wrap;
}


.ui-datepicker-calendar td {
    width: 30px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    position: relative;
}

.event-list-inline {
    position: absolute;
    left: 100%;
    top: 100%;
    z-index: 1;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    padding: 8px 0;
    box-sizing: border-box;
    list-style: none;
    width: 300px;
    visibility: hidden;
    opacity: 0;
}

.event-list-inline::before {
    content: '';
    width: 100%;
    height: 60px;
    /* background-color: red; */
    position: absolute;
    top: -31px;
    left: -25px;
}

.has-event:hover .event-list-inline {
    visibility: visible;
    opacity: 1;
}

.event-list-inline li {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 16px 24px;
    box-sizing: border-box;
    transition: 0.3s;
}

.event-list-inline li:hover {
    background: var(--Grey-1, #F7F4FC);
    color: var(--Primary, #3156A7);
}

.ui-datepicker-other-month {
    opacity: 0;
}

.ui-datepicker-calendar .has-event {
    background: var(--Primary, #3156A7);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.ui-datepicker-calendar .has-event:hover {
    background: var(--Dark-primary, #153883);
}

.ui-datepicker-calendar thead {
    color: var(--Dark, #010135);
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    text-transform: uppercase;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #F7F4FC;
    margin-bottom: 24px;
}

.ui-datepicker-calendar thead td {
    opacity: 0.5;
}

.ui-datepicker-calendar tbody {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.ui-datepicker-calendar tbody td {
    transition: 0.3s;
    border-radius: var(--border-1, 4px);
    cursor: default;
}

.ui-datepicker-calendar tbody td a {
    cursor: default;
}

.header-nav-item_drop-menu {
    position: absolute;
    left: 0;
    width: 300px;
    top: calc(100%);
    margin-top: 30px;
    z-index: 8;
    list-style: none;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    padding: 8px 0;
    box-sizing: border-box;
    display: none;;
}

.header-nav-item_drop-menu::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    top: -30px;
    background-color: transparent;
}

.header-nav-item_drop-menu li {
    position: relative;
}

.header-nav-item_drop-menu li a {
    width: 100%;
    padding: 16px 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-items: center;
}

.header-nav-item_drop-menu li a:hover {
    background: var(--Grey-1, #F7F4FC);
    color: var(--Primary, #3156A7);
}

.header-nav-item_drop-menu a::after {
    transform: rotate(-90deg);
}

.header-nav-item_drop-menu_sub {
    left: calc(100% - 20px);
    top: -8px;
    margin-top: 0;
}

.header-nav-item_drop-menu { display: none; }

/* 1-й уровень */
.header-nav-item_drop:hover > .header-nav-item_drop-menu { display: flex; flex-direction: column; }

/* Подуровни, где <a.header-nav-item_drop> перед <ul> */
.header-nav-item_drop:hover + .header-nav-item_drop-menu_sub { display: flex; flex-direction: column; }

.header-nav-item_drop-menu:hover {
    display: block;
}

.header-search {
    position: absolute;
    bottom: 0;
    z-index: 8;
    box-sizing: border-box;
    background: var(--white, #FFF);
    right: 0;
    left: 0;
    top: 200px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.header-search_active {
    max-height: 279px;
    padding: 32px 0;
}

.header-search_scrolled {
    position: sticky;
    top: 74px;
}

.header-search form {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header-search form input[type="text"] {
    border-radius: var(--border-1, 4px);
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    border: 0;
    outline: 0;
    border-radius: var(--border-1, 4px);
    background: var(--Grey-1, #F7F4FC);
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    background-image: url(../img/header-search/search.svg);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center left 16px;
    padding-left: 56px;
}

.header-search form input[type="submit"] {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    padding: 12px 40px;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: 0.3s;
}

.header-search form input[type="submit"]:hover {
    background-color: #153883;
}

.header-search-clear {
    width: 32px;
    height: 32px;
    background-image: url(../img/header-search/cross.svg);
    background-size: 100% 100%;
}

.header-search-res {
    margin-top: 24px;
    padding-left: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-search-res a {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.header-search-res a:first-child {
    font-weight: 600;
}

.body_bg {
    overflow: hidden;
}

.body_bg::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.20);
    transition: 0.3s;
}

.header .header-nav-search-btn, .header .header-menu_btn {
    display: none;
}

.header-nav-item_drop_back {
    display: none;
}

.header-nav_mob {
    display: none;
}

.main-service-more {
    display: none;
    cursor: pointer;
}

.chip {
    padding-top: 32px;
}

.chip .container {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    /* max-width: 100%; */
    overflow: hidden;
}

.chip a {
    opacity: 0.5;
    color: var(--Dark, #010135);
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.chip a:hover {
    opacity: 1;
}

.chip a::after {
    content: '/';
    opacity: 0.5 !important;
    margin: 0 5px;
}

.chip a:last-child {
    flex: 1 1 auto;
    min-width: 0;            
    overflow: hidden;
    text-overflow: ellipsis;
}

.chip a:last-child::after {
    display: none;
}


.about {
    margin-top: 24px;
    margin-bottom: 72px;
}

.about .container {
    display: flex;
    gap: 40px;
}

.about-side {
    max-width: 285px;
    width: 100%;
    border-radius: var(--border-1, 4px);
    border: 2px solid var(--Grey-1, #F7F4FC);
    padding: 32px 0;
    box-sizing: border-box;
    display: flex;
    height: fit-content;
    position: sticky;
    top: 104px;
    bottom: 20px;
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: scroll;
}

.about-side a {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    position: relative;
    padding: 0 32px; 
}

.about-side_active {
    color: var(--Primary, #3156A7) !important;
}

.about-side a::after {
    content: '';
    width: 3px;
    height: 40px;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}

.about-side_active::after {
    width: 3px;
    background: var(--Primary, #3156A7) !important;
}

.about-side a:hover {
    color: #3156A7;
}

.about-side-link {
    display: flex;
    gap: 16px;
}

.about-side-link::before {
    content: '';
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    background-image: url(../img/about/out.svg);
    background-size: 100% 100%;
    display: flex;
    margin-top: 3px;
}

.about-cont {
    width: 100%;
}

.about-cont p {
	color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-cont h1, .service-main h1, .service-intro h1 {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 40px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.about-tour-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 177.778% */
    margin-top: 32px;
}

.about-text a {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.about-text a:hover {
    text-decoration: none;
    color: #153883;
}

.about-text p img {
    margin: 16px 0;
}

.about-text ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 20px;
    box-sizing: border-box;
}

.about-text ol {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 20px;
    box-sizing: border-box;
}

.about-tour-pic {
    border-radius: var(--border-1, 4px);
    width: 100%;
    height: 400px;
    position: relative;
    margin-top: 32px;
}

.about-tour-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-1, 4px);
}

.about-tour-btn {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
}

.about-tour-btn:hover {
    background-color: #153883;
}

.about-mng {
    margin-top: 48px;
}

.about-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 24px;
    margin-top: 32px;
}

.about-mng-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 48px;
}

.about-mng-item {
    width: 100%;
    display: flex;
    gap: 24px;
}

.about-mng-item-pic {
    max-width: 285px;
    height: 285px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.about-mng-item-pic img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
}

.about-mng-item-cont {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

.about-mng-item-name {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 177.778% */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-mng-item-pos {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    opacity: 0.5;
}

.about-mng-item-phd {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-mng-item-phd span {
    opacity: 0.5;
}

.about-mng-item-add {
    display: flex;
    gap: 32px;
}

.about-mng-item-add a {
    display: flex;
    gap: 8px;
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    flex-direction: column;
    max-width: 180px;
    width: 100%;
}

.about-mng-item-add a:hover {
    color: #153883;
}

.about-mng-item-add a span {
    align-self: stretch;
    color: var(--Dark, #010135) !important;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.about-mng-item-add a:hover {
    color: #3156A7;
}

.about-mng-item-add a img {
    width: 24px;
    height: 24px;
}

.about-mng-item-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-mng-item-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-mng-item-info-block span {
    opacity: 0.5;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-mng-item-info-block ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-org {
    margin-top: 48px;
}

.about-org-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 360px;
    margin: 0 auto;
    position: relative;
}

.about-org-head::after {
    content: '';
    width: 10.666px;
    height: 89.037px;
    background-image: url(../img/about/org-head-line.svg);
    background-size: 100% 100%;
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    right: 0;
    margin: auto;
}

.about-org-head-pic {
    width: 230px;
    margin-bottom: -28px;
}

.about-org-head-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-org-head-block {
    width: 100%;
    background-color: #E61429;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 16px;
    border-radius: 4px;
}

.about-org-head-name {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 177.778% */
    text-align: center;
}

.about-org-head-pos {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    text-align: center;
}

.about-history {
    margin-top: 48px;
}

.about-history-btn {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    display: flex;
    width: fit-content;
    margin-top: 32px;
}

.about-history-btn:hover {
    background-color: #153883;
}

.about-sertificate {
    margin-top: 48px;
}

.about-sertificate-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.about-sertificate-item {
    width: calc(100% / 4 - 24px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-sertificate-item-pic {
    width: 100%;
    aspect-ratio: 194.75/260.71;
}

.about-sertificate-item-pic img {
    width: 100%;
}

.about-sertificate-item-name {
    color: var(--Dark-primary, #153883);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s;
}

.about-sertificate-item-name:hover {
    color: #010135;
}

.about-serv-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-serv-links a {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
    display: flex;
    gap: 16px;
}

.about-serv-links a:hover {
    color: var(--Primary, #3156A7);
}

.about-serv-links a::before {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-image: url(../img/about/link_out.svg);
    background-size: 100% 100%;
}

.about-serv-links_calculator::before {
    background-image: url(../img/about/calculator.svg) !important;
}

.about-program {
    margin-top: 48px;
}

.about-filial {
    margin-top: 48px;
}

.about-filial-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 32px;
}

.about-filial-item {
    width: calc(100% / 2 - 10px);
    color: #010135;
}

.about-filial-item-pic {
    width: 100%;
    height: 320px;
    border-radius: var(--border-1, 4px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.about-filial-item-pic_hover {
    /* display: none; */
    opacity: 0;
    z-index: 1;
    transition: 0.3s;
}

.about-filial-item:hover .about-filial-item-pic_hover {
    opacity: 1;
}

.about-filial-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--border-1, 4px);
}

.about-filial-item-name {
    /* max-width: 285px; */
    color: inherit;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    transition: 0.3s;
}

.about-filial-item-name:hover {
    color: #3156A7;
    cursor: pointer;
}

.about-filial-item-add {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: inherit;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

/* .about-filial-item-add:hover {
    color: #3156A7;
} */

.about-filial-item-add a, .about-filial-item-add div {
    display: flex;
    gap: 16px;
    transition: 0.3s;
}

.about-filial-item-add-map::before {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    display: flex;
    background-image: url(../img/about/loc.svg);
    background-size: 100% 100%;
}

.about-filial-item-add-mail::before {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    display: flex;
    background-image: url(../img/about/mng_mail.svg);
    background-size: 100% 100%;
}

.about-filial-item-add-mail:hover {
    color: #3156A7;
}

.about-filial-item-add-tel::before {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    display: flex;
    background-image: url(../img/about/mng_tel.svg);
    background-size: 100% 100%;
}

.about-filial-item-add-tel:hover {
    color: #3156A7;
}

.about-filial-item-add-web::before {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    display: flex;
    background-image: url(../img/about/web.svg);
    background-size: 100% 100%;
}

.about-filial-item-add-web:hover {
    color: #3156A7;
}

.about-law {
    margin-top: 48px;
}

.about-data {
    margin-top: 48px;
}

.about-program-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-program-links-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-program-links-item::before {
    content: '';
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    display: flex;
    background-size: 100% 100%;
}

.about-program-links-item_rtf::before {
    background-image: url(../img/about/rtf.svg);
}

.about-program-links-item_docx::before {
    background-image: url(../img/about/docx.svg);
}

.about-program-links-item_xlsx::before {
    background-image: url(../img/about/xlsx.svg);
}

.about-program-links-item_png::before {
    background-image: url(../img/about/png.svg);
}

.about-program-links-item_zip::before {
    background-image: url(../img/about/rtf.svg);
}

.about-program-links-item_link::before {
    background-image: url(../img/about/chain.svg);
}

.about-program-links-item_link {
    align-items: center;
}

.about-program-links-cont {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.about-program-links-cont-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-program-links-cont-title span {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    line-height: 16px;
}

.about-program-links-cont a:hover {
    color: var(--Primary, #3156A7);
}

.about-program-links-cont span {
    display: flex;
    gap: 16px;
    align-items: center;
    transition: 0.3s;
    flex-wrap: wrap;
}

.about-program-links-item:hover .about-program-links-cont span {
    opacity: 1;
    top: 100%;
}

.about-program-links-add {
    margin-left: auto;
    display: flex;
    gap: 16px;
    opacity: 1;
    /* visibility: hidden; */
    transition: 0.3s;
}

.about-program-links-item:hover .about-program-links-add {
    opacity: 1;
    visibility: visible;
}

.about-program-links-add-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-program-links-add-preview:hover {
    color: #153883 !important;
}

.about-program-links-add-preview::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background-image: url(../img/about/eye.svg);
    background-size: 100% 100%;
}

.about-program-links-add-download {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-program-links-add-download::before {
    display: flex;
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/about/download.svg);
    background-size: 100% 100%;
}

.about-program-links-add-download:hover {
    color: #153883 !important;
}

.about-program-links_more {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: pointer;
    margin-top: 32px;
}

.about-program-links-cont-val, .about-program-links-cont-type {
    opacity: 0.5;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-detail {
    margin-top: 48px;
}

.about-detail-row {
    display: flex;
    gap: 40px;
}

.about-detail-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100% / 2 - 20px);
}

.about-detail-main-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-detail-main-item-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 171.429% */
}

.about-detail-main-item-text {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-detail-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% / 2 - 20px);
}

.about-detail-side-item {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-detail-side-item span {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 171.429% */
}

.about-detail .about-program-links-item {
    margin-top: 32px;
}

.about-side-top {
    display: none;
}

.helper {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 640px;
}

.helper-cookie {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
}

.helper-cookie_hidden {
    display: none;
}

.helper-cookie-text {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.helper-cookie-text a {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.helper-cookie-btn {
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    padding: 12px 40px;
    box-sizing: border-box;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    display: flex;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
}

.helper-cookie-btn:hover {
    background-color: #153883;
}

.helper-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    position: relative;
}

.helper-info_hidden {
    display: none;
}

.helper-info-close {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 16px;
    right: 16px;
    background-image: url(../img/header-search/cross.svg);
    background-size: 100% 100%;
    display: flex;
}

.helper-info-text {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    width: calc(100% - 40px);
}

.helper-info-text a {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.helper-info-btn {
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    padding: 12px 40px;
    box-sizing: border-box;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    display: flex;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
}

.helper-info-btn:hover {
    background-color: #153883;
}

.fancybox__content {
    padding: 0;
    height: 100% !important;
}

.about-chronicles {
    margin-top: 32px;
}

.about-chronicles-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-chronicles-nav-item {
    border-radius: var(--border-1, 4px);
    padding: 6px 12px;
    box-sizing: border-box;
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s;
}

.about-chronicles-nav-item_active {
    background: var(--Primary, #3156A7);
    color: var(--white, #FFF);
}

.about-chronicles-nav-item:hover {
    background: var(--Primary, #3156A7);
    color: var(--white, #FFF);
}

.about-chronicles-cont {
    margin-top: 32px;
}

.about-chronicles-cont-item {
    display: none;
}

.about-chronicles-cont-item_active {
    display: flex;
    flex-direction: column;
}

.about-chronicles-row {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.about-chronicles-row-item {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: var(--border-1, 4px);
    background: var(--Primary, #3156A7);
    box-sizing: border-box;
    width: calc(100% / 3 - 21.4px);
}

.about-chronicles-row-item-num {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
}

.about-chronicles-row-item-text {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-leader {
    margin-top: 32px;
}

.about-leader-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 32px;
}

.about-leader-item {
    width: calc(100% / 3 - 13.4px);
    display: flex;
    flex-direction: column;
}

.about-leader-item-pic {
    width: 100%;
    height: 285px;
    margin-bottom: 32px;
}

.about-leader-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-1, 4px);
}

.about-leader-item-name {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 177.778% */
    margin-bottom: 16px;
}

.about-leader-item-date {
    margin-bottom: 32px;
    opacity: 0.5;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-leader-item-more {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-leader-item-more:hover {
    color: #153883;
}

.about-leader-item-pop {
    display: none;
}

.about-leader-item-pop.ginlined-content {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    padding: 48px 64px;
    box-sizing: border-box;
    max-width: 960px !important;
    height: auto !important;
}

.gslide-media {
    width: auto !important;
    height: auto !important;
}

.about-key {
    margin-top: 32px;
}

.about-leader-item-pop-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.about-leader-item-pop-pic {
    width: 200px;
    height: 207px;
    aspect-ratio: 200/207;
}

.about-leader-item-pop-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--border-1, 4px);
}

.about-leader-item-pop-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-leader-item-pop p {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-leader-item-pop-desc {
    max-width: 512px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.about-leader-item-pop img {
    width: fit-content;
}

.about-inspection-scheme {
    margin-top: 32px;
    display: flex;
}

.about-inspection-scheme img {
    width: 100%;
}

.about-squad {
    margin-top: 32px;
}

.about-title_inspection {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 32px;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 20px;
    box-sizing: border-box;
}

.about-cont ol, .about-cont ul {
	display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 20px;
    box-sizing: border-box;
}

.about-cont ol a:hover, .about-cont ul a:hover {
	color: var(--Primary, #3156A7)
}

.about-price {
    margin-top: 32px;
}

.about-price .about-text {
    margin-top: 32px;
}

.about-stage {
    margin-top: 32px;
}

.about-stage .about-list {
    margin-bottom: 32px;
}

.about-address {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.about-address a {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.about-address a:hover {
    color: var(--Dark-primary, #153883);
}

.about-doc {
    margin-top: 32px;
}

.service {
    margin-top: 24px;
    margin-bottom: 72px;
}

.service .container {
    display: flex;
    gap: 40px;
}

.service_request {
    padding-bottom: 72px;
}

.service-cont {
    width: 100%;
}

.service-side {
    max-width: 285px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    height: fit-content;
    position: sticky;
    top: 104px;
    bottom: 20px;
    flex-direction: column;
    gap: 24px;
    /*margin-top: 80px;*/
margin-top: 0px;

    max-height: calc(100vh - 100px);
    overflow-y: scroll;
}

.about-side-btn {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    width: auto;
    padding: 12px 0;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    margin: 0 32px;
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

a.about-side-btn {
    color: var(--white, #FFF) !important;
    font-family: Inter;
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    width: auto !important;
    padding: 12px 0 !important;
    box-sizing: border-box !important;
    border-radius: 4px !important;
    background: var(--Primary, #3156A7) !important;
    margin: 0 32px !important;
    margin-top: 8px !important;
}

.about-side-btn:hover {
    background-color: #153883;
}

a.about-side-btn:hover {
    background-color: #153883 !important;
}

.service-cont .about-side-btn {
    display: none;
}

.service-side .about-side {
    margin: 0;
    height: 100%;
    max-height: none;
    overflow: visible;
    position: unset;
}

.about-side-title {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 0 32px;
    box-sizing: border-box;
}

.service-test {
    margin-top: 32px;
}

.service-test-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 24px;
}

.service-test .about-text {
    margin-bottom: 24px;
}

.service-notice {
    margin-top: 48px;
    padding: 32px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    background: var(--Grey-1, #F7F4FC);
}

.service-notice .about-text {
    margin-bottom: 48px;
}

.service-notice .about-serv-links a {
    font-weight: 400;
}

.service-notice .about-program-links {
    margin-top: 32px;
}

.service-pricelist {
    margin-top: 48px;
}

.service-pricelist-table {
    border-collapse: collapse;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.service-pricelist-table thead {
    font-weight: 600;
}

.service-pricelist-table td, .service-pricelist-table th {
    border: 2px solid var(--Grey-1, #F7F4FC);
    box-sizing: border-box;
    padding: 12px 16px;
    box-sizing: border-box;
}

.service-pricelist-table-link {
    align-self: stretch;
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-bottom: 8px;
    display: flex;
}

.service-pricelist-table-link:hover {
    color: #153883;
    text-decoration: none;
}

.service-pricelist-table-title {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.service-pricelist-table ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-pricelist-table ul ul {
    list-style-type: disc;
}

.service-pricelist-table_first {

}

.service-pricelist-table_first tr td:nth-child(1), .service-pricelist-table_first tr th:nth-child(1) {
    max-width: 48px;
    min-width: 48px;
    text-align: center;
}

.service-pricelist-table_first tr td:nth-child(2), .service-pricelist-table_first tr th:nth-child(2) {
    max-width: 240px;
    min-width: 240px;
}

.service-pricelist-table_second tr td:nth-child(1), .service-pricelist-table_second tr th:nth-child(1) {
    max-width: 48px;
    min-width: 48px;
    text-align: center;
}

.service-pricelist-table_second tr td:nth-child(2), .service-pricelist-table_second tr th:nth-child(2) {
    max-width: 400px;
    min-width: 400px;
    /* text-align: center; */
}

.service-pricelist-table_second tr td:nth-child(3), .service-pricelist-table_second tr th:nth-child(3) {
    max-width: 136px;
    min-width: 136px;
    /* text-align: center; */
    text-align: left;
}

.service-pricelist-table_second tr td:nth-child(4), .service-pricelist-table_second tr th:nth-child(4) {
    max-width: 136px;
    min-width: 136px;
    /* text-align: center; */
    text-align: left;
}

.service-pricelist-table_second tr th:nth-child(4) {
    white-space: nowrap;
}

.service-pricelist-table_second tr td:nth-child(5), .service-pricelist-table_second tr th:nth-child(5) {
    max-width: 136px;
    min-width: 136px;
    /* text-align: center; */
    text-align: left;
}

.service-gallery {
    margin-top: 48px;
}

.service-gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-gallery-item {
    width: calc(100% / 3 - 21.4px);
    position: relative;
    aspect-ratio: 267/200;
    transition: none !important;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-1, 4px);
}

.service-gallery-item_single {
    width: 100%;
}

.service-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(49, 86, 167, 0.5);
    background-image: url(../img/service_single/zoom.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;
    opacity: 0;
    transition: 0.3s;
    border-radius: var(--border-1, 4px);
}

.service-gallery-item:hover::after {
    opacity: 1;
}

.service-question {
    margin-top: 48px;
}

.service-question-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-question-item {
    border: 2px solid var(--Grey-1, #F7F4FC);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    max-height: 80px;
    transition: 0.3s;
    overflow: hidden;
}

.service-question-item_open {
    max-height: 2000px;
}

.service-question-item-top {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.service-question-item-top:hover {
    color: var(--Primary, #3156A7);
}

.service-question-item-top::after {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-image: url(../img/service_single/arrow.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.service-question-item-top:hover::after {
    background-image: url(../img/service_single/arrow_active.svg);
}

.service-question-item_open .service-question-item-top::after {
    transform: rotate(180deg);
}

.service-question-item-cont {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.service-document {
    margin-top: 48px;
}

.service-other {
    margin-top: 48px;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.service-top .about-title {
    margin-bottom: 0;
    margin-top: 0;
}

.service-top a {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.service-top a:hover {
    color: #153883;
}

.service-other {
    margin-top: 48px;
}

.service-other-row {
    display: flex;
    gap: 20px;
    row-gap: 32px;
    flex-wrap: wrap;
}

.service-other-item {
    width: calc(100% / 3 - 13.4px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.service-other-item:hover {
    color: #153883;
}

.service-other-item-pic {
    width: 100%;
    /* height: 200px; */
    position: relative;
    aspect-ratio: 278.33/200.00;
    border-radius: var(--border-1, 4px);
    background: var(--Grey-1, #F7F4FC);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.service-other-item:hover .service-other-item-pic {
    background-color: var(--Primary, #3156A7);
}

.service-other-item-pic img {
    /* width: 100%; */
    /* height: 100%; */
    width: 70px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--border-1, 4px);
}

.service-other-item-pic_active {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: 0.3s;
    margin: auto;
}

.service-other-item:hover .service-other-item-pic_active {
    opacity: 1;
}

.service-side-help {
    padding: 32px;
    box-sizing: border-box;
    border: 2px solid var(--Grey-1, #F7F4FC);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-side-help-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.service-side-help-text {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.service-side-help-tel {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.service-side-help-tel:hover {
    color: #153883;
}

.service-side-help .about-side-btn {
    width: 100%;
    margin: 0;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-main-row {
    display: flex;
    gap: 20px;
    row-gap: 32px;
    flex-wrap: wrap;
}

.service-main-row .service-other-item-pic {
    aspect-ratio: 278.33/208.75;
}

.service-main-more {
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    border-radius: 4px;
    border: 2px solid var(--Grey-1, #F7F4FC);
    margin-top: 48px;
}

.service-main-more:hover {
    background-color: #3156A7;
    color: #fff;
    border-color: #3156A7;
}

.service_request {
    background: var(--Grey-1, #F7F4FC);
}

.service-intro {
    margin-top: 24px;
}

.service-intro-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 32px;
}

.service-intro ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 875px;
    box-sizing: border-box;
}

.service-contact {
    margin-top: 48px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-form-label {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    color: rgba(1, 1, 53, 0.5);
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.service-form-label-cont {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* width: 100%; */
}

.service-form-label-cont span span {
    opacity: 0.5;
    color: var(--Red, #E61429);
}

.service-form-label-field {
    max-width: 590px;
    min-width: 590px;
    width: 100%;
    position: relative;
}

.service-form-label-field input {
    padding: 12px 16px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    border: 0;
    outline: 0;
    width: 100%;
}

.service-form-label-field input::placeholder {
    opacity: 0.5;
}

.service-form-label_text {
    align-items: flex-start;
}

.service-form-label_text .service-form-label-help {
    padding: 0;
    padding-top: 26px;
    max-width: 285px;
}

.service-form-label-field textarea {
    padding: 12px 16px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    border: 0;
    outline: 0;
    width: 100%;
    height: 104px;
    resize: none;
}

.service-form-label-field_short input {
    max-width: 285px;
}

.service-form-label-help {
    padding-bottom: 9px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    opacity: 0.5;
}

.service-form-label_error, .service-form-label_error .service-form-label-help, .service-form-label_error .service-form-label-field input::placeholder {
    color: var(--Red, #E61429);
    opacity: 1;
}

.service-data {
    margin-top: 32px;
}

.service-detail {
    margin-top: 32px;
}

.service-info {
    margin-top: 32px;
}

.service_request .about-title {
    max-width: 590px;
}

.service-resolution {
    margin-top: 32px;
}

.service-form-label-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: 0.3s;
    cursor: pointer;
    max-width: 580px;
}

.service-form-label-check input {
    display: none;
}

.service-form-label-check:hover {
    color: var(--Primary, #3156A7);
}

.service-form-label-check:hover a {
    text-decoration: none;
}

.service-form-label-check span {
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    background-image: url(../img/service_request/check.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
    margin-top: 3px;
    box-sizing: border-box;
}

.service-form-label-check:hover span {
    background-image: url(../img/service_request/check_hover.svg);
}

.service-form-label-check input:checked ~ span {
    background-image: url(../img/service_request/check_active.svg);
}

.service-manufacturer {
    margin-top: 32px;
}

.service_request-text {
    max-width: 590px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.service_request-text a {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.service-risk {
    margin-top: 32px;
}

.service-form-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-form-block-title {
    opacity: 0.5;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.service-form-block-title span {
    color: var(--Red, #E61429);
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.service-form-label-radio {
    margin-top: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.service-form-label-radio span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #010135;
    box-sizing: border-box;
    opacity: 0.2;
    transition: 0.3s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-form-label-radio span::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #3156A7;
    border-radius: 50%;
    display: flex;
    opacity: 0;
}

.service-form-label-radio:hover span {
    border-color: #3156A7;
    opacity: 0.5;
}

.service-form-label-radio input:checked~span {
    border-color: #3156A7;
    opacity: 1;
}

.service-form-label-radio input:checked~span::after {
    opacity: 1;
}

.service-form-label-radio input {
    display: none;
}

.service-volume {
    margin-top: 32px;
}

.service-form-volume-block-sub {
    margin-top: 24px;
    padding-left: 30px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s;
}

.service-form-volume-block-sub_active {
    max-height: 1000px;
}

.service-form-volume-block-sub-radio .service-form-block-title {
    margin-bottom: 16px;
}

.service-form-block-title_cur {
    max-width: 560px;
    padding-left: 30px;
}

.service-form-volume-block-sub_sol {
    margin-top: 0;
}

.service-form-volume-block-sub_sol .service-form-label-field {
    max-width: 560px;
    min-width: 560px;
}

.service_request-text ul {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.file-drop-zone {
    display: flex;
    max-width: 590px;
    padding: 24px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px dashed rgba(1, 1, 53, 0.20);
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.file-drop-zone:hover {
    border: 2px dashed var(--Primary, #3156A7);
    color: var(--Primary, #3156A7);
}

.file-list {
    margin-top: 24px;
    display: flex;
    max-width: 590px;
    gap: 16px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.file-item {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    background: var(--Primary, #3156A7);
    transition: 0.3s;
    cursor: pointer;
}

.file-item button {
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    display: flex;
    background-image: url(../img/service_request/close.svg);
    background-size: 100% 100%;
}

.file-item:hover {
    background: var(--Dark-primary, #153883);
}

.file-drop-sub {
    opacity: 0.5;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;
}

.service-form-label-check a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.service-docs .service-form-label-check {
    margin-top: 24px;
}

.service_request input[type="submit"] {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    margin-top: 24px;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    border: 0;
    padding: 12px 40px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
}

.service_request_contest input[type="submit"] {
    margin-top: 0;
}

.service_request input[type="submit"]:hover {
    background-color: #153883;
}

.footer_request {
    margin-top: 0;
}

.science-nir .about-text {
    margin-bottom: 20px;
}

.science {
    margin-bottom: 0;
    /* padding-bottom: 72px; */
}

.science-contact {
    margin-top: 32px;
}

.science-contact-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.science-contact-block-pic {
    min-width: 183px;
    max-width: 183px;
    height: 183px;
    aspect-ratio: 1/1;
    border-radius: var(--border-1, 4px);
}

.science-contact-block-pic img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
}

.science-contact-block-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    row-gap: 24px;
}

.science-contact-block-name {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.science-contact-block-name span {
    opacity: 0.5;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.science-contact-block-col {
    width: calc(100% / 3 - 21.4px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.science-contact-block-col span {
    font-weight: 600;
}

.science-contact-block-col a:hover {
    color: var(--Primary, #3156A7);
}

.science-council {
    margin-top: 48px;
}

.science-council .about-text {
    margin-bottom: 32px;
}

.science-doc {
    margin-top: 48px;
}

.science-qst {
    margin-top: 72px;
    /* border: 2px solid var(--Grey-1, #F7F4FC); */
    background: var(--Grey-1, #F7F4FC);
    padding: 72px 0;
    box-sizing: border-box;
}

.science-qst .container {
    flex-direction: column;
    gap: 0;
}

.science-qst-submit {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
    margin-top: 24px;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    border: 0;
    padding: 12px 40px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
    max-width: 160px;
}

.science-qst-submit:hover {
    background-color: #153883;
}

.helper-info-pop {
    display: none;
    max-width: 640px;
    flex-direction: column;
    gap: 20px;
}

.helper-info-pop.ginlined-content {
    max-width: 640px !important;
    padding: 48px 64px;
    box-sizing: border-box;
    overflow-y: scroll;
    display: flex !important;
    height: 100% !important;
}

.helper-info-pop-title {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    margin-bottom: 4px;
}

.helper-info-pop p {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.helper-info-pop a {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.helper-info-pop a:hover {
    color: #153883;
}

.helper-info-pop ul {
    padding-left: 27px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.helper-info-pop button {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid var(--Grey-1, #F7F4FC);
    margin: 0 auto;
    margin-top: 4px;
}

.education-data {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.education-data h2 {
    margin: 0;
}

.education-data-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.education-data-item {
    width: calc(100% / 2 - 16px);
    padding: 24px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    background: var(--Grey-1, #F7F4FC);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.education-data-item-pic {
    width: 50px;
    height: 50px;
}

.education-data-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.education-docs {
    margin-top: 48px;
}

.education-local {
    margin-top: 48px;
}

.education-local .about-text {
    margin-bottom: 32px;
}

.about-side_program {
    padding: 32px;
    flex-direction: column;
    gap: 32px;
    margin-top: 147px;
}

.about-side_program-title {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.about-side_program-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-side_program-info-pic {
    width: 72px;
    height: 72px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-bottom: 8px;
}

.about-side_program-info-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.about-side_program-info-name {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.about-side_program-info-desc {
    opacity: 0.5;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-side_program-add {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-side_program-add-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-side_program-add-item span {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.about-side_program-add-item a {
    padding: 0;
}

.program h1 {
    margin-bottom: 32px;
}

.program-nav {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
}

.program-nav::-webkit-scrollbar {
    display: none;
}

.program-nav button {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: var(--border-1, 4px);
    padding: 6px 12px;
    box-sizing: border-box;
    white-space: nowrap;
}

.program-nav button.program-nav_active {
    color: var(--white, #FFF);
    background: var(--Primary, #3156A7);
}

.program-nav button:hover {
    color: var(--white, #FFF);
    background: var(--Primary, #3156A7);
}

.program-cont {
    margin-top: 40px;
}

.program-table {
    /* margin-top: 40px; */
    border-collapse: collapse;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.program-table td, .program-table th {
    border: 2px solid var(--Grey-1, #F7F4FC);
    box-sizing: border-box;
    padding: 12px 16px;
    box-sizing: border-box;
    text-align: center;
}

.program-table th {
    font-weight: 600;
}

.program-table tr th:nth-child(1), .program-table tr td:nth-child(1) {
    text-align: left;
}

.program-table tr td:nth-child(1) {
    font-weight: 700;
    max-width: 318px;
    min-width: 318px;
}

.program-table tr td:nth-child(1) span {
    font-weight: 400;
    opacity: 0.5;
    margin-bottom: 12px;
    display: flex;
}

.program-table tr td:nth-child(2), .program-table tr td:nth-child(3), .program-table tr td:nth-child(4), .program-table tr td:nth-child(5) {
    max-width: 137.25px;
    min-width: 137.25px;
}

.program-table a:hover {
    color: #3156A7;
}

.program-cont-item {
    display: none;
}

.program-cont-item_active {
    display: flex;
}

.program-single-top {
    margin-top: 24px;
}

.program-single-top h1 {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 40px;
}

.about-side_program-single {
    margin-top: 0;
}

.program-purpose {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.program-purpose .about-side-btn {
    display: none;
}

.program-purpose-top {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.program-purpose-top-item {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(100% / 4 - 15px);
}

.program-purpose-top-item span {
    font-weight: 600;
}

.program-purpose-main {
    display: flex;
    gap: 32px;
    flex-direction: column;
}

.program-purpose-main-pic {
    max-width: 100%;
    max-height: 400px;
    /* aspect-ratio: 1/1; */
    aspect-ratio: 2.1875 / 1;
    border-radius: var(--border-1, 4px);
}

.program-purpose-main-pic img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: var(--border-1, 4px);
    object-fit: contain;
    object-position: center center;
}

.program-purpose-main-cont {
    /* max-width: 435px; */
}

.program-purpose-main-cont-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 32px;
}

.program-purpose-main-cont-pic {
    max-width: 335px;
    width: 100%;
    margin-bottom: 8px;
}

.program-purpose-main-cont-pic img {
    width: 100%;
}

.program-purpose-main-cont-text {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program-content {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.program-content h2, .program-content ol {
    margin: 0;
}

.about-cont h2 {
	color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.about-cont h3 {
	color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.about-cont h6 {
	color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 1023px) {
	.about-cont h2 {
		font-size: 20px;
	}

	.about-cont h3 {
		font-size: 16px;
	}

	.about-cont h4 {
		font-size: 14px;
	}
}

.about-list_sub {
    padding-left: 40px;
}

.program-lector {
    margin-top: 48px;
}

.program-lector-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.program-lector-item {
    display: flex;
    gap: 32px;
}

.program-lector-item-pic {
    width: 143px;
    height: 143px;
    aspect-ratio: 1/1;
    border-radius: var(--border-1, 4px);
    background: #F7F4FC;
}

.program-lector-item-pic img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
    object-fit: cover;
    object-position: center center;
    margin: 0;
}

.program-lector-item-cont {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-lector-item-name {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.program-lector-item-pos {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.program-lector-item-text {
    opacity: 0.5;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.program-location {
    margin-top: 48px;
}

.program-location-map {
    width: 100%;
    height: 320px;
    margin-top: 24px;
}

.program-location-map iframe {
    width: 100%;
    height: 100%;
}

.program-data {
    margin-top: 48px;
}

.program-lector-item-add {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.program-lector-item-add-block {
    /* width: calc(100% / 3 - 21.4px); */
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.program-lector-item-add-block span {
    font-weight: 600;
}

.program-lector-item-add-block a {
    align-self: stretch;
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.program-lector-item-add-block a span {
    font-weight: 400;
    color: var(--Dark, #010135);
}

.program-lector-item-add-block a:hover {
    color: #153883;
}

.program-lector-item-btn {
    margin-top: 16px;
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    width: fit-content;
}

.program-lector-item-btn:hover {
    background-color: #153883;
}

.program-sim {
    margin-top: 48px;
}

.program-sim-follow {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}

.program-sim-follow-tg {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    background: #55ACE3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-sim-follow-tg::before {
    content: '';
    display: flex;
    width: 20px;
    height: 20px;
    background-image: url(../img/program/tg.svg);
    background-size: 100% 100%;
    display: flex;
}

.program-sim-follow-tg:hover {
    background-color: #3156A7;
}

.program-req-nav {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    margin-left: -32px;
    margin-right: -32px;
}

.program-req-nav button:first-child {
    margin-left: 32px;
}

.program-req-nav button:last-child {
    margin-right: 32px;
}

.program-req-nav::-webkit-scrollbar {
    display: none;
}

.program-req-nav button {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: var(--border-1, 4px);
    padding: 6px 12px;
    box-sizing: border-box;
    white-space: nowrap;
}

.program-req-nav button.program-req-nav_active {
    color: var(--white, #FFF);
    background: var(--Primary, #3156A7);
}

.program-req-nav button:hover {
    color: var(--white, #FFF);
    background: var(--Primary, #3156A7);
}

.program-req-cont {
    margin-top: 48px;
}

.program-req-cont-block {
    display: none;
}

.program-req-cont-block_active {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.program-req-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.program-req-form-block h2 {
    margin: 0;
}

.program-req-form-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.program-req-form-block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 590px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.program-req-form-block-top-del {
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.program-req-form-block-top-del:hover {
    color: #153883;
}

.program-req-form-block-top-del::after {
    content: '';
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    background-image: url(../img/program/close.svg);
    background-size: 100% 100%;
    display: flex;
}

.program-req-form-add {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid var(--white, #FFF);
    max-width: 261px;
    white-space: nowrap;
}

.program-req-form-add:hover {
    background-color: #153883;
    color: #fff;
    border-color: #153883;
}

.program-req-form-add::before {
    content: '';
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    background-image: url(../img/program/plus.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.program-req-form-add:hover::before {
    background-image: url(../img/program/plus_active.svg);
}

.service-form input[type="submit"] {
    max-width: 160px;
    margin: 0;
}

.program-single-top_event h1 {
    margin-bottom: 32px;
}

.program-single-top_event-search {
    display: flex;
    gap: 40px;
    position: relative;
}

.program-single-top_event-search input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    border-radius: var(--border-1, 4px);
    background: var(--Grey-1, #F7F4FC);
    border: 0;
    background-image: url(../img/event/search.svg);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: 16px center;
    padding-left: 56px;
    outline: 0;
}

.program-single-top_event-search button {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid var(--Grey-1, #F7F4FC);
    max-width: 285px;
    width: 100%;
    white-space: nowrap;
}

.program-single-top_event-search-block {
    max-width: 285px;
    width: 100%;
}

.program-single-top_event-search button:hover {
    background-color: #3156A7;
    color: var(--white, #FFF);
    border-color: #3156A7;
}

.program-single-top_event-search button::before {
    content: '';
    display: flex;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    background-image: url(../img/event/calendar.svg);
    background-size: 100% 100%;
    transition: 0.3s;
}

.program-single-top_event-search button:hover::before {
    background-image: url(../img/event/calendar_active.svg);
}

.service .main-teach-row {
    margin-top: 16px;
    row-gap: 32px;
}

.service .main-teach-info .main-teach-info-tag {
    /* display: none; */
}

.service-side_event {
    margin-top: 15px;
}

.about-side_email {
    padding: 32px;
}

.about-side_email-title {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.about-side_email input[type="email"] {
    border-radius: var(--border-1, 4px);
    background: var(--Grey-1, #F7F4FC);
    padding: 12px 16px;
    box-sizing: border-box;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: 0;
    outline: 0;
}

.about-side_email input[type="submit"] {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    border: 0;
    cursor: pointer;
    transition: 0.3s;
}

.about-side_email input[type="submit"]:hover {
    background-color: #153883;
}

.about-side .program-sim-follow-tg {
    padding: 12px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white, #FFF) !important;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.about-side .program-sim-follow-tg::after {
    display: none !important;
}

.about-side_slider {
    width: 100%;
    height: 316px;
    min-height: 316px;
    max-height: 316px;
    position: relative;
    display: flex;
}

.about-side_slider .slick-list {
    height: 294px;
}

.about-side_slider .slick-track, .about-side_slider a, .about-side_slider .slick-slide div {
    height: 100%;
}

.about-side_slider a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-1, 4px);
}

.about-side_slider_mob {
    display: none !important;
}

.about-side_slider .slick-dots {
    position: absolute;
    bottom: -0;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
}

.about-side_slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    background-color: #D9D9D9;
    border-radius: 50%;
    transition: 0.3s;
}

.about-side_slider .slick-dots .slick-active button {
    background-color: #3156A7;
}

.service-main-pag {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.service-main-pag-num {
    display: flex;
    gap: 16px;
	flex-wrap: wrap;
}

.service-main-pag-arr {
    width: 52px;
    height: 41px;
    border-radius: 4px;
    background-image: url(../img/event/arrow.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.3s;
}

.service-main-pag-arr:hover {
    background-image: url(../img/event/arrow_active.svg);
}

.service-main-pag-arr_next {
    transform: rotate(180deg);
}

.service-main-pag-num a {
    border-radius: 4px;
    border: 2px solid var(--Grey-1, #F7F4FC);
    height: 41px;
    padding: 0 14px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.service-main-pag-num_active {
    background: var(--Primary, #3156A7);
    border-color: #3156A7 !important;
    color: #fff !important;
}

.service-main-pag-num a:hover {
    border-color: #3156A7;
    color: #3156A7;
}

.service-main-pag-num_dis {
    border: 0 !important;
}

.event-about {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.event-about .program-purpose-top-item {
    width: calc(100% / 4 - 15px);
}

.event-about .about-side-btn {
    display: none;
}

.event-about .program-purpose-main-cont-text {
    font-weight: 400;
}

.event-location {
    margin-top: 48px;
}

.event-lector {
    margin-top: 48px;
}

.event-partner {
    margin-top: 48px;
}

.event-partner .main-add-row {
    flex-wrap: wrap;
    gap: 32px;
}

.event-partner .main-add-item {
    min-width: 0;
    max-width: none;
    width: calc(100% / 4 - 24px);
}

.event-gallery {
    margin-top: 48px;
}

.event-doc {
    margin-top: 48px;
}

.event-data {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-data .about-title {
    margin-bottom: 2px !important;
    margin-top: 0;
}

.service-other-row .main-teach-item {
    width: calc(100% / 3 - 13.4px);
}

.service_photobank .main-teach-pic {
    aspect-ratio: 4/3;
    height: auto;
}

.main-teach-row_digest .main-teach-pic {

}

.program-single-top {
    margin-bottom: 24px;
}

.program-single-top h1 {
    margin-bottom: 24px;
}

.program-single-top-date {
    opacity: 0.5;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.digest-about .program-purpose-main-pic {
    max-width: 285px;
    height: 400px;
}

.digest-about .program-purpose-main-cont-text {
    font-weight: 500;
}

.digest-about .program-purpose-main-cont {
    max-width: none;
}

.digest-doc {
    margin-top: 48px;
}

.service-side_digest {
    margin-top: 0;
}

.service_photobank-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 15px;
}

.service_photobank-row a {
    width: calc(100% / 3 - 21.4px) !important;
    height: -webkit-fill-available;
    aspect-ratio: 4/3;
    max-width: none !important;
    min-width: 0;
}

.service_photobank-row a img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
}

.news-citation {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
}

.about-text blockquote {
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    box-sizing: border-box;
    border-left: 2px solid var(--Primary, #3156A7);
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
    position: relative;
    margin-bottom: 8px;
}

.news-citation::before {
    content: '';
    display: flex;
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
    background-image: url(../img/event/quotes.svg);
    background-size: 100% 100%;
}

.about-text blockquote::before {
    content: '';
    width: 48px;
    height: 48px;
    background-image: url(../img/event/quotes.svg);
    background-size: 100% 100%;
    position: absolute;
    top: -72px;
    left: 0;
}

.news-citation-cont {
    padding-left: 24px;
    box-sizing: border-box;
    border-left: 2px solid var(--Primary, #3156A7);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-citation-cont p {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
}

.news-citation .program-lector-item {
    margin-top: 24px;
}

.news-citation .program-lector-item-pic {
    max-width: 183px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1 !important;
}

.service-other_news .main-teach-info-tag {
    /* display: none; */
}

.coruption-mat, .coruption-plan, .coruption-norm {
    margin-top: 48px;
}

.coruption-norm {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.coruption-norm h2, .coruption-norm h3 {
    margin: 0;
}

.coruption-data .about-side-btn {
    display: none;
}

.main-teach-row_contest .main-teach-pic {
    height: 200px;
    aspect-ratio: unset;
}

.contest-banner {
    width: 100%;
}

.contest-banner img {
    width: 100%;
}

.contest-about {

}

.contest-banner {
    margin-top: 32px;
}

.contest-top .about-side-btn, .contest-top .about-side-result {
    display: none;
}

.contest-top .program-purpose-top-item {
    width: calc(100% / 3 - 13.4px);
}

.contest-about {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contest-about h2, .contest-about h3 {
    margin: 0;
}

.contest-participants, .contest-data {
    margin-top: 48px;
}

.service-other_contest .main-teach-info-tag {
    /* display: none; */
}

.service-other_contest .main-teach-pic {
    height: auto;
    aspect-ratio: unset;
}

.about-side-result {
    color: var(--Dark, #010135) !important;
    font-family: Inter !important;
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    border-radius: 4px !important;
    border: 2px solid var(--Grey-1, #F7F4FC) !important;
    padding: 12px 40px !important;
    box-sizing: border-box !important;
    margin: 0 32px !important;
    white-space: nowrap !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.about-side-result:hover {
    color: #fff !important;
    background-color: #3156A7 !important;
    border-color: #3156A7 !important;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    border: 2px solid var(--Grey-1, #F7F4FC);
    box-sizing: border-box;
    max-height: 96px;
    overflow: hidden;
    transition: 0.3s;
}

.info-item_open {
    max-height: 3000px;
}

.info-item-top {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    cursor: pointer;
    transition: 0.3s;
    gap: 24px;
}

.info-item-top:hover {
    color: var(--Primary, #3156A7);
}

.info-item-top::after {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-image: url(../img/info/arrow.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.info-item-top:hover::after {
    background-image: url(../img/info/arrow_active.svg);
}

.info-item_open .info-item-top::after {
    transform: rotate(180deg);
}

.info-item-cont {
    padding: 32px;
    padding-top: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 24px;
}

.info-item-cont-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.info-item-cont-row-block {
    width: calc(100% / 3 - 21.4px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.info-item-cont-row-block span {
    font-weight: 600;
}

.info-item-cont-block-title {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.info-item .service-notice {
    padding: 24px 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item h2, .info-item .about-text, .info-item h3 {
    margin: 0;
}

.info-item-cont-block {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item-cont-block .about-list {
    gap: 8px;
}

.info-item-cont-btn {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    padding: 12px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}

.info-item-cont-btn:hover {
    background-color: #153883;
}

.info-item-cont-cat {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item-cont-cat-item {
    width: calc(100% / 3 - 13.4px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.info-item-cont-cat-item:hover {
    color: #3156A7;
}

.info-item-cont-cat-item-pic {
    width: 100%;
    position: relative;
}

.info-item-cont-cat-item-pic::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background-color: #3156A780;
    transition: 0.3s;
}

.info-item-cont-cat-item:hover .info-item-cont-cat-item-pic::after {
    opacity: 1;
}

.info-item-cont-cat-item-pic img {
    width: 100%;
}

.contact-data {
    padding: 24px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    background: var(--Primary, #3156A7);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-data-title {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.contact-data-cont {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-data-cont a {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.contact-data-cont a:hover {
    opacity: 0.7;
}

.contact-data-text {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.about-cont_contact {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block {
    display: flex;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--Grey-1, #F7F4FC);
    box-sizing: border-box;
}

.contact-block-cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-block-cont-title {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.contact-block-cont-text {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-block-add {
    min-width: 257px;
    max-width: 257px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-block-add a {
    align-self: stretch;
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.contact-block-add a:hover {
    color: #153883;
}

.contact-block-add-btn {
    flex: 1 0 0;
    color: var(--Dark, #010135) !important;
    font-family: Inter;
    font-size: 15px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 22px !important;
    text-align: center;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid var(--Grey-1, #F7F4FC);
    margin-top: 12px;
}

.contact-block-add-btn:hover {
    background-color: #153883;
    color: #fff !important;
    border-color: #153883;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--Grey-1, #F7F4FC);
    box-sizing: border-box;
}

.contact-info:last-child {
    padding-bottom: 0;
    border: 0;
}

.form_suc {
    padding: 48px !important;
    max-width: 640px !important;
    width: 100% !important;
    box-sizing: border-box;
    height: fit-content !important;
    text-align: center;
    display: none;
}

.form_suc p {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.contact-info-title {
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-info-block span {
    font-weight: 600;
}

.contact-info-block a {
    align-self: stretch;
    color: var(--Primary, #3156A7);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-info-block a:hover {
    color: #153883;
}

.contact-info-block-soc {
    display: flex;
    gap: 24px;
}

.contact-info-block-soc a {
    width: 24px;
    height: 24px;
}

.contact-info-block-soc a:hover {
    opacity: 0.7;
}

.contact-info-block-soc a img {
    width: 100%;
    height: 100%;
}

.contact-info-map {
    width: 100%;
    height: 320px;
    border-radius: var(--border-1, 4px);
}

.contact-info-map iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-1, 4px);
}

.about-cont_contact .about-side-btn {
    display: none;
}

.program-single-top_event-search input[type="submit"] {
    color: var(--white, #FFF);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    border-radius: 4px;
    background: var(--Primary, #3156A7);
    padding: 12px 40px;
    box-sizing: border-box;
    border: 0;
    cursor: pointer;
    transition: 0.3s;
}

.program-single-top_event-search input[type="submit"]:hover {
    background-color: #153883;
}

.service_request_info {
    padding-top: 16px;
}

.program-req-cont-text {
    max-width: 875px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-form-bot {
    display: flex;
    gap: 24px;
}

.service-form-staff {
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 40px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid var(--white, #FFF);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
}

.service-form-staff:hover {
    background-color: #3156A7;
    color: #fff;
    border-color: #3156A7;
}

.service-form-label-field select {
    padding: 12px 16px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: 0;
    outline: 0;
    width: 100%;
    -webkit-appearance: none; /* Для Webkit-браузеров (Chrome, Safari) */
    -moz-appearance: none;    /* Для Firefox */
    appearance: none;
    cursor: pointer;
}

.service-form-label-field_select::after {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-image: url(../img/info/arrow.svg);
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}

.service-form-label-field:hover::after {
    background-image: url(../img/info/arrow_active.svg);
}

.goverlay {
    background-color: rgba(1, 1, 53, 0.75) !important;
}

.custom-select {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.custom-select-trigger {
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    padding: 12px 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.custom-select-trigger span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 40px);
}

.custom-select-trigger::after {
    content: '';
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    background-image: url(../img/info/arrow.svg);
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}

.custom-select-trigger:hover::after  {
    background-image: url(../img/info/arrow_active.svg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    flex-direction: column;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    padding: 8px 0;
    box-sizing: border-box;
    max-height: 322px;
    overflow-y: scroll;
}

.custom-select.open .custom-options {
    opacity: 1;
}

.custom-option {
    transition: 0.3s;
    padding: 16px;
    box-sizing: border-box;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.custom-option:hover {
    background: var(--Grey-1, #F7F4FC);
    color: var(--Primary, #3156A7);
}

.custom-option.selected {
    background: var(--Grey-1, #F7F4FC);
    color: var(--Primary, #3156A7);
}

.program-single-top_event-search-cal {
    max-width: 387px;
    min-width: 387px;
    width: 100%;
    padding: 32px;
    box-sizing: border-box;
    border-radius: var(--border-1, 4px);
    border: 2px solid var(--Grey-1, #F7F4FC);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    opacity: 0;
    border-radius: var(--border-1, 4px);
    background: var(--white, #FFF);
    visibility: hidden;
    position: absolute;
    transition: 0.3s;
    z-index: 3;
    right: 0;
    top: 55px;
}

.program-single-top_event-search-cal_date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.range-start, .range-end {
    background: var(--Primary, #3156A7);
    color: #fff;
}

.range-in {
    background: var(--Grey-1, #F7F4FC);
    position: relative;
    border-radius: 0 !important;
}

.range-in::before {
    content: '';
    width: 42%;
    height: 100%;
    background: var(--Grey-1, #F7F4FC);
    position: absolute;
    right: 100%;
}

.range-in::after {
    content: '';
    width: 42%;
    height: 100%;
    background: var(--Grey-1, #F7F4FC);
    position: absolute;
    left: 100%;
}

.program-single-top_event-search-cal td, .program-single-top_event-search-cal td a {
    cursor: pointer !important;
}

.program-single-top_event-search-cal td a {
    transition: none !important;
}

.program-single-top_event-search-cal td:hover {
    background: var(--Primary, #3156A7);
    color: #fff;
    border-radius: var(--border-1, 4px) !important;
}

.program-single-top_event-search-cal button {
    width: 100%;
    max-width: none;
    margin-top: 32px;
}

.program-single-top_event-search-cal button::before {
    display: none;
}

.program-single-top_event-search-cal .ui-datepicker-header {
    margin-top: 0;
}

.program-single-top_event-search-block {
    position: relative;
}

.program-single-top_event-search-cal_active {
    opacity: 1;
    visibility: visible;
}

.glightbox-clean .gslide-description {
    background-color: transparent;
}

.glightbox-clean .gdesc-inner {
    padding: 0;
    padding-top: 15px;
}

.glightbox-clean .gslide-title {
    color: #fff;
    text-align: center;
}



@media (max-width: 1200px) {
    

    .header {

    }

    .header .container {
        gap: 24px;
    }

    .header-logo {
        gap: 24px;
    }

    .header-logo-pic {
        width: 129px;
        height: 56px;
    }

    .header-logo-text {
        max-width: 233px;
        font-size: 12px;
    }

    .header-blind {
        font-size: 16px;
    }

    .header-add {
        gap: 24px;
    }

    .header-nav {

    }

    .header-nav .container {
        gap: 20px;
    }

    .header-nav-item_btn {
        font-size: 15px;
    }

    .header-nav-item {
        font-size: 15px;
    }

    .header-nav-item_drop-menu li a {
        font-size: 15px;
    }

    .header-search {
        top: 177px;
    }

    .header-search_scrolled {
        top: 74px;
    }

    .main-banner {
        margin-top: 32px;
    }

    .main-banner-slider-item {
        /* height: 415px; */
    }

    .main-service {

    }

    .main-service-item {
        width: calc(100% / 4 - 12px);
    }

    .main-teach {

    }

    .main-teach-row {
        margin-top: 32px;
    }

    .main-teach-cal-line {
        margin-top: 32px;
    }

    .main-about {

    }

    .main-about-pic {
        min-width: 388px;
        max-width: 388px;
        height: 291px;
    }

    .main-add {

    }

    .main-add .container {
        flex-direction: column;
        gap: 40px;
    }

    .main-map {
        height: 320px;
    }

    .footer {

    }

    .about-mng-item {
        /* width: calc(100% / 2 - 10px); */
    }

    .service-pricelist-table {
        overflow: scroll;
        width: initial;
        overflow-x: scroll;
        display: flow;
        max-width: 650px;
    }

    .service-pricelist-table br {
        display: none;
    }

    .service-pricelist-table_second tr td:nth-child(2), .service-pricelist-table_second tr th:nth-child(2) {
        max-width: 200px;
        min-width: 200px;
    }

    .service-pricelist-table_second tr td:nth-child(3), .service-pricelist-table_second tr th:nth-child(3), 
    .service-pricelist-table_second tr td:nth-child(4), .service-pricelist-table_second tr th:nth-child(4), 
    .service-pricelist-table_second tr td:nth-child(5), .service-pricelist-table_second tr th:nth-child(5) {
        max-width: 122px;
        min-width: 122px;
    }

    .service-pricelist-table_second tr th:nth-child(4) {
        white-space: wrap;
    }

    .service-main-row .service-other-item {
        width: calc(100% / 2 - 10px);
    }

    .program-table tr td:nth-child(1) {
        max-width: 176px;
        min-width: 176px;
    }

    .program-table tr td:nth-child(2), .program-table tr td:nth-child(3), .program-table tr td:nth-child(4), .program-table tr td:nth-child(5) {
        min-width: 112.25px;
        max-width: 112.25px;
    }

    .about-side_program {
        margin-top: 182px;
    }

    .program-purpose-main {
        flex-direction: column;
        gap: 32px;
    }

    .program-purpose-main-pic {
        max-width: 100%;
        height: auto;
    }

    .program-purpose-main-cont {
        max-width: none;
    }

    .program-lector-item-add {
        row-gap: 16px;
    }

    .program-lector-item-add-block {
        width: calc(100% / 2 - 16px);
    }

    .program-lector-item-add-block:last-child {
        width: 100%;
    }

    .program-sim-follow {
        flex-direction: column;
    }

    .contact-data-cont a {
        font-size: 24px;
    }
}

@media (max-width: 1023px) {
    

    .container {
        padding: 0 24px;
    }

    .header {
        padding: 16px 0;
        border-bottom: 2px solid var(--Grey-1, #F7F4FC);
        box-sizing: border-box;
    }

    .header-logo {
        margin-right: auto;
    }

    .header-logo-text {
        display: none;
    }

    .header-logo-pic {
        width: 73.982px;
        height: 32px;
    }

    .header-blind {
        display: none;
    }

    .header-hotline {
        display: none;
    }

    .header-add {
        margin-top: 0;
        gap: 24px;
    }

    .header-lang_selected::after {
        display: none;
    }

    .header-acc {
        display: none;
    }

    .header .header-nav-search-btn, .header .header-menu_btn {
        display: flex;
    }

    .header-menu_btn {
        width: 24px;
        height: 24px;
        background-image: url(../img/header/menu.svg);
        background-size: 100% 100%;
        display: flex;
    }

    .header-menu_btn_active {
        background-image: url(../img/header-search/cross.svg);
    }

    .header-nav {
        display: none;
        background-color: #fff;
    }

    .header-nav_open {
        display: flex;
        position: fixed;
        top: 64px;
        bottom: 0;
        right: 0;
        left: 0;
        overflow-y: scroll;
    }

    .header-nav .container {
        flex-direction: column;
        width: 100%;
        gap: 32px;
    }

    .header-nav-item {
        width: 100%;
        justify-content: space-between;
    }

    .header-nav-item_drop::after {
        transform: rotate(-90deg);
    }

    .header-nav-item_drop:hover > .header-nav-item_drop-menu, .header-nav-item_drop:hover > .header-nav-item_drop-menu, .header-nav-item_drop-menu:hover {
        display: none;
    }

    .header-nav-item_drop-menu {
        position: fixed;
        top: 64px;
        right: 0;
        bottom: 0;
        left: auto;
        display: flex !important;
        background-color: #fff;
        margin: 0;
        box-shadow: none;
        flex-direction: column;
        gap: 32px;
        max-width: 0;
        overflow: hidden;
        /* transition: 1s; */
        padding: 0;
    }

    .header-nav-item_drop-menu_active {
        max-width: 100%;
        width: 100%;
        overflow: visible;
        padding: 24px;
        left: 0;
    }

    .header-nav-search-btn {
        display: none;
    }

    .header-nav-item_btn, .header-nav-item {
        font-size: 16px;
    }

    .header-nav-item_drop-menu li a {
        padding: 0;
        font-size: 16px;
    }

    .header-nav-item_drop_back {
        color: var(--Dark, #010135);
        /* Menu&links */
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }
    
    .header-nav-item_drop_back::before {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(../img/header/back.svg);
        background-size: 100% 100%;
        display: flex;
    }

    .header-nav_mob {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        gap: 32px;
    }

    .header-nav_mob .header-hotline {
        display: flex;
    }

    .header-nav_mob_acc {
        color: var(--Dark, #010135);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header-nav_mob_acc::before {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(../img/header/acc.svg);
        background-size: 100% 100%;
        display: flex;
    }

    .header-nav_mob_blind {
        color: var(--Dark, #010135);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header-nav_mob_blind::before {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(../img/header/blind.svg);
        background-size: 100% 100%;
        display: flex;
    }

    .header-search {
        top: 0;
        bottom: 0;
        height: 100%;
        overflow: hidden;
        z-index: 11;
    }

    .header-search_active {
        max-height: 100%;
        padding-top: 24px;
        overflow-y: scroll;
    }

    .header-search-clear {
        /* display: none; */
    }

    .header-search form input[type="submit"] {
        display: none;
    }

    .header-search form {
        gap: 20px;
    }

    .header-search-res {
        padding-left: 0;
    }

    .main-banner {
        margin-top: 0;
    }

    .main-banner .container {
        padding: 0;
    }

    .main-banner-slider-item {
        /* height: 332px; */
    }

    .main-service {
        
    }

    .main-top-title {
        font-size: 24px;
    }

    .main-service-row {
        max-height: 272px;
        height: 100%;
        overflow: hidden;
        transition: 0.3s;
    }

    .main-service-row_open {
        max-height: 600px;
    }

    .main-service-item {
        width: calc(100% / 3 - 10.7px);
        padding: 16px;
        gap: 16px;
        height: 80px;
    }

    .main-service-more {
        display: flex;
        align-self: stretch;
        color: var(--Primary, #3156A7);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: center;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        margin-top: 32px;
        justify-content: center;
    }

    .main-teach {

    }

    .main-teach_digest .main-teach-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-top-link {
        display: none;
    }

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

    .main-teach-item {
        width: 100%;
    }

    .main-teach-cal {
        width: 100%;
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .main-teach_digest .main-teach-item {
        /* width: calc(100% / 2 - 10px); */
    }

    .main-about .container {
        padding: 0;
    }

    .main-about-row {
        flex-direction: column;
        gap: 40px;
    }

    .main-about-block {
        padding: 0 24px;
    }

    .main-about-block-bot {
        margin-top: 24px;
    }

    .main-about-pic {
        min-width: 0;
        max-width: none;
        width: 100%;
        height: 576px;
    }

    .main-add {

    }

    .main-add-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .main-add-row {
        gap: 16px;
    }

    .main-add-item {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 128px;
        min-width: 128px;
    }

    .main-map {
        margin-top: 48px;
        height: 320px;
        margin-bottom: 0;
    }

    .main-map .container {
        padding: 0;
    }

    .footer {
        margin-top: 0;
        padding: 32px 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .footer-left, .footer-info, .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        gap: 24px;
    }

    .footer-logo {
        width: 147.963px;
        height: 64px;
    }

    .footer-text {
        max-width: none;
    }

    .footer-sub {
        max-width: 360px;
        margin-bottom: 30px;
    }

    .footer-soc-row {
        justify-content: center;
        gap: 24px;
    }

    .footer-bot {
        margin-top: 38px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bot-comp {
        width: 100%;
        text-align: center;
    }

    .main-banner-slider-item_bg img {
        border-radius: 0;
    }

    .header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
    }

    .about .container {
        flex-direction: column-reverse;
    }

    .about-side {
        /* display: none; */
    }

    .about-side_nav {
        display: flex !important;
        position: fixed !important;
        top: 64px;
        right: 0;
        left: 0;
        background-color: #fff;
        max-width: none;
        width: 100%;
        margin: 0;
        background: var(--Grey-1, #F7F4FC);
        max-height: 56px !important;
        overflow: hidden !important;
        padding: 0 !important;
        transition: 0.3s;
        gap: 0;
        z-index: 1;
        border: 0;
        border-radius: 0;
    }

    .about-side_open {
        max-height: calc(100vh - 64px) !important;
        height: 100%;
        padding-bottom: 16px;
        overflow-y: scroll !important;
    }

    .about-side-top {
        display: flex;
        height: 56px;
        padding: 16px 24px;
        box-sizing: border-box;
        color: var(--Dark, #010135);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 171.429% */
        margin-bottom: 8px;
    }

    .about-side a {
        padding: 0 24px;
        margin-bottom: 24px;
    }

    .about-side a:last-child {
        margin-bottom: 0;
    }

    .about-side-top::after {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(../img/header/arrow.svg);
        background-size: 100% 100%;
        display: flex;
        margin-left: auto;
        transition: 0.3s;
    }

    .about-side_open .about-side-top::after {
        transform: rotate(180deg);
    }

    .about {
        margin-bottom: 48px;
    }

    .chip_about {
        margin-top: 56px !important;
    }

    .about-side a:hover {
        color: #010135;
    }

    .about-cont h1, .service-main h1, .service-intro h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .about-tour-title {
        font-size: 16px;
        font-weight: 500;
    }

    .about-tour-pic {
        margin-top: 24px;
    }

    .about-tour-pic {
        height: 350px;
    }

    .about-title {
        margin-bottom: 24px;
        margin-top: 24px;
        font-size: 20px;
    }

    .about-history-btn {
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 24px;
    }

    .about-sertificate-row {
        gap: 16px;
        row-gap: 32px;
    }

    .about-sertificate-item {
        width: calc(100% / 4 - 12px);
    }

    .about-filial-item-pic {
        height: 262px;
    }

    .about-chronicles-nav {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .about-chronicles-nav::-webkit-scrollbar {
        display: none;
    }

    .about-chronicles-nav-item {
        white-space: nowrap;
    }

    .service {
        margin-bottom: 48px;
    }

    .about-side-btn {
        display: none;
    }

    .service .container {
        flex-direction: column;
        gap: 48px;
    }

    .service-side {
        position: unset;
        max-width: none;
        margin: 0;
    }

    .service-side .about-side {
        width: 100%;
        max-width: none;
        height: 100%;
        padding: 24px 0;
        gap: 0;
    }

    .about-side-title {
        padding: 0 24px;
        margin-bottom: 24px;
    }

    .service-cont .about-side-btn {
        display: flex;
        margin: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 8px 0;
        margin-bottom: 32px;
    }

    .service-notice {
        padding: 40px 24px;
    }

    .service-pricelist-table {
        max-width: none;
    }

    .service-pricelist-table_first tr td:nth-child(3), .service-pricelist-table_first tr th:nth-child(3) {
        max-width: 581px;
        min-width: 581px;
    }

    .service-pricelist-table_second tr td:nth-child(2), .service-pricelist-table_second tr th:nth-child(2) {
        max-width: 400px;
        min-width: 400px;
    }

    .service-gallery-row {
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .service-gallery-row::-webkit-scrollbar {
        display: none;
    }

    .service-gallery-item {
        max-width: 200px;
        min-width: 200px;
        width: 100%;
    }

    .service-question-item-top {
        font-size: 16px;
        font-weight: 500;
    }

    .service-main-more {
        margin-top: 40px;
        padding: 8px 0;
    }

    .service-side-help {
        padding: 24px;
    }

    .service-side-help .about-side-btn {
        display: flex;
        padding: 8px 0;
    }

    .service-form-label-field {
        max-width: 473px;
        min-width: 473px;
    }

    .service-form-volume-block-sub {
        max-width: 473px;
    }

    .service-form-volume-block-sub_sol .service-form-label-field {
        max-width: 443px;
        min-width: 443px;
    }

    .service-form-label-check, .service_request-text, .service_request .about-title, .file-drop-zone {
        max-width: 473px;
    }

    .service_request input[type="submit"] {
        max-width: 473px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .science {
        /* margin-bottom: 48px; */
    }

    .science-contact-block {
        flex-direction: column;
    }

    .science-qst-submit {
        max-width: 473px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .science-qst {
        padding: 48px 0;
        margin-top: 48px;
    }

    .science-qst .about-title {
        max-width: 473px;
    }

    .science-top .about-side-btn {
        margin-bottom: 0;
        margin-top: 48px;
    }

    .education-data {
        gap: 24px;
    }

    .about-side_program {
        position: unset;
    }

    .program .container {
        flex-direction: column;
    }

    .about-side_program {
        margin-top: 0;
        width: 100%;
        max-height: none;
        max-width: none;
        overflow: auto;
        height: auto;
        padding: 24px;
    }

    .program-cont-item {
        overflow-x: scroll;
    }

    .program-table {
        display: flow;
        overflow-x: scroll;
    }

    .about-side_program-add {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }

    .about-side_program-add-item {
        width: calc(100% / 3 - 13.4px);
    }

    .program-table tr td:nth-child(1) {
        max-width: 258px;
        min-width: 258px;
    }

    .program-table tr td:nth-child(2), .program-table tr td:nth-child(3), .program-table tr td:nth-child(4), .program-table tr td:nth-child(5) {
        max-width: 113px;
        min-width: 113px;
    }

    .program-single-top h1 {
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 38px; /* 158.333% */
        margin-bottom: 24px;
    }

    .program-purpose .about-side-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .program-lector-item {
        flex-direction: column;
        gap: 24px;
    }

    .program-lector-item-add-block, .program-lector-item-add-block:last-child {
        width: calc(100% / 3 - 21.4px);
    }

    .program-lector-item-btn {
        width: 100%;
    }

    .program-sim-follow-tg {
        padding: 8px 40px;
    }

    .program-req-form-block-top {
        max-width: 473px;
    }

    .program-req-form-add {
        max-width: 473px;
        width: 100%;
    }

    .service .main-teach-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-side_event {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
        height: auto;
        max-height: none;
        overflow: visible;
        margin-top: 0;
    }

    .about-side_email {
        width: calc(100% / 2 - 16px) !important;
        padding: 24px !important;
        gap: 24px !important;
    }

    .about-side_email input[type="submit"], .about-side .program-sim-follow-tg {
        padding: 8px 40px;
    }

    .about-side_slider {
        height: 95px;
        min-height: 0;
        max-height: auto;
    }

    .about-side_slider .slick-dots {
        bottom: -22px;
    }

    .about-side_slider .slick-list {
        height: auto;
    }

    .about-side_slider a img {
        display: none;
    }

    .about-side_slider a img.about-side_slider_mob {
        display: flex !important;
    }

    .program-single-top_event-search {
        gap: 20px;
    }

    .program-single-top_event-search button {
        max-width: 224px;
        padding: 8px 0;
        height: 100%;
    }

    .program-single-top_event-search-block {
        max-width: 224px;
    }

    .event-about .about-side-btn {
        display: flex;
        max-width: none;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .service-side_digest .about-side {
        width: 100% !important;
    }

    .digest-about .program-purpose-main {
        flex-direction: row;
    }

    .service_photobank-row {
        gap: 20px;
    }

    .service_photobank-row a {
        width: calc(100% / 3 - 13.4px) !important;
    }

    .news-citation .program-lector-item {
        flex-direction: row;
        gap: 32px;
    }

    /* .news-citation .program-lector-item-pic {
        max-width: 72px;
        height: 72px;
        border-radius: 50%;
    } */

    /* .news-citation .program-lector-item-pic img {
        border-radius: 50%;
    } */

    .coruption-data .about-side-btn {
        display: flex;
        margin: 0 !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 8px 0 !important;
        margin-top: 32px !important;
    }

    .about-side-result {
        display: none;
    }

    .contest-top .about-side-btn, .contest-top .about-side-result {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .contest-top .about-side-btn {
        margin-top: 32px;
    }

    .contest-top .about-side-result {
        margin-top: 24px;
    }

    .info-item-top {
        font-size: 16px;
        height: 72px;
        padding: 0 24px;
    }

    .info-item-cont {
        padding: 24px;
        padding-top: 0;
    }

    .info-item {
        max-height: 72px;
    }

    .info-item_open {
        max-height: 3000px;
    }

    .about-cont_contact .about-side-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 8px 40px;
    }

    .contact-data-cont {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-block {
        flex-direction: column;
    }

    .contact-block-add {
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .service-form-bot {
        flex-direction: column;
        gap: 24px;
        max-width: 473px;
    }

    .service-form-staff {
        padding: 8px 40px;
    }

    .service_request_info .program-req-cont {
        margin-top: 0;
    }

    .program-req-nav {
        margin: 0 -24px;
    }

    .program-req-nav button:first-child {
        margin-left: 24px;
    }

    .program-req-nav button:last-child {
        margin-right: 24px;
    }

    .about-text p img {
        margin: 8px -48px;
        width: calc(100% + 48px);
    }

    .header-nav-item:nth-child(2) .header-nav-item_drop-menu {
        max-height: auto;
        flex-wrap: nowrap;
        width: auto;
    }

    .header-nav-item:nth-child(2) .header-nav-item_drop-menu li {
        max-width: auto;
    }

    .header-nav-item:nth-child(2) .header-nav-item_drop-menu li a {
        height: auto;
    }

    .header-nav-item:nth-child(2) .header-nav-item_drop-menu li:first-of-type a::before {
        display: none;
    }

    .header-nav-item:nth-child(2) .header-nav-item_drop-menu li:last-of-type a::before {
        display: none;
    }

}

@media (max-width: 767px) {
    

    .container {
        padding: 0 16px;
    }

    .header {
        padding: 16px 0;
    }

    .main-banner-slider-item {
        /* height: 320px; */
        /* height: auto; */
        /* aspect-ratio: 1 / 1; */
    }

    .main-service-row {
        gap: 8px;
        margin-top: 24px;
        max-height: 572px;
    }

    .main-service-row_open {
        max-height: 1000px;
    }

    .main-service-item {
        width: calc(100% / 2 - 4px);
        height: 137px;
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        text-align: center;
    }

    .main-top-title span {
        display: none;
    }

    .main-top-title {
        /* text-transform: capitalize; */
        padding: 0 16px;
    }

    .main-teach-nav {
        overflow-x: scroll;
        /* padding: 0 16px; */
    }

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

    .main-teach .container {
        padding: 0;
    }

    .main-teach-item {
        width: 100%;
    }

    .main-teach-info {
        padding: 0 16px;
    }

    .main-teach-name {
        padding: 0 16px;
    }

    .main-teach-cal {
        margin: 0 16px;
        width: calc(100% - 32px);
        margin-left: 16px;
        padding: 24px 16px;
        grid-column: 1;
    }

    .main-teach-cal-title {
        font-size: 20px;
    }

    .main-teach-cal-line {
        margin-top: 16px;
    }

    .main-teach-cal-line-date {
        font-size: 16px;
    }

    .main-teach-cal-table thead {
        font-size: 14px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .main-teach-cal-table tbody {
        font-size: 14px;
    }

    .main-teach_news .main-teach-pic {
        height: 198px;
    }

    .main-teach_digest .container {
        padding: 0 16px;
    }

    .main-teach-row, .main-teach_digest .main-teach-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .main-teach_digest .main-teach-item {
        width: 100%;
    }

    .main-teach_digest .main-teach-name {
        padding: 0;
    }

    .main-about {
        margin-top: 48px;
    }

    .main-about-row {
        margin-top: 24px;
    }

    .main-about-block-bot {
        flex-direction: column;
        gap: 32px;
    }

    .main-about-block-btn {
        width: 100%;
        text-align: center;
    }

    .main-about-pic {
        height: 240px;
    }

    .main-add-row {
        flex-wrap: wrap;
    }

    .main-add {
        margin-top: 48px;
    }

    .footer-bot a {
        text-align: center;
    }

    .about-tour-pic {
        height: 320px;
    }

    .about-sertificate-row {
        gap: 24px;
    }

    .about-sertificate-item {
        width: calc(100% / 2 - 12px);
    }

    .about-program-links-add {
        display: none;
    }

    .about-filial-row {
        gap: 32px;
    }

    .about-filial-item {
        width: 100%;
    }

    .about-filial-item-pic {
        height: 216px;
    }

    .about-detail-row {
        flex-direction: column;
    }

    .about-detail-main {
        width: 100%;
    }

    .about-detail-side {
        width: 100%;
    }

    .helper {
        left: 0;
        bottom: 0;
        gap: 0px;
    }

    .helper-cookie {
        position: relative;
        z-index: 1;
    }

    .helper-cookie, .helper-info {
        border-radius: 0;
    }

    .helper-cookie-btn, .helper-info-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 0;
    }

    .about-chronicles-row {
        gap: 16px;
    }

    .about-chronicles-row-item {
        width: 100%;
    }

    .about-leader-row {
        gap: 20px;
        row-gap: 20px;
    }

    .about-leader-item {
        width: 100%;
    }

    .about-leader-item-pic {
        aspect-ratio: 288.00/297.75;
    }

    .about-leader-item-pop.ginlined-content {
        padding: 16px 24px;
        gap: 16px;
    }

    .about-leader-item-pop img {
        width: 100%;
    }

    .gslide-media {
        max-height: none !important;
    }

    .about-leader-item-pop-title {
        max-width: calc(100% - 16px - 35px);
        font-size: 18px;
    }

    .about-leader-item-pop-pic {
        max-width: 272px;
        height: 281.209px;
        align-self: stretch;
        aspect-ratio: 272.00/281.21;
        width: auto;
    }

    .about-title_inspection {
        margin-bottom: 24px;
        font-size: 16px;
        font-weight: 500;
    }

    .about-stage .about-list {
        margin-bottom: 24px;
    }

    .about-address {
        margin-top: 24px;
    }

    .about-mng-row {
        row-gap: 32px;
    }

    .about-mng-item {
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }

    .service-cont .about-side-btn {
        margin-bottom: 24px;
    }

    .service-notice {
        padding: 32px 16px;
    }

    .service-question-item-top {
        color: var(--Dark, #010135);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

    .service-question-item {
        padding: 16px;
    }

    .service-question-item-top {
        height: 48px;
    }

    .service-top {
        margin-bottom: 24px;
    }

    .service-other-item {
        width: 100%;
    }

    .service {
        margin-bottom: 48px;
    }

    .service-main-row {
        row-gap: 24px;
    }

    .service-main-row .service-other-item {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px; /* 171.429% */
        gap: 8px;
    }

    .service-main-more {
        margin-top: 24px;
    }

    .service-form-label-help {
        /* display: none; */
        padding: 0;
    }

    .service-form-label_text .service-form-label-help {
        padding: 0;
        max-width: none;
    }

    .service-form-label-field, .service-form-volume-block-sub_sol .service-form-label-field {
        max-width: none;
        min-width: 0;
        width: 100%;
    }

    .service-form-label-cont {
        width: 100%;
    }

    .service-form-label_error .service-form-label-help {
        display: flex;
    }

    .service-form-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .service_request input[type="submit"] {
        padding: 8px 40px;
        width: 100%;
        max-width: none;
    }

    .program-req-form-add {
        max-width: none;
    }

    .service-form-label-field_short input {
        max-width: none;
    }

    .service-form-label-check {
        max-width: none;
    }

    .service_request {
        padding-bottom: 48px;
    }

    .science-contact-block-col {
        width: 100%;
    }

    .science-qst-submit {
        padding: 8px 40px;
    }

    .helper-info-pop.ginlined-content {
        padding: 32px 24px;
    }

    .education-data-row {
        gap: 20px;
    }

    .education-data-item {
        width: 100%;
    }

    .program-table tr td:nth-child(2), .program-table tr td:nth-child(3), .program-table tr td:nth-child(4), .program-table tr td:nth-child(5) {
        max-width: 160px;
        min-width: 160px;
    }

    .about-side_program-add {
        gap: 24px;
    }

    .about-side_program-add-item {
        width: 100%;
    }

    .program-purpose-top-item {
        width: 100%;
    }

    .program-lector-row {
        gap: 24px;
    }

    .program-lector-item-pic {
        width: 100%;
        height: auto;
    }

    .program-lector-item-add-block, .program-lector-item-add-block:last-child {
        width: 100%;
    }

    .program-sim .service-top a {
        display: none;
    }

    .program-sim-follow-tg {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service .main-teach-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .service .main-teach-info, .service .main-teach-name {
        padding: 0;
    }

    .program-single-top_event-search {
        flex-direction: column;
        gap: 20px;
    }

    .program-single-top_event-search button {
        max-width: none;
        width: 100%;
    }

    .program-single-top_event-search-block {
        max-width: none;
    }

    .program-single-top_event-search-cal {
        max-width: none;
        min-width: 0;
        width: 100%;
    }

    .main-teach-nav {
        margin-top: 24px;
    }

    .service-main-pag {
        justify-content: flex-start;
    }

    .service-main-pag-arr {
        display: none;
    }

    .service-main-pag-num {

    }

    .service-main-pag-num a:nth-child(4), .service-main-pag-num a:nth-child(5) {
        display: none;
    }

    .about-side_email {
        width: 100% !important;
    }

    .about-side_slider {
        height: auto;
    }

    .about-side_slider a img {
        display: flex;
    }

    .about-side_slider a img.about-side_slider_mob {
        display: none !important;
    }

    .event-about .program-purpose-top-item {
        width: 100%;
    }

    .event-partner .main-add-row {
        gap: 16px;
    }

    .event-partner .main-add-item {
        width: calc(100% / 2 - 8px);
    }

    .service-other-row .main-teach-item {
        width: 100%;
    }

    .service-top a {
        display: none;
    }

    .about-cont .main-teach-info, .about-cont .main-teach-name {
        padding: 0;
    }

    .digest-about .program-purpose-main {
        flex-direction: column;
    }

    .digest-about .program-purpose-main-pic {
        max-width: none;
        width: 100%;
        height: auto;
    }

    .service_photobank-row a {
        width: 100% !important;
    }

    .contest-top .program-purpose-top-item {
        width: 100%;
    }

    .info-item {
        max-height: 90px;
    }

    .info-item_big {
        max-height: 130px;
    }

    .info-item_open {
        max-height: 5000px;
    }

    .info-item-top {
        height: 90px;
        padding: 0 16px;
    }

    .info-item_big .info-item-top {
        height: 130px;
    }

    .info-item-cont {
        padding: 16px;
        padding-top: 0;
    }

    .info-item-cont-row-block {
        width: 100%;
    }

    .info-item .service-notice {
        padding: 16px;
    }

    .info-item .service-test-title {
        font-size: 16px;
    }

    .info-item-cont-btn {
        width: 100%;
        padding: 8px 40px;
    }

    .info-item-cont-cat-item {
        width: 100%;
    }

    .program_solo .container {
        padding: 0;
    }

    .program_solo h1, .program_solo .program-nav {
        padding: 0 16px;
    }

    .program_solo .about-side {
        margin: 0 16px;
        width: calc(100% - 32px);
    }

    .program_solo .program-table {
        margin: 0 16px;
        position: relative;
    }

     .program-req-nav {
        margin: 0 -16px;
    }

    .program-req-nav button:first-child {
        margin-left: 16px;
    }

    .program-req-nav button:last-child {
        margin-right: 16px;
    }

    .about-side-top {
        padding: 16px;
    }

    .news-citation .program-lector-item {
        flex-direction: column;
    }

    .news-citation .program-lector-item-pic {
        max-width: 320px;
    }

    .contact-info-map {
        margin-left: -16px;
        margin-right: -16px;
        width: auto;
    }

    .contact-data {
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
    }
}


.program-purpose-main-cont-text div {
	color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program-purpose-main-cont-text h2 {
	color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin-top: 32px;
    margin-bottom: 0;
}


.program-purpose-main-cont-text h3 {
	color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 0;
}

.program-purpose-main-cont-text ul, .program-purpose-main-cont-text ol {
	display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--Dark, #010135);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 20px;
    box-sizing: border-box;
}

@media (max-width: 1023px) {
    .program-purpose-main-cont-text h2 {
    	font-size: 20px;
	}
	
	
	.program-purpose-main-cont-text h3 {
		font-size: 18px;
	    margin-bottom: 0;
	}
}


.file-drop-zone input {
	visibility: hidden;
	width: 0;
}

.file-drop-zone br {
	display: none;
}

.service-pricelist-table_cn {
	max-width: none !important;
}

@media (max-width: 1200px) {
    .service-pricelist-table_cn br {
        display: block;
    }
}

@media (max-width: 1023px) {
	.service-pricelist-table_cn tr td:nth-child(1), .service-pricelist-table_cn tr th:nth-child(1) {
        min-width: 240px;
	}
	
	.service-pricelist-table_cn tr td:nth-child(2), .service-pricelist-table_cn tr th:nth-child(2) {
		min-width: 240px;
	}
	
	.service-pricelist-table_cn tr td:nth-child(3), .service-pricelist-table_cn tr th:nth-child(3) {
		min-width: 240px;
	}
	
	.service-pricelist-table_cn tr td:nth-child(4), .service-pricelist-table_cn tr th:nth-child(4) {
		min-width: 210px;
	}
}

.drop-left {
	left: calc(-100% + 20px);
}

.ginner-container {
	max-width: 1200px !important;
	height: auto !important;
}

.gslide iframe {
	height: 90vh !important;
}