
//.scroll-block {
    height: 100vh;
    background:#000000;
    position: relative;
}

//.scroll-block::after {
    content: 'Скролл';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
}

.block1 {
    height: 120px;
    //background: #08090a;
    position: relative;
    z-index: 10;
    text-align: center;
}

.spacer-content {
  background:#08090a;
    font-size: 3rem;
    color: white;
    font-weight: 900;
}

.block2 {
    height: 130px;
    //background: #08090a;
  color: #FFFFFF;
    position: relative;
    z-index: 1;
    text-align: right;
    //overflow: hidden;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
    flex-direction: row;
}

.block2 .block2-number.text.heading-text
{
position: relative;
font-size: 26px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
    letter-spacing: -0.5px;
	color: #c3c3c3;
	height: fit-content;
	line-height: 1;
}

//.block2-number:before
{
    position: absolute;
    content: '';
    top: 0;
    left: -20px;
    width: calc(100% + 40px);
    height: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

//.block2-number:after
{
    position: absolute;
    content: '';
    left: 0;
    top: -20px;
    height: calc(100% + 40px);
    width: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 4;
}

.title {
    font-size: 10rem;
    font-weight: 300;
    line-height: 0.8;
    letter-spacing: 1.3rem;
    font-family: 'Unbounded', sans-serif;
    margin: 0;
  text-transform: uppercase;
      display: flex;
    align-items: flex-start;
}

.title span {
    display: inline-block;
    transform: translate3d(0, -250px, 0);
}

.title span:first-child
{
//padding-right: 1rem;
  //font-size: 2rem;
  //color: #c3c3c3;
}

@media (max-width: 1440px)
{

.block2
{
    padding: 10px 40px;
    font-size: 2rem;
	text-align: left;
}

}

@media (max-width: 1024px)
{

.block1, .block2 {
    height: 68px;
}

.block2
{
    padding: 10px 20px;
    font-size: 1rem;
	text-align: left;
	display: flex;
        flex-direction: column;
}

.title
{
    font-size: 4rem;
}

}

@media (max-width: 768px)
{

.title
{
    font-size: 2rem;
}

.block2
{
    padding: 10px 10px;
}

}

/* Десктоп */
.title-trigger-desktop {
  --start-trigger: "top 110%";
  --end-trigger: "top 40%";
}

/* Планшет вертикальный */
@media (max-width: 1024px) and (orientation: portrait) {
  .title-trigger-tablet-portrait {
    --start-trigger: "top 90%";
    --end-trigger: "top 60%";
	font-size: 4rem;
  }
  
}

/* Планшет горизонтальный */
@media (max-width: 1024px) and (orientation: landscape) {
  .title-trigger-tablet-landscape {
    --start-trigger: "top 100%";
    --end-trigger: "top 50%";
	font-size: 4rem;
  }
  
}

/* Смартфон вертикальный */
@media (max-width: 768px) and (orientation: portrait) {
  .title-trigger-mobile-portrait {
    --start-trigger: "top 100%";
    --end-trigger: "top 50%";
	font-size: 3rem;
	letter-spacing: 0.8rem;
  }
  
}

/* Смартфон горизонтальный */
@media (max-width: 768px) and (orientation: landscape) {
  .title-trigger-mobile-landscape {
    --start-trigger: "top 100%";
    --end-trigger: "top 50%";
	font-size: 2rem;	
	letter-spacing: 0.8rem;
  }
  

}