* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 150px 0 0;
  background-color: #000;
  font-family: "Philosopher", sans-serif;
}
body.no-gap {
  margin-top: 0;
}

h1, h2, h3 {
  font-weight: normal;
}

main {
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

button {
  border: none;
  background-color: inherit;
  padding: 0;
  margin: 0;
  font-family: "Philosopher", sans-serif;
}

@media screen and (min-width: 750px) {
  section {
    padding: 60px 40px 100px;
  }
}
.logo sup {
  color: #dbba00;
  font-size: 0.75em;
}

.d-none {
  display: none;
}

.underlined {
  padding-bottom: 15px;
  border-bottom: 3px solid #dbba00;
}
.underlined--thin {
  padding-bottom: 0;
  border-width: 1px;
}

.text-align-center {
  text-align: center;
}

.gold {
  color: #dbba00 !important;
}

.black {
  color: #000;
  text-shadow: 0 0 10px #777777;
}

.gray {
  color: #777777;
}

.white {
  color: #fff;
}

.shadow {
  text-shadow: 0 0 10px black;
}

.fancy-underline {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.fancy-underline:hover {
  transform: translateY(-4px);
}
.fancy-underline::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  height: 0.5rem;
  left: -0.25rem;
  right: -0.25rem;
  background-image: url("/images/underline.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.linked-section {
  padding-top: 100px;
}

.full-bleed {
  padding: 0;
  margin: 0;
}

.bottom-fade {
  position: relative;
  padding-bottom: 60px;
}
.bottom-fade::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  background: linear-gradient(transparent, #000);
}

.fade-in {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.jagged-top {
  padding-top: 150px;
  color: white;
  background-color: rgba(0, 0, 0, 0.75);
}

.icon {
  fill: #fff;
  stroke: #fff;
}
.icon--gold {
  fill: #dbba00;
  stroke: #dbba00;
}

.background-window {
  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid #dbba00;
  padding: 30px 20px;
  margin: 30px 0 60px;
  max-width: 500px;
}

.mtn-background {
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 30px black;
}
.mtn-background--gap {
  padding-top: 150px;
}

.bg--gray {
  background: linear-gradient(#000, #5b5b5b);
}

.spacer5-block {
  margin-block: 20px;
}

.btn {
  padding: 15px 20px;
  background-color: #dbba00;
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
  width: 100%;
  min-width: 100px;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
  text-align: center;
  border: 3px solid #dbba00;
  transition: background-color 0.3s, border 0.3s;
  z-index: 1;
}
.btn--secondary {
  background-color: #fff;
}
.btn--success {
  background-color: #00b000;
}
.btn--error {
  background-color: #a40000;
  color: #fff;
}
.btn--inline {
  width: auto;
  flex: 1 0 auto;
}
.btn:hover, .btn:focus {
  border-color: #fff;
}
.btn__container {
  margin-bottom: 60px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.fade-in-wiggle {
  animation-name: fadeInWiggle;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 750px) {
  .text-align-left-m {
    text-align: left;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInWiggle {
  0% {
    padding: 0;
    transform: scale(0.5) translateY(30px) rotate(5deg);
  }
  2% {
    transform: scale(0.5) rotate(-5deg);
  }
  4% {
    transform: scale(0.5) translateY(0) rotate(5deg);
  }
  6% {
    transform: scale(0.5) rotate(-5deg);
  }
  8% {
    transform: scale(0.5) rotate(5deg);
  }
  10% {
    transform: scale(0.5) rotate(-5deg);
  }
  12% {
    transform: scale(0.5) rotate(0deg);
  }
  25% {
    background-color: rgba(0, 0, 0, 0.85);
    transform: scale(1) rotate(0deg);
    background-color: transparent;
    border-color: transparent;
  }
  40% {
    padding: 0;
    transform: scale(1);
  }
  80% {
    border-color: transparent;
  }
  100% {
    background-color: transparent;
    border-color: transparent;
    padding: 0;
  }
}
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-height: 150px;
}
.nav:has(.open) {
  max-height: none;
}
.nav__essentials {
  position: relative;
  padding: 15px 15px 0;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  z-index: 1;
}
.nav__essentials::after {
  content: "";
  bottom: -15px;
  height: 20px;
  left: 0;
  right: 25%;
  position: absolute;
  background: linear-gradient(#fff, transparent);
}
.nav__list {
  padding: 15px 15px 30px;
  gap: 15px;
  justify-content: space-between;
  align-items: baseline;
  display: flex;
  min-height: 100px;
  flex-direction: column;
  background-color: #fff;
  transform: translateY(-85%);
  transition: transform 0.5s;
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 0 100%);
}
.nav__list.open {
  transform: translateY(-1%);
  height: auto;
}
.nav__list.open .nav__link {
  opacity: 1;
}
.nav li {
  min-height: 20px;
}
.nav__link {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  transition: opacity 0.5s;
}
.nav__link--page {
  opacity: 0;
}
.nav .hamburger {
  width: 30px;
  height: 30px;
  align-self: flex-end;
  cursor: pointer;
}
.nav .logo {
  font-size: 32px;
}
.nav .logo sup {
  color: #dbba00;
}

@media screen and (min-width: 750px) {
  .nav {
    flex-direction: row;
    padding: 20px 20px;
    clip-path: polygon(0 0, 100% 0%, 100% 70%, 0 100%);
    background-color: #fff;
    gap: 20px;
    max-height: initial;
  }
  .nav__essentials {
    padding: 0;
  }
  .nav__essentials::after {
    content: none;
  }
  .nav__list {
    transform: none;
    gap: 30px;
    justify-content: flex-start;
    flex-direction: row;
    padding: 10px 15px 20px;
    min-height: initial;
  }
  .nav__link {
    flex-grow: 1;
    display: initial !important;
    clip-path: initial;
  }
  .nav__link--page {
    opacity: 1;
  }
  .hamburger-btn {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .nav {
    gap: 40px;
  }
  .nav .logo {
    font-size: 40px;
  }
  .nav__link {
    font-size: 20px;
  }
}
.container {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: 1fr;
  row-gap: 60px;
  margin-bottom: 15px;
  padding-inline: 15px;
  color: white;
}
.container--no-space {
  padding-block: 0;
}
.container--no-space-bottom {
  padding-bottom: 0;
}
.container--no-space-top {
  padding-top: 0;
}
.container--flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container--medium {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.container--flush {
  row-gap: 0;
}
.container--flush .container__col {
  padding-block: 0;
}
.container__col {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
}
.container__col--slim {
  padding: 0;
}

@media screen and (min-width: 750px) {
  .container:not(.no-gap) {
    margin-bottom: 80px;
  }
  .container--flex {
    flex-direction: row;
    gap: 3%;
  }
  .container--medium {
    width: 80%;
  }
  .container--2col {
    gap: 5%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "left right";
  }
  .container--3col {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "left center right";
    justify-items: center;
    justify-content: center;
  }
}
.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.content--bordered {
  border-top: 3px solid #dbba00;
  border-bottom: 3px solid #dbba00;
}
.content--centered {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
.content__col {
  display: flex;
  align-items: center;
  width: 100%;
}
.content__col--2col-m {
  gap: 20px;
}
.content__h0 {
  font-size: 40px;
  line-height: 1.5;
}
.content__h1 {
  font-size: 32px;
}
.content__h2 {
  font-size: 24px;
}
.content__copy {
  font-size: 20px;
  line-height: 1.5;
  width: 100%;
}
.content__copy--centered {
  text-align: center;
}
.content__copy--skinny {
  max-width: 650px;
}
.content__disclosure {
  font-size: 12px;
}
.content__tag {
  font-size: 16px;
  line-height: 1.5;
}
.content__list {
  text-align: left;
  list-style-type: disc;
  padding-left: 20px;
  align-self: flex-start;
}
.content__list--bordered {
  border: 3px solid #dbba00;
}
.content__ul {
  margin-bottom: 30px;
}
.content__li {
  margin-bottom: 20px;
  font-size: 20px;
}
.content__icon {
  height: 60px;
  width: 60px;
  transition: fill 0.3s, stroke 0.3s, transform 0.3s;
}
.content__icon:hover {
  transform: scale(1.2);
  fill: #dbba00;
  stroke: #dbba00;
}

@media screen and (min-width: 750px) {
  .content--centered {
    width: 80%;
  }
  .content__col--2col-m {
    align-items: center;
    flex-direction: column;
  }
  .content__h0 {
    font-size: 60px;
  }
  .content__h1 {
    font-size: 40px;
  }
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: border 0.3s;
  margin-top: 40px;
}
.card--bordered {
  border-radius: 10px;
  border: 3px solid #dbba00;
}
.card--flex {
  width: 100%;
}
.card__header {
  width: 100%;
  margin: 15px 30px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.card__subheader {
  width: 100%;
  margin: 0 15px;
  align-self: flex-start;
}
.card__header-text {
  margin-block: 5px;
}
.card__list {
  flex-grow: 1;
  width: 100%;
  padding-inline: 20px;
  list-style-type: none;
}
.card__list--bullets {
  list-style-type: initial;
  margin-left: 20px;
}
.card__copy {
  padding-inline: 20px;
  margin: 10px;
  display: block;
}
.card__footer {
  color: #000;
  background-color: #dbba00;
  width: 100%;
  text-align: center;
  padding: 15px;
}
.card__footer--squared {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

@media screen and (min-width: 750px) {
  .card {
    width: 33.33%;
    max-width: 400px;
  }
  .card--flex {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .card--light {
    transform: translateY(-30px);
  }
}
.process {
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  margin-top: 30px;
}

#process {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}
#process .bg-dashed-line {
  position: absolute;
  transform: rotate(-10deg);
  opacity: 0.25;
  width: 120%;
  bottom: 7%;
  left: -5%;
}

@media screen and (min-width: 1200px) {
  #process {
    padding-bottom: 0;
  }
  #process .bg-dashed-line {
    transform: rotate(-50deg);
    width: 24%;
    bottom: 20%;
    left: -5%;
    opacity: 0.5;
  }
}
#services {
  position: relative;
  padding-bottom: 100px;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  margin-top: 30px;
}

#plans .btn {
  width: 100%;
}

.services-container .btn:not(.card__footer--squared) {
  width: auto;
  align-self: flex-start;
  margin-top: 15px;
}
.services-container h1,
.services-container h2,
.services-container h3,
.services-container .content__h1,
.services-container .content__2 {
  margin-bottom: 10px;
}
.services-container .content__copy {
  margin-top: 0;
}

@media screen and (min-width: 1200px) {
  #plans {
    max-width: none;
    margin-inline: -200px;
  }
}
.accordion.open .accordion__content {
  display: block;
}
.accordion.open .accordion__icon {
  transform-origin: center;
  transform: rotate(90deg);
}
.accordion__content {
  display: none;
  color: #c5c5c5;
  line-height: 1.5;
  font-size: 20px;
  padding-right: 30px;
}
.accordion__header {
  width: 100%;
  font-size: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.accordion__icon {
  transition: transform 0.3s;
  width: 20px;
  height: 20px;
  text-align: center;
}

.partner__content {
  max-width: 100vw;
  overflow: hidden;
}
.partner__marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  margin: 15px 0 0;
}
.partner__marquee:hover .partner__banner {
  animation-play-state: paused;
}
.partner__marquee::before, .partner__marquee:after {
  content: "";
  position: absolute;
  width: 60px;
  top: -10px;
  bottom: -10px;
  z-index: 2;
}
.partner__marquee:before {
  left: 0;
  background: linear-gradient(90deg, #000, transparent);
}
.partner__marquee:after {
  right: 0;
  background: linear-gradient(90deg, transparent, #000);
}
.partner__banner {
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-name: marqueeContent;
  animation-timing-function: linear;
}
.partner__banner img {
  width: 200px;
  margin: 0 30px;
  vertical-align: middle;
  display: inline-block;
}
.partner .btn {
  text-align: center;
  display: block;
  max-width: 200px;
  margin: 60px auto 0;
}

/**
* BOTH of the marquee items are going to be translating left at the same time.
* And, once each of them has translated to -100%, they will both snap back into
* place, making it seem as if they are continuously scrolling.
*/
@keyframes marqueeContent {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.footer {
  display: flex;
  padding: 15px 30px;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #777777;
  background-color: #000;
  align-items: center;
}
.footer__group {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.footer__icon {
  width: 24px;
}
.footer__copy {
  font-size: 12px;
  color: #fff;
}

.team {
  display: flex;
  flex-direction: column;
  gap: 100px;
  color: #fff;
}
.team__member {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.team__member:nth-of-type(2) {
  padding-block: 80px;
  border-top: 1px dashed #dbba00;
  border-bottom: 1px dashed #dbba00;
}
.team__headshot {
  aspect-ratio: 1;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  padding: 10px;
  border: 3px solid #dbba00;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-size: 90px;
}
.team__writeup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.team__title {
  color: #777777;
}
.team__name, .team__title, .team__bio {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .team__member {
    gap: 60px;
    flex-direction: row;
  }
  .team__member:nth-of-type(2) {
    border: none;
    padding: 0;
  }
  .team__headshot--connect {
    position: relative;
  }
  .team__headshot--connect::before {
    content: "";
    display: block;
    position: absolute;
    height: 50%;
    top: -60%;
    left: 50%;
    width: 0px;
    border-left: 1px dashed #dbba00;
  }
  .team__headshot--connect::after {
    content: "";
    display: block;
    position: absolute;
    height: 50%;
    bottom: -60%;
    left: 50%;
    width: 0px;
    border-left: 1px dashed #dbba00;
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  width: 100%;
}
.form__row {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: center;
}
.form__row--wrap {
  flex-direction: column;
  gap: 10px;
}
.form__label {
  width: auto;
}
.form__label--fullwidth {
  flex: 0 0 100%;
}
.form__img {
  width: 100%;
  clip-path: polygon(100% 0, 100% 96%, 64% 99%, 46% 91%, 34% 97%, 23% 86%, 15% 94%, 12% 89%, 0 100%, 0 0);
  clip-path: polygon(100% 0%, 100% 100%, 51.97% 97.32%, 42.86% 92.55%, 26.4% 97.55%, 20.25% 92.55%, 14.1% 97.55%, 9.06% 94.92%, 0% 100%, 0% 0%);
}
.form__input {
  padding: 10px;
  flex: 1 0 auto;
}
.form__textarea {
  min-height: 150px;
  padding: 10px;
}
.form__textarea::placeholder {
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
}

@media screen and (min-width: 1200px) {
  .form--compact {
    max-width: 500px;
  }
}
.why {
  color: #fff;
  display: flex;
  flex-direction: column;
}
.why__row {
  border-bottom: 1px dashed #dbba00;
  text-align: left;
  padding: 40px 0;
}

#portfolio {
  padding-bottom: 0;
}

#portfolio-page {
  background: linear-gradient(#000, #363636, #000);
}

.portfolio__grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 30px;
}
.portfolio__header {
  width: 100%;
  text-align: center;
  display: block !important;
}
.portfolio__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
.portfolio__mocks {
  position: relative;
}
.portfolio__details {
  flex: 0 0 50%;
  display: flex;
  padding: 15px 0;
  flex-direction: column;
  align-items: flex-start;
}
.portfolio__details a {
  color: #dbba00;
}
.portfolio__title {
  margin: 0 0 10px;
  padding: 5px 20px;
  font-size: 32px;
  border-left: 3px solid #dbba00;
  color: #dbba00;
}
.portfolio__title a {
  text-decoration: none;
  position: relative;
}
.portfolio__title a::after {
  transform: scale(0.25);
  display: inline-block;
  width: 20px;
  height: 20px;
  content: url(/styles/svg/external-link.svg);
  position: absolute;
  bottom: 7px;
  right: -24px;
}
.portfolio__heading {
  font-size: 20px;
  margin: 10px 0;
  color: #fff;
}
.portfolio__copy {
  color: #c5c5c5;
  margin: 0 0 30px;
}
.portfolio__desktop {
  width: 100%;
}
.portfolio__mobile {
  position: absolute;
  right: 0;
  bottom: -5%;
  width: 20%;
  transform: rotate(5deg);
}

@media screen and (min-width: 750px) {
  .portfolio__details {
    padding: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .portfolio {
    gap: 100px;
  }
  .portfolio__item {
    flex-direction: row;
  }
  .portfolio__item:not(.last) {
    margin-bottom: 100px;
  }
  .portfolio__item--reverse {
    flex-direction: row-reverse;
  }
  .portfolio__details {
    padding: 100px;
  }
  .portfolio__mobile {
    top: 40%;
  }
  #portfolio-page .portfolio__item {
    align-items: center;
  }
  #portfolio-page .portfolio__title {
    margin: 0 0 30px;
  }
  #portfolio-page .portfolio__details {
    padding: 40px;
  }
}

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