@-webkit-keyframes ani {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 400% 0
    }
}

@keyframes ani {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 400% 0
    }
}

@-webkit-keyframes outime {
    0% {
        transform: translateY(-6px)
    }

    to {
        transform: translateY(-80px)
    }
}

@keyframes outime {
    0% {
        transform: translateY(-6px)
    }

    to {
        transform: translateY(-80px)
    }
}

@-webkit-keyframes intime {
    0% {
        transform: translateY(-80px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes intime {
    0% {
        transform: translateY(-80px)
    }

    to {
        transform: translateY(0)
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes moveUpDownTop {
    0% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(10)
    }
}

@keyframes moveUpDownTop {
    0% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(10)
    }
}

@-webkit-keyframes moveUpDownButtom {
    0% {
        transform: translateY(10px)
    }

    to {
        transform: translateY(-10)
    }
}

@keyframes moveUpDownButtom {
    0% {
        transform: translateY(10px)
    }

    to {
        transform: translateY(-10)
    }
}

@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #f0bfaf
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #f0bfaf
    }
}

.modal {
    z-index: 9999
}

.modal-open .modal {
    display: flex !important;
    justify-content: center;
    align-items: center
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

a {
    color: #33354d;
    line-height: 160%
}

a:hover {
    text-decoration: none
}

a,
a svg,
a svg path {
    transition: all .15s
}

html {
    -webkit-text-size-adjust: none !important
}

*,
body {
    font-family: 'HelveticaNeueCyr' !important;
    color: #000;
    font-size: 18px;
    line-height: 1.7
}

@media (max-width:1800px) {

    *,
    body {
        font-size: 16px
    }
}

body {
    background-image: url(../images/body_bg.png);
    background-repeat: repeat-y;
    background-position: center;
    background-size: 100% auto
}

button,
input,
textarea {
    outline: 0 !important
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.row>div {
    padding-left: 15px;
    padding-right: 15px
}

.container {
    max-width: 1680px;
    width: 100%
}

@media (max-width:1800px) {
    .container {
        max-width: 1400px
    }
}

@media (max-width:767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px
    }
}

.btn-blue,
.btn-delete {
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 44px;
    white-space: nowrap;
    padding: 0 24px;
    outline: 0;
    transition: all .3s;
    border: 0
}

.btn-delete {
    background: #ef4444
}

.btn-delete:hover {
    color: #fff;
    background: #c41b1b
}

.btn-blue {
    background: #283891;
    height: 52px
}

@media (max-width:767px) {
    .btn-blue {
        height: 42px;
        line-height: 42px
    }
}

.btn-blue:hover {
    color: #fff;
    background: #021427
}

.btn-orange {
    background: #fc502b;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 36px;
    white-space: nowrap;
    padding: 0 20px;
    outline: 0;
    transition: all .3s;
    border: 0;
    background: linear-gradient(274.88deg, #fc502b 0%, #ff9431 107.95%);
    box-shadow: 0 20px 35px 0 #f1a50126
}

.btn-more,
.btn-orange.large {
    line-height: 62px;
    font-size: 16px;
    padding: 0 32px
}

@media (max-width:767px) {
    .btn-orange.large {
        height: 42px;
        line-height: 42px
    }
}

.btn-more img,
.btn-orange img {
    margin-right: 10px
}

.btn-orange:hover {
    color: #fff;
    background: linear-gradient(274.88deg, #ff9431 0%, #fc502b 107.95%);
    box-shadow: 0 20px 35px 0 #f1a50126
}

.btn-more {
    border: 1px solid rgba(232, 117, 37, .35);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    line-height: 52px;
    white-space: nowrap;
    color: #fc502b
}

@media (max-width:767px) {
    .btn-more {
        height: 42px;
        line-height: 42px
    }
}

.btn-more.all_picture img {
    margin-left: 10px;
    margin-right: 0
}

.fixed-phone-button {
    display: none;
    position: fixed;
    top: 78%;
    right: 25px;
    z-index: 999;
    background: linear-gradient(274.88deg, #fc502b 0%, #ff9431 107.95%);
    box-shadow: 0 0 0 2em transparent;
    padding: 12px;
    border-radius: 50px;
    -webkit-animation: pulse 2s infinite linear;
    animation: pulse 2s infinite linear;
    transition: all .4s ease-in-out
}

.fixed-phone-button svg {
    transform: rotate(260deg)
}

.fancybox-button svg path,
.fixed-phone-button svg path,
a.direction_item:hover svg path,
section.contacting_us_in_about a svg path {
    fill: #fff
}

.career_item .content h5 a svg path,
.fixed-phone-button:hover svg path {
    fill: #283891
}

@media (max-width:991px) {
    .fixed-phone-button {
        display: block
    }
}

h1,
h2,
h3 {
    font-weight: 700
}

h1 {
    letter-spacing: 0;
    text-align: left;
    font-size: 76px;
    line-height: 91px;
    margin-bottom: 33px;
    color: #fff
}

@media (max-width:1800px) {
    h1 {
        font-size: 50px;
        line-height: 1.3
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 38px;
        font-weight: 700;
        line-height: 46px;
        letter-spacing: 0;
        text-align: center
    }
}

h2,
h3 {
    color: #283891;
    font-size: 62px;
    font-style: normal;
    line-height: 62px;
    margin-bottom: 40px
}

@media (max-width:1800px) {
    h2 {
        font-size: 34px;
        line-height: 1.6;
        margin-bottom: 20px
    }
}

@media (max-width:767px) {
    h2 {
        font-size: 38px;
        line-height: 1;
        margin-bottom: 25px
    }
}

h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 24px
}

@media (max-width:767px) {
    h3 {
        font-size: 18px
    }
}

body.opened {
    height: 100vh;
    overflow: hidden
}

@media (max-width:1250px) {
    .mobile__menu {
        display: block !important;
        position: fixed;
        height: 100vh;
        overflow-y: auto;
        z-index: 99999;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, .65);
        opacity: 0;
        pointer-events: none;
        transition: all .15s
    }
}

@media (max-width:767px) {
    .mobile__menu {
        height: 100dvh
    }
}

.mobile__menu.active {
    opacity: 1;
    pointer-events: auto
}

.mobile__menu.active .right_block {
    transform: translateX(0)
}

.mobile__menu,
.mobile__menu .search {
    display: none
}

@media (max-width:991px) {
    .mobile__menu .search {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #ccc;
        margin-right: 0;
        max-width: 100%;
        position: static
    }

    .mobile__menu .search input {
        background: 0 0;
        border: 0;
        width: 100%;
        color: #333;
        font-weight: 600;
        height: 34px
    }

    .mobile__menu .search input::-moz-placeholder {
        color: #ccc
    }

    .mobile__menu .search input:-ms-input-placeholder {
        color: #ccc
    }

    .mobile__menu .search input::placeholder {
        color: #ccc
    }
}

@media (max-width:991px) and (max-width:1250px) {
    .mobile__menu .search input {
        width: 350px
    }
}

@media (max-width:991px) {
    .mobile__menu .search button {
        background: 0 0;
        border: 0;
        padding: 5px
    }

    .mobile__menu .search button svg {
        width: 24px;
        height: auto
    }
}

.mobile__menu button.close {
    margin-left: auto;
    margin-right: 0;
    padding: 5px;
    opacity: 1;
    transform: scale(2)
}

@media (max-width:1250px) {
    .mobile__menu button.close {
        margin-top: -18px
    }
}

@media (max-width:991px) {
    .mobile__menu button.close {
        margin-top: 0
    }
}

.mobile__menu button.close svg {
    max-width: 20px
}

@media (max-width:767px) {
    .mobile__menu button.close svg {
        max-width: inherit
    }

    .mobile__menu button.close {
        transform: scale(1);
        position: absolute;
        top: 25px;
        right: 25px
    }
}

.mobile__menu .right_block {
    max-width: 50%;
    width: 100%;
    padding: 44px;
    background: #283891;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    transition: all .3s;
    transform: translateX(-100%)
}

@media (max-width:1250px) {
    .mobile__menu .right_block {
        padding-top: 75px
    }
}

@media (max-width:991px) {
    .mobile__menu .right_block {
        padding-top: 44px
    }
}

@media (max-width:767px) {
    .mobile__menu .right_block {
        max-width: 100vw;
        padding: 120px 25px 25px;
        height: 100dvh;
        width: 100%;
        align-items: flex-start;
        text-align: left
    }
}

.mobile__menu .right_block .logo_w {
    position: absolute;
    left: 44px;
    top: 44px
}

@media (max-width:767px) {
    .mobile__menu .right_block .logo_w img {
        max-width: 140px
    }

    .mobile__menu .right_block .logo_w {
        left: 25px;
        top: 25px
    }
}

.mobile__menu .menus {
    width: 100%
}

@media (max-width:1250px) {
    .mobile__menu .menus {
        overflow-y: auto;
        margin-top: 120px
    }
}

@media (max-width:991px) {
    .mobile__menu .menus {
        margin-bottom: 50px
    }
}

@media (max-width:767px) {
    .mobile__menu .menus {
        margin-top: 0;
        margin-bottom: 20px;
        overflow-y: auto
    }

    .mobile__menu .menus li {
        margin-bottom: 12px;
        width: 100%
    }
}

.mobile__menu .menus li a {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 2
}

@media (max-width:991px) {
    .mobile__menu .menus li a {
        font-size: 24px;
        line-height: 160%
    }
}

@media (max-width:767px) {
    .mobile__menu .menus li a {
        font-size: 16px;
        line-height: 160%
    }
}

.mobile__menu .menus li a.active,
a:hover {
    color: #fc502b
}

.mobile__menu .languages,
section.submit_application form .btn-blue {
    width: 100%
}

@media (max-width:1250px) {
    .mobile__menu .languages {
        display: flex;
        align-items: center;
        margin-bottom: 32px;
        gap: 30px;
        margin-top: auto
    }
}

@media (max-width:767px) {
    .mobile__menu .languages {
        gap: 20px
    }
}

.mobile__menu .languages li {
    margin: 15px 0
}

@media (max-width:767px) {
    .mobile__menu .languages li {
        margin: 0
    }
}

.mobile__menu .languages li a {
    font-size: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #8b94ab;
    padding: 5px 20px;
    border-radius: 5px
}

@media (max-width:991px) {
    .mobile__menu .languages li a {
        font-size: 24px;
        line-height: 160%
    }
}

@media (max-width:767px) {
    .mobile__menu .languages li a {
        padding: 5px 10px;
        font-size: 14px
    }
}

.mobile__menu .languages li a.active {
    background-color: #fff;
    color: #333 !important
}

.mobile__menu .languages li a img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:767px) {
    .mobile__menu .languages li a img {
        max-width: 100%;
        width: 100%;
        margin-right: 7px;
        height: auto
    }
}

.mobile__menu .enter-site {
    transform: scale(1.2)
}

@media (max-width:767px) {
    .mobile__menu .enter-site {
        transform: scale(1);
        width: 100%
    }
}

.language_block {
    position: relative
}

.language_block .active_language {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding-right: 22px;
    background: url(../images/select_arrow_white.svg) no-repeat center right;
    background-size: 20px auto;
    color: #fff
}

.language_block .active_language img {
    max-width: 20px;
    margin-right: 6px
}

.language_block.active .body_dropdown {
    opacity: 1;
    pointer-events: all
}

.language_block .body_dropdown {
    opacity: 0;
    pointer-events: none;
    transition: all .1s;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    right: 0;
    min-width: 130px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4.4px 20px -1px rgba(19, 16, 34, .05), 0 4px 9px -1px rgba(19, 16, 34, .03);
    padding: 8px 0
}

.language_block .body_dropdown li a {
    padding: 6px 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #33354d;
    display: inline-flex;
    align-items: center;
    width: 100%
}

.language_block .body_dropdown li a img {
    margin-right: 6px
}

.language_block .body_dropdown li a:hover,
.my_breadcrumb .breadcrumbs li a:hover,
.my_breadcrumb .breadcrumbs li.active,
.news_card.card .card-body .card-title:hover {
    color: #fc502b
}

.form_style .form-row {
    gap: 12px
}

@media (max-width:767px) {
    .form_style .form-row {
        display: block
    }
}

.form_style .form-group {
    margin-bottom: 22px
}

@media (max-width:767px) {
    .form_style .form-group {
        margin-bottom: 11px
    }
}

.form_style .form-group label {
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #0b0f19;
    margin-bottom: 4px
}

.form_style .form-group input,
.form_style .form-group textarea {
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.form_style .form-group input {
    display: block;
    text-align: left;
    padding: 20px 25px;
    line-height: normal
}

@media (max-width:767px) {
    .form_style .form-group input {
        padding: 16px 20px;
        font-size: 12px;
        font-weight: 300;
        line-height: normal;
        letter-spacing: 0;
        text-align: left
    }
}

.form_style .form-group textarea {
    padding: 13px 16px;
    resize: none;
    min-height: 104px
}

@media (max-width:767px) {
    .form_style .form-group textarea {
        padding: 16px 20px;
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
        letter-spacing: 0;
        text-align: left
    }
}

.form_style button {
    border: 0 !important
}

.checkbox_privacy input {
    display: none !important
}

.checkbox_privacy input:checked+label:after {
    border-color: #fc502b;
    background: #fc502b url(../images/check2.svg);
    background-position: center;
    background-repeat: no-repeat
}

.checkbox_privacy label {
    cursor: pointer;
    padding-left: 28px;
    position: relative;
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 160%;
    color: #4f4f4f;
    margin-bottom: 0
}

@media (max-width:1800px) {
    .checkbox_privacy label {
        font-size: 13px !important
    }
}

@media (max-width:767px) {
    .checkbox_privacy label {
        font-size: 12px !important;
        font-weight: 300;
        line-height: 16px;
        letter-spacing: 0;
        text-align: left
    }
}

.checkbox_privacy label:after {
    content: '';
    position: absolute;
    background-size: contain;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid #4f4f4f
}

.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    opacity: 0;
    text-indent: -9999px;
    border-radius: 50%;
    background: #fc502b url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5775 7.74414L9.99997 11.3216L6.42247 7.74414L5.24414 8.92247L9.99997 13.6783L14.7558 8.92247L13.5775 7.74414Z" fill="%23fff"/></svg>') no-repeat center;
    transform: rotate(180deg);
    transition: all .35s;
    pointer-events: none
}

.partner_swiper_item:hover button,
.scrollup.showed {
    opacity: 1;
    pointer-events: auto
}

@media (max-width:991px) {
    .scrollup {
        right: 30px;
        bottom: 75px
    }
}

@media (max-width:767px) {
    .scrollup {
        right: 30px;
        bottom: 30px
    }
}

section {
    padding-top: 48px
}

@media (max-width:1800px) {
    section {
        padding-top: 48px
    }
}

@media (max-width:991px) {
    section {
        padding-top: 40px
    }
}

section.video_section {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh
}

@media (max-width:767px) {
    section.video_section {
        min-height: 100dvh;
        padding-bottom: 65px
    }
}

section.video_section:after {
    content: '';
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .81) 0%, rgba(3, 3, 3, .41) 43.28%, rgba(158, 158, 158, 0) 83.01%, #f2f4f6 100%);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0
}

section.video_section>* {
    z-index: 4
}

section.video_section .title_slide {
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    max-width: 970px;
    margin: auto
}

@media (max-width:1800px) {
    section.video_section .title_slide {
        font-size: 24px;
        line-height: 2;
        letter-spacing: 2px
    }
}

@media (max-width:1250px) {
    section.video_section .title_slide {
        max-width: 750px
    }
}

@media (max-width:991px) {
    section.video_section .title_slide {
        max-width: 100%;
        padding: 0 75px
    }
}

@media (max-width:767px) {
    section.video_section .title_slide {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: 1px;
        padding: 0 35px
    }
}

@media (max-width:1800px) {
    section.video_section .title_slide br {
        display: none
    }
}

section.video_section video {
    height: 100vh;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:767px) {
    section.video_section video {
        height: 100dvh
    }
}

section.video_section .swiper-video {
    position: relative;
    z-index: 5;
    width: 100%
}

section.video_section .btn_swiper {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 6;
    padding: 0 122px
}

@media (max-width:1250px) {
    section.video_section .btn_swiper {
        padding: 0 50px;
        transform: translateY(50%)
    }
}

@media (max-width:991px) {
    section.video_section .btn_swiper {
        padding: 0
    }
}

section.video_section .btn_swiper .left_btn,
section.video_section .btn_swiper .right_btn {
    border: 0
}

@media (max-width:767px) {

    section.video_section .btn_swiper .left_btn svg,
    section.video_section .btn_swiper .right_btn svg {
        max-width: 18px
    }
}

section.video_section .ftr_video {
    position: absolute;
    bottom: 0;
    padding: 120px 0
}

@media (max-width:1800px) {
    section.video_section .ftr_video {
        padding: 30px 0
    }
}

@media (max-width:767px) {
    section.video_section .ftr_video {
        padding-bottom: 0
    }
}

section.video_section .ftr_video .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px
}

@media (max-width:767px) {
    section.video_section .ftr_video .swiper-pagination {
        margin-top: 20px;
        margin-bottom: 40px
    }
}

section.video_section .ftr_video .swiper-pagination .swiper-pagination-bullet {
    background: 0 0;
    border: 1px solid #fff
}

header,
section.video_section .ftr_video .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff
}

section.video_section .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    border-bottom: 0
}

@media (max-width:767px) {
    section.video_section .buttons {
        display: block;
        padding: 0 15px;
        text-align: center
    }
}

section.video_section .buttons .btn-orange {
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    min-width: 200px;
    padding: 14px 24px;
    background-color: transparent;
    letter-spacing: 1px
}

@media (max-width:767px) {
    section.video_section .buttons .btn-orange {
        width: 100%;
        max-width: 75%;
        margin: 10px auto;
        padding: 10px 15px;
        border-width: 1px !important;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px)
    }
}

section.video_section .buttons .btn-orange.outlined {
    border: 3px solid #cc7639;
    background-color: #cc7639;
    opacity: .9
}

section.students .item:hover:after,
section.video_section .buttons .btn-orange.outlined:hover,
section.video_section .buttons .btn-orange.varianted:hover {
    opacity: 1
}

section.video_section .buttons .btn-orange.varianted {
    border: 3px solid #fff;
    background-color: #fff;
    opacity: .9;
    color: #fc502b
}

.result_in_numbers {
    margin: 0 -20px 14px
}

@media (max-width:1250px) {
    .result_in_numbers {
        margin: 0 0 20px
    }
}

.result_in_numbers .col {
    padding: 32px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 0 0 50%;
    max-width: 50%
}

@media (max-width:1250px) {
    .result_in_numbers .col {
        padding: 10px
    }
}

@media (max-width:767px) {
    .result_in_numbers .col {
        gap: 0;
        padding: 5px 0
    }
}

.result_in_numbers .col img {
    flex: 0 0 66px;
    height: auto;
    padding: 12px
}

@media (max-width:767px) {
    .result_in_numbers .col img {
        padding: 5px;
        flex: 0 0 35px
    }
}

.result_in_numbers .col h5 {
    color: #283891;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px
}

@media (max-width:767px) {
    .result_in_numbers .col h5 {
        font-size: 18px
    }
}

.result_in_numbers .col span {
    color: #8b94ab;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

@media (max-width:767px) {
    .result_in_numbers .col span {
        font-size: 14px
    }
}

section.about h3,
section.about p {
    margin-bottom: 14px;
    color: #00264b
}

section.about p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

@media (max-width:767px) {
    section.about p {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 30px
    }
}

section.about .logo_in_about {
    margin: 0 auto 40px;
    max-width: 290px;
    display: block
}

@media (max-width:991px) {
    section.about .logo_in_about {
        margin: 50px auto
    }
}

@media (max-width:767px) {
    section.about .logo_in_about {
        max-width: 150px;
        margin-bottom: 20px
    }
}

section.about .coverflow_swiper img {
    border-radius: 26px;
    overflow: hidden
}

section.about .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    bottom: 13px
}

section.about .swiper-pagination .swiper-pagination-bullet {
    border-radius: 18.124px;
    background-color: #d9d9d9;
    border: 0;
    height: 6px;
    transition: all .5s;
    width: 14px
}

section.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    width: 57px
}

section.directions {
    padding-bottom: 70px
}

@media (max-width:1800px) {
    section.directions {
        padding-bottom: 50px
    }
}

@media (max-width:767px) {
    section.directions {
        padding-bottom: 0
    }
}

section.directions h2 {
    text-align: center
}

@media (max-width:767px) {
    section.directions a.direction_item {
        position: relative;
        padding-right: 84px
    }

    section.directions a.direction_item svg {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%)
    }

    section.directions a.direction_item h4 {
        font-size: 18px
    }

    section.directions a.direction_item p {
        font-size: 14px;
        margin-bottom: 0
    }
}

a.direction_item {
    display: block;
    border-radius: 8px;
    border: 1px solid #bac8dc;
    padding: 24px;
    transition: all .35s;
    overflow: hidden;
    position: relative
}

@media (max-width:991px) {
    a.direction_item {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    a.direction_item {
        padding-right: 84px !important
    }
}

a.direction_item>* {
    position: relative;
    z-index: 2
}

a.direction_item .overlay_bc {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: all .35s
}

a.direction_item .overlay_bc img,
section.about .coverflow_swiper img,
section.faculty_inner .gallery_faculty ul li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

a.direction_item:hover {
    background-color: #fc502b
}

a.direction_item:hover .overlay_bc {
    opacity: 1;
    transform: scale(1.05)
}

a.direction_item:hover h4,
a.direction_item:hover p {
    color: #fff
}

a.direction_item h4 {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 12px;
    transition: all .15s
}

@media (max-width:767px) {
    a.direction_item h4 {
        font-size: 18px
    }
}

a.direction_item p {
    color: #8b94ab;
    font-size: 16px;
    font-style: normal;
    margin-bottom: 16px;
    transition: all .15s
}

@media (max-width:767px) {
    a.direction_item p {
        margin-bottom: 0;
        font-size: 14px
    }
}

a.direction_item svg {
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: 70px;
    height: 70px;
    transition: none
}

@media (max-width:767px) {
    a.direction_item svg {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%)
    }
}

a.direction_item svg path {
    fill: #fc502b;
    transition: all .35s
}

section.home_advantage {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0
}

@media (max-width:1250px) {
    section.home_advantage {
        padding-bottom: 72px
    }
}

@media (max-width:767px) {
    section.home_advantage {
        padding-bottom: 48px
    }
}

section.home_advantage .swiper-container {
    position: relative;
    z-index: 1;
    padding: 20px;
    margin: 0 -20px
}

section.home_advantage .swiper-container>div {
    width: calc(100% + 40px)
}

@media (max-width:991px) {
    section.home_advantage .swiper-container {
        padding-bottom: 60px
    }
}

section.home_advantage h2 {
    text-align: center;
    margin-bottom: 28px
}

@media (max-width:767px) {
    section.home_advantage h2 {
        margin-bottom: 32px
    }
}

section.home_advantage .item {
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    border-radius: 4px;
    height: 100%;
    padding: 48px 24px 33px;
    text-align: center
}

section.home_advantage .item img {
    padding: 20px;
    background: #283891;
    border-radius: 50%;
    margin-bottom: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

section.home_advantage .item h4 {
    font-weight: 800;
    font-size: 20px;
    line-height: 140%;
    color: #0b0f19;
    margin-bottom: 12px
}

section.home_advantage .item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #565973;
    margin-bottom: 0
}

section.home_advantage .swiper-wrapper {
    align-items: stretch;
    display: flex
}

section.home_advantage .swiper-wrapper .swiper-slide {
    height: auto
}

section.home_advantage .swiper-pagination {
    opacity: 0;
    pointer-events: none
}

@media (max-width:991px) {
    section.home_advantage .swiper-pagination {
        opacity: 1;
        pointer-events: auto
    }
}

section.submit_application {
    background-color: #fc502b;
    padding: 48px 0
}

section.submit_application .text-danger {
    color: #fff !important;
    display: inline-block;
    padding-top: 5px
}

section.submit_application h2 {
    color: #fff;
    text-align: center
}

section.submit_application form {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 170px;
    background: url(../images/bc_app.png) no-repeat center center;
    background-size: contain
}

@media (max-width:767px) {
    section.submit_application form {
        padding: 0;
        max-width: 100%
    }
}

section.submit_application form .checkbox_privacy {
    margin-top: 24px
}

section.submit_application form .checkbox_privacy input:checked+label:after {
    border-color: #fff;
    background: #fff url(../images/bx-check.svg) !important;
    background-position: center !important;
    background-size: contain !important
}

.my_breadcrumb .breadcrumbs li,
section.submit_application form .checkbox_privacy label {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.submit_application form .checkbox_privacy label:after {
    background-color: #fff;
    border: 0
}

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

@media (max-width:767px) {
    .title_slider {
        margin-bottom: 20px
    }
}

.title_slider h2 {
    margin-bottom: 0
}

.btn_swiper {
    display: inline-flex;
    align-items: center;
    gap: 24px
}

.btn_swiper .left_btn,
.btn_swiper .right_btn {
    display: flex;
    width: 56px;
    height: 56px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 35px;
    border: 1px solid #cdd1da;
    transition: all .3s linear;
    cursor: pointer
}

@media (max-width:767px) {

    .btn_swiper .left_btn,
    .btn_swiper .right_btn {
        width: 34px;
        height: 34px
    }
}

.btn_swiper .left_btn svg,
.btn_swiper .right_btn svg {
    transition: all .3s linear
}

@media (max-width:767px) {

    .btn_swiper .left_btn svg,
    .btn_swiper .right_btn svg {
        max-width: 8px;
        height: auto
    }
}

.btn_swiper .left_btn svg path,
.btn_swiper .right_btn svg path {
    stroke: #cdd1da;
    transition: all .3s linear
}

.btn_swiper .left_btn:hover,
.btn_swiper .right_btn:hover {
    border-color: #fc502b !important
}

.btn_swiper .left_btn:hover svg path,
.btn_swiper .right_btn:hover svg path,
.my_pagination .pagination li a:hover svg path,
.swiper-buttons button:hover svg circle,
.swiper-buttons button:hover svg path {
    stroke: #fc502b
}

.swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #e1e5ee;
    opacity: 1;
    border-radius: 50%
}

.step__progress__main>div.active span:after,
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fc502b
}

section.students {
    padding-bottom: 70px
}

@media (max-width:1800px) {
    section.students {
        padding-bottom: 50px
    }
}

section.students .swiper-container {
    padding-bottom: 50px
}

section.students .swiper-container .swiper-pagination {
    bottom: 0
}

section.students .item {
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

section.students .item:hover .content {
    opacity: 1
}

.partner_swiper_item>img,
section.students .item>img {
    height: 600px;
    width: 100%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:1800px) {
    section.students .item>img {
        height: 500px;
        width: 100%
    }
}

@media (max-width:991px) {
    section.students .item>img {
        height: 400px
    }
}

section.students .item .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: all .6s;
    background-size: cover;
    background-color: #fff;
    background-repeat: no-repeat
}

section.students .item .content * {
    position: relative;
    z-index: 3
}

@media (max-width:767px) {
    section.students .item .content {
        gap: 5px
    }
}

section.students .item .content:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 38, 75, 0) 50.07%, #000 100%);
    z-index: 2;
    transition: all .5s
}

section.specialts .item .content h5,
section.students .item .content h5 {
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0
}

section.specialts .item .content p,
section.students .item .content p {
    color: #bac8dc;
    text-align: center;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0;
    padding: 0 40px
}

section.specialts .item .content button,
section.students .item .content button {
    background: 0 0;
    border: 0;
    display: flex;
    width: 60px;
    height: 60px;
    padding: 7px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: #fc502b
}

section.students .item .content .footer {
    width: 100%
}

section.specialts .item .content .footer a,
section.students .item .content .footer a {
    display: inline-block;
    color: #8b94ab;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.specialts {
    padding-bottom: 0
}

section.specialts .link_faculty {
    font-size: 14px
}

section.specialts .swiper-container {
    padding-bottom: 50px
}

section.specialts .swiper-container .swiper-pagination {
    bottom: 0
}

section.specialts.withFaculty {
    padding-bottom: 80px
}

section.specialts.withFaculty .item:hover:after {
    opacity: .5
}

section.specialts .item {
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

section.specialts .item:hover:after {
    opacity: .4
}

.img_item_block:hover .text p,
.video_item_block:hover .text p,
section.specialts .item:hover .content {
    opacity: 1;
    transform: translateY(0)
}

section.specialts .item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #283891 .07%, #000 100%);
    z-index: 2;
    opacity: 0;
    transition: all .5s
}

@media (max-width:767px) {
    section.specialts .item:after {
        opacity: .4
    }
}

section.specialts .item>img,
section.specialts .item>video {
    height: 600px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

@media (max-width:1800px) {

    section.specialts .item>img,
    section.specialts .item>video {
        height: 500px
    }
}

@media (max-width:991px) {

    section.specialts .item>img,
    section.specialts .item>video {
        height: 400px
    }
}

section.specialts .item .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: all .3s;
    transform: translateY(15px)
}

@media (max-width:767px) {
    section.specialts .item .content {
        opacity: 1;
        transform: translateY(0);
        gap: 7px
    }
}

section.specialts .item .content * {
    color: #fff
}

@media (max-width:767px) {
    section.specialts .item .content p {
        color: #fff;
        padding: 0
    }
}

section.specialts .item .content .footer {
    width: 100%
}

@media (max-width:991px) {
    section.specialts .item .content .footer a {
        font-size: 12px
    }
}

@media (max-width:767px) {
    section.specialts .item .content .footer a {
        color: #fff
    }
}

section.news_general {
    padding-bottom: 70px
}

@media (max-width:1800px) {
    section.news_general {
        padding-bottom: 50px
    }
}

section.news_general .swiper-container {
    padding-bottom: 50px
}

section.news_general .swiper-container .swiper-pagination {
    bottom: 0
}

section.news_general .swiper-container .card_news {
    border-radius: 8px;
    overflow: hidden
}

section.news_general .swiper-container .card_news>img {
    height: 378px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden
}

section.news_general .swiper-container .card_news .card_text {
    background: #283891;
    padding: 24px
}

section.news_general .swiper-container .card_news .card_text span.date {
    color: #bac8dc;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-bottom: 24px
}

section.news_general .swiper-container .card_news .card_text h4 {
    margin-bottom: 24px
}

section.news_general .swiper-container .card_news .card_text h4 a {
    color: #fff;
    display: block;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    overflow: hidden;
    line-height: 29px;
    height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.my_breadcrumb {
    padding-top: 48px
}

@media (max-width:767px) {
    .my_breadcrumb {
        padding-top: 24px
    }
}

.my_breadcrumb .breadcrumbs {
    display: flex;
    align-items: center
}

@media (max-width:767px) {
    .my_breadcrumb .breadcrumbs {
        flex-wrap: wrap;
        margin-bottom: -10px
    }
}

.my_breadcrumb .breadcrumbs li {
    margin-right: 18px;
    color: #000;
    font-size: 16px
}

@media (max-width:767px) {
    .my_breadcrumb .breadcrumbs li {
        margin-bottom: 10px
    }
}

.my_breadcrumb .breadcrumbs li:after {
    content: '/';
    padding-left: 18px
}

.my_breadcrumb .breadcrumbs li:last-child:after {
    display: none
}

.my_breadcrumb .breadcrumbs li a,
.news_card.card .card-body .card-time,
section.my_contacts .left .item_block a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.news_card.card {
    border: 0;
    border-radius: 12px;
    background: #f6f8fd;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    margin-bottom: 24px;
    overflow: hidden
}

.news_card.card .card-img-top {
    border-radius: 0;
    height: 260px;
    overflow: hidden
}

@media (max-width:1800px) {
    .news_card.card .card-img-top {
        height: 200px
    }
}

.news_card.card .card-img-top img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center
}

.news_card.card .card-body,
section.my_caf_inner .card_top .card_content .right .text {
    padding: 24px
}

@media (max-width:767px) {
    .news_card.card .card-body {
        padding: 12px
    }
}

.news_card.card .card-body .card-time {
    color: #8b94ab;
    margin-bottom: 24px
}

@media (max-width:767px) {
    .news_card.card .card-body .card-time {
        margin-bottom: 12px
    }
}

.news_card.card .card-body .card-title {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 24px;
    height: 48px
}

@media (max-width:767px) {
    .news_card.card .card-body .card-title {
        font-size: 18px
    }
}

.news_card.card .card-body .card-text {
    color: #0b0f19;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 96px
}

@media (max-width:767px) {
    .news_card.card .card-body .card-text {
        font-size: 14px
    }
}

.news_card.card .card-link {
    display: inline-block;
    color: #fc502b;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

section.my_news .col-lg-6 .card-img-top {
    height: 380px !important
}

@media (max-width:1800px) {
    section.my_news .col-lg-6 .card-img-top {
        height: 280px !important
    }
}

@media (max-width:767px) {
    section.my_news .col-lg-6 .card-img-top {
        height: 200px !important
    }
}

section.my_news .col-lg-6 .card-title {
    margin-bottom: 10px !important
}

section.event_day {
    padding-bottom: 70px
}

@media (max-width:1800px) {
    section.event_day {
        padding-bottom: 50px
    }
}

section.event_day .card-title {
    height: auto !important;
    line-height: 1.2 !important
}

section.event_day .left {
    width: 100%
}

section.event_day .left .card-img-top {
    height: 490px !important
}

@media (max-width:991px) {
    section.event_day .left .card-img-top {
        height: 280px !important
    }
}

section.event_day .left .card-text {
    min-height: 170px
}

section.event_day .right {
    flex: 0 0 442px;
    min-width: 442px
}

@media (max-width:991px) {
    section.event_day .right {
        flex: 0 0 100%;
        width: 100%
    }
}

@media (max-width:767px) {
    section.event_day .right {
        min-width: inherit
    }
}

section.single_news {
    padding-bottom: 64px
}

@media (max-width:767px) {
    section.single_news .row {
        display: block
    }
}

section.single_news .rounded-12 {
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    margin-bottom: 48px;
    display: block
}

section.single_news .content_left p,
section.single_news h4 {
    color: #283891;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 36px
}

section.single_news .content_left {
    padding-right: 24px
}

section.single_news .content_left p {
    color: #0b0f19;
    font-size: 16px;
    line-height: 24px
}

section.single_news .content_right {
    flex: 0 0 430px;
    min-width: 430px
}

@media (max-width:991px) {
    section.single_news .content_right {
        flex: 0 0 330px;
        min-width: 330px
    }
}

section.single_news .content_right .card-title {
    height: auto !important
}

section.my_faculty .info .item p,
section.my_faculty p {
    color: #8890a4;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 24px
}

section.my_faculty .info {
    margin-top: 50px
}

section.my_faculty .info .col {
    flex: 0 0 20%;
    max-width: 20%
}

section.my_faculty .info .item {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eff3fa;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 38, 75, .07);
    height: 100%
}

section.my_faculty .info .item p {
    color: #4b6075;
    font-size: 15px;
    margin-bottom: 8px
}

section.my_faculty .info .item span {
    color: #283891;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: block;
    padding-right: 30px
}

section.tarif_plan {
    padding-bottom: 70px
}

@media (max-width:1800px) {
    section.tarif_plan {
        padding-bottom: 50px
    }
}

section.my_contacts .right h2,
section.my_event h2,
section.tarif_plan h2 {
    text-align: center
}

section.tarif_plan .item {
    padding: 48px 24px;
    gap: 24px;
    border-radius: 8px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1)
}

@media (max-width:991px) {
    section.tarif_plan .item {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    section.tarif_plan .item {
        padding: 24px 12px
    }
}

section.my_caf_inner .card_top .card_content .right .text h5,
section.tarif_plan .item h5,
section.tarif_plan .item p {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px
}

section.tarif_plan .item p {
    color: #8890a4;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

@media (max-width:767px) {
    section.tarif_plan .item p {
        font-size: 14px
    }
}

section.my_contacts .left .item_block h5,
section.tarif_plan .item .price {
    color: #283891;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px
}

@media (max-width:767px) {
    section.tarif_plan .item .price {
        font-size: 26px
    }
}

section.my_contacts {
    padding-bottom: 70px;
    padding-top: 40px
}

@media (max-width:1800px) {
    section.my_contacts {
        padding-bottom: 50px
    }
}

section.my_contacts .left .item_block {
    padding: 48px;
    text-align: center;
    border-radius: 8px;
    background: #f6f8fd;
    margin-bottom: 24px
}

section.my_contacts .left .item_block h5 {
    font-size: 32px;
    font-weight: 600
}

@media (max-width:767px) {
    section.my_contacts .left .item_block h5 {
        font-size: 24px;
        margin-bottom: 14px
    }
}

section.my_contacts .left .item_block a {
    color: #8b94ab;
    text-align: center;
    font-size: 24px
}

@media (max-width:767px) {
    section.my_contacts .left .item_block a {
        font-size: 16px
    }
}

section.my_contacts .left .item_block a:hover,
section.once_partner .mainer .right ul li a:hover,
section.sign_in .main p a,
ul.contact_ul li a:hover {
    color: #fc502b
}

.carer-card .radting-number svg path,
.image-content .play-icon button:hover svg path,
.image-content-right .play-icon button:hover svg path,
.resume-about-content .about-img-box .contacts ul li a:hover svg path,
section.my_contacts .left .item_block a:hover svg path,
section.once_partner .mainer .right ul li a:hover svg path,
ul.contact_ul li a:hover svg path {
    fill: #fc502b
}

.map_block .top a,
section.my_contacts .right {
    display: flex;
    justify-content: center;
    align-items: center
}

section.my_contacts .right {
    border-radius: 8px;
    background: #f6f8fd;
    height: 100%;
    flex-direction: column;
    padding: 64px
}

@media (max-width:767px) {
    section.my_contacts .right {
        padding: 12px
    }
}

section.hesitate .main form input,
section.my_contacts .right form input {
    height: 52px
}

section.my_contacts .right form .btn-orange {
    width: 100%;
    margin-bottom: 24px
}

section.my_contacts .right form .checkbox_privacy label {
    color: #283891;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.map_block .top {
    display: flex;
    align-items: center;
    margin-bottom: 32px
}

.map_block .top a {
    padding: 12px 16px;
    gap: 10px;
    flex: 1 0 0;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--Grey-300, #d8dce7)
}

@media (max-width:767px) {
    .map_block .top a {
        padding: 6px 10px;
        font-weight: 600
    }
}

.map_block .top a.active {
    background-color: #fc502b;
    border-color: #fc502b;
    color: #fff
}

.map_block .top a:first-child {
    border-radius: 8px 0 0 8px
}

.map_block .top a:last-child {
    border-radius: 0 8px 8px 0
}

.map_block #map {
    width: 100%;
    height: 464px;
    background: url(../images/map.jpg) no-repeat center;
    background-size: cover
}

@media (max-width:767px) {
    .map_block #map {
        height: 300px
    }
}

.event_item,
section.about_us .main {
    border-radius: 24px;
    background: #f6f8fd;
    padding: 48px
}

@media (max-width:991px) {
    section.about_us .main {
        padding: 24px
    }
}

@media (max-width:767px) {
    section.about_us .main {
        padding: 12px;
        border-radius: 6px
    }
}

section.about_us .main p {
    color: #4b6075;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 36px;
    line-height: 28px
}

@media (max-width:767px) {
    section.about_us .main p {
        font-size: 16px;
        line-height: 1.4
    }
}

section.about_us .main h2 {
    font-weight: 500
}

@media (max-width:767px) {
    section.about_us .main h2 {
        font-size: 20px
    }
}

section.about_us .specialty_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px
}

@media (max-width:767px) {
    section.about_us .specialty_list {
        gap: 12px
    }
}

section.about_us .specialty_list a {
    display: flex;
    flex: 0 0 283px;
    height: 72px;
    padding: 16px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 48px;
    background: #dde2ed;
    color: #283891;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

@media (max-width:767px) {
    section.about_us .specialty_list a {
        font-size: 14px;
        max-width: calc(50% - 6px);
        line-height: 1;
        border-radius: 6px;
        height: 62px;
        padding: 5px 10px
    }
}

section.about_us .specialty_list a:hover {
    background-color: #fc502b;
    color: #fff
}

section.about_us .result_in_numbers {
    margin: 0;
    gap: 24px
}

section.about_us .result_in_numbers .col {
    border-radius: 8px;
    background: #283891;
    gap: 24px;
    max-width: calc(25% - 24px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1)
}

@media (max-width:1250px) {
    section.about_us .result_in_numbers .col {
        max-width: calc(50% - 12px)
    }
}

@media (max-width:767px) {
    section.about_us .result_in_numbers .col {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
        padding: 12px
    }
}

section.about_us .result_in_numbers .col h5 {
    color: #fff
}

section.about_us .result_in_numbers .col span {
    color: #8b94ab
}

section.about_us .result_in_numbers .col img {
    border-radius: 8px;
    background: #fff;
    width: 66px;
    height: 66px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.event_item {
    padding: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: -2px -2px 4px 0 rgba(0, 0, 0, .1), 2px 2px 4px 0 rgba(0, 0, 0, .1)
}

.event_item h5,
.event_item p {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px
}

@media (max-width:767px) {
    .event_item h5 {
        font-size: 20px
    }
}

.event_item p {
    color: #8890a4;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px
}

@media (max-width:767px) {
    .event_item p {
        font-size: 16px
    }
}

@media (max-width:1250px) {
    .gallery_event {
        display: flex;
        flex-wrap: wrap
    }
}

@media (max-width:767px) {
    .gallery_event {
        justify-content: space-between;
        gap: 6px
    }
}

.gallery_event:after {
    content: '';
    clear: both;
    display: block
}

.gallery_event li {
    float: left;
    overflow: hidden;
    margin-bottom: 6px;
    position: relative
}

@media (max-width:1250px) {
    .gallery_event li {
        height: 160px;
        margin-right: 10px
    }
}

@media (max-width:767px) {
    .gallery_event li {
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important
    }

    .gallery_event li:nth-child(n+2) {
        max-width: calc(50% - 3px)
    }
}

.gallery_event li.vid:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    left: 6px;
    bottom: 10px;
    background: url(../images/video.svg) no-repeat center;
    pointer-events: none
}

.gallery_event li a {
    display: block;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%
}

@media (max-width:1250px) {
    .gallery_event li a {
        width: 100% !important;
        height: 100% !important;
        -o-object-fit: cover;
        object-fit: cover
    }
}

.gallery_event li:nth-child(1) {
    width: 260px;
    margin-right: 6px;
    border-radius: 12px
}

.gallery_event li:nth-child(1) a {
    height: 487px
}

.gallery_event li:nth-child(2) {
    width: 130px;
    margin-right: 6px
}

.gallery_event li:nth-child(2) a,
.gallery_event li:nth-child(3) a,
.gallery_event li:nth-child(4) a {
    height: 145px
}

.gallery_event li:nth-child(3) {
    margin-right: 6px;
    width: 80px
}

.gallery_event li:nth-child(4) {
    width: 130px
}

.gallery_event li:nth-child(5) {
    width: 186px;
    margin-right: 6px
}

.gallery_event li:nth-child(5) a,
.gallery_event li:nth-child(6) a {
    height: 182px
}

.gallery_event li:nth-child(6) {
    margin-right: 0;
    width: 160px
}

.gallery_event li:nth-child(7) {
    width: 100px;
    margin-right: 6px
}

.gallery_event li:nth-child(7) a,
.gallery_event li:nth-child(8) a,
.gallery_event li:nth-child(9) a {
    height: 145px
}

.gallery_event li:nth-child(8) {
    margin-right: 6px;
    width: 120px
}

.gallery_event li:nth-child(9) {
    width: 120px
}

.gallery_event li:nth-child(9):after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    pointer-events: none
}

section.hesitate {
    padding-bottom: 70px
}

@media (max-width:1800px) {
    section.hesitate {
        padding-bottom: 50px
    }
}

.text_editor h2,
section.faculty_inner .main h2,
section.hesitate h2 {
    margin-bottom: 32px
}

.partner_item,
section.hesitate .main {
    border-radius: 24px;
    background: #f6f8fd;
    padding: 48px
}

@media (max-width:1250px) {
    section.hesitate .main {
        padding: 24px;
        border-radius: 12px
    }
}

@media (max-width:991px) {
    section.hesitate .main {
        padding: 12px;
        border-radius: 6px
    }
}

section.hesitate .main form .flexible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 24px
}

@media (max-width:1250px) {
    section.hesitate .main form .flexible {
        gap: 12px
    }
}

@media (max-width:767px) {
    section.hesitate .main form .flexible {
        display: block
    }
}

section.hesitate .main form .flexible>* {
    width: 100%
}

@media (max-width:767px) {
    section.hesitate .main form input {
        height: 42px;
        margin-bottom: 12px
    }
}

section.hesitate .main form .checkbox_privacy,
section.hesitate .main form .flexible .form-group {
    margin-bottom: 0
}

section.hesitate .main form .checkbox_privacy label {
    font-weight: 400
}

@media (max-width:767px) {
    section.hesitate .main form .checkbox_privacy label {
        font-size: 12px;
        line-height: 1.2
    }
}

section.my_partners {
    padding-bottom: 70px
}

@media (max-width:1800px) {
    section.my_partners {
        padding-bottom: 50px
    }
}

section.my_partners .partner_swiper {
    padding-bottom: 24px;
    margin-bottom: 76px
}

.partner_item {
    position: relative;
    padding: 24px;
    background-color: #f6f8fd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    height: calc(100% - 24px)
}

@media (max-width:767px) {
    .partner_item {
        text-align: center
    }
}

.partner_item .bc_image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 143px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%
}

@media (max-width:767px) {
    .partner_item .bc_image {
        height: 123px
    }
}

.partner_item .logo_img {
    height: 165px;
    width: 165px;
    box-shadow: 0 0 10px 0 #00000014;
    border-radius: 12px;
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px
}

@media (max-width:767px) {
    .partner_item .logo_img {
        height: 120px;
        width: 120px;
        padding: 25px
    }
}

.partner_item .logo_img img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center
}

.partner_item h5,
.partner_item p {
    font-size: 18px;
    font-style: normal;
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.partner_item h5 {
    text-transform: uppercase;
    color: #283891;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 27px;
    height: 54px
}

@media (max-width:767px) {
    .partner_item h5 {
        font-size: 14px;
        line-height: 21px;
        height: auto;
        -webkit-line-clamp: inherit
    }
}

.partner_item p {
    color: #8b94ab;
    font-weight: 400;
    margin-bottom: 53px;
    line-height: 28px;
    height: 56px
}

@media (max-width:767px) {
    .partner_item p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 25px;
        height: auto;
        -webkit-line-clamp: inherit
    }
}

.partner_item .btn-orange {
    width: 100%
}

.partner_swiper_item {
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

@media (max-width:1800px) {
    .partner_swiper_item>img {
        height: 500px;
        width: 100%
    }
}

@media (max-width:991px) {
    .partner_swiper_item>img {
        height: 400px
    }
}

@media (max-width:767px) {
    .partner_swiper_item>img {
        height: 250px
    }
}

.partner_swiper_item button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: 0 0;
    border: 0;
    display: flex;
    width: 60px;
    height: 60px;
    padding: 7px;
    border-radius: 999px;
    background: #fc502b;
    transition: all .3s;
    opacity: 0;
    pointer-events: none
}

@media (max-width:1250px) {
    .partner_swiper_item button {
        opacity: 1;
        pointer-events: auto
    }
}

.dropdown.custom .dropdown-menu li,
.my_pagination {
    margin: 0
}

.my_pagination .pagination,
.my_pagination .pagination li a,
.partner_swiper_item button {
    justify-content: center;
    align-items: center
}

.my_pagination .pagination li a {
    font-size: 16px;
    text-align: center;
    color: #3b3f5f;
    border: 1px solid #bac8dc;
    margin: 0 6px;
    display: inline-flex;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    outline: 0;
    box-shadow: none;
    font-weight: 600
}

.my_pagination .pagination li a:hover {
    border-color: #fc502b;
    color: #fc502b
}

.my_pagination .pagination li a.active {
    background: #fc502b;
    border-color: #fc502b;
    box-shadow: 0 8px 18px -8px rgba(232, 117, 37, .9);
    color: #fff
}

section.my_directions {
    padding-top: 30px
}

section.my_directions h1 {
    margin-bottom: 30px
}

section.my_directions .subtitle {
    color: #8890a4;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 48px
}

@media (max-width:767px) {
    section.my_directions .subtitle {
        font-size: 16px
    }
}

section.my_directions a.direction_item {
    margin-bottom: 24px;
    min-height: 300px
}

@media (max-width:1800px) {
    section.my_directions a.direction_item {
        min-height: 200px
    }
}

@media (max-width:767px) {
    section.my_directions a.direction_item {
        padding: 12px;
        min-height: auto
    }
}

section.my_directions a.direction_item h4,
section.once_partner .mainer .right ul li,
ul.contact_ul li {
    margin-bottom: 16px
}

section.my_directions a.direction_item svg {
    width: 140px;
    height: auto
}

@media (max-width:991px) {
    section.my_directions a.direction_item svg {
        width: 100px
    }
}

@media (max-width:767px) {
    section.my_directions a.direction_item svg {
        width: 60px
    }
}

.link_faculty {
    color: #fff;
    font-size: 18px;
    text-decoration: underline;
    text-underline-position: under;
    word-spacing: 10px
}

section.once_faculty .main {
    border-radius: 24px;
    background: rgba(232, 117, 37, .25);
    padding: 48px;
    display: flex;
    align-items: flex-start
}

section.faculty_inner {
    padding-top: 24px
}

@media (max-width:767px) {
    section.faculty_inner {
        padding-top: 0
    }
}

section.faculty_inner .main {
    background: #f3f6ff;
    border-radius: 16px;
    padding: 54px 96px
}

@media (max-width:1250px) {
    section.faculty_inner .main {
        padding: 50px 30px
    }
}

@media (max-width:767px) {
    section.faculty_inner .main {
        padding: 0;
        background-color: transparent;
        display: block
    }
}

.text_editor h4,
section.faculty_inner .main h4 {
    font-size: 18px;
    line-height: 160%;
    color: #565973;
    margin-bottom: 20px
}

.text_editor p,
section.faculty_inner .main p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 15px
}

.text_editor p b,
section.faculty_inner .main p b {
    font-size: 16px;
    line-height: 150%
}

@media (max-width:767px) {
    section.faculty_inner .main p {
        font-size: 16px
    }
}

section.faculty_inner .main .mk {
    -o-object-fit: cover;
    object-fit: cover;
    height: 350px;
    width: 600px;
    -o-object-position: bottom;
    object-position: bottom;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
    margin-left: 50px;
    float: right
}

@media (max-width:991px) {
    section.faculty_inner .main .mk {
        max-width: 50%;
        height: 200px;
        margin-bottom: 30px;
        margin-left: 30px
    }
}

@media (max-width:767px) {
    section.faculty_inner .main .mk {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 50px 0
    }
}

section.faculty_inner .main .text_editor {
    margin-bottom: 30px
}

section.faculty_inner .main .text_editor img {
    max-width: 100%;
    margin-bottom: 20px
}

section.faculty_inner .gallery_faculty ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

@media (max-width:767px) {
    section.faculty_inner .gallery_faculty ul {
        gap: 10px
    }
}

section.faculty_inner .gallery_faculty ul li {
    width: 23%
}

@media (max-width:991px) {
    section.faculty_inner .gallery_faculty ul li {
        width: 30%
    }
}

@media (max-width:767px) {
    section.faculty_inner .gallery_faculty ul li {
        width: 50%;
        max-width: calc(50% - 5px)
    }
}

section.faculty_inner .gallery_faculty ul li a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    height: 150px;
    position: relative
}

@media (max-width:767px) {
    .text_editor p {
        font-size: 16px
    }
}

.play_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: #fff url(../images/bx-play.svg) no-repeat center;
    box-shadow: 0 4.4px 12px -1px rgba(19, 16, 34, .06), 0 2px 6.4px -1px rgba(19, 16, 34, .03);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all .15s
}

section.other_faculties {
    padding-top: 0;
    padding-bottom: 70px
}

section.other_faculties .other_faculties_main {
    padding: 48px;
    border-radius: 24px;
    background: #f6f8fd
}

@media (max-width:767px) {
    section.other_faculties .other_faculties_main {
        padding: 12px;
        border-radius: 12px
    }
}

section.other_faculties .other_faculties_main .left {
    width: 100%
}

section.other_faculties .other_faculties_main .item {
    padding-bottom: 70px;
    border-bottom: 1px solid #bac8dc;
    margin-bottom: 70px
}

@media (max-width:767px) {
    section.other_faculties .other_faculties_main .item {
        padding-bottom: 30px;
        margin-bottom: 30px
    }
}

section.other_faculties .other_faculties_main .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

section.other_faculties .other_faculties_main .abacus {
    max-width: 450px;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: auto;
    background: #e1e5ee
}

@media (max-width:767px) {
    section.other_faculties .other_faculties_main .abacus {
        max-width: 50%;
        width: 50%;
        margin: 20px auto auto;
        display: block
    }
}

section.other_faculties .other_faculties_main .cap {
    color: #4b6075;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px
}

@media (max-width:767px) {
    section.other_faculties .other_faculties_main .cap {
        font-size: 14px;
        font-weight: 500
    }
}

section.other_faculties .other_faculties_main h2 {
    margin-bottom: 48px
}

@media (max-width:767px) {
    section.other_faculties .other_faculties_main h2 {
        margin-bottom: 24px
    }
}

section.other_faculties .other_faculties_main .item {
    display: flex;
    align-items: flex-start;
    gap: 64px
}

@media (max-width:767px) {
    section.other_faculties .other_faculties_main .item {
        display: block
    }
}

section.other_faculties .other_faculties_main h3 {
    color: #283891;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px
}

@media (max-width:767px) {
    section.other_faculties .other_faculties_main h3 {
        font-size: 20px;
        font-weight: 600
    }
}

section.other_faculties .other_faculties_main p {
    color: #4b6075;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px
}

section.other_faculties .other_faculties_main .column {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 16px
}

@media (max-width:991px) {
    section.other_faculties .other_faculties_main .column {
        display: block
    }
}

section.other_faculties .other_faculties_main .column .head {
    color: #283891;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    gap: 16px
}

@media (max-width:991px) {
    section.other_faculties .other_faculties_main .column .head {
        width: 100%;
        margin-bottom: 10px
    }
}

section.other_faculties .other_faculties_main .column .head img {
    max-width: 12px
}

.link_detail {
    color: #fc502b;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.link_detail svg {
    margin-left: 8px
}

section.once_partner .mainer {
    border-radius: 12px;
    background: #f6f8fd;
    overflow: hidden;
    position: relative
}

@media (max-width:991px) {
    section.once_partner .mainer .row {
        display: block
    }
}

section.once_partner .mainer .generic,
section.video_lessons .item>img {
    width: 100%;
    height: 330px;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:767px) {
    section.once_partner .mainer .generic {
        height: 200px
    }
}

section.once_partner .mainer .logos {
    border-radius: 12px;
    background: #fff;
    width: 260px;
    height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 28px;
    margin-top: -200px;
    margin-left: 40px
}

@media (max-width:767px) {
    section.once_partner .mainer .logos {
        margin-left: 12px;
        padding: 12px;
        width: 130px;
        height: 130px;
        margin-top: -65px
    }
}

section.once_partner .mainer .sing {
    padding: 25px 40px
}

@media (max-width:767px) {
    section.once_partner .mainer .sing {
        padding: 12px
    }
}

section.once_partner .mainer h1,
section.once_partner .mainer h5 {
    color: #283891;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px
}

@media (max-width:767px) {
    section.once_partner .mainer h1 {
        font-size: 26px;
        line-height: 1.5
    }
}

section.once_partner .mainer h5 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px
}

@media (max-width:767px) {
    section.once_partner .mainer h5 {
        font-size: 18px;
        line-height: 1.3
    }
}

section.once_partner .mainer .left p {
    color: #8b94ab;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px
}

@media (max-width:767px) {
    section.once_partner .mainer .left p {
        font-size: 16px;
        line-height: 1.5
    }
}

section.once_partner .mainer .address {
    display: inline-flex;
    align-items: center;
    color: #283891;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

@media (max-width:991px) {
    section.once_partner .mainer .address {
        margin-bottom: 40px
    }
}

@media (max-width:767px) {
    section.once_partner .mainer .address {
        font-size: 16px;
        line-height: 1.3
    }
}

section.once_partner .mainer .right {
    flex: 0 0 400px
}

@media (max-width:1250px) {
    section.once_partner .mainer .right {
        flex: 0 0 300px
    }
}

.editor_area h4,
.teacher_inner .mainer h5,
section.once_partner .mainer .right ul li a,
ul.contact_ul li a {
    color: #283891;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

@media (max-width:767px) {
    section.once_partner .mainer .right ul li a {
        font-size: 16px;
        font-weight: 600
    }
}

@media (max-width:767px) {
    ul.contact_ul li a {
        font-size: 16px;
        font-weight: 600
    }
}

.teacher_inner .mainer {
    padding: 24px 45px;
    border-radius: 12px;
    background-color: #f6f8fd;
    margin-bottom: 24px
}

@media (max-width:991px) {
    .teacher_inner .mainer {
        padding: 12px 20px
    }
}

@media (max-width:767px) {
    .teacher_inner .mainer {
        padding: 12px 10px
    }
}

.teacher_inner .mainer h1 {
    margin-bottom: 16px;
    font-size: 26px;
    max-width: 50%
}

@media (max-width:991px) {
    .teacher_inner .mainer h1 {
        max-width: 100%;
        font-size: 22px
    }
}

.editor_area h4,
.teacher_inner .mainer h5 {
    font-size: 32px;
    margin-bottom: 15px
}

@media (max-width:991px) {
    .teacher_inner .mainer h5 {
        font-size: 18px
    }
}

.teacher_inner .mainer .row .left {
    flex: 0 0 320px
}

@media (max-width:991px) {
    .teacher_inner .mainer .row .left {
        margin-bottom: 20px;
        width: 100%
    }
}

.teacher_inner .mainer .row .left img {
    padding-top: 10px;
    width: 100%;
    height: auto
}

@media (max-width:767px) {
    .teacher_inner .mainer .row .left img {
        padding-top: 0;
        height: 140px;
        width: auto;
        margin: auto
    }
}

.editor_area,
section.video_lessons .mainer {
    border-radius: 12px;
    padding: 24px 40px;
    background: #f6f8fd
}

@media (max-width:767px) {
    .editor_area {
        padding: 12px;
        border-radius: 6px
    }
}

.editor_area h4 {
    font-weight: 500;
    margin-bottom: 20px
}

@media (max-width:767px) {
    .editor_area h4 {
        font-size: 24px
    }
}

.editor_area h5,
.editor_area ol li,
.editor_area p {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 24px
}

@media (max-width:767px) {
    .editor_area h5 {
        font-size: 16px
    }
}

.editor_area ol li,
.editor_area p {
    color: #0b0f19;
    font-size: 20px;
    font-weight: 400
}

@media (max-width:767px) {

    .editor_area p,
    .editor_area p * {
        font-size: 16px
    }
}

.editor_area ol {
    padding-left: 25px
}

.editor_area ol li *,
.editor_area p * {
    line-height: 150%;
    color: #0b0f19;
    font-size: 20px
}

@media (max-width:767px) {

    .editor_area ol li,
    .editor_area ol li * {
        font-size: 16px
    }
}

section.video_lessons {
    padding-bottom: 0
}

section.video_lessons .mainer {
    padding: 24px 44px
}

@media (max-width:767px) {
    section.video_lessons .mainer {
        padding: 12px;
        border-radius: 6px
    }
}

section.video_lessons .swiper-container {
    padding-bottom: 50px
}

section.video_lessons .swiper-container .swiper-pagination {
    bottom: 0
}

section.video_lessons .item {
    position: relative
}

section.video_lessons .item>img {
    border-radius: 12px;
    height: 260px;
    overflow: hidden;
    margin-bottom: 12px
}

@media (max-width:1800px) {
    section.video_lessons .item>img {
        height: 200px
    }
}

@media (max-width:767px) {
    section.video_lessons .item>img {
        height: 150px;
        border-radius: 6px
    }
}

section.video_lessons .item h5,
section.video_lessons .item p {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    display: block;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

@media (max-width:767px) {
    section.video_lessons .item h5 {
        font-size: 18px
    }
}

section.video_lessons .item p {
    color: #8b94ab;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    height: 20px
}

@media (max-width:767px) {
    section.video_lessons .item p {
        font-size: 13px
    }
}

section.video_lessons .item button {
    border: 0;
    display: flex;
    position: absolute;
    left: 16px;
    top: 200px;
    width: 48px;
    height: 48px;
    padding: 7px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #283891
}

@media (max-width:1800px) {
    section.video_lessons .item button {
        top: 140px
    }
}

@media (max-width:767px) {
    section.video_lessons .item button {
        top: 100px;
        width: 36px;
        height: 36px
    }
}

.step__progress__main {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    text-align: left
}

.step__progress__main>div {
    min-width: 250px;
    position: relative
}

.step__progress__main>div:first-child:after {
    display: none
}

.step__progress__main>div.active span {
    background: white url(../images/check.svg) no-repeat center;
    color: #fff;
    font-size: 0;
    border-color: #fc502b
}

.step__progress__main>div p {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0
}

@media (max-width:767px) {
    .step__progress__main>div p {
        font-size: 12px;
        line-height: 16px
    }
}

.avatar .user_img label,
.step__progress__main>div span {
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center
}

.step__progress__main>div span {
    display: inline-flex;
    color: #d1d5db;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -.01em;
    margin-bottom: 20px;
    z-index: 2;
    background-color: #f3f7f9;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative
}

@media (max-width:767px) {
    .step__progress__main>div span {
        margin-bottom: 5px
    }
}

.step__progress__main>div:after {
    content: '';
    position: absolute;
    top: 18px;
    right: 0;
    left: -250px;
    width: 250px;
    height: 2px;
    background-color: #d1d5db;
    z-index: 1
}

@media (max-width:767px) {
    .step__progress__main>div:after {
        width: 100%;
        left: -50%
    }

    .step__progress__main>div {
        min-width: 25%;
        text-align: center
    }
}

select.select_style {
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    height: 65px;
    outline: 0 !important;
    padding: 11px 40px 11px 16px;
    font-size: 14px;
    line-height: 160%;
    color: #565973;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    background-position: right 10px center !important;
    background: url(../images/arrow.svg) no-repeat center right 5px;
    background-size: 17px auto
}

.image_diplom,
.reel_item {
    position: relative;
    overflow: hidden
}

.image_diplom {
    width: 160px;
    display: flex;
    margin-left: 50px;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    transition: ease-in-out 750ms;
    background-color: #8b8888;
    background-size: cover;
    border: 1px solid #8b8888;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 0;
    height: 120px
}

section.sign_in {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 10% top 10%;
    background-size: 100% auto;
    overflow: hidden;
    padding: 70px 0
}

@media (max-width:1250px) {
    section.sign_in {
        padding-top: 180px
    }
}

@media (max-width:767px) {
    section.sign_in {
        padding: 146px 0 56px
    }
}

section.sign_in h1 {
    color: #333;
    font-size: 40px
}

@media (max-width:767px) {
    section.sign_in h1 {
        font-size: 24px
    }
}

section.sign_in .main {
    max-width: 810px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    padding: 48px;
    background: #fff;
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a;
    border: 1px solid #8b94ab
}

@media (max-width:1800px) {
    section.sign_in .main {
        max-width: 570px;
        padding: 24px 36px
    }
}

@media (max-width:767px) {
    section.sign_in .main {
        padding: 12px;
        border-radius: 6px
    }
}

section.sign_in .main h2 {
    text-align: center;
    margin-bottom: 16px
}

section.sign_in .main p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #565973;
    margin-bottom: 32px
}

@media (max-width:767px) {
    section.sign_in .main p a {
        display: block
    }
}

section.account .left ul li,
section.sign_in .main .btn-orange {
    width: 100%
}

section.sign_in .forget {
    margin-top: 21px;
    text-align: center
}

section.sign_in .forget a {
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #fc502b
}

section.blog-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 0
}

.fancybox-infobar span,
section.blog-banner h1 {
    color: #fff
}

section.reels {
    padding-top: 30px
}

.offer_style h5,
section.reels h1 {
    margin-bottom: 20px
}

section.reels h2 {
    color: #0b0f19;
    font-size: 20px
}

section.reels .reel_swiper {
    padding-bottom: 24px
}

.reel_item {
    height: 600px;
    border-radius: 12px;
    display: block;
    outline: 0
}

@media (max-width:1800px) {
    .reel_item {
        height: 500px
    }
}

.reel_item .bc_image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.reel_item .playing {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    gap: 10px;
    cursor: pointer;
    outline: 0
}

section.my_holidays {
    padding-bottom: 70px
}

section.my_holidays h2 {
    text-align: center
}

section.my_holidays .item_holiday {
    border-radius: 12px;
    background: #f6f8fd;
    box-shadow: -2px -2px 4px 0 rgba(0, 0, 0, .1), 2px 2px 4px 0 rgba(0, 0, 0, .1);
    padding: 10px;
    display: flex;
    gap: 10px;
    margin-bottom: 24px
}

@media (max-width:767px) {
    section.my_holidays .item_holiday {
        display: block
    }
}

section.my_holidays .item_holiday .playing {
    font-size: 0
}

section.my_holidays .item_holiday .time {
    position: absolute;
    left: 0;
    bottom: 5px;
    color: #283891;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

@media (max-width:767px) {
    section.my_holidays .item_holiday .time {
        position: static;
        font-size: 14px
    }
}

section.my_holidays .item_holiday .content {
    position: relative;
    padding-bottom: 30px
}

@media (max-width:767px) {
    section.my_holidays .item_holiday .content {
        padding-bottom: 15px
    }
}

section.my_holidays .item_holiday .reel_item {
    flex: 0 0 250px;
    height: 470px
}

@media (max-width:991px) {
    section.my_holidays .item_holiday .reel_item {
        height: 370px
    }
}

section.my_holidays .item_holiday h4 {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px
}

@media (max-width:767px) {
    section.my_holidays .item_holiday h4 {
        line-height: 1.3;
        font-size: 18px
    }
}

section.my_holidays .item_holiday p,
section.my_resume .resume_item .content_left h6 {
    color: #8890a4;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

@media (max-width:767px) {
    section.my_holidays .item_holiday p {
        font-size: 14px;
        line-height: 1.3
    }
}

section.account {
    padding-top: 0
}

@media (max-width:991px) {
    section.account .account_main {
        display: block
    }
}

section.account .left {
    flex: 0 0 330px;
    padding: 12px;
    border-right: 1px solid #e2e5f1
}

section.account .left ul {
    width: 100%;
    border-bottom: 0
}

@media (max-width:991px) {
    section.account .left ul {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        padding-bottom: 15px
    }
}

@media (max-width:767px) {
    section.account .left ul {
        display: block
    }
}

section.account .left ul li a {
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #33354d;
    padding: 12px 24px;
    white-space: nowrap
}

section.account .left ul li a.active {
    background: #fc502b;
    box-shadow: 0 8px 18px -8px rgba(232, 117, 37, .9);
    color: #fff
}

section.account .left ul li a.active svg path {
    stroke: #fff
}

section.account .left ul li a svg {
    margin-right: 12px
}

section.account .left ul li a svg path {
    stroke: #9397ad;
    transition: all .15s
}

section.account .right {
    padding-top: 56px;
    padding-left: 112px
}

@media (max-width:1800px) {
    section.account .right {
        padding: 50px 30px
    }
}

@media (max-width:1250px) {
    section.account .right {
        padding-left: 30px
    }
}

@media (max-width:991px) {
    section.account .right {
        padding-left: 15px
    }
}

section.account .right h4 {
    font-weight: 800;
    font-size: 20px;
    line-height: 140%;
    color: #fc502b;
    margin-bottom: 24px
}

.avatar p,
section.account h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 130%
}

@media (max-width:767px) {
    section.account h2 {
        font-size: 26px
    }
}

.avatar,
.buttons,
section.account .left ul li a {
    display: flex;
    align-items: center
}

.buttons {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e5f1
}

.buttons .btn-more {
    color: #33354d
}

.buttons button {
    margin-right: 16px;
    border-radius: 6px !important
}

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

@media (max-width:991px) {
    .avatar {
        padding: 30px
    }
}

@media (max-width:767px) {
    .avatar {
        flex-direction: row;
        padding: 0;
        margin-bottom: 15px;
        align-items: center
    }
}

.avatar .user_img {
    flex: 0 0 120px;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin-bottom: 8px;
    position: relative;
    background-size: cover;
    background-position: center;
    border: 1px solid #eee
}

@media (max-width:767px) {
    .avatar .user_img {
        margin-right: 20px;
        flex: 0 0 80px;
        height: 80px;
        width: 80px;
        margin-bottom: 0
    }
}

.avatar .user_img input {
    display: none
}

.avatar .user_img label {
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px solid #e2e5f1;
    box-shadow: 0 4.4px 12px -1px rgba(19, 16, 34, .06), 0 2px 6.4px -1px rgba(19, 16, 34, .03);
    border-radius: 40px;
    position: absolute;
    display: flex;
    cursor: pointer
}

.avatar p {
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #0b0f19;
    margin-bottom: 4px
}

.avatar span,
.delete_account p,
.result_table tbody tr td,
.result_table thead tr td {
    font-size: 16px;
    line-height: 160%;
    color: #565973
}

.avatar span {
    text-align: center;
    display: block;
    padding-bottom: 20px;
    font-weight: 400
}

.delete_account p,
.result_table thead tr td {
    font-weight: 400
}

.delete_account .checkbox_privacy {
    margin-bottom: 32px
}

.result_table tr,
.result_table tr td,
select.select_style {
    border: 1px solid #d4d7e5
}

.result_table tr td {
    padding: 8px 16px
}

.result_table thead tr td {
    background: #eff2fc;
    font-weight: 600;
    color: #33354d
}

.result_table tbody tr td {
    font-weight: 500
}

.qrcode img {
    width: 250px;
    height: 250px;
    -o-object-fit: contain;
    object-fit: contain
}

.payment_details table td,
.payment_details table th,
footer * {
    color: #fff
}

.scrolls {
    overflow: hidden;
    overflow-x: auto
}

@media (max-width:767px) {
    .custom_overflow {
        overflow-x: auto
    }
}

section.my_career,
section.my_resume {
    padding-bottom: 70px
}

.delete_account p,
.other_teachers h2,
section.my_career .row>div {
    margin-bottom: 24px
}

.offer_style .modal-dialog {
    max-width: 530px
}

.offer_style .modal-body {
    padding: 0 30px
}

@media (max-width:767px) {
    .offer_style .modal-body {
        padding: 0 17px
    }
}

.offer_style .close {
    opacity: 1;
    margin: 20px 30px 20px auto
}

@media (max-width:767px) {
    .offer_style .close {
        margin: 17px 17px 17px auto
    }
}

.offer_style .form_style .form-group input {
    padding: 14px 25px
}

.offer_style h5 {
    clear: both;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    color: #333;
    padding-top: 20px;
    border-top: 1px solid #8b94ab
}

@media (max-width:767px) {
    .offer_style h5 {
        margin-bottom: 17px;
        padding-top: 17px;
        font-size: 14px;
        line-height: 21px
    }
}

.offer_style .modal-footer {
    padding: 0 30px 30px;
    border: 0
}

@media (max-width:767px) {
    .offer_style .modal-footer {
        padding: 0 17px 17px
    }
}

.offer_style .modal-footer .btn-blue {
    height: 50px;
    padding: 0 80px;
    margin: 0;
    border-radius: 8px
}

@media (max-width:767px) {
    .offer_style .modal-footer .btn-blue {
        padding: 0 40px;
        height: 45px
    }
}

.career_item {
    border-radius: 8px;
    background: #f6f8fd;
    overflow: hidden;
    height: 100%
}

.career_item .fone {
    width: 100%;
    height: 130px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden
}

.career_item .avatar_empl {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    overflow: hidden;
    margin-top: -45px;
    margin-bottom: 5px
}

@media (max-width:767px) {
    .career_item .avatar_empl {
        width: 70px;
        height: 70px;
        margin-top: -35px
    }
}

.career_item .content {
    padding: 0 24px 24px
}

@media (max-width:991px) {
    .career_item .content {
        padding: 0 12px 12px
    }
}

.career_item .content h5 {
    margin-bottom: 5px
}

.career_item .content h5 a,
.career_item .content h6,
.career_item .content p {
    font-size: 16px;
    font-style: normal;
    display: block;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.career_item .content h5 a {
    color: #283891;
    height: 24px;
    -webkit-line-clamp: 1;
    font-weight: 600
}

.career_item .content h5 a:hover,
.dropdown.custom .dropdown-menu li a:hover {
    color: #fc502b
}

.career_item .content h5 a:hover svg path {
    fill: #fc502b !important
}

.career_item .content h5 a svg {
    width: 20px;
    height: auto;
    margin-top: -5px
}

@media (max-width:767px) {
    .career_item .content h5 a svg {
        width: 16px
    }
}

@media (max-width:767px) {
    .career_item .content h5 a {
        font-size: 14px
    }
}

.career_item .content h6,
.career_item .content p {
    font-weight: 400
}

.career_item .content h6 {
    margin-bottom: 5px;
    color: #3e4c70;
    height: 24px;
    -webkit-line-clamp: 1
}

@media (max-width:767px) {
    .career_item .content h6 {
        font-size: 14px
    }
}

.career_item .content p {
    color: #8b94ab;
    height: 120px;
    -webkit-line-clamp: 5
}

@media (max-width:767px) {
    .career_item .content p {
        font-size: 13px
    }
}

.career_item .content .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 15px
}

.career_item .content .info .ball,
section.my_resume .resume_item .content_left .address,
section.my_resume .resume_item .content_left h5 {
    color: #283891;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

@media (max-width:767px) {
    .career_item .content .info .ball {
        font-size: 16px
    }
}

.career_item .content .info .skills span {
    display: inline-flex;
    align-items: center;
    padding-left: 7px;
    gap: 2px
}

@media (max-width:767px) {
    .career_item .content .info .skills span {
        padding-left: 5px
    }

    .career_item .content .info .skills span svg {
        max-width: 17px
    }
}

.career_item .content .button_group {
    display: flex;
    gap: 7px
}

.career_item .content .button_group a {
    height: 40px;
    line-height: 40px;
    width: 100%
}

@media (max-width:991px) {
    .career_item .content .button_group a {
        padding: 0 5px
    }
}

@media (max-width:767px) {
    .career_item .content .button_group a {
        font-size: 13px
    }
}

@media (max-width:1800px) {
    section.my_resume {
        padding-top: 40px
    }
}

section.my_resume .resume_item {
    border-radius: 6px;
    background-color: #f6f8fd;
    margin-bottom: 20px
}

section.my_resume .avatar_empl,
section.my_resume .resume_item .fone {
    height: 330px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:1800px) {
    section.my_resume .resume_item .fone {
        height: 220px
    }
}

@media (max-width:767px) {
    section.my_resume .resume_item .fone {
        height: 170px
    }
}

section.my_resume .resume_item .content {
    padding: 20px 40px 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px
}

@media (max-width:991px) {
    section.my_resume .resume_item .content {
        padding: 20px;
        gap: 20px
    }
}

@media (max-width:767px) {
    section.my_resume .resume_item .content {
        display: block;
        padding: 12px
    }
}

section.my_resume .resume_item .content_left h5 {
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 600
}

@media (max-width:1800px) {
    section.my_resume .resume_item .content_left h5 {
        font-size: 30px
    }
}

@media (max-width:767px) {
    section.my_resume .resume_item .content_left h5 {
        font-size: 24px;
        font-weight: 600
    }
}

section.my_resume .resume_item .content_left h6 {
    color: #3e4c70;
    font-size: 32px;
    margin-bottom: 25px
}

@media (max-width:1800px) {
    section.my_resume .resume_item .content_left h6 {
        font-size: 20px
    }
}

@media (max-width:767px) {
    section.my_resume .resume_item .content_left h6 {
        font-size: 18px
    }
}

.skilled .raiting_skill .right span,
section.my_resume .resume_item .content_left p {
    color: #8b94ab;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px
}

@media (max-width:1800px) {
    section.my_resume .resume_item .content_left p {
        font-size: 16px;
        line-height: 1.5
    }
}

@media (max-width:767px) {
    section.my_resume .resume_item .content_left p {
        font-size: 14px
    }
}

section.my_resume .resume_item .content_left .address {
    display: flex;
    align-items: center
}

@media (max-width:1800px) {
    section.my_resume .resume_item .content_left .address {
        font-size: 16px;
        line-height: 1.5
    }
}

@media (max-width:767px) {
    section.my_resume .resume_item .content_left .address {
        font-size: 13px;
        margin-bottom: 25px
    }

    section.my_resume .resume_item .content_left .address svg {
        width: 14px
    }
}

section.my_resume .resume_item .content_right {
    flex: 0 0 430px;
    min-width: 430px
}

@media (max-width:1800px) {
    section.my_resume .resume_item .content_right {
        flex: 0 0 330px;
        min-width: 330px
    }
}

@media (max-width:991px) {
    section.my_resume .resume_item .content_right {
        flex: 0 0 260px;
        min-width: 260px
    }
}

.skilled h4,
section.my_resume .resume_item .content_right h5 {
    color: #283891;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px
}

@media (max-width:767px) {
    section.my_resume .resume_item .content_right h5 {
        font-size: 24px;
        font-weight: 600
    }

    section.my_resume .resume_item .content_right .contact_ul li {
        margin-bottom: 0;
        margin-left: -5px
    }

    section.my_resume .resume_item .content_right .contact_ul li a {
        font-weight: 500
    }
}

section.my_resume .avatar_empl {
    width: 257px;
    height: 257px;
    border-radius: 50%;
    margin-left: 40px;
    margin-top: -150px
}

@media (max-width:1800px) {
    section.my_resume .avatar_empl {
        width: 200px;
        height: 200px;
        margin-top: -100px
    }
}

@media (max-width:767px) {
    section.my_resume .avatar_empl {
        width: 100px;
        height: 100px;
        margin-top: -90px;
        margin-left: 12px
    }
}

.backface {
    padding: 35px 40px;
    border-radius: 12px;
    background: #f6f8fd;
    width: 100%
}

@media (max-width:1800px) {
    .backface {
        padding: 25px 30px
    }
}

@media (max-width:767px) {
    .backface {
        padding: 24px 12px
    }
}

.skilled {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

@media (max-width:991px) {
    .skilled {
        display: block
    }
}

@media (max-width:767px) {
    .skilled h4 {
        font-size: 24px;
        margin-bottom: 12px;
        font-weight: 500
    }
}

.skilled .raiting_skill {
    max-width: calc(50% - 20px);
    position: relative;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c)
}

@media (max-width:991px) {
    .skilled .raiting_skill {
        max-width: 100% !important;
        margin-bottom: 20px;
        flex: 0 0 100% !important
    }
}

.skilled .raiting_skill:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .1
}

@media (max-width:767px) {
    .skilled .raiting_skill:after {
        background-size: cover;
        opacity: .2
    }
}

.meter,
.skilled .raiting_skill .progressbar_skill {
    display: flex
}

@media (max-width:767px) {
    .skilled .raiting_skill .progressbar_skill {
        display: block
    }
}

.skilled .raiting_skill .progressbar_skill .left {
    width: 100%
}

.skilled .raiting_skill .progressbar_skill .left .grade {
    width: 100%;
    text-align: center
}

.skilled .raiting_skill .progressbar_skill .left .grade h6 {
    font-size: 120px;
    position: relative;
    background: 0 0;
    margin: 0;
    padding: 0;
    overflow: hidden
}

@media (max-width:767px) {
    .skilled .raiting_skill .progressbar_skill .left .grade h6 {
        font-size: 80px
    }
}

.skilled .raiting_skill .progressbar_skill .left .grade h6:before {
    content: '';
    display: block;
    position: absolute;
    filter: blur(20px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    background-size: 3em 3em, 2em 2em;
    -webkit-animation-name: ani;
    animation-name: ani;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate
}

.skilled .raiting_skill .progressbar_skill .left .grade p {
    color: #283891;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%
}

@media (max-width:1800px) {
    .skilled .raiting_skill .progressbar_skill .left .grade p {
        font-size: 18px
    }
}

.skilled .raiting_skill .right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 70px;
    flex: 0 0 400px
}

@media (max-width:767px) {
    .skilled .raiting_skill .right {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
        gap: 20px
    }
}

.skilled .raiting_skill .right span {
    color: #283891;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

@media (max-width:767px) {
    .skilled .raiting_skill .right span {
        font-size: 18px
    }
}

.skilled .raiting_skill .right svg {
    min-width: 36px
}

@media (max-width:1800px) {
    .skilled .raiting_skill .right svg {
        min-width: 25px;
        width: 25px;
        height: auto
    }
}

@media (max-width:767px) {
    .skilled .raiting_skill .right svg {
        min-width: 22px;
        width: 22px;
        height: auto
    }
}

.skilled .language_skill {
    max-width: calc(50% - 20px)
}

@media (max-width:991px) {
    .skilled .language_skill {
        max-width: 100% !important;
        margin-bottom: 20px;
        flex: 0 0 100% !important
    }
}

.meter {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

@media (max-width:767px) {
    .meter {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px
    }
}

.meter:last-child,
footer .lists ul li:last-child {
    margin-bottom: 0
}

.meter span {
    display: inline-flex;
    align-items: center;
    color: #283891;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 10px
}

@media (max-width:1800px) {
    .meter span {
        margin-right: 5px;
        font-size: 16px
    }
}

.meter span img {
    margin-right: 12px;
    width: 54px;
    height: auto
}

@media (max-width:1800px) {
    .meter span img {
        margin-right: 5px;
        width: 34px
    }
}

@media (max-width:767px) {
    .meter span img {
        width: 20px
    }
}

.meter .meter_rounded {
    display: flex;
    min-width: 272px;
    gap: 16px
}

@media (max-width:1800px) {
    .meter .meter_rounded {
        gap: 8px;
        min-width: 250px
    }
}

@media (max-width:767px) {
    .meter .meter_rounded {
        min-width: 100%
    }
}

.meter .meter_rounded .orbed {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    background: #dbdff1
}

@media (max-width:1800px) {
    .meter .meter_rounded .orbed {
        width: 24px;
        height: 24px;
        flex: 0 0 24px
    }
}

@media (max-width:767px) {
    .meter .meter_rounded .orbed {
        width: 18px;
        height: 18px;
        flex: 0 0 18px
    }
}

.meter .meter_rounded .orbed.full {
    background: #283891
}

.education_skill,
section.my_cafedra .my_pagination {
    margin-top: 30px
}

@media (max-width:767px) {
    .education_skill h3 {
        margin-bottom: 0
    }
}

.education_skill_item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
    border-bottom: 1px solid #283891
}

@media (max-width:767px) {
    .education_skill_item {
        gap: 10px
    }
}

.education_skill_item:last-child {
    border-bottom: 0
}

.education_skill_item .img {
    border-radius: 50%;
    width: 82px;
    height: 82px;
    background-color: #fbae49;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-width: 82px
}

@media (max-width:767px) {
    .education_skill_item .img {
        width: 52px;
        height: 52px;
        min-width: 52px
    }
}

.education_skill_item .text h5,
.education_skill_item .text ul li {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 6px
}

@media (max-width:1800px) {
    .education_skill_item .text h5 {
        font-size: 20px
    }
}

.education_skill_item .text ul {
    display: flex;
    flex-wrap: wrap
}

.education_skill_item .text ul li {
    font-size: 20px;
    font-weight: 400;
    margin-right: 40px
}

@media (max-width:1800px) {
    .education_skill_item .text ul li {
        font-size: 16px
    }
}

@media (max-width:767px) {
    .education_skill_item .text ul li {
        font-size: 14px;
        margin-right: 10px;
        line-height: 1
    }
}

.education_skill_item .text ul li:last-child {
    display: block;
    width: 100%
}

section.gallery,
section.my_caf_inner,
section.my_cafedra {
    padding-bottom: 70px
}

.cafedra_item {
    border-radius: 8px;
    border: 1px solid #bac8dc;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px
}

@media (max-width:991px) {
    .cafedra_item {
        padding: 12px;
        display: block;
        position: relative
    }
}

.cafedra_item .cafedra_img {
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 146px;
    height: 146px;
    flex: 0 0 146px
}

@media (max-width:991px) {
    .cafedra_item .cafedra_img {
        position: absolute;
        left: 12px;
        top: 12px;
        width: 100px;
        height: 100px;
        flex: 0 0 100px
    }
}

@media (max-width:767px) {
    .cafedra_item .cafedra_img {
        border-radius: 6px
    }
}

.cafedra_item .cafedra_text h5,
.cafedra_item .cafedra_text p {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    line-height: 30px;
    overflow: hidden;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

@media (max-width:1800px) {
    .cafedra_item .cafedra_text h5 {
        font-size: 20px
    }
}

@media (max-width:991px) {
    .cafedra_item .cafedra_text h5 {
        padding-left: 112px
    }
}

@media (max-width:767px) {
    .cafedra_item .cafedra_text h5 {
        font-size: 17px
    }
}

.cafedra_item .cafedra_text p {
    color: #8b94ab;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 24px;
    height: 72px;
    -webkit-line-clamp: 3
}

@media (max-width:1800px) {
    .cafedra_item .cafedra_text p {
        font-size: 15px
    }
}

@media (max-width:991px) {
    .cafedra_item .cafedra_text p {
        padding-left: 112px
    }
}

@media (max-width:767px) {
    .cafedra_item .cafedra_text p {
        font-size: 14px;
        display: block;
        line-height: 20px;
        overflow: hidden;
        height: 80px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        margin-bottom: 5px
    }
}

.cafedra_item .cafedra_text .btn-orange,
section.my_caf_inner .card_top .card_content .left {
    width: 100%
}

.cafedra_item .avatar_group,
.teacher_item {
    display: flex;
    align-items: center;
    margin-bottom: 16px
}

.cafedra_item .avatar_group img {
    max-width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.cafedra_item .avatar_group img+img {
    margin-left: -30px
}

@media (max-width:1800px) {
    .cafedra_item .avatar_group img+img {
        margin-left: -15px
    }

    .cafedra_item .avatar_group img {
        max-width: 40px;
        height: 40px;
        flex: 0 0 40px
    }
}

@media (max-width:767px) {
    .cafedra_item .avatar_group img {
        max-width: 30px;
        height: 30px;
        flex: 0 0 30px
    }
}

.cafedra_item .avatar_group span,
section.my_caf_inner .card_top .card_content .left ul li {
    color: #8b94ab;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 10px
}

@media (max-width:1800px) {
    .cafedra_item .avatar_group span {
        font-size: 16px
    }
}

@media (max-width:767px) {
    .cafedra_item .avatar_group span {
        font-size: 14px
    }
}

section.my_caf_inner .card_top {
    border-radius: 12px;
    background: #f6f8fd;
    overflow: hidden
}

section.employee_list img,
section.my_caf_inner .card_top .main_img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .main_img {
        height: 200px
    }
}

section.my_caf_inner .card_top .card_content {
    padding: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 40px
}

@media (max-width:991px) {
    section.my_caf_inner .card_top .card_content {
        display: block
    }
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content {
        padding: 12px;
        margin-bottom: 0
    }
}

section.my_caf_inner .card_top .card_content h2 {
    margin-bottom: 10px;
    font-size: 32px
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content h2 {
        font-size: 24px
    }
}

@media (max-width:991px) {
    section.my_caf_inner .card_top .card_content .left {
        margin-bottom: 24px
    }
}

section.my_caf_inner .card_top .card_content .left ul {
    list-style-type: disc;
    padding-left: 30px
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content .left ul {
        padding-left: 15px
    }
}

section.my_caf_inner .card_top .card_content .left ul li {
    line-height: 32px
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content .left ul li {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 10px;
        padding-left: 0
    }
}

section.my_caf_inner .card_top .card_content .right {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #dde2ed;
    flex: 0 0 450px
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content .right .text {
        padding: 12px
    }
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content .right .text h5 {
        font-size: 18px;
        margin-bottom: 10px
    }
}

section.my_caf_inner .card_top .card_content .right .text p {
    color: #8b94ab;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: normal
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content .right .text p {
        font-size: 14px;
        margin-bottom: 10px
    }
}

section.my_caf_inner .card_top .card_content .right .text a {
    color: #8b94ab;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-top: 24px
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content .right .text a {
        font-size: 14px;
        margin-top: 10px
    }
}

.teacher_item .teacher_img,
section.my_caf_inner .card_top .card_content .right .img_teacher {
    height: 270px;
    flex: 0 0 270px;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:767px) {
    section.my_caf_inner .card_top .card_content .right .img_teacher {
        height: 150px;
        flex: 0 0 50%;
        -o-object-fit: contain;
        object-fit: contain
    }
}

section.my_caf_inner .text_editor {
    border-radius: 12px;
    background: #f6f8fd;
    padding: 24px
}

@media (max-width:767px) {
    section.my_caf_inner .text_editor {
        padding: 12px;
        margin: 24px 0
    }
}

.teacher_item {
    border-radius: 8px;
    border: 1px solid #bac8dc;
    margin-bottom: 24px;
    overflow: hidden
}

@media (max-width:991px) {
    .teacher_item {
        display: block;
        position: relative
    }
}

.teacher_item .teacher_img {
    border-radius: 6px;
    -o-object-position: center;
    object-position: center;
    width: 240px;
    height: 269px;
    flex: 0 0 240px
}

@media (max-width:1250px) {
    .teacher_item .teacher_img {
        position: absolute;
        left: 12px;
        top: 12px;
        width: 100px;
        height: 100px;
        flex: 0 0 100px
    }
}

@media (max-width:767px) {
    .teacher_item .teacher_img {
        border-radius: 6px
    }
}

.teacher_item .teacher_text {
    padding: 24px
}

@media (max-width:991px) {
    .teacher_item .teacher_text {
        padding: 12px
    }
}

.teacher_item .teacher_text h5 {
    color: #283891;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 30px;
    height: 60px;
    -webkit-line-clamp: 2
}

@media (max-width:1800px) {
    .teacher_item .teacher_text h5 {
        font-size: 20px
    }
}

@media (max-width:1250px) {
    .teacher_item .teacher_text h5 {
        padding-left: 112px
    }
}

@media (max-width:767px) {
    .teacher_item .teacher_text h5 {
        font-size: 17px;
        margin-bottom: 6px
    }
}

.item_faculty_body .title_faculty,
.item_faculty_body p,
.teacher_item .teacher_text h5,
.teacher_item .teacher_text p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.teacher_item .teacher_text p {
    font-style: normal;
    color: #8b94ab;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 24px;
    height: 72px;
    -webkit-line-clamp: 3
}

@media (max-width:1800px) {
    .teacher_item .teacher_text p {
        font-size: 15px
    }
}

@media (max-width:1250px) {
    .teacher_item .teacher_text p {
        padding-left: 112px
    }
}

@media (max-width:767px) {
    .teacher_item .teacher_text p {
        font-size: 14px;
        display: block;
        line-height: 20px;
        overflow: hidden;
        height: 80px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        margin-bottom: 10px
    }
}

@media (max-width:1250px) {
    .teacher_item .teacher_text .btn-orange {
        margin-left: 112px
    }
}

@media (max-width:767px) {
    .teacher_item .teacher_text .btn-orange {
        width: 100%;
        margin-left: 0
    }
}

.other_teachers {
    margin-top: 30px;
    padding: 24px 40px;
    border-radius: 12px;
    background: #f6f8fd
}

@media (max-width:991px) {
    .other_teachers {
        padding: 12px;
        border-radius: 6px
    }
}

@media (max-width:1250px) {
    section.gallery {
        padding-bottom: 56px
    }
}

@media (max-width:767px) {
    section.gallery {
        padding-bottom: 20px
    }

    section.gallery .row {
        margin-left: -5px;
        margin-right: -5px
    }

    section.gallery .row>div {
        padding-left: 5px;
        padding-right: 5px
    }
}

section.about-ref.personal .right h2,
section.gallery .gallery_main {
    margin-bottom: 30px
}

section.gallery .gallery_main a {
    display: block;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative
}

section.gallery .gallery_main a:after {
    content: attr(data-img-count);
    position: absolute;
    color: #fff;
    font-size: 14px;
    z-index: 55;
    right: 5px;
    bottom: 5px;
    border-radius: 5px;
    width: 45px;
    text-align: center;
    padding-left: 20px;
    background: rgba(1, 1, 1, .7) url(../images/ming.svg) no-repeat center left 3px;
    background-size: 18px auto
}

@media (max-width:767px) {
    section.gallery .gallery_main a {
        height: 160px;
        margin-bottom: 10px;
        border-radius: 5px
    }
}

section.employee_list img {
    max-width: 100%;
    height: 280px;
    border-radius: 10px;
    margin-bottom: 15px
}

section.faculty {
    padding-bottom: 112px
}

@media (max-width:1250px) {
    section.faculty {
        padding-bottom: 72px
    }
}

@media (max-width:767px) {
    section.faculty {
        padding-bottom: 28px
    }
}

.top_title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between
}

@media (max-width:767px) {
    .top_title {
        flex-direction: column-reverse;
        margin-bottom: 20px
    }
}

.top_title h2 {
    margin-bottom: 0
}

.item_faculty {
    box-shadow: 0 4.4px 12px -1px rgba(19, 16, 34, .06), 0 2px 6.4px -1px rgba(19, 16, 34, .03);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px
}

.item_faculty_img {
    height: 200px;
    overflow: hidden
}

.item_faculty_body {
    padding: 24px
}

.item_faculty_body .title_faculty,
.item_faculty_body p {
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    height: 56px;
    color: #33354d;
    margin-bottom: 8px;
    -webkit-line-clamp: 2
}

.item_faculty_body p {
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #565973;
    height: 23px;
    -webkit-line-clamp: 1
}

.item_faculty_body .price {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    color: #fc502b;
    margin-bottom: 24px;
    display: block
}

.search_form {
    position: relative
}

@media (max-width:767px) {
    .search_form {
        width: 100%;
        margin-bottom: 30px;
        margin-top: 30px
    }
}

.search_form input {
    background: #fff;
    border: 1px solid #8b94ab;
    border-radius: 6px;
    padding: 11px 30px 11px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #333;
    min-width: 530px
}

@media (max-width:1800px) {
    .search_form input {
        min-width: 436px
    }
}

@media (max-width:1250px) {
    .search_form input {
        min-width: 482px
    }
}

@media (max-width:991px) {
    .search_form input {
        min-width: 350px
    }
}

@media (max-width:767px) {
    .search_form input {
        width: 100%;
        min-width: 100%
    }
}

.search_form button {
    border: 0;
    outline: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    background: 0 0 !important;
    position: absolute;
    right: 10px;
    top: 50%;
    padding: 0 10px;
    transform: translateY(-50%)
}

section.contacting_us_in_about {
    padding: 25px 0
}

section.contacting_us_in_about h1 {
    margin-bottom: 25px
}

section.contacting_us_in_about a {
    display: block;
    width: 100%;
    border: 2px solid #fc502b;
    border-radius: 8px;
    padding: 5px;
    text-align: center;
    background: #fc502b;
    color: #fff
}

section.contacting_us_in_about a:hover {
    background: #c41b1b;
    border-color: #c41b1b
}

section.contacting_us_in_about a svg {
    max-width: 20px;
    margin-right: 8px
}

section.vacancy {
    padding-bottom: 112px
}

section.vacancy .item_vacancy {
    margin-bottom: 40px
}

.item_vacancy {
    background: #fff;
    box-shadow: 0 4.4px 12px -1px rgba(19, 16, 34, .06), 0 2px 6.4px -1px rgba(19, 16, 34, .03);
    border-radius: 8px;
    overflow: hidden
}

.item_vacancy_img {
    height: 240px;
    position: relative
}

.item_faculty_img img,
.item_vacancy_img img,
section.gallery .gallery_main a img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.item_vacancy_body {
    padding: 24px
}

.item_vacancy_body .infos {
    min-height: 85px;
    margin-bottom: 20px
}

.item_vacancy_body .title_vacancy,
.item_vacancy_body p {
    font-weight: 800;
    font-size: 20px;
    color: #33354d;
    margin-bottom: 8px;
    line-height: 28px;
    height: 28px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.item_vacancy_body p {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 23px;
    height: 23px
}

.item_vacancy_body .meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.item_vacancy_body .meta span,
.type_vacancy {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%
}

.item_vacancy_body .meta span {
    display: inline-flex;
    align-items: center;
    padding-right: 24px;
    color: #9397ad
}

.item_vacancy_body .meta span img {
    margin-right: 4px
}

.type_vacancy {
    position: absolute;
    left: 16px;
    top: 16px;
    border-radius: 4px;
    display: inline-block;
    padding: 0 8px;
    color: #fff
}

.type_vacancy.education {
    background: #22c55e
}

.type_vacancy.management {
    background: #4c82f7
}

.type_vacancy.office {
    background: #ffba08
}

section.contact_us {
    padding-bottom: 80px;
    position: relative;
    padding-top: 40px;
    background: url(../images/contact_bg.svg) no-repeat center bottom;
    background-size: cover
}

section.contact_us .breadcrumbs {
    margin-top: 0;
    z-index: 3;
    position: relative
}

section.contact_us .main {
    text-align: center;
    max-width: 650px;
    margin: 0 auto
}

section.contact_us h2 {
    text-align: center
}

section.contact_us p {
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: #565973;
    margin-bottom: 32px
}

section.contact_us .main,
section.contact_us .socials {
    position: relative;
    z-index: 3
}

section.contact_us .socials a {
    display: inline-block;
    margin: 0 8px
}

section.contact_us .socials a:hover {
    filter: grayscale(.8)
}

.block_call {
    padding-top: 90px;
    padding-bottom: 112px;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width:767px) {
    .block_call {
        display: block;
        padding-top: 56px;
        padding-bottom: 56px
    }
}

.block_call .item {
    flex: 0 0 415px;
    text-align: center;
    padding: 0 64px
}

@media (max-width:767px) {
    .block_call .item {
        padding: 0 30px
    }
}

.block_call .item:first-child {
    position: relative
}

@media (max-width:767px) {
    .block_call .item:first-child {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #e2e5f1
    }
}

.block_call .item:first-child:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 152px;
    border-right: 1px solid #e2e5f1
}

@media (max-width:767px) {
    .block_call .item:first-child:after {
        display: none
    }
}

.block_call .item img {
    background: #f3f6ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto 16px
}

.block_call .item p {
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #565973;
    margin-bottom: 32px
}

.block_call .item .btn-orange {
    height: 52px;
    font-size: 16px;
    padding: 0 32px
}

.dropdown.custom {
    padding-right: 0;
    background: url(../images/select_arrow.svg) no-repeat center right;
    background-size: 20px auto
}

.dropdown.custom .dropdown-toggle::after {
    display: none !important
}

.dropdown.custom .dropdown-menu {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4.4px 20px -1px rgba(19, 16, 34, .05), 0 4px 9px -1px rgba(19, 16, 34, .03);
    padding: 8px 0;
    border: 0;
    top: 10px !important;
    left: -20px !important
}

.dropdown.custom .dropdown-menu li a {
    padding: 3px 16px;
    display: block;
    color: #283891
}

.accardion_custom {
    margin-bottom: 16px
}

.accardion_custom .accardion-header {
    padding: 20px 0;
    border-top: 1px solid #e0e0e0
}

.accardion_custom .accardion-header h5 {
    position: relative;
    padding-right: 50px;
    color: #283891;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase
}

@media (max-width:767px) {
    .accardion_custom .accardion-header h5 {
        line-height: 21px;
        font-size: 14px
    }
}

.accardion_custom .accardion-header h5:not(.collapsed) span {
    transform: rotate(0deg)
}

.accardion_custom .accardion-header h5:not(.collapsed) span svg path {
    fill: #fff
}

.accardion_custom .accardion-header h5:not(.collapsed) span svg path:first-child {
    fill: #fc502b
}

.accardion_custom .accardion-header h5 span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s;
    position: absolute;
    right: 0;
    top: -5px;
    transform: rotate(180deg)
}

.accardion_custom .accardion-header h5 span svg path {
    transition: all .35s
}

.accardion_custom .accardion-body {
    padding-bottom: 24px
}

.accardion_custom .accardion-body *,
.accardion_custom .accardion-body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 0;
    color: #333
}

@media (max-width:767px) {

    .accardion_custom .accardion-body *,
    .accardion_custom .accardion-body p {
        line-height: 20px;
        font-size: 14px
    }

    .contacting_us_in_about li.col-sm-4.mb-5 {
        margin-bottom: 12px !important
    }
}

.no-data {
    font-size: 16px;
    color: #a0a8bb
}

.tabHomeSpecialts {
    margin-bottom: 10px;
    width: 100%
}

.tabHomeSpecialts li {
    flex: 0 0 30%;
    text-align: center
}

.tabHomeSpecialts li a {
    font-weight: 600;
    font-size: 16px
}

section.leadership {
    padding: 50px 0
}

.item_leadership {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
    margin-bottom: 20px
}

@media (max-width:767px) {
    .item_leadership {
        position: relative;
        padding-bottom: 10px;
        border-bottom: 1px solid #ccc
    }
}

.item_leadership img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

@media (max-width:767px) {
    .item_leadership img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100px;
        height: 100px;
        border-radius: 12px
    }

    .item_leadership .subtop {
        padding-left: 120px;
        min-height: 110px
    }
}

.item_leadership h4 {
    font-size: 18px
}

.item_leadership h5 {
    font-size: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.item_leadership p {
    font-size: 14px;
    margin-bottom: 5px
}

.item_leadership b {
    font-weight: 500;
    padding-right: 5px
}

.item_leadership a {
    color: #283891;
    font-weight: 600
}

section.purpose {
    padding: 70px 0
}

@media (max-width:767px) {
    section.purpose {
        padding: 40px 0
    }
}

section.purpose h1 {
    font-size: 28px;
    margin-bottom: 20px
}

section.purpose p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.3;
    text-indent: 18px;
    color: #110e0e
}

@media (max-width:767px) {
    section.purpose p {
        font-size: 14px;
        margin-bottom: 10px
    }
}

section.purpose h2 {
    font-size: 24px;
    margin-bottom: 10px
}

section.purpose ul {
    list-style-type: disc;
    list-style-position: inside
}

section.purpose ul li {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px
}

section.our_history {
    padding: 70px 0
}

@media (max-width:767px) {
    section.our_history {
        padding: 40px 0
    }
}

section.our_history iframe {
    width: 50%;
    height: 350px;
    float: right;
    margin-left: 30px
}

@media (max-width:767px) {
    section.our_history iframe {
        float: none;
        width: 100%;
        height: 250px;
        margin: 10px 0
    }
}

section.our_history p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.3;
    text-indent: 18px;
    color: #110e0e
}

@media (max-width:767px) {
    section.our_history p {
        font-size: 14px;
        margin-bottom: 10px
    }
}

.full-height {
    min-height: 100vh
}

.layer-back {
    position: relative;
    background-size: cover;
    background-position: center
}

.layer-back * {
    position: relative;
    z-index: 3;
    color: #fff
}

.layer-back:after,
.layer-back:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover
}

.layer-back:before {
    background: url(../images/new_layer.svg);
    z-index: 1;
    mix-blend-mode: lighten
}

.layer-back:after {
    z-index: 2;
    background: #1d296c;
    mix-blend-mode: multiply
}

@media (max-width:1250px) {
    header .logo_first {
        display: none
    }
}

header .logo_second {
    display: none
}

@media (max-width:1250px) {
    header .logo_second {
        display: block
    }

    header {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 9999;
        background-color: rgba(0, 0, 0, .3);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px)
    }
}

header hr {
    margin: 0;
    padding: 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #e0e0e0
}

@media (max-width:1250px) {
    header hr {
        display: none !important
    }
}

header .open_sidebar {
    display: none
}

@media (max-width:1250px) {
    header .open_sidebar {
        display: block
    }
}

header .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0
}

@media (max-width:1800px) {
    header .header-top {
        padding: 15px 0
    }
}

header .header-top .logo {
    display: inline-block
}

footer .footer-top a.logo img,
header .header-top .logo img {
    width: 100%;
    max-width: 160px
}

header .header-top .info,
header .header-top .info .item {
    display: flex;
    align-items: flex-start
}

@media (max-width:1250px) {
    header .header-top .info {
        display: none
    }
}

header .header-top .info .item {
    padding: 0 17px;
    position: relative;
    gap: 12px;
    max-width: 230px
}

header .header-top .info .item:last-child:after,
section.single-top ul li:last-child:after {
    display: none
}

header .header-top .info .item:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 50px;
    background-color: #e0e0e0
}

header .header-top .info .item div {
    line-height: 1
}

header .header-top .info .item p,
header .header-top .info .item span {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    display: block;
    margin-bottom: 7px;
    color: #283891
}

header .header-top .info .item p {
    font-weight: 400;
    line-height: 17px;
    color: #333;
    display: inline-block;
    margin-bottom: 0
}

header .header-top .info .item p a {
    color: inherit;
    font-size: inherit
}

.moveon,
.moveout {
    -webkit-animation: outime .6s;
    animation: outime .6s;
    transition: all 300ms ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.moveon {
    -webkit-animation: intime .6s;
    animation: intime .6s
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    box-shadow: 0 5px 15px 0 #00000033;
    pointer-events: none
}

.header-fixed.inMain {
    opacity: 1;
    pointer-events: auto !important
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 15px
}

@media (max-width:1800px) {
    .header-bottom {
        padding: 15px 0
    }
}

@media (max-width:1250px) {
    .header-bottom {
        display: none
    }
}

.header-bottom nav>ul,
.header-bottom-right {
    display: flex;
    align-items: center;
    gap: 35px
}

@media (max-width:1800px) {
    .header-bottom nav>ul {
        gap: 20px
    }
}

.header-bottom nav>ul li a {
    color: #333;
    display: inline-block;
    transition: .3s
}

.custom_dropdown button.dropdown-toggle:hover,
.header-bottom nav>ul li a:hover,
.student-resume-journals .journals-content .article-info .info-boxes .box .text p.info {
    color: #283891
}

.header-bottom-right {
    gap: 25px
}

.lang.custom_dropdown .dropdown-toggle:after {
    margin-left: 2px
}

.lang.custom_dropdown .dropdown-menu {
    min-width: 100px;
    max-width: 100px
}

.lang.custom_dropdown .dropdown-menu li a {
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.lang.custom_dropdown .dropdown-menu li a img {
    width: 17px
}

.btn-torg,
.custom_dropdown button.dropdown-toggle,
.header-bottom nav>ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0
}

.btn-torg {
    border-radius: 8px;
    padding: 9px 15px;
    text-align: left;
    border: 1px solid #5e628280
}

.btn-torg:hover {
    color: #fc502b;
    border-color: #fc502b
}

.custom_dropdown button.dropdown-toggle {
    background: 0 0;
    border: 0;
    box-shadow: none;
    outline: 0;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s
}

.custom_dropdown button.dropdown-toggle:after {
    border: 0;
    width: 15px;
    height: 10px;
    vertical-align: middle;
    margin-left: 10px;
    background: url(../images/arrow.svg) no-repeat center
}

@media (max-width:1800px) {
    .custom_dropdown button.dropdown-toggle:after {
        width: 10px;
        margin-left: unset
    }
}

.custom_dropdown .dropdown-menu {
    box-shadow: 4px 9px 11px 0 #00000040;
    border: 1px solid #8b94ab;
    border-radius: 10px;
    background-color: #fff;
    padding: 12px;
    min-width: 175px;
    max-width: 200px;
    top: 10px !important
}

.custom_dropdown .dropdown-menu li {
    padding: 9px;
    border-bottom: 1px solid #8b94ab;
    line-height: 1
}

.custom_dropdown .dropdown-menu li:first-child {
    padding-top: 0
}

.custom_dropdown .dropdown-menu li:last-child {
    padding-bottom: 0;
    border-bottom: 0
}

.custom_dropdown .dropdown-menu li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #333;
    padding: 0;
    background: 0 0 !important
}

.custom_dropdown .dropdown-menu li a:hover {
    color: #283891 !important
}

.subtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0;
    text-align: left;
    color: #fe8643;
    text-transform: uppercase;
    margin-bottom: 20px
}

@media (max-width:1800px) {
    .subtitle {
        margin-bottom: 0
    }
}

@media (max-width:767px) {
    .subtitle {
        margin-bottom: 25px
    }
}

.btn-gold {
    background: linear-gradient(274.88deg, #fc502b 0%, #ff9431 107.95%);
    box-shadow: 0 20px 35px 0 #f1a50126;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 15px 40px
}

.btn-details:hover,
.btn-gold:hover,
.btn-primary:hover {
    color: #fff;
    transform: scale(1.05)
}

@media (max-width:1800px) {
    .btn-gold {
        padding: 5px 45px;
        font-size: 16px;
        line-height: 30px
    }
}

@media (max-width:767px) {
    .btn-gold {
        font-size: 14px;
        padding: 10px 45px
    }
}

.btn-primary {
    background: linear-gradient(93.56deg, #283891 .47%, #001482 97.34%);
    box-shadow: 0 20px 35px 0 #f1a50126;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 15px 40px;
    margin-bottom: 10px
}

@media (max-width:1800px) {
    .btn-primary {
        padding: 5px 45px;
        font-size: 16px;
        line-height: 30px
    }
}

@media (max-width:767px) {
    .btn-primary {
        font-size: 14px;
        padding: 10px 45px
    }
}

.btn-details {
    background: linear-gradient(93.56deg, #283891 .47%, #001482 97.34%);
    box-shadow: 0 15px 30px 0 #071a8433;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 15px 65px;
    transition: all .3s
}

@media (max-width:1800px) {
    .btn-details {
        padding: 5px 45px;
        font-size: 16px;
        line-height: 30px
    }
}

@media (max-width:767px) {
    .btn-details {
        line-height: 40px;
        font-size: 14px
    }
}

.btn-in {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    color: #fc502b
}

@media (max-width:1800px) {
    .btn-in {
        font-size: 15px;
        font-weight: 600;
        gap: 5px
    }
}

.btn-in-new:hover svg,
.btn-in:hover svg {
    transform: translateX(5px)
}

.btn-in svg {
    transition: all .3s
}

@media (max-width:1800px) {
    .btn-in svg {
        max-width: 13px;
        margin-top: -2px
    }
}

.btn-in-new {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    border-radius: 30px;
    padding: 13px 24px;
    background: #283891;
    gap: 12px
}

@media (max-width:1800px) {
    .btn-in-new {
        font-weight: 600;
        font-size: 16px;
        padding: 7px 20px
    }
}

.btn-in-new:hover {
    color: #fff !important
}

.btn-in-new svg,
.swiper-buttons button svg circle,
.swiper-buttons button svg path {
    transition: all .3s
}

.roundable {
    position: relative;
    overflow: hidden
}

.roundable:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/roundable.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1
}

.play-video-btn {
    padding: 32px 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    font-size: 22px;
    font-weight: 550;
    line-height: 33px;
    white-space: nowrap
}

@media (max-width:1800px) {
    .play-video-btn {
        padding: 10px 22px;
        font-size: 18px
    }

    .play-video-btn img {
        max-width: 40px
    }
}

.main-swiper .swiper-pagination {
    top: 0;
    bottom: 0;
    right: 30px;
    left: auto;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px
}

@media (max-width:767px) {
    .main-swiper .swiper-pagination {
        top: auto;
        left: 50%;
        bottom: 30px;
        transform: translateX(-50%);
        flex-direction: row;
        width: auto;
        gap: 5px
    }
}

.main-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: .5;
    background-color: #fff;
    transition: all .2s
}

@media (max-width:767px) {
    .main-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 19px;
        height: 19px
    }
}

.main-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 19px;
    height: 19px;
    opacity: 1
}

.main-section {
    display: flex;
    padding: 0
}

@media (max-width:1250px) {
    .main-section {
        display: block
    }
}

.main-section .left {
    flex: 0 0 50%;
    padding: 70px 80px 70px 135px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column
}

@media (max-width:1800px) {
    .main-section .left {
        padding: 40px 50px
    }
}

@media (max-width:1250px) {
    .main-section .left {
        min-height: 100vh;
        padding-right: 380px
    }
}

@media (max-width:991px) {
    .main-section .left {
        padding-right: 90px
    }
}

@media (max-width:767px) {
    .main-section .left {
        padding: 150px 30px 85px;
        text-align: center
    }
}

.main-section .left h1 {
    text-transform: uppercase
}

@media (max-width:767px) {
    .main-section .left h1 {
        margin-bottom: 40px;
        font-size: 32px
    }
}

.main-section .left h1 span {
    display: inline-block;
    position: relative
}

.main-section .left h1 span:after {
    content: '';
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    height: 15px;
    background: url(../images/liner.svg) no-repeat center bottom;
    background-size: contain
}

@media (max-width:767px) {
    .main-section .left h1 span:after {
        top: 60%
    }

    .main-section .left .subtitle {
        text-align: center;
        margin-bottom: 40px
    }
}

.main-section .left h5,
footer h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0
}

.main-section .left h5 {
    text-align: left;
    color: #fff;
    margin-bottom: 55px
}

@media (max-width:767px) {
    .main-section .left h5 {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0;
        text-align: center;
        margin-bottom: 60px
    }

    .main-section .left .btn-gold {
        margin-left: auto;
        margin-right: auto
    }
}

.main-section .right {
    flex: 0 0 50%;
    position: relative
}

.main-section .right .play-video-btn {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2
}

@media (max-width:1250px) {
    .main-section .right .play-video-btn {
        left: 50px;
        bottom: 50px
    }
}

@media (max-width:767px) {
    .main-section .right .play-video-btn {
        display: none
    }
}

@media (max-width:1250px) {
    .main-section .right .play-video-btn img {
        display: block
    }
}

.main-section .right img,
section.about-univercity .images img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.main-section .right img {
    width: 100%;
    height: 100%
}

@media (max-width:1250px) {
    .main-section .right img {
        display: none
    }
}

footer {
    background: linear-gradient(93.56deg, #283891 .47%, #001482 97.34%);
    padding-top: 123px
}

@media (max-width:767px) {
    footer {
        padding-bottom: 25px
    }
}

@media (max-width:991px) {
    footer .lists {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    footer .lists {
        margin-bottom: 0;
        border-top: 1px solid #6b7bb4;
        padding: 10px 0
    }
}

footer .lists h5 {
    pointer-events: none
}

@media (max-width:767px) {
    footer .lists h5 {
        pointer-events: auto;
        position: relative;
        margin-bottom: 0 !important
    }

    footer .lists h5:after {
        content: '';
        position: absolute;
        right: 10px;
        top: 6px;
        width: 10px;
        height: 10px;
        background: url(../images/ep_arrow-down.svg) no-repeat center;
        transition: all .3s linear
    }
}

footer .lists h5.active:after {
    transform: rotate(-90deg)
}

@media (max-width:767px) {
    footer .lists ul {
        display: none;
        padding-top: 15px;
        padding-bottom: 10px
    }

    footer .lists ul li {
        margin-bottom: 10px
    }
}

footer.roundable:after {
    z-index: 3
}

@media (max-width:767px) {
    footer.roundable:after {
        height: 700px
    }
}

footer.roundable .container {
    position: relative;
    z-index: 4
}

@media (max-width:1800px) {
    footer {
        padding-top: 40px
    }
}

@media (max-width:1250px) {
    footer .footer-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px
    }
}

@media (max-width:767px) {
    footer .footer-top {
        gap: 34px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px
    }
}

footer .footer-top a.logo {
    display: inline-block;
    margin-bottom: 140px
}

@media (max-width:1800px) {
    footer .footer-top a.logo {
        margin-bottom: 110px
    }
}

@media (max-width:1250px) {
    footer .footer-top a.logo {
        margin-bottom: 0
    }
}

footer .footer-top .social_links {
    display: flex;
    align-items: center;
    gap: 16px
}

footer .footer-top .social_links a:hover {
    transform: translateY(-3px)
}

footer h5 {
    margin-bottom: 28px
}

@media (max-width:1800px) {
    footer h5 {
        font-size: 16px;
        margin-bottom: 14px
    }
}

footer ul.connections li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px
}

footer ul.connections li svg {
    flex: 0 0 24px
}

footer ul li {
    margin-bottom: 14px;
    line-height: 1
}

@media (max-width:1800px) {
    footer ul li {
        margin-bottom: 6px
    }
}

footer .privacy p,
footer ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left
}

footer ul li a {
    color: #bac8dc
}

footer .privacy {
    padding: 20px 0 25px;
    border-top: 1px solid #6b7bb4;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

@media (max-width:1800px) {
    footer .privacy {
        margin-top: 30px;
        padding-bottom: 15px;
        padding-top: 15px
    }
}

@media (max-width:767px) {
    footer .privacy {
        margin-top: 0;
        display: block;
        text-align: center
    }
}

footer .privacy p {
    margin-bottom: 0
}

@media (max-width:767px) {
    footer .privacy p {
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
        letter-spacing: 0;
        text-align: center;
        color: #8b94ab;
        padding-right: 0
    }
}

.main-section .left h1 span,
footer .privacy p a {
    font-size: inherit;
    color: inherit
}

footer .privacy p a:hover,
section.directions-univercity .right .subtitle {
    color: #fc502b
}

.resume-footer .resume-footer-bg .footer-privacy .public_offer a,
footer .privacy .public_offer a {
    font-size: 14px;
    font-weight: 300;
    color: #bac8dc;
    letter-spacing: .5px;
    text-decoration: underline;
    text-underline-position: under
}

@media (max-width:767px) {
    footer .privacy .public_offer a {
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
        letter-spacing: 0;
        text-align: center;
        color: #8b94ab
    }
}

section.about-univercity {
    padding: 200px 0
}

@media (max-width:1800px) {
    section.about-univercity {
        padding: 100px 0 80px
    }
}

@media (max-width:991px) {
    section.about-univercity {
        padding: 70px 0
    }
}

section.about-univercity.roundable:after {
    top: auto;
    left: auto;
    height: 700px;
    width: 100%;
    transform: rotate(-45deg) translateY(60%) translateX(30%);
    transform-origin: center bottom;
    opacity: 1
}

@media (max-width:1250px) {
    section.about-univercity.roundable:after {
        transform: rotate(45deg) translateY(10%) translateX(-30%);
        height: 500px
    }
}

footer .privacy,
section.about-univercity .row {
    align-items: center
}

section.about-univercity .left {
    padding-right: 0
}

@media (max-width:991px) {
    section.about-univercity .left {
        padding: 0 30px;
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    section.about-univercity .left {
        padding: 0 15px;
        margin-bottom: 30px
    }
}

section.about-univercity .right {
    padding-left: 80px
}

@media (max-width:991px) {
    section.about-univercity .right {
        padding: 0 30px
    }
}

@media (max-width:767px) {
    section.about-univercity .right {
        padding: 0 15px;
        text-align: center
    }
}

section.about-univercity p {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6
}

@media (max-width:1800px) {
    section.about-univercity p {
        font-size: 16px
    }
}

@media (max-width:767px) {
    section.about-univercity p {
        text-align: left
    }
}

section.about-univercity .countable {
    margin-top: 40px
}

@media (max-width:767px) {
    section.about-univercity .countable {
        margin-bottom: 14px
    }

    section.about-univercity .btn-details {
        padding: 5px 75px
    }
}

section.about-univercity .images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between
}

@media (max-width:767px) {
    section.about-univercity .images {
        gap: 20px
    }
}

section.about-univercity .images img {
    flex: 0 0 calc(50% - 30px);
    height: 355px;
    border-color: #fff;
    border-style: solid;
    border-width: 0
}

@media (max-width:1800px) {
    section.about-univercity .images img {
        height: 270px
    }
}

@media (max-width:767px) {
    section.about-univercity .images img {
        height: 190px
    }
}

section.about-univercity .images img:nth-child(1) {
    border-top-width: 50px;
    flex: 0 0 calc(40%);
    max-width: 40%
}

@media (max-width:1800px) {
    section.about-univercity .images img:nth-child(1) {
        border-top-width: 70px
    }
}

@media (max-width:767px) {
    section.about-univercity .images img:nth-child(1) {
        border-top-width: 30px
    }
}

section.about-univercity .images img:nth-child(2) {
    border-top-width: 0;
    flex: 0 0 calc(60% - 30px);
    max-width: calc(60% - 30px)
}

@media (max-width:1800px) {
    section.about-univercity .images img:nth-child(2) {
        border-top-width: 40px !important
    }
}

@media (max-width:767px) {
    section.about-univercity .images img:nth-child(2) {
        border-top-width: 0 !important;
        flex: 0 0 calc(60% - 20px);
        max-width: calc(60% - 20px)
    }
}

section.about-univercity .images img:nth-child(3) {
    flex: 0 0 50%;
    max-width: calc(50%)
}

section.about-univercity .images img:nth-child(4) {
    border-bottom-width: 30px;
    flex: 0 0 40%;
    max-width: 46%
}

@media (max-width:1800px) {
    section.about-univercity .images img:nth-child(4) {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px)
    }
}

@media (max-width:767px) {
    section.about-univercity .images img:nth-child(4) {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        border-bottom-width: 20px
    }
}

.countable {
    display: flex;
    gap: 90px
}

@media (max-width:767px) {
    .countable {
        justify-content: space-around;
        gap: 0
    }
}

.countable .item {
    margin-bottom: 60px
}

@media (max-width:1800px) {
    .countable .item {
        margin-bottom: 10px
    }
}

.countable .item h4 {
    font-size: 56px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0;
    color: #283891;
    margin-bottom: 0;
    display: inline-flex
}

@media (max-width:1800px) {
    .countable .item h4 {
        font-size: 46px
    }
}

@media (max-width:767px) {
    .countable .item h4 {
        font-size: 38px;
        line-height: 1
    }
}

.countable .item h4 b {
    font-size: 76px;
    font-weight: 700;
    line-height: 51px;
    letter-spacing: 0;
    padding-right: 10px;
    padding-top: 10px
}

@media (max-width:1800px) {
    .countable .item h4 b {
        font-size: 56px;
        padding-top: 5px
    }
}

@media (max-width:767px) {
    .countable .item h4 b {
        font-size: 38px;
        line-height: 1;
        padding-right: 0
    }
}

.countable .item p {
    color: #8b94ab
}

@media (max-width:767px) {
    .countable .item p {
        line-height: 1;
        font-size: 14px;
        color: #333
    }
}

section.directions-univercity {
    display: flex;
    padding: 0
}

@media (max-width:1250px) {
    section.directions-univercity {
        display: block
    }
}

section.directions-univercity .left {
    flex: 0 0 50%;
    min-height: 100vh
}

@media (max-width:1250px) {
    section.directions-univercity .left {
        min-height: inherit
    }
}

section.directions-univercity .left img,
section.our_images_say .item a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

@media (max-width:1250px) {
    section.directions-univercity .left img {
        height: 650px;
        -o-object-position: bottom;
        object-position: bottom
    }
}

@media (max-width:991px) {
    section.directions-univercity .left img {
        height: auto
    }
}

section.directions-univercity .right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(17.32deg, #283891 13.87%, #001482 100.45%);
    padding: 90px 210px 90px 65px
}

@media (max-width:1800px) {
    section.directions-univercity .right {
        padding: 90px 50px 50px
    }
}

@media (max-width:767px) {
    section.directions-univercity .right {
        padding: 40px 15px
    }
}

section.directions-univercity .right * {
    color: #fff
}

section.directions-univercity .right h2 {
    margin-bottom: 45px
}

@media (max-width:767px) {
    section.directions-univercity .right h2 {
        margin-bottom: 30px
    }
}

section.directions-univercity .right ul li {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 30px
}

@media (max-width:767px) {
    section.directions-univercity .right ul li {
        gap: 12px;
        margin-bottom: 20px
    }
}

@media (max-width:1800px) {
    section.directions-univercity .right ul li {
        align-items: center
    }
}

@media (max-width:767px) {
    section.directions-univercity .right ul li {
        align-items: flex-start
    }
}

section.directions-univercity .right ul li img {
    width: 70px;
    flex: 0 0 70px;
    height: 66px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:767px) {
    section.directions-univercity .right ul li img {
        width: 52px;
        flex: 0 0 52px;
        height: 49px
    }
}

section.directions-univercity .right ul li h5 {
    margin-bottom: 4px;
    text-transform: uppercase
}

@media (max-width:1800px) {
    section.directions-univercity .right ul li h5 {
        margin-bottom: 10px
    }
}

@media (max-width:767px) {
    section.directions-univercity .right ul li h5 {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 4px;
        font-weight: 700
    }
}

section.directions-univercity .right ul li p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    margin-bottom: 0
}

@media (max-width:767px) {
    section.directions-univercity .right ul li p {
        color: #f2f2f2
    }
}

.swiper-buttons {
    display: flex;
    align-items: center
}

.swiper-buttons button {
    background: 0 0;
    border: 0
}

@media (max-width:767px) {
    .swiper-buttons button svg {
        max-width: 34px;
        height: auto
    }
}

section.specialty-univercity {
    padding: 120px 0
}

section.about-team-main .title_flexible,
section.specialty-univercity .title_flexible {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px
}

@media (max-width:991px) {

    section.about-team-main .title_flexible,
    section.specialty-univercity .title_flexible {
        gap: 20px
    }
}

@media (max-width:767px) {

    section.about-team-main .title_flexible,
    section.specialty-univercity .title_flexible {
        margin-bottom: 20px
    }
}

section.about-team-main .title_flexible .swiper-buttons,
section.about-team-main .title_flexible h2,
section.specialty-univercity .title_flexible .swiper-buttons,
section.specialty-univercity .title_flexible h2 {
    margin-bottom: 0
}

@media (max-width:767px) {

    section.about-team-main .title_flexible h2,
    section.specialty-univercity .title_flexible h2 {
        font-size: 28px
    }
}

@media (max-width:767px) {

    section.about-team-main .title_flexible .swiper-buttons,
    section.specialty-univercity .title_flexible .swiper-buttons {
        display: flex;
        position: static
    }
}

@media (max-width:991px) {

    section.about-team-main .swiper-teach,
    section.specialty-univercity .swiper-teach {
        margin-right: -30px
    }
}

@media (max-width:767px) {

    section.about-team-main .swiper-teach,
    section.specialty-univercity .swiper-teach {
        margin-right: -15px
    }
}

@media (max-width:1250px) {

    section.about-team-main,
    section.specialty-univercity {
        padding: 80px 0
    }
}

@media (max-width:991px) {

    section.about-team-main,
    section.specialty-univercity {
        padding: 50px 15px;
        position: relative
    }
}

@media (max-width:767px) {

    section.about-team-main,
    section.specialty-univercity {
        padding: 50px 0
    }

    section.about-team-main .swiper-buttons,
    section.specialty-univercity .swiper-buttons {
        display: none
    }
}

section.about-team-main.roundable:after,
section.specialty-univercity.roundable:after {
    bottom: auto;
    right: auto;
    height: 700px;
    width: 100%;
    transform: rotate(-5deg) translateY(-60%) translateX(-70%);
    transform-origin: center bottom;
    opacity: 1
}

@media (max-width:1800px) {

    section.about-team-main.roundable:after,
    section.specialty-univercity.roundable:after {
        transform: rotate(10deg) translateY(-30%) translateX(-80%)
    }
}

@media (max-width:767px) {

    section.about-team-main.roundable:after,
    section.specialty-univercity.roundable:after {
        transform: rotate(10deg) translateY(-50%) translateX(-60%)
    }
}

section.about-team-main .swiper-buttons,
section.specialty-univercity .swiper-buttons {
    justify-content: flex-end;
    margin-bottom: 30px
}

@media (max-width:991px) {

    section.about-team-main .swiper-buttons,
    section.specialty-univercity .swiper-buttons {
        position: absolute;
        right: 30px;
        top: 60px
    }

    section.about-team-main .swiper-teachers,
    section.specialty-univercity .swiper-teachers {
        margin-top: 30px
    }
}

@media (max-width:767px) {

    section.about-team-main .swiper-teachers,
    section.specialty-univercity .swiper-teachers {
        margin-top: 15px;
        width: calc(100% + 15px);
        min-width: calc(100% + 15px);
        overflow: hidden;
        margin-bottom: 45px
    }
}

section.about-team-main {
    padding: 100px 0
}

@media (max-width:1250px) {
    section.about-team-main {
        padding: 80px 0
    }
}

@media (max-width:991px) {
    section.about-team-main {
        padding: 50px 15px;
        position: relative
    }
}

@media (max-width:767px) {
    section.about-team-main {
        padding: 50px 0
    }
}

section.about-team-main .tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap
}

@media (max-width:1800px) {
    section.about-team-main .tabs {
        gap: 20px
    }
}

@media (max-width:991px) {
    section.about-team-main .tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 40px
    }
}

@media (max-width:767px) {
    section.about-team-main .tabs {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:576px) {
    section.about-team-main .tabs {
        grid-template-columns: 1fr;
        gap: 15px
    }
}

section.about-team-main .tab {
    max-width: 240px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    padding: 12px 10px;
    border: 1px solid #fc502b;
    font-size: 28px;
    color: #fc502b;
    cursor: pointer
}

@media (max-width:1800px) {
    section.about-team-main .tab {
        max-width: 170px;
        padding: 3px 10px;
        font-size: 25px
    }
}

@media (max-width:991px) {
    section.about-team-main .tab {
        max-width: unset;
        font-size: 22px
    }
}

@media (max-width:576px) {
    section.about-team-main .tab {
        font-size: 22px;
        padding: 6px 5px
    }
}

section.about-team-main .tab.active {
    background: linear-gradient(274.88deg, #fc502b 0%, #ff9431 107.95%);
    color: #fff
}

.item-eployee {
    position: relative;
    display: block
}

.item-eployee>img,
.item-single-news .link-img img {
    width: 100%;
    height: 560px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center
}

@media (max-width:1800px) {
    .item-eployee>img {
        height: 400px
    }
}

@media (max-width:767px) {
    .item-eployee>img {
        height: 360px
    }
}

.item-eployee:hover .content {
    background: linear-gradient(93.56deg, #2942ce .47%, #0d2ad1 97.34%)
}

.item-eployee .content {
    background: linear-gradient(93.56deg, #283891 .47%, #001482 97.34%);
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 17px;
    transition: all .3s linear
}

@media (max-width:1800px) {
    .item-eployee .content {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 10px
    }
}

.item-eployee .content h4,
section.about-ref.personal .right h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0
}

.item-eployee .content h4,
.item-eployee .content p {
    margin-bottom: 0;
    color: #fff;
    display: block;
    text-align: center;
    -webkit-line-clamp: 1
}

.item-eployee .content h4,
.item-eployee .content p,
.item-single-news h4 a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.item-eployee .content h4 {
    text-transform: uppercase;
    height: 27px
}

@media (max-width:1800px) {
    .item-eployee .content h4 {
        font-size: 16px
    }
}

@media (max-width:767px) {
    .item-eployee .content h4 {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0;
        display: block;
        line-height: 18px;
        overflow: hidden;
        height: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis
    }
}

.item-eployee .content p,
.item-single-news h4 a {
    letter-spacing: 0
}

.item-eployee .content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    height: 20px
}

@media (max-width:767px) {
    .item-eployee .content p {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0;
        display: block;
        line-height: 13px;
        overflow: hidden;
        height: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis
    }
}

section.news-univercity {
    padding: 50px 0 180px
}

section.news-univercity.personal {
    padding: 120px 0 60px
}

@media (max-width:1800px) {
    section.news-univercity.personal {
        padding: 70px 0 40px
    }
}

section.news-univercity.personal .item-single-news {
    margin-bottom: 60px
}

@media (max-width:1800px) {
    section.news-univercity.personal .item-single-news {
        margin-bottom: 40px
    }

    section.news-univercity {
        padding: 50px 0 100px
    }
}

@media (max-width:767px) {
    section.news-univercity {
        padding: 30px 0 50px
    }
}

section.news-univercity.roundable:after {
    top: auto;
    left: auto;
    height: 700px;
    width: 100%;
    transform: rotate(15deg) translateY(-30%) translateX(30%);
    transform-origin: center bottom;
    opacity: .5
}

section.news-univercity .title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px
}

section.news-univercity .title h2 {
    margin-bottom: 0;
    text-transform: none
}

@media (max-width:767px) {
    section.news-univercity .swiper-container {
        margin-right: -15px;
        width: calc(100% + 15px)
    }
}

.item-single-news .link-img,
.item-single-news h4 a {
    display: block;
    margin-bottom: 25px
}

.item-single-news .link-img img {
    height: 380px;
    overflow: hidden
}

@media (max-width:1800px) {
    .item-single-news .link-img img {
        height: 260px
    }
}

.item-single-news h4 a {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    line-height: 27px;
    height: 54px;
    -webkit-line-clamp: 2
}

@media (max-width:767px) {
    .item-single-news h4 a {
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: 21px;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 20px;
        height: auto
    }
}

.journals-card,
.news-card {
    background: #e8ecfd
}

.edu-type-content ul li span,
.journals-card .link-img,
.news-card .link-img {
    display: block
}

.journals-card .link-img img,
.news-card .link-img img {
    width: 100%;
    height: 380px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    overflow: hidden
}

@media (max-width:1800px) {

    .journals-card .link-img img,
    .news-card .link-img img {
        height: 260px
    }
}

.journals-card .content,
.news-card .content {
    padding: 36px 24px
}

@media (max-width:767px) {

    .journals-card .content,
    .news-card .content {
        padding: 24px 18px
    }
}

.news-card h4 a {
    display: block;
    line-height: 27px;
    overflow: hidden;
    height: 81px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.journals-card h4 a,
.news-card h4 a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 16px;
    text-transform: uppercase
}

@media (max-width:767px) {

    .journals-card h4 a,
    .news-card h4 a {
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: 21px;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 20px;
        height: auto
    }
}

.journals-card .date,
.news-card .date {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 4px
}

@media (max-width:767px) {

    .journals-card .date,
    .news-card .date {
        margin-bottom: 20px
    }
}

.article-content .actions-article ul li button img,
.journals-card .date-img,
.news-card .date-img {
    width: 20px;
    height: 20px
}

.journals-card .date-span,
.news-card .date-span {
    font-size: 16px;
    line-height: 150%;
    color: #7c81a4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.journals-card .desc {
    font-weight: 500;
    line-height: 150%;
    color: #7c81a4
}

.journals-card h4 a {
    display: block;
    line-height: 27px;
    overflow: hidden;
    height: 27px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

section.journals-main {
    padding: 100px 0
}

@media (max-width:1250px) {
    section.journals-main {
        padding: 80px 0
    }
}

@media (max-width:991px) {
    section.journals-main {
        padding: 50px 15px;
        position: relative
    }
}

@media (max-width:767px) {
    section.journals-main {
        padding: 50px 0
    }
}

section.journals-main .title {
    font-weight: 700;
    font-size: 62px;
    color: #283891;
    margin-bottom: 50px;
    text-transform: none
}

@media (max-width:991px) {
    section.journals-main .title {
        font-size: 50px
    }
}

@media (max-width:767px) {
    section.journals-main .title {
        font-size: 28px
    }
}

section.journals-main .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

@media (max-width:991px) {
    section.journals-main .cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:576px) {
    section.journals-main .cards {
        grid-template-columns: 1fr
    }
}

section.journal-main {
    padding: 100px 0
}

@media (max-width:1250px) {
    section.journal-main {
        padding: 80px 0
    }
}

@media (max-width:991px) {
    section.journal-main {
        padding: 50px 15px;
        position: relative
    }
}

@media (max-width:767px) {
    section.journal-main {
        padding: 50px 0
    }
}

section.journal-main .title {
    font-weight: 700;
    font-size: 62px;
    text-transform: none
}

@media (max-width:991px) {
    section.journal-main .title {
        font-size: 45px
    }
}

@media (max-width:767px) {
    section.journal-main .title {
        font-size: 38px
    }
}

section.journal-main .content {
    display: flex;
    flex-direction: column
}

section.journal-main .top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px
}

@media (max-width:1200px) {
    section.journal-main .top {
        gap: 30px
    }
}

@media (max-width:991px) {
    section.journal-main .top {
        grid-template-columns: 1fr;
        margin-bottom: 35px
    }
}

@media (max-width:767px) {
    section.journal-main .top img {
        width: 100% !important
    }

    section.journal-main .top p {
        text-align: justify !important
    }
}

section.journal-main .top-pic {
    width: 100%;
    height: 100%;
    max-height: 600px
}

section.journal-main .top-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

section.journal-main .desc {
    display: flex;
    flex-direction: column
}

section.journal-main .desc-title {
    font-weight: 700;
    font-size: 48px;
    color: #283891;
    margin-bottom: 32px
}

@media (max-width:991px) {
    section.journal-main .desc-title {
        font-size: 42px
    }
}

@media (max-width:767px) {
    section.journal-main .desc-title {
        font-size: 34px
    }
}

section.journal-main .desc-text {
    font-size: 18px;
    line-height: 160%;
    margin: 0
}

section.journal-main .bottom,
section.journal-main .bottom-desc {
    display: flex;
    flex-direction: column
}

@media (max-width:767px) {
    section.journal-main .bottom img {
        width: 100% !important
    }

    section.journal-main .bottom p {
        text-align: justify !important
    }
}

section.journal-main .bottom-desc {
    margin-bottom: 50px
}

@media (max-width:991px) {
    section.journal-main .bottom-desc {
        margin-bottom: 35px
    }
}

section.journal-main .bottom-text {
    font-size: 18px;
    line-height: 160%;
    margin: 0
}

section.journal-main .images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px
}

@media (max-width:991px) {
    section.journal-main .images {
        margin-bottom: 35px;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:576px) {
    section.journal-main .images {
        grid-template-columns: 1fr;
        gap: 15px
    }
}

section.journal-main .images-pic {
    width: 100%;
    height: 345px
}

@media (max-width:576px) {
    section.journal-main .images-pic {
        height: unset
    }
}

section.about-ref.personal .gallery-pers img,
section.journal-main .images-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

section.journal-main .date {
    display: flex;
    gap: 12px;
    align-items: center
}

section.journal-main .date-img {
    width: 36px;
    height: 36px
}

@media (max-width:767px) {
    section.journal-main .date-img {
        width: 33px;
        height: 33px
    }
}

section.journal-main .date-span {
    font-size: 32px;
    line-height: 150%;
    color: #7c81a4
}

@media (max-width:767px) {
    section.journal-main .date-span {
        font-size: 27px
    }
}

section.contacting-us {
    padding: 90px 0 120px;
    background: #f7f7f7 url(../images/contact_bg.png) no-repeat center;
    background-size: cover
}

@media (max-width:1800px) {
    section.contacting-us {
        padding-bottom: 50px
    }
}

@media (max-width:767px) {
    section.contacting-us {
        padding: 50px 0
    }
}

section.contacting-us p {
    max-width: 500px
}

@media (max-width:767px) {
    section.contacting-us p {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 30px
    }
}

section.contacting-us main {
    max-width: 610px;
    margin: auto
}

@media (max-width:1800px) {
    section.contacting-us main {
        max-width: 500px;
        margin-right: 40px
    }
}

@media (max-width:1250px) {
    section.contacting-us main {
        margin-right: 0;
        margin-left: 100px
    }
}

@media (max-width:991px) {
    section.contacting-us main {
        max-width: calc(100% - 30px);
        margin-right: auto;
        margin-left: auto
    }
}

@media (max-width:767px) {
    section.contacting-us main {
        max-width: 100%
    }
}

section.contacting-us .form_style .btn-gold {
    float: right
}

@media (max-width:767px) {
    section.contacting-us .form_style .btn-gold {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block
    }
}

section.contacting-us .right-img {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px
}

@media (max-width:1800px) {
    section.contacting-us .right-img {
        max-width: 340px;
        margin-left: 40px
    }
}

@media (max-width:991px) {
    section.contacting-us .right-img {
        margin-top: 20px;
        margin-right: auto;
        margin-left: auto
    }
}

@media (max-width:767px) {
    section.contacting-us .right-img {
        display: none
    }
}

section.single-top {
    text-align: center;
    min-height: 400px;
    padding: 100px 0
}

section.single-top h1 {
    font-size: 62px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    margin-bottom: 20px;
    text-align: center
}

@media (max-width:1800px) {
    section.single-top h1 {
        font-size: 34px;
        line-height: 1.6;
        margin-bottom: 20px
    }
}

@media (max-width:767px) {
    section.single-top h1 {
        font-size: 38px;
        line-height: 1;
        margin-bottom: 25px
    }
}

section.single-top,
section.single-top ul {
    display: flex;
    align-items: center
}

@media (max-width:767px) {
    section.single-top ul {
        flex-wrap: wrap
    }
}

section.contactable .item p,
section.single-top ul li,
section.single-top ul li a {
    line-height: 1;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center
}

@media (max-width:767px) {
    section.single-top ul li {
        font-size: 14px
    }
}

section.single-top ul li:after {
    content: '/';
    color: #fc502b;
    padding: 0 5px
}

section.contactable .item p,
section.single-top ul li a {
    line-height: 29px
}

@media (max-width:767px) {
    section.single-top ul li a {
        font-size: 14px;
        line-height: 24px
    }
}

section.about-ref {
    position: relative;
    padding: 120px 0 0
}

@media (max-width:767px) {
    section.about-ref {
        padding: 40px 0 0
    }
}

section.about-ref.personal {
    padding-bottom: 80px
}

@media (max-width:1800px) {
    section.about-ref.personal {
        padding-bottom: 40px
    }
}

@media (max-width:991px) {
    section.about-ref.personal {
        padding-bottom: 0
    }
}

section.about-ref.personal .gallery-pers {
    margin-top: 80px
}

@media (max-width:1800px) {
    section.about-ref.personal .gallery-pers {
        margin-top: 40px
    }
}

section.about-ref.personal .gallery-pers img {
    height: 340px
}

@media (max-width:1800px) {
    section.about-ref.personal .gallery-pers img {
        height: 280px
    }
}

@media (max-width:1250px) {
    section.about-ref.personal .gallery-pers img {
        height: 200px
    }
}

@media (max-width:991px) {
    section.about-ref.personal .gallery-pers img {
        height: 150px
    }
}

@media (max-width:767px) {
    section.about-ref.personal .gallery-pers img {
        height: auto;
        margin-bottom: 20px
    }
}

@media (max-width:1800px) {
    section.about-ref.personal {
        padding: 70px 0 0
    }
}

section.about-ref.personal::before {
    content: '';
    position: absolute;
    left: -300px;
    bottom: 300px;
    width: 602px;
    height: 623px;
    background: #59b1e6;
    opacity: .1;
    filter: blur(75px);
    z-index: -1
}

@media (max-width:1800px) {
    section.about-ref.personal .right h2 {
        margin-bottom: 10px
    }
}

@media (max-width:767px) {
    section.about-ref.personal .right h2 {
        margin-bottom: 30px
    }
}

section.about-ref.personal .right h4 {
    text-align: left;
    color: #283891;
    margin-bottom: 17px
}

@media (max-width:1800px) {
    section.about-ref.personal .right p {
        font-size: 14px
    }
}

.image-content-right {
    display: none
}

@media (max-width:767px) {
    .image-content-right {
        display: inline-block;
        margin-bottom: 20px
    }
}

.left-image-content {
    display: inline-block
}

@media (max-width:767px) {
    .left-image-content {
        display: none
    }
}

.image-content,
.image-content-right {
    position: relative;
    width: 100%
}

.image-content img,
.image-content-right img,
section.contacting-us .right-img {
    display: block;
    width: 100%;
    height: auto
}

.image-content .bg-image,
.image-content-right .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 56, 145, .3)
}

.image-content .play-icon,
.image-content-right .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    border: 3px dashed #fff;
    border-radius: 50%;
    padding: 10px
}

.image-content .play-icon button,
.image-content-right .play-icon button {
    -webkit-animation: pulse 2s infinite linear;
    animation: pulse 2s infinite linear;
    outline: 0;
    border: 0;
    background: 0 0;
    margin: 0;
    padding: 0
}

.edu-type-content ul li .icon svg,
.image-content .play-icon button svg,
.image-content-right .play-icon button svg,
section.conference-view-section .circle-box .youtobe-play-icon a svg {
    width: 70px;
    height: 70px
}

.image-content .play-icon button svg path,
.image-content-right .play-icon button svg path,
section.conference-view-section .circle-box .youtobe-play-icon a svg path {
    fill: rgba(255, 255, 255, .8);
    transition: all .3s ease-in-out
}

@media (max-width:767px) {

    .image-content .play-icon,
    .image-content-right .play-icon {
        border: 2px dashed #fff;
        padding: 5px
    }

    .image-content .play-icon a svg,
    .image-content-right .play-icon a svg {
        width: 50px;
        height: 50px
    }
}

.image-content {
    min-height: 500px
}

.ab_bottom {
    margin-top: 100px;
    margin-bottom: 90px
}

@media (max-width:1800px) {
    .ab_bottom {
        margin-bottom: 70px
    }
}

@media (max-width:767px) {
    .ab_bottom {
        margin-top: 20px
    }
}

.revert {
    flex-wrap: wrap;
    gap: 30px
}

@media (max-width:767px) {
    .revert {
        gap: 15px
    }
}

.revert .item {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
    display: flex;
    align-items: flex-start;
    border: 1px solid #8b94ab;
    padding: 40px;
    gap: 12px;
    width: 100%;
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a;
    border-radius: 5px
}

@media (max-width:1250px) {
    .revert .item {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px)
    }
}

@media (max-width:767px) {
    .revert .item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        border-radius: 15px;
        margin-bottom: 0;
        display: block;
        padding: 14px 5px;
        text-align: center
    }
}

.revert .item img {
    width: 50px;
    height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

@media (max-width:767px) {
    .revert .item img {
        width: 45px;
        height: 63px
    }
}

@media (max-width:1800px) {
    .revert .item h4 {
        font-size: 30px !important
    }
}

.revert .item h4 b {
    font-size: 60px !important
}

@media (max-width:1800px) {
    .revert .item h4 b {
        font-size: 38px !important
    }
}

@media (max-width:767px) {
    .revert .item h4 b {
        padding-top: 0
    }
}

.revert .item p {
    margin-bottom: 0;
    color: #333
}

section.carerable {
    padding: 120px 0 90px
}

@media (max-width:1800px) {
    section.carerable {
        padding: 70px 0 40px
    }
}

.carer-card .student-info-card .centered,
section.carerable .title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px
}

@media (max-width:767px) {
    section.carerable .title {
        display: block
    }
}

section.carerable .title h2,
section.map_section .title h2 {
    margin-bottom: 0
}

section.carerable .search_form {
    margin-left: 30px
}

@media (max-width:767px) {
    section.carerable .search_form {
        margin-left: 0
    }
}

.carer-card,
.carer_single {
    width: 100%;
    height: auto
}

.carer-card {
    position: relative;
    margin-bottom: 20px
}

.carer-card .radting-number {
    position: absolute;
    top: 20px;
    left: 10px
}

.carer-card .radting-number svg {
    width: 30px
}

.carer-card .radting-number span {
    font-size: 18px;
    font-weight: 600;
    color: #283891
}

@media (max-width:767px) {
    .carer-card .radting-number span {
        font-size: 14px
    }
}

.carer-card .student-avatar {
    background-color: #f3f0f0;
    position: absolute;
    top: 26%;
    left: 7%;
    width: 30%;
    height: 50%;
    z-index: -1;
    overflow: hidden
}

.carer-card .student-avatar img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.carer-card img.back {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, .35) -5px 6px 10px 0;
    border-radius: 15px;
    z-index: 10
}

.carer-card .student-info-card {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 20px 20px 17% calc(40% + 20px);
    display: flex;
    justify-content: space-between;
    flex-direction: column
}

.carer-card .student-info-card h4,
.carer-card .student-info-card p {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 7px;
    display: block;
    line-height: 27px;
    overflow: hidden;
    height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

@media (max-width:991px) {
    .carer-card .student-info-card h4 {
        font-size: 14px;
        font-weight: 500;
        display: block;
        line-height: 20px;
        overflow: hidden;
        height: 40px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis
    }
}

@media (max-width:767px) {
    .carer-card .student-info-card h4 {
        display: block;
        line-height: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        height: auto;
        -webkit-line-clamp: inherit;
        margin-bottom: 0
    }
}

.carer-card .student-info-card p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: #fc502b;
    margin-bottom: 0;
    line-height: 20px;
    height: 20px;
    -webkit-line-clamp: 1
}

@media (max-width:991px) {
    .carer-card .student-info-card p {
        font-size: 12px;
        margin-bottom: 15px
    }
}

@media (max-width:767px) {
    .carer-card .student-info-card p {
        height: auto;
        -webkit-line-clamp: inherit;
        margin-bottom: 5px
    }
}

.carer-card .student-info-card .centered {
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #8b94ab;
    padding-bottom: 20px;
    margin-bottom: 20px
}

@media (max-width:1800px) {
    .carer-card .student-info-card .centered {
        margin-bottom: 15px;
        padding-bottom: 10px
    }
}

.carer-card .student-info-card .centered .luck {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.carer-card .student-info-card .centered .luck span {
    display: inline-flex;
    align-items: center;
    color: #fafafa;
    gap: 8px;
    font-size: 1em;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left
}

.carer-card .student-info-card .centered .luck span img {
    width: 45%
}

@media (max-width:991px) {
    .carer-card .student-info-card .centered .luck span {
        font-size: 12px;
        line-height: 20px
    }
}

.carer-card .bottomed a,
.carer-card .student-info-card .centered b {
    color: #fff;
    font-size: 1em;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left
}

@media (max-width:991px) {
    .carer-card .student-info-card .centered b {
        line-height: 20px;
        font-size: 12px
    }
}

@media (max-width:767px) {
    .carer-card .student-info-card .centered {
        flex-direction: column;
        align-items: start;
        padding-bottom: 3px
    }

    .carer-card .student-info-card {
        padding: 20px 10px 17% calc(40% + 10px)
    }
}

.carer-card .bottomed {
    position: absolute;
    bottom: 5%;
    right: 20px
}

.carer-card .bottomed a {
    padding: 8px 20px;
    border-radius: 8px;
    background-color: #283891;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    transition: all .3s;
    box-shadow: rgba(0, 0, 0, .1) 0 4px 12px
}

.carer-card .bottomed a:hover {
    background-color: #fff;
    color: #283891
}

@media (max-width:991px) {
    .carer-card .bottomed a {
        padding: 5px 15px;
        font-size: 12px
    }
}

.custom_navigation {
    margin: 30px 0
}

.custom_navigation ul.pagination,
section.single-top ul {
    justify-content: center
}

.custom_navigation ul.pagination li {
    border: 0 !important
}

.custom_navigation ul.pagination li a {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    color: #8b94ab
}

.custom_navigation ul.pagination li a.active,
.custom_navigation ul.pagination li a:hover {
    background: 0 0;
    color: #283891
}

section.contactable {
    padding: 120px 0
}

@media (max-width:1800px) {
    section.contactable {
        padding: 70px 0
    }
}

@media (max-width:991px) {
    section.contactable .row>div {
        margin-bottom: 30px
    }
}

section.contactable .item {
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a;
    border: 1px solid #8b94ab;
    margin-bottom: 30px;
    height: 100%;
    padding: 25px 50px;
    text-align: center;
    border-radius: 8px
}

@media (max-width:1800px) {
    section.contactable .item {
        padding: 20px 10px 5px
    }
}

section.contactable .item img {
    height: 64px;
    width: auto;
    margin-bottom: 20px
}

@media (max-width:1800px) {
    section.contactable .item img {
        height: 42px
    }
}

section.contactable .item h4 {
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 4px
}

section.contactable .item p {
    line-height: 23px;
    margin-bottom: 0
}

section.contactable .item p a {
    font-size: inherit;
    color: inherit;
    line-height: 1
}

.vacan_item .content h5 a:hover,
section.contactable .item p a:hover {
    color: #fc502b
}

section.map_section {
    padding-top: 120px
}

@media (max-width:1800px) {
    section.map_section {
        padding-top: 70px
    }
}

section.map_section #map {
    height: 456px;
    width: 100%;
    background: url(../images/map.jpg) no-repeat center;
    background-size: cover
}

@media (max-width:1800px) {
    section.map_section #map {
        height: 370px
    }
}

section.map_section .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 55px
}

@media (max-width:1800px) {
    section.map_section .title {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    section.map_section .title {
        display: block
    }
}

section.map_section .title>div {
    display: inline-flex;
    align-items: center;
    gap: 15px
}

@media (max-width:767px) {
    section.map_section .title>div {
        justify-content: center;
        margin-top: 30px;
        width: 100%
    }
}

section.map_section .title>div a {
    border-radius: 8px;
    border: 1px solid #5e628280;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0
}

section.map_section .title>div a.active {
    background: linear-gradient(273.49deg, #fc502b -2.03%, #ff9431 101.54%);
    color: #fff !important;
    border-color: #fd622d
}

section.map_section .title>div a:hover {
    color: #fc502b;
    border-color: #fc502b
}

section.faq_section {
    padding: 120px 0
}

@media (max-width:1800px) {
    section.faq_section {
        padding: 70px 0
    }
}

.facult>div {
    margin-bottom: 80px
}

@media (max-width:1800px) {
    .facult>div {
        margin-bottom: 60px
    }

    .facult+.ab_bottom {
        margin-top: 70px
    }
}

.facult.with-scientific .item {
    min-height: 240px
}

@media (max-width:767px) {
    .facult.with-scientific .item {
        min-height: 221px
    }
}

.facult .item,
section.faculty_single .item {
    border: 1px solid #8b94ab;
    padding: 30px 40px 60px;
    position: relative;
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a;
    border-radius: 8px;
    height: 100%;
    text-align: center;
    background-color: #fff
}

@media (max-width:1800px) {
    .facult .item {
        padding: 30px
    }
}

.facult .item>img {
    height: 66px;
    width: auto;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block
}

.facult .item h4,
.facult .item p,
section.contactable .item h4,
section.content_template h5,
section.content_template p {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0
}

.facult .item h4 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px
}

.facult .item p {
    font-weight: 400;
    line-height: 29px;
    text-align: center;
    margin-bottom: 30px
}

@media (max-width:1800px) {
    .facult .item p {
        font-size: 14px;
        line-height: 1.5
    }
}

.facult .item a {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(180deg, #fc502b 0%, #ff9431 100%);
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%)
}

@media (max-width:1800px) {
    .facult .item a svg {
        max-width: 60px;
        height: auto
    }
}

.facult .item a:hover {
    background: linear-gradient(93.56deg, #283891 .47%, #001482 97.34%)
}

section.faculty_single {
    padding: 120px 0
}

@media (max-width:1800px) {
    section.faculty_single {
        padding: 70px 0
    }
}

section.faculty_single .item {
    padding: 50px 40px 110px
}

@media (max-width:1800px) {
    section.faculty_single .item {
        padding: 40px 20px 80px
    }
}

@media (max-width:767px) {
    section.faculty_single .item {
        padding: 40px 25px
    }
}

section.faculty_single .item h4 {
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 27px;
    margin-bottom: 30px;
    color: #283891;
    text-transform: uppercase
}

@media (max-width:767px) {
    section.faculty_single .item h4 {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 16px
    }
}

section.faculty_single .item p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: #333
}

@media (max-width:1800px) {
    section.faculty_single .item p {
        font-size: 16px
    }
}

@media (max-width:767px) {
    section.faculty_single .item p {
        line-height: 24px;
        font-size: 14px
    }
}

section.faculty_single .item p b {
    font-size: inherit;
    line-height: inherit
}

section.faculty_single .item p hr {
    margin: 32px 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #8b94ab
}

@media (max-width:767px) {
    section.faculty_single .item p hr {
        margin: 16px 0
    }
}

section.faculty_single .item ul {
    margin-bottom: 45px;
    text-align: left
}

@media (max-width:767px) {
    section.faculty_single .item ul {
        margin-bottom: 35px
    }
}

section.faculty_single .item ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: #333;
    position: relative;
    padding-left: 30px
}

@media (max-width:1800px) {
    section.faculty_single .item ul li {
        font-size: 16px
    }
}

@media (max-width:767px) {
    section.faculty_single .item ul li {
        line-height: 24px;
        font-size: 14px
    }
}

section.faculty_single .item ul li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 17px;
    height: 13px;
    background: url(../images/check.svg) no-repeat center;
    background-size: contain
}

section.faculty_single .item .btn-gold {
    bottom: 50px
}

@media (max-width:767px) {
    section.faculty_single .item .btn-gold {
        position: static;
        transform: translateX(0%)
    }
}

section.content_template img {
    max-width: 100%
}

@media (max-width:767px) {
    section.content_template img {
        width: 100%;
        margin-bottom: 20px
    }
}

section.content_template h5 {
    font-weight: 700;
    color: #283891;
    max-width: 800px
}

section.content_template p {
    color: #333;
    margin-bottom: 5px;
    max-width: 810px
}

section.content_template p * {
    font-size: inherit
}

@media (max-width:767px) {
    section.content_template p {
        font-size: 14px;
        line-height: 24px
    }
}

section.resume_inner {
    padding: 120px 0
}

@media (max-width:1800px) {
    section.resume_inner {
        padding: 80px 0
    }
}

section.resume_inner .left {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    border: 1px solid #8b94ab;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a
}

@media (max-width:991px) {
    section.resume_inner .left {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    section.resume_inner .left {
        display: block;
        text-align: center;
        padding: 30px 20px
    }
}

section.resume_inner .left>img {
    box-shadow: 0 2px 4px 0 #00000026;
    width: 150px;
    height: 150px;
    flex: 0 0 150px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    overflow: hidden;
    border-radius: 50%
}

@media (max-width:1250px) {
    section.resume_inner .left>img {
        width: 100px;
        height: 100px;
        flex: 0 0 100px
    }
}

@media (max-width:767px) {
    section.resume_inner .left>img {
        width: 75px;
        height: 75px;
        margin-bottom: 15px
    }
}

.img_item_block .text p,
.video_item_block .text p,
section.resume_inner .left h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    margin-bottom: 7px
}

@media (max-width:767px) {
    section.resume_inner .left h4 {
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0;
        text-align: left;
        line-height: 1
    }
}

section.resume_inner .left p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #8b94ab;
    margin-bottom: 7px;
    text-align: left
}

@media (max-width:767px) {
    section.resume_inner .left p {
        border-bottom: 1px solid #8b94ab;
        padding-bottom: 12px;
        line-height: 1.3
    }
}

section.resume_inner .left p b {
    font-weight: 700;
    color: #333
}

@media (max-width:767px) {
    section.resume_inner .left p b {
        display: block;
        line-height: 1.3
    }
}

section.resume_inner .clone_right,
section.resume_inner .right {
    border: 1px solid #8b94ab;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a
}

@media (max-width:767px) {

    section.resume_inner .clone_right,
    section.resume_inner .right {
        display: block;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        border: 0;
        text-align: left;
        margin-top: 40px
    }
}

section.resume_inner .clone_right .centered,
section.resume_inner .right .centered {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #8b94ab;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-top: 20px
}

@media (max-width:1800px) {

    section.resume_inner .clone_right .centered,
    section.resume_inner .right .centered {
        margin-bottom: 15px;
        padding-bottom: 10px
    }
}

@media (max-width:767px) {

    section.resume_inner .clone_right .centered,
    section.resume_inner .right .centered {
        padding-top: 10px;
        margin-bottom: 10px;
        margin-top: 10px;
        padding-bottom: 0
    }
}

section.resume_inner .clone_right .centered b,
section.resume_inner .right .centered b {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left
}

.vacan_item .content p span,
section.resume_inner .clone_right .centered .luck,
section.resume_inner .right .centered .luck {
    display: inline-flex;
    align-items: center;
    gap: 20px
}

section.resume_inner .clone_right .centered .luck span,
section.resume_inner .right .centered .luck span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left
}

@media (max-width:767px) {
    .row.p-m-12 {
        margin-left: -6px;
        margin-right: -6px
    }
}

@media (max-width:767px) and (max-width:767px) {
    .row.p-m-12>div {
        margin-bottom: 12px !important;
        padding-left: 6px;
        padding-right: 6px
    }
}

.block-lifes {
    margin-bottom: 70px
}

@media (max-width:767px) {
    .block-lifes.row {
        margin-left: -6px;
        margin-right: -6px
    }
}

@media (max-width:767px) and (max-width:767px) {
    .block-lifes.row>div {
        margin-bottom: 12px !important;
        padding-left: 6px;
        padding-right: 6px
    }
}

@media (max-width:767px) {
    .block-lifes .img_item_block {
        height: 210px
    }
}

.block-life-swiper {
    padding-bottom: 30px;
    margin-bottom: 70px
}

@media (max-width:767px) {
    .block-life-swiper {
        margin-right: -15px
    }
}

.img_item_block,
.video_item_block {
    height: 530px;
    position: relative;
    display: block
}

@media (max-width:1800px) {

    .img_item_block,
    .video_item_block {
        height: 400px
    }
}

.img_item_block:hover .text,
.video_item_block:hover .text {
    opacity: 1
}

.img_item_block .btn-play,
.video_item_block .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@media (max-width:1800px) {

    .img_item_block .btn-play img,
    .video_item_block .btn-play img {
        width: 65px;
        height: auto
    }
}

.img_item_block .img_fluid,
.video_item_block .img_fluid {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.img_item_block .text,
.video_item_block .text {
    background: linear-gradient(180deg, transparent 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    height: 180px;
    right: 0;
    transition: all .3s;
    opacity: 0;
    bottom: 0;
    padding: 23px
}

@media (max-width:1800px) {

    .img_item_block .text,
    .video_item_block .text {
        height: 100px
    }
}

@media (max-width:1250px) {

    .img_item_block .text,
    .video_item_block .text {
        opacity: 1
    }
}

@media (max-width:991px) {

    .img_item_block .text,
    .video_item_block .text {
        height: 130px
    }
}

.img_item_block .text p,
.video_item_block .text p {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    transform: translateY(5px);
    transition: all .35s .1s;
    opacity: 0;
    display: block;
    overflow: hidden;
    height: 81px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

@media (max-width:1800px) {

    .img_item_block .text p,
    .video_item_block .text p {
        font-size: 16px
    }
}

@media (max-width:1250px) {

    .img_item_block .text p,
    .video_item_block .text p {
        transform: translateY(0);
        opacity: 1
    }
}

section.our_images_say {
    padding: 70px 0
}

section.our_images_say .item,
section.vacancy-ref .row>div {
    margin-bottom: 30px
}

section.our_images_say .item a {
    display: block;
    height: 380px
}

@media (max-width:1250px) {
    section.our_images_say .item a {
        height: 300px
    }
}

@media (max-width:991px) {
    section.our_images_say .item a {
        height: 270px
    }
}

@media (max-width:767px) {
    section.our_images_say .item a {
        height: 150px
    }
}

@media (max-width:767px) {
    section.vacancy-ref .row>div {
        margin-bottom: 15px
    }
}

.vacan_item,
section.vacancy-inner-ref main .right {
    border: 1px solid #8b94ab;
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a
}

.vacan_item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 7px
}

@media (max-width:767px) {
    .vacan_item {
        text-align: center
    }
}

.vacan_item .badge_vacansy {
    position: absolute;
    background: linear-gradient(270.35deg, #fc502b .3%, #ff9431 99.86%);
    left: 30px;
    top: 30px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left;
    color: #fff;
    padding: 0 30px
}

@media (max-width:767px) {
    .vacan_item .badge_vacansy {
        left: 50%;
        transform: translateX(-50%);
        top: 16px;
        font-size: 14px;
        padding: 0 38px
    }
}

.vacan_item .vacan_img {
    display: block;
    height: 200px
}

@media (max-width:767px) {
    .vacan_item .vacan_img {
        height: 165px
    }
}

.item-single-student .link-img img,
.vacan_item .vacan_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.vacan_item .content {
    padding: 28px
}

.vacan_item .content h5 {
    margin-bottom: 17px
}

.custom_file #file-name,
.vacan_item .content h5 a {
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.vacan_item .content h5 a,
section.vacancy-inner-ref main h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase
}

.vacan_item .content h5 a {
    color: #283891;
    height: 27px
}

@media (max-width:767px) {
    .vacan_item .content h5 a {
        font-size: 14px;
        height: auto;
        text-align: center;
        display: block
    }
}

.vacan_item .content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left;
    color: #8b94ab;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 6px
}

@media (max-width:767px) {
    .vacan_item .content p {
        justify-content: center;
        text-align: center;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 2px
    }
}

.vacan_item .content p span {
    font-size: inherit;
    color: inherit;
    gap: 10px;
    line-height: 1
}

.vacan_item .content .btn-details {
    line-height: 50px;
    margin-top: 70px;
    padding: 5px 70px
}

@media (max-width:1250px) {
    .vacan_item .content .btn-details {
        margin-top: 40px
    }
}

@media (max-width:767px) {
    .vacan_item .content .btn-details {
        margin-top: 20px;
        padding: 0 65px
    }
}

section.vacancy-inner-ref {
    padding: 120px 0
}

@media (max-width:1800px) {
    section.vacancy-inner-ref {
        padding: 70px 0
    }
}

section.vacancy-inner-ref main {
    display: flex;
    align-items: flex-start;
    gap: 80px
}

@media (max-width:1250px) {
    section.vacancy-inner-ref main {
        gap: 30px
    }
}

@media (max-width:991px) {
    section.vacancy-inner-ref main {
        flex-direction: column
    }
}

section.vacancy-inner-ref main ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 15px;
    margin-bottom: 20px
}

section.vacancy-inner-ref main ul li {
    line-height: 2.2;
    color: #333
}

@media (max-width:767px) {
    section.vacancy-inner-ref main ul li {
        line-height: 24px;
        color: #333;
        font-size: 14px;
        margin-bottom: 10px
    }
}

section.vacancy-inner-ref main p {
    color: #333;
    margin-bottom: 20px
}

@media (max-width:767px) {
    section.vacancy-inner-ref main p {
        line-height: 24px;
        color: #333;
        font-size: 14px
    }
}

section.vacancy-inner-ref main h3 {
    margin-bottom: 24px
}

@media (max-width:767px) {
    section.vacancy-inner-ref main h3 {
        font-size: 14px;
        line-height: 21px
    }
}

section.vacancy-inner-ref main .right {
    padding: 65px 57px;
    border-radius: 8px;
    flex: 0 0 530px
}

@media (max-width:1250px) {
    section.vacancy-inner-ref main .right {
        flex: 0 0 400px;
        width: 100%;
        padding: 65px 40px
    }
}

@media (max-width:991px) {
    section.vacancy-inner-ref main .right {
        flex: 0 0 100%
    }
}

@media (max-width:767px) {
    section.vacancy-inner-ref main .right {
        padding: 36px 32px 20px
    }
}

section.vacancy-inner-ref main .right ul li {
    color: #8b94ab
}

@media (max-width:767px) {
    section.vacancy-inner-ref main .right ul li {
        color: #333
    }
}

.custom_file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    width: 100%;
    padding: 14px 25px;
    overflow: hidden
}

.custom_file #file-name {
    font-size: 14px;
    padding-left: 10px;
    line-height: 20px;
    height: 20px
}

.custom_file label {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    position: relative;
    padding-right: 25px;
    margin-bottom: 0 !important;
    white-space: nowrap;
    cursor: pointer
}

@media (max-width:767px) {
    .custom_file label {
        font-size: 12px !important
    }
}

.custom_file label:after {
    content: '';
    position: absolute;
    top: -14px;
    bottom: -14px;
    right: 0;
    border-right: 1px solid #bdbdbd
}

section.contracting_get {
    text-align: center;
    padding: 70px 0;
    display: flex;
    align-items: center
}

@media (max-width:767px) {
    section.contracting_get {
        padding: 40px 0
    }
}

section.contracting_get h3 {
    text-align: center;
    font-weight: 600
}

@media (max-width:767px) {
    section.contracting_get h3 {
        font-size: 24px
    }
}

section.contracting_get .linking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

@media (max-width:767px) {
    section.contracting_get .linking {
        flex-direction: column
    }

    section.contracting_get .linking a {
        width: 100%
    }
}

section.what-career {
    padding: 60px 0;
    position: relative
}

section.what-career:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/roundable.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1) !important;
    z-index: -1;
    opacity: .5
}

h3.painting,
section.what-career .what-career-servise {
    text-align: center;
    margin: 40px 0
}

@media (max-width:991px) {
    section.what-career .what-career-servise {
        margin: 20px 0
    }
}

section.what-career .what-career-servise h3 {
    background-color: #00264b;
    color: #fff;
    font-size: 30px;
    font-weight: 600
}

section.what-career .what-career-servise h3:after,
section.what-career .what-career-servise h3:before {
    background-color: #00264b
}

@media (max-width:1250px) {
    section.what-career .what-career-servise h3 {
        font-size: 24px
    }
}

@media (max-width:767px) {
    section.what-career .what-career-servise h3 {
        font-size: 20px
    }

    section.what-career .container {
        padding: 0
    }
}

section.what-career .content-stage {
    min-height: 200px;
    display: flex
}

section.what-career .content-stage .mobile {
    display: none
}

@media (max-width:1250px) {
    section.what-career .content-stage {
        min-height: 100px
    }
}

@media (max-width:767px) {
    section.what-career .content-stage h4 {
        font-size: 16px
    }

    section.what-career .content-stage p {
        font-size: 12px
    }

    section.what-career .content-stage .mobile {
        display: flex
    }

    section.what-career .content-stage .mobile:nth-child(odd) .circle {
        background-color: #fbae49;
        border-color: #283891
    }

    section.what-career .content-stage .no-mobile {
        display: none
    }
}

section.what-career .content-stage .box {
    min-width: 300px
}

@media (max-width:1250px) {
    section.what-career .content-stage .box {
        min-width: 200px
    }
}

@media (max-width:991px) {
    section.what-career .content-stage .box {
        min-width: 150px
    }
}

@media (max-width:767px) {
    section.what-career .content-stage .box {
        min-width: 60px
    }
}

section.what-career .content-stage:hover .circle {
    background-color: #fbae49;
    border-color: #283891
}

section.what-career .circle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px
}

@media (max-width:1250px) {
    section.what-career .circle-content {
        padding: 0 10px
    }
}

section.what-career .circle-content .circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #283891;
    border: 6px solid #fbae49;
    transition: .3s all;
    position: relative
}

@media (max-width:1250px) {
    section.what-career .circle-content .circle {
        width: 130px;
        height: 130px
    }
}

@media (max-width:991px) {
    section.what-career .circle-content .circle {
        width: 100px;
        height: 100px
    }
}

@media (max-width:767px) {
    section.what-career .circle-content .circle {
        width: 40px;
        height: 40px;
        border: 3px solid #fbae49
    }
}

section.what-career .circle-content .circle::after {
    content: '';
    position: absolute;
    width: calc(100% + 34px);
    height: calc(100% + 34px);
    top: -17px;
    left: -17px;
    border-radius: 50%;
    border: 4px dashed #00264b;
    z-index: 1;
    -webkit-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite
}

@media (max-width:767px) {
    section.what-career .circle-content .circle::after {
        border: 1px dashed #00264b;
        width: calc(100% + 14px);
        height: calc(100% + 14px);
        top: -7px;
        left: -7px
    }
}

section.what-career .circle-content .circle span {
    color: #f2f2f2;
    font-size: 40px;
    font-weight: 600;
    width: 100px;
    text-align: center
}

@media (max-width:991px) {
    section.what-career .circle-content .circle span {
        font-size: 32px;
        width: 100%
    }
}

@media (max-width:767px) {
    section.what-career .circle-content .circle span {
        font-size: 16px;
        width: 100%
    }
}

h3.painting {
    padding: 10px 0;
    margin: 0 70px;
    display: inline-block;
    position: relative
}

h3.before-after-painting:before {
    content: '';
    display: block;
    height: 100%;
    top: 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    right: -133px;
    position: absolute;
    width: 134px;
    -webkit-mask-image: url(../images/right-painting.png);
    mask-image: url(../images/right-painting.png);
    -webkit-mask-position: left top;
    mask-position: left top;
    z-index: 3
}

@media (max-width:1250px) {
    h3.before-after-painting:before {
        right: -99px;
        width: 100px
    }
}

@media (max-width:767px) {
    h3.before-after-painting:before {
        -webkit-mask-size: 60% 100%;
        right: -79px;
        width: 80px
    }
}

h3.before-after-painting:after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    left: -45px;
    width: 46px;
    -webkit-mask-image: url(../images/left-painting.png);
    mask-image: url(../images/left-painting.png);
    -webkit-mask-position: left top;
    mask-position: left top
}

.career-stage-text-right h4,
.career-stage-text-right p {
    text-align: right
}

@media (max-width:767px) {

    .career-stage-text-right h4,
    .career-stage-text-right p {
        text-align: left
    }
}

.career-stage-line {
    display: flex;
    justify-content: start;
    align-items: end;
    padding: 10px
}

.career-stage-line img {
    width: 100px
}

@media (max-width:1250px) {
    .career-stage-line img {
        width: 70px
    }
}

@media (max-width:991px) {
    .career-stage-line img {
        width: 60px
    }
}

@media (max-width:767px) {
    .career-stage-line img {
        width: 30px
    }
}

.image-transform {
    justify-content: right !important;
    padding: 10px
}

.image-transform img {
    transform: scaleX(-1) !important
}

.animation-top {
    -webkit-animation: moveUpDownTop 1s infinite alternate;
    animation: moveUpDownTop 1s infinite alternate
}

.animation-buttom {
    -webkit-animation: moveUpDownButtom 1s infinite alternate;
    animation: moveUpDownButtom 1s infinite alternate
}

section.what-career-info {
    padding: 20px;
    background: linear-gradient(93.56deg, #283891 .47%, #001482 97.34%)
}

@media (max-width:1250px) {
    section.what-career-info {
        padding-top: 90px
    }
}

@media (max-width:767px) {
    section.what-career-info {
        padding: 90px 0 0
    }
}

section.what-career-info .image-what-carees {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

section.what-career-info .image-what-carees img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: #d1d5db 0 0 0 1px, #d1d5db 0 0 0 1px inset
}

@media (max-width:1250px) {
    section.what-career-info .image-what-carees img {
        margin: 10px
    }
}

section.what-career-info .title {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 10px
}

@media (max-width:767px) {
    section.what-career-info .title {
        margin: 0;
        padding: 20px 0
    }
}

section.what-career-info .title h3 {
    margin-bottom: 20px;
    background-color: #fff;
    color: #00264b;
    font-size: 32px;
    font-weight: 700
}

section.what-career-info .title h3:after,
section.what-career-info .title h3:before {
    background-color: #fff
}

@media (max-width:767px) {
    section.what-career-info .title h3 {
        font-size: 24px
    }
}

.broadcast-box a .broadcast:hover,
section.what-career-info .title p {
    color: #fff
}

@media (max-width:767px) {
    section.what-career-info .title p {
        font-size: 14px
    }
}

.item-single-student .link-img,
.item-single-student h4 a {
    display: block;
    margin-bottom: 25px
}

.item-single-student .link-img img {
    height: auto;
    -o-object-position: top center;
    object-position: top center;
    overflow: hidden
}

@media (max-width:1800px) {
    .item-single-student .link-img img {
        height: auto
    }
}

.item-single-student h4 a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    line-height: 27px;
    overflow: hidden;
    height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

@media (max-width:767px) {
    .item-single-student h4 a {
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: 21px;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 20px;
        height: auto
    }
}

.student-opinion {
    background-color: #f6f8fd;
    padding: 20px
}

.student-opinion h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff
}

.student-opinion h3,
.student-opinion h3:after,
.student-opinion h3:before {
    background-color: #283891
}

.broadcast-hero,
.broadcast-hero::after {
    background-position: center;
    background-size: cover
}

.broadcast-hero {
    background-color: #001482;
    height: 220px;
    background-image: url(../images/breadcrumb-bg.png);
    background-repeat: no-repeat;
    position: relative
}

@media (max-width:1250px) {
    .broadcast-hero {
        padding-top: 120px;
        height: 270px
    }
}

@media (max-width:767px) {
    .broadcast-hero {
        padding-top: 110px;
        height: 180px
    }
}

.broadcast-hero .container {
    position: relative;
    z-index: 4;
    text-align: center
}

.broadcast-hero::after {
    background-image: url(../images/slider-bottom-pattern.png);
    background-repeat: repeat-x;
    bottom: -2px;
    content: '';
    display: block;
    height: 94px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: auto;
    width: 100%;
    z-index: 99
}

@media (max-width:767px) {
    .broadcast-hero::after {
        height: 20px
    }
}

.broadcast-box {
    display: flex;
    align-items: center
}

.broadcast-box .broadcast {
    color: #ffc107;
    font-weight: 700;
    font-size: 25px;
    margin: 0 20px;
    letter-spacing: 1px;
    transition: all .3s ease-in-out
}

@media (max-width:767px) {
    .broadcast-box .broadcast {
        font-size: 14px;
        margin: 0 10px;
        line-height: 12px
    }
}

@media (max-width:350px) {
    .broadcast-box .broadcast {
        font-size: 12px;
        margin: 0 8px;
        line-height: 12px
    }
}

.broadcast-box .icons svg {
    width: 30px;
    height: 30px;
    align-items: center
}

@media (max-width:767px) {
    .broadcast-box .icons svg {
        width: 20px;
        height: 20px
    }
}

@media (max-width:350px) {
    .broadcast-box .icons svg {
        width: 15px;
        height: 15px
    }
}

.broadcast-box .icons svg path {
    fill: #fff
}

.broadcast-box h2 {
    color: #fff;
    font-size: 40px
}

section.conference-section {
    background-color: #fff;
    padding: 30px 0 50px
}

@media (max-width:767px) {
    section.conference-section {
        padding: 40px 0
    }
}

@media (max-width:350px) {
    section.conference-section {
        padding: 20px 0 40px
    }
}

section.conference-section .conferences-card {
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, .35) 0 0 20px;
    border-radius: 8px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 5px;
    background-color: #fff
}

section.conference-section .conferences-card .image img {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: 100%;
    height: auto
}

section.conference-section .conferences-card .conference-info {
    margin: 20px
}

section.conference-section .conferences-card .conference-info p {
    border-left: 8px solid #001482;
    padding-left: 10px;
    color: #ccc;
    font-weight: 400
}

section.conference-section .conferences-card .conference-info p span {
    font-size: 20px;
    color: rgba(0, 0, 0, .7)
}

section.conference-section .conferences-card .conference-info p span:first-child {
    margin-right: 10px
}

@media (max-width:767px) {
    section.conference-section .conferences-card .conference-info p span {
        font-size: 14px;
        line-height: 15px
    }
}

@media (max-width:350px) {
    section.conference-section .conferences-card .conference-info p span {
        font-size: 12px !important
    }
}

@media (max-width:767px) {
    section.conference-section .conferences-card .conference-info p {
        border-left: 6px solid #001482
    }
}

@media (max-width:350px) {
    section.conference-section .conferences-card .conference-info p {
        border-left: 4px solid #001482
    }
}

section.conference-section .conferences-card .conference-info h4 {
    font-size: 20px;
    font-weight: 600
}

@media (max-width:767px) {
    section.conference-section .conferences-card .conference-info h4 {
        font-size: 16px
    }
}

@media (max-width:350px) {
    section.conference-section .conferences-card .conference-info h4 {
        font-size: 14px
    }
}

section.conference-section .conferences-card .card-before {
    width: 70%;
    height: 300px;
    background-color: #001482;
    border-radius: 8px;
    position: relative
}

section.conference-section .conferences-contact-info {
    padding: 10px
}

section.conference-section .conferences-contact-info ul {
    display: flex;
    justify-content: space-between
}

section.conference-section .conferences-contact-info ul li .icon-text {
    margin: 10px;
    display: flex;
    align-items: center
}

section.conference-section .conferences-contact-info ul li .icon-text span {
    font-size: 12px;
    display: block;
    margin-left: 10px
}

.conferences-view-hero {
    padding: 90px 0
}

.conferences-view-hero,
.conferences-view-hero::before {
    border-bottom-right-radius: 400px
}

@media (max-width:1250px) {
    .conferences-view-hero {
        padding: 120px 30px 30px 0
    }

    .conferences-view-hero,
    .conferences-view-hero::before {
        border-bottom-right-radius: 300px
    }
}

@media (max-width:991px) {
    .conferences-view-hero {
        padding: 120px 10px 30px 0
    }

    .conferences-view-hero,
    .conferences-view-hero::before {
        border-bottom-right-radius: 230px
    }
}

@media (max-width:767px) {
    .conferences-view-hero {
        padding: 120px 10px 30px 0
    }

    .conferences-view-hero,
    .conferences-view-hero::before {
        border-bottom-right-radius: 110px
    }
}

@media (max-width:350px) {
    .conferences-view-hero {
        padding: 100px 0 10px
    }

    .conferences-view-hero,
    .conferences-view-hero::before {
        border-bottom-right-radius: 75px
    }
}

.conference-view-spicers {
    padding: 40px 0 !important
}

@media (max-width:767px) {
    .conference-view-spicers {
        padding: 30px 0 0 !important
    }

    .conference-view-spicers .container {
        padding: 15px
    }

    .conference-view-spicers .swiper-teachers {
        margin-bottom: 0 !important;
        width: 100% !important;
        min-width: 100% !important
    }

    .conference-view-spicers .swiper-teachers .swiper-slide-active {
        margin-right: 5px !important;
        margin-left: 5px
    }

    .conference-view-spicers .swiper-teachers .swiper-slide .p-3,
    .conference-view-spicers .swiper-teachers .swiper-slide-active .p-3 {
        padding: 0 !important
    }
}

section.conference-view-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto
}

section.conference-view-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(40, 56, 145, .85);
    z-index: 1
}

section.conference-view-section .container {
    position: relative;
    z-index: 3;
    color: #fff
}

@media (max-width:1250px) {
    section.conference-view-section .container .hero-container {
        padding: 30px 10px 10px
    }
}

@media (max-width:767px) {
    section.conference-view-section .container .hero-container {
        padding: 30px 0 0 10px
    }
}

@media (max-width:350px) {
    section.conference-view-section .container .hero-container {
        padding: 10px 0
    }
}

section.conference-view-section .title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 60px;
    text-transform: uppercase
}

@media (max-width:1250px) {
    section.conference-view-section .title {
        margin-bottom: 50px;
        font-size: 30px
    }
}

@media (max-width:991px) {
    section.conference-view-section .title {
        margin-top: 20px;
        font-size: 20px
    }
}

@media (max-width:767px) {
    section.conference-view-section .title {
        margin: 0;
        font-size: 14px
    }
}

section.conference-view-section .circle-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

@media (max-width:767px) {
    section.conference-view-section .circle-box {
        margin-top: 20px
    }
}

section.conference-view-section .circle-box::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border: 3px solid rgba(0, 0, 0, .1);
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, .7) 0 5px 30px 0
}

@media (max-width:1250px) {
    section.conference-view-section .circle-box::after {
        height: 460px;
        width: 460px
    }
}

@media (max-width:991px) {
    section.conference-view-section .circle-box::after {
        height: 350px;
        width: 350px
    }
}

@media (max-width:767px) {
    section.conference-view-section .circle-box::after {
        height: auto;
        width: 100%
    }
}

section.conference-view-section .circle-box img {
    height: 600px;
    width: 600px;
    overflow: hidden;
    border-radius: 50%
}

@media (max-width:1250px) {
    section.conference-view-section .circle-box img {
        height: 500px;
        width: 500px
    }
}

@media (max-width:991px) {
    section.conference-view-section .circle-box img {
        height: 380px;
        width: 380px
    }
}

@media (max-width:767px) {
    section.conference-view-section .circle-box img {
        height: auto;
        width: 100%;
        border-radius: 70px
    }
}

@media (max-width:350px) {
    section.conference-view-section .circle-box img {
        height: auto;
        width: 100%;
        border-radius: 50px
    }
}

section.conference-view-section .circle-box .youtobe-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    border: 3px dashed #fff;
    border-radius: 50%;
    padding: 10px
}

section.conference-view-section .circle-box .youtobe-play-icon a:hover svg path {
    fill: red
}

@media (max-width:767px) {
    section.conference-view-section .circle-box .youtobe-play-icon {
        border: 2px dashed #fff;
        padding: 5px
    }

    section.conference-view-section .circle-box .youtobe-play-icon a svg {
        width: 50px;
        height: 50px
    }
}

section.conference-view-section .conferece-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center
}

section.conference-view-section .conferece-info-box h1 {
    font-size: 40px;
    line-height: 50px
}

section.conference-view-section .conferece-info-box p {
    color: #ffc107;
    font-size: 20px;
    line-height: 25px
}

section.conference-view-section .conferece-info-box ul {
    display: flex
}

section.conference-view-section .conferece-info-box ul li {
    -webkit-margin-end: 20px;
    margin-inline-end: 20px
}

section.conference-view-section .conferece-info-box ul li .icon-text {
    display: flex;
    align-items: center
}

section.conference-view-section .conferece-info-box ul li .icon-text svg {
    width: 70px;
    height: 70px;
    margin-right: 15px
}

section.conference-view-section .conferece-info-box ul li .icon-text svg path {
    stroke: linear-gradient(274.88deg, #fc502b 0%, #ff9431 107.95%)
}

section.conference-view-section .conferece-info-box ul li .icon-text span {
    color: #e9ecef;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px
}

@media (max-width:1250px) {
    section.conference-view-section .conferece-info-box h1 {
        font-size: 30px;
        line-height: 40px
    }

    section.conference-view-section .conferece-info-box ul li .icon-text svg {
        width: 60px;
        height: 60px
    }

    section.conference-view-section .conferece-info-box ul li .icon-text span {
        font-size: 18px;
        font-weight: 500;
        line-height: 22px
    }
}

@media (max-width:991px) {
    section.conference-view-section .conferece-info-box h1 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 15px
    }

    section.conference-view-section .conferece-info-box p {
        font-size: 16px
    }

    section.conference-view-section .conferece-info-box ul li .icon-text svg {
        width: 40px;
        height: 40px
    }

    section.conference-view-section .conferece-info-box ul li .icon-text span {
        font-size: 14px;
        font-weight: 500;
        line-height: 18px
    }
}

@media (max-width:767px) {
    section.conference-view-section .conferece-info-box h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 12px
    }

    section.conference-view-section .conferece-info-box p {
        font-size: 14px;
        text-align: justify
    }

    section.conference-view-section .conferece-info-box ul li .icon-text svg {
        width: 35px;
        height: 35px;
        margin-right: 5px
    }

    section.conference-view-section .conferece-info-box ul li .icon-text span {
        font-size: 12px;
        font-weight: 400;
        line-height: 16px
    }
}

@media (max-width:350px) {
    section.conference-view-section .conferece-info-box h1 {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 12px
    }

    section.conference-view-section .conferece-info-box p {
        font-size: 12px;
        text-align: justify;
        line-height: 18px
    }

    section.conference-view-section .conferece-info-box ul li .icon-text svg {
        width: 30px;
        height: 30px;
        margin-right: 5px
    }

    section.conference-view-section .conferece-info-box ul li .icon-text span {
        font-size: 10px;
        font-weight: 400;
        line-height: 12px
    }
}

section.conference-view-section .spicer-box-image {
    margin: 20px
}

section.conference-view-section .spicer-box-image figure {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    position: relative
}

section.conference-view-section .spicer-box-image figure::after {
    content: '';
    top: -25px;
    left: -25px;
    height: 184px;
    width: 92px;
    z-index: -1;
    position: absolute;
    background-color: #fe8643;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-image: url(../images/half-circle-img.png);
    mask-image: url(../images/half-circle-img.png)
}

section.conference-view-section .spicer-box-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:1250px) {
    section.conference-view-section .spicer-box-image figure {
        width: 126px;
        height: 126px;
        padding: 4px
    }

    section.conference-view-section .spicer-box-image figure::after {
        content: '';
        top: -22px;
        left: -22px;
        height: 170px;
        width: 85px
    }
}

@media (max-width:991px) {
    section.conference-view-section .spicer-box-image figure {
        width: 116px;
        height: 116px;
        padding: 4px
    }

    section.conference-view-section .spicer-box-image figure::after {
        content: '';
        top: -18px;
        left: -18px;
        height: 152px;
        width: 76px
    }
}

@media (max-width:767px) {
    section.conference-view-section .spicer-box-image {
        margin: 10px
    }

    section.conference-view-section .spicer-box-image figure {
        width: 100px;
        height: 100px;
        padding: 3px
    }

    section.conference-view-section .spicer-box-image figure::after {
        content: '';
        top: -12px;
        left: -12px;
        height: 124px;
        width: 62px
    }
}

@media (max-width:500px) {
    section.conference-view-section .spicer-box-image {
        margin: 10px
    }

    section.conference-view-section .spicer-box-image figure {
        width: 60px;
        height: 60px;
        padding: 2px
    }

    section.conference-view-section .spicer-box-image figure::after {
        content: '';
        top: -8px;
        left: -8px;
        height: 76px;
        width: 38px
    }
}

section.conference-view-section .spicer-box-info .top-design {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 20px
}

section.conference-view-section .spicer-box-info .top-design svg {
    width: 60px;
    height: 60px
}

section.conference-view-section .spicer-box-info p {
    color: #fff;
    font-size: 20px;
    line-height: 28px
}

section.conference-view-section .spicer-box-info h3 {
    font-size: 24px;
    color: #ffc107;
    line-height: 25px;
    margin: 10px 0
}

section.conference-view-section .spicer-box-info h4 {
    color: #fff;
    font-size: 22px
}

@media (max-width:1250px) {
    section.conference-view-section .spicer-box-info .top-design {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        margin-bottom: 15px
    }

    section.conference-view-section .spicer-box-info .top-design svg {
        width: 50px;
        height: 50px
    }

    section.conference-view-section .spicer-box-info p {
        font-size: 18px;
        line-height: 25px
    }

    section.conference-view-section .spicer-box-info h3 {
        font-size: 20px;
        line-height: 25px
    }

    section.conference-view-section .spicer-box-info h4 {
        font-size: 17px
    }
}

@media (max-width:991px) {
    section.conference-view-section .spicer-box-info .top-design {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        margin-bottom: 15px
    }

    section.conference-view-section .spicer-box-info .top-design svg {
        width: 40px;
        height: 40px
    }

    section.conference-view-section .spicer-box-info p {
        font-size: 14px;
        line-height: 20px
    }

    section.conference-view-section .spicer-box-info h3 {
        font-size: 16px;
        line-height: 20px
    }

    section.conference-view-section .spicer-box-info h4 {
        font-size: 15px
    }
}

@media (max-width:767px) {
    section.conference-view-section .spicer-box-info .top-design {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 10px
    }

    section.conference-view-section .spicer-box-info .top-design svg {
        width: 30px;
        height: 30px
    }

    section.conference-view-section .spicer-box-info p {
        font-size: 12px;
        line-height: 18px
    }

    section.conference-view-section .spicer-box-info h3 {
        font-size: 14px;
        line-height: 20px;
        margin: 5px 0
    }

    section.conference-view-section .spicer-box-info h4 {
        font-size: 12px
    }
}

@media (max-width:500px) {
    section.conference-view-section .spicer-box-info .top-design {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        margin-bottom: 10px
    }

    section.conference-view-section .spicer-box-info .top-design svg {
        width: 20px;
        height: 20px
    }

    section.conference-view-section .spicer-box-info p {
        font-size: 10px;
        line-height: 15px;
        margin-bottom: 5px
    }

    section.conference-view-section .spicer-box-info h3 {
        font-size: 12px;
        line-height: 20px;
        margin: 0
    }

    section.conference-view-section .spicer-box-info h4 {
        font-size: 10px
    }
}

section.conference-view-section-programm {
    position: relative;
    padding: 40px 0
}

section.conference-view-section-programm ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

section.conference-view-section-programm ul li {
    width: 30%;
    border: 2px dashed #001482;
    margin: 20px;
    padding: 10px;
    border-radius: 20px;
    transition: all .5s ease-in-out
}

section.conference-view-section-programm ul li a.button-conference-information {
    background-color: #ffc107;
    display: block;
    border-radius: 15px;
    display: flex;
    align-items: center;
    transition: all .6s ease-in-out
}

section.conference-view-section-programm ul li a.button-conference-information .button-icon {
    min-width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 10px;
    border-radius: 50%;
    transition: all .7s ease-out
}

section.conference-view-section-programm ul li a.button-conference-information .button-icon svg {
    width: 40px;
    height: 40px
}

section.conference-view-section-programm ul li a.button-conference-information .button-icon svg path {
    fill: #001482;
    transition: .4s ease-in-out
}

section.conference-view-section-programm ul li a.button-conference-information .button-name {
    color: #001482;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500
}

section.conference-view-section-programm ul li:hover,
section.conference-view-section-programm ul li:hover a .button-icon {
    background-color: #ffc107
}

.resume-menu nav.menu ul li a:hover,
section.conference-view-section-programm ul li:hover a {
    background-color: #fff
}

.langueag-box .language-content:hover .language-icon .outline svg path,
.student-resume-education .content-student-education .educations-list .education-box .icon-line .icon svg path,
section.conference-view-section-programm ul li:hover a .button-icon svg path {
    fill: #fff
}

@media (max-width:1250px) {
    section.conference-view-section-programm ul {
        padding: 20px 0
    }

    section.conference-view-section-programm ul li {
        margin: 10px;
        padding: 8px
    }

    section.conference-view-section-programm ul li a.button-conference-information {
        border-radius: 15px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon {
        min-width: 50px;
        height: 50px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon svg {
        width: 28px;
        height: 28px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-name {
        font-size: 16px;
        line-height: 22px
    }
}

@media (max-width:991px) {
    section.conference-view-section-programm ul {
        padding: 0
    }

    section.conference-view-section-programm ul li {
        margin: 8px;
        padding: 8px
    }

    section.conference-view-section-programm ul li a.button-conference-information {
        border-radius: 15px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon {
        min-width: 50px;
        height: 50px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon svg {
        width: 28px;
        height: 28px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-name {
        font-size: 16px;
        line-height: 22px
    }
}

@media (max-width:767px) {
    section.conference-view-section-programm ul {
        padding: 0
    }

    section.conference-view-section-programm ul li {
        margin: 5px;
        padding: 5px;
        border-width: 1px;
        border-radius: 15px
    }

    section.conference-view-section-programm ul li a.button-conference-information {
        border-radius: 12px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon {
        min-width: 40px;
        height: 40px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon svg {
        width: 20px;
        height: 20px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-name {
        font-size: 14px;
        line-height: 20px
    }
}

@media (max-width:600px) {
    section.conference-view-section-programm {
        padding: 20px 0
    }

    section.conference-view-section-programm ul {
        padding: 0
    }

    section.conference-view-section-programm ul li {
        width: 46%;
        margin: 5px;
        padding: 5px;
        border-width: 1px;
        border-radius: 15px
    }

    section.conference-view-section-programm ul li a.button-conference-information {
        border-radius: 12px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon {
        min-width: 40px;
        height: 40px;
        margin: 5px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon svg {
        width: 20px;
        height: 20px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-name {
        font-size: 12px;
        line-height: 20px
    }
}

@media (max-width:350px) {
    section.conference-view-section-programm {
        padding: 20px 0
    }

    section.conference-view-section-programm ul {
        padding: 0
    }

    section.conference-view-section-programm ul li {
        width: 45%;
        margin: 5px;
        padding: 3px;
        border-width: 1px;
        border-radius: 15px
    }

    section.conference-view-section-programm ul li a.button-conference-information {
        border-radius: 12px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon {
        min-width: 30px;
        height: 30px;
        margin: 5px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-icon svg {
        width: 15px;
        height: 15px
    }

    section.conference-view-section-programm ul li a.button-conference-information .button-name {
        font-size: 10px;
        line-height: 12px;
        font-weight: 400
    }
}

section.conferences-view-gallery h1 {
    font-size: 50px;
    text-align: center;
    color: #000;
    padding: 1%
}

section.conferences-view-gallery #gallery {
    -moz-column-count: 4;
    column-count: 5;
    -moz-column-gap: 20px;
    column-gap: 20px
}

@media (max-width:1200px) {
    section.conferences-view-gallery #gallery {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media (max-width:800px) {
    section.conferences-view-gallery #gallery {
        -moz-column-count: 2;
        column-count: 2;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

@media (max-width:600px) {
    section.conferences-view-gallery #gallery {
        -moz-column-count: 1;
        column-count: 1
    }
}

section.conferences-view-gallery #gallery img,
section.conferences-view-gallery #gallery video {
    width: 100%;
    height: auto;
    margin: 4% auto;
    box-shadow: -3px 5px 15px #000;
    cursor: pointer;
    transition: all .2s
}

.resume-about-content .about-img-box .student-about-img img,
section.conferences-view-gallery .modal-img,
section.conferences-view-gallery .model-vid {
    width: 100%;
    height: auto
}

section.conferences-view-gallery,
section.conferences-view-gallery .modal-body {
    padding: 0
}

section.edu-form-section {
    padding: 70px 0;
    background-color: #283891
}

section.edu-form-section .container .btn-application {
    text-align: center
}

section.edu-form-section h2 {
    text-align: center;
    font-size: 30px;
    color: #fff
}

@media (max-width:1250px) {
    section.edu-form-section {
        padding: 60px 0
    }

    section.edu-form-section h2 {
        font-size: 30px
    }

    section.edu-form-section .subtitle {
        margin-bottom: 20px
    }
}

@media (max-width:991px) {
    section.edu-form-section {
        padding: 40px 0
    }

    section.edu-form-section h2 {
        font-size: 20px
    }

    section.edu-form-section .subtitle {
        margin-bottom: 10px
    }
}

@media (max-width:767px) {
    section.edu-form-section {
        padding: 30px 0 10px
    }

    section.edu-form-section h2 {
        font-size: 16px
    }

    section.edu-form-section .subtitle {
        font-size: 14px;
        margin-bottom: 10px
    }
}

.edu-type-content ul {
    margin: 20px 0 30px
}

.edu-type-content ul li.border-right {
    border-right: 2px dashed rgba(204, 204, 204, .5) !important
}

.edu-type-content ul li {
    margin: 0 30px;
    padding: 0 20px;
    display: flex;
    flex-direction: column
}

.edu-type-content ul li .icon svg g {
    fill: #fe8643
}

.edu-type-content ul li .summ {
    margin: 15px 0 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 25px;
    color: #f6f8fd
}

.edu-type-content ul li .edu-form {
    font-size: 20px;
    font-weight: 500;
    color: #ffc107
}

@media (max-width:1250px) {
    .edu-type-content ul li {
        margin: 0
    }

    .edu-type-content ul li .summ {
        font-size: 24px
    }

    .edu-type-content ul li .edu-form {
        font-size: 18px
    }
}

@media (max-width:991px) {
    .edu-type-content ul li .icon svg {
        width: 60px;
        height: 60px
    }

    .edu-type-content ul li .summ {
        font-size: 20px
    }

    .edu-type-content ul li .edu-form {
        font-size: 16px
    }
}

@media (max-width:767px) {
    .edu-type-content ul {
        display: flex;
        flex-direction: column;
        margin: 20px 0
    }

    .edu-type-content ul li.border-right {
        border-right: none !important;
        border-bottom: 1px dashed rgba(204, 204, 204, .8) !important
    }

    .edu-type-content ul li {
        margin: 5px 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center
    }

    .edu-type-content ul li div span {
        display: block
    }

    .edu-type-content ul li .icon {
        margin-right: 10px
    }

    .edu-type-content ul li .summ {
        margin: 0;
        font-size: 16px;
        line-height: 20px
    }

    .edu-type-content ul li .edu-form {
        font-size: 12px
    }
}

section.curriculum-section {
    padding: 70px 0;
    position: relative
}

section.curriculum-section h2 {
    text-align: center;
    text-transform: uppercase
}

@media (max-width:1250px) {
    section.curriculum-section {
        padding: 60px 0
    }

    section.curriculum-section h2 {
        font-size: 30px
    }
}

@media (max-width:991px) {
    section.curriculum-section {
        padding: 50px 0
    }

    section.curriculum-section h2 {
        font-size: 20px
    }
}

@media (max-width:767px) {
    section.curriculum-section {
        padding: 40px 0
    }

    section.curriculum-section h2 {
        font-size: 16px
    }
}

.resume-about-content .about-info-box .adress ul,
.year-content {
    margin-bottom: 20px
}

.year-content .curriculum-year-content {
    padding: 10px;
    border: 1px solid #8b94ab;
    box-shadow: 4px 4px 13.100000381469727px 0 #0000001a;
    border-radius: 10px
}

.edu-type-content ul,
.year-content .curriculum-year-content .semesters-box {
    display: flex;
    justify-content: space-between
}

.year-content .curriculum-year-content .semesters-box .boxes {
    width: calc(50% - 7px)
}

.year-content .curriculum-year-content .semesters-box .horizantal-border {
    border-right: 2px solid #e9ecef
}

@media (max-width:600px) {
    .year-content .curriculum-year-content .semesters-box {
        justify-content: start;
        flex-direction: column
    }

    .year-content .curriculum-year-content .semesters-box .boxes {
        width: 100% !important
    }

    .year-content .curriculum-year-content .semesters-box .horizantal-border {
        display: none
    }
}

.year-title {
    font-size: 18px;
    font-weight: 600;
    color: #283891;
    text-align: center;
    display: block;
    border-bottom: 2px solid #e9ecef
}

@media (max-width:767px) {
    .year-title {
        font-size: 16px
    }
}

.semester-title {
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: lowercase;
    color: #fc502b;
    text-align: center;
    display: block
}

@media (max-width:767px) {
    .semester-title {
        font-size: 12px
    }
}

.curriculum-content-box {
    height: 100%;
    padding: 10px 0
}

.curriculum-content-box ul li {
    padding: 5px 0;
    display: flex;
    align-items: center
}

.curriculum-content-box ul li span.icon {
    margin-right: 5px
}

.curriculum-content-box ul li span.icon svg {
    width: 15px;
    height: 15px
}

.curriculum-content-box ul li span.icon svg path,
.exit-btn:hover svg path,
.resume-menu nav.menu ul li a:hover svg path {
    fill: #283891
}

@media (max-width:767px) {
    .curriculum-content-box ul li span.icon svg {
        width: 12px;
        height: 12px
    }
}

.curriculum-content-box ul li span.text-orange,
.curriculum-content-box ul li.orange span.text {
    color: #283891 !important
}

.curriculum-content-box ul li span.text,
.student-resume-journals .journals-content .article-info p {
    font-size: 18px
}

@media (max-width:1250px) {
    .curriculum-content-box ul li span.text {
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 1px
    }
}

@media (max-width:767px) {
    .curriculum-content-box ul li span.text {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 1px
    }

    .curriculum-content-box ul li span.icon,
    .curriculum-content-box ul li span.text {
        line-height: 18px
    }
}

.curriculum-content-box ul li.orange span.icon {
    margin-right: 5px
}

.curriculum-content-box ul li.orange span.icon svg path {
    fill: #000
}

.resume-menu {
    position: fixed;
    z-index: 999
}

.resume-menu nav.menu ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #fc502b;
    margin: 20px;
    border-radius: 10px;
    transition: all .3s;
    box-shadow: rgba(14, 30, 37, .12) 0 2px 4px 0, rgba(14, 30, 37, .32) 0 2px 16px 0
}

.resume-menu nav.menu ul li a svg,
.student-resume-education .content-student-education .educations-list .education-box .icon-line .icon svg {
    width: 30px;
    height: 30px
}

.resume-menu nav.menu ul li a svg path {
    fill: #fff;
    fill-rule: evenodd;
    clip-rule: evenodd
}

@media (max-width:991px) {
    .resume-menu {
        left: 0;
        right: 0;
        bottom: 0
    }

    .resume-menu nav.menu ul {
        display: flex
    }

    .resume-menu nav.menu ul li {
        width: 100%
    }

    .resume-menu nav.menu ul li a {
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: #ccdbe8 3px 3px 6px 0 inset, rgba(255, 255, 255, .5) -3px -3px 6px 1px inset
    }
}

.inSection {
    background-color: #fff !important
}

.inSection svg path {
    fill: #283891 !important
}

.bg-table-back-design {
    padding: 0 !important;
    background-image: url(../images/resume/body_bg_resume.png);
    background-size: contain;
    background-repeat: repeat
}

.bg-table-back-design .container {
    padding: 0 100px
}

@media (max-width:991px) {
    .bg-table-back-design .container {
        padding: 0 20px
    }
}

.student-resume-section {
    padding: 0 !important
}

.student-resume-section .about-section {
    position: relative;
    background-color: rgba(40, 56, 145, .9);
    padding: 40px 0
}

.header-resume .header-resume-bg::before,
.resume-footer .resume-footer-bg::before,
.student-resume-achievements .before-backgriund::before,
.student-resume-master-class .master-class-section::before,
.student-resume-section .about-section::before {
    content: '';
    background-color: #283891;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

@media (max-width:991px) {
    .resume-about-content .about-boxes {
        flex-direction: column-reverse
    }
}

.resume-about-content .about-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.resume-about-content .about-info-box h2 {
    color: #fc502b;
    margin-bottom: 0
}

.resume-about-content .about-info-box h1 {
    margin: 0 0 20px;
    text-transform: uppercase;
    font-size: 55px;
    line-height: 60px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff
}

.resume-about-content .about-info-box p {
    color: rgba(255, 255, 255, .7);
    font-weight: 400;
    letter-spacing: 1px
}

@media (max-width:1250px) {
    .resume-about-content .about-info-box h1 {
        font-size: 32px;
        line-height: 40px
    }

    .resume-about-content .about-info-box p {
        font-size: 14px
    }
}

.resume-about-content .about-info-box .actions {
    margin-top: 20px;
    display: flex;
    gap: 15px
}

.resume-about-content .about-info-box .actions .btn,
.resume-about-content .about-info-box .actions .btns-resume {
    outline: 0;
    padding: 20px;
    box-shadow: 0 15px 30px 0 #071a8433;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 10px;
    border: 2px solid inherit;
    transition: all .2s
}

.resume-about-content .about-info-box .adress ul li a {
    color: rgba(255, 255, 255, .9);
    text-decoration: underline
}

.resume-about-content .about-info-box .adress ul li a svg {
    width: 20px;
    height: 20px;
    margin-right: 10px
}

.resume-about-content .about-info-box .adress ul li a svg path {
    fill: rgba(255, 255, 255, .9);
    transition: .3s ease-in-out
}

@media (max-width:991px) {
    .resume-about-content .about-info-box h2 {
        color: #fc502b;
        text-align: center
    }

    .resume-about-content .about-info-box h1 {
        text-align: center;
        font-size: 55px;
        line-height: 60px
    }

    .resume-about-content .about-info-box .actions,
    .resume-about-content .about-info-box .adress ul,
    .resume-about-content .about-info-box p {
        text-align: center
    }
}

@media (max-width:767px) {
    .resume-about-content .about-info-box h2 {
        color: #fc502b;
        text-align: center
    }

    .resume-about-content .about-info-box h1 {
        font-size: 30px;
        line-height: 40px
    }
}

.resume-about-content .about-img-box {
    display: flex;
    align-items: center;
    margin: 40px 0
}

@media (max-width:767px) {
    .resume-about-content .about-img-box {
        flex-direction: column
    }
}

.resume-about-content .about-img-box .student-about-img {
    position: relative;
    justify-content: center;
    width: 100%;
    align-items: end
}

.resume-about-content .about-img-box .student-about-img::before {
    content: '';
    position: absolute;
    top: 96%;
    height: 6%;
    width: 100%;
    left: 0;
    right: 0;
    background: url(../images/liner.svg) no-repeat center bottom;
    background-size: contain
}

.resume-about-content .about-img-box .contacts ul {
    display: flex;
    flex-direction: column;
    margin: 10px;
    gap: 10px
}

.resume-about-content .about-img-box .contacts ul li {
    padding: 5px
}

.resume-about-content .about-img-box .contacts ul li a svg {
    width: 60px;
    height: 60px
}

.exit-btn svg path,
.resume-about-content .about-img-box .contacts ul li a svg path {
    fill: #fff;
    transition: .3s ease-in-out
}

@media (max-width:1250px) {
    .resume-about-content .about-img-box .contacts ul {
        gap: 5px
    }

    .resume-about-content .about-img-box .contacts ul li a svg {
        width: 50px;
        height: 50px
    }
}

@media (max-width:991px) {
    .resume-about-content .about-img-box .contacts ul {
        gap: 10px
    }

    .resume-about-content .about-img-box .contacts ul li a svg {
        width: 60px;
        height: 60px
    }
}

@media (max-width:767px) {
    .resume-about-content .about-img-box .contacts ul {
        gap: 5px;
        flex-direction: row
    }

    .resume-about-content .about-img-box .contacts ul li a svg {
        width: 40px;
        height: 40px
    }
}

@media (max-width:991px) {
    .resume-about-content .about-img-box {
        justify-content: center;
        margin: 0 0 40px;
        text-align: center
    }

    .resume-about-content .about-img-box .student-about-img {
        height: 500px;
        width: auto
    }

    .resume-about-content .about-img-box .student-about-img img {
        height: 100%;
        width: auto
    }
}

@media (max-width:767px) {
    .resume-about-content .about-img-box {
        text-align: center;
        margin: 0 0 10px
    }

    .resume-about-content .about-img-box .student-about-img {
        height: 350px;
        width: auto
    }
}

.bg-blue,
.bg-orange {
    box-shadow: rgba(255, 255, 255, .2) 0 8px 24px !important
}

.bg-orange {
    background: linear-gradient(274.88deg, #fc502b 0%, #ff9431 107.95%)
}

.bg-blue {
    background: linear-gradient(93.56deg, #283891 .47%, #001482 97.34%)
}

.student-resume-education {
    padding: 50px 0
}

.student-resume-education h2 {
    color: #283891;
    font-size: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 10px solid #fc502b;
    line-height: 40px
}

@media (max-width:991px) {
    .student-resume-education h2 {
        font-size: 30px;
        line-height: 30px
    }
}

.student-resume-education .content-student-education {
    margin-bottom: 30px
}

.student-resume-education .content-student-education .educations-list .education-box {
    box-shadow: rgba(0, 0, 0, .05) 0 6px 24px 0, rgba(0, 0, 0, .08) 0 0 0 1px;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    height: 100%;
    padding: 15px;
    display: flex;
    margin-bottom: 30px;
    border-radius: 5px
}

.student-resume-education .content-student-education .educations-list .education-box .icon-line .icon {
    width: 60px;
    height: 60px;
    display: block;
    background-color: #fc502b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0
}

.student-resume-education .content-student-education .educations-list .education-box .icon-line .horizantal-line {
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
    margin-left: 28px;
    display: block;
    width: 4px;
    height: calc(100% - 80px);
    background-color: #ccc
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .year {
    display: inline-block;
    padding: 5px 15px;
    margin: 7px;
    font-size: 18px;
    font-weight: 500;
    background-color: #e9ecef;
    border-radius: 30px;
    color: #495057
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .edu-type-institution {
    display: block;
    margin-left: 10px
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .edu-type-institution .edu-type {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 25px
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .edu-type-institution .institution {
    font-size: 24px;
    font-weight: 500;
    color: #8b94ab;
    line-height: 25px
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .specialty-text {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #283891
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .works-list {
    margin-left: 30px
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .works-list ul {
    list-style: disc
}

.student-resume-education .content-student-education .educations-list .education-box .education-info .works-list ul -webkit- li {
    color: #283891;
    font-weight: 600;
    font-size: 16px
}

@media (max-width:991px) {
    .student-resume-education .content-student-education .educations-list .education-box {
        margin-bottom: 30px
    }

    .student-resume-education .content-student-education .educations-list .education-box .icon-line .icon {
        width: 40px;
        height: 40px
    }

    .student-resume-education .content-student-education .educations-list .education-box .icon-line .icon svg {
        width: 20px;
        height: 20px
    }

    .student-resume-education .content-student-education .educations-list .education-box .icon-line .horizantal-line {
        margin-left: 18px;
        width: 3px
    }

    .student-resume-education .content-student-education .educations-list .education-box .education-info .year {
        display: inline-block;
        padding: 2px 15px;
        margin: 5px;
        font-size: 14px;
        border-radius: 25px
    }

    .student-resume-education .content-student-education .educations-list .education-box .education-info .edu-type-institution .edu-type {
        font-size: 20px
    }

    .student-resume-education .content-student-education .educations-list .education-box .education-info .edu-type-institution .institution {
        font-size: 18px
    }

    .student-resume-education .content-student-education .educations-list .education-box .education-info .specialty-text {
        font-size: 16px
    }

    .student-resume-education .content-student-education .educations-list .education-box .education-info .works-list {
        margin-left: 30px
    }

    .student-resume-education .content-student-education .educations-list .education-box .education-info .works-list ul {
        list-style: disc
    }

    .student-resume-education .content-student-education .educations-list .education-box .education-info .works-list ul li {
        font-size: 14px
    }
}

.student-resume-achievements {
    padding-top: 0
}

.student-resume-achievements .before-backgriund {
    position: relative;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 56, 145, .85)
}

.student-resume-achievements h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 30px;
    padding-left: 10px;
    line-height: 40px
}

.student-resume-achievements h2 span {
    font-size: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
    line-height: 40px;
    color: #fc502b
}

@media (max-width:991px) {

    .student-resume-achievements h2,
    .student-resume-achievements h2 span {
        font-size: 30px
    }
}

.student-resume-achievements .archievements-content .archievements-box {
    background-color: rgba(255, 255, 255, .15);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: rgba(99, 99, 99, .2) 0 0 8px 0;
    margin-bottom: 30px;
    padding: 15px;
    display: flex;
    height: 100%
}

.student-resume-achievements .archievements-content .archievements-box:last-child {
    margin-bottom: 0 !important
}

.student-resume-achievements .archievements-content .archievements-box .icon-box {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.student-resume-achievements .archievements-content .archievements-box .icon-box .number {
    font-size: 70px;
    font-weight: 600;
    color: rgba(252, 80, 43, .7)
}

.student-resume-achievements .archievements-content .archievements-box .icon-box .icon svg {
    width: 50px
}

.student-resume-achievements .archievements-content .archievements-box .info-box .title {
    color: #fff;
    display: block;
    font-size: 28px;
    font-weight: 400;
    line-height: 28px;
    padding-bottom: 10px;
    border-bottom: 4px solid #fc502b
}

.student-resume-achievements .archievements-content .archievements-box .info-box .year {
    display: block;
    font-size: 24px;
    color: rgba(255, 255, 255, .5);
    font-weight: 600
}

.student-resume-achievements .archievements-content .archievements-box .info-box .discription {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7)
}

@media (max-width:991px) {
    .student-resume-achievements .archievements-content .archievements-box {
        margin-bottom: 30px
    }

    .student-resume-achievements .archievements-content .archievements-box:last-child {
        margin-bottom: 15px !important
    }

    .student-resume-achievements .archievements-content .archievements-box .icon-box {
        margin-right: 10px
    }

    .student-resume-achievements .archievements-content .archievements-box .icon-box .number {
        font-size: 50px;
        font-weight: 600
    }

    .student-resume-achievements .archievements-content .archievements-box .icon-box .icon svg {
        width: 40px
    }

    .student-resume-achievements .archievements-content .archievements-box .info-box .title {
        font-size: 22px;
        line-height: 28px
    }

    .student-resume-achievements .archievements-content .archievements-box .info-box .year {
        font-size: 20px
    }

    .student-resume-achievements .archievements-content .archievements-box .info-box .discription {
        font-size: 14px
    }
}

.langueag-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.langueag-box .language-content {
    background-color: rgba(255, 255, 255, .15);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: rgba(99, 99, 99, .2) 0 0 8px 0;
    margin: 15px 0;
    padding: 10px 20px;
    display: flex;
    align-items: center
}

.langueag-box .language-content:nth-child(2n) {
    flex-direction: row-reverse
}

.langueag-box .language-content:nth-child(2n) .language {
    text-align: end
}

.langueag-box .language-content .language-icon {
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
    background-color: #fff;
    transform: rotate(45deg);
    border-radius: 18px;
    padding: 5px;
    transition: all .4s ease-in-out
}

.langueag-box .language-content .language-icon .outline {
    border-radius: 15px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    border: 1px dashed #283891;
    display: flex;
    justify-content: center;
    align-items: center
}

.langueag-box .language-content .language-icon .outline svg {
    transform: rotate(-45deg);
    width: 75%;
    height: 75%
}

.langueag-box .language-content .language-icon .outline svg path {
    fill: #283891;
    transition: all .4s ease-in-out
}

.langueag-box .language-content .language {
    padding: 15px;
    border-radius: 20px
}

.langueag-box .language-content .language span.language-name {
    font-size: 20px;
    font-weight: 500;
    color: #fff
}

.langueag-box .language-content .language ul {
    display: flex;
    flex-wrap: wrap
}

.langueag-box .language-content .language ul li {
    margin: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
    background-color: #fff
}

.langueag-box .language-content .language ul li.there-is {
    background-color: #fc502b
}

.langueag-box .language-content:hover .language-icon {
    background-color: #283891
}

.langueag-box .language-content:hover .language-icon .outline {
    border-color: #fff
}

@media (max-width:1250px) {
    .langueag-box .language-content {
        justify-content: center
    }

    .langueag-box .language-content .language {
        padding: 15px;
        border-radius: 20px
    }

    .langueag-box .language-content .language span.language-name {
        font-size: 20px;
        font-weight: 500;
        color: #fff
    }

    .langueag-box .language-content .language ul {
        display: flex
    }

    .langueag-box .language-content .language ul li {
        margin: 5px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
        background-color: #fff
    }

    .langueag-box .language-content .language ul li.there-is {
        background-color: #fc502b
    }

    .langueag-box .language-content:hover .language-icon {
        background-color: #283891
    }

    .langueag-box .language-content:hover .language-icon .outline {
        border-color: #fff
    }

    .langueag-box .language-content:hover .language-icon .outline svg path {
        fill: #fff
    }
}

.student-resume-journals {
    min-height: calc(100vh - 147px)
}

.student-resume-journals .journals-content .article-info h2 {
    text-align: center;
    font-size: 40px;
    display: inline-block;
    background-color: #283891;
    padding: 5px 50px;
    border-top-left-radius: 40%;
    border-bottom-left-radius: 15%;
    border-top-right-radius: 30%;
    border-bottom-right-radius: 19%;
    color: #fff
}

.student-resume-journals .journals-content .article-info h3 {
    font-size: 24px;
    color: #0b0f19
}

.student-resume-journals .journals-content .article-info .info-boxes {
    justify-content: left
}

.student-resume-journals .journals-content .article-info .info-boxes .border-b {
    border-bottom: 4px dotted #ccc
}

.student-resume-journals .journals-content .article-info .info-boxes .box {
    display: flex;
    align-items: center;
    padding: 15px 0
}

.student-resume-journals .journals-content .article-info .info-boxes .box .text {
    padding: 10px
}

.student-resume-journals .journals-content .article-info .info-boxes .box .text p {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    line-height: 25px
}

.student-resume-journals .journals-content .article-info .info-boxes .box .icon {
    margin: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center
}

.student-resume-journals .journals-content .article-info .info-boxes .box .icon img {
    width: 80%;
    height: 80%
}

.student-resume-journals .journals-content .article-info .info-boxes .left-box {
    justify-content: end
}

.student-resume-journals .journals-content .article-info .info-boxes .left-box p {
    text-align: end
}

.student-resume-journals .journals-content .article-info .info-boxes .right-box p {
    text-align: left
}

@media (max-width:991px) {
    .student-resume-journals .journals-content .article-info h2 {
        font-size: 30px;
        padding: 5px 40px
    }

    .student-resume-journals .journals-content .article-info h3 {
        font-size: 20px;
        color: #0b0f19
    }

    .student-resume-journals .journals-content .article-info p {
        font-size: 14px
    }

    .student-resume-journals .journals-content .article-info .info-boxes .border-b {
        border-bottom: 3px dotted #ccc
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box {
        padding: 10px 0
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .text {
        padding: 10px
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .text p {
        font-weight: 700;
        font-size: 14px;
        line-height: 20px
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .text p.info {
        color: #283891
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .icon {
        margin: 10px;
        width: 60px;
        height: 60px
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .icon img {
        width: 80%;
        height: 80%
    }
}

@media (max-width:767px) {
    .student-resume-journals .journals-content .article-info h2 {
        font-size: 30px
    }

    .student-resume-journals .journals-content .article-info h3 {
        font-size: 18px;
        text-align: center
    }

    .student-resume-journals .journals-content .article-info p {
        text-align: center
    }

    .student-resume-journals .journals-content .article-info .info-boxes .border-b {
        border-bottom: 3px dotted #ccc
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .text {
        padding: 0
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .text p {
        line-height: 18px
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .icon {
        margin: 5px;
        width: 35px;
        height: 35px
    }

    .student-resume-journals .journals-content .article-info .info-boxes .box .icon img {
        width: 90%;
        height: 90%
    }
}

.student-resume-journals .journals-content .img-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%
}

.student-resume-journals .journals-content .img-box img {
    width: 100%;
    height: auto
}

.student-resume-master-class .master-class-section {
    position: relative;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 56, 145, .85)
}

.student-resume-master-class .master-class-section .master-class-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center
}

.student-resume-blogs .blogs-content .student-resume-blogs-card,
.student-resume-master-class .master-class-section .master-class-content .master-class-card {
    margin: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: rgba(99, 99, 99, .2) 0 0 8px 0
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content,
.student-resume-master-class .master-class-section .master-class-content .master-class-card .video {
    position: relative
}

.student-resume-master-class .master-class-section .master-class-content .master-class-card .video .youtobe-video {
    width: 100%
}

.student-resume-master-class .master-class-section .master-class-content .master-class-card .video .youtobe-video iframe {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.student-resume-master-class .master-class-section .master-class-content .master-class-card .video .info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
    display: flex;
    font-size: 14px;
    align-items: center
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .info .comment,
.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .info .like,
.student-resume-master-class .master-class-section .master-class-content .master-class-card .video .info .comment,
.student-resume-master-class .master-class-section .master-class-content .master-class-card .video .info .like {
    padding-left: 10px;
    font-size: 14px
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .info .comment svg,
.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .info .like svg,
.student-resume-master-class .master-class-section .master-class-content .master-class-card .video .info .comment svg,
.student-resume-master-class .master-class-section .master-class-content .master-class-card .video .info .like svg {
    width: 18px;
    height: 18px
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .info-text,
.student-resume-master-class .master-class-section .master-class-content .master-class-card .info-text {
    padding: 20px
}

.student-resume-master-class .master-class-section .master-class-content .master-class-card .info-text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    border-left: 8px solid #fc502b;
    padding-left: 10px
}

.student-resume-master-class .master-class-section .master-class-content .master-class-card .info-text p {
    color: rgba(255, 255, 255, .7);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

@media (max-width:991px) {
    .student-resume-master-class .master-class-section .master-class-content h2 {
        font-size: 30px
    }

    .student-resume-master-class .master-class-section .master-class-content .master-class-card .video .info .comment svg,
    .student-resume-master-class .master-class-section .master-class-content .master-class-card .video .info .like svg {
        width: 20px;
        height: 20px
    }

    .student-resume-master-class .master-class-section .master-class-content .master-class-card .info-text h3 {
        font-size: 20px
    }

    .student-resume-master-class .master-class-section .master-class-content .master-class-card .info-text p {
        font-size: 14px;
        color: rgba(255, 255, 255, .8)
    }
}

.student-resume-blogs {
    padding: 70px 0
}

.student-resume-blogs .blogs-content h2 {
    font-size: 40px;
    margin-bottom: 10px
}

.student-resume-blogs .blogs-content .student-resume-blogs-card {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .2)
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .image {
    overflow: hidden;
    background: #fff;
    border-radius: .5rem;
    position: relative;
    height: 14rem;
    transition: 250ms all ease-in-out;
    cursor: pointer
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .image img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
    display: flex;
    font-size: 14px;
    align-items: center
}

.student-resume-blogs .blogs-content .student-resume-blogs-card .info-text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #283891;
    border-left: 8px solid #283891;
    padding-left: 10px
}

@media (max-width:991px) {
    .student-resume-blogs .blogs-content h2 {
        font-size: 30px
    }

    .student-resume-blogs .blogs-content .student-resume-blogs-card {
        border-radius: 10px
    }

    .student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .image img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px
    }

    .student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .info .comment svg,
    .student-resume-blogs .blogs-content .student-resume-blogs-card .image-content .info .like svg {
        width: 20px;
        height: 20px
    }

    .student-resume-blogs .blogs-content .student-resume-blogs-card .info-text h3 {
        font-size: 20px
    }
}

.resume-footer .resume-footer-bg {
    position: relative;
    padding-top: 20px;
    width: 100%;
    background-color: rgba(40, 56, 145, .95)
}

.resume-footer .resume-footer-bg .footer-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px
}

.resume-footer .resume-footer-bg .footer-actions .btn-outline {
    padding: 5px 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border: 1px solid #283891;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    font-size: 16px;
    transition: .3s ease-in-out
}

.resume-footer .resume-footer-bg .footer-actions .btn-outline:hover,
.resume-footer .resume-footer-bg .footer-privacy p a:hover {
    color: #fc502b
}

@media (max-width:767px) {
    .resume-footer .resume-footer-bg .footer-actions {
        justify-content: center
    }

    .resume-footer .resume-footer-bg .footer-actions .btn-outline {
        font-size: 12px
    }
}

.resume-footer .resume-footer-bg .footer-privacy {
    padding: 20px 0 25px;
    border-top: 1px solid #6b7bb4;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width:1800px) {
    .resume-footer .resume-footer-bg .footer-privacy {
        margin-top: 30px;
        padding-bottom: 15px;
        padding-top: 15px
    }
}

@media (max-width:767px) {
    .resume-footer .resume-footer-bg .footer-privacy {
        margin-top: 0;
        display: block;
        text-align: center
    }
}

.resume-footer .resume-footer-bg .footer-privacy p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 0;
    color: #fff
}

@media (max-width:767px) {
    .resume-footer .resume-footer-bg .footer-privacy p {
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
        letter-spacing: 0;
        text-align: center;
        color: #8b94ab;
        padding-right: 0
    }
}

.resume-footer .resume-footer-bg .footer-privacy p a {
    font-size: inherit;
    color: inherit
}

@media (max-width:767px) {
    .resume-footer .resume-footer-bg .footer-privacy .public_offer a {
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
        letter-spacing: 0;
        text-align: center;
        color: #8b94ab
    }

    .resume-footer .resume-footer-bg {
        padding-bottom: 60px
    }
}

.header-resume {
    background-color: inherit;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.header-resume .header-resume-bg {
    position: relative;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 56, 145, .85)
}

@media (max-width:767px) {
    .header-resume .header-resume-bg {
        padding: 30px 0
    }
}

.article-cards,
.master-class-view-section {
    padding: 40px 0
}

.article-cards .article-card,
.master-class-info-card {
    margin: 20px 0;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    box-shadow: rgba(0, 0, 0, .05) 0 6px 24px 0, rgba(0, 0, 0, .08) 0 0 0 1px;
    padding: 20px;
    border-radius: 10px
}

.article-content h3 {
    font-size: 20px;
    color: #283891
}

.article-content p.discription {
    font-size: 14px;
    color: rgba(11, 15, 25, .7);
    font-weight: 500;
    margin-bottom: 0
}

.article-content .info-boxes .box {
    display: flex;
    height: 100%;
    align-items: center;
    margin: 10px 0
}

.article-content .info-boxes .box .text p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 14px
}

.article-content .info-boxes .box .text p a {
    font-size: 14px;
    color: #00264b;
    font-weight: 400
}

.article-content .info-boxes .box .text .type {
    color: #283891;
    font-weight: 500
}

.article-content .info-boxes .box .text .info,
.comments .send-comment-box .send-commet .sent-action button.cancel {
    color: #fc502b
}

.article-content .info-boxes .box .icon {
    width: 40px;
    height: 40px
}

.article-content .info-boxes .box .icon img {
    width: 90%;
    height: 90%
}

.article-content .info-boxes .right-box {
    justify-content: start
}

.article-content .info-boxes .right-box .text {
    text-align: start;
    margin-left: 10px
}

.article-content .info-boxes .left-box {
    justify-content: end
}

.article-content .info-boxes .left-box .text {
    text-align: end;
    margin-right: 10px
}

.article-content .info-boxes .border-b {
    border-bottom: 1px dashed rgba(11, 15, 25, .3)
}

.article-content .actions-article {
    padding-top: 10px;
    border-top: 1px solid #aaa;
    display: flex;
    justify-content: space-between
}

.article-content .actions-article ul {
    display: flex;
    gap: 10px
}

.article-content .actions-article ul li button {
    outline: 0;
    border: 0;
    background-color: none;
    background: 0 0;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: .3s ease-in-out
}

.article-content .actions-article ul li button span {
    font-size: 14px;
    color: #0b0f19;
    margin-left: 5px
}

.article-content .actions-article ul li button:hover {
    background-color: #eee
}

.article-content .actions-article .read-article {
    border: 1px dashed #283891;
    color: #283891;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, .25) 0 2px 5px -1px, rgba(0, 0, 0, .3) 0 1px 3px -1px;
    transition: all .3s ease-in-out
}

.article-content .actions-article .read-article:hover {
    color: #fc502b;
    border-color: #fc502b
}

@media (max-width:767px) {
    .article-content h3 {
        font-size: 16px;
        margin-bottom: 10px
    }

    .article-content .info-boxes .box {
        margin: 8px 0
    }

    .article-content .info-boxes .box .text p {
        font-size: 12px;
        line-height: 12px
    }

    .article-content .info-boxes .box .text .icon {
        width: 30px;
        height: 30px
    }

    .article-content .actions-article ul {
        gap: 8px
    }

    .article-content .actions-article ul li button img {
        width: 18px;
        height: 18px
    }

    .article-content .actions-article .read-article,
    .article-content .actions-article ul li button span,
    .article-content .info-boxes .box .text p a,
    .article-content p.discription {
        font-size: 12px
    }
}

.master-class-info-card {
    padding: 10px
}

.master-class-info-card .youtobe-video {
    border-radius: 10px
}

.master-class-info-card .image img {
    border-radius: 10px;
    width: 100%;
    height: auto
}

.master-class-info-card .info-text .star {
    margin: 10px 0 15px
}

.master-class-info-card .actions ul,
.master-class-info-card .info-text .star ul {
    display: flex;
    gap: 5px
}

.master-class-info-card .info-text .star ul li {
    width: 20px;
    height: 20px
}

.master-class-info-card .info-text .star ul li button {
    outline: 0;
    border: 0;
    background: 0 0;
    padding: 0;
    margin: 0
}

.master-class-info-card .info-text .star ul li img {
    width: 100%;
    height: 100%
}

.master-class-info-card .info-text .name {
    font-size: 20px;
    margin-bottom: 10px
}

.master-class-info-card .info-text p.discription {
    font-size: 14px
}

.master-class-info-card .info-text .discription-blog p {
    width: 100% !important
}

.master-class-info-card .info-text .discription-blog img {
    width: 100% !important;
    height: auto
}

.master-class-info-card .actions ul li {
    display: flex;
    background: #ebebeb;
    padding: 4px 20px;
    border-radius: 20px
}

.master-class-info-card .actions ul li button {
    outline: 0;
    border: 0;
    background: inherit;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px
}

.master-class-info-card .actions ul li button img {
    width: 25px;
    height: 25px
}

.master-class-info-card .actions ul li button span {
    font-size: 14px;
    font-weight: 500
}

@media (max-width:767px) {
    .master-class-info-card .info-text .star {
        margin: 8px 0 14px
    }

    .master-class-info-card .info-text .star ul li {
        width: 16px;
        height: 16px
    }

    .master-class-info-card .info-text .star ul li img {
        width: 100%;
        height: 100%
    }

    .master-class-info-card .info-text .name {
        font-size: 14px
    }

    .master-class-info-card .info-text p.discription {
        font-size: 12px
    }

    .master-class-info-card .actions ul li {
        padding: 2px 15px
    }

    .master-class-info-card .actions ul li button img {
        width: 18px;
        height: 18px
    }

    .master-class-info-card .actions ul li button span {
        font-size: 12px;
        font-weight: 500
    }
}

.card-title {
    margin-top: 30px;
    font-size: 16px;
    color: #283891;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc
}

.master-class-list {
    margin: 20px 0
}

.master-class-list .master-class-card {
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .7);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: rgba(0, 0, 0, .05) 0 6px 24px 0, rgba(0, 0, 0, .08) 0 0 0 1px;
    display: flex
}

.master-class-list .master-class-card .video {
    width: 45%
}

.master-class-list .master-class-card .video iframe,
.master-class-list .master-class-card .video img {
    border-radius: 10px
}

.master-class-list .master-class-card .video img {
    width: 100%;
    height: auto
}

.master-class-list .master-class-card .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    width: 55%
}

.master-class-list .master-class-card .info h4 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.master-class-list .master-class-card .info span {
    font-size: 12px;
    color: #283891
}

@media (max-width:767px) {
    .master-class-list .master-class-card {
        flex-direction: column
    }

    .master-class-list .master-class-card .info,
    .master-class-list .master-class-card .video {
        width: 100%
    }

    .master-class-list .master-class-card .video iframe,
    .master-class-list .master-class-card .video img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    .master-class-list .master-class-card .info h4 {
        font-size: 14px
    }
}

.comments {
    margin-top: 20px
}

.comments .send-comment-box .send-commet .form-control {
    border: 0;
    box-shadow: none;
    background-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.comments .send-comment-box .send-commet .sent-action {
    display: flex;
    justify-content: end
}

.comments .send-comment-box .send-commet .sent-action button {
    outline: 0;
    border: 0;
    background: inherit;
    padding: 3px 10px;
    border-radius: 18px;
    font-size: 12px;
    margin: 4px
}

.comments .send-comment-box .send-commet .sent-action button.cancel:hover {
    background-color: rgba(252, 80, 43, .1)
}

.comments .send-comment-box .send-commet .sent-action button.comment,
.exit-btn:hover {
    color: #283891
}

.comments .send-comment-box .send-commet .sent-action button.comment:hover {
    background-color: rgba(40, 56, 145, .1)
}

.comments .send-comment-box .comment-box {
    margin-bottom: 15px;
    display: flex;
    gap: 10px
}

.comments .send-comment-box .comment-box .user img {
    border-radius: 50%;
    width: 40px;
    height: 40px
}

.comments .send-comment-box .comment-box .user-info .user-name {
    font-weight: 600;
    color: #0b0f19;
    padding-right: 10px
}

.comments .send-comment-box .comment-box .user-info .date {
    font-weight: 400;
    color: #0b0f19
}

.comments .send-comment-box .comment-box .user-info .comment {
    color: rgba(11, 15, 25, .7);
    margin-bottom: 0
}

@media (max-width:767px) {
    .comments {
        height: 400px;
        overflow: hidden;
        overflow-y: auto
    }

    .comments::-webkit-scrollbar {
        width: 3px
    }

    .comments::-webkit-scrollbar-track {
        background-color: #eee;
        border-radius: 10px
    }

    .comments::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #aaa
    }
}

.comments .send-comment-box .send-commet .form-control {
    border-bottom: 1px solid #0b0f19;
    padding: .5rem .15rem;
    font-size: 12px
}

.comments .send-comment-box .comment-box .user-info .user-name,
.exit-btn {
    font-size: 14px
}

.comments .send-comment-box .comment-box .user-info .comment,
.comments .send-comment-box .comment-box .user-info .date {
    font-size: 12px
}

.comments .send-comment-box .comment-box .user-info .delete {
    font-size: 12px;
    color: red
}

.exit-btn {
    background: linear-gradient(274.88deg, #fc502b 0%, #ff9431 107.95%);
    box-shadow: rgba(255, 255, 255, .2) 0 8px 24px !important;
    padding: 10px 15px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 20px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    transition: .3s ease-in-out
}

.exit-btn svg {
    width: 14px;
    height: auto;
    margin-right: 5px
}


