.programs-grid-section {
  width: 100%;
  background: #0f4361;
  padding: 90px 80px 120px;
  direction: rtl;
}

.programs-grid {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;

  gap: 130px 85px;
}
.program-card1 {
  width: 300px;
  height: 300px;

  background: #f7f7f7;
  border-radius: 22px;

  text-align: center;

  padding: 40px 32px 25px;

  box-shadow: 0 10px 0 #9b7a36;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.program-icon {
  width: 82px;
  height: 82px;

  background: #0f4361;
  border-radius: 50%;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.program-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.program-card1 h3 {
  color: #0f4361;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 18px;
}

.program-card1 p {
  color: #0f4361;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.program-card1 a {
  color: #9b7a36;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .programs-grid {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 700px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card1 {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
}


.card-person5{
  position: absolute;

  left:30px;
  top: -67px;
  height: 282px;
  width: auto;

  object-fit: contain;
  z-index: 5;

  transform: none;
  display: block;
}