.tg_banner{
    position: fixed;
    inset:13rem  calc(1vw * 1) 0 calc(1vw * 49);;
    width: 400px;
    height: 200px;
    background-image:url("/assets/tg_desktop.png");
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    opacity:0;
    transition: opacity 0.5s ease-out;
    z-index: 2000;
}
.section__banner{
    position: relative;
 }
.appeal{
    color:white ;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    width: 60%;
    margin-left: 1.5rem;
    line-height: 1.1;

}
.appeal > span{
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    letter-spacing:2px ;
    font-size: 2rem;
    color:#FFFEFE

}
.close_banner{
    position: absolute;
    right:5px;
    top:5px;
}
.banner-button{
    width: 50%;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #30366b;
    font-weight: 600;
    padding: 0.5rem 2rem;
    margin-left: 1.5rem;
    border: #FFFEFE solid 2px;
    border-radius: 1.2rem;
    text-decoration: none;

}
@media (max-width: 768px){
    .tg_banner{
        inset: 10rem 0;
        max-width: 320px;
        width: 318px;
        height: 160px;
        left:50%;
        right:50%;
        margin-left: -165px;
    }
    .appeal{
        font-size: 1.3rem;
    }
    .appeal > span{
       font-size: 1.8rem;
        }
    .banner-button {
        padding: 0.6rem;
    }
}