/* Minification failed. Returning unminified contents.
(512,1): run-time error CSS1019: Unexpected token, found '}'
 */
.home-header { 
  margin-top: 6rem;
  width: 100%;
}

.home-header .hero-btns {
  display: grid;
  justify-content: center;
  gap: 1.25rem;
}

.home-header .btn-jobseeker,
.home-header .btn-recruiter {
  display: block;
  width: fit-content;
  font-size: 0.9rem;
  letter-spacing: 1.6px;
  /*text-transform: uppercase;*/
  font-weight: 700;
  padding: 1.125rem 1.75rem;
  border-radius: 2rem;
}

.home-header .btn-jobseeker {
  background-color: #000;
  color: #FFF;
  cursor: default;
}

.home-header .btn-recruiter {
  background-color: #FFF;
  color: #000;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-header .btn-recruiter:hover {
  background-color: #000;
  color: #FFF;
  transform: scale(1.06);
  cursor: pointer;
}

.home-header .home-search-form {
  background-color: #FFF;
  display: grid;
  margin: 2.5rem 1rem 2.5rem;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
}

.home-header .home-search-form .search-form-fieldset { 
    padding: 0.5rem; 
    border: solid 1px #333;
    border-radius: 2rem;
}

.home-header .home-search-form .search-form-fieldset .form-group { width: 100%; }

.home-header .home-search-form .search-form-fieldset .input-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0rem;
  padding: 3px; /*0.75rem 1rem;*/
  color: #6A707A;
}

.home-header .home-search-form .search-form-fieldset .input-container svg {
  width: 1.125rem;
  height: 1.125rem;
  padding: 12px;
}

.home-header .home-search-form .search-form-fieldset .form-group:first-of-type .input-container { border-bottom: 1px solid rgba(106, 112, 122, 0.4); }

.home-header .home-search-form .search-form-fieldset input {
  font-size: 0.9rem;
  color: #6A707A;
  padding:12px;
}

.home-header .home-search-form .search-form-fieldset .btn-search-form {
  width: 100%;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  background-color: #000;
  color: #FFF;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  /*text-transform: uppercase;*/
  font-weight: 700;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-header .home-search-form .search-form-fieldset .btn-search-form:hover { transform: scale(1.02); cursor: pointer }

/* COMPANIES SECTION */
.companies {
  display: grid;
  padding: 1.5rem 0 1rem;
  margin: 0 1rem;
}

.companies .header {
  border-bottom: 2px solid rgba(106, 112, 122, 0.8);
  padding-bottom: 1rem;
  display: grid;
  gap: 1rem;
}

.companies .header .main-header {
  display: grid;
  gap: 0.5rem;
}

.companies .header .main-header p {
  color: #6A707A;
  font-size: 0.9rem;
  letter-spacing: 3.2px;
  /*text-transform: uppercase;*/
  font-weight: 700;
}

.companies .header .sub-header { display: none; }

.companies .header .sub-header p {
  color: #6A707A;
  font-size: 0.9rem;
  letter-spacing: 1.6px;
  /*text-transform: uppercase;*/
  font-weight: 900;
}

.companies .header .sub-header span {
  color: #1A1A1A;
  font-size: 0.9rem;
  letter-spacing: 1.6px;
  /*text-transform: uppercase;*/
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.green-pulse-dot {
  display: block;
  background-color: #6FDF9C;
  width: 0.5rem;
  height: 0.5rem;
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
  border-radius: 50%;
}

@keyframes pulse {
  50% { opacity: 0.5; }
}

.companies .companies-list {
  padding: 1.5rem 0;
  display: grid;
  gap: 2rem;
}

.companies .companies-list li {
  border: 1px solid rgba(106, 112, 122, 0.6);
  width: fit-content;
  box-shadow: 0 0 12px 0 #CCC;
  border-radius: 1rem;
  align-content: end;
}

.companies .companies-list li:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.companies .companies-list li .company-header { position: relative; }

.companies .companies-list li .company-header .company-img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.companies .companies-list li .company-header .img-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.companies .companies-list li .company-header .img-container img {
  border-radius: 1rem 1rem 0 0;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.companies .companies-list li:hover .company-header .img-container img { transform: scale(110%); }

.companies .companies-list li .company-header .img-container .img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 1rem 1rem 0 0;
}

.companies .companies-list li .company-header .company-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 1;
  background-color: #FFF;
  padding: 0.75rem;
  border-radius: 1rem;
}

.companies .companies-list li .company-header .company-logo img { border-radius: 0.25rem; }

.companies .companies-list li .company-header .company-title {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  padding-right: 2rem;
}

.companies .companies-list li .company-header .company-title h3 {
  color: #FFF;
  font-size: 2rem;
  letter-spacing: -0.8px;
  /*text-transform: uppercase;*/
  font-weight: 900;
}

.companies .companies-list li .company-header .company-title .company-location {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  gap: 0.25rem;
}

.companies .companies-list li .company-header .company-title .company-location p {
  font-size: 0.9rem;
  letter-spacing: 1.6px;
  /*text-transform: uppercase;*/
  font-weight: 900;  
}

.companies .companies-list li .company-header .company-title .company-location svg {
  width: 1rem;
  height: 1rem;
}

.companies .companies-list li .company-info {
  display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem 1.5rem 1rem;
}

@media only screen and (min-width: 32.5rem)
{
    .companies .companies-list li .company-info {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 2rem 1.5rem 1rem;
    }
}

@media only screen and (min-width: 40rem) {
    .companies .companies-list li .company-info {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 2rem 1.5rem 1.5rem;
    }
}

@media only screen and (min-width: 67rem) {
    .companies .companies-list li .company-info {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 2rem 1.5rem 1rem;
    }
}

.companies .companies-list li .company-info .company-footer {
  margin-top: auto;
  margin-top: auto;
    padding-top: 2rem;
    line-height: 4rem;
}

.companies .companies-list li .company-info .company-footer span {
  color: #000;
  font-size: 1.125rem;
  /*text-transform: uppercase;*/
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.companies .companies-list li .company-info .company-footer .btn-view-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #000;
  border: 2px solid #000;
  color: #FFF;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  /*text-transform: uppercase;*/
  font-weight: 900;
  border-radius: 0.5rem;
  gap: 0.25rem;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.companies .companies-list li .company-info .company-footer .btn-view-more:hover {
  background-color: #FFF;
  color: #000;
  border: 2px solid #000;
}

.companies .companies-list li .company-info .company-footer .btn-view-more svg {
  width: 1rem;
  height: 1rem;
}

/* CTA LINK */
.cta-wrapper {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*border-bottom: 1px solid rgba(106, 112, 122, 0.4);
  padding-bottom: 6rem;*/
}

.cta-wrapper .cta-button {
  color: #000;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  border: 2px dashed #e5e7eb;
  border-radius: 1.5rem;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-wrapper .cta-button:hover {
  border-color: #000;
  background: #fff;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.cta-content h3 {
  color: #000;
  font-size: 1.5rem;
  letter-spacing: -0.8px;
  /*text-transform: uppercase;*/
  font-weight: 900;
}

.cta-wrapper svg { transition: transform 0.3s ease; }

.cta-button:hover svg { transform: translateX(8px); }

.cta-wrapper p {
  color: #6A707A;
  font-size: 0.9rem;
  letter-spacing: 3.2px;
  /*text-transform: uppercase;*/
  font-weight: 900;
}

.cta-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cta-bg-text span {
  font-size: 6rem;
  font-weight: 900;
  /*text-transform: uppercase;*/
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.cta-button:hover .cta-bg-text { opacity: 0.03; }

.stats-container { margin: 1rem auto 1rem; }

.stats-container ul {
  display: grid;
  gap: 2rem;
  margin: 0 1.5rem;
  padding: 1.5rem;
  background-color: #FFF;
  border: 1px solid rgba(106, 112, 122, 0.2);
  border-bottom: 2px solid rgba(106, 112, 122, 0.2);
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.06);
  border-radius: 2rem;
}

.stats-container ul li {
  display: flex;
  gap: 1rem;
}

.stats-container ul li .bg-stat {
  border: 1px solid purple;
  place-self: center;
  padding: 0.625rem;
  border-radius: 0.75rem;
}

.stats-container ul li .stat-copy {
  display: grid;
  gap: 0.25rem;
  align-content: start;
}

.stats-container ul li .stat-business {
  background-color: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #155DFC;
}

.stats-container ul li .stat-globe {
  background-color: #ECFDF5;
  border: 1px solid #D0FAE5;
  color: #009966;
}

.stats-container ul li .stat-milestone {
  background-color: #FAF5FF;
  border: 1px solid #F3E8FF;
  color: #9810FA;
}

.stats-container ul li .stat-number {
  color: #000;
  font-size: 1.25rem;
  letter-spacing: -0.8px;
  /*text-transform: uppercase;*/
  font-weight: 900;
}

.stats-container ul li p {
  color: #6A707A;
  font-size: 0.9rem;
  letter-spacing: 1.6px;
  /*text-transform: uppercase;*/
  font-weight: 700;
}

.sector-container {
  border-top: 1px solid rgba(106, 112, 122, 0.4);
  display: grid;
  justify-content: center;
  margin: 0 1.5rem;
  padding: 6rem 0 4rem;
  text-align: center;
  gap: 1.5rem;
}

.sector-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.sector-container h2 {
  color: #99A1AF;
  font-size: 0.9rem;
  letter-spacing: 3.2px;
  /*text-transform: uppercase;*/
  font-weight: 700;
}

.sector-container ul li a {
  color: #99A1AF;
  font-size: 0.9rem;
  letter-spacing: 1.6px;
  /*text-transform: uppercase;*/
  font-weight: 900;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  margin: 1rem; /*NATHAN*/
  line-height: 2.2rem; /*NATHAN*/
}
}

.sector-container ul li a:hover { color: #000; }

@media only screen and (min-width: 32.5rem) {

  .home-header .hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
  }

  .companies .companies-list li .company-info .company-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta-content h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
}

@media only screen and (min-width: 40rem) {

  .companies .header {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .companies .header .sub-header {
    display: grid;
    gap: 0.5rem;
    text-align: end;
    align-self: flex-end;
  }

  .companies .companies-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .companies .companies-list li .company-info .company-footer {
    display: grid;
    justify-content: initial;
  }
}

@media only screen and (min-width: 48rem) {

  .home-header .home-search-form .search-form-fieldset {
    display: flex;
    justify-content: space-between;
  }

  .home-header .home-search-form .search-form-fieldset .form-group:first-of-type .input-container {
    border-bottom: none;
    border-right: 1px solid rgba(106, 112, 122, 0.4);
    padding: 3px;
  }

  .home-header .home-search-form .search-form-fieldset .btn-search-form {
    border-radius: 3rem;
    width: fit-content;
  }

  .companies { margin: 0 1.5rem; }

}

@media only screen and (min-width: 55rem) {

  .home-header {
    max-width: 56rem;
    margin: 6rem auto 0;
  }

  .stats-container ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: space-between;
  }

}

@media only screen and (min-width: 64rem) {

  .companies .companies-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media only screen and (min-width: 67rem) {

  .companies .header,
  .companies .companies-list {
    max-width: 96rem;
    margin: 0 auto;
  }

  .companies .companies-list li .company-info .company-footer {
    display: flex;
    justify-content: space-between;
  }

  .cta-wrapper {
    width: 100%;
    max-width: 96rem;
    margin: 4rem auto 0;
  }

  .stats-container {
    width: 100%;
    max-width: 96rem;
    /*margin: 4rem auto 6rem;*/
  }

  .sector-container {
    width: 100%;
    max-width: 96rem;
    margin: 4rem auto 6rem;
  }

}

