/*#region Global*/
:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f0f0f0;
    --dark-gray: #333333;
    --wc-green: #c2d500;
    --wc-gray: #51534a;
    --cba-blue: #012269;
    --btn-dark: #5c5c5c;
    --btn-dark-hover: #707070;
    --btn-action: #3a2b6c; /*#1b6085;*/ /*#545454;*/
    --btn-action-hover: #4f3a92; /*#237AA9;*/ /*C1DB2C;*/

    --success-color: #4a934a;
    --error-color: #d92d20;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

@media all and (max-width: 1366px) {
  html {
    font-size: 9px;
  }
}

@media all and (max-width: 1024px) {
  html {
    font-size: 8px;
  }
}

@media all and (max-width: 960px) {
  html {
    font-size: 7px;
  }
}

@media all and (max-width: 768px) {
  html {
    font-size: 6px;
  }
}

/*#region Fonts*/
@font-face {
  font-family: "Bahnschrift";
  src: url("http://192.168.1.10/Test/fonts/BAHNSCHRIFT.TTF") format("ttf");
}

@font-face {
  font-family: "Bahnschrift SemiLight SemiConde";
  src: url("http://192.168.1.10/Test/fonts/BAHNSCHRIFT.TTF") format("ttf");
}

@font-face {
  font-family: "Bahnschrift Condensed";
  src: url("http://192.168.1.10/Test/fonts/BAHNSCHRIFT.TTF") format("ttf");
}
/*#endregion*/

html,
body {
  margin: 0;
  padding: 0;
  height: 100% !important;
  background-color: var(--white);
  font-family: "Bahnschrift", Helvetica, sans-serif;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.wrapper {
  min-height: 100%;
  width: inherit;
  margin-bottom: -50px;
}

.site-padding {
  max-width: 1350px;
  margin: 0 auto;
}

/* .site-padding-left {
  padding-left: 10%;
  height: 100%;
} */

.quarter-width {
  width: 25%;
}

.three-quarter-width {
  width: 75%;
}

.L {
  text-align: left;
}

.R {
  text-align: right;
}

.C {
  text-align: center;
}
.bold {
  font-weight: bold;
}

.block {
  display: block !important;
}

.none {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 60vh;
  left: 0;
  right: 0;
  opacity: 0.6;
  /*  transition: .5s ease;*/
  background-color: rgba(32, 30, 31, 0.7);
  overflow: hidden;
}

.full-height {
  height: 100%;
}

.full-width {
  width: 100% !important;
}

.half-width {
  width: 50% !important;
}
/*#endregion*/

/*#region Flex*/
.flex {
  display: flex;
}

.flex.column {
  flex-direction: column;
}

.flex .left {
  justify-content: flex-start;
}

.flex .center {
  justify-content: center;
}

.flex .right {
  justify-content: flex-end;
}

.order-2 {
  order: 2;
}

.center {
  justify-content: center;
}

.between {
  justify-content: space-between;
}

.space {
  justify-content: space-evenly;
}

.wrap {
  flex-wrap: wrap;
}
/*#endregion*/

/*#region Tags*/
h1 {
  font-family: "Bahnschrift Condensed", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 4.5rem;
}

h2 {
  font-size: 4.5rem;
}

h3 {
  font-size: 3.5rem;
}

h4 {
  font-size: 2.8rem;
}

p,
span {
  font-size: 2.4rem;
}

select,
input,
label {
  font-size: 2.2rem;
}

ul {
  list-style: none;
}

a,
button {
  font-size: 2rem;
}

a {
  color: var(--dark-gray);
  /* height: 100%; */
}

a:link,
a:visited {
  text-decoration: none;
  /* text-decoration-color: var(--wc-green);
  text-underline-position: under; */
}

a:hover,
button:hover {
  color: var(--wc-gray);
  cursor: pointer;
}

#sectionTeam a,
#sectionCommunity a {
  text-decoration: underline;
  text-decoration-color: var(--wc-green);
  text-underline-position: under;
}

.lnkGeneral {
  text-decoration: underline;
  /* text-decoration-color: var(--wc-green);*/
  cursor: pointer;
}

.lnkInvisible {
  text-decoration: none;
  cursor: pointer;
}

.lnkWhite {
  color: var(--white);
}

.lnkSolution {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-underline-position: under;
  margin-bottom: 30px;

  transition: transform 0.2s ease-in;
}

.lnkSolution:hover {
  color: var(--light-gray);
  text-decoration-color: var(--wc-green);
  text-underline-position: under;
}

img {
  width: 100%;
}

/*#endregion*/

/*#region Buttons*/
.btnLight {
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  color: var(--dark-gray);
  background: var(--light-gray);
  padding: 15px 20px 15px 20px;
  border: solid var(--wc-green) 1px;
  text-decoration: none;
  min-width: 125px;
}

.btnLight:hover {
  background: var(--wc-green);
  text-decoration: none;
}

#lnkAction.btnLight:hover {
  background: var(--wc-green) !important;
  text-decoration: none !important;
  color: var(--white) !important;
}

.btnDark {
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  color: var(--white);
  background: var(--btn-dark);
  padding: 15px 20px 15px 20px;
  border: solid var(--wc-green) 1px;
  text-decoration: none;
  min-width: 125px;
}

.btnDark:hover {
  color: var(--white);
  background: var(--btn-dark-hover);
  text-decoration: none;
}

.btnAction {
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  color: var(--white);
  background: var(--btn-action);
  padding: 15px 20px 15px 20px;
  border: none;
  text-decoration: none;
  min-width: 125px;
}

.btnAction:hover {
  color: var(--white);
  background: var(--btn-action-hover);
  text-decoration: none;
}

.btnNone {
  background-color: transparent;
  border: none;
}

.btnPadding {
  margin-left: 25px;
}

#imgTop {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -60%);
}

#imgTop:hover {
  cursor: pointer;
}

#imgArrow {
  width: 2.8rem;
  height: 2.8rem;
  vertical-align: middle;
}
/*#endregion*/

/*#region Header*/
header {
  height: 150px;
  width: 100%;
  padding: 20px 75px;
  background-color: var(--dark-gray);
  box-shadow: 0px 8px 8px 0px rgb(0 0 0 / 25%);
}

header a {
  font-size: 2rem;
}

header .left, header .right {
  display: flex;
  align-items: center;
}

#imgLogo {
  height: 65px;
  min-width: 140px;
  max-width: 250px;
}

#navMain ul {
  list-style: none;
  line-height: 80px;
}

#navMain ul li {
  display: inline;
  margin-left: 25px;
}

#navMain ul li a {
  text-decoration: none;
  color: var(--dark-gray);
  transition: all ease 0.3s;
}

#navMain ul li.nav-dropdown ul {
  padding: 0px 15px;
  box-shadow: 0px 15px 20px 5px rgb(0 0 0 / 25%);
}
/*
#navMain ul li.nav-dropdown:hover {
  margin-left: -80px;
} */

#navMain ul li.nav-dropdown ul li a {
  color: var(--white);
}
/*#endregion*/

/*#region Contact*/
#sectionInfo span {
  font-size: 3rem;
  line-height: 50px;
}

#sectionInfo .flex {
  margin-bottom: 25px;
}

#sectionInfo .grid {
  gap: 90px;
}

#sectionInfo .grid-images {
  width: 150%;
}

.imgContactIcon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

#sectionForm {
  font-size: 2rem;
  padding-top: 2rem;
}

#sectionForm form .formrow {
  padding: 0% 15%;
  margin-bottom: 3rem;
}

#sectionForm form .formrow input, #sectionForm form .formrow select {
  font-size: 2.6rem;
  line-height: 3.6rem;
  height: 4rem;
  padding: 0px 4px;
}

#sectionForm form .formrow textarea {
  font-size: 2.6rem;
  padding: 4px;
}

#sectionForm form .formrow:last-child {
  align-items: center;
}

#btnContact {
  width: 90px;
}

#sectionProblem.landing-ai,
#sectionIntelligence.landing-ai {
  background-color: var(--white);
  color: var(--dark-gray);
}

#sectionData.landing-ai,
#sectionForm.landing-ai {
  background-color: var(--light-gray);
  color: var(--dark-gray);
}
/*#endregion*/

/*#region CSS Grid*/
#sectionProblem,
#sectionData,
#sectionIntelligence,
#sectionRevenue {
  position: relative;
  height: 825px;
  padding: 1% 0%;
}

#sectionInfo {
  background-color: var(--light-gray);
  position: relative;
  height: 600px;
}

#sectionInfo .grid .grid-text {
  padding-left: 15%;
  padding-top: 5%;
}

/* #sectionLanding {
  position: relative;
  height: 850px;
} */

.grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 25px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* #sectionInfo .grid {
  grid-template-columns: 40% 60%;
} */

.divSolutionExpanded .grid {
  gap: 10px;
}

.landing-images,
.grid-images {
  display: flex;
  text-align: center;
  justify-content: space-between;
}

.imgContainer {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.grid-images .imgContainer img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0%;
  object-fit: contain;
  z-index: 5;
}

.divSolutionExpanded .grid-images .imgContainer img {
  top: 20px;
  left: 0px;
}

.landing-images .imgContainer img {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  top: -10%;
  left: 15%;
  object-fit: cover;
  z-index: 5;
}

#sectionHeader .grid-images .imgContainer img {
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  top: -22%;
  left: 0%;
  object-fit: cover;
  object-position: right;
  z-index: 5;
}
/*#endregion*/

/*#region Misc*/
#scrollList {
  width: 100%;
  height: 100%;
  font-size: 7.2rem;
  list-style: none;
}

.scrollItem {
  display: none;
}

/* width */
::-webkit-scrollbar:horizontal {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track:horizontal {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb:horizontal {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover:horizontal {
  background: #555;
}

/*#endregion*/

/* #region Main */
.reset-margins {
  margin: 0 auto;
}

.bourbon-entry-link {
  position: fixed;
  bottom: 22px;
  right: 6px;
  width: 30px;
  height: 30px;
}

.bourbon-entry-link:hover {
  scale: 1.2;
  transform: translateY(-5px);
}

.bourbon-entry-image {
  width: 100%;
}

.success-title, .success-desc {
  margin-bottom: 25px;
}

.success-actions a {
  margin: 0px 8px;
}

#btnAppt {
  min-width: 220px;
}

#lnkAction {
  max-height: 60px;
}

.header-top .right a {
  margin-left: 10px;
}

#navMain ul li {
  margin-left: 0px !important;
  margin-right: 25px !important;
}

#sectionProblems {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
}

.problem {
  width: 48%;
  margin: 2.5% 0.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px;
}

.problem-desc {
  font-size: 3rem;
  width: 100%;
  margin-left: 5px;
  /* padding: 0px 100px; */
}

.problem-title, .problem-desc {
  margin-bottom: 25px;
}

.btnAction {
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  color: var(--white);
  background: var(--btn-action);
  padding: 18px 18px;
  border: none;
  text-decoration: none;
  text-align: center;
  max-height: 55px;
}

.logo-dots {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.logo-dots img {
  width: 85px;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
/* #endregion */


header .left {
  flex: 0 1 auto;
}

header #navMain ul li a {
  color: var(--white);
  text-decoration: none;
}

header #navMain ul li a:hover,
#navSub li a:hover {
  text-decoration: none;
  /* text-decoration-color: var(--wc-green); */
  color: var(--wc-green) !important;
}

header #navMain ul li a.selected {
  text-decoration: underline;
  text-decoration-color: var(--wc-green);
}

.bg {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(51, 51, 51, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/stock/landing.jpeg");
  background-size: cover;
}

.text-reveal {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 1.5s;
  transform: translateY(-3em);
}

.text-reveal-row1,
.text-reveal-row2,
.text-reveal-row3 {
  clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
  transition: all 1.5s;
}

.ohnohoney{
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.header-icon {
  width: 40px;
    margin-left: 10px;
}

.bullet-list  {
  font-size: 3rem;
    list-style: circle;
    margin-bottom: 25px;
    text-align: left;
    line-height: 6.2rem;
}

.wc-link {
  font-size: 2.4rem;
  text-decoration: underline;
  text-decoration-color: var(--wc-green);
}

.wc-link:visited {
  text-decoration: underline;
    text-decoration-color: var(--wc-green);
  text-underline-position: under; 
}

.filter-white {
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(202deg) brightness(105%) contrast(101%);
}

.screenshots {
  margin-top: 40px;
}

.screenshots img {
  width: 75%;
  margin-right: 25px;
  margin-top: 70px;
}

.screenshots img:hover {
  scale: 1.1;
  transform: translateY(-10px);
  cursor: pointer;
}

#sectionProblems {
  display: flex;
  justify-content: center;
  margin: 0%;
  overflow-y: hidden;
  }

  .problem {
  width: 25%;
  margin: 0%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  height: calc(100vh - 100px);
  position: relative;
  padding: 2rem 2.5rem;
  }

  .problem .one {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(51, 51, 51, 0.75), rgba(0, 0, 0, 0.40)),
      url("/images/stock/access-to-data.png");
    background-size: cover;
    background-position-x: center;
    position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  }

  .problem .two {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(51, 51, 51, 0.75), rgba(0, 0, 0, 0.40)),
      url("/images/stock/relationship-deepening.png");
    background-size: cover;
    background-position-x: center;
    position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  }

  .problem .three {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(51, 51, 51, 0.75), rgba(0, 0, 0, 0.40)),
      url("/images/stock/uncertain-economy.png");
    background-size: cover;
    position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  }

  .problem .four {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(51, 51, 51, 0.75), rgba(0, 0, 0, 0.40)),
      url("/images/stock/incentive.png");
    background-size: cover;
    background-position-x: right;
    position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  }

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }

  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
  }

  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 4rem;
    font-weight: bold;
    transition: 0.3s;
  }

  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }

/*#region Media Queries*/
@media all and (max-width: 768px) {
  header {
    padding: 20px 15px;
    box-shadow: 0px 8px 8px 0px rgb(0 0 0 / 25%);
  }
}

@media all and (max-width: 515px) {
  #sectionForm form .formrow {
    padding: 0% 5% !important;
  }

  #sectionForm {
    padding-top: 30%;
  }
}

@media all and (max-width: 665px) {
    .problem {
      height: 300px;
    }

    .problem-desc {
      padding: 0px 75px;
    }
}

@media all and (max-width: 580px) {
  #sectionProblems {
    flex-direction: column;
  }
  
  .problem {
    width: 99%;
    height: 225px;
  }
}
/*#endregion*/

/*#region Mobile*/
div .bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 6px 0;
}

.menu-mobile {
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--white);
  margin: 6px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
  transform: rotate(-45deg) translate(-5px, 5px);
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

#navMobile {
  position: absolute;
  right: 5px;
  top: 100px;
  min-width: 200px;
  background-color: var(--white);
  box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.7);
  padding: 5px 15px;
  text-align: right;
  z-index: 10;
}

#navMobile ul {
  flex-direction: column;
  list-style: none;
  line-height: 60px;
}

#navMobile ul li {
  width: 118%;
  margin-left: -9%;
  padding-right: 15px;
  /* margin-bottom: 10px; */
}

#navMobile ul li a {
  font-size: 2.8rem;
  color: var(--dark-gray);
  text-decoration: none;
  cursor: pointer;
}

#navMobile ul li a.selected ~ #navMobile ul li {
  background-color: var(--light-gray);
}

#navMobile ul li.nav-dropdown ul {
  padding: 0px;
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 25%);
}

#navMobile ul li.nav-dropdown ul li a {
  color: var(--dark-gray);
}

#navMobile ul li.nav-dropdown ul li {
  width: 200px;
  max-width: 200px;
  margin-left: 16%;
  padding-right: 0px;
}

#sectionLanding .mobile-header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.mobile-header-text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.mobile-header-text h1,
.mobile-header-text span,
.mobile-header-text span,
.mobile-header-text p {
  color: var(--white) !important;
}

#sectionHeader div .imgHeaderContainer.mobile {
  width: 100%;
  height: 100%;
  position: inherit;
  float: none !important;
  margin-top: 0%;
  margin-right: 0% !important;
}
/* #endregion */

/*#region 2024*/

.logos {
  display: flex;
width: 100%;
}

.logos span {
  color: white;
  font-size: 3.5rem;
}

.logos .logo {
  width: 125px;
  margin: 0rem 2rem;
}

/*#endregion 2024*/


