---
title: "Infographic // Germany allocates €60 million for humanitarian aid in Syria"
url: https://moldova1.md/p/41635/infographic--germany-allocates-60-million-for-humanitarian-aid-in-syria
published: 2024-12-30T07:13:51Z
language: en
author: "Bogdan Nigai"
section: "International"
source: moldova1.md
---

# Infographic // Germany allocates €60 million for humanitarian aid in Syria

> Germany will allocate €60 million to various aid projects for Syria, as announced by the Minister for Economic Cooperation and Development, Svenja Schulze, in an interview with Redaktionsnetzwerk Deutschland.

Germany will allocate €60 million to various aid projects for Syria, as announced by the Minister for Economic Cooperation and Development, Svenja Schulze, in an interview with *Redaktionsnetzwerk Deutschland*.

![AFP](https://storage.moldova1.md/images/9d998be2-c9ea-4c78-a666-bb7f3471837a.jpg)

*Sursa: AFP*

The funds will not go to Syrian authorities but will be administered by non-governmental and international organizations, according to DW.

Schulze characterized the humanitarian situation in Syria as "catastrophic," with 90% of the population living in poverty and reliant on humanitarian aid. The conflict that has devastated the country since 2011 has left much of its infrastructure destroyed.

<!DOCTYPE html>
<html>
<head>
  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
  <style>
    .container {
      font-family: system-ui, -apple-system, sans-serif;
      max-width: 900px;
      margin: 0 auto;
      padding: 40px;
      background: linear-gradient(135deg, #f6f8fc 0%, #e9eef6 100%);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .header {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 20px;
    }
    
    .header:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #2b6cb0, #4299e1);
      border-radius: 2px;
    }
    
    .title {
      color: #1a365d;
      font-size: 2.5em;
      margin: 0;
      font-weight: 800;
    }
    
    .subtitle {
      color: #4a5568;
      margin-top: 10px;
      font-size: 1.1em;
    }
    
    .funding-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 25px;
      margin-bottom: 30px;
    }
    
    .funding-item {
      background: white;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }
    
    .funding-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .funding-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #2b6cb0, #4299e1);
    }
    
    .amount {
      font-size: 32px;
      font-weight: 800;
      color: #2b6cb0;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .amount i {
      font-size: 24px;
      padding: 12px;
      background: #ebf4ff;
      border-radius: 12px;
      color: #4299e1;
    }
    
    .description {
      color: #4a5568;
      font-size: 1.1em;
      line-height: 1.5;
      margin-bottom: 15px;
    }
    
    .progress-container {
      margin-top: 15px;
    }
    
    .progress-bar {
      height: 8px;
      background: #e2e8f0;
      border-radius: 4px;
      overflow: hidden;
    }
    
    .progress {
      height: 100%;
      background: linear-gradient(90deg, #2b6cb0, #4299e1);
      border-radius: 4px;
      transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .percentage {
      font-size: 0.9em;
      color: #718096;
      margin-top: 5px;
      text-align: right;
    }
    
    .total-container {
      background: white;
      padding: 25px;
      border-radius: 15px;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      text-align: center;
    }
    
    .total-label {
      font-size: 1.2em;
      color: #4a5568;
      margin-bottom: 10px;
    }
    
    .total-amount {
      font-size: 36px;
      font-weight: 800;
      color: #2b6cb0;
      background: linear-gradient(90deg, #2b6cb0, #4299e1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="header">
      <h1 class="title">German Funding Projects in Syria</h1>
      <p class="subtitle">Humanitarian Aid & Development Support Distribution</p>
    </div>
    
    <div class="funding-grid">
      <div class="funding-item">
        <div class="amount">
          <i class="fas fa-school"></i>
          €25M
        </div>
        <div class="description">
          UNICEF: School rehabilitation and support for children affected by war
        </div>
        <div class="progress-container">
          <div class="progress-bar">
            <div class="progress" style="width: 100%"></div>
          </div>
          <div class="percentage">41.7% of total funding</div>
        </div>
      </div>
      
      <div class="funding-item">
        <div class="amount">
          <i class="fas fa-briefcase"></i>
          €19M
        </div>
        <div class="description">
          UNDP: Employment opportunities for displaced people
        </div>
        <div class="progress-container">
          <div class="progress-bar">
            <div class="progress" style="width: 76%"></div>
          </div>
          <div class="percentage">31.7% of total funding</div>
        </div>
      </div>
      
      <div class="funding-item">
        <div class="amount">
          <i class="fas fa-hands-helping"></i>
          €7M
        </div>
        <div class="description">
          Local NGOs: Promoting reconciliation among social groups
        </div>
        <div class="progress-container">
          <div class="progress-bar">
            <div class="progress" style="width: 28%"></div>
          </div>
          <div class="percentage">11.7% of total funding</div>
        </div>
      </div>
      
      <div class="funding-item">
        <div class="amount">
          <i class="fas fa-chalkboard-teacher"></i>
          €6M
        </div>
        <div class="description">
          Support for local schools operation
        </div>
        <div class="progress-container">
          <div class="progress-bar">
            <div class="progress" style="width: 24%"></div>
          </div>
          <div class="percentage">10% of total funding</div>
        </div>
      </div>
      
      <div class="funding-item">
        <div class="amount">
          <i class="fas fa-female"></i>
          €3M
        </div>
        <div class="description">
          Syrian organizations: Women's rights advocacy
        </div>
        <div class="progress-container">
          <div class="progress-bar">
            <div class="progress" style="width: 12%"></div>
          </div>
          <div class="percentage">5% of total funding</div>
        </div>
      </div>
    </div>
    
    <div class="total-container">
      <div class="total-label">Total Investment</div>
      <div class="total-amount">€60 Million</div>
    </div>
  </div>
</body>
</html>

The German minister emphasized that Berlin will offer support to Damascus only if certain conditions are met, including the establishment of an education system free from ideology, discrimination, and isolation. “If progress moves in the right direction, we are ready to provide further assistance in other areas,” Schulze stated.

Furthermore, the German government calls on the new Syrian authorities to investigate the crimes of the Assad regime, ensure an independent dialogue free from external influences, and submit chemical weapons to international oversight.

Translation by **Iurie Tataru**
