@import url("https://fonts.googleapis.com/css2?family=Quicksand&family=Roboto&display=swap");
.has-text-centered {
  text-align: center;
}

.flex-centered, .tiles, .modal-header .button, .atom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.debug {
  outline: solid 1px red;
  background: rgba(255, 0, 0, 0.1);
}

.is-absolute, .is-top-right, .is-bottom-right, .is-bottom-left {
  position: absolute;
}

.is-bottom-left {
  left: 0;
  bottom: 0;
}

.is-bottom-right {
  right: 0;
  bottom: 0;
}

.is-top-right {
  right: 0;
  top: 0;
}

@media (min-width: 541px) {
  .is-visible-mobile {
    display: none !important;
  }
}
* {
  box-sizing: border-box;
}

body {
  background: #072235;
  color: white;
  margin: 0;
  font-family: sans-serif;
  min-width: 20rem;
}

.container {
  min-width: 20rem;
  max-width: 60rem;
  height: inherit;
  max-height: inherit;
  width: 100%;
  margin: 0 auto;
}

a {
  color: white;
  text-decoration: none;
}

body {
  font-family: "Roboto";
  font-size: 1.1rem;
}

h1,
h2,
h3,
h4,
h5 {
  color: #8DAE4F;
  font-family: "Quicksand";
  margin: 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.4rem;
  font-weight: 500;
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
}

h4 {
  font-size: 1.4rem;
  font-weight: 500;
}

p {
  line-height: 1.4;
}

sub {
  color: rgba(141, 174, 79, 0.7);
  font-size: 1.25rem;
}

h1 {
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-weight: 300;
}

a {
  color: rgba(141, 174, 79, 0.7);
  transition: color 0.2s;
}
a:hover {
  color: white;
}

@keyframes spin-cw {
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin-ccw {
  to {
    transform: rotate(-1turn);
  }
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-200%);
  }
}
@keyframes swing {
  from {
    transform: rotate(-60deg);
  }
  to {
    transform: rotate(60deg);
  }
}
@keyframes fadeSlideInDup {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(-5deg);
  }
  25% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes bounce {
  0% {
    transform: rotate(3deg) translateY(0);
  }
  100% {
    transform: rotate(-3deg) translateY(-40px);
  }
}
.atoms {
  position: relative;
  margin: 0 auto;
  max-width: 100vw;
  overflow: hidden;
}
.atoms:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/atoms-circle.svg") center center no-repeat;
  animation: spin-cw 60s linear infinite;
  animation-delay: -5s;
}

.atom-wrapper {
  position: absolute;
  width: 35rem;
  transform-origin: 7.5rem 7.5rem;
  display: flex;
  justify-content: flex-end;
  left: calc(50% - 7.5rem);
  top: calc(50% - 7.5rem);
  animation: spin-cw 60s linear infinite;
}
.atom-wrapper:nth-child(1) {
  animation-delay: -10s;
}
.atom-wrapper:nth-child(1) .atom {
  animation: spin-ccw 60s linear infinite;
  animation-delay: -10s;
}
.atom-wrapper:nth-child(2) {
  animation-delay: -20s;
}
.atom-wrapper:nth-child(2) .atom {
  animation: spin-ccw 60s linear infinite;
  animation-delay: -20s;
}
.atom-wrapper:nth-child(3) {
  animation-delay: -30s;
}
.atom-wrapper:nth-child(3) .atom {
  animation: spin-ccw 60s linear infinite;
  animation-delay: -30s;
}
.atom-wrapper:nth-child(4) {
  animation-delay: -40s;
}
.atom-wrapper:nth-child(4) .atom {
  animation: spin-ccw 60s linear infinite;
  animation-delay: -40s;
}
.atom-wrapper:nth-child(5) {
  animation-delay: -50s;
}
.atom-wrapper:nth-child(5) .atom {
  animation: spin-ccw 60s linear infinite;
  animation-delay: -50s;
}
.atom-wrapper:nth-child(6) {
  animation-delay: -60s;
}
.atom-wrapper:nth-child(6) .atom {
  animation: spin-ccw 60s linear infinite;
  animation-delay: -60s;
}
.atom-wrapper:nth-child(7) {
  width: unset;
  justify-content: flex-start;
  animation: none;
  transform: translateY(10px);
}

.atom {
  width: 15rem;
  height: 15rem;
  border: solid 2px #104d79;
  background: rgba(141, 174, 79, 0.85);
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}
.atom.is-static {
  pointer-events: none;
  background: rgba(16, 77, 121, 0.85);
  backdrop-filter: blur(2px);
}
.atom.is-static .atom-title {
  font-weight: 500;
}
.atom.is-active, .atom:hover {
  background: white;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}
.atom.is-active .atom-title, .atom:hover .atom-title {
  color: #8DAE4F;
}
.atom.is-active .atom-image, .atom:hover .atom-image {
  filter: invert(1);
}

.atom-text {
  display: none;
}

.atom-image {
  height: 2rem;
  width: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: -1.5rem;
  object-fit: contain;
  opacity: 0.5;
}
.atom-image.is-wide {
  width: 3rem;
}

.atom-title {
  color: white;
  text-align: center;
  font-size: 1.5rem;
}

@media (max-width: 540px) {
  .atoms {
    width: 100vw;
    height: 26rem;
  }

  .atom-wrapper {
    width: 16rem;
    transform-origin: 3.5rem 3.5rem;
    left: calc(50% - 3.5rem);
    top: calc(50% - 3.5em);
  }

  .atom {
    height: 7rem;
    width: 7rem;
  }

  .atom-title {
    font-size: 1.2rem;
  }
}
@media (min-width: 541px) {
  .atoms {
    width: 100vw;
    height: 40rem;
  }

  .atom-wrapper {
    width: 24rem;
    transform-origin: 5rem 5rem;
    left: calc(50% - 5rem);
    top: calc(50% - 5em);
  }

  .atom {
    height: 10rem;
    width: 10rem;
  }
}
@media (min-width: 993px) {
  .atoms {
    width: 55rem;
    height: 58rem;
  }

  .atom-wrapper {
    width: 34rem;
    transform-origin: 7rem 7rem;
    left: calc(50% - 7rem);
    top: calc(50% - 7em);
  }

  .atom {
    height: 14rem;
    width: 14rem;
  }
}
.button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #8DAE4F;
  border-radius: 99rem;
  transition: transform 0.2s ease, background 0.2s ease;
  color: white;
}
.button:hover {
  transform: translateY(-4px);
  background: #718b3f;
}

.bubbles {
  text-align: center;
  position: relative;
}
.bubbles .bubbles-title {
  margin-top: 4rem;
}

.bubbles-backdrop {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 2;
  display: none;
}
.bubbles-backdrop.is-active {
  display: block;
}

.bubble-group {
  margin: 2rem 0;
  position: relative;
}
.bubble-group + .bubble-group {
  margin-top: 4rem;
}
.bubble-group.has-lines:before, .bubble-group.has-lines:after {
  content: "";
  border-top: solid 1px #104d79;
  width: calc(50vw - 7rem);
  max-width: 20rem;
  height: 0;
  position: absolute;
  top: calc(2rem * 0.5);
}
.bubble-group.has-lines:before {
  right: 50%;
  margin-right: 5em;
}
.bubble-group.has-lines:after {
  left: 50%;
  margin-left: 5em;
}

.bubble-items {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.bubble-item {
  width: 200px;
  cursor: pointer;
  padding-top: 3.25rem;
  position: relative;
  z-index: 1;
}
.bubble-item.no-events {
  pointer-events: none;
}
.bubble-item .bubble-image {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  border: solid 2px #104d79;
  margin: 1rem auto;
  position: relative;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bubble-item .bubble-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0) contrast(1.1);
}
.bubble-item .bubble-image:after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 0;
  top: 0;
  border: solid 2px white;
  border-radius: 50%;
}
@media (max-width: 540px) {
  .bubble-item {
    width: calc(50% - 2rem);
  }
  .bubble-item .bubble-image {
    width: 9rem;
    height: 9rem;
  }
}
.bubble-item .bubble-title,
.bubble-item .bubble-subtitle {
  display: block;
  max-width: 90%;
  margin: 0 auto;
  transition: transform 0.2s ease;
}
.bubble-item.is-active {
  z-index: 2;
}
.bubble-item.is-active .bubble-image {
  border-width: 4px;
}
.bubble-item.is-active .bubble-title {
  transform: scale(1.1);
  color: white;
}
.bubble-item.is-active .bubble-text {
  display: block;
  color: #072235;
}
.bubble-item.is-active .bubble-arrow {
  display: block;
}
.bubble-item:hover .bubble-image {
  transform: translateY(-3px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}
.bubble-item:hover .bubble-title {
  transform: scale(1.1);
  color: white;
}
.bubble-item:hover .bubble-subtitle {
  transform: translateY(3px);
}

.bubble-arrow {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  margin-top: 10px;
  z-index: 9999;
  display: none;
}
.bubble-arrow:before {
  content: "";
  position: absolute;
  border: solid 10px transparent;
  border-bottom-color: white;
  border-top-width: 0;
}

.bubble-text {
  position: absolute;
  text-align: left;
  background: white;
  padding: 1rem;
  width: 24rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  top: calc(100% + 1rem);
  display: none;
  z-index: 9996;
}
@media (max-width: 540px) {
  .bubble-text {
    width: calc(100vw - 5rem);
  }
}

.bubble-text-content-wrapper {
  max-height: 100%;
  width: 100%;
  overflow: auto;
}

.columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.columns .column {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.columns .column .column-title {
  margin-bottom: 1rem;
}
.columns .column .column-text {
  padding: 2rem;
  background: rgba(4, 20, 30, 0.7);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  margin: 0;
}
.columns .column .button {
  align-self: center;
  flex: none;
  position: relative;
  margin-top: 2rem;
}
@media (max-width: 540px) {
  .columns {
    gap: 0;
    flex-direction: column;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .columns .column-title {
    padding-left: 1rem;
  }
}
@media (min-width: 541px) {
  .columns {
    gap: 0;
    flex-direction: column;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .columns .column-title {
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  .columns {
    gap: 2rem;
    flex-direction: row;
  }
  .columns .column {
    max-width: 600px;
  }
  .columns .column-title {
    padding-left: 0;
  }
}
@media (min-width: 993px) {
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  .columns .column-title {
    padding-left: 0;
  }
}

.footer {
  border-top: solid 2px #104d79;
  padding: 2rem;
  text-align: center;
}
.footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: 1rem;
}
@media (min-width: 541px) {
  .footer .container {
    flex-direction: row;
  }
}

.graphic {
  position: absolute;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 100%;
}
.graphic.is-flipped {
  transform: scaleX(-100%);
}
.graphic img,
.graphic svg {
  width: 100%;
  height: 100%;
}
.graphic.is-on-top {
  z-index: 9999;
}
@media (max-width: 540px) {
  .graphic.is-fullwidth {
    width: 300% !important;
    left: 50% !important;
    transform: translate(-50%, 15%) !important;
  }
}

#lottieLogo {
  transform: scale(0);
  animation: popIn 1s ease forwards;
  animation-delay: 0.2s;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#lottieLogo:not(.is-playing):hover svg {
  animation: wiggle 0.2s ease forwards;
}
#lottieLogo svg {
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.8));
}
#lottieLogo svg path {
  stroke: white;
  fill: white;
}
#lottieLogo svg > g > g:nth-of-type(4) path {
  stroke: #8DAE4F;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #04141e;
  border-radius: 1rem;
  border: solid 2px #104d79;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin-bottom: 2rem;
}
.list > li {
  margin: 0;
  padding: 1rem;
}
.list > li:nth-child(2n) {
  background: #061c2c;
}

.hero {
  background: url("../images/backgrounds/stars-hq.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  max-height: 800px;
  min-height: inherit;
  text-align: center;
}
.hero .container {
  height: inherit;
  max-height: inherit;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-wrapper {
  position: relative;
  height: 0;
  z-index: 9999;
}

.nav {
  display: flex;
  justify-content: center;
  animation: fadeSlideIn 0.2s ease;
  transition: transform 0.2s ease;
  transform: translateY(-200%);
}
.nav.is-open {
  top: 0;
  transform: translateY(0) !important;
  z-index: 10000;
}
.nav-is-sticky .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  transform: none;
  z-index: 9997;
  background: #8DAE4F;
  border-bottom: solid 1px #104d79;
  animation: fadeSlideInDup 0.2s ease;
}
.nav-is-sticky .nav > ul > li > .nav-item {
  border-radius: 0 !important;
  border-bottom: 0;
}
.nav-is-sticky .nav > ul > li > .nav-item.is-active {
  background: #8DAE4F;
  color: white;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.nav ul > li .nav-item {
  position: relative;
  display: inline-block;
  background: #8DAE4F;
  padding: 1rem 0;
  border-radius: 0;
  min-width: 8rem;
  text-align: center;
  color: white;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav ul > li .nav-item:hover {
  background: #627937;
  transform: translateY(-3px);
  z-index: 9999;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}
.nav ul > li:not(:last-child) {
  border-bottom: solid #104d79 1px;
}
@media (min-width: 541px) {
  .nav ul > li:not(:last-child) {
    border-bottom: none;
    border-right: solid #104d79 1px;
  }
}
.nav ul > li:first-child .nav-item {
  border-top-left-radius: 99em;
  border-bottom-left-radius: 99em;
}
.nav ul > li:last-child .nav-item {
  border-top-right-radius: 99em;
  border-bottom-right-radius: 99em;
  margin: 0;
}
@media (max-width: 540px) {
  .nav {
    position: fixed;
    top: 0;
    transform: translateY(-100%) !important;
  }
  .nav > ul {
    flex-direction: column;
  }
  .nav > ul > li > .nav-item {
    border-radius: 0 !important;
    width: 100vw;
  }
}
@media (min-width: 541px) {
  .nav > ul > li > .nav-item {
    min-width: unset;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .nav > ul > li > .nav-item {
    min-width: 8rem;
  }
}

.nav-hamburger {
  width: 100vw;
  height: 3rem;
  background: #627937;
  position: absolute;
  bottom: -3rem;
  left: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  color: white;
}

.section {
  min-height: 40rem;
  max-height: 60rem;
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
}
.section.is-fullwidth {
  max-width: none;
  padding-bottom: 0;
}
.section.can-grow {
  height: unset;
  max-height: unset;
  padding-bottom: 3.25rem;
}
.section header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5.25rem;
  padding-bottom: 3.25rem;
  margin-bottom: 2rem;
  text-align: center;
  background: url("../images/backgrounds/stars-header.jpg") no-repeat top center;
}
.section header .section-title,
.section header .section-subtitle {
  margin: 0;
  position: relative;
}
.section + section {
  border-top: solid 2px #104d79;
}
@media (max-width: 540px) {
  .section {
    max-height: unset;
    height: unset;
    padding-bottom: 2rem;
  }
}
@media (min-width: 541px) {
  .section {
    max-height: unset;
    height: unset;
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .section {
    max-height: unset;
    height: unset;
    padding-bottom: 2rem;
  }
}
@media (min-width: 993px) {
  .section {
    min-height: 40rem;
    max-height: 60rem;
  }
}

.modal-wrapper.is-active .modal {
  transform: translateX(-50%) translateY(0);
}
.modal-wrapper.is-active .modal-backdrop {
  opacity: 1;
  pointer-events: all;
}

.modal {
  border: solid 1px #104d79;
  border-bottom: none;
  background: #04141e;
  backdrop-filter: blur(5px);
  position: fixed;
  bottom: 0;
  left: 50%;
  width: calc(100vw - 16rem);
  min-width: 20rem;
  max-width: 40rem;
  height: 40rem;
  max-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateX(-50%) translateY(100%);
  transition: transform 0.2s ease;
  z-index: 9998;
  overflow: hidden;
}
.modal > * {
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  flex: none;
  border-bottom: solid 1px #104d79;
}
.modal-header .button {
  height: 4rem;
  margin: -1rem 0;
  padding: 0 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  background: none;
  transition: color 0.2s ease;
}
.modal-header .button.modal-prev {
  margin-left: -1rem;
}
.modal-header .button.modal-close {
  font-size: 2.4rem;
  margin-right: -1rem;
}
.modal-header .button:hover {
  transform: none;
  color: #8DAE4F;
}
.modal-header .modal-header-nav {
  flex: auto;
  display: flex;
}
.modal-header .modal-close {
  flex: none;
}

.modal-content {
  flex: auto;
}

.modal-title {
  text-transform: capitalize;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 9997;
}

.modal-image {
  opacity: 0.1;
  position: absolute;
  width: 80%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.tiles {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tile {
  display: flex;
  justify-content: center;
  flex: none;
  text-align: center;
  width: 10rem;
  height: 10rem;
  border: solid 1px #104d79;
  border-width: 2px;
  margin: 0.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #04141e;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-size: cover;
}
.tile.has-image a {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.tile.has-image a .tile-title {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  font-weight: 500;
  color: white;
}
.tile.has-image a:hover {
  opacity: 1;
  backdrop-filter: blur(1px);
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}
.tile:hover a > * {
  color: white;
}

.tile-icon {
  height: 6rem;
  line-height: 8rem;
  font-size: 3rem;
  color: #8DAE4F;
}

.tile-title {
  font-size: 1.1rem;
  padding: 0 1.5rem;
}

:root {
  --c-primary: #c60;
  --c-primary-lighter: #e80;
  --c-primary-darker: #a30;
  --c-primary-darkest: #2d0300;
  --c-primary-alt: #220611;
  --f-primary: Verdana, Geneva, Tahoma, sans-serif;
  --logo-subtitle: "tech one";
  --i-hero: url("../images/backgrounds/orange-bokeh.jpg");
}

body {
  background: var(--c-primary-darkest);
}

.hero {
  background-image: var(--i-hero);
}

.section header {
  background-image: radial-gradient(ellipse at top, var(--c-primary) -40%, transparent 60%);
}

.section + section,
.footer {
  border-top: solid 1px var(--c-primary-lighter);
}

.list {
  border-color: var(--c-primary-lighter);
}
.list > li {
  background-color: var(--c-primary-darker);
}
.list > li:nth-child(even) {
  background-color: var(--c-primary);
}
.list > li a {
  color: white;
}
.list > li a:hover {
  color: white;
  text-decoration: underline;
}

.tile {
  border-color: var(--c-primary);
}

.bubble-item .bubble-image {
  border-color: var(--c-primary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-primary);
  color: var(--c-primary-lighter);
}

sub {
  color: var(--c-primary);
  font-family: var(--f-primary);
}

a:not(.button) {
  color: var(--c-primary);
}
a:not(.button):hover {
  color: var(--c-primary-lighter);
}

body.nav-is-sticky .nav {
  background: var(--c-primary);
  border-color: var(--c-primary-darker);
}
body.nav-is-sticky .nav ul > li {
  border-color: var(--c-primary-darker);
}
body.nav-is-sticky .nav ul > li .nav-item {
  background: var(--c-primary);
}
body.nav-is-sticky .nav ul > li .nav-item.is-active {
  background: var(--c-accent);
}
.nav ul > li > .nav-item {
  background: var(--c-primary);
  font-family: var(--f-primary);
}
.nav ul > li > .nav-item:hover {
  background: var(--c-primary-darker);
}
.nav .nav-hamburger {
  background: var(--c-primary-darker);
}

.button {
  background: var(--c-primary);
  font-family: var(--f-primary);
}
.button:hover {
  background: var(--c-primary-darker);
}

#lottieLogo:before {
  content: var(--logo-subtitle);
  position: absolute;
  bottom: 2.35rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Quicksand";
  font-size: 2rem;
  letter-spacing: 0.6rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: opacity 0.7s ease-in, transform 1s ease-in;
}
#lottieLogo.is-initialized:before {
  opacity: 0;
  transform: translateY(-30px);
}
#lottieLogo svg > g > g:nth-of-type(2) path {
  display: none;
}
#lottieLogo svg > g > g:nth-of-type(4) path {
  stroke: var(--c-primary);
}

.columns .column .column-text {
  background: rgba(255, 255, 255, 0.1);
}
/*# sourceMappingURL=bundle-techone.css.map */
