/* кнопка в шапке */
.telegram-button {
  align-items: center;
  justify-content: center;

  padding-left: 48px; /* место под иконку */
  
  background-color: #151515;
  border: 1px solid #D3E31E;
  border-radius: 12px;

  text-decoration: none;
  cursor: pointer;

  background-image: url("https://static.tildacdn.com/tild6566-3035-4538-a266-643933363634/tg.svg");
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: 20px center;

  transition: all 0.25s ease;
}

.telegram-button:hover {
  background-color: #172313;
  transform: scale(1.03);
}

/* кнопка в синем блоке */
.telegram-button-2 {
  align-items: center;
  justify-content: center;

  padding-left: 48px; /* место под иконку */
  
  background-color: #387FFA;
  border: 1px solid #ffffff;
  border-radius: 12px;

  text-decoration: none;
  cursor: pointer;

  background-image: url("https://static.tildacdn.com/tild3765-3831-4164-b937-303735333139/tg2.svg");
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: 20px center;

  transition: all 0.25s ease;
}

.telegram-button-2:hover {
  background-color: #135CDA;
  transform: scale(1.03);
}

/* кнопка в нижнем блоке - Зарегестрировать эвакуатор */
.add-tow-button {
  align-items: center;
  justify-content: center;

  padding-left: 48px; /* место под иконку */
  
  background-color: #387FFA;
  border: 1px solid #D3E31E;
  border-radius: 12px;

  text-decoration: none;
  cursor: pointer;

  background-image: url("https://static.tildacdn.com/tild3234-3161-4262-a334-626638643863/communication_1.svg");
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: 20px center;

  transition: all 0.25s ease;
}

.add-tow-button:hover {
  background-color: #135CDA;
  transform: scale(1.03);
}

/* кнопка в нижнем блоке - Скачать презентацию */
.presentation-button {
  align-items: center;
  justify-content: center;

  padding-left: 60px; /* место под иконку */
  
  background-color: #D3E31E;
  border: 1px solid #ffffff;
  border-radius: 12px;

  text-decoration: none;
  cursor: pointer;

  background-image: url("https://static.tildacdn.com/tild6539-6338-4533-b764-376263386532/case.svg");
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: 46px center;

  transition: all 0.25s ease;
}

.presentation-button:hover {
  background-color: #F1FF57;
  transform: scale(1.03);
}