* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "Commissioner";
    src: url(/fonts/Commissioner-Regular.woff2);
}

@keyframes pod {
    0% {
        transform: translateY(50%);
        transform-origin: 0 100%;
    }

    100% {
        transform: translateY(0);
        transform-origin: 0 100%;
    }
}

@keyframes rotate-up-ver-bottom {
    0% {
        transform: rotateX(-90deg);
        transform-origin: 0 100%;
    }

    100% {
        transform: rotateX(0deg);
        transform-origin: 0 100%;
    }
}

.scale-up-ver-bottom {
    animation: rotate-up-ver-bottom 1s;
}

html,
body {
    scroll-behavior: smooth;
    position: relative;
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-color: var(--dark-gray) var(--dark-turquoise);
}

body {
    overflow: hidden;
    background-color: var(--highlight);
    font-family: "Commissioner", sans-serif;
    color: var(--white);
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

.card-front__heading {
    font-size: 20px;
    margin-top: 0.25rem;
}

.inside-page__heading {
    padding-bottom: 1rem;
    width: 100%;
}

.inside-page__heading,
.card-front__text-view {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 0.2rem;
}

.inside-page__heading--city,
.card-front__text-view--city {
    color: var(--turquoise);
}

.card-front__tp {
    color: #fafbfa;
}

.card-front__text-price {
    font-size: 1.2rem;
    margin-top: -0.2rem;
}

.inside-page__text {
    color: #333;
}

.inside-page__btn {
    background-color: transparent;
    border: 3px solid;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 90%;
    z-index: 10;
}

.inside-page__btn::before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleY(0);
    transition: all 0.3s ease;
    width: 100%;
    z-index: -1;
}

.inside-page__btn--city {
    border-color: var(--turquoise);
}

.inside-page__btn--city::before {
    background-color: var(--bg-turquoise);
}

.main {
    background: linear-gradient(to bottom right, #eee8dd, #e3d9c6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.card-area {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-evenly;
    padding: 1rem;
}

.card-section {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.card {
    background-color: var(--black-opacity005);
    box-shadow: -0.1rem 1.7rem 6.6rem -3.2rem var(--black-opacity05);
    height: 12vw;
    position: relative;
    transition: all 1s ease;
    width: 12vw;
}

.flip-card {
    height: 12vw;
    perspective: 100rem;
    position: absolute;
    right: 0;
    transition: all 1s ease;
    visibility: hidden;
    width: 12vw;
    z-index: 100;
}

.flip-card > * {
    visibility: visible;
}

.flip-card__container {
    height: 100%;
    position: absolute;
    right: 0;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 1s ease;
    width: 100%;
}

.card-front,
.card-back {
    backface-visibility: hidden;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.card-front {
    background-color: #fafbfa;
    height: 12vw;
    width: 12vw;
}

.card-front__tp {
    align-items: center;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 90%,
        57% 90%,
        50% 100%,
        43% 90%,
        0 90%
    );
    display: flex;
    flex-direction: column;
    height: 12rem;
    justify-content: center;
    padding: 0.75rem;
}

.card-front__tp--city {
    background: linear-gradient(to bottom, var(--turquoise), var(--turquoise));
}

.card-front__bt {
    align-items: center;
    display: flex;
    justify-content: center;
}

.card-back {
    background-color: #fafbfa;
    transform: rotateY(180deg);
}

.video__container {
    clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%);
    height: auto;
    min-height: 100%;
    object-fit: cover;
    width: 100%;
}

.inside-page {
    background-color: #fafbfa;
    box-shadow: inset 20rem 0px 5rem -2.5rem var(--black-opacity025);
    height: 100%;
    padding: 1rem;
    position: absolute;
    right: 0;
    transition: all 1s ease;
    width: 12vw;
    z-index: 1;
}

.inside-page__container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    width: 100%;
}

.global {
    width: 100vw;
    height: 100%;
    position: relative;
    transition: 0.6s;
    overflow-x: hidden;
}

.shirma_war {
    width: 100vw;
    height: 100vh;
    background-color: var(--black-opacity07);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
.warning {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(280px, 60vw, 900px);
    height: clamp(550px, 60vh, 915px);
    background-color: var(--bg-turquoise);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
}

.logo_war {
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
}

.warning_text {
    width: 100%;
    text-align: center;
    color: var(--white);
    font-size: 30px;
    line-height: 45px;
}

.warning_text-litl {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
}
.warning_text-big {
    font-size: 35px;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.warning_ok {
    width: clamp(200px, 19vw, 280px);
    height: 58px;
    border: 2px solid var(--white);
    border-radius: 60px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s;
    color: var(--white);
    transition: all 0.6s;
}

.vrezka {
    width: 100vw;
    height: 130px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    background-color: var(--highlight);
}

.title {
    width: 100vw;
    height: calc(79.4vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--dark-turquoise);
    position: relative;
    padding-bottom: 40px;
    border-bottom-left-radius: -220px;
}

.slide_flex-text-title {
    font-size: 30px;
    line-height: 44px;
    margin-bottom: 37px;
    text-transform: uppercase;
    text-align: center;
}

.slide_flex-text-announcement {
    line-height: 1.5;
    margin-bottom: 23px;
}

.slide_button {
    width: 17vw;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    border: var(--white) solid 2px;
}

.slide_button a {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--white);
}

.more {
    color: var(--white);
    background-color: var(--bg-turquoise);
    font-size: 18px;
    width: 42.4vw;
    height: 60px;
    margin: 0px auto;
    margin-top: 60px;
}

.but_all_news {
    margin-bottom: 100px;
}

.more1 {
    color: var(--white);
    background-color: var(--dark-turquoise);
    font-size: 18px;
    width: 42.4vw;
    height: 60px;
    margin: 0px auto;
}

.next {
    width: 20px;
    margin: 50px auto;
    position: relative;
    z-index: 3;
    display: block;
}

.facult_img_start {
    width: 100vw;
    max-width: 1240px;
    height: auto;
    height: 430px;
    margin-bottom: 60px;
    margin-top: 130px;
    /*background-image: url('/img/facult_img_start1.svg');*/
    background: url("/img/facult_img_start1.svg") 0 65px no-repeat,
        url("/img/facult_img_start1.svg") right no-repeat,
        url("/img/facult_img_start_fon.webp") top left;
}

.faculty_block {
    width: calc(100% - 157px);
    height: 82px;
    color: var(--text-turquoise-opacity08);
    margin-left: 157px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--turquoise-opacity05) 1px solid;
    border-top: var(--turquoise-opacity05) 1px solid;
}

.faculty_block + .faculty_block {
    border-top: none;
}

.faculty_block-text {
    width: 36.2vw;
    color: var(--text-turquoise);
}

.faculty_block-number {
    width: 26px;
    height: 22px;
    color: var(--text-turquoise);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.more_long {
    width: calc(100% - 157px);
    margin-left: 157px;
}

.group_36 {
    display: block;
    margin: 0 auto;
    height: 432px;
    transform: translateX(-100px);
    background: url("/img/facult_img_start.webp") no-repeat 50% 100%;
    background-size: contain;
}

@keyframes ani_left {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(0);
    }
}

.swiper-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    /* margin-bottom: 30px; */
    padding-bottom: 30px;
    background-color: var(--dark-turquoise);
    position: relative;
}

.swiper-container_img,
.swiper-container_img_3 {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 30px;
    background-color: var(--highlight);
    position: relative;
    display: none;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    display: inline-block;
    background: var(--text-dark-turquoise);
    margin: 0 5px;
    cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--white);
    top: 50%;
    position: absolute;
}

.swiper-button-next::after {
    margin-right: clamp(-100px, -13vw, 255px);
}

.swiper-button-prev::after {
    margin-left: clamp(-100px, -13vw, 255px);
}

.swiper_ornam {
    width: 100vw;
    height: 21vh;
    background: url(/img/ornam.svg) -25px;
    /*    background: url(/img/new_year.svg) repeat-x;*/
    position: absolute;
    bottom: 0px;
    left: 0;
}

.swiper_img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 54vh;
    max-height: 800px;
    margin-top: 57px;
}

.slide_flex {
    display: flex;
    width: 100%;
    height: 52vh;
    /* align-items: center; */
    max-height: 550px;
}

.slide_flex img {
    width: 33vw;
    object-fit: cover;
    /*			height: 52vh;*/
    position: relative;
    border-radius: 20px;
}

.slide_flex-text {
    width: 26vw;
    color: var(--white);
    margin-left: 4.5vw;
    height: 90%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.sect_bas {
    width: 100%;
    height: auto;
    padding-bottom: 133px;
    border-bottom: var(--turquoise-opacity05) 1px solid;
}

.no_border_bottom {
    border-style: none;
}

.sect_bas-min {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
}

.sect_bas-min svg {
    margin-left: 10px;
}

.transition_soc {
    display: flex;
    justify-content: space-between;
    margin: 60px auto;
    width: 240px;
    height: 15px;
    color: var(--text-turquoise-opacity08);
}

.transition_soc-item a {
    color: var(--text-turquoise-opacity08);
    display: flex;
    width: 105px;
    align-items: center;
    height: 15px;
    border-bottom: var(--turquoise-opacity05) 2px solid;
    transition: all 0.5s;
}

.bottom_30 {
    margin-bottom: 30px;
}

.transition_soc-item {
    display: flex;
    width: 105px;
    align-items: center;
}

.transition_soc-item-text {
    width: 85px;
}

.transition_soc-item .soc2 {
    width: 95px;
}

.min_text {
    font-size: 12px;
    color: var(--turquoise);
    text-transform: uppercase;
}

.sect_bas_text {
    display: flex;
    margin-left: calc(157px + 11vw);
    /*		width: calc(89vw - 357px);*/
    width: 64.3%;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 60px;
    gap: 20px;
}

.sect_bas_text-item {
    width: 31.4vw;
    color: var(--text-dark-turquoise);
    line-height: 144%;
}

.sect_bas_text-item.lighten {
    color: var(--turquoise);
}

.sect_bas-cif {
    display: flex;
    justify-content: space-between;
    width: 74.2%;
    height: auto;
    flex-wrap: wrap;
}

.sect_bas-cif-item-cif {
    color: var(--text-turquoise);
    font-weight: 400;
    font-size: 100px;
    text-transform: uppercase;
    width: 126px;
    text-align: center;
}

.sect_bas-cif-item-text {
    color: var(--turquoise);
    width: 126px;
    text-align: center;
}

.sect_bas-cif-item {
    transform: translateY(50%);
}

.sect_bas_img {
    width: 100%;
    height: auto;
    /* background: url("/img/orn_2.svg") 0 0px repeat-x,
        url("/img/orn_2.svg") -280px 350px repeat-x; */
    display: grid;
    grid-template-columns: 12.6% 6.1% 6.7% 13.5% 2.3% 9.4% 9.4% 20% 1.5% 18.7%;
}

.background_ornament {
    position: absolute;
    left: 0;
    width: 100vw;
    height: 300px;
    background: url("/img/orn_2.svg") repeat-x;
    z-index: -1;
}

.sect_bas_img-item {
    height: 100%;
}

.sect_bas_img-item img {
    width: 100%;
    object-fit: cover;
    height: 260px;
}

.g1 {
    grid-column: 1/3;
}

.g2 {
    grid-column: 4/6;
}

.g3 {
    grid-column: 7/9;
}

.g4 {
    grid-column: 10/11;
}

.g5 {
    grid-column: 2/5;
}

.g6 {
    grid-column: 6/8;
}

.g7 {
    grid-column: 10/11;
}

.sect_bas_img-text {
    color: var(--turquoise);
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 10px;
    width: 14.8vw;
    margin-bottom: 36px;
}

.emblema {
    width: 248px;
    background: url("/img/emblema.svg?2") 100% no-repeat;
    background-size: contain;
}

.d2 {
    margin-left: 11vw;
}

.sect_bas_img-item-duble {
    display: flex;
    width: 609px;
    gap: 19px;
    height: 100%;
    flex-wrap: wrap;
}

.sect_bas_img-item-duble img {
    object-fit: conrain;
    display: block;
}

.wid_img img {
    width: 24.9vw;
    max-width: 358px;
}

.wid_img2 img {
    width: 22.7vw;
    max-width: 327px;
}
/*.swip_text{
		position: absolute;
		 font-size: 1.5rem;
		 color: var(--white);
		 background-color: rgba(53,49,96,0.5);
		 text-align: center;
		  position: absolute;
		  left: 50%;
		  top: 50%;
		  bottom: auto;
		  right: auto;
		  transform: translateX(-50%) translateY(-50%);
		  z-index: 3;
		  padding: 20px;

	}
*/

h2 {
    font-size: 36px;
    color: var(--text-turquoise);
    padding-left: 157px;
    line-height: 44px;
    text-indent: 11vw;
    font-weight: 500;
    text-transform: uppercase;
}

.marg_top60 {
    margin-top: 60px;
    padding-bottom: 13px;
}

.marg {
    margin-top: 32px;
}
.no_padding {
    padding-bottom: 88px;
}

.no_padding_news {
    padding-bottom: 0;
}

.marg_min {
    margin-top: 13px;
}

.marg_bot100 {
    margin-bottom: 100px;
}

.news {
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.news_item {
    display: none;
    justify-content: start;
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
    width: 295px;
}

.news_img,
.news_img_cont {
    height: clamp(200px, 20vw, 300px);
    object-fit: cover;
    filter: brightness(84%);
    transition: all 1s;
}

.news_img {
    background-color: var(--bg-turquoise);
    max-width: 100%;
}

.news_img_cont {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.news_text {
    width: 100%;
    height: auto;
    color: var(--black);
}

.news_text_titul {
    height: auto;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.news_text_prolog {
    line-height: 20px;
    text-transform: uppercase;
    color: var(--text-turquoise-opacity08);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

.news_full {
    background-color: var(--highlight);
    width: 100vw;
    height: auto;
    font-size: 18px;
    line-height: 2;
}

.new_news {
    display: flex;
    width: 90vw;
    height: auto;
    position: relative;
    z-index: 3;
    justify-content: flex-start;
    gap: 100px;
    position: sticky;
    top: 0;
}

.h1_news_full {
    text-align: center;
    font-weight: bold;
    padding: 20px 0;
    padding: 0 20px;
    color: var(--black);
}

.art_news {
    font-size: 16px;
    line-height: 23px;
    color: var(--turquoise);
    margin-bottom: 60px;
}

.news_full_img {
    display: block;
    width: 70vw;
    height: 80vh;
    object-fit: contain;
    margin: 0 auto;
}

.news_briefly {
    height: 200px;
}
.news_text_area {
    height: 30vh;
}

.name_img {
    width: 40vw;
    height: 40px;
    font-size: 18px;
}

form {
    display: block;
}

.flex_news_img {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.flex_news_img .container_news_img,
.flex_news_img video {
    width: 24%;
    height: auto;
    flex-wrap: wrap;
    object-fit: cover;
}

.shirma {
    width: 100vw;
    height: 100vh;
    background-color: var(--black-opacity08);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    display: none;
}

.big_img {
    position: fixed;
    top: 5vh;
    left: 15vw;
    z-index: 117;
    width: 70vw;
    height: clamp(200px, 70vh, 600px);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    display: none;
}

.scale-up-center {
    animation: scale-up-center 0.6s ease-in both;
}

.scale-out-center {
    animation: scale-out-center 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

textarea {
    width: 80vw;
    border: var(--text-turquoise-opacity08) solid 2px;
    font-size: 20px;
    color: var(--black);
    line-height: 2;
}

@keyframes scale-up-center {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scale-out-center {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 1;
    }
}

.cl-btn-6 {
    position: absolute;
    width: 40px;
    cursor: pointer;
    top: 0;
    right: -50px;
    z-index: 99;
}
.cl-btn-6-in {
    width: inherit;
    text-align: center;
}
.cl-btn-6-txt {
    font-size: 8px;
    line-height: 40px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-turquoise-opacity08);
    transition: all 0.3s ease-in;
    opacity: 0;
    cursor: pointer;
}
.cl-btn-6-in:before,
.cl-btn-6-in:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 40px;
    background: var(--text-turquoise-opacity08);
    left: 0;
    transition: all 0.3s ease-in;
}
.cl-btn-6-in:before {
    top: calc(50% - 4px);
    transform: rotate(45deg);
}
.cl-btn-6-in:after {
    bottom: 50%;
    transform: rotate(-45deg);
}
.cl-btn-6:hover .cl-btn-6-txt {
    opacity: 1;
}
.cl-btn-6:hover .cl-btn-6-in:before,
.cl-btn-6:hover .cl-btn-6-in:after {
    transform: rotate(0);
}
.cl-btn-6:hover .cl-btn-6-in:before {
    top: 0;
}
.cl-btn-6:hover .cl-btn-6-in:after {
    bottom: 0;
}

.next_news {
    margin: 30px auto;
    width: 15vw;
    height: 50px;
    border: #e95821 solid 6px;
    line-height: 50px;
    color: var(--black);
    text-align: center;
    font-size: 22px;
    transition: all 0.6s;
}

.kabinet {
    position: absolute;
    bottom: -120px;
    left: 30px;
    width: 8vw;
    height: auto;
    transition: all 0.6s;
    z-index: 100;
}

.kabinet:hover {
    cursor: pointer;
    box-shadow: inset 0 0 60px var(--whitesmoke), inset 20px 0 80px #ffa200,
        inset -20px 0 80px #e95821, inset 20px 0 300px #ffa200,
        inset -20px 0 300px #e95821, 0 0 50px var(--white), -10px 0 80px #ffa200,
        10px 0 80px #e95821;
    transition: all 0.6s;
}

.text_kabinet {
    color: var(--black);
    text-shadow: 0 0 20px #ce6218, 0 0 40px #ce6218, 2px 2px 2px #ce6218;
    position: absolute;
    bottom: -170px;
    left: 25px;
    width: 10vw;
    height: auto;
    font-size: 12px;
    text-align: center;
    transition: all 0.6s;
    opacity: 0;
}

.flex_urovni {
    display: flex;
    width: 100vw;
    height: auto;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 30px 0;
}

.flex_urovni a {
    color: var(--black);
}

@keyframes scale-up-ver-center {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.anim_up {
    animation: scale-up-ver-center 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.text-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.text {
    font-size: 20px;
}
.text-dark {
    color: var(--white);
}
.overlay {
    height: 100%;
    position: absolute;
    width: 100%;
}

.static {
    margin: 0;
}

.new_news {
    display: flex;
    width: 90vw;
    height: auto;
    position: relative;
    z-index: 3;
    justify-content: flex-start;
    gap: 100px;
    position: sticky;
    top: 0;
}

.mail {
    width: 80px;
    height: auto;
    position: fixed;
    right: 10px;
    top: 70vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dat {
    font-size: 12px;
    margin: 10px 30px;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    color: var(--turquoise);
    opacity: 0.8;
}

.cit {
    font-size: 16px;
    line-height: 23px;
    color: var(--text-turquoise);
}

.faculties {
    width: 100vw;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.flex_news_full {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
    /* background: url("/img/orn_2.svg") 0px 350px repeat-x; */
}

.flex_news_full-it2 {
    width: 74.4%;
    max-width: 922px;
}

.flex_news_full-it2 img {
    object-fit: contain;
    width: 100%;
    max-height: 615px;
    margin-bottom: 60px;
}

.emblema {
    height: 260px;
}

.object-fit_fill img {
    object-fit: fill;
}

.radius_bot_left {
    border-bottom-left-radius: 20px;
}

.radius_top_left {
    border-top-left-radius: 20px;
}

.radius_bot_right {
    border-bottom-right-radius: 20px;
}

.radius_top_right {
    border-top-right-radius: 20px;
}

@media only screen and (min-width: 1240px) {
    h2 {
        text-indent: 140px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .inside-page__btn:hover {
        color: var(--white);
    }

    .inside-page__btn:hover::before {
        transform: scaleY(1);
    }

    .card:hover {
        box-shadow: -0.1rem 1.7rem 6.6rem -3.2rem var(--black-opacity075);
        width: 30rem;
    }

    .card:hover .flip-card__container {
        transform: rotateY(-180deg);
    }

    /* When the card is hovered, the shadow on the inside page will shrink to the left */
    .card:hover .inside-page {
        box-shadow: inset 1rem 0px 5rem -2.5rem var(--black-opacity01);
    }

    .warning_ok:hover {
        cursor: pointer;
        background-color: var(--highlight);
        color: var(--turquoise);
        transition: all 0.6s;
    }

    .transition_soc-item a:hover {
        transition: all 0.5s;
        color: var(--black);
        border-color: var(--black);
    }

    .transition_soc-item svg:hover {
        fill: var(--dark-gray);
    }

    .news_img:hover {
        transform: scale(1.1);
        transition: all 1s;
        filter: brightness(100%);
    }

    .news_text_prolog:hover {
        text-decoration: underline;
    }
}

@media only screen and (max-width: 1440px) {
    .slide_flex-text-title {
        font-size: 30px;
        line-height: 35px;
    }

    .news {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media only screen and (max-width: 1300px) {
    .sect_bas_img {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .sect_bas_img-item img {
        width: 232px;
        object-fit: cover;
    }

    .object-fit_fill img {
        object-fit: fill;
    }

    .sect_bas_img-text {
        width: 232px;
    }
}

@media only screen and (max-width: 1150px) {
    .slide_flex-text-title {
        font-size: 22px;
        line-height: 30px;
    }

    .slide_flex img {
        object-fit: contain;
    }

    .sect_bas_img {
        justify-content: center;
        gap: 30px;
    }
}

@media only screen and (max-width: 1080px) {
    .next_news {
        font-size: 18px;
    }

    .warning_text {
        font-size: 22px;
        line-height: 30px;
    }

    .warning_text-litl {
        font-size: 18px;
        line-height: 25px;
    }
    .warning_text-big {
        font-size: 28px;
        line-height: 35px;
    }
}

@media only screen and (max-width: 900px) and (min-height: 500px) {
    .swiper_ornam {
        height: 15vh;
    }
    .swiper-container {
        height: 90vh;
        max-height: 800px;
        width: 100%;
    }

    .swiper_img {
        height: auto;
        margin-left: 0;
        width: 100%;
    }
    .title {
        height: auto;
    }

    .slide_flex {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .slide_flex img {
        width: 100vw;
        object-fit: contain;
        margin: 0 auto;
    }

    .slide_flex-text {
        width: calc(100% - 40px);
        text-align: center;
    }

    .slide_flex-text-title {
        height: 100%;
    }

    .slide_flex-text-announcement {
        height: 100%;
    }

    .swiper-button-next {
        display: none;
    }
    .swiper-button-prev {
        display: none;
    }

    .slide_button {
        margin: 0 auto;
        width: 100%;
    }

    h2 {
        padding-left: 12.7vw;
    }

    .sect_bas_text {
        margin-left: 0;
        padding-left: 12.7vw;
        flex-direction: column;
        width: 87%;
    }

    .sect_bas_text-item {
        width: 100%;
    }

    .but_all_news {
        margin-top: 40px;
        margin-bottom: 40px;
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 950px) {
    .faculty_block {
        width: 100%;
        margin-left: 0;
    }

    .more_long {
        width: 100%;
        margin-top: 60px;
    }

    .faculty_block-text {
        width: 82%;
    }
}

@media only screen and (max-width: 820px) {
    .next_news {
        font-size: 16px;
    }

    .sect_bas-cif {
        width: 100%;
    }

    .marg_perem-r {
        margin-right: 29.7vw;
    }

    .marg_perem-l {
        margin-left: 29.7vw;
    }

    .sect_bas_img {
        display: none;
    }

    .swiper-container_img {
        display: block;
    }

    .sect_bas_img-item_2 img {
        width: 100%;
        max-width: 232px;
        object-fit: cover;
        height: 260px;
    }

    .object-fit_fill img {
        object-fit: fill;
        min-width: 200px;
    }

    .sect_bas_img-text_2 {
        width: 100%;
        color: var(--turquoise);
        line-height: 20px;
        text-transform: uppercase;
        font-weight: 400;
        margin-top: 10px;
        margin-bottom: 40px;
        text-align: center;
    }

    .background_ornament_top,
    .background_ornament_bottom {
        display: none;
    }
}

@media only screen and (max-width: 710px) {
    .next_news {
        width: 25vw;
        height: 40px;
        line-height: 40px;
    }

    .flex_news_img {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .flex_news_img .container_news_img,
    .flex_news_img video {
        width: 100%;
        height: 300px;
    }

    .sect_bas_text {
        padding-left: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 660px) {
    .swiper-container_img {
        display: none;
    }

    .swiper-container_img_3 {
        display: block;
    }

    h2 {
        width: 100%;
        padding-left: 0;
    }

    .flex_news_full {
        flex-direction: column;
    }

    .flex_news_full-it2 {
        width: 100%;
    }

    .flex_news_full-it1 {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .dat {
        margin: 10px 0;
    }

    .bottom_30 {
        margin-bottom: 0;
    }

    .facult_img_start {
        background: url("/img/facult_img_start1.svg") 0 65px no-repeat,
            url("/img/facult_img_start_fon.webp") top left;
    }
}

@media only screen and (max-width: 480px) {
    .warning {
        width: clamp(270px, 80vw, 450px);
        height: clamp(550px, 80vh, 915px);
    }
}

@media only screen and (max-width: 448px) {
    .next_news {
        width: 40vw;
    }

    /* .slide_flex img {
        object-fit: cover;
    } */

    h2 {
        font-size: 30px;
    }

    .marg_perem-r {
        margin-right: 0px;
    }

    .marg_perem-l {
        margin-left: 0px;
    }

    .marg_perem-l2 {
        margin-left: 20px;
    }

    .sect_bas-cif-item-cif {
        font-size: 80px;
        line-height: 98px;
    }

    .facult_img_start img {
        margin: 0 -80px;
    }

    .big_img {
        width: 90%;
        left: 5%;
    }

    .cl-btn-6 {
        top: -50px;
        right: 0;
    }
}

@media only screen and (max-width: 390px) {
    h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    .facult_img_start {
        margin-top: 0;
    }

    .facult_img_start img {
        margin: 0 -120px;
    }

    .faculty_block {
        height: 100px;
    }

    .faculty_block-text {
        width: 90%;
    }
}

@media only screen and (max-width: 360px) {
    .faculty_block {
        height: 140px;
    }

    .faculty_block-text {
        width: 80%;
    }

    .slide_flex {
        width: 100%;
    }
}

@media only screen and (max-width: 320px) {
    .sect_bas-cif {
        flex-direction: column;
        align-items: center;
    }

    .marg_perem-l2 {
        margin-left: 0;
    }

    .sect_bas-cif-item-cif {
        font-size: 100px;
        line-height: 126px;
    }
}

@media only screen and (max-height: 920px) and (max-width: 970px) {
    /* .swiper-container {
        height: 100vh;
    } */

    .warning {
        width: clamp(270px, 70vw, 700px);
        height: clamp(550px, 80vh, 915px);
        top: 40px;
    }
}

@media only screen and (max-height: 770px) and (min-width: 400px) {
    .slide_flex-text {
        width: 35vw;
    }
}

@media only screen and (max-height: 800px) and (max-width: 415px) {
    .slide_flex img {
        height: 30vh;
    }
    .facult_img_start img {
        margin: 0 -100px;
    }

    .warning {
        height: clamp(280px, 90vh, 700px);
    }
}

@media only screen and (max-height: 670px) {
    .swiper-container {
        height: 125vh;
    }
}

@media only screen and (max-height: 500px) {
    .swiper-container {
        height: 60vh;
    }

    .swiper-button-next {
        display: none;
    }
    .swiper-button-prev {
        display: none;
    }

    .swiper_img {
        width: 100vw;
        margin-left: 0;
        margin-top: 20px;
    }

    .slide_flex-text {
        width: 45%;
        margin-left: 0;
        margin-top: 0;
    }

    .slide_flex-text-title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .slide_flex img {
        width: 40%;
        margin-right: 20px;
    }

    .slide_flex-text {
        width: 35vw;
    }
}

@media only screen and (max-height: 430px) {
    .slide_flex-text-announcement {
        line-height: 1.2;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .slide_flex-text {
        margin-left: 10px;
    }

    .slide_button {
        width: 25vw;
        border: 2px solid var(--white);
        height: 40px;
        border-radius: 100px;
        font-size: 16px;
    }

    .slide_flex-text-title {
        font-size: 14px;
    }

    .warning {
        width: clamp(270px, 90vw, 800px);
        height: clamp(280px, 90vh, 400px);
        top: 20px;
    }

    .warning_text {
        font-size: 18px;
        line-height: 25px;
    }

    .warning_text-litl {
        font-size: 14px;
        line-height: 20px;
    }
    .warning_text-big {
        font-size: 24px;
        line-height: 30px;
    }

    .slide_flex-text {
        width: 44vw;
    }

    .warning_ok {
        margin-top: 20px;
    }
}

@media only screen and (max-height: 390px) {
    .logo_war {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .warning_text-big {
        margin-bottom: 10px;
        font-size: 20px;
    }
    .warning_text-litl {
        margin-top: 10px;
    }
}

@media only screen and (max-height: 815px) and (max-width: 390px) {
    /* .swiper-container {
        height: 106vh;
    } */

    .slide_flex-tex {
        width: 100%;
    }

    .slide_flex-text-title {
        width: 100%;
    }

    .warning_text {
        font-size: 18px;
        line-height: 25px;
    }

    .warning_text-litl {
        font-size: 14px;
        line-height: 20px;
    }
    .warning_text-big {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (prefers-color-scheme: dark) {
    /* .sect_bas_img {
        background: url("/img/dark_orn_2.svg") 0 0px repeat-x,
            url("/img/dark_orn_2.svg") -280px 350px repeat-x;
    } */
    .background_ornament {
        background: url("/img/dark_orn_2.svg") repeat-x;
    }

    .emblema {
        background: url("/img/emblema_white.svg") 100% no-repeat;
    }

    /* .flex_news_full {
        background: url("/img/dark_orn_2.svg") 0px 350px repeat-x;
    } */

    .facult_img_start {
        background: url("/img/facult_img_start1.svg") 0 65px no-repeat,
            url("/img/facult_img_start1.svg") right no-repeat,
            url("/img/dark_facult_img_start_fon.svg") top left;
    }

    @media only screen and (max-width: 660px) {
        .facult_img_start {
            background: url("/img/facult_img_start1.svg") 0 65px no-repeat,
                url("/img/dark_facult_img_start_fon.svg") top left;
        }
    }
}

.background_ornament_top {
    top: 40%;
    background-position-x: 240px;
}

.background_ornament_bottom {
    top: 46%;
    background-position-x: -160px;
}

@media only screen and (min-width: 1900px) {
    h2 {
        text-indent: calc(140px * var(--scale));
        padding-left: calc(157px * var(--scale));
    }

    .vrezka {
        height: calc(130px * var(--scale));
        border-top-left-radius: calc(20px * var(--scale));
        border-top-right-radius: calc(20px * var(--scale));
    }

    .sect_bas .next {
        margin: calc(50px * var(--scale)) auto;
    }

    .sect_bas .next svg {
        transform: scale(var(--scale));
    }

    .sect_bas-cif-item-cif {
        font-size: calc(100px * var(--scale));
    }

    .sect_bas_img-text,
    .sect_bas-cif-item-text {
        font-size: calc(16px * var(--scale));
        line-height: calc(20px * var(--scale));
    }

    .sect_bas_img-item img,
    .emblema {
        height: calc(260px * var(--scale));
    }

    .emblema {
        width: calc(248px * var(--scale)) !important;
    }

    .sect_bas_text {
        margin-top: calc(40px * var(--scale));
        margin-bottom: calc(60px * var(--scale));
        gap: calc(20px * var(--scale));
    }

    .faculty_block {
        height: calc(82px * var(--scale));
    }

    .faculty_block,
    .more_long {
        margin-left: calc(157px * var(--scale));
        width: calc(100% - 157px * var(--scale));
    }

    .more {
        margin-top: calc(60px * var(--scale));
    }

    .facult_img_block {
        height: calc(432px * var(--scale));
    }

    .facult_img_start {
        transform-origin: top left;
        transform: scale(var(--scale));
    }

    .transition_soc {
        margin: calc(60px * var(--scale)) auto;
        width: calc(240px * var(--scale));
    }

    .transition_soc .transition_soc-item {
        transform: scale(var(--scale));
    }

    .news_img,
    .news_img_cont {
        height: calc(300px * var(--scale));
    }

    .news_item {
        width: calc(295px * var(--scale));
    }

    .dat {
        margin: calc(10px * var(--scale)) calc(30px * var(--scale));
        font-size: calc(12px * var(--scale));
        line-height: calc(15px * var(--scale));
    }

    .news_text_prolog {
        line-height: calc(20px * var(--scale));
        font-size: calc(16px * var(--scale));
    }

    .news_text svg {
        transform-origin: top left;
        transform: scale(var(--scale));
    }

    .but_all_news {
        margin-bottom: calc(100px * var(--scale));
    }

    .cl-btn-6 {
        right: calc(-50px * var(--scale));
    }

    .sect_bas_img-text {
        margin-top: calc(10px * var(--scale));
        margin-bottom: calc(36px * var(--scale));
    }
}
