.tlg__wrapper{
    background-color: #FF7A00;
    background-repeat: no-repeat;
    background-position: 0 20%;
    padding: 20px 20px 20px 330px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
}

.tlg__wrapper:hover{
    color: #fff;
}

.tlg__wrapper:before {
    content: '';
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    width: 221px;
    height: 221px;
    left: -149px;
    top: -92px;
    background: radial-gradient(50% 50% at 50% 50%,rgba(255,255,255,0) 0%,rgba(255,255,255,0.15) 100%);
    box-shadow: 0 20px 0 50px rgb(255 255 255 / 10%);
}

.tlg__wrapper:after {
    content: '';
    z-index: -1;
    width: 164px;
    height: 164px;
    right: -82px;
    top: -40px;
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%,rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 100%);
}


.tlg__title{
    font-weight: 900;
    font-size: 28px;
    line-height: 33px;
    margin: 0 0 9px;
}

.tlg__desc{

    line-height: 20px;
    margin: 0 0 9px;
}

.tlg__btn{
    font-weight: bold;
    line-height: 19px;
    text-align: center;
    color: #3FA0E1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px 5px;
    width: 171px;
    height: 40px;
    background: linear-gradient(0deg, #fff, #fff), #CB4340;
    border:solid #fff 1px;
    border-radius: 5px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.tlg__icon{
    margin-right: 14px;
}

.tlg__btn:hover{
    color: #3FA0E1;
    border: solid #1E88E5 1px;
}

@media (max-width: 768px){
    .tlg__wrapper{
        padding: 20px;
        background-position: right -30px bottom -60px;
        background-size: 200px;
    }
    .tlg__title{
        font-size: 23px;
        line-height: 26px;
        text-shadow: 1px 1px 3px rgb(0 0 0 / 80%);
    }
    .tlg__desc{
        text-shadow: 1px 1px 3px rgb(0 0 0 / 80%);
    }
    .tlg__wrapper:after{
        display: none;
    }
}