* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: raleway_c;
    src: url(../Fonts/raleway-v22-cyrillic-300.woff2);
    font-weight: 300;
}

@font-face {
    font-family: raleway_c;
    src: url(../Fonts/raleway-v22-cyrillic-100.woff2);
    font-weight: 100;
}

/* Start Preloader */

.preloader {
    /*фиксированное позиционирование*/
    position: fixed;
    /* координаты положения */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* фоновый цвет элемента */
    background: #000000;
    /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
    z-index: 1001;
  }
  

  .loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
  }
  
  .loaded .preloader {
    display: none;
  }

/* End Preloader */

.body_hide {
	opacity: 0;
	transition: 4s opacity ease-in-out;
}
.body_visible {
	opacity: 1;
}

:root {
    --index: calc(1vw + 1vh);
    --gutter: 30px;
    --side-small: 20;
    --side-big: 20;
    --depth: 7500px;
    --transition: .75s cubic-bezier(.075, .5, 0, 1)
}

body {
    moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    background-color: #000;
    color: #fff;
    font-weight: 300;
    scrollbar-width: none;
    /* Firefox */

    font-size: calc(var(--index) * .8);
    line-height: 1.75;
    height: var(--depth);
    font-family: raleway_c, sans-serif;
}

body::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.container {

    width: 100%;
    height: 100%;
    position: fixed;
    perspective: 1500px;

}

.gallery {

    transform-style: preserve-3d;
    height: 100%;
}

.frame {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition), opacity .75s ease;
    will-change: transform;
    transform-style: preserve-3d;
}


h1,
h2,
h3,
h4 {
    font-weight: 100;
    text-transform: uppercase;
}

.frame h2 {
    text-align: center;
    font-size: calc(var(--index) * 2);
    /* width: min-content; */
}

.frame-media {
    position: relative;
    width: calc(var(--index) * var(--side-small));
    height: calc(var(--index) * var(--side-big));
    background-position: center;
    background-size: cover;

}

.frame-media_right {

    left: calc(var(--side-small) / 2 * var(--index) + var(--gutter));

}

.frame-media_left {

    right: calc(var(--side-small) / 2 * var(--index) + var(--gutter));

}

.frame_bg {
    background-color: rgb(0 0 0 / .8);
}

.text-left>* {
    position: relative;
    right: 20vw;
}

.text-right>* {
    position: relative;
    left: 20vw;
}


.frame h3 {
    font-size: calc(var(--index) * 2);
}

.frame p {
    max-width: 30vw;
}

.soundbutton {

    cursor: pointer;
    width: 24px;
    transition: 0.8s ease;


}

.soundbutton.paused {
    opacity: 0.25;


}

.footer {
    padding: 10px 0;
    position: fixed;
    bottom: 1%;
    width: 100%;

}

.footer__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer__inner-telegram {
    opacity: 0.25;
    transition: 0.8s;

}

.footer__inner-telegram:hover {
    opacity: 100%;
}

.footer__inner-twitter {
    opacity: 0.25;
    transition: 0.8s;


}

.footer__inner-twitter:hover {
    opacity: 100%;

}


.footer__inner-stashh {
    opacity: 0.25;
    transition: 0.8s;

}

.footer__inner-stashh:hover {
    opacity: 100%;
}



.footer a {
    color: #fff;
    text-decoration: none;

}

.footer__inner.sound {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0.8%;


}



.footer__inner-item {
    display: flex;
    align-items: center;
    padding-top: 0.35%;

}
