@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/OpenSans-Light.ttf);
    font-weight: 300;
}

@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/OpenSans-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/OpenSans-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/OpenSans-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/OpenSans-Bold.ttf);
    font-weight: 700;
}

:root {
    --text-color: #1B1B1B;
    --text-color--alt: white;
    --text-color--alt-hover: #96C8AE;
    --color-corp: #0d635a;
    --bg-color: #F7F7F7;

    --color-white: #ffffff;
    --color-gray: #f4f5f5;
    --color-gray-hover: #d0d0d0;
    --color-accent: #0d635a;
    --color-accent-hover: #1f9c60;
    --color-primary: #181818;
    --color-blue: #377DF4;
    --color-yellow: #DFB956;
    --color-green: #88BA69;
    --color-turquoise: #8CBCBF;
    --color-brown: #C0AC9C;
    --color-red: #BE6262;

    --color-light-gray:#E5E5E5;
    --color-gray-caption:#AFAFAF;

    --padding-block: 40px;

    --box-radius: 16px;

    --transition-default: 0.2s;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: 'Open Sans';
    font-size: 16px;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}



.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
}



.base {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.19;
    color: var(--color-primary);
    background-color: var(--color-white);
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

.base__body {
    padding-top: 0px;
}

.base__body--foreign {
    padding-top: 145px;
}

.header__logo-all {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 1023px) {
    .base__body {
        padding-top: 0px;
    }
}

.base-pages {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.19;
    color: var(--color-primary);
    background-color: var(--color-white);
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

.base__body-pages {
    padding-top: 165px;
}

.base__body-pages--foreign {
    padding-top: 145px;
}

@media screen and (max-width: 1023px) {
    .base__body-pages {
        padding-top: 110px;
    }
}

.container {
    max-width: 1440px;
    box-sizing: border-box;
    padding: 0 50px;
    margin: 0 auto;
}

.text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--text-color);
}


.title {
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    margin: 0;
}

.title-pages {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    margin: 0;
    padding-bottom: 50px
}


.subtitle {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: var(--text-color);
    margin: 0;
    margin-bottom: 8px;
}


.title-card {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: var(--text-color);
    margin: 0;
    margin-bottom: 8px;
}

.text--white,
.title--white,
.subtitle--white {
    color: var(--text-color--alt);
}

.subtitle--grey {
    color: #B8B8B8;
}

.title--green {
    color: var(--color-corp);
}

.title--small {
    font-size: 24px;
}

.section__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
	
    margin: 0;
    margin-bottom: 30px;
    margin-right: 25px;
    display: inline-block;
}



.section__more-link {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-decoration: none;
    color: var(--color-corp);
    transition: all 0.2s;
}

.section__more-link:hover {
    color: #54A17A;
}

.header {
    --header-animation-time: 0.6s;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
}

.header__inner--mobile {
    display: none;
}

.header__menu {
    margin-left: 24px;
}

.header__toggle {
    display: none;
}

.header--foreign .header__logo {
    margin-right: 20px;
}

.header--foreign .header__menu {
    display: flex;
    margin-left: 0;
}

@media screen and (max-width: 1023px) {
    .header::before {
        content: "";
        position: fixed;
        z-index: 1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #000000;
        opacity: 0.5;
        transition: opacity var(--header-animation-time), visibility var(--header-animation-time);
    }

    .header:not(.header--open)::before {
        opacity: 0;
        visibility: hidden;
    }

    .header__menu {
        display: none;
    }

    .header__toggle {
        display: block;
        margin-left: 24px;
    }

    .header__inner--mobile {
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        display: block;
        padding-bottom: 0;
        background-color: var(--color-white);
        border-radius: 0 0 24px 24px;
        transition: transform var(--header-animation-time) cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0s, visibility 0s;
    }

    .header:not(.header--open) .header__inner--mobile {
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition-delay: 0s, var(--header-animation-time), var(--header-animation-time);
    }

    .header__headline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 19px;
        border-bottom: 1px solid #cccccc;
    }

    .header--foreign .header__menu {
        display: none;
    }
	.header__logo-all {
		flex-direction: column;
	}
	
	.logo__image_prioritet {
		margin-left: 15px;
	}
}


.logo__picture {
    flex-shrink: 0;
    display: block;
    width: 392px;
    height: 36px;
}

.header--foreign .logo__picture {
    width: 210px;
    height: 35px;
}

@media screen and (max-width: 499px) {
	
    .logo__picture {
        width: 221px;
        
    }

    .header--foreign .logo__picture {
        width: 210px;
        height: 35px;
    }
}


.header-nav {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: rgba(70, 70, 70, 0.45);
    backdrop-filter: blur(24px);
    border-radius: var(--box-radius);
}

.header-nav__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 41px 0 0;
    list-style: none;

}

.header-nav__list:last-of-type {
    padding-right: 0;
}

.header-nav__list:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 1px;
    height: 16px;
    transform: translateY(-50%);
    background-color:  var(--color-white);
}

.header-nav__list--lang {
    flex-shrink: 0;
}

.header-nav__item {
    padding: 4px;
}

.header-nav__link {
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    word-break: keep-all;
    transition: color var(--transition-default), opacity var(--transition-default);
}

.header-nav__list--lang .header-nav__link {
    font-weight: 400;
    opacity: 0.5;
}

.header-nav__link:hover {
    color: var(--color-primary);
    opacity: 1;
}

.header-nav__list--lang .header-nav__link--current {
    font-weight: 700;
    opacity: 1;
}

.header--foreign .header-nav {
    min-width: 130px;
}

.header--foreign .header-nav__list {
    justify-content: center;
}

.header--foreign .header-nav__list:not(:last-of-type)::after {
    background-color: inherit;
}

.header--foreign .header-nav__item {
    margin-right: 24px;
}

.header--foreign .header-nav__list--lang .header-nav__item {
    margin-right: 0;
    padding: 5px;
}

.header--foreign .header-nav__link {
    color: var(--color-primary);
}

.header--foreign .header-nav__list--lang .header-nav__link {
    color: var(--color-white);
}

@media screen and (max-width: 1023px) {
    .header-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        background-color: transparent;
        backdrop-filter: none;
        border-radius: 0;
    }

    .header-nav__list:not(.header-nav__list--inner) {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        padding-bottom: 0;
    }

    .header-nav__list:not(:last-of-type)::after {
        display: none;
    }

    .header-nav__item {
        padding: 0;
        border-bottom: 1px solid #cccccc;
    }

    .header-nav__item:last-child {
        border-bottom: none;
    }

    .header-nav__link {
        display: block;
        padding: 24px 16px;
        font-weight: 600;
        font-size: 18px;
        text-align: center;
        color: var(--color-primary);
    }

    .header-nav__list--inner {
        justify-content: center;
    }

    .header-nav__list--inner .header-nav__item {
        border-bottom: none;
    }

    .header-nav__list--inner .header-nav__link {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header--foreign .header-nav__list--lang .header-nav__link {
        color: var(--color-primary);
    }
}



.menu-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin: 0 -5px 0 0;
    padding: 5px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(70, 70, 70, 0.45);
    backdrop-filter: blur(24px);
    border-radius: var(--box-radius);
}

.menu-toggle__icon {
    display: flex;
    flex-direction: column;
}

.menu-toggle__strip {
    width: 16px;
    height: 2px;
    margin-bottom: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
}

.menu-toggle__strip:last-child {
    margin-bottom: 0;
}
/*.header {
    width: 100%;
    position: absolute;
    z-index: 3;
}

.header__wrapper {
    color: var(--text-color--alt);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-wrapper {
    margin-right: 35px;
}

.navigation {
    display: flex;
}

.navigation__menu {
    display: flex;
    flex-wrap: wrap;
}

.navigation__menu-item {
    margin-right: 28px;
}

.navigation__menu-link {
    color: var(--text-color--alt);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.navigation__menu-link:hover {
    opacity: 0.5;
}

.navigation__tools {
    display: flex;
    margin-right: 23px;
}

.language {
    position: relative;
}

.navigation__tools-item {
    cursor: pointer;
    margin-right: 23px;
    transition: all 0.2s;
}

.language {
    cursor: pointer;
    margin-right: 23px;
}

.navigation__tools-item:hover, language__title:hover {
    opacity: 0.5;
}

.language__menu {
    position: absolute;
    display: none;
    background: #FFFFFF;
    border-radius: 10px;
    width: 100px;
    text-align: center;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.language__menu.active {
    display: block;
}

.language__menu::before{
    content: '';
    position: absolute;
    width: 22px;
    height: 10px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../icon/language-tri.svg);
}

.language__menu-link {
    position: relative;
    display: block;

    padding: 10px 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: var(--text-color);
}

.language__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border: 1px solid #ECECEC;
}

.language__menu-link:last-child::after {
    display: none;
}


.navigation__side-menu {
    cursor: pointer;
}

.navigation__side-menu:hover {
    opacity: 0.5;
}

.language__title {
    line-height: 1.2;
    position: relative;
}

.language__title::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../icon/arrow-down.svg);
    width: 11px;
    height: 7px;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
}

.language .show {

}

.navigation__side-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-4px);
}
*/
.welcome {
    position: relative;
    padding-top: 180px; /* убрать когда снимется баннер*/
    padding-bottom: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/header-img.jpg');

    color: var(--text-color--alt);
}

.welcome::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 54.93%), rgba(0, 0, 0, 0.4);
}

.welcome::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../img/header-ellipse.png);
    background-position: -400px 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.welcome__wrapper {
    position: relative;
    z-index: 3;
}

.budget-button-link {
    padding-top: 240px;
    color: white;
}

.budget-button-link a {
    padding-top: 240px;
    background-color: #15645c;
}

.welcome__title {
    width: 700px;
    font-weight: 600;
    font-size: 44px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 15px;
}

.welcome__text {
    width: 500px;
    margin: 0;
    margin-bottom: 70px;
}

.welcome__list {
    /* display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 5px; */
    /* width: 40%; */
    display: flex;
    flex-wrap: wrap;
}

.welcome__item {
    margin-right: 8px;
    margin-bottom: 5px;
}

.welcome__link {
    padding: 15px 25px;
    display: inline-block;
    border: 1px solid var(--text-color--alt);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.welcome__link:hover {
    background-color: var(--text-color--alt);
    color: var(--color-accent);
}


.banner-slider {

    margin-top: 40px;
}



.banner-slide__wrapper {

    padding-right: 0;
}

.banner-slider .carousel__nav {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}

.banner-slider .carousel__button.is-prev,
.banner-slider .carousel__button.is-next {
    position: unset;
    transform: unset;

    width: 30px;
    height: 30px;
}

.banner-slider__slide {
    background-repeat: no-repeat;
    min-height: 305px;
    width: 240px;
    margin: 0 5px;

    display: flex;
    justify-content: start;
    align-items: flex-end;
    margin-bottom: 12px;
}

.banner-slider__title {
    font-weight: 500;
    margin: 0;
    color: var(--text-color--alt);
    text-decoration: none;
    font-size: 20px;
}

.banner-slider__link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
}

.advertisement { 

    margin-top: 60px;
}
.advertisement__list--slider {
    width: 100%;
}

.advertisement__wrap {

    padding-right: 0;
}

.advertisement__list { 
}

.advertisement__slide {
    position: relative;
    cursor: pointer;
    width: 377px;
    padding: 20px;
    background: #FFFFFF;

    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    margin: 0 7px;
    transition: all 0.3s;
}

.advertisement__slide:hover {
    /*filter: opacity(0.7);*/
	transform: scale(1.05);
    background-color: #F8F8F8;
}

.advertisement__link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
}



.advertisement__title {
    margin: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: var(--color-corp);
}

.advertisement__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
}

.advertisement__date {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    color: #A5A5A5;
}

.news {
    margin-top: 60px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 30px;
    /* margin-right: -32px; */
}

.tabs .carousel__track {
    align-items: center;
}

.tabs .carousel__slide {
    padding: 0;
}

.tabs__item {
    width: auto;
}

.tabs__item.active {
    padding: 0;
    border-radius: 12px;
    background-color: var(--color-corp);
    color: var(--text-color--alt);
}

.tabs__item:nth-last-child {
    margin-right: -32px;
}

.tabs__link {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-corp);
    text-decoration: none;
    padding: 10px 14px 11px;
    transition: all 0.2s;
}

.tabs__item.active .tabs__link {
    color: var(--text-color--alt);
}

.tabs__link:hover {
    /*box-sizing: border-box;*/
    border-radius: 12px;
    display: inline-block;
    padding: 10px 14px 11px;
    background: #EBF0EE;
}

.tabs__item.active .tabs__link:hover {
    background: none;
}

/* .tabs__link--active {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 41px;
  background-color: var(--color-corp);
  color: var(--text-color--alt);
} */

.news__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.news__img-link {
    display: flex;
    position: relative;
    margin-bottom: 15px;
}

.news__img-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.3s;
    z-index: 1;
    filter: opacity(0.5);
}

.news__img-link:hover::after{
    filter: opacity(1);
}

.news__img {
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

.news__img:hover {
    filter: opacity(0.5);
}

.sources {
    margin-top: 80px;
}

.sources__wrapper {
    display: grid;
    grid-template-areas: "rector dvgups dvgups"
    "soc soc smi";
    grid-template-columns: 40% 1fr 40%;
    grid-template-rows: 1fr 1fr;
    grid-gap: 25px;
}

.double-cards {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -10px 0px;
}

.double-cards__item {
    flex: 0 0 50%;
    width: 100%;
    max-width: 50%;
    padding: 10px;
}

@media screen and (max-width: 767px) {
    .double-cards {
        flex-direction: column;
        margin: 0 0 60px 0;
    }

    .double-cards__item {
        flex-basis: 100%;
        max-width: unset;
        margin-bottom: 32px;
        padding: 0;
    }

    .double-cards__item:last-child {
        margin-bottom: 0;
    }
}

.sources__block {
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    background-color: #fff;
    padding: 25px;
    box-sizing: border-box;
}

.sources__block .title {
    margin-bottom: 8px;
    position: relative;
    z-index: 5;
}

.sources__block .subtitle {
    color: #888888;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
}




.sources__block-infocard {
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.sources__block-infocard .title {
    margin-bottom: 18px;
    position: relative;
    z-index: 5;
}

.sources__block-infocard .subtitle {
    color: var(--color-gray-caption);
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.sources__block-infocard .contact {
    margin-top: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 5px;
}

.sources__block-infocard--main {
    grid-area: rector;
    background-repeat: no-repeat;
    background-image: url(../img/Frame102.png);
    background-position: right bottom;

}

.sources__block-infocard--line {


    display: flex;
    border-left-width: 20px;
    border-left-style: solid;
    border-color: var(--color-accent-hover)
/*    border-left: : 20px solid #119753;
    border-image: linear-gradient( to bottom, #119753, #69ac26 ) 0 0 100%;*/
    

}


.sources__block-infocard__desc-box-info {
    flex-grow: 1;
}

.sources__block-infocard__desc-box-contact {
    flex-shrink: 0;
    position: right top;
}


.sources__block--rector {
    grid-area: rector;
    background-repeat: no-repeat;
    background-image: url(../img/sources-1.png);
    background-position: right bottom;
}

.sources__block--dvgups {
    position: relative;
    grid-area: dvgups;
    background-repeat: no-repeat;
    /*background-image: url(../img/sources-dvgups.png);*/
    background-position: right bottom;
}
.sources__block--dvgups::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url(../icon/ellipse-gradient.svg);
    background-repeat: no-repeat;
    background-position: right bottom;

    border-radius: 16px;
}

.sources__block--dvgups::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/sources-dvgups.png);
    background-repeat: no-repeat;
    background-position: right bottom;

    border-radius: 16px;
}

.sources__block--dvgups .title {
    margin-bottom: 25px;
}

.sources__block--soc {
    grid-area: soc;
    position: relative;
    background-repeat: no-repeat;
    /*background-image: url(../img/sources-3.png);*/
    background-position: right bottom;
    background-size: contain;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sources__block--soc::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../icon/ellipse-gradient.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;

    border-radius: 16px;
}

.sources__block--soc::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/sources-soc.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    border-radius: 16px;
}

.sources__block-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/sources-logo.png);
    background-repeat: no-repeat;
    background-position: 70% center;

    border-radius: 16px;
}

.sources__block--smi {
    grid-area: smi;
}

.sources__block--smi .title {
    margin-bottom: 26px;
}

.sources__block--green {
    background-color: var(--color-corp);
}

.sources__item-link {
    margin-bottom: 14px;
    max-width: 270px;
}

.sources__link {
    display: inline;
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;

    color: var(--text-color);
    text-decoration: none;
}

.sources__link:hover {
    color: var(--color-corp);
}

.sources__link:hover::after {
    content: '';
    position: absolute;
    background-image: url(../icon/arrow-right.svg);
    width: 15px;
    height: 13px;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
}

.sources__link--white {
    width: auto;
    color: var(--text-color--alt);
}

.sources__link--white:hover::after {
    content: '';
    position: absolute;
    background-image: url(../icon/arrow-right--grey.svg);
    width: 15px;
    height: 13px;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.sources__block--smi .sources__item-link,
.sources__block--dvgups .sources__item-link,
.sources__block--soc .sources__item-link {
    max-width: 100%;
}

.sources__link--white:hover {
    color: #B2D6C4;
}

.sources__block .text {
    margin: 0;
    width: 250px;
}

.sources__list-social {
    position: relative;
    z-index: 5;
    display: flex;
}

.sources__list-links {
    position: relative;
    z-index: 5;
}

.sources__item-social {
    margin-right: 8px;
}

.sources__social {
    display: inline-block;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.events {
    margin-top: 70px;
}

.events__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
}

.events__list .text {
    margin: 0;
}

.events__link {
    position: relative;
    box-sizing: border-box;
    max-width: 324px;
    height: 348px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    border-radius: 15px;
}

.events__link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius:16px ;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.3s;
    z-index: 1;
    filter: opacity(0.5);
}

.events__link:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: opacity(1);
}

.events__link .subtitle {
    margin: 0;
    margin-bottom: 4px;
}

.events__link .subtitle,
.events__link .text {
    position: relative;
    z-index: 2;
}

.video {
    margin-top: 70px;
}

.video__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.video__link {
    display: flex;
    position: relative;
    border-radius: 16px;
    margin-bottom: 14px;
}

.video__link::before {
    content: '';
    position: absolute;
    background-image: url(../icon/play-circle.svg);
    width: 42px;
    height: 42px;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    z-index: 3;
}

.video__link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.3s;
    z-index: 1;
    filter: opacity(0.5);
}

.video__link:hover::after {
    filter: opacity(1);
}

.video__preview {
    max-width: 100%;
    border-radius: 16px;
    transition: filter 0.2s;
}


.articles {
    margin-top: 70px;
}

.articles__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.articles__item {
    box-sizing: border-box;
    max-width: 100%;
    min-height: 224px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;

    background-color: var(--color-corp);
    border-radius: 16px;
}

.articles__item--white {
    background-color: transparent;
    border: 1px solid var(--color-corp)
}

.articles__item--img {
    background-image: url(../img/articles-img.jpg);
}

.articles__link {
    text-decoration: none;
}

.articles__link .title {
    position: relative;
    display: inline-block;
}

.articles__link .title::after {
    content: '';
    position: absolute;
    background-image: url(../icon/akar-icons_arrow-right.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
}

.articles__link .title--green::after {
    content: '';
    position: absolute;
    background-image: url(../icon/akar-icons_arrow-right-green.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
}

.contacts {
    margin-top: 80px;
}

.contacts__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}

.contacts__item {
    max-width: 325px;
}

.contacts__item a {
    text-decoration: none;
    color: inherit;
}

.contacts__item .subtitle--grey {
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 8px;
}

.contacts__item .text {
    font-weight: 500;
    margin: 0;
}

.footer {
    margin-top: 130px;
    background: linear-gradient(91.46deg, #0d635a 0%, #1f9c60 100%), #2d2d2d;
    padding: 40px 0;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    /* display: grid;
     grid-template-columns: repeat(5, 1fr); */
}

.footer__col-name {
    color: var(--text-color--alt);
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin: 0;
    margin-bottom: 20px;
}

.footer__col--logo {
    width: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer__title--small {
    color: var(--text-color--alt);
    font-weight: 500;
    font-size: 12px;
    line-height: 125%;
    text-align: center;
    margin-top: 10px;
}

.footer-col-body__link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 10px;
    color: var(--text-color--alt);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col-body__link:hover {
    opacity: 0.7;
}

.footer__middle {
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.footer__bottom {
    display: flex;
}

.footer__bottom .title {
    margin-right: 30px;
    text-decoration: none;
}

.container {
    --container-gutter: 70px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-gutter);
    padding-right: var(--container-gutter);
}

@media screen and (max-width: 1023px) {
    .container {
        --container-gutter: 16px;
    }
}

@media screen and (max-width: 767px) {
    .table-wrap {
        padding-bottom: 16px;
        overflow-x: auto;
    }
}




.container-content {
    width: 100%;
    max-width: 1024px;
    margin: 60px auto 100px;
}

.container-content__list {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.container-content__item {
    flex: 0 0 50%;
    width: 100%;
    max-width: 50%;
    padding: 12px;
}

@media screen and (max-width: 1023px) {
    .container-content__list {
        margin: -8px;
    }

    .container-content__item {
        flex-basis: 100%;
        max-width: 100%;
        padding: 8px;
    }
}











.description-card {
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--color-white);
    border-radius: var(--box-radius);
}

.double-cards-picture .description-card {
    height: 100%;
    margin-bottom: 0;
}

.description-card__title {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-primary);
}

.description-card__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-primary);
}

.description-card__text>p:first-child {
    margin-top: 0;
}

.description-card__text>p:last-child {
    margin-bottom: 0;
}

.description-card__toggle {
    display: none;
}

@media screen and (max-width: 1023px) {
    .description-card {
        padding: 24px;
    }
}

@media screen and (max-width: 767px) {
    .description-card--partial-show .description-card__text {
        height: 265px;
        overflow: hidden;
    }

    .description-card--partial-show .description-card__text--open {
        height: auto;
    }

    .description-card__toggle {
        margin-top: 16px;
        display: flex;
    }
}



.description-card-table {
    margin-bottom: 60px;
    padding-top: 10px;
    padding-right: 0;
    padding-left: 0;
    background-color: var(--color-white);
    border-radius: var(--box-radius);
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.04);
}


.description-card-onlytext {
    margin-bottom: 60px;
    padding: 0;
    /*background-color: var(--color-white);*/
    border-radius: var(--box-radius);
}





.preview-card {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    padding: 24px 24px 24px 40px;
    background-color: var(--color-white);
    border-radius: var(--box-radius);
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.04);
}

.preview-card-banner {
    height: 440px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 100px;
    padding: 24px 24px 24px 40px;
    background-image: url('../img/train.png');
    background-color: var(--color-white);
    border-radius: var(--box-radius);
    position: relative;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.04);
}


.preview-card-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--box-radius);
}


.preview-card-banner__wrapper {
    position: absolute;
    z-index: 3;
    margin: 0;
    padding: 0;
}

.preview-card__title-banner {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--color-white);

}

.preview-card__title {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--color-accent);

}

.preview-card__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-primary);
}

.preview-card__desc>p:first-child {
    margin-top: 0;
}

.preview-card__desc>p:last-child {
    margin-bottom: 0;
}

.preview-card__image {
    flex-shrink: 0;
    width: 42%;
    max-width: 506px;
    margin-left: 55px;
}

.preview-card__picture-container {
    width: 100%;
}

.preview-card__picture-container img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--box-radius);
}

.preview-card__tags {
    margin: 16px -8px -8px;
}


.preview-card-banner--prof {
    background-image: url("../img/prof.png");
}

.preview-card-banner--institute {
    background-image: url("../img/train.png");
}




/*.page-foreign .preview-card {
    margin-bottom: 60px;
    min-height: 220px;
    padding: 60px 40px;
    background-color: var(--color-blue);
    background-image: url("../images/inner-pages/rules-for-entering/rules-preview-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}

.page-foreign .preview-card--entry-rules {
    background-color: var(--color-yellow);
    background-image: url("../images/inner-pages/entry-rules/entry-preview-bg.png");
}

.page-foreign .preview-card--budget {
    background-color: var(--color-green);
    background-image: url("../images/inner-pages/budget-application/budget-preview.png");
}

.page-foreign .preview-card--depart {
    background-color: var(--color-turquoise);
    background-image: url("../images/inner-pages/prep-department/depart-preview-bg.png");
}

.page-foreign .preview-card--campus {
    background-color: var(--color-brown);
    background-image: url("../images/inner-pages/campus/campus-preview-bg.png");
}

.page-foreign .preview-card--kiss {
    background-color: var(--color-red);
    background-image: url("../images/inner-pages/kiss/kiss-preview-bg.png");
}

.page-foreign .preview-card__title {
    margin-bottom: 0;
    line-height: 48px;
    color: var(--color-white);
}*/

@media screen and (max-width: 1023px) {
    .preview-card {
        padding-left: 24px;
    }

    .preview-card__image {
        margin-left: 32px;
    }

    .page-foreign .preview-card {
        min-height: 140px;
        margin-bottom: 40px;
        padding: 40px 24px;
        background-image: url("../images/inner-pages/rules-for-entering/rules-preview-bg-mobile.png");
        background-size: cover;
    }

    .page-foreign .preview-card--entry-rules {
        background-image: url("../images/inner-pages/entry-rules/entry-preview-bg-mobile.png");
    }

    .page-foreign .preview-card--budget {
        background-image: url("../images/inner-pages/budget-application/budget-preview-mobile.png");
    }

    .page-foreign .preview-card--depart {
        background-image: url("../images/inner-pages/prep-department/depart-preview-bg-mobile.png");
    }

    .page-foreign .preview-card--campus {
        background-image: url("../images/inner-pages/campus/campus-preview-bg-mobile.png");
    }

    .page-foreign .preview-card--kiss {
        background-image: url("../images/inner-pages/kiss/kiss-preview-bg-mobile.png");
    }

    .page-foreign .preview-card__title {
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
    }
}

@media screen and (max-width: 767px) {
    .preview-card {
        flex-direction: column-reverse;
    }

    .preview-card__image {
        width: 100%;
        max-width: unset;
        margin-left: 0;
        margin-bottom: 16px;
    }

    .preview-card__picture-container img {
        border-radius: var(--box-radius);
    }

    .preview-card__title {
        font-size: 24px;
    }

    .preview-card__tags {
        margin: 11px -5px -5px;
    }

    .page-foreign .preview-card {
        flex-direction: row;
    }
}

.photo-gallery {
    margin-bottom: 60px;
    margin-top: 60px;
}

.photo-gallery:not(.slick-initialized) {
    display: flex;
    overflow-x: hidden;
}

.photo-gallery.slick-initialized {
    margin-right: 0px;
}

/*.photo-gallery.slick-initialized::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}*/

.photo-gallery .slick-slide {
    width: 250px;
    height: 170px;
    margin: 0 12px;
}

.photo-gallery-item__link {
    display: block;
    width: 100%;
    height: 100%;
}

.photo-gallery-item__link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--box-radius);
}

.photo-gallery .slick-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 1;
    position: absolute;
    top: 50%;
    display: block;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    color: transparent;
    background-color: var(--color-accent);
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color var(--transition-default);
}

.photo-gallery .slick-prev {
    left: -18px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.219 8 2.828 2.829a.666.666 0 0 1-.943.943L5.793 8.458a.649.649 0 0 1 0-.918L9.105 4.23a.667.667 0 0 1 .943.943L7.217 8Z' fill='%23fff'/%3E%3C/svg%3E");
}

.photo-gallery .slick-next {
    right: -18px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.781 8 5.953 5.171a.667.667 0 0 1 .943-.943l3.312 3.313a.649.649 0 0 1 0 .918L6.895 11.77a.666.666 0 1 1-.943-.943L8.783 8Z' fill='%23fff'/%3E%3C/svg%3E");
}

@media screen and (max-width: 1023px) {
    .photo-gallery.slick-initialized {
        margin-right: -16px;
    }

    .photo-gallery.slick-initialized::after {
        width: 58px;
    }

    .photo-gallery .slick-prev {
        display: none !important;
    }

    .photo-gallery .slick-next {
        right: 16px;
    }
}

@media screen and (max-width: 374px) {
    .photo-gallery.slick-initialized::after {
        display: none;
    }
}

.blog-item{
    overflow: auto;
}




.mainmenucontainer ul {
	display: flex;
  flex-wrap: wrap;
}
.mainmenucontainer ul li {
	margin-right: 8px;
	margin-bottom: 5px;
}
.mainmenucontainer ul li a{
	padding: 15px 25px;
	display: inline-block;
	border: 1px solid var(--text-color--alt);
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s;
}
.mainmenucontainer ul li a:hover {
  background-color: var(--text-color--alt);
  color: var(--color-accent);
}

.headerdesktopmenu-leftcontainer ul{
    justify-content: center;

    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    /* padding: 0 41px 0 0;
    padding-right: 41px; */
    list-style: none;
}

.headerdesktopmenu-leftcontainer ul li {
    padding: 4px;   
}

.headerdesktopmenu-leftcontainer ul li a{
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    word-break: keep-all;
    transition: color var(--transition-default), opacity var(--transition-default); 
}

.headerdesktopmenu-leftcontainer ul li a:hover{
    color: var(--color-primary);
    opacity: 1;  
}

.headerdesktopmenu-rightcontainer ul{
    justify-content: center;

    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    /* padding: 0 41px 0 0;
    padding-right: 41px; */
    list-style: none;
}

.headerdesktopmenu-rightcontainer ul li {
    padding: 4px;   
}

.headerdesktopmenu-rightcontainer ul li a{
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    word-break: keep-all;
    transition: color var(--transition-default), opacity var(--transition-default); 
}

.headerdesktopmenu-rightcontainer ul li a:hover{
    color: var(--color-primary);
    opacity: 1;  
}

.headermobilemenu-middlecontainer ul{

}

.headermobilemenu-middlecontainer ul li{
    padding: 0;
    border-bottom: 1px solid #cccccc;

}

.headermobilemenu-middlecontainer ul li a{
    display: block;
    padding: 24px 16px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: var(--color-primary);

    text-decoration: none;
    word-break: keep-all;
    transition: color var(--transition-default), opacity var(--transition-default);

    overflow-wrap: anywhere;

    background-color: transparent;
}

.headermobilemenu-middlecontainer ul li a:hover{

}


.headermobilemenu-bottomcontainer {

}

.headermobilemenu-bottomcontainer ul{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
    justify-content: center;

    flex-shrink: 0;
}
.headermobilemenu-bottomcontainer ul li{
    border-bottom: none;
    padding: 0;
}
.headermobilemenu-bottomcontainer ul li a{
    padding-left: 12px;
    padding-right: 12px;

    font-weight: 400;
    opacity: 0.5;

    display: block;
    padding: 24px 16px;
    padding-right: 16px;
    padding-left: 16px;
    /* font-weight: 600; */
    font-size: 18px;
    text-align: center;
    color: var(--color-primary);

    text-decoration: none;
    word-break: keep-all;
    transition: color var(--transition-default), opacity var(--transition-default);

    overflow-wrap: anywhere;
    
}

.headermobilemenu-bottomcontainer ul li:first-child a{
    font-weight: 700;
    opacity: 1;
}

.headermobilemenu-bottomcontainer ul li:first-child:hover a{
    color: var(--color-primary);
    opacity: 1;
  }

.footer-links{

    .nav{
        display: block; /* Reset to default display */
        /* -ms-flex-wrap: unset; Reset to default */
        /* flex-wrap: unset; Reset to default */
        /* padding-left: initial; Reset to default */
        /* margin-bottom: initial; Reset to default */
        /* list-style: initial; Reset to default */
    }
}

.footer-links ul li a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 10px;
    color: var(--text-color--alt);
    text-decoration: none;
    transition: all 0.3s;

}

.footer-links ul li a:hover {
    opacity: 0.7;
}

.item_green_shining {
    background: #15645c;
    border-radius: 20px;
    box-shadow: 0 0 5px aliceblue, 0 0 20px antiquewhite, 0 0 60px aquamarine;
}
.item_greenbutton {
    background: #15645c;
    border-radius: 20px;
}

.item_red_button {
    background: #FF0000;
    border-radius: 20px;
}

.item_white_button:hover {
    background: #FF0000 !important;
    color: #fff !important;
    border-color: #fff !important;
    border-radius: 20px !important;
}

.item_white_button {
    background: #fff;
    color: #FF0000 !important;
    border-color: #FF0000 !important;
    border-radius: 20px !important;
}

.bvi-body header{
    position: static !important;
}