.btn-primary {
  border-radius: 200px;
  background-color: var(--dark_beige);
  color: var(--secondary);
  padding: 15px 30px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-primary:hover {
  transition: all 0.3s ease-in-out;
  color: var(--light_beige);
  background-color: var(--secondary);
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.shadow {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.title {
  color: var(--primary);
  font-size: var(--huge_text);
  line-height: 100%;
  font-weight: 600;
}

.medium-text {
  line-height: 110%;
  font-size: var(--medium_text);
}

.body-text {
  line-height: 125%;
  font-size: var(--body_text);
}

.hyperlink {
  display: flex;
  flex-direction: column;
  overflow: visible;
  color: var(--secondary);
  font-size: var(--small_text);
  font-weight: 600;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  /* Morph */
}
.hyperlink:hover {
  color: var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.hyperlink svg {
  margin-top: 8px;
  height: 22px;
  width: 60px;
  transition: 250ms all ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.hyperlink svg path {
  transition: 250ms all ease;
}
.hyperlink:hover svg path {
  d: path("M0 10L24 10M24 10L16.5 2M24 10L16.5 18");
  d: "M0 10L24 10M24 10L16.5 2M24 10L16.5 18";
}

@media screen and (max-width: 967px) {
  .right {
    height: 16px;
  }
}

.row-cta {
  background-color: var(--primary);
  color: var(--light_beige);
  padding: 80px calc(var(--page-space) + 10px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 967px) {
  .row-cta {
    padding: calc(var(--page-space) * 3);
  }
}
.row-cta .cta-text {
  font-weight: 600;
  margin-bottom: var(--page-space);
  max-width: 670px;
  text-align: center;
}
@media screen and (min-width: 1800px) {
  .row-cta .cta-text {
    max-width: 50%;
  }
}

.eyebrown {
  z-index: 1;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--small_text);
}
.eyebrown.secondary {
  color: var(--secondary);
  margin-bottom: var(--page-space);
}
@media screen and (max-width: 967px) {
  .eyebrown.secondary {
    font-size: 14px;
  }
}

.quote {
  color: var(--secondary);
  font-weight: 600;
}

.circle {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  pointer-events: none;
}
.circle.anima {
  -webkit-animation: spin 10s linear infinite alternate;
          animation: spin 10s linear infinite alternate;
}
@media screen and (min-width: 967px) {
  .circle.anima-desk {
    -webkit-animation: spin 10s linear infinite alternate;
            animation: spin 10s linear infinite alternate;
  }
}

.bubble-wrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  height: 100%;
}
.bubble-wrap svg {
  height: 100%;
  width: auto;
}

.hyperlink .icon-wrap {
  height: 20px;
  width: 22px;
  margin-right: 10px;
}
.hyperlink .icon-wrap svg {
  height: 100%;
  width: 100%;
  overflow: visible;
}

.hero {
  padding: var(--page-space);
  padding-top: calc(var(--page-space) * 4);
  position: relative;
}
@media screen and (min-width: 967px) {
  .hero {
    padding: calc(var(--page-space) * 4) calc(var(--page-space) * 2) calc(var(--page-space) * 2.25) calc(var(--page-space) * 2);
  }
}
@media screen and (min-width: 1800px) {
  .hero {
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero .title {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 967px) {
  .hero .title {
    text-align: center;
  }
}
.hero .title .title-inner {
  max-width: 850px;
  font-size: calc(var(--medium_text) - 8px);
}
@media screen and (min-width: 1800px) {
  .hero .title .title-inner {
    max-width: 60%;
  }
}
.hero .arrowed {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 40px;
  flex-direction: row;
}
@media screen and (min-width: 967px) {
  .hero .arrowed {
    margin-bottom: var(--page-space);
  }
}
.hero .arrowed svg {
  margin: 0;
  margin-right: 10px;
}

.left {
  transform: rotate(180deg);
}

.highlight {
  background-color: var(--dark_beige);
  display: flex;
  justify-content: center;
  font-size: var(--body_text);
  padding: var(--page-space);
}
@media screen and (min-width: 967px) {
  .highlight {
    padding: calc(var(--page-space) * 1.27);
  }
}
.highlight p {
  max-width: 850px;
  line-height: 125%;
}
@media screen and (min-width: 1800px) {
  .highlight p {
    max-width: 1000px;
  }
}

.main-content-wrap {
  display: flex;
  justify-content: center;
  padding: var(--page-space);
}
@media screen and (min-width: 967px) {
  .main-content-wrap {
    padding: calc(var(--page-space) * 2) 0;
  }
}

.main-content {
  font-size: var(--body_text);
  line-height: 125%;
  max-width: 850px;
}
@media screen and (min-width: 1800px) {
  .main-content {
    max-width: 1000px;
  }
}
.main-content p {
  padding-bottom: 1.5rem;
}
.main-content ul {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
}
.main-content li {
  padding-bottom: 1.5rem;
  display: grid;
}
.main-content ul li {
  counter-increment: my-awesome-counter;
}
.main-content ul li::before {
  content: counter(my-awesome-counter) ". ";
  color: var(--secondary);
  font-weight: 600;
  font-size: calc(var(--medium_text) - 8px);
  padding-bottom: 1.5rem;
}

.related {
  padding: var(--page-space) var(--page-space) calc(var(--page-space) * 3) var(--page-space);
}
@media screen and (min-width: 967px) {
  .related {
    padding: calc(var(--page-space) * 1.5) calc(var(--page-space) * 2) calc(var(--page-space) * 3) calc(var(--page-space) * 2);
  }
}
@media screen and (min-width: 1800px) {
  .related {
    width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.related .intro {
  margin-bottom: 40px;
}
@media screen and (min-width: 967px) {
  .related .intro {
    margin-bottom: var(--page-space);
  }
}
.related .related-list {
  display: grid;
  -moz-column-gap: calc(var(--page-space) * 2.5);
       column-gap: calc(var(--page-space) * 2.5);
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .related .related-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 967px) {
  .related .related-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
