:root {
  --dark-green: #0e2a26;
  --dark-slate-gray: #1a5555;
  --pine-green: #1b7265;
  --mint: #3bb68b;
  --teal: #4ae5c3;

  --light: #ececec;
  --light-dimmed: #ecececc0;
  --dark: #11171a;
  --primary: var(--mint);
  --secondary: white;
  --highlight: var(--teal);
  --highlight-dimmed: #4ae5c3cc;
  --highlight-dimmed-more: #4ae5c360;
  --highlight-dimmed-ultra: #4ae5c320;
  --primary-dimmed: #3bb68b80;

  --typeface-text: "Noto Sans", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --typeface-title: "Lexend", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --typeface-mono: "Cousine", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

::selection {
  background: var(--highlight);
  color: var(--dark-green);
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--typeface-text);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--light);
  text-align: left;
  border-color: black;
  background-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  font-family: var(--typeface-title);
}

h5,
h6,
.h5,
.h6 {
  font-weight: 400;
  font-family: var(--typeface-title);
}

h1,
.h1 {
  font-size: 3rem;
}

h2,
.h2 {
  font-size: 2.5rem;
}

h3,
.h3 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  color: var(--light);
  font-family: var(--typeface-title);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.heading-black {
  font-weight: 700;
}

.heading-black img {
  transition: all .5s ease;
  cursor: pointer;
}

.heading-black img:focus,
.heading-black img:hover {
  -webkit-filter: drop-shadow(0 0 30px var(--highlight-dimmed-more));
  filter: drop-shadow(0 0 30px var(--highlight-dimmed-more));
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: var(--highlight);
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

code {
  font-family: monospace, monospace;
  font-size: 1em;
}

img {
  vertical-align: middle;
  border-style: none;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button,
html [type="button"] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

code {
  font-family: var(--typeface-mono);
}

code {
  font-size: 87.5%;
  color: #f50057;
  word-break: break-word;
}

a>code {
  color: inherit;
}

.btn {
  display: inline-block;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0.5px solid transparent;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-family: var(--typeface-title);
  line-height: 1.5;
  border-radius: 0.9rem;
  transition: all 0.5s;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  outline: 0;
}

.btn-primary {
  border: 0.5px solid var(--dark);
  color: black;
  background: -webkit-linear-gradient(300deg,
      transparent,
      #01484f,
      var(--primary),
      #01484f,
      transparent);
  background-position: 0 0;
  background-size: 300% auto;
  -webkit-animation: gradient_move 15s ease infinite;
  animation: gradient_move 15s ease infinite;
  transition: all 0.7s;
}

.btn-primary:hover,
.btn-primary:focus {
  color: white;
  background-color: var(--dark-slate-gray);
  box-shadow: 0 0 160px var(--highlight-dimmed-ultra);
}

.btn-primary:active {
  scale: 0.98;
}

@-webkit-keyframes gradient_move {
  0% {
    background-position: 0% 92%;
  }

  50% {
    background-position: 100% 9%;
  }

  100% {
    background-position: 0% 92%;
  }
}

@keyframes gradient_move {
  0% {
    background-position: 0% 92%;
  }

  50% {
    background-position: 100% 9%;
  }

  100% {
    background-position: 0% 92%;
  }
}

.btn-info {
  color: #11171a;
  background-color: #00e5ff;
  border-color: #00e5ff;
}

.btn-info:hover {
  color: white;
  background-color: #00c3d9;
  border-color: #00b7cc;
}

.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 229, 255, 0.5);
}

.btn-info:disabled {
  color: #11171a;
  background-color: #00e5ff;
  border-color: #00e5ff;
}

.btn-info:not(:disabled):not(.disabled):active {
  color: white;
  background-color: #00b7cc;
  border-color: #00acbf;
}

.btn-info:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 229, 255, 0.5);
}

.btn-light {
  color: #11171a;
  background-color: #ECEFF1;
  border-color: #ECEFF1;
}

.btn-light:hover {
  color: #11171a;
  background-color: #d6dce1;
  border-color: #cfd6db;
}

.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(236, 239, 241, 0.5);
}

.btn-light:disabled {
  color: #11171a;
  background-color: #ECEFF1;
  border-color: #ECEFF1;
}

.btn-light:not(:disabled):not(.disabled):active {
  color: #11171a;
  background-color: #cfd6db;
  border-color: #c7d0d6;
}

.btn-light:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(236, 239, 241, 0.5);
}

.navbar-dark .navbar-nav .nav-item {
  padding: 1rem 0;
  font-weight: 400;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--light-dimmed);
  transition: all .5s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  text-shadow: 0 0 50px var(--highlight-dimmed), 0 0 20px var(--highlight-dimmed-more);
  outline: none !important;
  box-shadow: none !important;
}

.navbar-dark .navbar-nav .nav-link:active {
  scale: 0.98;
}

.navbar-dark .navbar-nav .nav-link.cta {
  color: var(--primary);
}

.navbar-dark .navbar-nav .nav-link.cta:hover,
.navbar-dark .navbar-nav .nav-link.cta:focus {
  color: var(--highlight);
}

.navbar-dark .navbar-nav .nav-link.cta:active {
  scale: 0.98;
}

.navbar-dark .navbar-toggler {
  color: var(--light-dimmed);
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 1.2rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: var(--light);
  text-align: left;
  list-style: none;
  background: linear-gradient(135deg, var(--dark) -30%, rgba(0, 0, 0, 0.7) 100%);
  background-clip: padding-box;
  border: 0.5px solid black;
  border-radius: 18px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 1.2rem 3rem 1.2rem 2rem;
  clear: both;
  font-weight: 400;
  color: var(--light);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  transition: all 0.5s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  background: none !important;
  color: var(--light) !important;
  text-shadow: 0 0 50px var(--highlight-dimmed), 0 0 20px var(--highlight-dimmed-more) !important;
  text-decoration: none !important;
}

.dropdown-item:active {
  color: var(--light);
  background-color: transparent;
}

/* Width < 1000px: Shrink hero text and logo */
@media (max-width: 999px) {
  .navbar-brand img,
  .heading-black img {
    height: 35px !important; /* Shrink logo */
    transition: height 0.3s ease;
  }
  
  .heading-black {
    font-size: 2.5rem !important; /* Shrink hero title */
  }
}

/* Width < 800px: Mobile mode (hamburger menu) + keep logo shrunk */
@media (max-width: 799px) {
  /* Add blur overlay when mobile menu is open */
  body.mobile-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
    pointer-events: none;
  }
  /* Force mobile mode regardless of Bootstrap's md breakpoint */
  .navbar-expand-md .navbar-collapse {
    display: none !important;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .navbar-expand-md .navbar-collapse.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
  }
  
  .navbar-expand-md .navbar-collapse.collapsing {
    display: block !important;
    opacity: 0.5;
    transform: translateY(-5px);
  }
  
  .navbar-expand-md .navbar-toggler {
    display: block !important;
  }
  
  .navbar-toggler-right {
    margin-left: auto;
  }
  
  .navbar-expand-md .navbar-nav {
    flex-direction: column;
  }
  
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
  
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background: none !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  .navbar-expand-md .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--light);
    padding: 1rem 1.2rem !important;
    transition: all 0.5s ease;
  }
  
  .navbar-expand-md .navbar-nav .dropdown-menu .dropdown-item:hover,
  .navbar-expand-md .navbar-nav .dropdown-menu .dropdown-item:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    color: var(--light);
    text-shadow: 0 0 50px var(--highlight-dimmed), 0 0 20px var(--highlight-dimmed-more);
  }
  
  /* Keep logo shrunk same as <1000px */
  .navbar-brand img,
  .heading-black img {
    height: 35px !important;
  }
}

/* Override Bootstrap's default md breakpoint */
@media (min-width: 800px) {
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
  }
  
  .navbar-expand-md .navbar-toggler {
    display: none !important;
  }
  
  /* Desktop dropdown items should use normal .dropdown-item padding */
  .dropdown-item {
    padding: 1.2rem 3rem 1.2rem 2rem !important;
  }
  
  /* Keep rightmost dropdown menus on screen */
  .navbar-nav .nav-item:last-child .dropdown-menu,
  .navbar-nav .nav-item:nth-last-child(1) .dropdown-menu,
  .navbar-nav .nav-item:nth-last-child(2) .dropdown-menu {
    left: auto;
    right: 0;
  }
}

/* NEW badge styling */
.badge-new {
  background-color: var(--highlight);
  color: var(--dark-green);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.3rem;
  border-radius: 12px;
  margin-left: 0.2rem;
  vertical-align: top;
  font-family: var(--typeface-title);
  letter-spacing: 0.5px;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #ECEFF1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #546E7A;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #263238;
  text-decoration: none;
  background-color: #ECEFF1;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
  background-color: #1de9b6;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #607D8B;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.75rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #90A4AE;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #546E7A;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #263238;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.3rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.3rem - 0px);
  border-top-right-radius: calc(0.3rem - 0px);
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 0.375rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 0.375rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.bg-dark {
  background: linear-gradient(110deg, var(--dark),rgba(1, 12, 18, 0.31)) !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: black !important;
}

.border-0 {
  border: 0 !important;
}

.rounded {
  border-radius: 0.3rem !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.text-white {
  color: white !important;
}

.text-info {
  color: #00e5ff !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #00b7cc !important;
}

.text-light {
  color: var(--light) !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cfd6db !important;
}

.text-muted {
  color: #88a1a9 !important;
}

.smaller {
  font-size: 70%;
}

.smaller-less {
  font-size: 80%;
}

.font-weight-medium {
  font-weight: 400;
}

.btn.btn-info {
  box-shadow: 0 8px 16px rgba(0, 229, 255, 0.3);
  transition: all .2s ease-out;
}

.btn.btn-info:hover {
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.35);
}

.btn.btn-info:active {
  box-shadow: none !important;
}

.btn.btn-light {
  box-shadow: 0 8px 16px rgba(236, 239, 241, 0.3);
  transition: all .2s ease-out;
}

.btn.btn-light:hover {
  box-shadow: 0 8px 20px rgba(236, 239, 241, 0.35);
}

.btn.btn-light:active {
  box-shadow: none !important;
}

.section-angle {
  position: relative;
  border-color: inherit;
  background: black;
}

.section-angle:before,
.section-angle:after {
  width: 0;
  height: 0;
  position: absolute;
  content: "";
  left: 0;
  border: 0 solid transparent;
  z-index: 3;
}

.section-angle.top-left:before,
.section-angle.top-right:before {
  top: 0;
  border-left-width: 100vw;
}

.section-angle.bottom-left:after,
.section-angle.bottom-right:after {
  bottom: 0;
  border-right-width: 100vw;
}

.section-angle.bottom-left:after {
  border-right-color: inherit;
}

.section-angle.bottom-right:after {
  border-bottom-color: inherit;
}

.section-angle.top-left:before {
  border-top-color: inherit;
}

.section-angle.top-right:before {
  border-left-color: inherit;
}

@media (min-width: 992px) {

  .section-angle.bottom-right:after,
  .section-angle.top-right:before {
    border-bottom-width: 2rem;
  }

  .section-angle.bottom-left:after,
  .section-angle.top-left:before {
    border-top-width: 2rem;
  }
}

@media (max-width: 767.98px) {

  .section-angle.bottom-right:after,
  .section-angle.top-right:before {
    border-bottom-width: 1rem;
  }

  .section-angle.bottom-left:after,
  .section-angle.top-left:before {
    border-top-width: 1rem;
  }
}

.smart-scroll {
  position: fixed;
  top: 0;
  z-index: 1020;
  width: 100%;
  transition: all .5s ease-out;
}

.smart-scroll.opened {
  background-color: rgba(0, 0, 0, 0.85);
  transition: all .4s ease-out;
}

.smart-scroll.scrolling {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.smart-scroll.scrolling.up {
  background-color: rgba(0, 0, 0, 0.85);
  transition: all .4s ease-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.divider {
  position: relative;
}

.divider.top-divider:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: #263238;
  background: linear-gradient(to right, rgba(29, 233, 182, 0.1) 0, #263238 50%, rgba(29, 233, 182, 0.1) 100%);
}

@media (min-width: 768px) {
  .vh-md-100 {
    height: 100vh;
  }
}

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

.feature-boxes .box {
  padding: 3rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  float: left;
  width: 50%;
  margin-top: 0;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  padding-left: 1.75rem;
  font-weight: 500;
}

.features-list li:before {
  position: relative;
  font-family: FontAwesome;
  font-size: 14px;
  content: "\f10c";
  color: #1de9b6;
  margin: 0 .75rem 0 0;
}

footer ul>li {
  padding: 0.5rem 0;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease-out;
}

footer a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

footer h5 {
  font-size: 1rem;
  text-transform: uppercase;
}

.social a {
  width: 45px;
  height: 45px;
  background: transparent;
  display: block;
  text-align: center;
  color: gray-100;
  border-radius: 4px;
  font-size: 18px;
  line-height: 45px;
}

.social a:hover {
  background: var(--highlight);
  color: black;
  transition: all .4s ease-in-out;
}

.social.social-sm a {
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
}

.scroll-top {
  bottom: 20px;
  font-size: 20px;
  height: 40px;
  position: fixed;
  text-align: center;
  width: 40px;
  z-index: 10;
  cursor: pointer;
  transition: .3s;
  border-radius: 50%;
  line-height: 40px;
  right: -100px;
  color: white;
  background-color: var(--primary-dimmed);
}

.scroll-top:hover {
  background-color: var(--primary);
  transition: all .4s ease-in-out;
}

.scroll-top.active {
  right: 20px;
}

.icon-box {
  position: relative;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  background-color: white;
  margin: 1rem;
}

.icon-box.box-teal {
  color: var(--teal);
  background-color: rgba(0, 230, 203, 0.15);
}

.icon-box.box-blue {
  color: #00e5ff;
  background-color: rgba(0, 229, 255, 0.12);
}

.icon-box.box-yellow {
  color: #ffff8c;
  background-color: rgba(255, 212, 23, 0.12);
}

.icon-box.box-red {
  color: #ff1744;
  background-color: rgba(255, 139, 162, 0.15);
}

.icon-box .icon-box-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.8rem;
}

.slick-about {
  -webkit-filter: drop-shadow(0 0 1rem #24313c90);
  filter: drop-shadow(0 0 1rem #24313c90);
}