@font-face {
    font-family: 'TheFuture';
    src: url(/wp-content/themes/ComingSoon/src/fonts/subset-TheFuture-Light.woff2) format('woff2'),
         url(/wp-content/themes/ComingSoon/src/fonts/subset-TheFuture-Light.woff) format('woff');

    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'TheFuture';
    src: url(/wp-content/themes/ComingSoon/src/fonts/subset-TheFuture-Bold.woff2) format('woff2'),
         url(/wp-content/themes/ComingSoon/src/fonts/subset-TheFuture-Bold.woff) format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Agrolik';
    src: url(/wp-content/themes/ComingSoon/src/fonts/agrolik.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}
html {  
    overflow: hidden;
}
body {
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    position: relative;
    isolation: isolate;
    font-family: 'TheFuture', sans-serif;
    font-size: 32px;
    overflow: hidden;
}
a {
    color: #000000;
    text-decoration: none;
}
.hidden-object {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.agrolik-font {
    font-family: 'Agrolik', sans-serif;
}
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url(#coloredNoiseFilter);
    opacity: 100%;
    z-index: -1;
    pointer-events: none;
}
#top-left-block {
    position: absolute;
    top: 60px;
    left: 60px;
}
#top-left-block > span {
    display: block;
    line-height: 1;
    padding-bottom: 10px;
}
#middle-block {
    display: flex;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: row;
    /*justify-content: space-around;*/
    justify-content: center;
    align-items: center;
}

#middle-block > span {
    font-size: 180px;
    z-index: 5;
}
#middle-block .middle-block-left {
    /*margin-right: 2em;*/
    /*margin-left: -100px;*/
    margin-right: 3.8em;
    margin-left: -100px;
}
#middle-block .middle-block-right {
    /*margin-left: -2.1em;*/
    margin-left: -150px;
}
#middle-block picture {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 668px;
    z-index: 10;
    transition: all 1.2s ease-in-out;
    transform: rotate(90deg);
    filter: grayscale(1);
}
#middle-block picture.active {
    max-width: 942px;
    transform: rotate(0deg);
    filter: grayscale(0);
}
#middle-block img {
    width: 100%;
}
#bottom-block {
    position: absolute;
    bottom:0;
    left: 0;
    width: calc(100% - 120px);
    padding: 60px;
}
#bottom-block-left {
    float: left;
}
#bottom-block-right {
    float: right;
}

#sliding-element {
    position: absolute;
    height: 100vh;
    top: 50%;
    transform: translateY(-50%);
    left: 75%;
    width: 25%;
    z-index: 15;
    background: rgba(200, 200, 200, 0.15);
    backdrop-filter: blur(20px);
    transition: all 1.2s ease-out;
}
#sliding-element.active {
    left: 0;
    transition: all 1.2s ease-out;
}
#sliding-element.active.hide {
    left: 100%;
    transition: all 1.6s ease-out;
}