/* Fonts */

/* Montserrat - font */
@font-face {
  /* font-weight: 300 */
  font-family: "Montserrat-Light";
  src: url("../fonts/Montserrat/static/Montserrat-Light.ttf");
}
@font-face {
  /* font-weight: 500 */
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat/static/Montserrat-Medium.ttf");
}
@font-face {
  /* font-weight: 600 */
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/Montserrat/static/Montserrat-SemiBold.ttf");
}

/* Normal page template */

.site-main {
  padding: 13rem 4rem 4rem;
}

@media (max-width: 800px) {
  .site-main {
    padding: 3rem 2rem 4rem;
  }
}

/* General */

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

@media (max-width: 1100px) {
  html {
    font-size: 9.5px;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 9px;
  }
}

@media (max-width: 750px) {
  html {
    font-size: 8.5px;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 8px;
  }
}

html body {
  background: #0a1f18;
  margin: 0;
  padding: 0;
  position: relative;
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-style: normal;

  font-size: 1.6rem;
  line-height: 1.2;
}

body * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #fff;
}

p {
  font-size: 1.8rem;
  font-family: neulis-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.post,
.page {
  margin: 0 !important;
  padding: 0 !important;
}

h1 {
  font-weight: 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-family: bebas-neue-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 2rem;
}

p,
span {
  line-height: 1.5;
}

body a {
  color: #2bd192;
}

.page-main {
  height: 100vh;
  width: 100%;
  background: url("../img/gk-coming-soon-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-content {
  display: block;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.the-logo {
  display: inline-block;
  max-width: 200px;
  margin: 0 auto 30px;
  position: relative;
  left: 6px;
}

/* =========================================== */
/* =========================================== */
/* =========================================== */

/* Utilities */

.title-area-with-bottom-border {
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 2rem;
}

.title-area-with-bottom-border h2 {
  text-align: right;
  margin-bottom: 1.5rem;
}

.button:link,
.button:visited {
  color: #fff;
  display: inline-block;
  padding: 1.5rem 2rem;
  min-width: 25rem;
  text-align: center;
  text-decoration: none;
  background: #465f56;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 3px;
}

input[type="submit"] {
  color: #fff !important;
  display: inline-block;
  padding: 1.5rem 2rem !important;
  min-width: 25rem !important;
  text-align: center !important;
  text-decoration: none !important;
  background: #465f56 !important;
  text-transform: uppercase !important;
  transition: all 0.2s !important;
  border-radius: 3px !important;
}

.button:hover,
.button:active {
  color: #fff;
  text-decoration: none;
  background: #5d7d71;
}

input[type="submit"]:hover {
  color: #fff !important;
  text-decoration: none !important;
  background: #5d7d71 !important;
}

@media (max-width: 1100px) {
  .button:link,
  .button:visited {
    padding: 1.5rem 2rem;
    min-width: 22rem;
  }

  input[type="submit"] {
    padding: 1.5rem 2rem !important;
    min-width: 22rem !important;
  }
}

@media (max-width: 900px) {
  .button:link,
  .button:visited {
    padding: 1.8rem 2rem;
    min-width: 20rem;
  }

  input[type="submit"] {
    padding: 1.8rem 2rem !important;
    min-width: 20rem !important;
  }
}

@media (max-width: 600px) {
  .button:link,
  .button:visited {
    padding: 1.8rem 2rem;
    min-width: 17rem;
  }

  input[type="submit"] {
    padding: 1.8rem 2rem !important;
    min-width: 17rem !important;
  }
}

/* =========================================== */
/* =========================================== */
/* =========================================== */

.site-header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  overflow: hidden;
}

.site-header-content {
  display: flex;
  justify-content: space-between;
}

.header-logo-section {
  position: relative;
  max-width: 400px;
  padding: 1.7rem 4rem;
  z-index: 1;
}

.header-logo-container {
  max-width: 140px;
  position: relative;
  z-index: 3;
  padding: 1rem;
}

.header-logo-container a {
}

.header-logo-container a img {
  width: 100%;
}

.header-menu-section {
  padding: 2.5rem 4rem;
}

.header-menu-section ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu-section ul li {
  margin: 0;
  padding: 0;
}

.header-menu-section ul li:not(:last-child) {
  margin-right: 1rem;
}

.header-menu-section ul li a {
  display: inline-block;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.15s;
}

.header-menu-section ul li a:hover {
  opacity: 0.85;
}

.header-menu-section ul li.menu-cta-button a:link,
.header-menu-section ul li.menu-cta-button a:visited {
  color: #2bd192;
  padding: 1rem 1.2rem;
  border: 1px solid #2bd192;
  transition: all 0.15s;
}

/* Count down */

.header-count-down {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 3rem 3rem;
  position: relative;
}

.header-count-down::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 110%;
  top: -5px;
  right: -25px;
  background: #112b23;
  transform: skew(-7deg);
}

.header-count-down .count-down-text {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  font-size: 2rem;

  font-family: neulis-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.header-count-down .count-down-text .count-down-text-highlight,
.header-count-down
  .count-down-text
  .count-down-text-highlight
  span#days-remaining {
  color: #2bd192;
  font-weight: 500;
}

@media (min-width: 801px) {
  .header-menu-section ul li.menu-cta-button a:hover,
  .header-menu-section ul li.menu-cta-button a:active {
    background: rgba(43, 209, 145, 0.15);
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: relative;
    margin-bottom: 0;
  }

  .header-logo-container {
    max-width: 120px;
  }

  .site-header-content {
    min-height: 8rem;
  }

  .header-logo-section {
    max-width: 22rem;
    padding: 2rem 2rem;
  }

  .header-logo-container {
    padding: 0;
  }

  .header-logo-section::before {
    display: none;
  }

  .header-menu-section {
    padding: 1.5rem 1.5rem;
  }

  .header-menu-section ul li.menu-cta-button a:link,
  .header-menu-section ul li.menu-cta-button a:visited {
    padding: 0.7rem 0.9rem 0.6rem;
  }

  .header-count-down {
    height: 65px;
    padding: 1.5rem 1.5rem 2rem;
  }

  .header-count-down .count-down-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .header-logo-container {
    max-width: 100px;
  }
}

@media (max-width: 450px) {
  .header-count-down .count-down-text {
    font-size: 1.6rem;
  }
  /*
  .header-logo-container {
    max-width: 90px;
  }
  */
}

/* Home section top */

.section-home-top {
  min-height: 800px;
  max-height: 850px;
  height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.section-home-top::before {
  content: "";
  width: 100%;
  height: 300px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(10, 31, 24, 0.2) 0%,
    rgba(10, 31, 24, 0) 100%
  );
}

.section-home-top::after {
  content: "";
  width: 100%;
  height: 300px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 24, 0) 0%,
    rgba(10, 31, 24, 1) 70%,
    rgba(10, 31, 24, 1) 100%
  );
}

.home-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6rem;
  margin-bottom: 8rem;
  position: relative;

  position: relative;
  height: 100%;
}

.home-top-content > * {
  position: relative;
  z-index: 2;
}

.home-top-content::before {
  content: "";
  width: 350px;
  height: 1000px;
  position: absolute;
  left: -100px;
  top: -200px;
  transform: rotate(7deg);

  background-image: url("/wp-content/uploads/2025/05/gk-blur-bg-2-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;

  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.home-top-cta-buttons {
  margin-top: 60px;
}

.home-top-cta-buttons .button:not(:last-child) {
  margin-right: 15px;
}

.home-top__left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  padding: 3rem 3rem 3rem 4rem;
}

.home-top-text-content {
}

.home-top__right-col {
  width: 35%;
  padding: 20px 40px;
}

h1.home-top-primary-heading {
  font-size: 9.7rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;

  overflow: hidden;
}

@media (max-width: 1200px) {
  h1.home-top-primary-heading {
    font-size: 8rem;
  }
}

@media (max-width: 1000px) {
  h1.home-top-primary-heading {
    font-size: 7rem;
  }
}

@media (max-width: 800px) {
  h1.home-top-primary-heading {
    font-size: 6.5rem;
  }

  .home-top-content {
    flex-direction: column-reverse;
  }

  .section-home-top::before {
    height: 180px;

    background: linear-gradient(
      to bottom,
      rgba(10, 31, 24, 1) 0%,
      rgba(10, 31, 24, 0) 100%
    );
  }

  .home-top-content::before {
    width: 550px;
    height: 1000px;
    position: absolute;
    left: auto;
    right: 70%;
    top: -200px;
    transform: rotate(-12deg);
  }

  .home-top__right-col {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-top-cta-buttons .button:not(:last-child) {
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  h1.home-top-primary-heading {
    font-size: 6rem;
  }
}

@media (max-width: 500px) {
  h1.home-top-primary-heading {
    font-size: 5.4rem;
  }

  .home-top__left-col {
    padding: 3rem 2rem 3rem 2rem;
  }
}

/*
@media(max-width: 800px) {
  .home-top-content {
   flex-direction: column-reverse;
  }
}*/
h1.home-top-primary-heading span.main-heading-line-break {
  display: block;
}

h1.home-top-primary-heading span.main-heading-switcher-word {
  color: #2bd192;
}

.home-top-secondary-text {
  color: #fff;
  font-weight: 200;
  font-size: 2.5rem;
  margin: 2.5rem 0 3rem;
}

.home-top-secondary-text span {
  color: #2bd192;

  font-family: "Montserrat-Medium", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  font-weight: 500;
}

.home-top-image-container {
  margin-bottom: 4rem;
}

.home-top-image-container img {
}
/*
@media (min-width: 1000px) {
  h1.home-top-primary-heading span {
    margin-left: 3rem;
  }
}

/* Phone video display */

.phone-video-display {
  position: relative;
  width: 290px;
  text-align: center;
}

.phone-video-display__embed-container {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 87%;
  width: 70%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 31px;
  overflow: hidden;
}

img.phone-video-display__splash-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  object-fit: cover;

  animation: growAndFade 2s;
}

@keyframes growAndFade {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.phone-video-display__embed-container iframe {
  height: 100%;
}

.phone-video-display img.phone-video-display__phone-image {
}

@media (max-width: 1000px) {
  .phone-video-display {
    position: relative;
    width: 280px;
    text-align: center;
  }

  .home-top-image-container {
    margin-bottom: 0;
  }

  .home-top__right-col {
    width: 40%;
    padding: 20px 40px;
  }
}

/* Main title word switcher */

.word-wrapper {
  display: inline-block;
  position: relative;
  height: 108px;
  /* overflow: hidden; */
  vertical-align: baseline;
  /* width: auto; */
}

.word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  color: #2bd192;
}

/* Show the active word */
.word.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

@media (max-width: 1200px) {
  .word-wrapper {
    height: 89px;
  }
}

@media (max-width: 1100px) {
  .word-wrapper {
    height: 86px;
  }
}

@media (max-width: 1000px) {
  .word-wrapper {
    height: 74px;
  }
}

@media (max-width: 900px) {
  .word-wrapper {
    height: 70px;
  }
}

@media (max-width: 800px) {
  .word-wrapper {
    height: 64px;
  }
}

@media (max-width: 750px) {
  .word-wrapper {
    height: 61px;
  }
}

@media (max-width: 600px) {
  .word-wrapper {
    height: 53px;
  }
}

@media (max-width: 500px) {
  .word-wrapper {
    height: 47px;
  }
}

/* Home - intro text section */

.section-home-intro-text {
  position: relative;
  z-index: 2;
  padding: 30px 4rem 70px;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.section-home-intro-text h2 {
  font-family: neulis-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;

  font-size: 2.2rem;
  line-height: 1.7;
  max-width: 870px;
}

/* Home feature display section */

.section-home-feature-display {
}

.feature-slider {
  position: relative;
}

.feature-item,
.slick-initialized .slick-slide.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-item__image-container {
  flex: 13;
  overflow: hidden;
  position: relative;
  height: 700px;
}

.feature-item__image-container .feature-item__image-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.feature-item__image-container::before {
  content: "";
  width: 100%;
  height: 130px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;

  background: linear-gradient(
    to bottom,
    rgba(10, 31, 24, 1) 0%,
    rgba(10, 31, 24, 1) 30%,
    rgba(10, 31, 24, 0) 100%
  );
}

/*
.feature-item__image-container::after {
  content: "";
  width: 100%;
  height: 130px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;

  background: linear-gradient(to bottom, rgba(10, 31, 24, 0) 0%, rgba(10, 31, 24, 1) 70%, rgba(10, 31, 24, 1) 100%);
}
*/

.feature-item__image-inner::after {
  content: "";
  width: 230px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;

  background: linear-gradient(
    to right,
    rgba(10, 31, 24, 0) 0%,
    rgba(10, 31, 24, 1) 85%,
    rgba(10, 31, 24, 1) 100%
  );
}

.feature-item__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item__text-container {
  flex: 11;
  padding: 60px;
}

.feature-item__text-container h3 {
  text-transform: uppercase;
  font-size: 3.8rem;
  margin-bottom: 4rem;
}

.feature-item__text-container p {
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

@media (max-width: 1200px) {
  .feature-item__image-inner::after {
    width: 100px;
    background: linear-gradient(
      to right,
      rgba(10, 31, 24, 0) 0%,
      rgba(10, 31, 24, 1) 85%,
      rgba(10, 31, 24, 1) 100%
    );
  }
}

@media (max-width: 1000px) {
  .feature-item__image-inner::after {
    width: 80px;
    background: linear-gradient(
      to right,
      rgba(10, 31, 24, 0) 0%,
      rgba(10, 31, 24, 1) 85%,
      rgba(10, 31, 24, 1) 100%
    );
  }
}

@media (max-width: 800px) {
  .feature-item,
  .slick-initialized .slick-slide.feature-item {
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }

  .section-home-feature-display {
    background: #112b23;
  }

  .feature-item__image-container {
    max-height: 500px;
    display: flex;
    align-items: center;
  }

  .feature-item__image-inner::after,
  .feature-item__image-container::before {
    background: none;
  }

  .feature-item__text-container {
    padding: 6rem 2rem 3rem;
  }
}

@media (max-width: 600px) {
  .feature-item__image-container {
    max-height: 380px;
  }
}

/* Feature counter */

.feature-count-text {
  text-transform: uppercase;
  font-size: 2rem;
  color: #9f9f9f;
}

.feature-count-number {
  text-transform: uppercase;
  font-size: 2.2rem;
  color: #fff;
}

@media (max-width: 800px) {
  .feature-count-text {
    font-size: 2.4rem;
  }
}

/* Slick slider */

.custom-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 330px;
}

.feature-slider .custom-prev,
.feature-slider .custom-next {
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  width: 60px;
  height: 40px;
  padding: 0;

  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
/*
.feature-slider .slick-prev {
  top: auto;
  bottom: 136px;
  right: 550px;
  left: auto;
}

.feature-slider .slick-next {
  top: auto;
  bottom: 136px;
  right: 300px;
  left: auto;
}
*/
.feature-slider .custom-prev:before,
.feature-slider .custom-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  content: "";
  display: block;
  width: 80px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  transition: all 0.2s;
}

.feature-slider .custom-prev:before {
  background-image: url(/wp-content/uploads/2025/06/arrow-left.png);
}

.feature-slider .custom-next:before {
  background-image: url(/wp-content/uploads/2025/06/arrow-right.png);
}

@media (max-width: 800px) {
  .custom-arrows {
    max-width: 100%;
  }

  .feature-slider .custom-prev,
  .feature-slider .custom-next {
    background: #163b2f;
  }
}

/* Partnership steps section */

.section-home-partnership-steps {
  margin-top: 8rem;
  padding: 4rem 4rem 13rem;
}

.partnership-intro-text-content {
  margin-bottom: 5rem;
  max-width: 1000px;
  margin-bottom: 10rem;
}

.partnership-intro-text-content h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
}

.partnership-intro-text-content p {
  font-size: 2rem;
}

.partnership-steps {
  max-width: 1100px;
  position: relative;
}

.partnership-steps-inner {
  position: relative;
  z-index: 3;
}

.partnership-steps-line-vertical {
  content: "";
  display: block;
  width: 2px;
  height: 940px;
  position: absolute;
  top: 0;
  left: 150px;
  background: #fff;
  margin-top: 37px;
}

.partnership-steps-line-vertical-inner {
  position: relative;
  height: 100%;
}

.partnership-steps-line-vertical-inner::after {
  content: "";
  display: block;
  width: 10px;
  height: 350px;
  position: absolute;
  bottom: 0;
  left: -5px;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 24, 0) 0%,
    rgba(10, 31, 24, 1) 70%,
    rgba(10, 31, 24, 1) 100%
  );
}

.partnership-steps-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.partnership-steps-item:not(:last-child) {
  margin-bottom: 7rem;
}

.partnership-steps-item-number {
  width: 70px;
  height: 70px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 3.5rem;
  transition: all 0.2s;

  font-family: neulis-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  opacity: 0.6;
}

.partnership-steps-item.active .partnership-steps-item-number {
  background: #2bd192;
  color: #fff;

  font-family: neulis-sans, sans-serif;
  font-weight: 600;
  font-style: normal;
  opacity: 1;
}

.partnership-steps-item-line-horizontal {
  margin-top: 35px;
  width: 150px;
  height: 2px;
  background: #fff;
}

.partnerships-steps-item-content {
  margin-left: 5rem;
  max-width: 700px;
  flex: 1;
}

.partnerships-steps-item-content .partnerships-steps-item-icon-cont {
  margin-bottom: 2rem;
  margin-left: -15px;
  width: 120px;
  transition: all 0.4s;
}

.partnership-steps-item.active
  .partnerships-steps-item-content
  .partnerships-steps-item-icon-cont {
  transform: scale(1.1) translateY(-2px);
}

.partnerships-steps-item-content .partnerships-steps-item-icon-cont img {
  width: 100%;

  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);

  transition: all 0.4s;
}

.partnership-steps-item.active
  .partnerships-steps-item-content
  .partnerships-steps-item-icon-cont
  img {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

.partnerships-steps-item-content h3 {
  margin-bottom: 2.5rem;
  text-transform: none;
  font-family: neulis-sans, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.6rem;
}

.partnerships-steps-item-content p {
  font-size: 2.2rem;
}

@media (max-width: 900px) {
  .partnership-steps-line-vertical {
    left: 140px;
  }

  .partnership-steps-item-line-horizontal {
    width: 120px;
  }

  .partnerships-steps-item-content .partnerships-steps-item-icon-cont {
    margin-bottom: 2rem;
    margin-left: -15px;
    width: 100px;
  }
}

@media (max-width: 800px) {
  .partnership-intro-text-content h2 {
    font-size: 3.8rem;
  }

  .section-home-partnership-steps {
    margin-top: 0;
    padding: 20rem 2rem 8rem;
    position: relative;
    overflow: hidden;
  }
  /*
  .section-home-partnership-steps::before {
    content: "";
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(17, 43, 36, 1) 0%, rgba(10, 31, 24, 0) 100%);
  }
*/

  .section-home-partnership-steps::before {
    content: "";
    width: 130%;
    height: 200px;
    position: absolute;
    left: 50%;
    top: -145px;
    z-index: 1;
    background: #112b24;
    transform: translateX(-50%) rotate(-7deg);
  }

  .partnership-steps-line-vertical {
    left: 130px;
    margin-top: 30px;
    height: 850px;
    z-index: 3;
  }

  .partnership-steps-item-line-horizontal {
    width: 110px;
    margin-top: 30px;
  }

  .partnership-steps-item-number {
    width: 60px;
    height: 60px;
  }

  .partnerships-steps-item-content .partnerships-steps-item-icon-cont {
    margin-bottom: 2rem;
    margin-left: -15px;
    width: 95px;
  }

  .partnership-steps-item:not(:last-child) {
    margin-bottom: 3rem;
  }

  .partnership-intro-text-content {
    margin-bottom: 7rem;
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 700px) {
  .partnership-steps-line-vertical {
    height: 800px;
  }

  .partnership-steps-line-vertical {
    left: 100px;
    margin-top: 22.5px;
  }

  .partnership-steps-item-line-horizontal {
    width: 80px;
    margin-top: 22.5px;
  }

  .partnership-steps-item-number {
    width: 55px;
    height: 55px;
  }

  .partnerships-steps-item-content .partnerships-steps-item-icon-cont {
    margin-bottom: 2rem;
    margin-left: -15px;
    width: 90px;
  }
}

@media (max-width: 600px) {
  .partnership-steps-line-vertical {
    left: 70px;
    margin-top: 25px;
  }

  .partnership-steps-item-line-horizontal {
    width: 37px;
    margin-top: 25px;
  }

  .partnership-steps-item-number {
    width: 50px;
    height: 50px;
  }

  .partnerships-steps-item-content .partnerships-steps-item-icon-cont {
    margin-bottom: 2rem;
    margin-left: -15px;
    width: 85px;
  }

  .partnership-intro-text-content {
    margin-bottom: 5rem;
  }
}

/* Fun. Future. Golf. slider */

.brand-infinite-slider {
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.brand-infinite-slider img {
  max-height: 55px;
  margin-right: 30px;
}
/*
<div class="brand-infinite-slider infiniteslide">
    <img src="/wp-content/uploads/2025/06/Fun-Future-Golf-horizontal-scaled.png" alt="Golfkit - Fun. Future. Golf. - slider">
</div>
*/

@media (max-width: 1000px) {
  .brand-infinite-slider img {
    max-height: 50px;
    margin-right: 27px;
  }
}

@media (max-width: 800px) {
  .brand-infinite-slider img {
    max-height: 45px;
    margin-right: 24px;
  }
}

@media (max-width: 800px) {
  .brand-infinite-slider img {
    max-height: 40px;
    margin-right: 21px;
  }
}

@media (max-width: 600px) {
  .brand-infinite-slider img {
    max-height: 37px;
    margin-right: 18px;
  }
}

/* Signup section */

.section-signup {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  z-index: 3;
}

.signup-container {
  display: flex;
  height: 100%;
  min-height: 450px;
  position: relative;
  left: -5%;
  transform: skew(-4deg);
  width: 110%;
}

.signup-left {
  flex: 1;
  background: #2bd192;
  margin-right: 4rem;
}

.signup-right {
  flex: 5;
  background: #112b23;
}

.signup-right-content {
  transform: skew(4deg);
  padding: 3rem 5rem;
  margin-right: 6rem;
  margin-left: 4rem;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 750px;
}

.signup-right-content h2 {
  font-size: 4rem;
  margin-bottom: 0;
}

.signup-right-content p {
  max-width: 800px;
}

@media (max-width: 900px) {
  .signup-right-content h2 {
    font-size: 3.8rem;
  }

  .signup-container {
    position: relative;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0) skew(-4deg);
    width: 107%;
  }

  .signup-left {
    flex: 0.5;
    margin-right: 3rem;
  }

  .signup-right-content {
    /*transform: skew(0deg);*/
    margin-right: 0;
  }

  .signup-right-content {
    margin-left: 0;
    width: 100%;
  }

  .signup-right {
    display: flex;
    justify-content: center;
  }
}

/* Gravity forms */
.gfield_label {
  color: #fff !important;
  font-size: 1.6rem !important;
}

.gform-field-label {
  color: #fff !important;
  font-size: 1.6rem !important;
}

.gform-theme--foundation .gform_fields {
  row-gap: 15px !important;
}

.signup-form-container .gfield input[type="text"],
.signup-form-container .gfield input[type="email"] {
  width: 100% !important;
  max-width: 300px !important;
  background: #253d34;
  border-radius: 0;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.6rem;
}

.gform_confirmation_message {
  color: #2bd192 !important;
  margin-top: 3rem !important;
  font-size: 1.8rem !important;
}

.gfield_validation_message,
.gform_submission_error,
.gform_validation_error_link,
.gform_validation_errors ol,
.gform_validation_errors ul,
.gform_validation_errors ol li,
.gform_validation_errors ul li {
  color: #ff461d !important;
}

.gform-theme--framework .gform_validation_errors {
  background-color: rgb(192 43 10 / 20%) !important;
  margin-top: 3rem !important;
}

/* Form consent text */
p.form-consent-text {
  color: #a5a5a5;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: -1px;
}

p.form-consent-text a:link,
p.form-consent-text a:visited {
  color: #2bd192;
  transition: all 0.2s;
}

p.form-consent-text a:hover,
p.form-consent-text a:active {
  color: #2bd192;
  opacity: 0.8;
}

/* Before footer -section */

.section-before-footer {
  margin: 5rem 0 10rem;
  overflow: hidden;
}

.before-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.before-footer-left {
  transform: skew(-8deg);
  background: #112b23;
  padding: 3rem 4rem 3rem 0;
  margin-left: -3rem;
}

.before-footer-left-inner {
  margin-left: 7rem;
  display: flex;
  align-items: center;
  transform: skew(8deg);
}

/*
<div class="before-footer-left-inner">
    <div class="follow-us-info-block">
        <h3>Follow Us In</h3>
        <div class="social-icons">
            <a href="#"><i class="fa-brands fa-square-facebook"></i></a>
            <a href="#"><i class="fa-brands fa-square-instagram"></i></a>
            <a href="#"><i class="fa-brands fa-linkedin"></i></a>
            <a href="#"><i class="fa-solid fa-square-envelope"></i></a>
        </div>
    </div>
    <img class="logo-img" src="/wp-content/uploads/2024/01/golfkit-logo-V6-white-green-3.png" alt="Golfkit logo">
</div>
*/

.before-footer-left-inner .follow-us-info-block {
  display: flex;
  align-items: center;
}

.before-footer-left .follow-us-info-block h3 {
  font-size: 3.5rem;
  margin-right: 4.5rem;
}

.before-footer-left .follow-us-info-block .social-icons {
  margin-right: 4.5rem;
}

.before-footer-left .follow-us-info-block .social-icons a {
  font-size: 4rem;
}

.before-footer-left .follow-us-info-block .social-icons a:not(:last-child) {
  margin-right: 5px;
}

.before-footer-left .follow-us-info-block .social-icons a i {
  transition: all 0.2s;
}

.before-footer-left .follow-us-info-block .social-icons a:hover i {
  opacity: 0.8;
}

.before-footer-left img.logo-img {
  max-width: 15rem;
}

@media (max-width: 900px) {
  .before-footer-left {
    background: none;
    margin-bottom: 5rem;
    transform: skew(0deg);
    margin-left: 0;
    padding: 3rem 0 3rem;
  }

  .before-footer-left-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .before-footer-left-inner .logo-img {
    margin-bottom: 10rem;
    margin-left: 7px;
  }

  .before-footer-left-inner .follow-us-info-block {
    flex-direction: column;
  }

  .before-footer-left .follow-us-info-block h3 {
    margin-right: 0;
  }

  .before-footer-left-inner {
    transform: skew(0deg);
    margin-left: 0;
    align-items: center;
  }

  .before-footer-left .follow-us-info-block .social-icons {
    margin-right: 0;
    margin-top: 2rem;
  }
}

/* Contact us info block */

.before-footer-right {
  margin-right: 4rem;
}

.before-footer-right a.button {
}

.before-footer-right h3 {
  font-size: 3.5rem;
  text-align: right;
  margin-bottom: 2rem;
}

.before-footer-right .contact-us-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.before-footer-right .contact-us-info-block span {
  display: block;
  font-size: 2rem;
}

.before-footer-right .contact-us-info-block .contact-us-name {
  font-family: neulis-sans, sans-serif;
  font-weight: 700;
  font-style: normal;

  margin-bottom: 1rem;
}

.before-footer-right .contact-us-info-block .contact-us-phone {
  font-family: neulis-sans, sans-serif;
  font-weight: 300;
  font-style: normal;

  margin-bottom: 0.5rem;
}

.before-footer-right .contact-us-info-block .contact-us-email {
  font-family: neulis-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
}

@media (max-width: 900px) {
  .before-footer-right .contact-us-info-block {
    align-items: center;
  }

  .before-footer-right h3 {
    text-align: center;
  }

  .before-footer-right .contact-us-info-block span {
    text-align: center;
  }

  .before-footer-right {
    margin-right: 0;
  }

  .before-footer-content {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .section-before-footer {
    margin: 5rem 3rem 10rem;
  }
}

/* Client course slider */

.home-top-client-courses-slider {
  padding: 10px 0;
  background: #1b1b1d;
}

.home-top-client-courses-slider-content {
  color: #515151;
  text-transform: uppercase;
  font-size: 22px;
}

.home-top-client-courses-slider-content span {
  display: inline-block;
  margin-left: 6px;
}

/* Home section intro text */

.home-intro-text-content {
  border-left: 2px solid #2bd192;
  padding: 3rem 3rem 3rem;
}

.home-intro-text-content p {
  font-size: 2rem;
  margin: 0;
  font-weight: 200;
}

.home-intro-text-content h2 {
  margin-bottom: 1.6rem;

  font-family: "Montserrat-Medium", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  font-weight: 500;
}

.home-intro-text-content span {
  color: #2bd192;

  font-family: "Montserrat-Medium", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  font-weight: 500;
}

@media (max-width: 800px) {
  .section-home-intro-text {
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .home-intro-text-content {
    padding: 3rem 1.8rem 1rem;
  }

  .home-intro-text-content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  .section-home-intro-text {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* Section home features grid */

.section-home-features {
  padding-top: 1rem;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-bottom: 9rem;
}

.home-features-content {
}

.home-features-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
}

.home-features-item {
  cursor: pointer;
}

.feature-image-container {
  margin-bottom: 7px;
  overflow: hidden;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.feature-text-content {
  position: relative;
  border-left: 0.1px solid #7b7b7b;
  border-bottom: 0.1px solid #7b7b7b;
  padding: 1.3rem 2rem 1.3rem 1rem;
}

.feature-text-content .feature-title {
  margin: 0;
  display: block;
  position: relative;

  font-family: "Montserrat-Light", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 200;
}

/* Plus and minus icon */
.feature-text-content .feature-title::before,
.feature-text-content .feature-title::after {
  position: absolute;
  content: "";
  display: block;
  background: #fff;

  transform: translateY(-50%);
  transition: all 0.15s;
}

.feature-text-content .feature-title::before {
  top: 10px;
  height: 1px;
  width: 21px;
  right: -20px;
}

.feature-text-content .feature-title::after {
  top: 10px;
  height: 21px;
  width: 1px;
  right: -10px;
}

.home-features-item.active .feature-text-content .feature-title::after {
  top: 0px;
  height: 21px;
  width: 1px;
  right: -10px;
  transform: rotate(90deg);
}

/* Hidden info */
.feature-text-content .feature-more-info {
  display: none;
  margin-top: 16px;
}

@media (max-width: 800px) {
  .section-home-features {
    padding-top: 1rem;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 6rem;
  }

  .home-features-grid-container {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2.3rem;
    grid-row-gap: 2.3rem;
  }

  .feature-text-content {
    padding: 2rem 2rem 2rem 1.5rem;
  }

  .feature-text-content .feature-title::before {
    right: -15px;
  }

  .feature-text-content .feature-title::after {
    right: -5px;
  }

  .home-features-item.active .feature-text-content .feature-title::after {
    right: -5px;
  }
}

@media (max-width: 650px) {
  .home-features-grid-container {
    grid-template-columns: 1fr;
    grid-column-gap: 2.3rem;
    grid-row-gap: 2.3rem;
  }
}

/* Section home - Steps */

.section-home-steps {
  margin-bottom: 5rem;
}

.home-steps-title-area {
  position: relative;
  background: url("/wp-content/uploads/2024/01/62A0833_GOLFKIT_16x9_MEDIA_format.jpg");
  background-size: cover;
  background-position: center;
  padding: 3rem 4rem 35rem;
  margin-bottom: -18rem;
}

.home-steps-title-area::after {
  content: "";
  display: block;
  height: 28rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #6d4c4c;

  background: linear-gradient(
    to bottom,
    rgba(16, 16, 16, 0) 0%,
    rgba(16, 16, 16, 1) 100%
  );
}

.home-steps-title-area h2 {
  font-size: 3rem;
  font-weight: 200;
  max-width: 400px;
}

/*
<div class="home-steps-title-area">
        <h2>3-step process to create a Survey Grade level 3D accuracy</h2>
    </div>
*/

.home-steps-content {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3rem;
  padding-left: 3rem;
}

.home-steps-columns {
  display: flex;
}

.home-steps-item {
  border-radius: 8px;
  flex: 1;
  background: #1b1b1d;
  position: relative;
  z-index: 1;
}

.home-steps-item:not(:last-child) {
  margin-right: 5%;
}

.home-steps-item__top-part {
  position: relative;
  /*background: radial-gradient(ellipse at center, #2bd192 0%, #187553 100%);*/
  background: #2bd192;
  height: 190px;
  border-radius: 8px 8px 0 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.home-steps-item__top-part span.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 55px;
  width: 55px;
  background: #1b1b1d;
  color: #fff;
  font-size: 3rem;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Montserrat-Medium", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  font-weight: 500;
}

.home-steps-item__top-part .steps-icon-container {
  margin-top: 1.3rem;
  max-width: 9rem;
}

.home-steps-item__top-part .steps-icon-container img {
  width: 100%;
}

.home-steps-item__bottom-part {
  padding: 4rem 2.5rem;
}

.home-steps-item__bottom-part h4 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;

  font-family: "Montserrat-SemiBold", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  font-weight: 600;
}

.home-steps-item__bottom-part p {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .home-steps-title-area {
    padding: 6rem 2rem 22rem;
    margin-bottom: -13rem;
  }

  .home-steps-content {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .home-steps-item {
    max-width: 50rem;
  }

  .home-steps-columns {
    flex-direction: column;
    align-items: center;
  }

  .home-steps-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 5rem;
  }

  .home-steps-item__top-part {
    height: 15rem;
  }

  .home-steps-item__top-part .steps-icon-container {
    margin-top: 2rem;
  }
}

/* Section home - Team */

.section-home-team {
  padding-top: 4rem;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-bottom: 4rem;
}

.home-team-content {
}

.home-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 35px;
  padding: 1.5rem 3rem;
}

.home-team-item {
}

.home-team-item__name {
  margin-bottom: 0.5rem;
  font-size: 18px;

  font-family: "Montserrat-SemiBold", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  font-weight: 600;
}

.home-team-item__role {
  font-weight: 200;
  margin-bottom: 0.5rem;
  font-size: 18px;
}

@media (max-width: 800px) {
  .section-home-team {
    padding-top: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 4rem;
  }

  .home-team-grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 35px;
    padding: 1.5rem 0;
  }
}

@media (max-width: 650px) {
  .home-team-grid {
    grid-template-columns: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 35px;
  }
}

/* Section home - Contact us */

.home-contact-us {
  padding-top: 4rem;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-bottom: 4rem;
}

.home-contact-us-content {
}

.home-contact-us-columns {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.home-contact-us-columns__left-col {
  padding: 3rem 2.5rem;
  border-left: 2px solid #2bd192;
  flex: 1;
}

.home-contact-us-columns__left-col h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 200;
}

.home-contact-us-columns__left-col .contact-info {
}

.home-contact-us-columns__left-col .home-contact-us__name {
  margin-bottom: 0.5rem;
  font-weight: 600;

  font-family: "Montserrat-SemiBold", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  font-weight: 600;
}

.home-contact-us-columns__left-col .home-contact-us__contact-info {
  margin-bottom: 0.5rem;
  font-weight: 200;
}

.home-contact-us-columns__right-col {
  width: 37%;
  margin-left: 3rem;
}

.home-contact-us-columns__right-col img.contact-us-image {
  display: inline-block;
}

@media (max-width: 800px) {
  .home-contact-us {
    padding-top: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 4rem;
  }

  .home-contact-us-columns {
    flex-direction: column-reverse;
  }

  .home-contact-us-columns__right-col {
    width: 100%;
    margin-left: 0;
    max-width: 40rem;
    margin-bottom: 3rem;
  }
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 10;
  padding: 0 4rem 2rem;
}

.footer-credit {
}

.footer-credit p {
}

.footer-credit p,
.footer-credit a:link,
.footer-credit a:visited {
  color: #a5a5a5;
  font-size: 1.6rem;
  transition: all 0.15s;
}

.footer-credit a:hover,
.footer-credit a:active {
  opacity: 0.8;
}

@media (max-width: 800px) {
  .site-footer {
    padding: 0 2rem 2rem;
  }
}
