.page-main{
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
.fullscreen-slider{
    flex: 1 0 100%;
    position: relative;
    display: flex;
    background-color: #00000073;
    transition: 1.5s ease-in-out all;
}

.fullscreen-slider__images{
    flex: 1 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fullscreen-slider__images::after{
   content:'';
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   background-color: rgba(0, 0, 0, 0.6);

}

.fullscreen-slider__info{
    position: relative;
    z-index: 5;
}
.info-slider__title{
    color: var(--white-color-title);
    font-weight: 600;
    font-size: var(--size-main-title);
    text-align: center;
    line-height: 60px;
    text-shadow:var(--text-shadow-title);
    margin-bottom: 30px;
}
.info-slider__title span{
    text-transform: uppercase;
    display: block;
    margin-top: 40px;
}

