.section__mail {
  padding: 5px;
  border-radius: 144px;
  background: rgba(255, 221, 45, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.07px;
  margin-bottom:12px;
}
.section__mail img {
  padding: 11px;
  border-radius: 50%;
  background: #ffda44;
}
.section__mail__btn {
  min-width: 215px;
  border-radius: 58px;
  background: #ffda44;
  height: 40px;
  margin-left: auto;
}
.section__mail__btn.arrowed::after,
.section__mail__btn.arrowed::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow_mail.svg);
}
.section__mail__btn img {
  display: none;
}
@media (max-width: 768px) {
  .section__mail {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
  }
  .section__mail > img {
    display: none;
  }
  .section__mail__btn {
    margin-left: 0;
    width: 100%;
  }
  .section__mail__btn img {
    display: block;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  .section__mail {
    font-size: 11px;
  }
  .section__mail__btn {
    font-size: 11px;
  }
}


.section__mail.telegram {
  background: rgba(0, 136, 204, 0.2);
}

.section__mail.telegram img,
.section__mail.telegram .section__mail__btn {
  background: #0088cc;
  color:white;
}