@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
.navy-bg {
  background-color: #00345a;
  color: white;
}

.lightblue-bg {
  background: #bef0ff;
}

.lightgreen-bg {
  background: #f1facc;
}

.darkpurple-bg {
  background-color: #642a64;
  color: white;
}

.lightpurple-bg {
  background-color: #f8d9f7;
}

.navy-text {
  color: #00345a;
}

.lime-text {
  color: #d2ef54;
}

.darkpurple-text {
  color: #642a64;
}

* {
  background-size: cover;
}

body {
  font-family: "Nunito", sans-serif;
  color: #00345a;
}

a {
  text-decoration: none;
}

button {
  appearance: none;
  border: 0px;
  box-shadow: 0px;
  font-weight: 600;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 800;
}

dialog {
  background: #f8d9f7;
  color: #00345a;
  border: 0px;
  border-radius: 30px;
  max-width: 1200px;
  width: calc(100% - 30px);
  box-shadow: 2px 2px 28px -2px black;
}
dialog .close-dialog {
  color: #00345a;
  float: right;
}

.breadcrumb {
  margin-bottom: 6px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "»";
  color: #00345a;
  font-weight: 600;
}

.breadcrumb-item a, .breadcrumb-item span {
  color: #00345a;
  font-weight: 600;
}

.pagination .page-item .page-link {
  border: 1px solid #389bd1;
}
.pagination .page-item.active .page-link {
  background: #f1facc;
  color: #00345a;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
}

.small-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
}

.card-title {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
}

.large-text, .accordion-group .accordion .accordion-content p, .content-block p, .content-block li {
  font-size: clamp(17px, 1.75vw, 24px);
}

.noclick {
  pointer-events: none;
}

.skip-nav {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #63a540;
  color: white;
  text-decoration: none;
  border: 2px solid #000;
}

.skip-nav:focus {
  top: 1rem;
}

.button {
  border-radius: 999px;
  color: #ffffff !important;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.45rem 1.35rem;
  transition: 0.2s ease;
  text-decoration: none;
  text-align: center;
}
.button:hover {
  color: white !important;
}
.button.large-button {
  font-size: clamp(20px, 2vw, 1.5rem);
  font-weight: 800;
  min-width: 240px;
  width: auto;
}
.button.green-button {
  background: #63a540;
}
.button.green-button:hover {
  background: rgb(54.903930131, 91.5065502183, 35.4934497817);
}
.button.lime-button {
  background: #d2ef54;
  color: #00345a !important;
}
.button.lime-button:hover {
  background: rgb(167.8181818182, 202.0909090909, 18.9090909091);
  color: #00345a !important;
}
.button.blue-button {
  background: #389bd1;
}
.button.blue-button:hover {
  background: rgb(30.6040816327, 96.4693877551, 132.3959183673);
}
.button.orange-button {
  background: #f66844;
}
.button.orange-button:hover {
  background: rgb(202.2653061224, 48.6734693878, 9.7346938776);
}
.button.purple-button {
  background: #aa66a9;
}
.button.purple-button:hover {
  background: rgb(142.0714285714, 78.9285714286, 141.1428571429);
}
.button.darkpurple-button {
  background: #642a64;
}
.button.darkpurple-button:hover {
  background: rgb(64.0845070423, 26.9154929577, 64.0845070423);
}

.has-cutout {
  position: relative;
  overflow-x: hidden;
}
.has-cutout .cutout-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 488px;
  max-height: 60px;
  object-fit: cover;
  object-position: bottom;
}
.has-cutout .cutout-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-width: 488px;
  max-height: 60px;
  object-fit: cover;
  object-position: top;
}

.section-intro p a {
  color: #aa66a9;
}

.large-shape-bg, .large-shape-right-bg {
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
.large-shape-bg.large-shape-right-bg, .large-shape-right-bg.large-shape-right-bg {
  background-position: top right;
}
@media screen and (max-width: 757px) {
  .large-shape-bg, .large-shape-right-bg {
    background-size: 1200px;
  }
}

.content-card {
  border-radius: 25px;
  box-shadow: 2px 2px 13px -7px black;
  display: flex;
  flex-direction: column;
}
.content-card p {
  font-size: 17px;
  font-weight: 600;
}
.content-card .button {
  width: 220px;
  max-width: 90%;
  font-weight: 800;
  font-size: 19px;
}
.content-card.green-card {
  background: #f1facc;
}
.content-card.blue-card {
  background: #bef0ff;
}
.content-card.purple-card {
  background: #f8d9f7;
}
.content-card.orange-card {
  background: #ffdfd6;
}
.content-card.icon-card {
  text-align: center;
  margin-top: 25px;
}
.content-card.icon-card .card-icon {
  display: inline-block;
  width: 80%;
  max-width: 119px;
  margin: auto;
  margin-top: -78px;
}
.content-card.news-card {
  overflow: hidden;
}
.content-card.news-card p:last-of-type {
  margin-bottom: 40px;
}
.content-card.news-card .preview-image {
  aspect-ratio: 5/3;
  object-position: top center;
  object-fit: cover;
}
.content-card.logo-card p:last-of-type {
  margin-bottom: 0px;
}
.content-card.course-card {
  overflow: hidden;
}
.content-card.course-card .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content-card.course-card .title-section {
  color: white;
}
.content-card.course-card .title-section .subhead {
  border-top: 2px solid white;
  font-size: 15px;
  padding-top: 4px;
  margin-bottom: 4px;
}
.content-card.course-card.blue-card .title-section {
  background: #389bd1;
}
.content-card.course-card.purple-card .title-section {
  background: #aa66a9;
}
.content-card.course-card.green-card .title-section {
  background: #63a540;
}
.content-card.course-card.orange-card .title-section {
  background: #f66844;
}
.content-card.accordion-group p {
  font-size: inherit;
}
.content-card .card-title {
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 800;
  margin-bottom: 20px;
}
.content-card .card-logo {
  max-width: 320px;
}

.shape-divider {
  max-width: 1500px;
  margin: 0 auto;
  padding: 15px;
}

.nav-wrapper {
  background: #ffffff;
}
@media screen and (max-width: 991px) {
  .nav-wrapper {
    background: #00345a;
  }
}

.navbar-brand {
  width: 100%;
  max-width: 395px;
}
.navbar-brand img {
  width: 100%;
  max-width: 380px;
}
@media screen and (max-width: 991px) {
  .navbar-brand {
    max-width: 70%;
    width: 300px;
    margin-right: 10px;
  }
}

.navbar-toggler {
  font-size: 32px;
  color: #d2ef54;
}
.navbar-toggler:focus {
  border: 0px;
  outline: 0;
  box-shadow: 0px 0px;
}

.nav-content {
  flex-direction: column;
  align-items: flex-end;
}

.eyebrow, .sidebar-social {
  gap: 1rem;
}
.eyebrow .icon-link, .sidebar-social .icon-link {
  color: white;
  transition: 0.2s ease;
  background: #00345a;
  padding: 3px 5px;
  border-radius: 50%;
}
.eyebrow .icon-link:hover, .sidebar-social .icon-link:hover {
  color: #d2ef54;
}

.top-nav .nav {
  gap: 0.75rem;
}
.top-nav .button {
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.25rem 1.35rem;
  min-width: 111px;
  text-align: center;
}
.top-nav .button:hover {
  color: white;
}
.top-nav .btn-crawl {
  background: #63a540;
}
.top-nav .btn-baby {
  background: #389bd1;
}
.top-nav .btn-subscribe {
  background: #f66844;
}
.top-nav .btn-conference {
  background: #aa66a9;
}

.main-nav {
  background: #00345a;
}
.main-nav .navbar-nav > .nav-item:hover > .nav-link {
  color: #d2ef54;
}
.main-nav .navbar-nav > .nav-item:hover > .nav-link .fa-solid {
  transform: rotate(90deg);
}
.main-nav .fa-solid {
  transition: 0.2s ease;
}
.main-nav .nav-item {
  position: relative;
}
.main-nav .nav-link {
  color: #ffffff;
  padding: 1rem 1.25rem;
}
.main-nav .dropdown-menu {
  background: #d2ef54;
  border: 0;
  border-radius: 0px 0px 20px 20px;
  display: none;
  left: 0;
  margin-top: 0;
  min-width: 240px;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  z-index: 1000;
}
.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}
.main-nav .nav-item:focus-within .dropdown-menu {
  display: block;
}
.main-nav .dropdown-item {
  color: #00345a;
  padding: 0.45rem 1.25rem;
}
.main-nav .dropdown-item:hover, .main-nav .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.35);
  color: #00345a;
}

.nav-search {
  position: relative;
}
.nav-search .search-form {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.nav-search .search-input {
  border: 1px solid #00345a;
  border-radius: 999px;
  height: 2.5rem;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  transition: width 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
  width: 0;
}
.nav-search .search-button {
  background: none;
  border: 0;
  color: #00345a;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 0.5rem;
  padding: 0;
}
.nav-search.active .search-input {
  opacity: 1;
  padding: 0 1rem;
  pointer-events: auto;
  width: 220px;
}

.mobile-nav {
  background: #00345a;
}
.mobile-nav a {
  color: white;
}
.mobile-nav .close-button {
  color: #d2ef54;
  appearance: none;
  background: transparent;
  border: 0px;
  box-shadow: 0px;
  font-size: 32px;
  padding-right: 0px;
}
.mobile-nav .nav-item {
  position: relative;
  border-bottom: 2px solid #d2ef54;
}
.mobile-nav .nav-item:last-child {
  border-bottom: 0px;
}
.mobile-nav .nav-item.nav-button {
  border-bottom: 0px;
}
.mobile-nav .nav-item .button {
  width: 100%;
  font-size: 16px;
  text-decoration: none;
}
.mobile-nav .submenu .nav-item {
  border-bottom: 0px;
}
.mobile-nav .submenu .nav-item .nav-link {
  text-transform: none;
  padding-top: 0px;
}
.mobile-nav .nav-link {
  color: white;
  font-weight: 600;
  padding: 0.75rem 0;
  text-transform: uppercase;
}
.mobile-nav .has-submenu .nav-link {
  padding-right: 2.5rem;
}
.mobile-nav .has-submenu.active .submenu {
  display: block;
}
.mobile-nav .has-submenu.active .submenu-toggle i {
  transform: rotate(180deg);
}
.mobile-nav .submenu {
  display: none;
  list-style: none;
  padding-left: 1rem;
}
.mobile-nav .submenu .nav-link {
  font-size: 0.95rem;
}
.mobile-nav .submenu-toggle {
  background: none;
  border: 0;
  color: white;
  position: absolute;
  right: 0;
  top: 0.5rem;
}
.mobile-nav .submenu-toggle i {
  transition: 0.2s ease;
}

.mobile-search .search-form {
  display: flex;
  width: 100%;
}
.mobile-search .search-input {
  border: 1px solid #389bd1;
  border-radius: 99px 0 0 99px;
  height: 2.5rem;
  padding: 0 1rem;
  width: 100%;
}
.mobile-search .search-button {
  background: #389bd1;
  border: 0;
  border-radius: 0 99px 99px 0;
  color: #ffffff;
  padding: 0 1.25rem;
  font-weight: 600;
}

.footer {
  background-size: cover;
  color: white;
}
.footer a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.footer p {
  line-height: 1.3em;
}
.footer .stack-logo {
  width: 100%;
  max-width: 220px;
}

.footer-logos img {
  width: 100%;
  max-width: 160px;
}

.footer-contact {
  max-width: 320px;
  margin: 10px auto 10px;
  padding: 4px 0px 4px;
  font-size: 15px;
}

.footer-border {
  border-top: 2px solid #d2ef54;
  border-bottom: 2px solid #d2ef54;
  margin-top: 20px;
}
@media screen and (min-width: 576px) {
  .footer-border {
    border-left: 2px solid #d2ef54;
    border-top: 0px;
    border-bottom: 0px;
    margin-top: 0px;
  }
}

.footer-copy {
  padding: 10px 20px;
  background: #e882e6;
  font-size: 17px;
  font-weight: 500;
}
.footer-copy a {
  color: inherit;
}

.home-hero {
  background-size: cover;
  background-position: center;
}
.home-hero .overlay-bg {
  background-size: cover;
  background-position: center;
}

.hero-text {
  color: white;
  font-size: clamp(17px, 3vw, 26px);
  max-width: 820px;
  margin: 10px auto;
}
.hero-text p {
  margin-bottom: 20px;
  line-height: 1.2em;
}
.hero-text .hero-rotator {
  font-size: clamp(42px, 8vw, 85px);
}

.hero-rotator {
  display: inline-grid;
}
.hero-rotator span {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.hero-rotator .active {
  opacity: 1;
}

.hero-rotator span {
  grid-area: 1/1;
}

.quote-section blockquote {
  font-style: italic;
  font-weight: 700;
  line-height: 1.3em;
  font-size: clamp(18px, 3vw, 34px);
  margin-bottom: 1em;
  margin-top: 1em;
}
.quote-section cite {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 25px);
}

.content-block .small-text {
  font-size: 17px;
}
.content-block a {
  color: #642a64;
}

.decorated-list {
  list-style: none;
  padding-left: 0;
}

.decorated-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.decorated-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 0.8em;
  height: 0.8em;
  background: url("/img/bullet.svg") no-repeat center;
  background-size: contain;
}

.resource-list span {
  display: block;
}
.resource-list .small-button {
  width: auto;
  font-size: 14px;
  padding: 4px 32px;
}

.sidebar {
  border-left: 6px solid #389bd1;
}
@media screen and (max-width: 991px) {
  .sidebar {
    border-left: 0px;
    border-bottom: 6px solid #389bd1;
  }
}

.sidebar-nav {
  padding-left: 0px;
  list-style-type: none;
  width: 100%;
  max-width: 300px;
}
.sidebar-nav li {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 6px;
}
.sidebar-nav li a {
  color: #00345a;
  display: block;
  width: 100%;
}
.sidebar-nav li a:hover {
  color: #389bd1;
}
.sidebar-nav li a .fa-chevron-right {
  float: right;
  padding-right: 20px;
}
.sidebar-nav li .current {
  fill: #642a64;
}

.coaching-graphic {
  max-width: 600px;
  margin: auto;
}
.coaching-graphic .cycle-toggle {
  cursor: pointer;
}
.coaching-graphic #teaching.active {
  fill: #e882e6 !important;
  stroke: #e882e6 !important;
}
.coaching-graphic #focused.active {
  fill: #f66844 !important;
  stroke: #f66844 !important;
}
.coaching-graphic #collab.active {
  fill: #5eb6dd !important;
  stroke: #5eb6dd !important;
  opacity: 1 !important;
}
.coaching-graphic #shared.active {
  fill: #d2ef54 !important;
  stroke: #d2ef54 !important;
}
.coaching-graphic #reflection.active {
  fill: #27ccff !important;
  stroke: #27ccff !important;
}

.component-content {
  display: none;
}
.component-content ol {
  padding-left: 1rem;
}
.component-content p, .component-content li {
  font-size: 18px;
}
.component-content .list-intro {
  font-size: 20px;
  font-weight: 600;
}
.component-content.active {
  display: block;
}

.accordion-group .accordion {
  border-bottom: 1px solid #00345a;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.accordion-group .accordion .accordion-title {
  position: relative;
  cursor: pointer;
  padding-right: 28px;
}
.accordion-group .accordion .accordion-title i {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: clamp(22px, 2vw, 30px);
}
.accordion-group .accordion .accordion-content {
  display: none;
}
.accordion-group .accordion .accordion-content p {
  font-weight: 500;
}

.team-member {
  max-width: 340px;
  margin: 0 auto;
  padding-bottom: 30px;
}
.team-member .team-photo {
  border: 10px solid #e882e6;
  border-radius: 30px;
  box-shadow: 2px 2px 28px -2px black;
  margin-bottom: 18px;
}
.team-member .card-title {
  margin-bottom: 10px;
}
.team-member .team-title {
  margin-bottom: 4px;
}
.team-member .contact-link {
  font-weight: 600;
}
.team-member .open-dialog h3 {
  position: relative;
  padding-right: 35px;
  margin-bottom: 6px;
}
.team-member .open-dialog h3 i {
  position: absolute;
  right: 0px;
  top: 0;
}

.image-content .content-image {
  border-radius: 30px;
  box-shadow: 2px 2px 28px -2px black;
  border: 10px solid #00345a;
}
.image-content .content-image.orange-border {
  border-color: #f66844;
}
.image-content .content-image.purple-border {
  border-color: #aa66a9;
}
.image-content .content-image.green-border {
  border-color: #63a540;
}
.image-content .content-image.blue-border {
  border-color: #389bd1;
}

.video-section .video-container {
  max-width: 1100px;
  margin: 0 auto;
}
.video-section .video-container .ratio {
  box-shadow: 2px 2px 28px -2px black;
  border: 7px solid #f66844;
  border-radius: 30px;
  overflow: hidden;
}

.contact-section * {
  font-size: 18px;
}
.contact-section .form-control, .contact-section .form-select {
  background-color: #f5e6f5;
  border: 2px solid #642a64;
  border-radius: 8px;
  color: #642a64;
}
.contact-section .form-control::placeholder, .contact-section .form-select::placeholder {
  color: #00345a;
}
.contact-section .form-check-input {
  background-color: #f5e7f5;
}
.contact-section .form-check-input:checked {
  background-color: #642a64;
  border-color: #642a64;
}

.umbraco-forms-hidden {
  display: none;
}

/*# sourceMappingURL=main.css.map */
