/* Benefits section SVG icons */
.benefits-icon {
  height: 30px;
  margin-bottom: 10px;
}

/* BEM classes for careers and their styles */
.careers {
  display: inline-block;
  vertical-align: top;
}

.careers--hero {
  min-height: 447px;
  background: #f7f7f7;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.careers__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.careers__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
}

.careers__content {
  background: rgba(0, 0, 0, 0.4);
  max-width: 455px;
  gap: 20px;
}

@media (max-width: 768px) {
  .careers--hero {
    min-height: 300px;
  }

  .careers__content {
    padding-left: 0px;
    max-width: 100%;
    gap: 12px;
  }

  .benefits-icon {
  height: 14px;
  }
}
/* About Galls Section */
.about-galls-section {
  gap: 29px;
}

.about-galls-img {
  aspect-ratio: 770 / 367;
}

.about-galls-content {
  gap: 20px;
  padding-left: 80px;
}

.about-galls-btn {
  width: fit-content;
}
@media(max-width: 992px) {
  .about-galls-content {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .about-galls-section {
    gap: 12px;
  }
  .about-galls-content {
    gap: 20px;
    padding-left: 0px;
    padding: 12px;
  }
}

/* Benefits Section */
.benefits-section-title {
  margin-bottom: 40px !important;
}

.benefits-grid {
  gap: 20px;
  margin-bottom: 40px;
  max-width: 760px;
}

.benefits-card {
  padding: 20px !important;
  justify-content: center;
}

.benefits-card:hover {
  /* transform: scale(1.05);
  transition: transform 0.2s ease-in-out; */
}

@media (max-width: 768px) {
  .benefits-grid {
    gap: 10px;
  }

  .benefits-section-title,
  .benefits-grid {
    margin-bottom: 20px !important;
  }
}

/* Veterans Section */
.veterans-section {
  gap: 63px;
}

.veterans-img {
  min-height: 200px;
  aspect-ratio: 770 / 367;
}

.veterans-content {
  gap: 20px;
  padding-left: 80px;
}

.veterans-quote {
  max-width: 400px;
  border-left: 3px solid #e3e3e3;
}

/* Veterans avatar responsive size */
.veterans-avatar {
  width: 148px;
  height: 148px;
  border-radius: 50%;
}
@media(max-width: 992px) {
  .veterans-content {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .veterans-avatar {
    width: 124px;
    height: 124px;
  }
  .veterans-section {
    gap: 12px;
  }
  .veterans-content {
    padding-left: 0px;
    padding: 12px;
  }
  .veterans-quote {
    border-left: unset;
    padding: unset;
  }
}


/* CTA Section */
.cta-section.card {
  max-width: 476px;
  margin: 0 auto 20px auto;
  border: 2px solid #000;
  box-shadow: none;
}

.cta-section.card h2 {
  font-family: var(--galls-font-gt-america-standard);
  margin-bottom: 20px;
}

.cta-btn {
  width: fit-content;
}

@media (max-width: 768px) {
  .cta-section.card {
    padding: 12px;
    margin:  20px;
  }
  .cta-section.card h2 {
    margin-bottom: 12px;
  }
}