.pink {
  color: #E240ED;
}

.blue {
  color: #6BBAD6;
}

::-moz-selection {
  background: #E240ED;
}

::selection {
  background: #E240ED;
}

.pink::-moz-selection {
  background: #fff;
}

.pink::selection {
  background: #fff;
}

@font-face {
  font-family: "VCR OSD MONO";
  font-style: normal;
  font-weight: normal;
  src: local("VCR_OSD_MONO_1.001"), url("../fonts/VCR_OSD_MONO_1.001.woff") format("woff");
}
code {
  background: #fff;
  color: #E240ED;
}

a {
  color: #6BBAD6;
  text-decoration: underline;
  transition: all 100ms;
}

a.button {
  font-family: "VCR OSD MONO";
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 90px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  display: inline-block;
  padding: 15px 20px;
  outline: none;
  transition: all 0.5s;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  a.button {
    font-size: 18px;
    min-width: 190px;
    padding: 15px 30px;
  }
}
a.button:hover {
  color: #2C272B;
  background: #fff;
}
a.button.button-primary {
  color: #fff;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  transition: all 0.5s linear;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
a.button.button-primary:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
a.button.button-primary:hover {
  color: #fff;
}
a.button.button-primary:hover:before {
  opacity: 1;
}
a.button.button-gradient {
  border: 0;
  position: relative;
}
a.button.button-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 90px;
  padding: 1;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
a.button.button-gradient:hover:before {
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
}
a.button.button-gradient:hover {
  color: #fff;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
}

a.learn-more {
  font-family: "VCR OSD MONO";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: all 100ms;
}
@media (min-width: 768px) {
  a.learn-more {
    font-size: 18px;
  }
}
a.learn-more::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f33b";
  margin-left: 10px;
}
a.learn-more:hover {
  color: #E240ED;
}
a.learn-more.color-blue {
  color: #6BBAD6;
}
a.learn-more.color-blue::after {
  content: "\f7d9";
}
a.learn-more.learn-more-button {
  border-radius: 13px;
  padding: 14px;
  position: relative;
}
a.learn-more.learn-more-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 13px;
  padding: 1;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
a.learn-more.learn-more-button:hover:before {
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
}

a.action-return {
  font-family: "VCR OSD MONO";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: all 100ms;
}
@media (min-width: 768px) {
  a.action-return {
    font-size: 18px;
  }
}
a.action-return::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f33a";
  margin-right: 10px;
}

p {
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 1px;
  margin: 0 0 30px 0;
}
p.large {
  font-size: 20px;
  line-height: 35px;
}
@media (min-width: 768px) {
  p.large {
    font-size: 23px;
    line-height: 43px;
  }
}

i.star {
  width: 25px;
  height: 25px;
  -webkit-mask-image: url(../img/global/star.svg);
  mask-image: url(../img/global/star.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  display: inline-block;
  background-color: #E240ED;
}
@media (min-width: 768px) {
  i.star {
    width: 50px;
    height: 50px;
  }
}

.vcr {
  font-family: "VCR OSD MONO";
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
  color: #E240ED;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .vcr {
    font-size: 18px;
    line-height: 28px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px 0;
}

h1 {
  font-size: 35px;
  line-height: 61px;
}
h1.post-title {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
@media (min-width: 768px) {
  h1.post-title {
    font-size: 35px;
    line-height: 46px;
  }
}

h2 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 22px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 35px;
  }
}

h4 {
  font-family: "VCR OSD MONO";
  font-size: 20px;
  letter-spacing: 2px;
  background: -webkit-linear-gradient(45deg, #E240ED, #6BBAD6 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  h4 {
    font-size: 26px;
  }
}

.display3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1;
  margin: 0 0 30px 0;
}
@media (min-width: 768px) {
  .display3 {
    font-size: 26px;
    line-height: 45px;
  }
}

.single-quote {
  max-width: 960px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
.single-quote .quote {
  border-radius: 13px;
  padding: 30px;
  margin-bottom: 52px;
  position: relative;
}
.single-quote .quote p:last-child {
  margin: 0;
}
.single-quote .quote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 13px;
  padding: 1;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.single-quote .quote:after {
  display: block;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='41' viewBox='0 0 32 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='1' fill='%232C272B'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1H3.5C4.05225 1 4.5 1.44769 4.5 2V37.8173C4.5 41.0093 8.8233 41.9931 10.2046 39.1155L28.2277 1.56726C28.3942 1.22055 28.7446 1 29.1293 1H32V0H29.1293C28.36 0 27.6591 0.441101 27.3262 1.13452L9.30304 38.6827C8.3822 40.6012 5.5 39.9453 5.5 37.8173V2C5.5 0.895447 4.60455 0 3.5 0H0V1Z' fill='url(%23paint0_linear_361_22)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_361_22' x1='-216.623' y1='11' x2='256.246' y2='11' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E240ED'/%3E%3Cstop offset='1' stop-color='%236BBAD6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 41px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
}
.single-quote .author {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-quote .title {
  font-family: "VCR OSD MONO";
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}
.single-quote ul {
  margin: 0;
  padding: 0;
}
.single-quote ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.single-quote p {
  font-size: 20px;
  font-weight: 300;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #2C272B;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
}

body {
  padding-top: 100px;
}
@media (min-width: 768px) {
  body {
    padding-top: 0;
  }
}

section.main-content .wrap {
  max-width: 1010px;
}

.mobile-only {
  display: block;
}
@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.mobile-only-inline {
  display: inline-block;
}
@media (min-width: 768px) {
  .mobile-only-inline {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

.desktop-only-inline {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only-inline {
    display: inline-block;
  }
}

.kurt-signature {
  max-width: 150px;
}
@media (min-width: 768px) {
  .kurt-signature {
    max-width: 100%;
  }
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  padding: 0 5%;
  max-width: 100%;
  margin: auto;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .wrap {
    padding: 0 85px;
    max-width: 1450px;
  }
}

.hero-standard {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .hero-standard {
    padding-bottom: 80px;
  }
}
.hero-standard h1 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  .hero-standard h1 {
    font-size: 45px;
    line-height: 61px;
    margin: 0;
  }
}
.hero-standard h1:before {
  content: "";
  position: absolute;
  margin: auto;
  left: -90px;
  right: auto;
  top: 10px;
  bottom: 0;
  width: 67px;
  height: 88px;
  background: url(../img/global/stars-1.svg) no-repeat;
  background-size: 67px 88px;
  z-index: 1;
  display: none;
}
@media (min-width: 768px) {
  .hero-standard h1:before {
    display: block;
  }
}
.hero-standard h1:after {
  content: "";
  position: absolute;
  margin: auto;
  right: -90px;
  left: auto;
  top: 30px;
  bottom: 0;
  width: 67px;
  height: 88px;
  background: url(../img/global/stars-2.svg) no-repeat;
  background-size: 67px 88px;
  z-index: 1;
  display: none;
}
@media (min-width: 768px) {
  .hero-standard h1:after {
    display: block;
  }
}
.hero-standard p.sub-title {
  font-family: "VCR OSD MONO";
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 30px;
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes header {
  0% {
    -webkit-transform: translateY(-100%) translateZ(0px);
            transform: translateY(-100%) translateZ(0px);
  }
  100% {
    -webkit-transform: translateY(0%) translateZ(0px);
            transform: translateY(0%) translateZ(0px);
  }
}

@keyframes header {
  0% {
    -webkit-transform: translateY(-100%) translateZ(0px);
            transform: translateY(-100%) translateZ(0px);
  }
  100% {
    -webkit-transform: translateY(0%) translateZ(0px);
            transform: translateY(0%) translateZ(0px);
  }
}
@keyframes sticky {
  from {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes sticky {
  from {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes removeSticky {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
}
@-webkit-keyframes removeSticky {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
}
header.is_home {
  position: absolute;
  width: 100%;
}

header {
  padding: 0 30px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  header {
    padding: 50px 30px;
  }
}
header.sticky {
  position: fixed;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 97;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767px) {
  header.sticky {
    display: none !important;
  }
}
header.sticky .section-content {
  padding: 19px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
header.sticky .section-content:hover {
  border: 0;
  box-shadow: none;
}
header.sticky:before {
  display: none;
}
header.sticky .hamburger {
  top: 13px;
}
header.run-sticky {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-name: sticky;
  -webkit-animation-name: sticky;
}
header.delay-removal {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-name: removeSticky;
  -webkit-animation-name: removeSticky;
}
header:before {
  content: "";
  display: block;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  width: 100%;
  height: 5px;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
}
header ul {
  margin: 0;
  padding: 0;
}
header ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
@media (min-width: 768px) {
  header a.site-logo {
    margin-left: 10px;
  }
}
header a.site-logo img {
  max-width: 120px;
  display: block;
}
header a {
  color: #fff;
  font-family: "VCR OSD MONO";
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
}
header .section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1490px;
  margin: auto;
  transition: all 300ms;
  height: 100px;
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
}
@media (min-width: 768px) {
  header .section-content {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 90px;
    padding: 19px 20px;
    position: relative;
  }
}
@media (min-width: 768px) {
  header .section-content:hover {
    border: 1px solid white;
    box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 9px 0px rgba(255, 255, 255, 0.5);
  }
}
header h1 {
  margin: 0;
}
header nav {
  display: none;
}
@media (min-width: 768px) {
  header nav {
    display: block;
  }
}
header nav a:hover, header nav a.active {
  color: #E240ED;
}
header nav li:after {
  content: "/";
  display: inline-block;
  margin: 0 20px;
  color: #747474;
}
header nav li:last-child:after {
  display: none;
}
header a.get-started {
  border: 1px solid #fff;
  border-radius: 90px;
  padding: 10px 30px;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  display: none;
  color: #fff;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  transition: all 0.5s linear;
}
@media (min-width: 768px) {
  header a.get-started {
    display: block;
  }
}
header a.get-started:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
  border-radius: 90px;
}
header a.get-started:hover {
  color: #fff;
}
header a.get-started:hover:before {
  opacity: 1;
}
header .hamburger {
  position: absolute;
  z-index: 99;
  top: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  header .hamburger {
    display: none;
  }
}
header .hamburger span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 27px;
  color: #fff;
  transition: 0.5s;
}
header .hamburger span:nth-child(2) {
  background: #E240ED;
  color: #fff;
}
header .hamburger span.active {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.mobile-menu {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 98;
  display: none;
  width: 100vw;
  height: 100vh;
  padding: 7em 30px 30px 30px;
  background-color: #211D20;
  color: #fff;
  overflow: hidden;
}
.mobile-menu:before {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 37px;
  height: 48px;
  background: url(../img/global/stars-1.svg) no-repeat;
  background-size: 37px 48px;
  -webkit-transform: translate(20px, 215px);
          transform: translate(20px, 215px);
}
.mobile-menu:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: url(../img/global/circle-lines.svg) no-repeat;
  background-size: 400px 400px;
  -webkit-transform: translate(110px, 335px);
          transform: translate(110px, 335px);
}
.mobile-menu ul {
  margin: 0;
  padding: 0;
}
.mobile-menu ul li {
  margin: 0 0 20px 0;
  padding: 0;
  list-style-type: none;
  display: block;
}
.mobile-menu nav {
  margin: 0 0 30px 0;
}
.mobile-menu nav a {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}
.mobile-menu nav a:hover, .mobile-menu nav a.active {
  color: #E240ED;
}
.mobile-menu nav a.get-started span span {
  border: 1px solid #fff;
  border-radius: 90px;
  padding: 10px 30px;
  display: inline-block;
  box-sizing: border-box;
  width: auto;
}
.mobile-menu nav a.get-started span span:hover {
  border: 1px solid #E240ED;
}
.mobile-menu nav a span {
  display: block;
}
.mobile-menu nav a span.overflow {
  position: relative;
  overflow: hidden;
}
.mobile-menu nav a span.overflow span {
  -webkit-transform: translateY(100%) translateZ(0px);
          transform: translateY(100%) translateZ(0px);
  transition: 800ms ease-in-out;
}
.mobile-menu ul.socials {
  position: relative;
  overflow: hidden;
}
.mobile-menu ul.socials li {
  display: inline-block;
  margin: 0 0 0 10px;
  -webkit-transform: translateY(100%) translateZ(0px);
          transform: translateY(100%) translateZ(0px);
  transition: 800ms ease-in-out;
}
.mobile-menu ul.socials i {
  font-size: 18px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-menu ul.socials i.fa-youtube, .mobile-menu ul.socials i.fa-twitter {
  left: 1px;
}
.mobile-menu ul.socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  border: 1px solid #fff;
  text-align: center;
  position: relative;
  color: #fff;
}
.mobile-menu ul.socials a:hover {
  border: 1px solid #E240ED;
  color: #E240ED;
}
.mobile-menu.open nav a span.overflow span {
  -webkit-transform: translateY(0%) translateZ(0px);
          transform: translateY(0%) translateZ(0px);
}
.mobile-menu.open ul.socials li {
  -webkit-transform: translateY(0%) translateZ(0px);
          transform: translateY(0%) translateZ(0px);
}

body.mobile-menu-active header:before {
  position: fixed;
}

section.newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 0;
}
@media (min-width: 768px) {
  section.newsletter {
    padding: 130px 0;
  }
}
@media (min-width: 768px) {
  section.newsletter .wrap {
    max-width: 1300px;
  }
}
section.newsletter .title {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px 0;
  position: relative;
  font-size: 16px;
  line-height: 30px;
}
@media (min-width: 768px) {
  section.newsletter .title {
    font-size: 20px;
    line-height: 36px;
  }
}
section.newsletter .title:before {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: -70px;
  top: -50px;
  width: 83px;
  height: 87px;
  background: url(../img/global/stars-3.svg) no-repeat;
  background-size: 83px 87px;
}
section.newsletter .form {
  margin-top: 30px;
}
@media (min-width: 768px) {
  section.newsletter .form {
    display: flex;
    gap: 35px;
  }
}
section.newsletter .field {
  margin: 0 0 30px 0;
}
@media (min-width: 768px) {
  section.newsletter .field {
    margin: 0;
  }
}
section.newsletter input[type=text],
section.newsletter input[type=email] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: transparent;
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  transition: all 300ms;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.newsletter input[type=text],
section.newsletter input[type=email] {
    min-width: 500px;
    width: auto;
  }
}
section.newsletter input[type=text]:focus,
section.newsletter input[type=email]:focus {
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 9px 0px rgba(255, 255, 255, 0.5);
}
section.newsletter input[type=text]::-webkit-input-placeholder, section.newsletter input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
section.newsletter input[type=text]::-moz-placeholder, section.newsletter input[type=email]::-moz-placeholder {
  color: #fff;
}
section.newsletter input[type=text]:-ms-input-placeholder, section.newsletter input[type=email]:-ms-input-placeholder {
  color: #fff;
}
section.newsletter input[type=text]::placeholder,
section.newsletter input[type=email]::placeholder {
  color: #fff;
}
section.newsletter button[type=submit],
section.newsletter input[type=submit] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.newsletter button[type=submit],
section.newsletter input[type=submit] {
    width: auto;
    min-width: 230px;
  }
}
section.newsletter button[type=submit]:before,
section.newsletter input[type=submit]:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
section.newsletter button[type=submit]:hover,
section.newsletter input[type=submit]:hover {
  color: #fff;
}
section.newsletter button[type=submit]:hover:before,
section.newsletter input[type=submit]:hover:before {
  opacity: 1;
}

section.something-new a {
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.something-new a {
    font-size: 23px;
  }
}
section.something-new a::after {
  display: inline-block;
  font-style: normal;
  font-varian: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f33b";
  margin-left: 10px;
}
section.something-new a:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
section.something-new a:hover:before {
  opacity: 1;
}

footer {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  footer .wrap {
    max-width: 1300px;
  }
}
footer .main {
  padding: 40px 0 30px 0;
}
@media (min-width: 768px) {
  footer .main {
    padding: 80px 0 30px 0;
  }
}
footer .main .section-content {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer .main .section-content {
    flex-wrap: nowrap;
  }
}
footer .main .links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  footer .main .links {
    width: 60%;
    flex-wrap: nowrap;
    padding-bottom: 80px;
  }
}
footer .main .links .col {
  width: 50%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  footer .main .links .col {
    width: 33.3%;
    margin-bottom: 0;
  }
}
footer .main .links .col.col-3 {
  width: 100%;
}
@media (min-width: 768px) {
  footer .main .links .col.col-3 {
    width: 33.3%;
  }
}
footer .main .links ul {
  margin: 0;
  padding: 0;
}
footer .main .links ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
footer .main .links a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 35px;
  color: #fff;
  text-decoration: none;
}
footer .main .links a:hover {
  color: #E240ED;
}
footer .main .links .title {
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 46px;
  margin-bottom: 10px;
}
footer .main .links i.star {
  width: 25px;
  height: 25px;
  background-color: #E240ED;
}
footer .main .links ul.socials li {
  display: inline-block;
  margin: 0 0 0 10px;
}
footer .main .links ul.socials i {
  font-size: 18px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
footer .main .links ul.socials i.fa-youtube, footer .main .links ul.socials i.fa-twitter {
  left: 1px;
}
footer .main .links ul.socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  border: 1px solid #fff;
  text-align: center;
  position: relative;
}
footer .main .links ul.socials a:hover {
  border: 1px solid #E240ED;
}
footer .main .partners {
  width: 100%;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  footer .main .partners {
    width: 40%;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
footer .main .partners:before {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 37px;
  height: 48px;
  background: url(../img/global/stars-1.svg) no-repeat;
  background-size: 37px 48px;
  -webkit-transform: translate(150px, -265px);
          transform: translate(150px, -265px);
}
@media (min-width: 768px) {
  footer .main .partners:before {
    width: 67px;
    height: 88px;
    background: url(../img/global/stars-1.svg) no-repeat;
    background-size: 67px 88px;
    -webkit-transform: translate(150px, -35px);
            transform: translate(150px, -35px);
  }
}
footer .main .partners:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: url(../img/global/circle-lines.svg) no-repeat;
  background-size: 400px 400px;
  -webkit-transform: translate(110px, -425px);
          transform: translate(110px, -425px);
}
@media (min-width: 768px) {
  footer .main .partners:after {
    width: 600px;
    height: 600px;
    background-size: 600px 600px;
    -webkit-transform: translate(0, -225px);
            transform: translate(0, -225px);
  }
}
footer .main .partners ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
footer .main .partners ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
footer .legal {
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 9px;
  line-height: 17px;
  text-transform: uppercase;
  line-height: 20px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  footer .legal {
    font-size: 13px;
    line-height: 20px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  footer .legal .section-content {
    display: flex;
    align-items: flex-end;
  }
}
footer .legal .copyright {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  footer .legal .copyright {
    width: 60%;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  footer .legal .copyright p {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  footer .legal .links {
    width: 40%;
    text-align: right;
  }
}
footer .legal p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 17px;
}
@media (min-width: 768px) {
  footer .legal p {
    font-size: 13px;
    line-height: 20px;
  }
}
footer .legal a {
  color: #fff;
  text-decoration: none;
}
footer .legal a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .legal ul {
  margin: 0;
  padding: 0;
}
footer .legal ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
footer .legal ul li:after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  color: #fff;
}
footer .legal ul li:last-child:after {
  display: none;
}

@-webkit-keyframes toast {
  0% {
    -webkit-transform: translateY(100%) translateZ(0px);
            transform: translateY(100%) translateZ(0px);
  }
  100% {
    -webkit-transform: translateY(0%) translateZ(0px);
            transform: translateY(0%) translateZ(0px);
  }
}

@keyframes toast {
  0% {
    -webkit-transform: translateY(100%) translateZ(0px);
            transform: translateY(100%) translateZ(0px);
  }
  100% {
    -webkit-transform: translateY(0%) translateZ(0px);
            transform: translateY(0%) translateZ(0px);
  }
}
#toast-container {
  position: fixed;
  z-index: 999999;
  right: 3%;
  bottom: 0;
  width: 390px;
  border: 1px solid #fff;
  border-bottom: 0;
  background: #211D20;
  -webkit-transform: translateY(100%) translateZ(0px);
          transform: translateY(100%) translateZ(0px);
}
@media (max-width: 767px) {
  #toast-container {
    display: none !important;
  }
}
#toast-container.show {
  -webkit-animation: toast 300ms linear forwards;
          animation: toast 300ms linear forwards;
}
#toast-container .header {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
}
#toast-container .header .bars {
  width: 156px;
  margin: 0 9px;
  position: relative;
}
#toast-container .header .bars span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-bottom: 3px;
}
#toast-container .header .bars span:last-child {
  margin-bottom: 0;
}
#toast-container .header .close {
  cursor: pointer;
  transition: opacity 300ms;
}
#toast-container .header .close:hover {
  opacity: 0.7;
}
#toast-container .header .title {
  font-family: "VCR OSD MONO";
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#toast-container .content {
  padding: 15px 20px;
}
#toast-container .content p {
  font-family: "VCR OSD MONO";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  margin-bottom: 20px;
}
#toast-container .content .toast-button {
  font-family: "VCR OSD MONO";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 2px;
  display: block;
  padding: 10px;
  transition: opacity 300ms;
}
#toast-container .content .toast-button:hover {
  opacity: 0.8;
}
#toast-container .content .toast-button.toast-button-pink {
  background: #E240ED;
  color: #fff;
}
#toast-container .content ul {
  margin: 0;
  padding: 0;
}
#toast-container .content ul li {
  margin: 0 0 20px 0;
  padding: 0;
  display: block;
  list-style-type: none;
}
#toast-container .content ul li:last-child {
  margin-bottom: 0;
}

.page.about section.hero-standard {
  padding-bottom: 70px;
  text-align: left;
}
@media (min-width: 768px) {
  .page.about section.hero-standard {
    text-align: center;
  }
}
.page.about section.hero-standard h1 {
  max-width: 1066px;
  margin: auto;
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .page.about section.hero-standard h1 {
    font-size: 35px;
    line-height: 61px;
  }
}
.page.about section.hero-standard h1:before {
  top: -60px;
}
.page.about section.hero-standard h1:after {
  top: 20px;
}

section.about-photos {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.about-photos {
    padding-bottom: 150px;
  }
}
section.about-photos .section-content {
  display: flex;
}
section.about-photos p {
  position: relative;
  margin: 0;
}
section.about-photos img {
  cursor: move !important;
}
section.about-photos .about-photo-1 {
  max-width: 500px;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
section.about-photos .about-photo-1 img {
  position: relative;
}
@media (min-width: 768px) {
  section.about-photos .about-photo-1 img {
    right: -130px;
    bottom: -38px;
  }
}
section.about-photos .about-photo-2 {
  max-width: 377px;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  z-index: 1;
}
section.about-photos .about-photo-3 {
  max-width: 280px;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
section.about-photos .about-photo-3 img {
  position: relative;
}
@media (min-width: 768px) {
  section.about-photos .about-photo-3 img {
    left: -60px;
    bottom: -70px;
  }
}
section.about-photos .about-photo-4 {
  max-width: 413px;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  z-index: 1;
}
section.about-photos .about-photo-4 img {
  position: relative;
}
@media (min-width: 768px) {
  section.about-photos .about-photo-4 img {
    left: -150px;
    top: 100px;
  }
}

section.about-primary {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.about-primary {
    padding-bottom: 100px;
  }
}
section.about-primary .wrap {
  max-width: 1010px;
}

section.about-cta {
  text-align: center;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.about-cta {
    padding-bottom: 150px;
  }
}
section.about-cta .section-content {
  max-width: 1143px;
  margin: auto;
}
section.about-cta .display3 {
  /*
  &:after {
  	display: block;
  	content: '';
  	margin: auto;
  	margin-top: 30px;
  	width: 64px;
  	height: 298px;
  	background: url(../img/global/sketch-line-2.svg) no-repeat;
  	background-size: 64px 298px;
  }
  */
}
section.about-cta svg {
  display: inline-block;
  margin-bottom: 30px;
}
section.about-cta h2 {
  max-width: 1140px;
  margin: auto;
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 42px;
}
@media (min-width: 768px) {
  section.about-cta h2 {
    font-size: 35px;
    line-height: 62px;
  }
}
section.about-cta p {
  max-width: 766px;
  margin: auto;
}

section.about-solutions {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.about-solutions {
    padding-bottom: 100px;
  }
}
section.about-solutions .wrap {
  max-width: 1300px;
}
section.about-solutions h4 {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  section.about-solutions .section-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
  }
}
section.about-solutions .single-item {
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  section.about-solutions .single-item {
    width: 33%;
    box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 768px) {
  section.about-solutions .single-item:nth-child(1), section.about-solutions .single-item:nth-child(4) {
    box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.3), 1px 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
section.about-solutions ul {
  margin: 0;
  padding: 0;
  padding: 25px 0;
}
@media (min-width: 768px) {
  section.about-solutions ul {
    padding: 50px;
  }
}
section.about-solutions ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}
section.about-solutions ul li:last-child {
  margin: 0;
}
section.about-solutions .number {
  font-family: "Rubik Mono One", sans-serif;
  font-size: 20px;
  max-width: 320px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  section.about-solutions .number {
    font-size: 20px;
  }
}
section.about-solutions .number i.star {
  margin-left: 5px;
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  section.about-solutions .number i.star {
    width: 25px;
    height: 25px;
  }
}
section.about-solutions p {
  margin: 0;
}
@media (min-width: 768px) {
  section.about-solutions p {
    font-size: 20px;
    line-height: 35px;
  }
}

section.about-principles {
  padding: 60px 0;
}
@media (min-width: 768px) {
  section.about-principles {
    padding: 100px 0;
  }
}
section.about-principles .wrap {
  max-width: 1300px;
}
section.about-principles h4 {
  text-align: center;
  max-width: 680px;
  margin: auto;
  margin-bottom: 50px;
  line-height: 45px;
}
@media (min-width: 768px) {
  section.about-principles .section-content {
    display: flex;
    flex-wrap: wrap;
  }
}
section.about-principles .single-item {
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  section.about-principles .single-item {
    width: 50%;
    box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.3), 0 -1px 0 0 rgba(255, 255, 255, 0.3);
  }
}
section.about-principles .single-item p {
  margin: 0;
}
section.about-principles .single-item:nth-child(5) {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  section.about-principles .single-item:nth-child(5) {
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), 0 -1px 0 0 rgba(255, 255, 255, 0.3);
  }
}
section.about-principles .single-item:nth-child(5) p {
  max-width: 833px;
  margin: auto;
  padding: 30px;
}
@media (min-width: 768px) {
  section.about-principles .single-item:nth-child(5) p {
    padding: 70px;
  }
}
section.about-principles ul {
  margin: 0;
  padding: 25px 30px;
}
@media (min-width: 768px) {
  section.about-principles ul {
    padding: 70px;
  }
}
section.about-principles ul li {
  margin: 0;
  padding: 0 0 0 40px;
  list-style-type: none;
  display: block;
}
section.about-principles ul li:last-child {
  margin: 0;
}
section.about-principles .number {
  font-size: 20px;
  line-height: 40px;
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 768px) {
  section.about-principles .number {
    font-size: 26px;
    line-height: 45px;
  }
}
section.about-principles .number i.star {
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 4px;
}
@media (min-width: 768px) {
  section.about-principles .number i.star {
    top: 9px;
  }
}

section.apps {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.apps {
    padding-bottom: 100px;
  }
}
section.apps h4 {
  text-align: center;
  max-width: 680px;
  margin: auto;
  margin-bottom: 50px;
  line-height: 45px;
}
section.apps .section-content {
  margin: auto;
}
@media (min-width: 768px) {
  section.apps .section-content {
    max-width: 1470px;
  }
}
section.apps ul {
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  section.apps ul {
    flex-wrap: nowrap;
    padding: 0;
  }
}
section.apps ul li {
  width: 50%;
  margin: 0 0 30px 0;
  padding: 0 20px;
  list-style-type: none;
  display: block;
  text-align: center;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.apps ul li {
    width: 25%;
    margin: 0;
    padding: 0 40px;
  }
}
section.apps ul li:last-child {
  margin: 0;
}
section.apps .image {
  background: #726D73;
  border-radius: 50%;
  width: 100%;
  height: auto;
  padding-top: 100%;
  position: relative;
  margin-bottom: 20px;
}
section.apps .image img {
  margin: auto;
  max-width: 60%;
}
@media (min-width: 768px) {
  section.apps .image img {
    max-width: 100%;
  }
}
section.apps .image span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section.apps .title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  section.apps .title {
    font-size: 25px;
  }
}

section.team {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
section.team h4 {
  text-align: center;
  max-width: 680px;
  margin: auto;
  margin-bottom: 50px;
  line-height: 45px;
}
@media (min-width: 768px) {
  section.team .section-content {
    max-width: 1510px;
    margin: auto;
  }
}
section.team ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.team ul li {
  width: 50%;
  margin: 0 0 70px 0;
  padding: 0 20px;
  box-sizing: border-box;
  list-style-type: none;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  section.team ul li {
    width: 33.33%;
    padding: 0 40px;
  }
}
section.team ul li:last-child {
  margin: 0;
}
section.team .image {
  background: #726D73;
  border-radius: 15px;
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.team .image {
    border-radius: 30px;
  }
}
section.team .image:after {
  display: block;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  background: url(../img/global/circle-lines-white.svg) no-repeat;
  background-size: 300px 300px;
  -webkit-transform: translate(30px, -105px);
          transform: translate(30px, -105px);
}
@media (min-width: 768px) {
  section.team .image:after {
    width: 600px;
    height: 600px;
    background: url(../img/global/circle-lines-white.svg) no-repeat;
    background-size: 600px 600px;
    -webkit-transform: translate(30px, -255px);
            transform: translate(30px, -255px);
  }
}
section.team .title {
  font-family: "VCR OSD MONO";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  margin-bottom: 10px;
}
section.team .name {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (min-width: 768px) {
  section.team .name {
    font-size: 20px;
  }
}

.page.apply section.hero-standard {
  padding-bottom: 20px;
}

section.apply-primary {
  padding-bottom: 100px;
}
section.apply-primary .wrap {
  max-width: 1010px;
}

.main-articles {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .main-articles {
    padding-bottom: 100px;
  }
}
.main-articles .section-content {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  row-gap: 70px;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .main-articles .section-content {
    margin-left: -70px;
    margin-right: -70px;
  }
}
.main-articles article {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .main-articles article {
    padding: 0 70px;
  }
}
.main-articles article:nth-child(even) {
  padding-top: 40px;
}
.main-articles article .image {
  border-radius: 15px;
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-articles article .image {
    border-radius: 30px;
  }
}
.main-articles article .image:after {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 600px;
  height: 600px;
  background: url(../img/global/circle-lines-white.svg) no-repeat;
  background-size: 600px 600px;
  -webkit-transform: translate(180px, -235px);
          transform: translate(180px, -235px);
}
.main-articles article .title {
  font-size: 18px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .main-articles article .title {
    font-size: 20px;
    line-height: 36px;
  }
}
.main-articles article .title a {
  color: #fff;
  text-decoration: none;
}
.main-articles article .title a:hover {
  text-decoration: underline;
}
.main-articles article .author,
.main-articles article .content {
  display: none; 
}
.main-articles .more {
  text-align: center;
}
.main-articles .pagination {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "VCR OSD MONO";
  letter-spacing: 1px;
  text-transform: uppercase;
}
.main-articles .pagination .btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 10px 15px;
  text-decoration: none;
  margin: 0 10px;
  color: #fff;
}
.main-articles .pagination .btn:hover {
  color: #E240ED;
  border: 1px solid #E240ED;
}

.page.articles.single-post {
  padding-top: 40px;
}
.page.articles.single-post .hero-standard {
  display: none;
}
.page.articles.single-post .main-articles .section-content {
  display: block;
}
.page.articles.single-post .main-articles article {
  display: flex;
  flex-direction: column;
  max-width: 1069px;
  width: 100%;
  margin: auto;
}
.page.articles.single-post .main-articles article .author,
.page.articles.single-post .main-articles article .content {
  display: block;
}
.page.articles.single-post .main-articles article .title {
  order: 1;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}
.page.articles.single-post ul,
.page.articles.single-post ol {
  margin: 0 0 30px 0;
}

.page.articles.single-post ul + h1,
.page.articles.single-post ul + h2,
.page.articles.single-post ul + h3,
.page.articles.single-post ul + h4,
.page.articles.single-post ul + h5,
.page.articles.single-post ol + h1,
.page.articles.single-post ol + h2,
.page.articles.single-post ol + h3,
.page.articles.single-post ol + h4,
.page.articles.single-post ol + h5 {
  margin-top: 50px;
}

.page.articles.single-post p + h1,
.page.articles.single-post p + h2,
.page.articles.single-post p + h3,
.page.articles.single-post p + h4,
.page.articles.single-post p + h5 {
  margin-top: 50px;
}

.page.articles.single-post ul li,
.page.articles.single-post ol li {
  margin: 0 0 10px 0;
}

@media (min-width: 768px) {
  .page.articles.single-post .main-articles article .title {
    font-size: 35px;
    line-height: 46px;
  }
}
.page.articles.single-post .main-articles article a {
  order: 3;
}
.page.articles.single-post .main-articles article .author {
  order: 2;
  margin-bottom: 30px;
}
.page.articles.single-post .main-articles article .content {
  order: 4;
}

.page.contact section.gradient-bar {
  padding: 19px 0;
  font-size: 18px;
}
.page.contact section.gradient-bar i.star {
  width: 20px;
  height: 20px;
}
.page.contact + section.newsletter {
  display: none !important;
}

section.contact-primary ul,
section.contact-secondary ul {
  margin: 0 0 45px 0;
  padding: 0 0 0 35px;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  text-align: left;
}
section.contact-primary ul:before,
section.contact-secondary ul:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 23px;
  height: 23px;
  -webkit-mask-image: url(../img/global/star.svg);
  mask-image: url(../img/global/star.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #E240ED;
}
section.contact-primary ul li,
section.contact-secondary ul li {
  margin: 0 0 10px 0;
  padding: 0;
  list-style-type: none;
}
section.contact-primary .title,
section.contact-secondary .title {
  font-size: 20px;
  font-weight: 700;
}
section.contact-primary a,
section.contact-secondary a {
  color: #fff;
  text-decoration: none;
}

section.contact-primary {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  section.contact-primary .wrap {
    max-width: 1410px;
  }
}
@media (min-width: 768px) {
  section.contact-primary .section-content {
    display: flex;
    gap: 60px;
  }
}
@media (min-width: 768px) {
  section.contact-primary .map {
    width: 70%;
    position: relative;
  }
}
@media (min-width: 768px) {
  section.contact-primary .map .page-title {
    position: absolute;
    z-index: 1;
    top: -30px;
    left: 160px;
  }
}
section.contact-primary .map-wrap {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  section.contact-primary .map-wrap {
    padding-left: 26%;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  section.contact-primary .content {
    width: 30%;
  }
}
section.contact-primary .action {
  margin-top: 20px;
}
section.contact-primary .action a {
  color: #6BBAD6;
  padding-bottom: 5px;
  border-bottom: 1px solid #6BBAD6;
  margin-right: 20px;
}
section.contact-primary .action a:last-child {
  margin: 0;
}

@media (min-width: 768px) {
  section.contact-secondary .section-content {
    display: flex;
  }
}
@media (min-width: 768px) {
  section.contact-secondary .consultation,
section.contact-secondary .content {
    width: 50%;
  }
}
section.contact-secondary .consultation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 30px;
  box-sizing: border-box;
  background: #211D20;
  box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.contact-secondary .consultation {
    padding: 70px;
  }
}
section.contact-secondary .consultation:before {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 770px;
  height: 770px;
  background: url(../img/global/circle-lines.svg) no-repeat;
  background-size: 770px 770px;
  -webkit-transform: translate(-480px, 435px);
          transform: translate(-480px, 435px);
}
section.contact-secondary .consultation:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 770px;
  height: 770px;
  background: url(../img/global/circle-lines.svg) no-repeat;
  background-size: 770px 770px;
  -webkit-transform: translate(480px, -435px);
          transform: translate(480px, -435px);
}
section.contact-secondary .consultation .inner {
  width: 100%;
  max-width: 610px;
  text-align: center;
  position: relative;
  z-index: 1;
}
section.contact-secondary h3 {
  font-size: 25px;
}
section.contact-secondary .form, section.contact-secondary .wufoo-form-container {
  width: 100%;
  max-width: 440px;
  margin: auto;
}
section.contact-secondary .field {
  margin: 0 0 30px 0;
}
section.contact-secondary input[type=text],
section.contact-secondary input[type=email] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: transparent;
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  transition: all 300ms;
  width: 100%;
  box-sizing: border-box;
}
section.contact-secondary input[type=text]:focus,
section.contact-secondary input[type=email]:focus {
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 9px 0px rgba(255, 255, 255, 0.5);
}
section.contact-secondary input[type=text]::-webkit-input-placeholder, section.contact-secondary input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
section.contact-secondary input[type=text]::-moz-placeholder, section.contact-secondary input[type=email]::-moz-placeholder {
  color: #fff;
}
section.contact-secondary input[type=text]:-ms-input-placeholder, section.contact-secondary input[type=email]:-ms-input-placeholder {
  color: #fff;
}
section.contact-secondary input[type=text]::placeholder,
section.contact-secondary input[type=email]::placeholder {
  color: #fff;
}
section.contact-secondary button[type=submit] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  min-width: 230px;
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
section.contact-secondary button[type=submit]:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
section.contact-secondary button[type=submit]:hover {
  color: #fff;
}
section.contact-secondary button[type=submit]:hover:before {
  opacity: 1;
}
section.contact-secondary .content .inner {
  padding: 70px 30px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.contact-secondary .content .inner {
    padding: 70px;
  }
}
section.contact-secondary .content .inner:first-child {
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
section.contact-secondary .content ul {
  margin: 0;
}
section.contact-secondary .content ul li {
  margin: 0 0 45px 0;
}
section.contact-secondary .content ul li:last-child {
  margin: 0;
}

section.faq-collection {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.faq-collection {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  section.faq-collection .wrap {
    max-width: 1130px;
  }
}
section.faq-collection h2 {
  background: -webkit-linear-gradient(45deg, #E240ED, #6BBAD6 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
  margin: 0;
}
@media (min-width: 768px) {
  section.faq-collection h2 {
    background: -webkit-linear-gradient(45deg, #E240ED, #6BBAD6 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
section.faq-collection .accordion .single-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
section.faq-collection .accordion .single-item:hover .title, section.faq-collection .accordion .single-item.active .title {
  color: #E240ED;
}
section.faq-collection .accordion .single-item.active .title::after {
  content: "\f146";
}
section.faq-collection .accordion .title {
  font-family: "VCR OSD MONO";
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  padding: 15px 0;
  padding-right: 20px;
}
@media (min-width: 768px) {
  section.faq-collection .accordion .title {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 20px 0;
    padding-right: 20px;
  }
}
section.faq-collection .accordion .title::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f0fe";
  position: absolute;
  right: 0;
}
section.faq-collection .accordion .content {
  display: none;
}

section.guide-primary {
  padding-bottom: 100px;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  section.guide-primary {
    overflow-x: visible;
  }
}
@media (min-width: 768px) {
  section.guide-primary .wrap {
    max-width: 1130px;
  }
}
@media (min-width: 768px) {
  section.guide-primary .section-content {
    display: flex;
    align-items: center;
  }
}
section.guide-primary .image .inner {
  position: relative;
}
section.guide-primary .image .inner img {
  max-width: 150px;
  max-height: 150;
  position: relative;
  z-index: 1;
  margin: auto;
}
@media (min-width: 768px) {
  section.guide-primary .image .inner img {
    max-width: 250px;
    max-height: 250px;
    margin: 0;
  }
}
section.guide-primary .image .inner:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: auto;
  right: -180px;
  top: -40px;
  bottom: auto;
  width: 360px;
  height: 360px;
  background: url(../img/global/circle-lines-2.svg) no-repeat;
  background-size: 360px 360px;
}
section.guide-primary .form {
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  section.guide-primary .form {
    display: flex;
    gap: 35px;
  }
}
section.guide-primary .field {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  section.guide-primary .field {
    margin-bottom: 0;
  }
}
section.guide-primary input[type=text],
section.guide-primary input[type=email] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: transparent;
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  width: 100%;
  transition: all 300ms;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.guide-primary input[type=text],
section.guide-primary input[type=email] {
    min-width: 500px;
  }
}
section.guide-primary input[type=text]:focus,
section.guide-primary input[type=email]:focus {
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 9px 0px rgba(255, 255, 255, 0.5);
}
section.guide-primary input[type=text]::-webkit-input-placeholder, section.guide-primary input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
section.guide-primary input[type=text]::-moz-placeholder, section.guide-primary input[type=email]::-moz-placeholder {
  color: #fff;
}
section.guide-primary input[type=text]:-ms-input-placeholder, section.guide-primary input[type=email]:-ms-input-placeholder {
  color: #fff;
}
section.guide-primary input[type=text]::placeholder,
section.guide-primary input[type=email]::placeholder {
  color: #fff;
}
section.guide-primary button[type=submit],
section.guide-primary input[type=submit] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 768px) {
  section.guide-primary button[type=submit],
section.guide-primary input[type=submit] {
    min-width: 230px;
    width: auto;
  }
}
section.guide-primary button[type=submit]:before,
section.guide-primary input[type=submit]:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
section.guide-primary button[type=submit]:hover,
section.guide-primary input[type=submit]:hover {
  color: #fff;
}
section.guide-primary button[type=submit]:hover:before,
section.guide-primary input[type=submit]:hover:before {
  opacity: 1;
}
section.guide-primary .review p {
  font-family: "VCR OSD MONO";
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
section.guide-primary .review img {
  border-radius: 20px;
}

.active .path {
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  -webkit-animation: dash 4s ease-out 1s normal 1 forwards;
          animation: dash 4s ease-out 1s normal 1 forwards;
}

@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 822;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 822;
  }
  to {
    stroke-dashoffset: 0;
  }
}
section.hero {
  position: relative;
  padding-top: 50px;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.hero {
    padding-top: 200px;
  }
}
section.hero:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1743px;
  height: 1743px;
  background: linear-gradient(222.7deg, #000000 15.76%, rgba(33, 29, 32, 0.43) 55.27%);
  opacity: 0.6;
  z-index: 1;
  border-radius: 100%;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(510px, 355px);
          transform: translate(510px, 355px);
}
section.hero:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(112.21deg, #211D20 0%, rgba(56, 50, 55, 0) 99.35%);
}
section.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hero .wrap {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  section.hero .wrap {
    padding: 0 85px;
    max-width: 1600px;
    margin: auto;
  }
}
section.hero .section-content {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 30px 0;
}
@media (min-width: 768px) {
  section.hero .section-content {
    flex-wrap: nowrap;
    gap: 145px;
    padding: 100px 0;
  }
}
section.hero .content {
  order: 2;
  width: 100%;
}
@media (min-width: 768px) {
  section.hero .content {
    order: 1;
    display: flex;
    align-items: center;
    width: 60%;
  }
}
section.hero .image {
  order: 1;
  width: 100%;
}
@media (min-width: 768px) {
  section.hero .image {
    order: 2;
    width: 40%;
  }
}
section.hero .image img {
  width: 100%;
  max-width: 250px;
  margin: auto;
}
@media (min-width: 768px) {
  section.hero .image img {
    width: 600px;
    max-width: 100%;
  }
}
section.hero .image lottie-player {
  max-width: 270px;
  margin: auto;
}
@media (min-width: 768px) {
  section.hero .image lottie-player {
    max-width: 100%;
  }
}
@-webkit-keyframes tv {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes tv {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section.hero .tv {
  position: relative;
}
section.hero .tv img {
  position: relative;
}
section.hero .tv img:nth-child(2),
section.hero .tv img:nth-child(3) {
  position: absolute;
  top: 0;
  opacity: 0;
}
section.hero .tv img:nth-child(2) {
  -webkit-animation: tv 300ms ease-in 4s normal;
          animation: tv 300ms ease-in 4s normal;
}
section.hero .tv img:nth-child(3) {
  -webkit-animation: tv 300ms ease-in 8s normal;
          animation: tv 300ms ease-in 8s normal;
}
section.hero h1 {
  font-size: 25px;
  line-height: 41px;
}
@media (min-width: 768px) {
  section.hero h1 {
    font-size: 45px;
    line-height: 65px;
  }
}
section.hero ul {
  margin: 0;
  padding: 0;
  display: flex;
}
section.hero ul li {
  margin: 0 20px 0 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
section.hero ul li:last-child {
  margin: 0;
}
section.hero a.button {
  padding: 15px 10px;
}
@media (min-width: 768px) {
  section.hero a.button {
    padding: 15px 30px;
  }
}

section.gradient-bar {
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 1px;
}
section.gradient-bar ul {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  section.gradient-bar ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
section.gradient-bar ul li {
  margin: 0 20px 0 0;
  padding: 0;
  list-style-type: none;
  display: block;
}
@media (min-width: 768px) {
  section.gradient-bar ul li {
    display: inline-block;
  }
}
section.gradient-bar ul li:last-child {
  margin: 0;
}
section.gradient-bar i.star {
  width: 35px;
  height: 35px;
  background-color: #fff;
}

section.primary {
  padding: 50px 0;
}
@media (min-width: 768px) {
  section.primary {
    padding: 150px 0;
  }
}
@media (min-width: 768px) {
  section.primary .wrap {
    padding: 0 85px;
    max-width: 1300px;
    margin: auto;
  }
}
section.primary .section-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
section.primary .section-content:before {
  content: "";
  position: absolute;
  margin: auto;
  left: 80px;
  right: auto;
  top: 410px;
  bottom: auto;
  width: 67px;
  height: 88px;
  background: url(../img/global/stars-1.svg) no-repeat;
  background-size: 67px 88px;
  z-index: 1;
  display: none;
}
@media (min-width: 768px) {
  section.primary .section-content:before {
    display: block;
  }
}
section.primary .section-content:after {
  content: "";
  position: absolute;
  margin: auto;
  left: -250px;
  right: auto;
  top: 85px;
  bottom: auto;
  width: 490px;
  height: 490px;
  background: url(../img/global/circle-lines-2.svg) no-repeat;
  background-size: 490px 490px;
  display: none;
}
@media (min-width: 768px) {
  section.primary .section-content:after {
    display: block;
  }
}
section.primary h2 {
  font-size: 25px;
  line-height: 41px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  section.primary h2 {
    max-width: 935px;
    margin-right: 130px;
    font-size: 45px;
    line-height: 65px;
    padding: 3px 20px;
    background: #2C272B;
  }
}
section.primary .display3 {
  margin-bottom: 30px;
  position: relative;
  /*
  &:after {
  	content: '';
  	position: absolute;
  	margin: auto;
      left: 230px;
      right: auto;
      top: 120px;
      bottom: auto;
  	width: 110px;
  	height: 106px;
  	background: url(../img/global/sketch-line-1.svg) no-repeat;
  	background-size: 110px 106px;
  	display: none;

  	@include mixins.tablet-and-up {
  		display: block;
  	}			
  }
  */
}
@media (min-width: 768px) {
  section.primary .display3 {
    max-width: 680px;
    margin-right: 130px;
  }
}
section.primary .content {
  max-width: 430px;
  text-align: justify;
  position: relative;
}
section.primary .content svg {
  position: absolute;
  left: -160px;
  display: none;
}
@media (min-width: 768px) {
  section.primary .content svg {
    display: inline-block;
  }
}

section.cta {
  text-align: center;
  padding-bottom: 40px;
}
section.cta .section-content {
  max-width: 1143px;
  margin: auto;
}
section.cta h2 {
  font-size: 25px;
  line-height: 42px;
}
@media (min-width: 768px) {
  section.cta h2 {
    font-size: 35px;
    line-height: 62px;
  }
}
section.cta .display3 {
  /*
  &:after {
  	display: block;
  	content: '';
  	margin: auto;
  	margin-top: 30px;
  	width: 64px;
  	height: 298px;
  	background: url(../img/global/sketch-line-2.svg) no-repeat;
  	background-size: 64px 298px;
  }
  */
}
section.cta svg {
  display: inline-block;
}

@-webkit-keyframes row1 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(10%, 0);
            transform: translate(10%, 0);
  }
}

@keyframes row1 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(10%, 0);
            transform: translate(10%, 0);
  }
}
@-webkit-keyframes row2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-10%, 0);
            transform: translate(-10%, 0);
  }
}
@keyframes row2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-10%, 0);
            transform: translate(-10%, 0);
  }
}
@-webkit-keyframes row3 {
  0% {
    -webkit-transform: translate(-20%, 0);
            transform: translate(-20%, 0);
  }
  100% {
    -webkit-transform: translate(4%, 0);
            transform: translate(4%, 0);
  }
}
@keyframes row3 {
  0% {
    -webkit-transform: translate(-20%, 0);
            transform: translate(-20%, 0);
  }
  100% {
    -webkit-transform: translate(4%, 0);
            transform: translate(4%, 0);
  }
}
section.solutions {
  padding: 0 0 40px 0;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  section.solutions {
    padding: 0 0 150px 0;
  }
}
@media (min-width: 768px) {
  section.solutions .wrap {
    max-width: 1470px;
  }
}
section.solutions h4 {
  text-align: center;
}
section.solutions .section-content {
  font-size: 23px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  section.solutions .section-content {
    font-size: 46px;
  }
}
section.solutions.active .row1 {
  white-space: nowrap;
  -webkit-animation: row1 3s linear 1 forwards;
          animation: row1 3s linear 1 forwards;
}
section.solutions.active .row2 {
  white-space: nowrap;
  -webkit-animation: row2 3s linear 1 forwards;
          animation: row2 3s linear 1 forwards;
}
section.solutions.active .row3 {
  white-space: nowrap;
  -webkit-animation: row3 3s linear 1 forwards;
          animation: row3 3s linear 1 forwards;
}
section.solutions ul {
  margin: 0;
  padding: 0;
}
section.solutions ul li {
  margin: 0 30px 40px 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
section.solutions .more {
  text-align: center;
}

section.consultation {
  background: #211D20;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.consultation {
    padding: 130px 0;
    max-height: 300px;    
  }
}
section.consultation:before {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 770px;
  height: 770px;
  background: url(../img/global/circle-lines.svg) no-repeat;
  background-size: 770px 770px;
  -webkit-transform: translate(-480px, 275px);
          transform: translate(-480px, 275px);
}
section.consultation:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 770px;
  height: 770px;
  background: url(../img/global/circle-lines.svg) no-repeat;
  background-size: 770px 770px;
  -webkit-transform: translate(480px, -275px);
          transform: translate(480px, -275px);
}
section.consultation .section-content {
  position: relative;
  z-index: 1;
}
section.consultation p {
  line-height: 30px;
  text-transform: uppercase;
  max-width: 720px;
  margin: auto;
  margin-bottom: 30px;
}
section.consultation .form {
  margin-top: 30px;
}
@media (min-width: 768px) {
  section.consultation .form {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 35px;
  }
}
section.consultation .field {
  margin: 0 0 30px 0;
}
@media (min-width: 768px) {
  section.consultation .field {
    margin: 0;
  }
}
section.consultation input[type=text],
section.consultation input[type=email] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: transparent;
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  width: 100%;
  transition: all 300ms;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.consultation input[type=text],
section.consultation input[type=email] {
    min-width: 350px;
    width: auto;
  }
}
section.consultation input[type=text]:focus,
section.consultation input[type=email]:focus {
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 9px 0px rgba(255, 255, 255, 0.5);
}
section.consultation input[type=text]::-webkit-input-placeholder, section.consultation input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
section.consultation input[type=text]::-moz-placeholder, section.consultation input[type=email]::-moz-placeholder {
  color: #fff;
}
section.consultation input[type=text]:-ms-input-placeholder, section.consultation input[type=email]:-ms-input-placeholder {
  color: #fff;
}
section.consultation input[type=text]::placeholder,
section.consultation input[type=email]::placeholder {
  color: #fff;
}
section.consultation button[type=submit] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-width: 230px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.consultation button[type=submit] {
    width: auto;
  }
}
section.consultation button[type=submit]:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
section.consultation button[type=submit]:hover {
  color: #fff;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
}
section.consultation button[type=submit]:hover:before {
  opacity: 1;
}

section.secondary {
  padding: 40px 0;
}
@media (min-width: 768px) {
  section.secondary {
    padding: 150px 0;
  }
}
@media (min-width: 768px) {
  section.secondary .wrap {
    max-width: 1300px;
  }
}
section.secondary .section-content {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  section.secondary .section-content {
    flex-wrap: nowrap;
    gap: 100px;
  }
}
section.secondary .content {
  width: 100%;
  order: 2;
}
@media (min-width: 768px) {
  section.secondary .content {
    width: 40%;
    order: 1;
    display: flex;
    align-items: center;
    text-align: justify;
  }
}
section.secondary .image {
  width: 100%;
  order: 1;
}
@media (min-width: 768px) {
  section.secondary .image {
    width: 60%;
    order: 2;
  }
}
section.secondary .image img {
  width: 100%;
  max-width: 250px;
  margin: auto;
}
@media (min-width: 768px) {
  section.secondary .image img {
    width: 600px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  section.good-fit .wrap {
    max-width: 1300px;
  }
}
section.good-fit h4 {
  text-align: center;
  margin-bottom: 50px;
}
section.good-fit .section-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-left: -30px;
  margin-right: -30px;
}
@media (min-width: 768px) {
  section.good-fit .section-content {
    margin: 0;
    margin-bottom: 40px;
  }
}
section.good-fit .single-item {
  width: 50%;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  section.good-fit .single-item {
    width: 33%;
    box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
section.good-fit .single-item.kurt-message {
  width: 100%;
}
@media (min-width: 768px) {
  section.good-fit .single-item.kurt-message {
    width: 33%;
  }
}
@media (min-width: 768px) {
  section.good-fit .single-item:nth-child(1), section.good-fit .single-item:nth-child(4) {
    box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.3), 1px 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
section.good-fit ul {
  margin: 0;
  padding: 30px 30px;
}
@media (min-width: 768px) {
  section.good-fit ul {
    padding: 50px;
  }
}
section.good-fit ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}
section.good-fit ul li:last-child {
  margin: 0;
}
section.good-fit .number {
  font-family: "Rubik Mono One", sans-serif;
  font-size: 40px;
}
@media (min-width: 768px) {
  section.good-fit .number {
    font-size: 80px;
  }
}
section.good-fit .number i.star {
  margin-left: 5px;
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  section.good-fit .number i.star {
    width: 25px;
    height: 25px;
  }
}
section.good-fit .good-fit-type p {
  text-transform: uppercase;
  margin: 0;
  font-size: 14px;
  line-height: 25px;
}
@media (min-width: 768px) {
  section.good-fit .good-fit-type p {
    font-size: 22px;
    line-height: 35px;
  }
}
section.good-fit .kurt-signature {
  margin-bottom: 20px;
}
section.good-fit .more {
  text-align: center;
}

section.brands {
  padding: 40px 0 40px 0;
}
@media (min-width: 768px) {
  section.brands {
    padding: 150px 0 100px 0;
  }
}
section.brands h4 {
  text-align: center;
  margin-bottom: 50px;
}
section.brands ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  section.brands ul {
    flex-wrap: nowrap;
  }
}
section.brands ul li {
  margin: 0;
  padding: 30px;
  box-sizing: border-box;
  list-style-type: none;
  width: 50%;
  box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  section.brands ul li {
    width: 20%;
  }
}
section.brands ul li:last-child {
  box-shadow: none;
  width: 100%;
}
@media (min-width: 768px) {
  section.brands ul li:last-child {
    width: 20%;
  }
}

@-webkit-keyframes projectImg {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

@keyframes projectImg {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  section.projects .wrap {
    max-width: 1300px;
  }
}
section.projects h4 {
  text-align: center;
  margin-bottom: 50px;
}
section.projects .single-item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  section.projects .single-item {
    display: flex;
    margin-bottom: 130px;
  }
}
@media (min-width: 768px) {
  section.projects .single-item:nth-child(even) .content {
    order: 1;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  section.projects .single-item:nth-child(even) .image {
    order: 2;
  }
}
@media (min-width: 768px) {
  section.projects .content,
section.projects .image {
    width: 50%;
  }
}
section.projects img {
  box-shadow: 15px 15px 0 0 #424040;
}
@media (min-width: 768px) {
  section.projects img {
    max-width: 580px;
  }
}
section.projects .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.projects .image a {
  display: block;
  position: relative;
}
section.projects .image a:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/projects/animation.svg);
  background-size: cover;
  opacity: 0;
}
section.projects .image a:hover:before {
  -webkit-animation: projectImg 1s ease-in;
          animation: projectImg 1s ease-in;
}
section.projects .content {
  text-align: justify;
  padding: 30px 0;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.projects .content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: justify;
    padding: 50px;
    box-sizing: border-box;
  }
}
section.projects .project-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  section.projects .project-title {
    font-size: 46px;
    line-height: 66px;
  }
}
section.projects .description,
section.projects .description p {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  text-align: left;
}
@media (min-width: 768px) {
  section.projects .description,
section.projects .description p {
    font-size: 26px;
    line-height: 45px;
    max-width: 390px;
  }
}
section.projects p {
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  section.projects p {
    margin: 0 0 30px 0;
  }
}
section.projects br {
  display: none;
}
@media (min-width: 768px) {
  section.projects br {
    display: block;
  }
}

section.testimonials {
  padding: 70px 0 150px 0;
}
@media (min-width: 768px) {
  section.testimonials {
    padding: 100px 0;
  }
}
@media (min-width: 768px) {
  section.testimonials .wrap {
    max-width: 1400px;
  }
}
section.testimonials h4 {
  text-align: center;
  margin-bottom: 50px;
}
section.testimonials .section-content {
  display: flex;
  flex-wrap: wrap;
}
section.testimonials .single-item {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 40px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.testimonials .single-item {
    width: 31.3%;
    padding-bottom: 60px;
  }
}
section.testimonials .quote {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
}
section.testimonials .quote .inner {
  padding: 30px;
}
section.testimonials .quote p {
  line-height: 27px;
  font-weight: 300;
  margin: 0 0 20px 0;
}
section.testimonials .quote p:last-child {
  margin: 0;
}
section.testimonials .author {
  display: flex;
  gap: 10px;
}
section.testimonials .author .image {
  width: 20%;
}
section.testimonials .author .image img {
  width: 64px;
  height: 64px;
  border-radius: 64px;
}
section.testimonials .author ul.details {
  width: 80%;
  margin: 0;
  padding: 0;
}
section.testimonials .author ul.details li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
section.testimonials .author ul.details .name {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
section.testimonials .author ul.details .title {
  font-family: "VCR OSD MONO";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
}
section.testimonials .more {
  text-align: center;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
section.podcast {
  padding: 90px 0 40px 0;
  background: #211D20;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media (min-width: 768px) {
  section.podcast {
    padding: 150px 0;
  }
}
section.podcast .badge {
  position: absolute;
  top: -80px;
  right: 30px;
  text-align: center;
  font-family: "VCR OSD MONO";
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 17px;
  color: #2C272B;
  width: 160px;
  height: 160px;
  display: inline-block;
}
@media (min-width: 768px) {
  section.podcast .badge {
    top: -115px;
    right: 230px;
    font-size: 16px;
    line-height: 27px;
    width: 230px;
    height: 230px;
  }
}
section.podcast .badge:before {
  display: block;
  content: "";
  position: absolute;
  text-align: center;
  font-family: "VCR OSD MONO";
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 27px;
  color: #2C272B;
  width: 160px;
  height: 160px;
  -webkit-mask-image: url(../img/global/podcast.svg);
  mask-image: url(../img/global/podcast.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #C4C4C4;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@media (min-width: 768px) {
  section.podcast .badge:before {
    width: 230px;
    height: 230px;
  }
}
section.podcast .badge .inner {
  position: relative;
  z-index: 1;
  top: 50%;
  -webkit-transform: rotate(20deg) translate(-10px, -50%);
          transform: rotate(20deg) translate(-10px, -50%);
}
section.podcast p {
  font-weight: 300;
  text-transform: uppercase;
  max-width: 1080px;
  margin: auto;
}
section.podcast .disclaimer,
section.podcast .disclaimer p {
  font-family: "VCR OSD MONO";
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 20px;
}
section.podcast .listen-on ul {
  margin: 25px 0 30px 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 768px) {
  section.podcast .listen-on ul {
    margin: 50px 0;
    gap: 30px;
  }
}
section.podcast .listen-on ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
section.podcast .listen-on ul li.platform {
  width: 50%;
  max-width: 210px;
}
section.podcast .listen-on ul i {
  font-size: 30px;
}
@media (min-width: 768px) {
  section.podcast .listen-on ul i {
    font-size: 40px;
  }
}
section.podcast .listen-on ul a {
  display: block;
  border-radius: 13px;
  padding: 13px 10px 8px 10px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  outline: none;
  position: relative;
}
section.podcast .listen-on ul a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 13px;
  padding: 1;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
section.podcast .listen-on ul a:hover:before {
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
}
section.podcast .listen-on ul .inner {
  display: flex;
  gap: 10px;
}
section.podcast .listen-on ul .inner .image {
  width: 20%;
}
section.podcast .listen-on ul .inner ul.details {
  width: 80%;
  margin: 0;
  padding: 0;
  display: block;
}
section.podcast .listen-on ul .inner ul.details li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "VCR OSD MONO";
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  text-align: left;
}
@media (min-width: 768px) {
  section.podcast .listen-on ul .inner ul.details li {
    font-size: 15px;
  }
}
section.podcast .listen-on ul .inner ul.details .sub {
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  section.podcast .listen-on ul .inner ul.details .sub {
    font-size: 10px;
  }
}

section.technology {
  padding: 70px 0 0 0;
}
section.technology h4 {
  text-align: center;
  margin-bottom: 50px;
}
section.technology ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
section.technology ul li {
  margin: 0;
  padding: 30px;
  box-sizing: border-box;
  list-style-type: none;
  width: 50%;
  box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  section.technology ul li {
    width: 25%;
  }
}
section.technology ul li:last-child {
  box-shadow: none;
}

.page.page404 section.hero-standard {
  padding-bottom: 40px;
}

section.page404-primary {
  padding-bottom: 100px;
}
section.page404-primary .wrap {
  max-width: 870px;
}
section.page404-primary .form {
  margin-top: 30px;
  margin-bottom: 50px;
  display: flex;
  gap: 35px;
}
section.page404-primary input[type=text],
section.page404-primary input[type=email] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: transparent;
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  min-width: 430px;
  transition: all 300ms;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.page404-primary input[type=text],
section.page404-primary input[type=email] {
    min-width: 430px;
    width: auto;
  }
}
section.page404-primary input[type=text]:focus,
section.page404-primary input[type=email]:focus {
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 9px 0px rgba(255, 255, 255, 0.5);
}
section.page404-primary input[type=text]::-webkit-input-placeholder, section.page404-primary input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
section.page404-primary input[type=text]::-moz-placeholder, section.page404-primary input[type=email]::-moz-placeholder {
  color: #fff;
}
section.page404-primary input[type=text]:-ms-input-placeholder, section.page404-primary input[type=email]:-ms-input-placeholder {
  color: #fff;
}
section.page404-primary input[type=text]::placeholder,
section.page404-primary input[type=email]::placeholder {
  color: #fff;
}
section.page404-primary button[type=submit],
section.page404-primary input[type=submit] {
  outline: none;
  border: 2px solid #fff;
  border-radius: 90px;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  font-family: "VCR OSD MONO";
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 25px;
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.page404-primary button[type=submit],
section.page404-primary input[type=submit] {
    min-width: 230px;
    width: auto;
  }
}
section.page404-primary button[type=submit]:before,
section.page404-primary input[type=submit]:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #6BBAD6, #E240ED);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
section.page404-primary button[type=submit]:hover,
section.page404-primary input[type=submit]:hover {
  color: #fff;
}
section.page404-primary button[type=submit]:hover:before,
section.page404-primary input[type=submit]:hover:before {
  opacity: 1;
}

section.resources-primary {
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  section.resources-primary .section-content {
    display: flex;
    gap: 60px;
  }
}
section.resources-primary .video {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  section.resources-primary .video {
    margin-bottom: 0;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
section.resources-primary .video .inner {
  width: 100%;
}
@media (min-width: 768px) {
  section.resources-primary .content {
    width: 40%;
  }
}

section.resources-collection {
  padding-bottom: 100px;
}
section.resources-collection .section-content {
  display: flex;
  flex-wrap: wrap;
  row-gap: 70px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  section.resources-collection .section-content {
    margin-left: -30px;
    margin-right: -30px;
  }
}
section.resources-collection article {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.resources-collection article {
    width: 33.33%;
    padding: 0 30px;
  }
}
section.resources-collection .image, section.resources-collection .title, section.resources-collection .sub-title {
  margin-bottom: 20px;
}
section.resources-collection .image {
  position: relative;
}
section.resources-collection .image span.roi {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 1px;
  font-family: "VCR OSD MONO";
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  padding: 5px;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
}
@media (min-width: 768px) {
  section.resources-collection .image span.roi {
    top: 20px;
    right: 20px;
    position: absolute;
  }
}
section.resources-collection .image img {
  border-radius: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  section.resources-collection .image img {
    border-radius: 30px;
    margin-bottom: 0;
  }
}
section.resources-collection .title {
  font-size: 18px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  section.resources-collection .title {
    font-size: 20px;
  }
}
section.resources-collection .title a {
  color: #fff;
  text-decoration: none;
}
section.resources-collection .title a:hover {
  text-decoration: underline;
}
section.resources-collection .action {
  margin-bottom: 20px;
}
section.resources-collection .action:last-child {
  margin-bottom: 0;
}

.page.reviews section.hero-standard {
  padding-bottom: 50px;
}
.page.reviews section.testimonials {
  padding-top: 0;
}

section.scripts-primary {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  section.scripts-primary .wrap {
    max-width: 1130px;
  }
}
section.scripts-primary .image {
  margin: 0 0 30px 0;
}
section.scripts-primary .image img {
  border-radius: 15px;
}
@media (min-width: 768px) {
  section.scripts-primary .image img {
    border-radius: 20px;
  }
}

section.scripts-collection {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.scripts-collection {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  section.scripts-collection .wrap {
    max-width: 1130px;
  }
}
@media (min-width: 768px) {
  section.scripts-collection .section-content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 70px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
section.scripts-collection article {
  margin-bottom: 50px;
}
section.scripts-collection article:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  section.scripts-collection article {
    width: 50%;
    padding: 0 30px;
    box-sizing: border-box;
    margin-bottom: 0;
  }
}
section.scripts-collection .image, section.scripts-collection .title, section.scripts-collection .sub-title {
  margin-bottom: 20px;
}
section.scripts-collection .image {
  display: block;
  background: #726D73;
  border-radius: 15px;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  padding: 30px;
  box-sizing: border-box;
  max-height: 280px;
}
@media (min-width: 768px) {
  section.scripts-collection .image {
    border-radius: 30px;
  }
}
section.scripts-collection .image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #726D73 0%, rgba(114, 109, 115, 0) 100%);
}

.page.shopify-plus section.hero-standard {
  padding-bottom: 20px;
}

section.shopify-plus-primary {
  padding-bottom: 100px;
}
section.shopify-plus-primary .wrap {
  max-width: 1010px;
}

section.shopify-plus-features {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  section.shopify-plus-features {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  section.shopify-plus-features .wrap {
    max-width: 1300px;
  }
}
section.shopify-plus-features h4 {
  text-align: center;
  margin-bottom: 50px;
}
section.shopify-plus-features .section-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-left: -30px;
  margin-right: -30px;
}
@media (min-width: 768px) {
  section.shopify-plus-features .section-content {
    margin: 0;
    margin-bottom: 40px;
  }
}
section.shopify-plus-features .single-item {
  width: 50%;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  section.shopify-plus-features .single-item {
    width: 33%;
    box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 768px) {
  section.shopify-plus-features .single-item:nth-child(1), section.shopify-plus-features .single-item:nth-child(4) {
    box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.3), 1px 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
section.shopify-plus-features ul {
  margin: 0;
  padding: 20px 30px;
}
@media (min-width: 768px) {
  section.shopify-plus-features ul {
    padding: 20px 50px;
  }
}
section.shopify-plus-features ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}
section.shopify-plus-features ul li:last-child {
  margin: 0;
}
section.shopify-plus-features .number {
  font-family: "Rubik Mono One", sans-serif;
  font-size: 40px;
}
@media (min-width: 768px) {
  section.shopify-plus-features .number {
    font-size: 80px;
  }
}
section.shopify-plus-features .number i.star {
  margin-left: 5px;
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  section.shopify-plus-features .number i.star {
    width: 25px;
    height: 25px;
  }
}
section.shopify-plus-features .good-fit-type p {
  text-transform: uppercase;
  margin: 0;
  font-size: 14px;
  line-height: 25px;
}
@media (min-width: 768px) {
  section.shopify-plus-features .good-fit-type p {
    font-size: 20px;
    line-height: 35px;
  }
}

section.shopify-plus-collection {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  section.shopify-plus-collection {
    padding-bottom: 100px;
  }
}
section.shopify-plus-collection .section-content {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  row-gap: 70px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  section.shopify-plus-collection .section-content {
    padding-bottom: 90px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
section.shopify-plus-collection .content {
  text-align: center;
  max-width: 960px;
  margin: auto;
}
section.shopify-plus-collection article {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.shopify-plus-collection article {
    width: 33.33%;
    padding: 0 30px;
  }
}
section.shopify-plus-collection .image, section.shopify-plus-collection .title, section.shopify-plus-collection .sub-title {
  margin-bottom: 20px;
}
section.shopify-plus-collection .image {
  position: relative;
}
section.shopify-plus-collection .image span.roi {
  border: 1px solid #fff;
  border-radius: 1px;
  font-family: "VCR OSD MONO";
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  padding: 5px;
  background: linear-gradient(45deg, #E240ED, #6BBAD6);
  position: absolute;
  top: 20px;
  right: 20px;
}
section.shopify-plus-collection .image img {
  border-radius: 15px;
}
@media (min-width: 768px) {
  section.shopify-plus-collection .image img {
    border-radius: 30px;
  }
}
section.shopify-plus-collection .title {
  font-size: 20px;
  text-transform: uppercase;
}
section.shopify-plus-collection .title a {
  color: #fff;
  text-decoration: none;
}
section.shopify-plus-collection .title a:hover {
  text-decoration: underline;
}
section.shopify-plus-collection .action {
  margin-bottom: 20px;
}
section.shopify-plus-collection .action:last-child {
  margin-bottom: 0;
}

section.alt {
  text-align: center;
  background: #211D20;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 40px 0;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  section.alt {
    padding: 70px 0;
  }
}
@media (min-width: 768px) {
  section.alt .wrap {
    max-width: 1010px;
  }
}
section.alt .display3 {
  margin-bottom: 50px;
}
section.alt .three-col {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 768px) {
  section.alt .three-col {
    flex-wrap: nowrap;
  }
}
section.alt .three-col div {
  width: 50%;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  section.alt .three-col div {
    width: 33.33%;
    margin-bottom: 0;
  }
}
section.alt .three-col div:last-child {
  margin-bottom: 0;
}
section.alt .three-col img {
  border-radius: 5px;
}

.page.single-script {
  padding-bottom: 100px;
}
.page.single-script .wrap {
  max-width: 1069px;
}
.page.single-script .header {
  padding: 50px 0 0 0;
}
.page.single-script .breadcrumbs {
  margin-bottom: 30px;
}
.page.single-script .copy {
  margin-bottom: 30px;
}
.page.single-script ul.socials {
  margin: 0;
  padding: 0;
}
.page.single-script ul.socials li {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0;
  list-style-type: none;
}
.page.single-script ul.socials li:first-child {
  margin: 0;
}
.page.single-script ul.socials i {
  font-size: 18px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page.single-script ul.socials i.fa-youtube, .page.single-script ul.socials i.fa-twitter {
  left: 1px;
}
.page.single-script ul.socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  border: 1px solid #fff;
  text-align: center;
  position: relative;
  color: #fff;
}
.page.single-script ul.socials a:hover {
  border: 1px solid #E240ED;
  color: #E240ED;
}

.page.single-support {
  padding-bottom: 30px;
}
.page.single-support .wrap {
  max-width: 1069px;
}
.page.single-support .header {
  padding: 50px 0 0 0;
}
.page.single-support .breadcrumbs {
  margin-bottom: 30px;
}
.page.single-support .announcement {
  border: 1px dashed #fff;
  padding: 20px;
  margin-bottom: 30px;
}
.page.single-support .announcement p:last-child {
  margin: 0;
}

section.support-nav {
  background: #211D20;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 0;
  margin-bottom: 70px;
}
section.support-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
section.support-nav ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
section.support-nav a {
  color: #fff;
  font-family: "VCR OSD MONO";
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
}
section.support-nav a:hover {
  color: #E240ED;
}
section.support-nav li:after {
  content: "/";
  display: inline-block;
  margin: 0 20px;
  color: #747474;
}
section.support-nav li:last-child:after {
  display: none;
}

section.support-section {
  padding-bottom: 60px;
}
section.support-section .wrap {
  max-width: 1069px;
}
section.support-section h3 {
  background: -webkit-linear-gradient(45deg, #E240ED, #6BBAD6 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
section.support-section ul li, section.support-section ol li {
  margin-bottom: 10px;
  line-height: 30px;
}
section.support-section ul li {
  list-style-type: disc;
}
section.support-section ul li::marker {
  color: #E240ED;
}
section.support-section .accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 60px;
}
section.support-section .accordion .single-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
section.support-section .accordion .single-item:hover .title, section.support-section .accordion .single-item.active .title {
  color: #E240ED;
}
section.support-section .accordion .single-item.active .title::after {
  content: "\f146";
}
section.support-section .accordion .title {
  font-family: "VCR OSD MONO";
  letter-spacing: 2px;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  padding: 20px 0;
  padding-right: 40px;
  line-height: 28px;
}
section.support-section .accordion .title::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f0fe";
  position: absolute;
  right: 0;
}
section.support-section .accordion .content {
  display: none;
}

.page.single {
  padding-bottom: 100px;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
}
.page.single .wrap {
  max-width: 1130px;
}
.page.single .header {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .page.single .header {
    padding: 50px 0;
  }
}
.page.single .image {
  background: #726D73;
  border-radius: 15px;
  width: 100%;
  height: auto;
  padding-top: 60%;
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page.single .image {
    border-radius: 30px;
  }
}
.page.single .image:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 600px;
  height: 600px;
  background: url(../img/global/circle-lines-white.svg) no-repeat;
  background-size: 600px 600px;
  -webkit-transform: translate(180px, -235px);
          transform: translate(180px, -235px);
}
.page.single ul.socials {
  margin: 0;
  padding: 0;
}
.page.single ul.socials li {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0;
  list-style-type: none;
}
.page.single ul.socials li:first-child {
  margin: 0;
}
.page.single ul.socials i {
  font-size: 18px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page.single ul.socials i.fa-youtube, .page.single ul.socials i.fa-twitter {
  left: 1px;
}
.page.single ul.socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  border: 1px solid #fff;
  text-align: center;
  position: relative;
  color: #fff;
}
.page.single ul.socials a:hover {
  border: 1px solid #E240ED;
  color: #E240ED;
}

.related-articles {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .related-articles {
    padding: 70px 0;
  }
}
.related-articles h4 {
  text-align: center;
  margin: 0 0 50px 0;
}
.related-articles .section-content {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .related-articles .section-content {
    margin-left: -70px;
    margin-right: -70px;
    margin-bottom: 70px;
  }
}
.related-articles article {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .related-articles article {
    padding: 0 70px;
  }
}
.related-articles article .image {
  background: #726D73;
  border-radius: 15px;
  width: 100%;
  height: auto;
  padding-top: 60%;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .related-articles article .image {
    border-radius: 30px;
  }
}
.related-articles article .image:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 600px;
  height: 600px;
  background: url(../img/global/circle-lines-white.svg) no-repeat;
  background-size: 600px 600px;
  -webkit-transform: translate(180px, -235px);
          transform: translate(180px, -235px);
}
.related-articles article .title {
  font-size: 18px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .related-articles article .title {
    font-size: 20px;
    line-height: 36px;
  }
}
.related-articles article .title a {
  color: #fff;
  text-decoration: none;
}
.related-articles article .title a:hover {
  text-decoration: underline;
}

.page.work .hero-standard {
  padding-bottom: 40px;
}

section.work-primary {
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  section.work-primary {
    padding-bottom: 80px;
  }
}
section.work-primary ul {
  margin: 0;
  padding: 0;
}
section.work-primary ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
section.work-primary h4 {
  margin-bottom: 50px;
}
section.work-primary .number {
  font-family: "Rubik Mono One", sans-serif;
  font-size: 40px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  section.work-primary .number {
    font-size: 80px;
  }
}
section.work-primary .number span {
  font-size: 25px;
  color: #E240ED;
}
@media (min-width: 768px) {
  section.work-primary .number span {
    font-size: 50px;
  }
}
section.work-primary .section-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-left: -30px;
  margin-right: -30px;
}
@media (min-width: 768px) {
  section.work-primary .section-content {
    flex-wrap: nowrap;
    margin: 0;
    margin-bottom: 40px;
  }
}
section.work-primary .single-item {
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
  box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  section.work-primary .single-item {
    width: 33.33%;
    padding: 20px 0;
  }
}
section.work-primary .single-item:nth-child(2) {
  box-shadow: none;
}
@media (min-width: 768px) {
  section.work-primary .single-item:nth-child(2) {
    box-shadow: 1px 0 0 0 rgba(255, 255, 255, 0.2);
  }
}
section.work-primary .single-item:last-child {
  box-shadow: none;
  width: 100%;
}
@media (min-width: 768px) {
  section.work-primary .single-item:last-child {
    width: 33.33%;
  }
}
section.work-primary .single-item p {
  margin: 0;
}

@keyframes projectImg {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
section.work-collection h2 {
  background: -webkit-linear-gradient(45deg, #E240ED, #6BBAD6 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
  margin-bottom: 70px;
}
section.work-collection .wrap {
  max-width: 1300px;
}
section.work-collection .single-item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  section.work-collection .single-item {
    display: flex;
    margin-bottom: 130px;
  }
}
@media (min-width: 768px) {
  section.work-collection .content,
section.work-collection .image {
    width: 50%;
  }
}
section.work-collection .image a {
  display: block;
  position: relative;
}
section.work-collection .image a:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/projects/animation.svg);
  background-size: cover;
  opacity: 0;
}
section.work-collection .image a:hover:before {
  -webkit-animation: projectImg 1s ease-in;
          animation: projectImg 1s ease-in;
}
section.work-collection img {
  box-shadow: 15px 15px 0 0 #424040;
}
@media (min-width: 768px) {
  section.work-collection img {
    max-width: 580px;
  }
}
section.work-collection .content {
  padding: 30px 0;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  section.work-collection .content {
    display: flex;
    align-items: center;
    padding: 0 90px;
    box-sizing: border-box;
  }
}
section.work-collection .project-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  section.work-collection .project-title {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 20px;
  }
}
section.work-collection .description,
section.work-collection .description p {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  text-align: left;
}
@media (min-width: 768px) {
  section.work-collection .description,
section.work-collection .description p {
    font-size: 18px;
    line-height: 35px;
    max-width: 390px;
  }
}
section.work-collection p {
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  section.work-collection p {
    margin: 0 0 30px 0;
  }
}
section.work-collection br {
  display: none;
}
@media (min-width: 768px) {
  section.work-collection br {
    display: block;
  }
}

#study.full {
  max-width: 1200px;
  margin: 40px auto;
  display: block;
}
#study #studyhead {
  background-size: cover;
  height: 40vw;
  max-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#study #studyhead h1 {
  text-align: center;
  color: #fefefe;
  position: relative;
  margin: 0;
  text-shadow: 0px 0px 0.5em black;
  font-size: 25px;
  line-height: 40px;
}
@media (min-width: 768px) {
  #study #studyhead h1 {
    font-size: 35px;
    line-height: 61px;
  }
}
#study .stats {
  max-width: 840px;
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}
#study .stats div {
  width: 30%;
  font-size: 22px;
  text-align: center;
  line-height: 1em;
}
@media (min-width: 768px) {
  #study .stats div {
    font-size: 4em;
    line-height: 1em;
  }
}
#study .stats span {
  display: block;
  font-size: 14px;
  width: 90%;
  margin: auto;
  line-height: 1.1em;
}
@media (min-width: 768px) {
  #study .stats span {
    font-size: 1.12rem;
    line-height: 1.1em;
  }
}
#study h5 {
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
}
#study figure {
  margin: 50px auto;
  position: relative;
}
#study figure img {
  -webkit-filter: brightness(40%);
          filter: brightness(40%);
}
#study figcaption {
  margin-top: 30px;
}
@media (min-width: 768px) {
  #study figcaption {
    margin-top: 0;
    width: 54%;
    position: absolute;
    top: 15%;
    right: 3%;
    font-size: 1.62em;
    color: #fefefe;
    text-shadow: 0px 0px 0.5em black;
  }
}
#study figcaption p {
  line-height: 1.2em;
}
#study .narrow {
  max-width: 700px;
  margin: auto;
  display: block;
}
#study #timeline {
  margin: 50px auto;
}
#study #timeline ol {
  list-style-type: none;
  margin: 2em 0 0;
  padding: 0;
}
#study #timeline li {
  padding: 0 0 28px 20px;
  position: relative;
  border-left: 1px solid #F3852E;
}
#study #timeline li:last-of-type {
  padding-bottom: 0;
}
#study #timeline li:before {
  content: " ";
  width: 15px;
  height: 15px;
  border-radius: 8px;
  background-color: #F3852E;
  display: block;
  position: absolute;
  top: 0.3em;
  left: -8px;
}
#study .title, #study cite {
  font-size: 0.75rem;
  color: #999999;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
}
#study img + .title {
  margin-left: 12px;
}
#study h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 19px;
}
#study .stats {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
}
#study span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: none;
}

/***** SERVICES *****/

.service-single:nth-child(even) {
  background-color: #211D20;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;  
}

.service-single {
  padding: 40px 0;
}

.service-single .single-accordion {
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding: 20px 0;
}

.service-single .single-accordion + .single-accordion {
  border-top: 0;
}  

.service-single .single-accordion .accordion-content {
  display: none;
  padding-top: 10px;
  padding-left: 28px;
}

.service-single .single-accordion .accordion-content p {
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.service-single .accordion-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.service-single .accordion-toggle {
  position: absolute;
  right: 0;
}

.service-single .accordion-toggle .accordion-minus {
  display: none;
  position: relative;
  top: 10px;  
}

.service-single .accordion-title.active .accordion-toggle .accordion-minus {
  display: block;
}

.service-single .accordion-title.active .accordion-toggle .accordion-plus {
  display: none;
}

.service-single .service-title {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px 0;
  font-size: 20px;
}

@media (min-width: 768px) {

  .page.services .hero-standard h1 {
    min-width: 570px;
  } 

  .service-single {
    padding: 70px 0;
  }
  
  .service-single .section-content {
    display: flex;
    gap: 50px;
  }
  
  .service-single .content {
    width: 60%;
  }
  
  .service-single .accordion {
    width: 40%;
  }

  .service-single .service-title {
    font-size: 30px;
  }  
  
  .service-single .service-title i.star {
    width: 25px;
    height: 25px;
  } 
  
  .service-single .content p {
    font-size: 20px;
  } 

}

section.services-workflow,
section.services-faqs {
  padding: 30px 0;
}

section.services-workflow h4,
section.services-faqs h4 {
  text-align: center;
  margin-bottom: 50px;
}

section.services-workflow .section-content {
  display: flex;
  flex-wrap: wrap;  
}

section.services-workflow .single-item {
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  padding-bottom: 20px;
}

section.services-workflow .workflow-title {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 15px 0;
  font-size: 20px;
}

section.services-workflow p:last-child {
  margin: 0;
}

section.services-workflow .single-item .inner {
  position: relative;
}  

section.services-workflow .section-content {
  counter-reset: section-counter;
}

section.services-workflow .workflow-title::before {
  counter-increment: section-counter;
  content: counter(section-counter);
  color: #e340ed;
  display: inline-block;
  margin-right: 8px;
}

section.services-workflow .single-item.apply-now {
  text-align: center;
  margin: auto;
  box-shadow: none;
}

section.services-workflow .single-item.apply-now a {
  display: inline-block;
  margin: auto;
  text-decoration: none;
}

section.services-workflow .single-item.apply-now .badge {
  display: block;
  margin: auto;
  text-align: center;
  font-family: "VCR OSD MONO";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2C272B;
  width: 160px;
  height: 160px;
  font-size: 20px;
  line-height: 24px;  
}

section.services-workflow .single-item.apply-now .badge:before {
  display: block;
  content: "";
  position: absolute;
  text-align: center;
  font-family: "VCR OSD MONO";
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 27px;
  color: #2C272B;
  width: 160px;
  height: 160px;
  -webkit-mask-image: url(../img/global/podcast.svg);
  mask-image: url(../img/global/podcast.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #E240ED;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

section.services-workflow .single-item.apply-now .badge .inner {
  padding: 0;
  position: relative;
  z-index: 1;
  top: 50%;
  -webkit-transform: rotate(20deg) translate(-10px, -50%);
          transform: rotate(20deg) translate(-10px, -50%);  
  -webkit-transform: rotate(20deg) translate(-10px,-50%);
  transform: rotate(20deg) translate(-8px,-44%);          
}

@media (min-width: 768px) {

  section.services-workflow .wrap {
      max-width: 1300px;
  }

  section.services-workflow {
    padding: 70px 0;
  }

  section.services-workflow .single-item {
    width: 50%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  section.services-workflow .single-item:nth-child(odd) {
    box-shadow: -1px 0 0 0 rgba(255,255,255,.3), 1px 0 0 0 rgba(255,255,255,.3);
  }
  
  section.services-workflow .single-item:nth-child(even) {
    box-shadow: 1px 0 0 0 rgba(255,255,255,.3);
  }  

  section.services-workflow .single-item .inner {
    padding: 0 30px;
    padding-left: 60px;
  } 

  section.services-workflow .workflow-title {
    font-size: 30px;
  }  

  section.services-workflow .workflow-title::before {
    display: block;
    position: absolute;  
    left: 20px;
    margin-right: 0;
  }

  section.services-workflow .single-item.apply-now .badge .inner {
    padding: 0;
  }

  section.services-workflow .single-item.apply-now .badge {
    width: 230px;
    height: 230px;
  }

  section.services-workflow .single-item.apply-now .badge:before {
    width: 230px;
    height: 230px;
  }  

}

section.services-faqs {
  border-top: 1px solid #ffffff;
}

section.services-faqs .single-item {
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding: 20px 0;
}

section.services-faqs .single-item + .single-item {
  border-top: 0;
}  

section.services-faqs .single-item .accordion-content {
  display: none;
  padding-top: 10px;
}

section.services-faqs .single-item .accordion-content p {
  margin: 0 0 20px 0;
  line-height: 1.5;
}

section.services-faqs .accordion-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  padding-right: 28px;
}

section.services-faqs .accordion-toggle {
  position: absolute;
  right: 0;
  top: 10px;
}

section.services-faqs .accordion-toggle .accordion-minus {
  display: none;
  position: relative;
  top: 10px;  
}

section.services-faqs .accordion-title.active .accordion-toggle .accordion-minus {
  display: block;
}

section.services-faqs .accordion-title.active .accordion-toggle .accordion-plus {
  display: none;
}

@media (min-width: 768px) {

  section.services-faqs .wrap {
    max-width: 1030px;
  }  

  section.services-faqs {
    padding: 70px 0;
  }

  section.services-faqs .accordion-toggle {
    top: 0;
  }  

  section.services-faqs .accordion-title {
    font-size: 20px;
  }  

}



/***** PAUL UPDATE MODS *****/
header.sticky, header .section-content {background-color: rgba(0,0,0,.75);}

section.team ul {justify-content: space-around;}
section.team ul li {width: 21%; min-width: 170px; padding: 0; margin: 0 0 3em;}

@media only screen and (max-width: 599px) {
	section.solutions ul li {margin: .5em 0;}
	section.solutions ul li:nth-of-type(even),
	section.solutions ul.row3 li:nth-of-type(odd)  {display:none}
	section.solutions ul.row3 li:nth-of-type(even) {display: inline-block;}
}

