@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --light-blue: rgba(56, 130, 249, 1);
  --blue: rgba(38, 102, 239, 1);
  --soft-blue:rgb(130, 173, 241);
  --dark-text: rgba(0, 0, 0, 1);
  --white-text: rgba(255, 255, 255, 1);
  --gray-text: rgba(173, 173, 173, 1);
  --light-text: rgba(247, 247, 247, 1);
}

body {
  font-family: Manrope;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  height: 100vh;
}

.rotate-45 {
  transform: rotate(45deg);
}
.rotate-down {
  transform: rotate(135deg);
}

/* font size and weight class */
.secondary-font {
  font-family: Playfair Display;
}
.secondary-font-italic {
  font-style: italic;
  font-family: Playfair Display;
}
.text-blue{
  color: var(--blue);
}
.text-dark{
  color: var(--dark-text);
}
.text-light{
  color: var(--white-text);
}
.text-gray{
  color: var(--gray-text);
}
.light-text{
  color: var(--light-text);
}
.sm-subheader{
  font-family: Helvetica Neue;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}
.font-16 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.font-18 {
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}
.font-20 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.font-24 {
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 400;
}
.font-24-light{
  font-family: Helvetica Neue;
  font-weight: 300;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%; 
}
.font-24-bold {
  font-family: Playfair Display;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0%;
}
.font-32 {
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
}
.font-36 {
  font-size: 36px;
  line-height: 150%;
}
.font-40 {
  font-size: 40px;
  line-height: 150%;
}
.font-48 {
  font-size: 48px;
  font-weight: 400;
  line-height: 57.6px;
}
.font-56 {
  font-size: 56px;
  font-weight: 400;
  line-height: 67.2px;
}
.font-64{
  font-weight: 400;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0%;
}
.font-80 {
  font-size: 80px;
  line-height: 112px;
  font-weight: 400;
}
.font-italic {
  font-style: italic;
}
.b-300{
  font-weight: 300;
}
.b-400 {
  font-weight: 400;
}
.b-500 {
  font-weight: 500;
}
.b-600 {
  font-weight: 600;
}
.b-700 {
  font-weight: 700;
}

/* Utility Classes */
.primary-btn{
  background: var(--blue);
  color: white;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0px 10px 30px 0px #2666EF80;
  transition: background 0.3s;
}

.primary-btn:hover {
  background: #204b9b;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0px 14px 36px 0px #2666EF88;
  text-decoration: none;
}

.black-border-btn{
  border: 1px solid #000;
  color: var(--dark-text);
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s;
}
.black-border-btn:hover {
  background: #000;
  color: white;
}

.smoke-gradient{
  background: linear-gradient(180deg, #DDDDDD 0%, rgba(221, 221, 221, 0) 100%);
  border-radius: 1000px;
}

.light-smoke-gradient{
  background: linear-gradient(180deg, #F4F6F7 0%, rgba(244, 246, 247, 0) 100%);
  border-radius: 1000px;
}

/* Custom Header Classes */
.h2-header {
  font-family: Playfair Display;
  font-size: 48px;
  font-weight: 400;
  line-height: 57.6px;
  text-align: left;
}
.h3-header {
  font-family: Playfair Display;
  font-size: 24px;
  font-weight: 400;
  line-height: 33.6px;
  text-align: left;
}
.blue-box-header {
  font-family: Playfair Display;
  font-size: 60px;
  font-weight: 300;
  line-height: 80px;
  text-align: left;
}

/* color class */
.bg-dark {
  color: rgba(0, 0, 0, 1);
}
.bg-white {
  background: white;
}
.bg-blue {
  background: var(--blue);
}
.font-blue {
  color: var(--blue);
}
.font-gray {
  color: rgba(173, 173, 173, 1);
}
.bg-trans {
  background: rgba(255, 255, 255, 0.3);
}
.bg-dark-trans {
  background: rgba(84, 84, 84, 0.3);
}
.shadow1 {
  box-shadow: 0px 30px 80px 0px rgba(84, 84, 84, 0.3);
}
.border-blue {
  border: var(--light-blue) 1px solid;
}
.blue-border-top {
  border-top: var(--light-blue) 1px solid;
  padding-top: 48px;
  width: 80%;
}
.blue-border-bottom {
  border-bottom: var(--light-blue) 1px solid;
  padding-bottom: 48px;
}
.blue-underline {
  border-bottom: var(--light-blue) 1px solid;
}
.gray-border-box{
  border: 1px solid rgba(221, 221, 221, 1);
}


/* width and height class */
.w-60{
  width: 60px;
  height:60px;
}
.w-258{
  width: 258px;
}
.w-298{
  width: 298px;
}
.w-450 {
  width: 450px;
}
.w-618 {
  width: 618px;
}
.w-768 {
  width: 768px;
}
.w-max{
  width: max-content;
}
.max-w-1290 {
  max-width: 1290px;
}
.min-h-80 {
  min-height: 80px;
}
.min-h-900 {
  min-height: 900px;
}
.min-h-648 {
  min-height: 590px;
}
.min-h-670 {
  min-height: 670px;
}
.min-h-720 {
  min-height: 720px;
}
.min-h-784 {
  min-height: 784px;
}
.min-h-968 {
  min-height: 968px;
}
.min-h-982 {
  min-height: 982px;
}
.min-h-1058 {
  min-height: 1058px;
}
.min-h-1013 {
  min-height: 1013px;
}

/* space class */

.no-gutters {
  margin-right: 0;
  margin-left: 0;

  >.col,
  >[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-24{
  padding: 24px;
}
.pt-15{
  padding-top: 15px;
}
.pt-80{
  padding-top: 80px;
}
.pb-16 {
  padding-bottom: 16px;
}
.pb-24 {
  padding-bottom: 24px;
}
.pb-32 {
  padding-bottom: 32px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-64 {
  padding-bottom: 64px;
}
.pb-80{
  padding-bottom: 80px;
}
.pb-120{
  padding-bottom: 120px;
}
.pt-15-rem{
  padding-top: 15rem;
}
.pt-24 {
  padding-top: 24px;
}
.pt-32{
  padding-top: 32px;
}
.pt-120{
  padding-top: 120px;
}
.pl-30{
  padding-left: 30px;
}
.pl-80{
  padding-left: 80px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-30{
  padding-left: 30px;
  padding-right: 30px;
}
.px-64 {
  padding-left: 64px;
  padding-right: 64px;
}
.px-75 {
  padding-left: 75px;
  padding-right: 75px;
}
.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}
.py-80{
  padding-top: 80px;
  padding-bottom: 80px;
}
.py-120{
  padding-top: 120px;
  padding-bottom: 120px;
}
.pl-10 {
  padding-left: 10px;
}
.pl-25 {
  padding-left: 25px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-120 {
  margin-top: 120px;
}
.mt-300{
  margin-top: 300px;
}
.my-32 {
  margin-top: -32px;
  margin-bottom: -32px;
}
.mnt-4 {
  margin-top: -4rem;
}
.mnt-32 {
  margin-top: -32px;
}
.mnt-90 {
  margin-top: -90px;
}
.mb-80 {
  margin-bottom: 80px;
}
.gap-5{
  gap: 5px;
}
.gap-8 {
  gap: 8px;
}
.gap-10 {
  gap: 10px;
}
.gap-14{
  gap: 14px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.gap-48 {
  gap: 48px;
}
.gap-60 {
  gap: 60px;
}
.gap-80{
  gap: 80px;
}
.overlay{
  border-image: 
    linear-gradient(
      to left,
      hsl(0 0% 0% / .1),
      hsl(0 0% 0% / .8))
      fill 1;
}

/* Header */
header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  /* Add this after removing Select Location Form border-bottom: rgba(255, 255, 255, 0.3) 1px solid; */
}

/* Navbar */
.nav-link {
  font-family: Helvetica Neue;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.nav-link-active {
  border-bottom: var(--blue) 3px solid;
  padding-bottom: 10px;
}
.mobile-menu-btn{
  background-image: url('/assets/uploads/icons/mobile-menu.svg');
}

/* Footer */
.want-more{
  background-color: rgba(84, 84, 84, 0.3);
  max-width: 1290px;
  width: 90%;
  margin: auto;
}
.gray-hr{
  color:rgba(84, 84, 84, 1);
  width: 90%;
  max-width: 1290px;
}
#hero-search-box {
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: white;
  width: 95%;
}
footer{
  padding-top: 80px;
  padding-bottom: 48px;
}
#footer-search-box {
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: white;
}
#footer-search-icon {
  background-image: 'url(/assets/uploads/icons/fi-rr-search.svg)';
}
#footer-search-box>button {
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  height: 54px;
  width: 133px;
  border: none;
  padding: 12px 19px;
  text-align: left;
}
#footer-search-box>input {
  flex: 1;
  height: 30px;
  width: 93px;
  border: none;
  outline: none;
  font-size: 18px;
  padding-left: 10px;
  background-color: white;
}
footer > nav {
  display: flex;
  width: 90%;
  max-width: 1290px;
  margin: auto;
  justify-content: space-around;
}
footer nav a{
  color: var(--white-text);
  text-decoration: none;
  font-size: 16px;
} 
.copywrite-font{
  color: rgba(153, 153, 153, 1);
}
.footer-socials{
  gap: 30px;
}

/* form class */
.hs-form-frame{
  width: 100%;
}
.hsfc-Button{
  background-color: var(--blue)!important;
}
.focus-visible-none:focus-visible {
  outline: none;
}
input::placeholder {
  font-size: 18px;
  color: rgba(101, 119, 132, 1);
  font-weight: 400;
}
.input-border-gray {
  border: 1px solid rgba(193, 201, 206, 1)
}
.search-zip-box {
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: white;
  width: 95%;
}
/*** Carousel ***/
.card {
  border: none;
}
.carousel-row:nth-child(-n + 2){
  border-left: solid 1px rgba(237, 237, 237, 1);
}
/* Controls */
.carousel-control-next {
  margin: 0 3em;
}
i.fa-arrow-right,
i.fa-arrow-left {
  background: none;
  border: 2px solid #000;
  color: #0d6efd;
  padding: 10px;
  border-radius: 100%;
  transition: background .6s ease;
}
i.fa-arrow-right:hover,
i.fa-arrow-left:hover {
  background: #000;
  color: white;
}

/* Carousel Indicators */
em {
  color: #000;
}
.carousel-indicators {
  justify-content: center;
  transform: translate(0px, 50px);
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid #000;
}
.carousel-indicators .active {
  background-color: #fff;
}

/* Carousel Control buttons */
/* .control-btn {
  position: absolute;
  top: 8px;
  right: 10em;
} */
.carousel-control-next,
.carousel-control-prev {
  top: 1em;
  left: 3em;
}
.form-check-input:checked {
  background-color: orange;
  border-color: yellowgreen;
}

/* Home Page Hero */
.home-hero {
  background: url('/assets/uploads/home/home_hero_mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* set this after removing Select Location Form height: 100vh; */
}
#hero-text-box {
  /* Add this after removing Select Location Form gap: 64px; */
  gap: 35px;
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.hero-h1 {
  font-family: Playfair Display;
  font-style: italic;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.hero-h1>span {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#choose-program{
  width: 330px;
}
#hero-search-box,
.zip-search-box {
  height: 74px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: white;
}
#hero-search-icon {
  background-image: 'url(/assets/uploads/icons/fi-rr-search.svg)';
}
#hero-search-box>button{
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  height: 54px;
  width: 115px;
  border: none;
  text-align: center;
}
#hero-search-box>a, 
.zip-search-box>a{
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  height: 54px;
  width: 115px;
  border: none;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-search-box>input,
#zip-search {
  flex: 1;
  height: 30px;
  width: 93px;
  border: none;
  outline: none;
  font-size: 18px;
  padding-left: 10px;
  background-color: white;
}
.green-btn{
  background: #4BB543;
  color: white;
  text-decoration: none;
  padding: 0.7rem 2rem;
  border-radius: 25px;
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
.blue-circle-bg-down{
  background-image: url('/assets/uploads/home/blue_circle_bg_down.svg');
  background-repeat: no-repeat;
  background-position: top;
}
.blue-circle-bg-up{
  background-image: url('/assets/uploads/home/blue_circle_bg_up.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 554px;
  background-position: center;
}
#grad-cap{
  background-image: url('/assets/uploads/home/grad_cap.svg');
  background-repeat: no-repeat;
}
/* About Page */
.about-hero {
  background: url('/assets/uploads/about/about_hero_desktop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
.white-bg-search-box{
  height: 74px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.1)
}
.white-bg-search-box>button {
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  height: 54px;
  width: 133px;
  border: none;
  padding: 12px 19px;
  text-align: left;
}
.white-bg-search-box>input {
  flex: 1;
  height: 30px;
  width: 93px;
  border: none;
  outline: none;
  font-size: 18px;
  padding-left: 10px;
  background-color: white;
}
/* Our Team Page */
.team-hero {
  background: url('/assets/uploads/team/team_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Schools Page */
.schools-hero {
  background: url('/assets/uploads/schools/schools_hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
.school-list  a {
  text-decoration: none;
}
.active-school {
  border-left: rgba(38, 102, 239, 1) 3px solid;
  padding-left: 32px;
}
.leaflet-layer,
.leaflet-control-zoom-in,
.leaflet-control-zoom-out,
.leaflet-control-attribution {
  filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}
.leaflet-container {
  background: #000;
}
#map {
  height: 700px!important;
  width: 100%;
}
.directions-button {
    display: block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}        
.directions-button:hover {
    background-color: #45a049;
}
/* School Detail Page */
.school-detail-hero {
  background: url('/assets/uploads/school_detail/location_hero_desktop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Referral Rock Page */
#btn-url{
  background: #4BB543;
  color: white;
  text-decoration: none;
  padding: 0.7rem 2rem;
  border-radius: 25px;
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
#btn-url:hover {
  background-color: rgb(242, 238, 238);
}
.submit-btn{
  background: #4BB543;
  color: white;
  text-decoration: none;
  padding: 0.7rem 2rem;
  border-radius: 25px;
  font-family: Helvetica Neue;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
.submit-btn:hover {
  background-color: rgb(242, 238, 238);
}
#school-link{
  color: #fff;
}

/* Partenerships Page */
.partnerships-hero {
  background: url('/assets/uploads/partnerships/partnerships_hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
/* Counselor Page */
.counselor-hero {
  background: url('/assets/uploads/counselor_hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

/* Locations Page */
.search {
  width: 70%;
}

.leaflet-container a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  cursor: pointer;  
}

#school-url{
  color: #fff
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  cursor: pointer;  
}

/* How to Become pages */
.dental-become-hero {
  background: url('/assets/uploads/how_to_become/dental-become-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
.medical-become-hero {
  background: url('/assets/uploads/how_to_become/medical-become-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

/* Blog Page */
.featured-blog-post:hover {
  background-color: linear-gradient(180deg, rgba(var(--soft-blue), 0) 100%);
}

/* Workforce Partners Page */
.partnering-hero {
  background: url('/assets/uploads/workforce-partners/partnering-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
.book-btn{
  padding: 16px 32px;
  background: linear-gradient(90deg, #2666EF 0%, #5DA6FD 100%);
  box-shadow: 0 0 50px 0 rgba(38, 102, 239, 0.5);
  color: white;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  border-radius: 1000px;
  border-width: 5px;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Blog page specific styles - override absolute positioning */
body.blog-page header {
  position: static !important;
}

/* Media Queries */
@media( max-width: 991.98px){
  .mobile-bg-dark{
    background-color: rgba(33 ,37, 41, 1);
    opacity: 1;
  }
}
@media( min-width: 768px ){
  .home-hero{
    background: url('/assets/uploads/home/home_hero_desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  #map {
    height: 100%;
  }
  .birdeye-widget{
    width: 800px;
  }
  .md-w-187{
    width: 187px;
  }
  .md-mt-200{
    margin-top: 200px;
  }
}
@media( min-width: 992px ){
  .lg-w-258{
    width: 258px;
  }
  .lg-w-480{
    width: 480px;
  }
  .lg-w-618{
    width: 618px;
  }
  .lg-min-h-670{
    min-height: 670px;
  }
  .lg-min-h-720{
    min-height: 720px;
  }
  .lg-w-768{
    width: 768px;
  }
  .lg-min-h-400{
    min-height: 400px;
  }
  .lg-min-h-900{
    min-height: 900px;
  }
  .lg-min-h-968{
    min-height: 968px;
  }
  .lg-min-h-1058{
    min-height: 1058px;
  }
  .lg-mt-96{
    margin-top: 96px !important;
  }
  .lg-mnt-90{
    margin-top: -90px;
  }
  .lg-mnt-160{
    margin-top: -160px;
  }
  .lg-px-75{
    padding-left: 75px;
    padding-right: 75px;
  }
  .lg-pt-60{
    padding-top: 60px;
  }
  .lg-pb-120{
    padding-bottom: 120px;
  }
  .lg-py-0{
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg-py-120{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .lg-py-185{
    padding-top: 185px;
    padding-bottom: 185px;
  }
  .nav-link-active {
    margin-bottom: -3px;
  }
  .navbar-expand-lg .offcanvas{
    flex-grow: 0;
  }
  .nav-link {
    font-size: 16px;
  }
  #hero-text-box {
    padding: 64px 75px;
  }
  #hero-search-box {
    width: 618px;
  }
  #footer-search-box{
    width: 585px;
  }
  .blue-box-header {
    font-size: 80px;
    font-weight: 400;
    line-height: 112px;
  }
  .blue-circle-bg-up
  .blue-circle-bg-down{
    width: 558px;
    height: 185px;
  }
  .blue-circle-bg-reviews{
    background-image: url('/assets/uploads/home/blue_circle_bg_up.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 554px;
    background-position: center;
  }
  .light-circle-bg{
    background-image: url('/assets/uploads/icons/light-circle-bg.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 554px;
    background-position: center;
  }
  .hs-form-frame{
    min-width: 768px;
  }
  .lg-w-max{
    width: max-content;
  }
  .wrapper {
    max-width: 1290px;
    margin: auto;
  }
  .white-bg-search-box{
    width: 618px;
  }
  .background-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;;
    background-image: url('/assets/uploads/icons/light-circle-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 558px;
    height: 558px;
  }
  .workforce-img{
    position: relative;
  }
  .workforce-text-overlay{
    position: absolute;
    width: 768px;
  }
  #workforce-1{
    top: 59px;
    left: 90px;
  }
  #workforce-2{
    top: 220px;
    left: -31px;
  }
  #workforce-3{
    top: 280px;
    left: 212px;
  }
  #workforce-4{
    top: 0;
    left: 45px;
  }
  #workforce-5{
    top: 177px;
    left: 220px;
  }
  #workforce-6{
    top: 280px;
    left: 0;
  }
  .border-lg-gray{
    border-left: 1px solid rgba(237, 237, 237, 1);
  }
  .zip-search-box {
    width: 60%;
    margin: 0 auto;
  }
}