.s_text h1, .s_text h2, .s_text h3, .s_text h4, .s_text h5 {
    font-weight:800;
}

.s_text {
    max-height: 300px;
    position: relative;
    overflow: hidden;
    transition-duration:.7s;
}
.s_text.active{
    max-height: 3000px;
}
.s_text::before{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:150px;
    content:'';
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
    transition-duration:.7s;
}

.s_text.active::before{
    opacity:0;
    visibility:hidden;
}

.s_text__read_more{
    margin-bottom:40px;
    cursor:pointer;
}

.developer a{
    display: inline-block;
    width: 80px;
    height: 20px;
    background-image: url(/wp-content/themes/digiqole/assets/images/adcore.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 20px;
    cursor: pointer;
    transition-duration: .3s;
    opacity: .6;
    margin-bottom:20px;
}

.copy-right .copyright-text p{
    margin-top:20px;
}

.developer a:hover{
   opacity:1;
}
