body {
    background-color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    margin: 0;
}


.fss-dualt {
    position: relative;
    /*overflow: hidden;*/
    
    &__middle {
        .fss-dualt__small {
            display: flex;
            align-items: center;
        }
        
        .fss-dualt__large {
            width: 100%;
            text-align: center;
            @include tablet-all {
               text-align: left;
            }
        
        }
        
        .fss-dualt__title {
            padding-left: 8px;
            padding-right: 0;
            @include tablet-all {
               padding-left: 0;
                padding-right: 10px;
            }
        }
    }
        
    &__large {
        white-space: nowrap;
        position: absolute;
        bottom: -20px;
        left: 0;
        font-size: 131px;
        line-height: 1em;
        font-weight: 700;
        color: #000;
        opacity: 0.07;
        @include tablet-all {
            font-size: 60px;
            bottom: 10px;
            opacity: 0.07;
        }
    }

    &__small {
        padding: 30px 0;
        @include tablet-all {
            padding: 20px 0;
        }
    }
    
    &__title {
        position: relative;
        margin: 0;
        font-weight: 700;
        font-size: 2rem;
        color: $teget;
        padding-right: 10px;
        position: relative;
        display: table-cell;
        vertical-align: middle;
        margin: 0;
        z-index: 1;
        
        @include desktop-all {
            white-space: nowrap;
        }
        
        @include tablet-all {
            font-size: 22px;
        }
    }
    
    &__dots {
        position: relative;
        top: 2px;
        display: table-cell;
        width: 99%;
        height: 14px;
        vertical-align: middle;
        z-index: 1;
        background-image: url('./images/dots-dark.png');
        background-repeat: repeat-x;
        background-position: left center;
        
        @include tablet-all {
            display: none;
        }
    }
    
    &__light {
        .fss-dualt__large {
            color: white;
            opacity: 0.1;
        }
        .fss-dualt__title {
            color: white;
        }
        .fss-dualt__dots {
            background-image: url('./images/dots-light.png');
        }
    }
    
}


.fss-archive__head {
    .fss-dualt__large {
        color: $color-blue-dark;
        font-size: 18px;
        line-height: 1em;
        font-weight: 500;
        bottom: 75px;
        opacity: 1;
    }
}