.door-section {
  display: flex;
  justify-content: center;
  background-color: #0F1626;
  padding-bottom: 346px;
  position: relative;
}

.blur-door {
  position: absolute;
  top: -500px;
  /* عدل حسب موقعها */
  left: 900px;
  width: 717px;
  height: auto;
  z-index: 1;
  /* خليه خلف النص */
  pointer-events: none;
}

.blur-door-bottom {
  position: absolute;
  top: 285px;
  /* عدل حسب موقعها */
  left: 900px;
  width: 717px;
  height: auto;
  z-index: 1;
  /* خليه خلف النص */
  pointer-events: none;
}

.door-card {
  width: 1328px;
  height: 508px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg,
      rgba(0, 255, 232, 0.05) 0%,
      rgba(6, 6, 6, 0.9) 100%);
  box-sizing: border-box;
  gap: 16px;
}

.door-image {
  width: 649px;
  height: 100%;
}

.door-image img {
  width: 649px;
  height: 508px;
  object-fit: cover;
  display: block;
}

.door-content {
  padding-top: 154.5px;
  padding-bottom: 154.5px;
  width: 598px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  margin-left: 57px;
}

.door-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 100%;
}

.door-text {
  font-size: 28px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 440px) {
  .door-section {
    width: calc(100vw - 16px);
    max-width: 393px;
    margin-bottom: 70px;
    padding-left: 16px;
    padding-right: 0;
    padding-top: 40.5px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
  }

  .blur-door {
    display: none;
  }

  .blur-door-bottom {
    display: none;
  }

  .door-card {
    width: 393px;
    height: 140px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #0606061A;
    border-radius: 0;
    box-sizing: border-box;
    padding: 0;
    gap: 24px;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .door-image {
    width: 181px;
    height: 140px;
    flex: 0 0 181px;
  }

  .door-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .door-content {
    width: 182px;
    height: 123px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }

  .door-title {
    font-size: 12px;
    font-weight: 700;
    margin: 8px 0 2px 0;
    color: #fff;
    text-align: left;
    line-height: 1.1;
  }

  .door-text {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    text-align: left;
    line-height: 1.3;
    max-width: 182px;
    max-height: 109px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 6; */
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}