  .mcla-find-program {
  background: var(--preset-color-brand-dark-blue) url(../assets/hash-bg.svg) repeat-x;
  background-position: 0 0%;
  padding: 92px 0 120px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom-right-radius: 100px;
}
.mcla-find-program::before {
  content: "";
  background-color: var(--preset-color-brand-blue);
  width: 90px;
  height: 90px;
  border-bottom-left-radius: 100px;
  position: absolute;
  bottom: 0;
  right: 90px;
}
.mcla-find-program::after {
  content: "";
  background-color: var(--preset-color-brand-light-blue);
  width: 90px;
  height: 90px;
  border-bottom-right-radius: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.mcla-find-program .mcla-container {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.mcla-find-program__search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
  position: relative;
  z-index: 4;
}
.mcla-find-program__search-title {
  font-family: Knockout48Featherweight;
  font-style: normal;
  font-weight: 355;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--preset-color-brand-light-blue);
  -webkit-font-smoothing: antialiased;
  padding: 0 12px;
  margin: 0;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s;
}
.mcla-find-program__search-bar {
  position: relative;
  background-color: rgba(255,255,255,0.15);
  border-radius: 6px;
  height: 46px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s 0.15s, transform 0.6s 0s;
}
.mcla-find-program__search-bar:hover {
  transform: translateY(-6px);
}
.mcla-find-program__search-bar-input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: Knockout50Welterweight;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  padding: 0 18px;
  -webkit-font-smoothing: antialiased;
  color: var(--preset-color-standard-white);
  background-color: transparent;
  border: 0;
  border-radius: 6px;
  outline-color: var(--preset-color-brand-electric-yellow);
  cursor: pointer;
}
.mcla-find-program__search-bar-input::placeholder {
  opacity: 1;
  color: var(--preset-color-standard-white);
}
.mcla-find-program__search-bar svg {
  fill: var(--preset-color-standard-white);
  width: 16px;
  height: auto;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.mcla-find-program__actions {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 300px;
  max-width: 360px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s 0.3s;
}
.mcla-find-program__actions-btn {}
.mcla-find-program__actions-btn-link {
  font-family: Knockout52Cruiserweight;
  font-size: 14px;
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  background-color: var(--preset-color-brand-electric-yellow);
  color: var(--preset-color-brand-dark-blue);
  text-decoration: none;
  padding: 10px 21px;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
}
.mcla-find-program__actions-btn-link:hover {
  background-color: var(--preset-color-brand-light-blue);
}
.mcla-find-program__actions-btn:first-of-type .mcla-find-program__actions-btn-link {
  border-top-left-radius: 16px;
}
.mcla-find-program__actions-btn:last-of-type .mcla-find-program__actions-btn-link {
  border-bottom-right-radius: 16px;
}

.mcla-find-program__line {
  position: absolute;
  z-index: 1;
  top: -92px;
  bottom: auto;
  left: 30px;
  width: 90px;
  height: 165px;
  border-bottom-left-radius: 0px;
  border: 4px dotted var(--preset-color-standard-white);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
}
.mcla-find-program__line::before {
  content: "";
  position: absolute;
  border: 2px solid var(--preset-color-standard-white);
  width: 8px;
  height: 8px;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  bottom: -7px;
  left: -7px;
}

.mcla-find-program__actions::-moz-selection { /* Code for Firefox */
  background: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-brand-electric-yellow);
}
.mcla-find-program__actions::selection {
  background: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-brand-electric-yellow);
}

.mcla-find-program__search::-moz-selection { /* Code for Firefox */
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}
.mcla-find-program__search::selection {
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}

/* Search Dropdown Styles */
/* .mcla-find-program__search-bar-input:focus + .mcla-find-program__search-bar-input-dropdown {
  display: block;
}
 */
.mcla-find-program__search-bar-input-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: 0px;
  right: 0px;
  padding: 6px;
  background-color: var(--preset-color-standard-white);
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
  max-height: 180px;
  overflow: auto;
}
.mcla-find-program__search-bar-input-dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mcla-find-program__search-bar-input-dropdown-list-item {
  flex-shrink: 0;
  color: var(--preset-color-brand-dark-blue);
  text-decoration: none;
  padding: 3px 12px;
  font-family: Knockout32JuniorCruiserweight, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 330;
  font-size: 14px;
  line-height: 21px;
  background-color: rgba(136, 219, 223, 0);
  border-radius: 3px;
  transition: all 0.3s;
  display: flex;
  align-items: flex-start;
}
.mcla-find-program__search-bar-input-dropdown-list-item:hover {
  background-color: rgba(136, 219, 223, 0.3);
}
.mcla-find-program__search-bar-input-dropdown-list-item span {
  display: inline-flex;
  width: 100%;
}
.mcla-find-program__search-bar-input-dropdown-list-item--sub {
  max-width: 100px;
}


/* Animation classes */
.mcla-find-program.in-view .mcla-find-program__search-title,
.mcla-find-program.in-view .mcla-find-program__actions {
  opacity: 1;
  transform: translateY(0);
}
.mcla-find-program.in-view .mcla-find-program__search-bar {
  opacity: 1;
}

@media (min-width: 750px) {
  .mcla-find-program {
    border-bottom-right-radius: 170px;
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .mcla-find-program .mcla-container {
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    gap: 30px;
    transition: all 0.3s;
  }
  
  .mcla-find-program__search {
    padding-left: 90px;
    flex-grow: 1;
    max-width: 540px;
    gap: 18px;
  }
  .mcla-find-program__search-title {
    padding: 0 15px;
    font-size: 43px;
    line-height: 45px;
  }
  .mcla-find-program__search-bar {
    height: 64px;
    border-radius: 8px;
  }
  .mcla-find-program__search-bar-input {
    padding: 0 21px;
    font-size: 21px;
    line-height: 27px;
    border-radius: 8px;
  }
  .mcla-find-program__search-bar svg {
    width: 20px;
    height: 20px;
    right: 18px;
  }
  .mcla-find-program__search-bar-input-dropdown {
    top: 55px;
    left: 9px;
    right: 9px;
  }

  .mcla-find-program__search-bar-input-dropdown-list-item {
    font-size: 16px;
    line-height: 24px;
  }

  .mcla-find-program__actions-btn-link {
    font-size: 18px;
    line-height: 32px;
    padding: 8px 21px;
  }
  .mcla-find-program__actions-btn:first-of-type .mcla-find-program__actions-btn-link {
    border-top-left-radius: 24px;
  }
  .mcla-find-program__actions-btn:last-of-type .mcla-find-program__actions-btn-link {
    border-bottom-right-radius: 24px;
  }

  .mcla-find-program::before {
    width: 160px;
    height: 160px;
    border-bottom-left-radius: 160px;
    bottom: 160px;
    right: 0;
    z-index: 1;
  }
  .mcla-find-program::after {
    width: 160px;
    height: 160px;
    border-bottom-right-radius: 160px;
    bottom: 0;
    right: 0;
    z-index: 1;
  }

  .mcla-find-program__line {
    top: -110px;
    bottom: 10px;
    left: 0;
    width: 485px;
    height: auto;
    border-bottom-left-radius: 60px;
    border-top: 0;
    border-right: 0;
    border-bottom: 4px dotted var(--preset-color-standard-white);
  }
  .mcla-find-program__line::before {
    left: auto;
    bottom: -8px;
    right: -8px;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
  }
}
@media (min-width: 1025px) {
  .mcla-find-program .mcla-container {
    gap: 120px;
  }
}