.button {
  display: inline-block;
  color: black;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(90deg, rgb(174, 217, 251) 0%, var(--accent-color) 100%);
  transition: transform 300ms;
  box-shadow: 0px 0px 12px 0px var(--shadow-color-30);
  border-radius: 44px;
  padding: 12px 24px;
}
.button:hover {
  transform: scale(1.05);
}
.button[data-disabled=true] {
  cursor: default;
  opacity: 0.6;
}
.button[data-disabled=true]:hover {
  transform: none;
}

.outline-button {
  color: white;
  background: transparent;
  border: 1px solid var(--white-30);
  box-shadow: none;
}

.arrow-button {
  cursor: pointer;
  background: transparent;
  transition: border 200ms;
  border-radius: 20px;
  border: 1px solid var(--white-30);
  padding: 8px 14px;
}
.arrow-button:hover {
  background-color: var(--white-10);
}
.arrow-button:active {
  background-color: var(--white-20);
}
.arrow-button:disabled {
  cursor: default;
  border: 1px solid var(--white-20);
}
.arrow-button:disabled:hover, .arrow-button:disabled:active {
  background-color: transparent;
}
.arrow-button:disabled .arrow-button__icon {
  color: var(--white-30);
  transition: color 200ms;
}

.tabs {
  display: flex;
  border: 1px solid var(--white-30);
  border-radius: 40px;
  overflow: auto;
  padding: 6px;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tabs__tab {
  font-size: 14px;
  color: white;
  background: black;
  box-shadow: none;
  transition: all 200ms;
  padding: 8px 16px;
}
.tabs__tab:hover {
  transform: none;
}
.tabs__tab[data-selected=true] {
  color: black;
  background: var(--accent-color);
}
@media (min-width: 768px) {
  .tabs__tab {
    font-size: 16px;
    padding: 12px 24px;
  }
}

.nav-option {
  display: block;
  flex-shrink: 1;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 20px;
  border: 1px solid var(--white-30);
  padding: 8px 16px;
}
.nav-option[data-hide=true] {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 20px;
}
@media (min-width: 768px) {
  .header {
    padding: 20px 60px;
  }
}
.header__logo {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: center;
}
.header__image {
  width: 154px;
}
.header__menu-icon {
  height: 40px;
  color: var(--white-90);
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__menu-icon {
    display: none;
  }
}
.header__image {
  display: block;
}
.header__nav-container {
  display: none;
  align-items: center;
  flex: 1;
  gap: 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .header__nav-container {
    display: flex;
  }
}
.header__nav {
  display: flex;
  gap: 2px;
  flex-shrink: 1;
  overflow: hidden;
}
.header__icon-button {
  cursor: pointer;
  box-sizing: content-box;
  padding: 8px;
  border-radius: 100%;
}
.header__icon-button:hover {
  background-color: var(--white-20);
}
.header__icon-button:active {
  background-color: var(--white-40);
}
.header__more-menu {
  position: relative;
}
.header__popup {
  width: 292px;
  display: none;
  position: fixed;
  background-color: var(--background-color);
  border-radius: 12px;
  border: 1px solid var(--white-20);
  padding: 16px;
}
.header__popup:focus-visible {
  outline: none;
}
@media (min-width: 768px) {
  .header__popup {
    width: 340px;
  }
}
.header__popup-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 12px 16px;
}
.header__popup-item:hover {
  background-color: var(--white-10);
}
.header__popup-item:active {
  background-color: var(--white-20);
}
.header__button {
  display: none;
  padding: 8px 16px;
}
@media (min-width: 768px) {
  .header__button {
    display: flex;
  }
}
.header__mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  background-color: var(--background-color);
}
.header__mobile-menu[data-open=true] {
  display: flex;
}
@media (min-width: 768px) {
  .header__mobile-menu[data-open=true] {
    display: none;
  }
}
.header__mobile-menu-header {
  display: flex;
  flex: 0;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.header__mobile-menu-close-button {
  padding: 4px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
}
.header__mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px;
}
.header__mobile-menu-item {
  display: block;
  font-size: 16px;
  color: var(--white-90);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--white-30);
  border-radius: 20px;
  padding: 8px 16px;
}
.header__mobile-menu-button {
  margin: 20px 20px 44px;
}

.footer {
  padding: 0px 20px 16px;
}
@media (min-width: 768px) {
  .footer {
    padding: 0px 60px 30px;
  }
}
.footer__nav {
  display: flex;
  flex-flow: row wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: start;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 40px 0px;
}
@media (min-width: 768px) {
  .footer__nav {
    padding: 60px 0px;
  }
}
.footer__image-container {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__image-container {
    width: auto;
  }
}
.footer__columns {
  display: flex;
  flex-flow: row wrap;
  gap: 60px;
}
.footer__column {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 40px;
  padding-top: 30px;
}
.footer__legal-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.footer__legal-copyright, .footer__legal-link {
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
}
.footer__social-media {
  display: flex;
  gap: 6px;
  align-items: center;
}

.team-member-card {
  width: 320px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background: var(--background-card);
  overflow: hidden;
  border-radius: 12px;
}
.team-member-card__image {
  display: block;
  width: 100%;
  height: 340px;
  flex: 1;
  object-fit: cover;
}
.team-member-card:hover .team-member-card__image {
  display: none;
}
.team-member-card__description {
  flex: 1;
  display: none;
  font-weight: 300;
  font-size: 14px;
  color: var(--white-80);
  padding: 22px 20px;
}
.team-member-card:hover .team-member-card__description {
  display: block;
}
.team-member-card__info {
  padding: 22px 20px 20px;
}
.team-member-card__name {
  font-family: Scandia;
  font-size: 26px;
}
.team-member-card__position {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-top: 8px;
}

.faqs-card {
  width: 780px;
  background: var(--background-card);
  border-radius: 12px;
  border: 1px solid var(--white-10);
  padding: 24px;
}
.faqs-card__item {
  padding: 26px 0px;
  border-bottom: 1px solid var(--white-10);
}
.faqs-card__item:first-of-type {
  padding-top: 0px;
}
.faqs-card__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}
.faqs-card__item-toolbar {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faqs-card__item-icon {
  flex-shrink: 0;
}
.faqs-card__item-icon-minus {
  display: none;
}
.faqs-card__item[data-selected=true] .faqs-card__item-icon-minus {
  display: block;
}
.faqs-card__item-icon-plus {
  display: block;
}
.faqs-card__item[data-selected=true] .faqs-card__item-icon-plus {
  display: none;
}
.faqs-card__item-question {
  font-family: Scandia;
  font-weight: 400;
  font-size: 20px;
}
@media (min-width: 768px) {
  .faqs-card__item-question {
    font-size: 22px;
  }
}
.faqs-card__item-answer {
  max-height: 0px;
  color: var(--white-80);
  font-weight: 300;
  overflow: hidden;
  transition: max-height 200ms ease;
  padding-right: 40px;
  margin-top: 14px;
}
.faqs-card__item[data-selected=true] .faqs-card__item-answer {
  transition: max-height 1500ms 200ms ease-in;
  max-height: 800px;
}

.section-divider {
  width: calc(100% - 80px);
  max-width: calc(var(--max-width) - 120px);
  height: 1px;
  border: 1px solid var(--white-10);
  margin: 40px auto;
}
@media (min-width: 768px) {
  .section-divider {
    width: calc(100% - 120px);
    margin: 60px auto;
  }
}

.post-card {
  flex-shrink: 0;
  width: 432px;
  background: var(--background-card);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--white-10);
  box-shadow: 0px 4px 40px 0px var(--shadow-color-10);
}
.post-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.post-card__details {
  padding: 24px 16px;
}
.post-card__category {
  width: fit-content;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid var(--white-30);
  border-radius: 20px;
  padding: 3px 10px;
}
.post-card__title {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-family: Scandia;
  font-size: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 20px;
}
.post-card__description {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 10px;
}

.feature-card {
  min-height: 360px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: var(--background-card);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 30px 30px 24px;
}
.feature-card__icon {
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0px 4px 40px 0px var(--shadow-color-10);
}
.feature-card__title {
  font-family: Scandia;
  font-size: 32px;
  padding-top: 20px;
  margin-top: auto;
}
@media (min-width: 768px) {
  .feature-card__title {
    font-size: 38px;
  }
}
.feature-card__description {
  font-weight: 300;
  color: var(--white-80);
  margin-top: 10px;
}

.case-study-card__tags {
  display: flex;
  gap: 12px;
}
.case-study-card__tag {
  font-family: Poppins;
  font-size: 14px;
  color: var(--background-color);
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background: var(--accent-color);
  border-radius: 20px;
  padding: 8px 16px;
}
.case-study-card__title {
  font-family: Scandia;
  font-size: 38px;
  margin-top: 40px;
}
.case-study-card__description {
  font-family: Poppins;
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  margin-top: 14px;
}
.case-study-card__achievements {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
  margin-top: 50px;
}
.case-study-card__achievement {
  flex-grow: 1;
}
.case-study-card__achievement-title {
  font-family: Scandia;
  font-size: 38px;
}
.case-study-card__achievement-description {
  font-family: Poppins;
  font-weight: 300;
  font-size: 16px;
  color: var(--white-60);
  margin-top: 12px;
}
.case-study-card__button {
  width: calc(100% - 16px);
  margin: 4px 8px;
  margin-top: 50px;
}
@media (min-width: 640px) {
  .case-study-card__button {
    margin: 4px;
    width: auto;
  }
}

.slider-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0px;
  margin-top: 24px;
}
.slider-indicator__item {
  cursor: pointer;
  padding: 8px;
}
.slider-indicator__point {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color-30);
  border-radius: 100%;
  transition: all 200ms;
}
.slider-indicator__item:hover .slider-indicator__point {
  background-color: var(--accent-color-80);
}
.slider-indicator__item[data-selected=true] .slider-indicator__point {
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
}

.markdown h1, .markdown h2, .markdown h3, .markdown h4, .markdown h5, .markdown h6 {
  font-family: "Scandia";
  margin: 20px 0px;
}
.markdown h1 {
  font-size: 40px;
}
.markdown h2 {
  font-size: 36px;
}
.markdown h3 {
  font-size: 32px;
}
.markdown h4 {
  font-size: 24px;
}
.markdown h5 {
  font-size: 20px;
}
.markdown h6 {
  font-size: 18px;
}
.markdown p {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  margin: 12px 0px;
}
.markdown strong {
  font-weight: 500;
  color: var(--white);
}

.call-to-action-section {
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  background: var(--background-color);
  background-image: linear-gradient(to top, var(--background-color), transparent 40%), url("/assets//images/call-to-action-section-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 20px;
  margin: 40px 0px;
}
@media (min-width: 768px) {
  .call-to-action-section {
    margin: 60px 0px;
    padding: 60px 60px;
  }
}
.call-to-action-section__content {
  max-width: 640px;
}
.call-to-action-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .call-to-action-section__title {
    font-size: 56px;
  }
}
.call-to-action-section__description {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-80);
  margin-top: 20px;
}
.call-to-action-section__buttons {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.call-to-action-section__button {
  width: 100%;
}
@media (min-width: 640px) {
  .call-to-action-section__button {
    width: auto;
  }
}

.call-to-action-variant-section {
  max-width: var(--max-width);
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .call-to-action-variant-section {
    padding: 60px;
  }
}
.call-to-action-variant-section__content {
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  background: var(--accent-color-20);
  border-radius: 12px;
  padding: 40px;
}
@media (min-width: 768px) {
  .call-to-action-variant-section__content {
    padding: 60px;
  }
}
.call-to-action-variant-section__details {
  max-width: 580px;
}
.call-to-action-variant-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .call-to-action-variant-section__title {
    font-size: 56px;
  }
}
.call-to-action-variant-section__description {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-80);
  margin-top: 20px;
}
.call-to-action-variant-section__buttons {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  gap: 10px;
}
.call-to-action-variant-section__button {
  width: 100%;
}
@media (min-width: 640px) {
  .call-to-action-variant-section__button {
    width: auto;
  }
}

.how-it-works-section {
  padding: 40px 20px;
  max-width: var(--max-width);
  margin-inline: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .how-it-works-section {
    padding: 60px;
  }
}
.how-it-works-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .how-it-works-section__title {
    font-size: 56px;
  }
}
.how-it-works-section__description {
  max-width: 536px;
  font-size: 16px;
  font-weight: 300;
  color: var(--white-80);
  margin-top: 20px;
}
.how-it-works-section__cards {
  display: grid;
  position: relative;
}
.how-it-works-section__prev-button, .how-it-works-section__next-button {
  width: fit-content;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 100;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  color: white;
  border-radius: 50%;
  padding: 0px;
}
.how-it-works-section__prev-button:active, .how-it-works-section__next-button:active {
  background-color: var(--white-20);
}
.how-it-works-section__prev-button[disabled], .how-it-works-section__next-button[disabled] {
  display: none;
}
.how-it-works-section__prev-button svg, .how-it-works-section__next-button svg {
  display: block;
  width: 44px;
  height: 44px;
}
.how-it-works-section__prev-button {
  left: 0px;
}
.how-it-works-section__next-button {
  right: 0px;
}

.how-it-works-card {
  max-width: 1600px;
  grid-column: 1;
  grid-row: 1;
  position: relative;
  margin-top: 40px;
  background-image: url("/assets/images/how-it-works-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .how-it-works-card {
    margin-top: 60px;
  }
}
.how-it-works-card__content {
  width: 100%;
  min-height: 554px;
  display: flex;
  position: relative;
  gap: 60px;
  align-items: center;
  z-index: 10;
  border-radius: 12px;
  box-shadow: 0px -4px 120px 0px var(--background-color-60);
  padding: 20px;
}
@media (min-width: 768px) {
  .how-it-works-card__content {
    padding: 60px;
  }
}
.how-it-works-card__info {
  flex: 1;
  max-width: 400px;
}
.how-it-works-card__tag {
  width: fit-content;
  font-family: Poppins;
  font-size: 15px;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  border-radius: 2px;
  background-color: var(--white);
  padding: 4px 8px;
}
.how-it-works-card__title {
  font-family: Scandia;
  font-size: 38px;
  font-weight: bold;
  margin-top: 24px;
}
.how-it-works-card__description {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  margin-top: 16px;
}
.how-it-works-card__button {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .how-it-works-card__button {
    width: auto;
  }
}
.how-it-works-card__image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.how-it-works-card__image {
  width: 100%;
}
@media (min-width: 1024px) {
  .how-it-works-card__image {
    width: auto;
    max-width: 100%;
  }
}

.achievements {
  max-width: var(--max-width);
  display: flex;
  flex-flow: row wrap;
  gap: 64px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .achievements {
    padding: 60px;
  }
}
.achievements__card {
  width: 400px;
  padding-left: 24px;
  border-left: 1px solid var(--accent-color-20);
}
.achievements__card-title {
  font-family: Scandia;
  font-size: 68px;
}
.achievements__card-description {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-60);
  margin-top: 20px;
}

.case-studies-slider-section {
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  align-items: start;
  overflow: hidden;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .case-studies-slider-section {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .case-studies-slider-section {
    flex-direction: row;
  }
}
.case-studies-slider-section__content {
  min-width: 280px;
  max-width: 570px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-studies-slider-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .case-studies-slider-section__title {
    font-size: 56px;
  }
}
.case-studies-slider-section__buttons {
  display: flex;
  gap: 2px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .case-studies-slider-section__buttons {
    margin-top: 60px;
  }
}
.case-studies-slider-section__slider {
  width: 100%;
  min-width: 300px;
  position: relative;
  flex: 1;
  display: grid;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .case-studies-slider-section__slider {
    max-width: 628px;
  }
}
.case-studies-slider-section__card {
  grid-column: 1;
  grid-row: 1;
}

.why-work-with-us-section {
  max-width: var(--max-width);
  padding: 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .why-work-with-us-section {
    padding: 60px;
  }
}
.why-work-with-us-section__cards {
  display: flex;
  flex-flow: row wrap;
  gap: 64px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .why-work-with-us-section__cards {
    margin-top: 80px;
  }
}
.why-work-with-us-section__title {
  font-family: Scandia;
  font-weight: 400;
  font-size: 40px;
}
@media (min-width: 768px) {
  .why-work-with-us-section__title {
    font-size: 56px;
  }
}
.why-work-with-us-section-card {
  width: 400px;
  padding-left: 24px;
  border-left: 1px solid var(--accent-color-20);
}
.why-work-with-us-section-card__title {
  font-family: Scandia;
  font-weight: 400;
  font-size: 26px;
}
.why-work-with-us-section-card__description {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-60);
  margin-top: 40px;
}

.clients-review-slider-section {
  max-width: var(--max-width);
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: start;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .clients-review-slider-section {
    padding: 60px;
  }
}
.clients-review-slider-section__content {
  min-width: 280px;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clients-review-slider-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .clients-review-slider-section__title {
    font-size: 56px;
  }
}
.clients-review-slider-section__buttons {
  display: flex;
  gap: 4px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .clients-review-slider-section__buttons {
    margin-top: 60px;
  }
}
.clients-review-slider-section__slider {
  flex: 1;
  min-width: 280px;
  max-width: 628px;
  min-height: 280px;
}
.clients-review-slider-section__review {
  font-weight: 300;
  font-size: 24px;
}
.clients-review-slider-section__divider {
  height: 1px;
  background-color: var(--white-10);
  margin: 20px 0px;
}
.clients-review-slider-section__reviewer {
  display: flex;
  gap: 24px;
  align-items: center;
}
.clients-review-slider-section__reviewer-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}
.clients-review-slider-section__reviewer-name {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.faq-section {
  max-width: var(--max-width);
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .faq-section {
    padding: 60px;
  }
}
.faq-section__details {
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: space-between;
}
.faq-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .faq-section__title {
    font-size: 56px;
  }
}
.faq-section__contact {
  display: flex;
  flex-flow: row wrap;
  gap: 18px;
  align-items: center;
}
.faq-section__contact-text {
  font-weight: 300;
  font-size: 14px;
}
.faq-section__contact-phone {
  font-weight: 500;
  font-size: 16px;
}
.faq-section__items {
  width: 780px;
  background: var(--background-card);
  border-radius: 12px;
  border: 1px solid var(--white-10);
  padding: 30px 30px 26px;
}
.faq-section__item {
  padding: 26px 0px;
  border-bottom: 1px solid var(--white-10);
}
.faq-section__item:first-of-type {
  padding-top: 0px;
}
.faq-section__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}
.faq-section__item-toolbar {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-section__item-icon {
  flex-shrink: 0;
}
.faq-section__item-icon-minus {
  display: none;
}
.faq-section__item:focus .faq-section__item-icon-minus {
  display: block;
}
.faq-section__item-icon-plus {
  display: block;
}
.faq-section__item:focus .faq-section__item-icon-plus {
  display: none;
}
.faq-section__item-question {
  font-family: Scandia;
  font-weight: 400;
  font-size: 20px;
}
@media (min-width: 768px) {
  .faq-section__item-question {
    font-size: 22px;
  }
}
.faq-section__item-answer {
  max-height: 0px;
  color: var(--white-80);
  font-weight: 300;
  overflow: hidden;
  transition: none;
  padding-right: 40px;
  margin-top: 14px;
}
.faq-section__item:focus .faq-section__item-answer {
  max-height: 800px;
  transition: max-height 1500ms ease-in;
}

.hero-section {
  display: flex;
  gap: 40px;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  padding: 40px 20px 46px;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 100px 60px 46px;
  }
}
.hero-section__info {
  width: 560px;
}
.hero-section__title {
  font-family: Scandia;
  font-size: 52px;
  text-transform: capitalize;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .hero-section__title {
    font-size: 68px;
  }
}
.hero-section__description {
  font-weight: 300;
  color: var(--white-80);
  margin-top: 20px;
}
.hero-section__button {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 640px) {
  .hero-section__button {
    width: auto;
  }
}
.hero-section.hero-section--wide .hero-section__info {
  width: 650px;
}

.info-section {
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .info-section {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .info-section {
    flex-flow: row wrap;
  }
}
.info-section__image {
  display: block;
  flex: 1 1;
  min-width: 0px;
  width: 100%;
  max-height: 464px;
  border-radius: 12px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .info-section__image {
    max-width: 556px;
  }
}
.info-section__details {
  flex: 1;
}
@media (min-width: 1024px) {
  .info-section__details {
    max-width: 680px;
  }
}
.info-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .info-section__title {
    font-size: 56px;
  }
}
.info-section__description {
  font-weight: 300;
  color: var(--white-80);
  margin-top: 20px;
}

.pull-quote-section {
  background-color: #000;
  color: #fff;
  padding: 6rem 4rem;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  overflow: hidden;
}
.pull-quote-section__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pull-quote-section__container {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
}
.pull-quote-section__header {
  display: flex;
  flex-direction: column;
}
.pull-quote-section__title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
}
.pull-quote-section__content {
  position: relative;
}
.pull-quote-section__quote {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}
.pull-quote-section__source {
  display: block;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9370DB;
}

.home-hero {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 25%), url("/assets/images/hero-background.png");
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-hero {
    padding-bottom: 70px;
  }
}
.home-hero__title-container {
  margin: 0px 20px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .home-hero__title-container {
    margin: 0px 60px;
    padding-top: 90px;
  }
}
.home-hero__title {
  max-width: 1200px;
  font-family: Scandia;
  font-size: 52px;
  font-weight: 400;
  font-weight: normal;
  line-height: 80px;
  margin: 0px;
}
@media (min-width: 1024px) {
  .home-hero__title {
    font-size: 68px;
  }
}
.home-hero__options {
  display: flex;
  flex-flow: row wrap-reverse;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-top: 34px;
}
.home-hero__buttons {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.home-hero__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-hero__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-hero__item-title {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  text-align: justify;
}
.home-hero__button {
  width: 100%;
}
@media (min-width: 640px) {
  .home-hero__button {
    width: auto;
  }
}
.home-hero__slider {
  overflow: hidden;
}
.home-hero__cards {
  display: flex;
  gap: 20px;
  padding: 0px 20px;
  margin-top: 60px;
  animation: sliding 40s linear infinite;
}
.home-hero__cards:hover {
  animation-play-state: paused;
}
@media (min-width: 768px) {
  .home-hero__cards {
    margin-top: 148px;
  }
}
@keyframes sliding {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.home-hero__card {
  width: 276px;
  height: 308px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background: var(--background-card);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  padding: 16px;
  opacity: 0.8;
  transition: all 200ms;
}
.home-hero__card:hover {
  opacity: 1;
  background: linear-gradient(0deg, var(--background-color-60), var(--background-color-60)), linear-gradient(180deg, rgba(19, 22, 26, 0.8) 0%, rgb(29, 34, 49) 49.04%, rgb(29, 34, 49) 100%);
  box-shadow: 0px 4px 40px 0px var(--shadow-color-10);
}
.home-hero__card-tag {
  width: fit-content;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border: 1px solid var(--white-30);
  border-radius: 20px;
  padding: 3px 10px;
}
.home-hero__card-title {
  display: -webkit-box;
  font-family: Scandia;
  font-weight: 400;
  font-size: 20px;
  color: var(--white-80);
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 200ms;
  margin-top: 14px;
}
.home-hero__card:hover .home-hero__card-title {
  color: white;
}
.home-hero__card-divider {
  height: 1px;
  background-color: var(--white-10);
  margin: 18px 0px;
}
.home-hero__card-items {
  display: flex;
  gap: 4px;
}
.home-hero__card-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px 10px 8px;
  opacity: 0.8;
  transition: opacity 200ms;
  overflow: hidden;
}
.home-hero__card:hover .home-hero__card-item {
  opacity: 1;
}
.home-hero__card-item-title {
  font-family: Scandia;
  font-weight: 500;
  font-size: 18px;
}
.home-hero__card-item-description {
  font-weight: 300;
  font-size: 14px;
  color: var(--white-60);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 4px;
}
.home-hero__card-description {
  display: -webkit-box;
  font-weight: 300;
  font-size: 14px;
  color: var(--white-30);
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 200ms;
  overflow: hidden;
  margin: auto 0px 0px;
}
.home-hero__card:hover .home-hero__card-description {
  color: var(--white-80);
}

.home-capabilities-section {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 40px 0px 0px;
}
.home-capabilities-section__title {
  font-family: Scandia;
  font-weight: 400;
  font-size: 40px;
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .home-capabilities-section__title {
    font-size: 56px;
    padding: 0px 60px;
  }
}
.home-capabilities-section__cards {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding: 40px 20px;
}
.home-capabilities-section__cards::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .home-capabilities-section__cards {
    padding: 60px;
  }
}

.home-capability-card {
  width: 432px;
  height: 558px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 12px;
  padding: 30px 30px 26px;
  transition: all 200ms;
  overflow: hidden;
}
.home-capability-card:hover {
  box-shadow: 0px 4px 60px 0px var(--shadow-color-10);
}
.home-capability-card__background {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, rgba(27, 38, 53, 0.2) 0%, var(--background-color-80) 80%), var(--bg-image);
  z-index: -1;
  transition: all 200ms;
}
.home-capability-card:hover .home-capability-card__background {
  filter: blur(5px);
}
.home-capability-card__title {
  font-family: Scandia;
  font-weight: 400;
  font-size: 38px;
}
.home-capability-card__description {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  margin-top: 10px;
}
.home-capability-card__button {
  height: 0px;
  transition: all 200ms;
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}
.home-capability-card:hover .home-capability-card__button {
  display: block;
  height: 48px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 26px;
}

.home-our-team-section {
  padding: 40px 0px;
}
@media (min-width: 768px) {
  .home-our-team-section {
    padding: 60px 0px;
  }
}
.home-our-team-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-align: center;
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .home-our-team-section__title {
    font-size: 56px;
    padding: 0px 60px;
  }
}
.home-our-team-section__description {
  max-width: 780px;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: var(--white-80);
  padding: 0px 40px;
  margin: 20px auto 0px;
}
@media (min-width: 768px) {
  .home-our-team-section__description {
    padding: 0px 60px;
  }
}
.home-our-team-section__members {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 60px;
  padding: 0px 20px;
}

.home-call-to-action-section__content {
  max-width: 540px;
}

.appian-hero__background {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/appian-hero-background.png");
}

.appian-capabilities-section {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 440px));
  justify-content: center;
  gap: 12px;
  padding: 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .appian-capabilities-section {
    grid-template-columns: repeat(auto-fit, minmax(432px, 480px));
    padding: 60px;
  }
}

.appian-industries-section {
  max-width: var(--max-width);
  padding: 40px 0px;
  margin: auto;
}
@media (min-width: 768px) {
  .appian-industries-section {
    padding: 60px 0px;
  }
}
.appian-industries-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-transform: capitalize;
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .appian-industries-section__title {
    font-size: 56px;
    padding: 0px 60px;
  }
}
.appian-industries-section__toolbar {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
@media (min-width: 768px) {
  .appian-industries-section__toolbar {
    gap: 40px;
    padding: 60px;
  }
}
.appian-industries-section__tabs {
  display: flex;
  border: 1px solid var(--white-30);
  border-radius: 40px;
  overflow: auto;
  padding: 6px;
}
.appian-industries-section__tab {
  background: var(--accent-color);
  box-shadow: none;
  padding: 8px 16px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .appian-industries-section__tab {
    font-size: 16px;
    padding: 12px 24px;
  }
}
.appian-industries-section__tab:not(.appian-industries-section__tab--selected) {
  color: white;
  background-color: black;
}
.appian-industries-section__nav-buttons {
  display: flex;
  gap: 2px;
}
.appian-industries-section__tab-content {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .appian-industries-section__tab-content {
    padding: 0px 60px;
  }
}
.appian-industries-section__card {
  width: 300px;
  height: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, rgba(27, 38, 53, 0.2) 0%, var(--background-color-80) 80%), var(--bg-image);
  padding: 30px 30px 26px;
  transition: all 200ms;
  overflow: hidden;
}
@media (min-width: 640px) {
  .appian-industries-section__card {
    width: 380px;
    height: 420px;
  }
}
@media (min-width: 768px) {
  .appian-industries-section__card {
    width: 432px;
    height: 444px;
  }
}
.appian-industries-section__card-title {
  font-family: Scandia;
  font-weight: 400;
  font-size: 32px;
}
@media (min-width: 768px) {
  .appian-industries-section__card-title {
    font-size: 38px;
  }
}
.appian-industries-section__card-description {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  margin-top: 10px;
}
.appian-industries-section__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-card);
  border-radius: 12px;
  padding: 40px;
  margin: 12px 20px 20px;
}
@media (min-width: 768px) {
  .appian-industries-section__contact {
    margin: 12px 60px 60px;
  }
}
.appian-industries-section__contact-details {
  max-width: 536px;
}
.appian-industries-section__contact-title {
  font-family: Scandia;
  font-size: 38px;
  text-align: center;
}
.appian-industries-section__contact-description {
  font-weight: 300;
  text-align: center;
  color: var(--white-80);
  margin-top: 24px;
}
.appian-industries-section__contact-button {
  width: fit-content;
  margin-top: 38px;
}

.blueblade-hero__background {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/blueblade-hero-background.png");
}
@media (min-width: 1024px) {
  .blueblade-hero__info .hero-section__title {
    font-size: 54px;
  }
}

.how-we-work-hero__background {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/how-we-work-hero-background.png");
}

.how-we-work-services-section {
  max-width: var(--max-width);
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .how-we-work-services-section {
    padding: 60px;
    margin: auto;
  }
}
.how-we-work-services-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .how-we-work-services-section__title {
    font-size: 56px;
  }
}
.how-we-work-services-section__subtitle {
  color: var(--white-80);
  font-family: Scandia;
  font-size: 26px;
  margin-top: 8px;
}
.how-we-work-services-section__services {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .how-we-work-services-section__services {
    margin-top: 60px;
  }
}

.how-we-work-service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  transition: opacity 400ms;
  margin: 60px 0px;
}
.how-we-work-service:hover {
  opacity: 1;
}
@media (min-width: 1024px) {
  .how-we-work-service {
    flex-flow: row;
  }
}
.how-we-work-service__info {
  flex: 1;
}
@media (min-width: 1024px) {
  .how-we-work-service__info {
    max-width: 624px;
  }
}
.how-we-work-service__title {
  font-family: Scandia;
  font-size: 38px;
}
.how-we-work-service__description {
  color: var(--white-80);
  font-weight: 300;
  font-size: 16px;
  margin-top: 20px;
}
.how-we-work-service__button {
  width: 100%;
}
@media (min-width: 640px) {
  .how-we-work-service__button {
    width: auto;
  }
}
.how-we-work-service__list {
  display: block;
  padding: 0px;
  margin: 30px 0px;
}
.how-we-work-service__item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0px;
}
.how-we-work-service__item-title {
  color: var(--white-80);
  font-weight: 500;
}
.how-we-work-service__image {
  display: block;
  flex: 1 1;
  width: 100%;
  min-width: 0px;
  border-radius: 12px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .how-we-work-service__image {
    max-width: 556px;
  }
}

.poppy-hero__background {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/poppy-hero-background.png");
}

.case-studies-hero__background {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/case-studies-hero-background.png");
  background-size: cover;
}

.case-studies-section {
  max-width: var(--max-width);
  padding: 40px 0px;
  margin: auto;
}
@media (min-width: 768px) {
  .case-studies-section {
    padding: 60px 0px;
  }
}
.case-studies-section__toolbar {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-top: 0px;
}
@media (min-width: 768px) {
  .case-studies-section__toolbar {
    gap: 40px;
    padding: 60px;
    padding-top: 0px;
  }
}
.case-studies-section__nav-buttons {
  display: flex;
  gap: 2px;
}
.case-studies-section__slider {
  position: relative;
  flex: 1;
  display: grid;
  overflow: hidden;
}
.case-studies-section__slide {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  flex-flow: row wrap;
  gap: 32px;
  overflow: auto;
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .case-studies-section__slide {
    padding: 0px 60px;
  }
}
.case-studies-section__case-study {
  min-width: 280px;
  flex: 1;
}
.case-studies-section__divider {
  width: 100%;
  height: 1px;
  background-color: var(--white-10);
}
@media (min-width: 665px) {
  .case-studies-section__divider {
    width: 1px;
    height: 100%;
  }
}
.case-studies-section__indicators {
  margin-top: 60px;
}

.about-hero__background {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/about-hero-background.png");
}

.about-team-section {
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .about-team-section {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .about-team-section {
    flex-direction: row;
  }
}
.about-team-section__info {
  flex: 1;
}
@media (min-width: 1024px) {
  .about-team-section__info {
    max-width: 720px;
  }
}
.about-team-section__title {
  font-family: Scandia;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-team-section__title {
    font-size: 56px;
  }
}
.about-team-section__description {
  font-weight: 300;
  font-size: 16px;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .about-team-section__description {
    padding-right: 88px;
  }
}
.about-team-section__items {
  display: flex;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .about-team-section__items {
    margin-top: 50px;
  }
}
.about-team-section__item-column {
  flex: 1;
}
.about-team-section__item-column-dividers {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0px 24px;
}
.about-team-section__item {
  flex: 1;
}
.about-team-section__item-value {
  font-family: Scandia;
  font-weight: 400;
  font-size: 38px;
}
.about-team-section__item-title {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-60);
  margin-top: 12px;
}
.about-team-section__item-vertical-divider {
  flex: 1;
  width: 1px;
  background-color: var(--white-10);
}
.about-team-section__item-horizontal-divider {
  height: 1px;
  background-color: var(--white-10);
  margin: 24px 0px;
}
.about-team-section__image {
  min-width: 0px;
  width: 100%;
  flex: 1;
}
@media (min-width: 1024px) {
  .about-team-section__image {
    width: 556px;
  }
}

.about__info-section {
  flex-flow: column-reverse;
}
@media (min-width: 1024px) {
  .about__info-section {
    flex-flow: row wrap;
  }
}

.about-board-of-directors-section {
  max-width: var(--max-width);
  padding: 40px 0px;
  margin: auto;
}
@media (min-width: 768px) {
  .about-board-of-directors-section {
    padding: 60px 0px;
  }
}
.about-board-of-directors-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-transform: capitalize;
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .about-board-of-directors-section__title {
    font-size: 56px;
    padding: 0px 60px;
  }
}
.about-board-of-directors-section__cards {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding: 0px 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .about-board-of-directors-section__cards {
    padding: 0px 60px;
    margin-top: 60px;
  }
}

.about-team-members-section {
  max-width: var(--max-width);
  padding: 40px 0px;
  margin: auto;
}
@media (min-width: 768px) {
  .about-team-members-section {
    padding: 60px 0px;
  }
}
.about-team-members-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-transform: capitalize;
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .about-team-members-section__title {
    font-size: 56px;
    padding: 0px 60px;
  }
}
.about-team-members-section__cards {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 460px));
  justify-content: center;
  justify-items: center;
  gap: 12px;
  overflow: auto;
  padding: 0px 20px;
  margin: auto;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .about-team-members-section__cards {
    padding: 0px 60px;
    margin-top: 60px;
  }
}
.about-team-members-section__card {
  width: 100%;
  max-width: 460px;
}
.about-team-members-section__card-image {
  width: 100%;
  height: auto;
}

.careers-hero__background {
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/careers-hero-background.png");
}

.careers-jobs-section {
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .careers-jobs-section {
    gap: 60px;
    flex-direction: row;
    padding: 60px;
  }
}
.careers-jobs-section__cards {
  flex: 1;
}
.careers-jobs-section__details {
  flex: 1;
}
.careers-jobs-section__card {
  cursor: pointer;
  border: 1px solid transparent;
  padding: 16px;
  margin: 30px 0px;
}
.careers-jobs-section__card:first-of-type {
  margin-top: 0px;
}
.careers-jobs-section__card[data-selected=true] {
  border: 1px solid var(--white-10);
  border-radius: 12px;
  background: var(--background-card);
}
@media (min-width: 768px) {
  .careers-jobs-section__card {
    padding: 24px;
  }
}
.careers-jobs-section__card-department {
  width: fit-content;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--background-color);
  border-radius: 20px;
  padding: 8px 16px;
  background: var(--accent-color);
}
.careers-jobs-section__card-title {
  font-family: Scandia;
  font-size: 26px;
}
.careers-jobs-section__card-description {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  margin-top: 12px;
}
.careers-jobs-section__card-footer {
  display: flex;
  flex-flow: row wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}
.careers-jobs-section__card-items {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
}
.careers-jobs-section__card-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.careers-jobs-section__card-item-title {
  font-weight: 300;
  font-size: 14px;
}
.careers-jobs-section__details-title {
  font-family: Scandia;
  font-size: 38px;
  margin-bottom: 20px;
}
.careers-jobs-section__details-button {
  width: 100%;
  margin-top: 36px;
}
@media (min-width: 640px) {
  .careers-jobs-section__details-button {
    width: auto;
  }
}

.careers-core-values-section {
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .careers-core-values-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    padding: 60px;
  }
}
.careers-core-values-section__image-container {
  flex-shrink: 2;
}
.careers-core-values-section__image {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.careers-core-values-section__info {
  flex: 2;
  max-width: 628px;
  min-width: 300px;
}
.careers-core-values-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .careers-core-values-section__title {
    font-size: 56px;
  }
}
.careers-core-values-section__items {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
}
.careers-core-values-section__item {
  border-left: 2px solid transparent;
  padding: 0px 32px;
}
.careers-core-values-section__item:focus {
  border-color: var(--accent-color);
}
.careers-core-values-section__item-title {
  font-family: Scandia;
  font-size: 26px;
  color: var(--white-50);
  cursor: pointer;
}
.careers-core-values-section__item-title:hover {
  color: white;
}
.careers-core-values-section__item:focus .careers-core-values-section__item-title {
  color: white;
}
.careers-core-values-section__item-description {
  max-height: 0px;
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  transition: max-height 200ms ease;
  overflow: auto;
  margin-top: 10px;
}
.careers-core-values-section__item:focus .careers-core-values-section__item-description {
  transition: max-height 800ms 100ms ease-out;
  max-height: 200px;
}
.careers-core-values-section__button {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .careers-core-values-section__button {
    width: auto;
  }
}

.careers-call-to-action-section__background {
  background-image: linear-gradient(to top, var(--background-color), transparent 40%), url("/assets//images/careers-cta-background.png");
}
.careers-call-to-action-section__content {
  max-width: 540px;
}

.faqs-faq-section {
  max-width: var(--max-width);
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .faqs-faq-section {
    padding: 60px;
  }
}
.faqs-faq-section__details {
  min-width: 260px;
  flex: 1;
}
.faqs-faq-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .faqs-faq-section__title {
    font-size: 56px;
  }
}
.faqs-faq-section__categories {
  width: 100%;
  max-width: 380px;
  margin-top: 40px;
}
.faqs-faq-section__category {
  display: block;
  width: 100%;
  text-align: left;
  font-family: Scandia;
  font-size: 26px;
  color: var(--white-30);
  background-color: transparent;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid var(--white-10);
  padding: 20px 0px;
}
.faqs-faq-section__category:last-of-type {
  border-bottom: none;
}
.faqs-faq-section__category[data-selected=true] {
  color: var(--accent-color);
}
.faqs-faq-section__items {
  width: 780px;
  background: var(--background-card);
  border-radius: 12px;
  border: 1px solid var(--white-10);
  padding: 30px 30px 26px;
}
.faqs-faq-section__item {
  padding: 26px 0px;
  border-bottom: 1px solid var(--white-10);
}
.faqs-faq-section__item:first-of-type {
  padding-top: 0px;
}
.faqs-faq-section__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}
.faqs-faq-section__item-toolbar {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faqs-faq-section__item-icon {
  flex-shrink: 0;
}
.faqs-faq-section__item-question {
  font-family: Scandia;
  font-weight: 400;
  font-size: 20px;
}
@media (min-width: 768px) {
  .faqs-faq-section__item-question {
    font-size: 22px;
  }
}
.faqs-faq-section__item-answer {
  display: none;
  color: var(--white-80);
  font-weight: 300;
  padding-right: 40px;
  margin-top: 14px;
}

.faqs-call-to-action-section__content {
  max-width: 540px;
}

.contact-us-form-section {
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .contact-us-form-section {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .contact-us-form-section {
    flex-direction: row;
  }
}
.contact-us-form-section__info {
  flex: 1;
  max-width: 540px;
}
.contact-us-form-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .contact-us-form-section__title {
    font-size: 56px;
  }
}
.contact-us-form-section__description {
  font-weight: 300;
  color: var(--white-80);
  margin-top: 20px;
}
.contact-us-form-section__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px;
  margin-top: 30px;
}
.contact-us-form-section__item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-us-form-section__item-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--white-80);
}
.contact-us-form-section__form {
  flex: 1;
  max-width: 640px;
  background: var(--background-card);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 20px;
}
@media (min-width: 768px) {
  .contact-us-form-section__form {
    padding: 30px;
  }
}
.contact-us-form-section__row {
  display: flex;
  flex-flow: row wrap;
  gap: 18px;
}
.contact-us-form-section__row:not(:first-of-type) {
  margin-top: 24px;
}
.contact-us-form-section__field {
  flex: 1;
  min-width: 160px;
}
.contact-us-form-section__label {
  display: block;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
}
.contact-us-form-section__field:focus-within .contact-us-form-section__label {
  color: var(--accent-color);
}
.contact-us-form-section__input, .contact-us-form-section__textarea {
  width: 100%;
  color: white;
  font-size: 16px;
  font-family: "Poppins";
  background-color: transparent;
  padding: 16px 20px;
  border-radius: 28px;
  border: 1.5px solid var(--white-10);
  margin-top: 8px;
}
.contact-us-form-section__input:focus, .contact-us-form-section__input:focus-visible, .contact-us-form-section__textarea:focus, .contact-us-form-section__textarea:focus-visible {
  border: 1.5px solid var(--accent-color);
  outline: none;
}
.contact-us-form-section__input::placeholder, .contact-us-form-section__textarea::placeholder {
  color: var(--white-60);
  font-weight: 300;
}
.contact-us-form-section__textarea {
  display: block;
  width: 100%;
  resize: none;
  border-radius: 22px;
}
.contact-us-form-section__form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.contact-us-form-section__form-error {
  display: none;
  color: var(--error-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error-color);
  border-radius: 12px;
  padding: 12px 16px;
}
.contact-us-form-section__checkbox {
  font-weight: 300;
  font-size: 14px;
  vertical-align: middle;
  background-color: transparent;
}
.contact-us-form-section__form-button {
  width: 100%;
  background-color: transparent;
  border: none;
  align-self: flex-end;
}
@media (min-width: 640px) {
  .contact-us-form-section__form-button {
    width: auto;
  }
}
.contact-us-form-section__button {
  width: 100%;
}
@media (min-width: 640px) {
  .contact-us-form-section__button {
    width: auto;
  }
}
.contact-us-form-section__error-message {
  display: none;
  color: var(--error-color);
  font-size: 12px;
  font-weight: 300;
  margin-top: 8px;
  padding-left: 4px;
}
.contact-us-form-section__input.error-field, .contact-us-form-section__textarea.error-field {
  border-color: var(--error-color);
}
.contact-us-form-section__success-message {
  display: none;
  flex: 1;
  max-width: 640px;
  align-self: flex-start;
  background: var(--background-card);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-us-form-section__success-message {
    padding: 60px 40px;
  }
}
.contact-us-form-section__success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: scaleIn 0.5s ease-out;
}
.contact-us-form-section__success-icon svg {
  filter: drop-shadow(0 4px 12px var(--accent-color-20));
}
.contact-us-form-section__success-title {
  font-family: Scandia;
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
@media (min-width: 768px) {
  .contact-us-form-section__success-title {
    font-size: 32px;
  }
}
.contact-us-form-section__success-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
@media (min-width: 768px) {
  .contact-us-form-section__success-text {
    font-size: 18px;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.contact-us-call-to-action-section__content {
  max-width: 540px;
}

.schedule-consultation-calendar-section {
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .schedule-consultation-calendar-section {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .schedule-consultation-calendar-section {
    flex-direction: row;
  }
}
.schedule-consultation-calendar-section__info {
  flex: 1;
  max-width: 540px;
}
.schedule-consultation-calendar-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .schedule-consultation-calendar-section__title {
    font-size: 56px;
  }
}
.schedule-consultation-calendar-section__description {
  font-weight: 300;
  color: var(--white-80);
  margin-top: 20px;
}
.schedule-consultation-calendar-section__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px;
  margin-top: 30px;
}
.schedule-consultation-calendar-section__item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.schedule-consultation-calendar-section__item-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--white-80);
}
.schedule-consultation-calendar-section__calendar-iframe {
  flex: 1;
  max-width: 800px;
  min-height: 680px;
  border: none;
  border-radius: 12px;
  background-color: white;
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 20px;
}
.not-found__container {
  max-width: 600px;
  text-align: center;
}
.not-found__title {
  font-family: "Scandia";
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  background: var(--accent-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .not-found__title {
    font-size: 80px;
  }
}
.not-found__subtitle {
  font-family: "Scandia";
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--white-100);
}
@media (max-width: 768px) {
  .not-found__subtitle {
    font-size: 28px;
  }
}
.not-found__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white-70);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .not-found__description {
    font-size: 16px;
  }
}
.not-found__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .not-found__buttons {
    flex-direction: column;
    width: 100%;
  }
}
.not-found__button {
  min-width: 160px;
}
@media (max-width: 768px) {
  .not-found__button {
    width: 100%;
  }
}

.terms-section {
  max-width: var(--max-width);
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .terms-section {
    padding: 60px;
  }
}
.terms-section__title {
  font-family: Scandia;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .terms-section__title {
    font-size: 56px;
    margin-bottom: 20px;
  }
}
.terms-section__subtitle {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: var(--white-80);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .terms-section__subtitle {
    font-size: 18px;
    margin-bottom: 60px;
  }
}
.terms-section__content {
  max-width: 900px;
  margin: 0 auto;
}
.terms-section__group {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .terms-section__group {
    margin-bottom: 60px;
  }
}
.terms-section__group:last-child {
  margin-bottom: 0;
}
.terms-section__item {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .terms-section__item {
    margin-top: 28px;
  }
}
.terms-section__section-title {
  font-family: Scandia;
  font-size: 28px;
  font-weight: 400;
  color: var(--white-90);
  margin-top: 32px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .terms-section__section-title {
    font-size: 36px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.terms-section__section-title:first-child {
  margin-top: 0;
}
.terms-section__subsection-title {
  font-family: Scandia;
  font-size: 18px;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--accent-color);
}
@media (min-width: 768px) {
  .terms-section__subsection-title {
    font-size: 20px;
  }
}
.terms-section__paragraph {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white-80);
  margin-bottom: 16px;
}
.terms-section__paragraph:last-child {
  margin-bottom: 0;
}
.terms-section__divider {
  border: none;
  border-top: 1px solid var(--white-10);
  margin: 40px 0;
}
@media (min-width: 768px) {
  .terms-section__divider {
    margin: 48px 0;
  }
}

.case-study-hero-section {
  display: flex;
  gap: 40px;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-image: linear-gradient(to bottom, var(--background-color), transparent 40%), url("/assets/images/case-studies-hero-background.png");
  background-size: cover;
  padding: 80px 20px 46px;
}
@media (min-width: 768px) {
  .case-study-hero-section {
    padding: 100px 60px 46px;
  }
}
.case-study-hero-section__title {
  font-family: Scandia;
  font-size: 52px;
  text-transform: capitalize;
}
@media (min-width: 1024px) {
  .case-study-hero-section__title {
    font-size: 68px;
  }
}
.case-study-hero-section__items {
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  margin-top: 30px;
}
.case-study-hero-section__item-title {
  font-family: Scandia;
  font-size: 22px;
}
.case-study-hero-section__item-value {
  font-weight: 300;
  color: var(--white-80);
  margin-top: 8px;
}
.case-study-hero-section__divider {
  width: 1px;
  display: none;
  background-color: var(--white-10);
}
@media (min-width: 636px) {
  .case-study-hero-section__divider {
    display: block;
  }
}

.case-study-details-section {
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 40px 20px;
  margin: auto;
}
@media (min-width: 768px) {
  .case-study-details-section {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .case-study-details-section {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .case-study-details-section--revert {
    flex-flow: row-reverse;
  }
}
.case-study-details-section__details {
  flex: 1;
}
@media (min-width: 1024px) {
  .case-study-details-section__details {
    min-width: 400px;
    max-width: 720px;
  }
}
.case-study-details-section__title {
  font-family: Scandia;
  font-size: 40px;
}
@media (min-width: 768px) {
  .case-study-details-section__title {
    font-size: 56px;
  }
}
.case-study-details-section p {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
  margin-top: 20px;
}
.case-study-details-section__list-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--white-80);
  margin-top: 30px;
}
.case-study-details-section__list {
  display: block;
  padding: 0px;
}
.case-study-details-section__item {
  display: flex;
  gap: 12px;
  margin: 12px 0px;
}
.case-study-details-section__item-bullet {
  margin-top: 8px;
}
.case-study-details-section__item-title {
  font-weight: 300;
  font-size: 16px;
  color: var(--white-80);
}
.case-study-details-section__image {
  display: block;
  flex: 1;
  width: 100%;
  min-width: 0px;
  border-radius: 12px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .case-study-details-section__image {
    flex-shrink: 1;
    max-width: 556px;
    max-height: 464px;
  }
}

.career-section {
  max-width: var(--max-width);
  margin: auto;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .career-section {
    padding: 60px;
  }
}
.career-section__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 60px;
}
@media (min-width: 1024px) {
  .career-section__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.career-section__info {
  flex: 1;
}
@media (min-width: 1024px) {
  .career-section__info {
    max-width: 640px;
  }
}
.career-section__title {
  font-family: Scandia;
  font-size: 40px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .career-section__title {
    font-size: 56px;
  }
}
.career-section__meta {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
  margin-top: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--white-10);
}
.career-section__meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-section__meta-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 1px;
}
.career-section__meta-value {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-80);
}
.career-section__divider {
  width: 1px;
  background-color: var(--white-10);
  visibility: hidden;
}
@media (min-width: 430px) {
  .career-section__divider {
    visibility: visible;
  }
}
.career-section__subtitle {
  font-family: Scandia;
  font-size: 28px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .career-section__subtitle {
    font-size: 32px;
  }
}
.career-section__summary {
  font-size: 18px;
  font-weight: 300;
  color: var(--white-80);
  margin-top: 16px;
  line-height: 1.6;
}
.career-section__form {
  flex: 1;
  width: 100%;
  max-width: 640px;
  background: var(--background-card);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 20px;
}
@media (min-width: 1024px) {
  .career-section__form {
    padding: 30px;
  }
}
.career-section__form-title {
  font-family: Scandia;
  font-size: 24px;
  margin-bottom: 32px;
}
.career-section__form-row {
  display: flex;
  flex-flow: row wrap;
  gap: 18px;
}
.career-section__form-row:not(:first-of-type) {
  margin-top: 24px;
}
.career-section__form-field {
  flex: 1;
  min-width: 160px;
}
.career-section__form-label {
  display: block;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
}
.career-section__form-field:focus-within .career-section__form-label {
  color: var(--accent-color);
}
.career-section__form-input, .career-section__form-textarea, .career-section__form-file {
  width: 100%;
  color: white;
  font-size: 16px;
  font-family: "Poppins";
  background-color: transparent;
  padding: 16px 20px;
  border-radius: 28px;
  border: 1.5px solid var(--white-10);
  margin-top: 8px;
}
.career-section__form-input:focus, .career-section__form-input:focus-visible, .career-section__form-textarea:focus, .career-section__form-textarea:focus-visible, .career-section__form-file:focus, .career-section__form-file:focus-visible {
  border-color: var(--accent-color);
  outline: none;
}
.career-section__form-input::placeholder, .career-section__form-textarea::placeholder, .career-section__form-file::placeholder {
  color: var(--white-60);
  font-weight: 300;
}
.career-section__form-input.error-field, .career-section__form-textarea.error-field, .career-section__form-file.error-field {
  border-color: var(--error-color);
}
.career-section__form-textarea {
  resize: vertical;
  border-radius: 22px;
  min-height: 100px;
}
.career-section__form-file {
  padding: 12px 20px;
  cursor: pointer;
  color: var(--white-90);
  font-size: 14px;
}
.career-section__form-file::file-selector-button {
  padding: 8px 16px;
  margin-right: 12px;
  background: var(--accent-color-20);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.career-section__form-file::file-selector-button:hover {
  background: var(--accent-color-30);
}
.career-section__form-checkbox {
  font-weight: 300;
  font-size: 14px;
  vertical-align: middle;
  background-color: transparent;
}
.career-section__form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.career-section__form-error {
  display: none;
  color: var(--error-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error-color);
  border-radius: 8px;
  padding: 12px 16px;
}
.career-section__form-button {
  width: 100%;
  background-color: transparent;
  border: none;
  margin-left: auto;
}
@media (min-width: 640px) {
  .career-section__form-button {
    width: auto;
  }
}
.career-section__button {
  width: 100%;
}
@media (min-width: 640px) {
  .career-section__button {
    width: auto;
  }
}
.career-section__error-message {
  display: none;
  color: var(--error-color);
  font-size: 12px;
  font-weight: 300;
  margin-top: 8px;
  padding-left: 4px;
}
.career-section__success-message {
  display: none;
  flex: 1;
  max-width: 640px;
  align-self: flex-start;
  background: var(--background-card);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .career-section__success-message {
    padding: 60px 40px;
  }
}
.career-section__success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: scaleIn 0.5s ease-out;
}
.career-section__success-icon svg {
  filter: drop-shadow(0 4px 12px var(--accent-color-20));
}
.career-section__success-title {
  font-family: Scandia;
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
@media (min-width: 768px) {
  .career-section__success-title {
    font-size: 32px;
  }
}
.career-section__success-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-90);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
@media (min-width: 768px) {
  .career-section__success-text {
    font-size: 18px;
  }
}
.career-section__success-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-90);
  margin-bottom: 16px;
  text-align: left;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
@media (min-width: 768px) {
  .career-section__success-subtitle {
    font-size: 20px;
  }
}
.career-section__success-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}
.career-section__success-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 300;
  color: var(--white-90);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .career-section__success-list li {
    font-size: 16px;
  }
}
.career-section__success-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}
.career-section__success-list li:last-child {
  margin-bottom: 0;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
:root {
  --accent-color: rgb(165, 180, 247);
  --accent-color-10: rgb(165 180 247 / 0.1);
  --accent-color-20: rgb(165 180 247 / 0.2);
  --accent-color-30: rgb(165 180 247 / 0.3);
  --accent-color-40: rgb(165 180 247 / 0.4);
  --accent-color-50: rgb(165 180 247 / 0.5);
  --accent-color-60: rgb(165 180 247 / 0.6);
  --accent-color-70: rgb(165 180 247 / 0.7);
  --accent-color-80: rgb(165 180 247 / 0.8);
  --accent-color-90: rgb(165 180 247 / 0.9);
  --accent-color-100: rgb(165 180 247 / 1);
  --error-color: rgb(255, 152, 152);
  --white: rgb(255 255 255);
  --white-10: rgb(255 255 255 / 0.1);
  --white-20: rgb(255 255 255 / 0.2);
  --white-30: rgb(255 255 255 / 0.3);
  --white-40: rgb(255 255 255 / 0.4);
  --white-50: rgb(255 255 255 / 0.5);
  --white-60: rgb(255 255 255 / 0.6);
  --white-70: rgb(255 255 255 / 0.7);
  --white-80: rgb(255 255 255 / 0.8);
  --white-90: rgb(255 255 255 / 0.9);
  --white-100: rgb(255 255 255 / 1);
  --background-color: rgb(4 7 12);
  --background-color-10: rgb(4 7 12 / 0.1);
  --background-color-20: rgb(4 7 12 / 0.2);
  --background-color-30: rgb(4 7 12 / 0.3);
  --background-color-40: rgb(4 7 12 / 0.4);
  --background-color-50: rgb(4 7 12 / 0.5);
  --background-color-60: rgb(4 7 12 / 0.6);
  --background-color-70: rgb(4 7 12 / 0.7);
  --background-color-80: rgb(4 7 12 / 0.8);
  --background-color-90: rgb(4 7 12 / 0.9);
  --background-color-100: rgb(4 7 12 / 1);
  --background-card: rgb(19 22 26 / 0.6);
  --shadow-color-10: rgb(183 219 247 / 0.1);
  --shadow-color-30: rgb(183 219 247 / 0.3);
  --max-width: 1600px;
}

body {
  color: white;
  font-family: "Poppins";
  background: var(--background-color);
  padding: 0px;
  margin: 0px;
}

a, svg, button {
  color: white;
}

* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--white-10);
  background-clip: padding-box;
  border: 6px solid transparent;
  border-radius: 12px;
  transition: background 200ms ease;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--white-20);
}

h1, h2, h3, h4, h5, p {
  font-weight: normal;
  margin: 0px;
}

/*# sourceMappingURL=styles.css.map */