.telegram-cta{
    background: var(--black);
    padding: 120px 0;
    color: white;
    .container{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 60px;
    }
}
.telegram-cta_content{
    flex-shrink: 1;
    max-width: 580px;
}
.telegram-cta_title{
    font-size: 35px;
    font-weight: 600;
    line-height: 1em;
}
.telegram-cta_txt{
    margin: 20px 0 0 0;
    font-size: 16px;
}
.telegram-cta_link{
    width: 155px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    border: 3px solid #FF7700;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    & :where(img, svg){
        width: 50%;
        height: auto;
        object-fit: contain;
    }
    path{
        fill: var(--blue);
    }
}
.telegram-cta_link:hover{
    background: #00ce1b;
    path{
        fill: var(--black);
    }
}
@media(max-width: 800px){
    .telegram-cta{
        padding: 85px 0;
        .container{
            justify-content: center;
        }
    }
    .telegram-cta_title{
        text-align: center;
    }
    .telegram-cta_txt{
        text-align: center
    }
}