.banner-tg * {
  box-sizing: border-box;
}
.banner-tg {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background-color: #0088CC;
  padding: 10px 0;
  margin: 0;
  overflow: hidden;
  font-family: 'Rubik', sans-serif;
}
.banner-tg__cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;   
}
.banner-tg__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}

.banner-tg__link b {
  font-weight: 600;
  text-decoration: underline;
}

.banner-tg__img  {
  position: absolute;
  bottom: -90px;
  right: -200px;

}
.banner-tg__icon {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
  --mask-size: 25px;
  
  &::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-color: currentColor;
      mask: url('/assets/images/icons/telegram.svg') no-repeat center center;
      -webkit-mask: url('/assets/images/icons/telegram.svg') no-repeat center center;
      -webkit-mask-size: var(--mask-size);
      mask-size: var(--mask-size);
      -webkit-mask-position: center center;
      mask-position: center center;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-origin: content-box;
      mask-origin: content-box;
  }
}

@media screen and (max-width: 980px) {
  .banner-tg__link {
      font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .banner-tg__link {
      font-size: 16px;
  }
  
  .banner-tg__icon {
      width: 44px;
      --mask-size: 20px;
  }
}