.pilot-portal__info_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pilot-portal__info-title {
  margin: 0;
}
.pilot-portal {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pilot-portal__heading {
  margin: 0 0 20px;
}

.pilot-portal__login {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  padding: 8px 16px;
  border-radius: var(--Scale-400, 16px);
  color: #ffffff;
  font-family: var(--Fonts-FontFamily-FF2, Poppins);
  font-size: var(--Font-Body-sm-Size, 16px);
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 20px;
}

.pilot-portal__login:hover {
  text-decoration: none;
  color: #ffffff;
}

.pilot-portal__info-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pilot-portal__info-box {
  display: flex;
  min-width: 250px;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease-in-out;
}

.pilot-portal__info-box:hover {
  text-decoration: none;
  color: inherit;
}

.pilot-portal__info-icon {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pilot-portal__info-title {
  font-weight: 800;
  margin: 0;
}

.pilot-portal__info-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 2px 0 0;
}

.pilot-portal__divider {
  border: none;
  height: 5px;
  margin: 0 0 20px;
}

.pilot-portal__help-heading {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 12px;
}

.pilot-portal__help-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pilot-portal__help-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  padding: 8px 16px;
  border-radius: var(--Scale-400, 16px);
  border: 1px solid;
  font-family: var(--Fonts-FontFamily-FF2, Poppins);
  font-size: var(--Font-Body-sm-Size, 16px);
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.pilot-portal__help-btn:hover {
  text-decoration: none;
}

{#.pilot-portal__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 120px;
  grid-auto-flow: dense;
  gap: 10px;
}
#}
.pilot-portal__gallery-item {
  border-radius: 10.725px;
  overflow: hidden;
}

.pilot-portal__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pilot-portal__gallery-item:nth-child(3) {
  grid-column: span 2;
}

.pilot-portal__gallery-item:nth-child(4),
.pilot-portal__gallery-item:nth-child(5) {
  grid-row: span 2;
}
.pilot-portal__gallery-img img{
  max-height: fit-content;
}
@media (max-width: 992px) {
  .pilot-portal {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pilot-portal__info-box {
    min-width: 0;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .pilot-portal__gallery {
    grid-auto-rows: 90px;
    gap: 8px;
  }

  .pilot-portal__login,
  .pilot-portal__help-btn {
    padding: 10px 14px;
  }
}
