.programs {
  width: 100%;
}

.programs .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.programs_row {
  display: flex;
  gap: 24px;
}

.programs h2 {
  width: 100%;
  max-width: 516px;
}

.programs_desc {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.programs_items {
  width: 100%;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.programs_item {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--Light-Silver);
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.programs_item.static * {
  color: var(--Blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
}

.programs_item_passport {
  width: 100%;
  max-width: 260px;
  min-width: 210px;
  display: flex;
  gap: 24px;
}

.programs_item_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.programs_country {
  color: var(--Blue);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.programs_status {
  color: var(--Grey);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.programs_benefits {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.programs_benefits li {
  padding-left: 26px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.programs_benefits li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 0 4px 8px;
  border-color: transparent transparent transparent var(--Blue);
  transform: rotate(0deg);
}

.programs_info {
  width: 100%;
  max-width: 288px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.programs_info li {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.programs_info strong {
  color: var(--Blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.programs_btn {
  width: 100%;
  max-width: 110px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  height: 100%;
}

.programs_btn .lozad {
  min-width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media (max-width: 768px) {
  .programs_row {
    flex-direction: column;
    gap: 16px;
  }

  .programs h2 {
    max-width: 100%;
  }

  .programs_items {
    margin-top: 16px;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--Light-Silver);
  }

  .programs_item {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
  }

  .programs_item.static {
    display: none;
  }

  .programs [data-title]::before {
    content: attr(data-title);
    color: var(--Blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 12px;
  }

  .programs_item_passport {
    min-width: auto;
    align-items: center;
    gap: 16px;
  }

  .programs_item_wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .programs_country {
    font-size: 18px;
    letter-spacing: 0.9px;
  }

  .programs_benefits {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .programs_benefits li {
    padding-left: 16px;
  }

  .programs_benefits li::before {
    border-width: 4px 0 4px 6px;
    top: 4px;
  }

  .programs_btn {
    font-size: 18px;
  }

  .programs_btn .lozad {
    top: -2px;
    position: relative;
  }
}
