/* 
COLOR PALETTE
black           rgb(0 0 0)
light green     rgb(133 171 47) #85ab2f (not contrast-compliant on white background)
dark green      rgb(52 65 23) $344117 (contrast-compliant on white background)
*/
/*------------------------------------------------------------GLOBAL STYLES*/
/* https://www.paulirish.com/2012/box-sizing-border-box-ftw */
html {
  box-sizing: border-box;
  font-size: 62.5%; /*setting default to 10px*/
  scroll-behavior: smooth;
  background-color: black;
  background: url(../images/mouse-keyboard-monitors-dark-3000.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: rgb(0 0 0);
}
html,
body {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 650px) {
  html {
    background: url(../images/mouse-keyboard-monitors-dark-1200.jpg);
    background-size: auto;
    background-position-x: center;
    background-repeat: no-repeat;
  }
  .site-wrapper {
    width: 100%;
    height: 100%;
    overflow: scroll;
  }
}
/*---------------------------------------------------------------------H1/LOGO*/
h1 {
  text-align: center;
  color: rgb(255 255 255);
  font-weight: 200;
  font-size: 6rem;
  margin-bottom: 4px;
  padding-top: 40vh;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 900px) {
  h1 {
    font-size: 4rem;
    margin-bottom: 4px;
    letter-spacing: 0.5rem;
  }
}
@media screen and (max-width: 650px) {
  h1 {
    font-size: 3.5rem;
    margin-bottom: 4px;
    letter-spacing: 0.5rem;
    padding-top: 30vh;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 2.8rem;
    margin-bottom: 4px;
    letter-spacing: 0.5rem;
    padding-top: 30vh;
  }
}
.h1Tagline {
  text-align: center;
  color: rgb(255 255 255);
  font-weight: 300;
  font-size: 3rem;
  margin-top: 4px;
  letter-spacing: 0.3rem;
  margin-bottom: 50vh;
}
@media screen and (max-width: 900px) {
  .h1Tagline {
    font-weight: 300;
    font-size: 2rem;
    margin-top: 2px;
    margin-bottom: 55vh;
  }
}
@media screen and (max-width: 650px) {
  .h1Tagline {
    font-weight: 300;
    font-size: 1.6rem;
    margin-top: 2px;
    margin-bottom: 55vh;
  }
}
#logo {
  opacity: 0;
  animation: logoFadeIn 1s 0.25s forwards;
}
@keyframes logoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes menuDrop {
  from {
    transform: translateY(-60px);
  }
  to {
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------------------------H2*/
h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 120px;
  padding-bottom: 0px;
  color: rgb(255 255 255);
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  background-color: rgb(0, 0, 0, 0);
}
@media screen and (max-width: 650px) {
  h2 {
    font-size: 3rem;
    padding-top: 60px;
    width: 100%;
    height: 100px;
  }
}
.h2-container {
  width: 100%;
  background-color: black;
}
#services-h2-container {
  width: 100%;
  background-image: url(../images/filemaker-1-cropped.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
}
#use-cases-h2-container {
  width: 100%;
  margin-top: 60vh;
  background-image: url(../images/monitors-cropped.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
}
#contact-h2-container {
  width: 100%;
  margin-top: 60vh;
  background-image: url(../images/mouse-keyboard-cropped.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
}
#about-h2-container {
  width: 100%;
  margin-top: 60vh;
  background-image: url(../images/phone-keyboard-cropped.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
}
/*-------------------------------------------------------------------------------H3-H6*/
h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10vh;
  padding-bottom: 0px;
  color: rgb(0 0 0);
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 650px) {
  h3 {
    font-size: 2.2rem;
  }
}
.h3-horizontal {
  border-top: solid 0.16em;
  border-color: rgb(0 0 0);
  padding-bottom: 0;
  margin-bottom: 10px;
}
h4 {
  text-align: left;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.1;
  color: rgb(0 0 0);
  letter-spacing: 0.01em;
  margin-bottom: -1em;
}
h5 {
  text-align: center;
}
h6 {
  text-align: center;
}
/*-----------------------------------------------------------------LOGO & SUBHEADERING*/

#scroll p {
  position: fixed;
  bottom: 5px;
  color: rgb(255 255 255 / 0.5);
  text-align: center;
  width: 100%;
  font-weight: 100;
  display: block;
  opacity: 0;
  animation: logoFadeIn 1s 1s forwards;
}
/*---------------------------------------------------------------------HORIZONTAL LINES*/
.horizontal-spacer {
  padding-bottom: 120px;
}
.horizontalLine {
  margin: 0 40%;
}
#logo-horizontal {
  border-bottom: solid 0.12em;
  border-color: rgb(255 255 255);
}
.services-horizontal {
  border-top: solid 0.12em;
  border-color: rgb(255 255 255);
  padding-bottom: 90px;
}
@media screen and (max-width: 650px) {
  .services-horizontal {
    padding-bottom: 30px;
  }
}
.use-cases-horizontal {
  border-top: solid 0.12em;
  border-color: rgb(255 255 255);
  padding-bottom: 90px;
}
.contact-horizontal {
  border-top: solid 0.12em;
  border-color: rgb(255 255 255);
  padding-bottom: 90px;
}
.about-horizontal {
  border-top: solid 0.12em;
  border-color: rgb(255 255 255);
  padding-bottom: 90px;
}

/*--------------------------------------------------------------------DESKTOP NAV*/
#desktopNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: rgb(255 255 255);
  z-index: 100;
  width: 100%;
  height: 60px;
  background-color: rgb(0 0 0 / 0.6);
  box-shadow: 0px 0px 4px 10px rgb(0 0 0);
  padding: 0;
  animation: menuDrop 1s;
}
@keyframes menuDrop {
  from {
    transform: translateY(-60px);
  }
  to {
    transform: translateY(0);
  }
}
@media screen and (max-width: 650px) {
  #desktopNav {
    display: none;
  }
}
#desktopNav ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}
#desktopNav li {
  color: rgb(255 255 255);
  list-style-type: none;
  text-decoration: none;
  font-weight: 200;
  font-size: 2rem;
  padding: 1.5rem 2rem;
  margin: 0 4px;
  position: relative;
  height: 40px;
}
#desktopNav a {
  color: rgb(255 255 255);
}
#desktopNav a:hover {
  color: rgb(255, 255, 255, 0.85);
}
.navActive {
  color: rgb(255 255 255);
}
/*Nav Link Underline added on hover*/
#desktopNav li::before {
  content: "";
  position: absolute;
  width: 1px;
  max-width: 50%;
  bottom: -4px;
  left: 50%;
  right: -50%;
  background-color: white;
  transition: all 0.5s cubic-bezier(0.04, 0.7, 0.62, 0.72);
  opacity: 0;
  height: 0.5px;
  z-index: 1000;
}
#desktopNav li:hover::before {
  width: 50%;
  height: 0.5px;
  left: 25%;
  right: 25%;
  opacity: 1;
}
/*---------------------------------------------------------------------MOBILE NAV BUTTON*/
#mobileNav {
  display: none;
  position: fixed;
  background-color: black;
  box-shadow: 0px 0px 4px 10px rgb(0 0 0);
  cursor: pointer;
  font-size: 3rem;
  color: white;
  left: 0;
  top: 0;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  animation: menuDrop 1s;
}
@media screen and (max-width: 650px) {
  #mobileNav {
    display: flex;
  }
}
nav button {
  background-color: black;
  cursor: pointer;
  font-size: 5rem;
  color: white;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0 0 8px 0;
}
/*---------------------------------------------------------------------MOBILE NAV BODY*/
@keyframes mobileMenuDrop {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(0);
  }
}
#mobileMenuNav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0;
  animation: mobileMenuDrop 0.5s;
}
#mobileMenuNav a {
  color: white;
}
/* SHOW MOBILE MENU */
.show {
  display: block !important;
  animation: mobileMenuDrop 0.5s;
}
#mobileMenuNav ul {
  display: grid;
  margin: 0;
  padding: 0 0 16px 0;
  background-color: rgb(0 0 0);
  box-shadow: 0px 0px 4px 10px rgb(0 0 0);
  border-radius: 0 0 16px 0;
  width: 100%;
}
#mobileMenuNav li {
  color: rgb(255 255 255);
  list-style-type: none;
  text-decoration: none;
  font-weight: 200;
  font-size: 3rem;
  line-height: 3rem;
  padding-top: 20px;
  padding-left: 80px;
  padding-right: 32px;
  padding-bottom: 32px;
  position: relative;
  height: 80px;
  width: auto;
}
/*Nav Link Underline added on hover*/
#mobileMenuNav li::before {
  content: "";
  position: absolute;
  width: 1px;
  max-width: 75%;
  bottom: 20px;
  left: 80px;
  right: 4px;
  background-color: white;
  transition: all 0.5s cubic-bezier(0.04, 0.7, 0.62, 0.72);
  opacity: 0;
  height: 0.5px;
  z-index: 1000;
  margin-bottom: 8px;
}
#mobileMenuNav li:hover::before {
  height: 0.5px;
  width: 72px;
  opacity: 1;
}
/*---------------------------------------------------------------------MAIN*/
.mainContainer {
  display: flex;
  align-items: normal;
  justify-content: center;
}
main {
  background-color: #D0D0D0;
  width: 80%;
  padding: 32px 32px;
  border-radius: 5px;
  margin: 0 0;
  margin-bottom: 40px;
  max-width: 1500px;
}
@media screen and (max-width: 1400px) and (min-width: 901px) {
  main {
    width: 90%;
    padding: 32px 32px;
  }
}
@media screen and (max-width: 900px) and (min-width: 651px) {
  main {
    width: 90%;
    padding: 32px 16px;
  }
}
@media screen and (max-width: 650px) {
  main {
    width: 100%;
    padding: 32px 16px;
  }
}
/*---------------------------------------------------------------------MAIN CONTENT*/

/*---------------------------------------------------------------------PARAGRAPHS*/
p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.1;
  color: rgb(0 0 0);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 650px) {
  p {
    font-size: 1.6rem;
  }
}
p a {
  color: rgb(74 92 33);
}
main ul {
  margin-top: -1em;
}
main ul li {
  font-size: 1.6rem;
  line-height: 2.5em;
  list-style-type: "• ";
  margin-bottom: 0.75em;
}
@media screen and (max-width: 650px) {
  main ul li {
    font-size: 1.6rem;
  }
}
/*---------------------------------------------------------------------LINKS*/
a:link {
  text-decoration: none;
  color: rgb(74 92 33);
}
a:visited {
  text-decoration: none;
  color: rgb(74 92 33);
}
a:active {
  text-decoration: none;
  color: rgb(74 92 33);
}
a:hover {
  color: rgb(74 92 33 / 0.7);
}
/*---------------------------------------------------------------------SECTION NAV*/
.sectionNav {
  text-align: left;
  list-style-type: "• ";
  font-size: 1.8rem;
  line-height: 2em;
  font-weight: 600;
}
@media screen and (max-width: 650px) {
  .sectionNav{
    font-size: 1.6rem;
  }
}
/*Nav Link Underline added on hover*/
.sectionNav li::before {
  content: "";
  position: absolute;
  width: 1px;
  max-width: 50%;
  bottom: 0;
  left: 50%;
  right: -50%;
  background-color: rgb(99 125 235);
  transition: all 0.5s cubic-bezier(0.04, 0.7, 0.62, 0.72);
  opacity: 0;
  height: 0.5px;
}

.backToTop {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}
/*---------------------------------------------------------------------IN-BODY SCROLL*/
.cert-image-flex {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 650px) {
  .cert-desktop {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  .cert-mobile {
    display: none;
  }
}

/*---------------------------------------------------------------------FORMS*/
form {
  text-align: center;
  margin: auto;
}

label {
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.1;
  color: rgb(0 0 0);
  letter-spacing: 0.01em;
}
legend {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.1;
  color: rgb(0 0 0);
  letter-spacing: 0.01em;
  text-align: center;
}
.textInput {
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.1;
  color: rgb(0 0 0);
  letter-spacing: 0.01em;
  border-radius: 6px;
  margin-bottom: 16px;
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .textInput {
    width: 90%;
  }
}
input:hover {
  border-color: black;
  border-width: 2px;
}
label:focus-within {
  color: rgb(99 125 235);
}
input:focus {
  border: 2px solid rgb(99 125 235);
}
.formInputWrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
fieldset {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  fieldset {
  width: 95%;
  margin: auto;
}
}
legend {
  margin: auto;
}
.radio {
  background-color: rgb(255 255 255);
  width: fit-content;
  margin: auto;
  text-align: center;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.1;
  color: rgb(0 0 0);
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 0 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  .radio {
    width: 90%;
  }
}
textarea {
  width: 80%;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.1;
  color: rgb(0 0 0);
  letter-spacing: 0.01em;
  border-radius: 8px;
}
@media screen and (max-width: 1000px) {
  textarea {
    width: 90%;
  }
}
.submit-button {
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  background-color: rgb(0 0 0);
  color: rgb(255 255 255);
  padding: 16px 32px;
  border-radius: 8px;
}
/*---------------------------------------------------------------------SUBPAGE MAIN HTML*/
.subPage {
  margin-top: 20vh;
  text-align: center;
}
.center-image {
  display: flex;
  justify-content: center;
  margin-top: 1.2em;
  justify-content: space-evenly;
}
.h3img {
  max-width: 800px;
}
@media screen and (max-width: 1000px) {
  .desktop-center-image {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .mobile-center-image {
    display: none;
  }
}



/*---------------------------------------------------------------------IMAGE GALLERY*/
  :root {
  --bg: #f7f6f3;
  --ink: #1c1c1c;
  --muted: #6b6b6b;
  --focus: #2f5d8a;
  --card-bg: #ffffff;
  --overlay: rgba(10, 10, 10, 0.88);
}

* { box-sizing: border-box; }


section.gallery-section {
  margin-bottom: 2.5rem;
}

section.gallery-section h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

@media screen and (max-width: 650px) {
  .gallery{
    flex-direction: column;
  }
}


.thumb-trigger {
  width: calc(50% - 0.5rem);
}
.thumb-trigger {
  width: 45%;
  background: var(--card-bg);
  border: 1px solid #e3e1db;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 650px) {
  .thumb-trigger {
    width: 85%;
  }
}

.thumb-trigger img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 650px) {
  .thumb-trigger img {
    display: block;
    width: 100%;
    height: 200px;
  }
}

.thumb-trigger:hover img { transform: scale(1.04); }

.thumb-trigger:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Modal for every gallery */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal-overlay[hidden] { display: none; }
.modal-overlay.is-visible { opacity: 1; }

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.modal-overlay.is-visible .modal-content { transform: scale(1); }

.modal-content img {
  max-width: 90vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

#modal-caption {
  color: #fff;
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 2.1rem;
}
@media screen and (max-width: 650px) {
  #modal-caption {
    font-size: 1.6rem;
  }
}

#modal-counter {
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-size: 1.9rem;
  margin: 0.15rem 0 0;
}
@media screen and (max-width: 650px) {
  #modal-counter {
  font-size: 1.4rem;
}
}

.modal-close {
  position: absolute;
  top: -4.75rem;
  right: -0.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
}
@media screen and (max-width: 650px) {
  .modal-close {
  font-size: 2.75rem;
}
}

.modal-close:hover { background: rgba(255, 255, 255, 0.1); }

.modal-close:focus-visible,
.modal-nav:focus-visible {
  outline: 3px solid #8ec1ff;
  outline-offset: 2px;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 2.4rem;
  width:5rem;
  height: 5rem;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 650px) {
  .modal-nav {
  top: 40%;
  font-size: 2.4rem;
  width:3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
}
}

.modal-nav:hover { background: rgba(0, 0, 0, 0.65); }
.modal-nav.prev { left: -1rem; }
.modal-nav.next { right: -1rem; }
.modal-nav[hidden] { display: none; }

@media (max-width: 600px) {
  .modal-nav.prev { left: 0.25rem; }
  .modal-nav.next { right: 0.25rem; }
  .modal-close { top: 0.5rem; right: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal-content, .thumb-trigger img {
    transition: none;
  }
}