:root {
    --main-bg-color: #fff;
    --main-text-color: #000;
    --main-title-color: #1f1f21;
}

body{
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.1em;
    color: #1f1f21;
}

canvas#launch-convas {
    display: block;
    margin: 0 auto;
}

#loader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: 1s;
    box-shadow: inset 0px 0px 200px 50vh #fff;
    z-index: 999999999;
}
#loader.out{
    box-shadow: inset 0px 0px 200px -50vh #fff;
}
#loader.out.stop{
    display: none;
}

#loader div#loaderLogo{
    background: url(../img/system/logoSVGblueWord.png) no-repeat center;
    /* animation: anim-loader 0.5s alternate infinite forwards; */
    background-size: 25%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    align-content: end;
    justify-items: center;
    display: grid;
    padding-bottom: 2%;
    color: #ccc;
    font-size: x-large;
}

#loader.out div#loaderLogo{
    display: none;
}



@keyframes anim-loader {
	0% {
		background-size: 10%;
	}
    100% {
		background-size: 7%;
	}
}



div#box-startApp {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: grid;
    align-content: center;
    justify-items: center;
}

div#box-startApp h3{
    font-size: calc(24px + 50 * (100vw / 1920));
    line-height: 0.9;
    margin: 0;
    /* padding: 0 0 0 5vw; */
    /* text-indent: -5vw; */
    /* letter-spacing: -0.05em; */
    /* text-transform: lowercase; */
    color: #fff;
    font-variant-caps: petite-caps;
    font-family: ALaRuss;
}

.box-startAppConteiner {
    width: 45%;
}





div#launch-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}


#scane_0{
    width: 45%;
    padding: 0px 2% 0 3%;
    display: grid;
    height: 100%;
    transition: 0.5s;
    overflow: overlay;
    align-content: center;
    text-align: center;
    pointer-events: auto;
}

@media (max-height: 775px){
    #scane_0{
        align-content: normal;
    }
}

.h1_scane_0{
    font-size: calc(14px + 17 * (100vw / 1920));
    font-weight: bold;
    font-family: ALaRuss;
    color: #5b2821;
    margin-top: -100vh;
    transition: 1s;
    margin-bottom: 0;
}

.h2_scane_0{
    font-size: calc(14px + 17 * (100vw / 1920));
    font-weight: bold;
    font-family: ALaRuss;
    color: #5b2821;
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 50%;
    padding: 0 20px;
}

.p_scane_0{
    text-align: left;
    font-size: calc(20px + 24 * (100vw / 1920));
    font-weight: bold;
    font-family: ALaRuss;
    color: #29282d;
    transition: 0.5s;
    min-height: 800px;
}

#launch-interface #bar-right {
    position: fixed;
    /* right: 0.5%; */
    /* top: 1%; */
    /* bottom: 0; */
    display: grid;
    justify-content: center;
    justify-items: center;
    /* align-items: center; */
    align-content: baseline;
    width: 2.5vw;
    z-index: 100;
    /* border-left: 1px solid #999999; */
    /* box-shadow: 0px 0 10px -2px #000; */
    /* background: rgb(0 0 0 / 35%); */



    background: url('../img/system/bar-right.png');
    background-size: cover;
    top: 0;
    right: 0;
    /* height: 180px; */
    padding: 10px 0 20px 10px;
    background-position-y: bottom;
    transition: 5s;
}

.ObjectContent-right.b-none{
    width: 54.5% !important;
    box-shadow: none !important;
}

.b-none{
    background: none !important;
}

#launch-interface .btn{
    background: none;
    border: none;
    color: #fff;
    font-size: calc(3px + 28 * (100vw / 1920));
    padding: 5px;
    text-shadow: 0px 0px 4px #000;
    cursor: pointer;
    position: relative;
}
#launch-interface .btn + .btn{
    margin-top: 10px;
}




#launch-interface .btn.click::before{
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid rgb(224 187 120);
    background: rgb(224 187 120);
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* animation: ring 1.5s infinite; */
    animation: ring 1.5s;
    opacity: 0;
  }

  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 300vw;
      height: 300vw;
      opacity: 1;
    }
  }
  



button.btn.sound {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400; 
    opacity: 0.8;
}

button.btn.sound:hover {
    opacity: 1;
}

button.btn.sound-on::after {
    content: "\f028";
}

button.btn.sound-off::after {
    content: "\f6a9";
}



button.btn.menu {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400; 
    opacity: 0.8;
}

button.btn.menu:hover {
    opacity: 1;
}

button.btn.menu-on::after {
    content: "\f0c9";
}

button.btn.menu-off::after {
    content: "\f0c9";
}



button.btn.prev {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400; 
    opacity: 0.8;
    display: none;
}

button.btn.prev:hover {
    opacity: 1;
}

button.btn.prev::after {
    content: "\f177";
}


button.btn.next {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400; 
    opacity: 0.8;
    display: none;
}

button.btn.next:hover {
    opacity: 1;
}

button.btn.next::after {
    content: "\f178";
}




.btn-close{
    background: none;
    border: none;
    color: var(--main-text-color);
    font-size: calc(12px + 30 * (100vw / 1920));
    padding: 5px;
    text-shadow: 1px 2px 4px #000;
    cursor: pointer;
    position: absolute;
    top: 1%;
    right: 1.5%;
    z-index: 100;
}
button.btn.close {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400; 
    opacity: 0.8;
}

button.btn.close:hover {
    opacity: 1;
}

button.btn.close::after {
    content: "\f00d";
}








.over {
    /* background: var(--main-bg-color); */
    background: url("../img/system/front-content-1.jpg") 0% 0% / 100% 100% no-repeat rgba(255, 255, 255, 0.48);
    color: var(--main-text-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 100;
    pointer-events: auto;
}

.content-full {
    /* position: absolute; */
    /* bottom: 0; */
    /* top: 0; */
    margin: 0px 0;
    overflow: overlay;
    background: url(../img/system/logo-grey.png) center center / auto 75% no-repeat;
    background-position: center center;
    width: 100%;
}
.content-full.op3{
    background: url(../img/system/logo-grey-op3.png) center center / auto 75% no-repeat;
}

.d-block {
    display: block !important;
}
.show{
    animation: show 0.5s;
}
.hide{
    animation: hide 0.5s;
}


@keyframes show {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

@keyframes hide {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }



.over h2 {
    font-size: 1.4vw;
    font-weight: normal;
    margin-bottom: 15px;
    color: var(--main-title-color);
    text-shadow: none;
    padding: 0 105px 0 50px;
    height: 40px;
}

.content-full p,#ObjectContent p, .content-full li,#ObjectContent li {
    font-size: larger;
    text-align: justify;
    text-indent: 30px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.mCSB_draggerRail {
    position: fixed;
    top: 70px;
    bottom: 0;
    margin-left: 7px !important;
    display: none;
}

#contentElement.isImg {
    width: 100%;
    display: flex;
}

#contentElement {
    position: absolute;
    width: 65%;
    height: 100%;
    pointer-events: auto;
    opacity: 0;
    transition: 0.5s;
    background: url(../img/front/1.jpg);
    background-size: 280px;
}

.contentElementContent {
    width: 100%;
    font-family: 'Open Sans';
    font-weight: bold;
    color: #131313;
    position: relative;
}
/* 
.position-left .contentElementContent{
    padding-left: 1.5vw;
} */

.position-right .contentElementContent{
    /* padding-left: 30px; */
    /* padding-right: 30px; */
}

.contentElementContentDec {
    background: url(../img/system/uzor-content.png) rgb(255 255 255 / 0%) no-repeat;
    background-size: 50%;
    padding: 6vw 4vw 0 6vw;
    height: calc(100% - 6vw);
}



.contentElementContentVideo + .contentElementContentDec {
    height: calc(100% - 6vw - 110px);
}


.contentElementContent h1.contentElementName{
    margin: 0;
    padding-left: 4vw;
    padding-bottom: 15px;
    font-family: 'Champagne & Limousines';
    font-size: calc(3px + 32 * (100vw / 1920));
    text-transform: uppercase;
}


.position-left{
    right: 0;
}

.position-right{
    left: 0;
}

.contentElementText {
    height: calc(100% - 6vw);
    font-size: larger;
    font-family: 'Champagne & Limousines';
    text-indent: 1.5em;
    text-align: justify;
    font-size: calc(3px + 20 * (100vw / 1920));
}

.contentElementText.contentElementContentDec-media{
    height: calc(100% - 9vw);
}



.contentElementImgBox {
    width: 50%;
    display: grid;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 25px;
}
.contentElementImgBox span{
    color: #9f1e20;
    text-transform: uppercase;
    font-family: 'Champagne & Limousines';
    font-size: calc(3px + 20 * (100vw / 1920));
    font-weight: bold;
    text-align: center;
}

img.contentElementImg {
    max-height: 90vh;
    width: 100%;
}




div#ObjectContent {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    opacity: 0;
    transition: 2s;
    display: grid;
    align-content: baseline;
    /* background: url(../img/Логотип_серый2.png) center center / auto 75% no-repeat #fff; */
    background: url(../img/system/front-content-0.jpg);
    background-size: cover;

    /* background: url(https://www.notebookingnook.com/wp-content/uploads/2015/03/38-vintage-paper-background-lrg.jpg) 0px 0px / cover;
    background-size: 800px; */
    
    font-family: 'Open Sans';
    font-weight: bold;
    color: #131313;
    box-shadow: 0 0 10px -2px #686868;
}

div#ObjectContent.ObjectContent-left{
    padding-right: 3%;
    padding-left: 3%;
    width: 58.5%;
    right: 0;
}

div#ObjectContent.ObjectContent-right{
    padding-left: 3%;
    width: 62%;
    left: 0;
}

.content-ObjectContent {
    width: 100%;
}

.content {
    position: absolute;
    bottom: 0;
    top: 90px;
    left: 4%;
    right: 0;
}





.mCSB_inside>.mCSB_container {
    margin-right: 30px;
    padding-right: 30px;
}



.scane_left{
    width: 22%;
    height: 85%;
    position: absolute;
    top: 9%;
    left: 4%;
    bottom: 0;
    display: grid;
    align-content: start;
    justify-items: center;
    background: url(../img/system/Panno_dlya_texta_k_ikone_1_kopia.png) center center no-repeat;
    background-size: 100% 100%;
    background-position: 0;
    padding: 0 20px;
    pointer-events: all;
    max-width: 47vh;
    -webkit-filter: drop-shadow(-5px 5px 5px #444);
    filter: drop-shadow(-5px 5px 5px #444);
}

.scane_right{
    width: 22%;
    /* height: 100%; */
    position: absolute;
    top: 0%;
    right: 3%;
    /* bottom: 0; */
    display: grid;
    align-content: start;
    justify-items: center;
    /* background: url(../img/system/bg-el-2.png) center center no-repeat;
    background-size: 100% 100%;
    background-position: 0; */
    background: url(../img/system/front-content-1.jpg) 0% 0% / 100% 100% no-repeat;
    padding: 0 20px;
    pointer-events: all;
    max-width: 47vh;
    -webkit-filter: drop-shadow(1px 2px 2px #444);
    filter: drop-shadow(1px 2px 2px #444);
}

.scane_right.toLeft{
    right: none;
    left: 3%;
}

.scane_right h1{
    text-align: left;
    font-size: calc(3px + 19 * (100vw / 1920));
    font-weight: bold;
    font-family: ALaRuss;
    color: #a71906;
    padding: 0vh 20px 0px 20px;
}


.scane_left .scane_1_box, .scane_left .scane_2_box {
    width: 80%;
    text-align: left;
    font-size: calc(3px + 19 * (100vw / 1920));
    font-weight: bold;
    font-family: ALaRuss;
    color: #29282d;
    margin-top: 13vh;
    max-height: 47.5vh;
    overflow: overlay;
}

.scane_left .scane_1_box.mCustomScrollbar , .scane_left .scane_2_box.mCustomScrollbar  {
    padding-left: 25px;
}

@media screen and (max-aspect-ratio: 12/9){
    div#scane_1, div#scane_2 {
        display: none;
    }
}


.h1_scane_1, .h1_scane_2{
    color: #a71906;
}


.scane_1 .mCSB_inside>.mCSB_container, .scane_2 .mCSB_inside>.mCSB_container{
    padding-right: 0;
}



#videoALbox, .contentElementContentVideo, .contentElementContentGallery {
    background: rgb(0 0 0 / 85%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    pointer-events: all;
    z-index: 10;
}

.contentElementContentVideo{
    overflow: overlay;
}

.contentElementContentVideo .video-flex {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    align-content: space-evenly;
    justify-content: center;
}

.contentElementContentVideo a, .contentElementContentVideo div {
    margin: 10px;
    display: block;
    width: calc(25% - 20px);
    position: relative;
    text-decoration: none;
}

.contentElementContentVideo a:hover img{
    box-shadow: 0px 0px 10px -4px #ffffff;
}

.contentElementContentVideo a:hover::after {
    content: "\f04b";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* box-shadow: 0px 0px 15px -3px #ffffff inset; */
    border-radius: 5px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    display: flex;
    color: #ffffff;
    font-size: xx-large;
    text-shadow: 0px 0px 20px #ffffff;
    background: rgb(0 0 0 / 45%);
}

.contentElementContentVideo img {
    height: auto;
    width: 100%;
    display: block;
    border-radius: 5px;
}




  .ambilightWrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .videoWrapper {
    width: 70vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

#videoALcont {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    /* aspect-ratio: 16 / 9; */
  }
  #ambilight {
    filter: blur(80px) opacity(0.5) saturate(300%);
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: scale(1.3) translateZ(0);
    width: 100%;
    z-index: -1;
    height: 100%;
  }
  
.contentElementContentMedia {
    position: absolute;
    bottom: 0vw;
    display: flex;
    justify-content: center;
    width: 100%;
    
}

.contentElementContentMedia button:not(:first-child), .contentElementContentMedia button + a {
    margin-left: 10px;
}

button#sound-play-one, button#sound-stop-one, button#sound-stop-all, button#video-play-content, button#video-play-one, a.link-conent, button#gallery-content, button#BottonGOTO-content {
    background: none;
    border: 1px solid #9f1e20;
    border-radius: 50px;
    color: #9f1e20;
    padding: 7px 20px 7px 7px;
    font-family: 'Champagne & Limousines';
    text-align: justify;
    font-size: calc(3px + 18 * (100vw / 1920));
    font-weight: bold;
    margin-bottom: 1.15vw;
    cursor: pointer;
    text-decoration: none;
    pointer-events: all;
}

button#sound-play-one i, button#sound-stop-one i, button#sound-stop-all i, button#video-play-content i, button#video-play-one i, a.link-conent i, button#gallery-content i, button#BottonGOTO-content i{
    padding: 5px 0px 5px 15px;
    border-radius: 50px;
    color: #9f1e20;
}

.contentElementContentMedia button i {
    margin-right: 10px;
}
.contentElementContentMedia a i {
    margin-right: 10px;
}




.progress {
    height: 0.4vw;
    width: 100%;
    overflow: hidden;
    background-color: rgb(159 30 32 / 15%);
    -webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    position: absolute;
    bottom: 0;
    cursor: pointer;
}


.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #9f1e20;
    -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
    /* -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
     */
     -webkit-transition: none;
     -moz-transition: none;
     -ms-transition: none;
     -o-transition: none;
     transition: none;
}



.mCSB_horizontal.mCSB_inside>.mCSB_container{
    margin-right: 0;
    padding-right: 0;
}

.scane_1_list .mCSB_container, .scane_2_list .mCSB_container, .scane_3_list .mCSB_container {
    text-align: left;
    padding-right: 0;
    display: grid;
}


.scane_1_list, .scane_2_list, .scane_3_list {
    display: grid;
    height: 70vh;

}

.scane_1_list + h1{
    margin-top: 2em;
}


.scane_botton_element {
    background: none;
    border: 1px solid #9f1e20;
    border-radius: 50px;
    color: #9f1e20;
    padding: 7px 20px 7px 7px;
    font-family: 'Champagne & Limousines';
    text-align: left;
    font-size: calc(3px + 16 * (100vw / 1920));
    font-weight: bold;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: none;
}
.scane_botton_element {
    margin-right: 4px;
    display: flex;
    align-items: center;
}
.scane_botton_element i{
    padding: 0 10px 0 5px;
}

/* 
#scane_0 .p_scane_0:nth-child(odd){
    text-align: right;
} */


.contentElementImgGOTO{
    cursor: pointer;
}



#scane_4{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: calc(100% - 103px); */
    /* background: #ff0000; */
    pointer-events: all;
    padding-bottom: 2%;
}

#scane_4 .scane_4_list{
    padding: 1% 2%;
}

#scane_4 .scane_4_list .mCSB_container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;  
}

#contentElement.content-3 .contentElementContent{
    width: 50%;
}

#contentElement.content-3 .contentElementImg {
    filter: drop-shadow(2px 4px 6px black);
    padding-bottom: 25px;
}


img.content-img{
    margin: 0 auto;
    display: block;
    max-width: 100%;
}


.itc-slider__items {
    counter-reset: slide;
  }

  .itc-slider__item {
    flex: 0 0 100%;
    max-width: 100%;
    counter-increment: slide;
    height: 250px;
    position: relative;
  }

  .itc-slider__item::before {
    content: counter(slide) "/18";
    position: absolute;
    top: 10px;
    right: 4vw;
    color: #fff;
    font-style: italic;
    font-size: 32px;
    font-weight: bold;
    display: block;
  }

.contentElementContentGallery {
    display: block;
}


.itc-slider__item {
    flex: 0 0 100%;
    max-width: 100%;
    counter-increment: slide;
    height: 100vh;
    position: relative;
}

.itc-slider__item img{
    margin: 0 auto;
    display: block;
    height: 80%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.itc-slider__item_text {
    bottom: 0;
    width: 98%;
    height: 18%;
    background: url(../img/system/front-content-1.jpg) 0 0 / 100%;
    padding: 0.01% 1%;
    text-align: center;
}

.itc-slider__item_text p {
    font-size: large;
    margin: 0;
}

.itc-slider__item_text h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}


.videoALbtn.scene_5{
    position: absolute;
    top: 20px;
    left: 80px;
}

.flex-duo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}

.flex-duo div {
    padding: 5px;
    width: calc(50% - 10px);
}

.flex-duo div p {
    text-indent: 0;
    text-align: center;
}

.flex-duo-img-text{
    display: flex;
}
.flex-duo-img-text .content-full-img-div {
    width: 35%;
    margin-right: 30px;
}

.flex-duo-img-text .content-full-img-div img.content-full-img.mCS_img_loaded {
    width: 100%;
}

.flex-duo-img-text .content-full-text-div {
    width: 100%;
}

.content-full-box strong {
    font-size: x-large;
}


.flex-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}

.flex-three div {
    padding: 5px;
    width: calc(33% - 10px);
}

.flex-three div p {
    text-indent: 0;
    text-align: center;
}

.menu_full_page{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
div#user_list{
    display: grid;
    justify-content: end;
    align-items: center;
    align-content: center;
    height: 100%;
    margin-right: 10%;
}

.user_item {
    padding: 10px 0 10px 0;
}

span.user_item_name {
    font-size: x-large;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.1em;
    color: #1f1f21;
}

span.user_item_job {
    font-size: inherit;
    font-family: 'Josefin Sans', sans-serif;
    color: #1f1f21;
}






#about {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: calc(100vh - 120px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10%;
}


.warp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}


.ab-cont.left {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.ab-cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-family: Montserrat, sans-serif;
}

.ab-cont.right {
    margin-top: 1.3vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.ab-cont h1 {
    margin-top: 0px;
    margin-bottom: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-family: Onest;
    color: var(--main-title-color);
    font-size: 5vw;
    line-height: 6vw;
    letter-spacing: 0.1vw;
    color: #1f1f21;
    font-weight: 100;
}

.ab-cont-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* margin-right: 3vw; */
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
p.p-cont {
    width: 37vw;
    margin-bottom: 2vw;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #4d4d44;
    font-size: 1vw;
    line-height: 1.5vw;
    text-align: left;
    text-indent: inherit;
    margin-top: 0;
}


p.p-cont.job {
    width: 12vw;
    margin-top: 0.1vw;
    margin-bottom: 0.6vw;
    opacity: 0.8;
    color: var(--main-title-color);
    font-size: 0.7vw;
    letter-spacing: 0.2vw;
    text-transform: uppercase;
}

p.p-cont.name {
    width: 18vw;
    margin-bottom: 0.6vw;
    color: var(--main-title-color);
    font-weight: 600;
}

.content-full-text {
    padding: 0 12%;
}

img.content-full-img{
    margin: 0 auto;
    display: block;
}


div#menu-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}






ol, ul {
    list-style: none;
  }
  
  .pure-tree {
    text-align: left;
    display: block;
  }
  .pure-tree.main-tree {
      width: 100%;
      display: inline-block;
      height: 680px;
      overflow: overlay;
  }
  
  .pure-tree:not(.main-tree) {
    padding-left: 1.2em;
  }
  .pure-tree:not(.main-tree) li {
    overflow: hidden;
    height: 0;
    display: block;
  }
  .pure-tree label, .pure-tree a{
    display: block;
    cursor: pointer;
    border-bottom: 1px dashed #B0B9C5;
    padding: 1.125em 1.125em 1.125em 0;
  }
  
  .pure-tree label:before {
      width: 1em;
      height: 1em;
      line-height: 1em;
      display: inline-block;
      font-family: "Font Awesome 6 Free";
      content: "\f10e";
      padding-right: 1.75em;
  }
  
  .pure-tree_link a:before {
      width: 1em;
      height: 1em;
      line-height: 1em;
      display: inline-block;
      font-family: "Font Awesome 6 Free";
      content: "\f08e";
      padding-right: 1.75em;
  
  }
  
  .pure-tree label.text:before {
      content: "\f0f6";
  }
  
  .pure-tree label.pdf:before {
      content: "\f1c1";
  }
  
  .pure-tree label.video:before {
      content: "\f01d";
  }
  
  .pure-tree label.audio:before {
      content: "\f001";
  }
  .pure-tree label.img:before {
      content: "\f1c5";
  }
  
  
  
  
  .pure-tree label:hover, .pure-tree a:hover {
    color: #434a58;
    border-bottom-color: #434a58;
  }
  .pure-tree .pure-tree_link a {
    padding: 1.500em 1.125em 0.750em 0;
    display: block;
    border-radius: .2em;
    text-decoration: none;
  }
  .pure-tree .pure-tree_link a:hover {
  }
  .pure-tree.nested {
    padding-left: 1.7em;
  }
  .pure-tree [type="checkbox"] {
    display: none;
  }
  .pure-tree [type="checkbox"]:checked + label {
    /* color: #004ade; */
    border-bottom-color: #434a58;
  }
  .pure-tree.main-tree .top-tree{
      color: #c2292e;
  }
  .pure-tree [type="checkbox"]:checked ~ ul > li {
    height: auto;
  }
  
  #reference_content video {
      max-height: 680px;
      max-width: 99%;
      background: #000;
      margin-bottom: 50px;
      margin-top: 40px;
  }
  #reference_content audio {
      width: 100%;
  }
  
  #topBac{
      background: #fff;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 130px;
      box-shadow: 0px 0px 10px -2px #000;
      z-index: 15;
      display: none;
  }
  
  .PDFReader{
      height: 100%;
      max-height: 100%;
  }
  
  .LinkToDiv{
      position: fixed;
      bottom: 9px;
      left: 25px;
  }
  
  a.LinkTo{
      color: #fff;
      background: #c2292e;
      padding: 3px 5px;
      text-transform: uppercase;
      font-size: 0.7vw;
  }
  
  img.img_ref {
      width: 95%;
      margin: 0 auto;
      float: right;
  }
  
  /* .container{
      background: url(../img/f2.png);
      background-size: cover;
  } */
  
  
  div#pdf {
      display: display;
      text-align: center;
  }
  
  div#pdf img{
      padding: 10px;
      width: 330px;
      margin-top: 20px;
      margin-bottom: 30px;
  }
  .overlay.overlay--galary, .overlay--video,  .overlay--video1, .overlay--pdf {
      align-items: start;
      overflow: overlay;
      padding-top: 150px;
    }
  
    .row-cols-lg-2 .mediaBox.col{
        min-width: 250px;
    }








    .reference_box {
        position: absolute;
        top: 0;
        display: flex;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
    }

    .reference_content {
        width: 70%;
        display: grid;
        /* justify-content: center; */
        align-items: center;
        align-content: stretch;
        padding-left: 55px;
    }
    .PDFReader {
        height: 100%;
        max-height: 100%;
        width: 100%;
        border: 0;
    }


    .pure-tree.main-tree {
        width: 100%;
        display: inline-block;
        height: calc(100% - 35px);
        overflow: overlay;
    }

    .reference {
        width: 30%;
    }







































/* 

@media (min-width: 767px){
    #scane_0 .h1_scane_0{
        font-size: calc(24px + (50 + 50 * 0.7) * ((100vw - 320px) / 1920));
    }
}

 */









.TESTSYSTEM_centre::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #ff0000;
}


.TESTSYSTEM_centre::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 4px;
    background: #ff0000;
}

.TESTSYSTEM_left::after {
    content: "";
    position: absolute;
    left: 35%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff0000;
}


.TESTSYSTEM_left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff0000;
}

.TESTSYSTEM_right::after {
    content: "";
    position: absolute;
    right: 35%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff0000;
}


.TESTSYSTEM_right::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff0000;
}

.TESTSYSTEM_centLR::after {
    content: "";
    position: absolute;
    left: 17.5%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff0000;
}


.TESTSYSTEM_centLR::before {
    content: "";
    position: absolute;
    right: 17.5%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff0000;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgb(159 30 32);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: rgba(159,30,0,.9);
}

.h-100{
    height: 100%;
}

.h-50vh{
    height: 50vh;
}

#scane_3.scane_right{
    background: url(../img/front/fon-red.jpg) 0% 0% / 100%;
}

#scane_3.scane_right h1 {
    color: #fff;
    display: flex;
    padding: 0;
    margin-top: 20px;
}

#scane_3.scane_right h1 div.ico {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

#scane_3.scane_right h1 div.ico.ico-1 {
    background: #e77d63;
}

#scane_3.scane_right h1 div.ico.ico-2 {
    background: #998473;
}

#scane_3.scane_right h1 div.ico+div {
    width: calc(100% - 70px);
    margin-left: 20px;
}



#scane_3 .scane_botton_element{
    color: #fff;
    border: 0;
    margin-left: 25px;
    margin-bottom: 10px;
}


#scane_3 .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgb(255 255 255);
}

#scane_3 .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(255,255,255,.85);
}

#scane_3  .mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: rgba(255,255,255,.9);
}





img.imgTextPro {
    float: left;
    padding: 0 30px 15px 0;
}



.rotation-el {
    margin: 0 !important;
    padding: 0 !important;
    -webkit-animation-name: rotation;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotation;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-name: rotation;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    animation-name: rotation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
 }
  
 @-webkit-keyframes rotation {
     0% {-webkit-transform:rotate(0deg);
         -moz-transform:rotate(0deg);
         -o-transform:rotate(0deg);
         transform:rotate(0deg);}
     100% {-webkit-transform:rotate(360deg);
         -moz-transform:rotate(360deg);
         -o-transform:rotate(360deg);
         transform:rotate(360deg);}
 }
 @-moz-keyframes rotation {
     0% {-webkit-transform:rotate(0deg);
         -moz-transform:rotate(0deg);
         -o-transform:rotate(0deg);
         transform:rotate(0deg);}
     100% {-webkit-transform:rotate(360deg);
         -moz-transform:rotate(360deg);
         -o-transform:rotate(360deg);
         transform:rotate(360deg);}
 }
 @-o-keyframes rotation {
     0% {-webkit-transform:rotate(0deg);
         -moz-transform:rotate(0deg);
         -o-transform:rotate(0deg);
         transform:rotate(0deg);}
     100% {-webkit-transform:rotate(360deg);
         -moz-transform:rotate(360deg);
         -o-transform:rotate(360deg);
         transform:rotate(360deg);}
 }
 @keyframes rotation {
     0% {-webkit-transform:rotate(0deg);
         -moz-transform:rotate(0deg);
         -o-transform:rotate(0deg);
         transform:rotate(0deg);}
     100% {-webkit-transform:rotate(360deg);
         -moz-transform:rotate(720deg);
         -o-transform:rotate(360deg);
         transform:rotate(360deg);}
 }