@font-face {
  font-family: "DM Mono";
  src: url('/DMMono-Regular.ttf') format('truetype');
}

:root{
  --enterprise-black: rgb(38, 38, 38);
  --enterprise-black: black;
  --enterprise-dark-gray: rgb(75, 75, 75);
  --enterprise-gray: rgb(192, 191, 191);
  --enterprise-white: white;
  --enterprise-purple: #8F0177;
  --enterprise-light-purple: #be4aab;
  --enterprise-light-gray: whitesmoke;
  --enterprise-blue: rgb(53, 25, 144);
  --enterprise-light-blue: rgb(81, 36, 232);
  --enterprise-teal: rgb(100, 224, 179);
  --enterprise-light-teal: rgb(178, 245, 220);

  --margin: 20vw;

  --wpMinimizedPFontSize: large;
  --mobilePFontSize: x-large;

}


body {
  font-family: 'DM Mono';
  padding: 0px;
  margin: 0px;
  
  @media (max-width: 1024px) {
    font-size: medium;
    width: 100%;
    overflow-x: hidden;
  }
}


h2 {
  font-size: x-large;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 0px;
}
hr {
  margin-top: 0px;
  border-top: 1px solid rgb(173, 173, 173);
}

/* Everything related to the navigation bar goes here */
nav {
  display: flex;
  background-color: black;
  color: var(--enterprise-gray);
  max-height: 80px;
  position: sticky;

  padding-right: var(--margin);

  top: 0px;
  z-index: 9999;

  @media (hover: none) {
    display: none;
  }
  @media (max-width: 1024px) {
    display: none;
  }
  

  .logo img {
    max-height: 80px;
    padding: 0px;
    margin: 0px;
    object-fit: cover;
  }
  

  .element {
    justify-content: center;
    align-items: center;
    padding: 30px 32px 20px 32px;
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 4px;
    
    opacity: 1;
    transition: all 0.25s ease-in;
  }    
  
  .element:hover {  
    color: var(--enterprise-white);
    cursor: pointer;
    opacity: 1;
  }

  .active {
    background-color: var(--enterprise-purple);
    color: var(--enterprise-white);
    opacity: 1;
    transition: all 0.5s ease;
  }
  .active:hover {
    background-color: var(--enterprise-purple);
    color: var(--enterprise-white);
  }
}

.top {
  padding: 0;
}

/* Mobile nav menu */
.topnav {

  display: none;

  @media (hover: none) {
    display: block;
    width: 100%;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  @media (max-width: 1024px) {
    display: block;
    width: 100%;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 999;
    a {
      img {
        width: 60%;
      }
    }
  }
}
.topnav #mobileLinks {
  display: none;
  position: relative;
  margin-left: auto;
  right: 0;
  text-align: right;
  padding-right: 8vw;
}
.topnav a {
  color: white;
  padding-left: 16px;
  padding-top: 16px;
  padding-bottom: 4px;
  text-decoration: none;
  font-size: xx-large;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: relative;
  right: 0;
  width: 2em;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: 8vw;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.heroSection {
  background-color: black; 
  margin-top: 0px; 
  margin-bottom: 3px; 
  padding-bottom: 22vh; 
  padding-top: 10vh; 
  height: 90vh;

  @media (hover: none) {
    display: block;
    height: 90vh;
    position: relative;
  }
  @media (max-width: 1024px) {
    display: block;
    height: 90vh;
    position: relative;
  }
}
.glitchText {
  font-size: 8vh;
  font-weight: 600;
  margin-bottom: 0px;
  width: 60%;
  
  @media (hover: none) {
    font-size: 10vw;
  }
  @media (max-width: 1024px) {
    font-size: 10vw;
  }
}
.mottoSubtitle {
  padding-bottom: 240px; 
  color: var(--enterprise-gray);
  @media (hover: none) {
    font-size: x-large;
    padding-bottom: 50px; 
  }
  @media (max-width: 1024px) {
    font-size: x-large;
    padding-bottom: 50px; 
  }
}

.flair {
  display: flex;

  @media (hover: none) {
    display: block;
  }
  @media (max-width: 1024px) {
    display: block;
  }
  
  .title {
    font-size: x-large; 
    text-transform: uppercase; 
    padding-top: 2vh;
    width: 80%; 
    border-top: 2px solid white;

    @media (hover: none) {
      width: 80%;
      padding-top: 1vh;
      padding-bottom: 1vh;
    }
    @media (max-width: 1024px) {
      width: 80%;
      padding-top: 1vh;
      padding-bottom: 1vh;
    }

    h2 {
      @media (hover: none) {
        font-size: x-large;
        font-weight: 800;
      }
      @media (max-width: 1024px) {
        font-size: x-large;
        font-weight: 800;
      }
    }
  }
  .subtitle {
    border-top: 4px solid white; 
    margin-left: 20px; 
    width: 20%; 
    padding-top: 1vh;
    
    @media (hover: none) {
      width: 80%;
      margin-left: 0px; 
      padding-top: 1vh;
      padding-bottom: 1vh;
    }
    @media (max-width: 1024px) {
      width: 80%;
      margin-left: 0px; 
      padding-top: 1vh;
      padding-bottom: 1vh;
    }
    p {
      @media (hover: none) {
        text-transform: uppercase;
        font-size: x-large;
        padding-top: 0vh;
        padding-bottom: 0vh;
        margin: 0;
      }
      @media (max-width: 1024px) {
        text-transform: uppercase;
        font-size: x-large;
        padding-top: 0vh;
        padding-bottom: 0vh;
        margin: 0;
      }
    }
  }
}

/* row is for handeling media/mobile display */
.row {
  display: flex;
  flex-wrap: wrap;

  @media (hover: none) {
    display: block;
  }
  @media (max-width: 1024px) {
    display: block;
  }
}

/* Everything related to buttons */
button {
  /**/
  padding: 8px 24px 8px 24px;
  border-radius: 50%;
  font-family: 'DM Mono';
  background-color: var(--enterprise-white);

  opacity: 1;
  transition: all 0.5s ease;
  
  @media (hover: none) {
    font-size: var(--mobilePFontSize);
  }
  @media (max-width: 1024px) {
    font-size: var(--wpMinimizedPFontSize);
  }
}

button.arrow {
  border-radius: 40px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  padding-bottom: 8px;

  @media (hover: none) {
    font-size: var(--mobilePFontSize);
  }
  @media (max-width: 1024px) {
    font-size: var(--wpMinimizedPFontSize);
  }
}

button:hover {
  opacity: 1;
  background-image: linear-gradient(to right, rgb(123, 121, 121) 0%, slategrey 100%);
  color: var(--enterprise-white);
  cursor: pointer;
  border-color: var(--enterprise-gray);
}

button.dark {
  background-color: var(--enterprise-black);
  color: var(--enterprise-white);
}

button.dark:hover {
  opacity: 1;
  background-color: var(--enterprise-white);
  color: var(--enterprise-black);
}


button.blue {
  background-color: var(--enterprise-blue);
  color: var(--enterprise-white);
}
button.blue:hover {
  opacity: 1;
  background-color: var(--enterprise-teal);
  color: var(--enterprise-white);
}


.text_btn {
  display: flex; 
  align-items: center;
}


/* Sections are just divs where the width of the page has a notehr color */
.section {
  padding-left: var(--margin);
  padding-right: var(--margin);
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}  
.section.black {
  background-color: var(--enterprise-black);
  color: var(--enterprise-white);
}
.section.gray {
  background-color: var(--enterprise-light-gray);
}


/* Cards and columns for presenting information */
.card {
  background-color: white;
  border-radius: 10px;
  margin-right: 10px;
  padding: 20px;
  margin-bottom: 10px;
  border: 1px solid rgb(173, 173, 173);
  overflow-wrap: break-word;
}

/* Service cards, menat to display and present a given subject */
.service-card {
  margin-right: 20px;
  min-height: 425px;
  padding: 20px;
  width: 420px;
  background-color: white;
  border-radius: 10px;
  margin: 2px 20px 2px 2px;
  border-color: whitesmoke;
  transition: border-color 0.5s ease-in;
  position: relative;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  

  @media (max-width: 900px) {
    width: 80vw;
  }
}
.service-card:hover {
  border: 2px solid transparent;
  /* Source for rounding w gradient: https://stackoverflow.com/questions/51496204/border-gradient-with-border-radius*/
  background:
    linear-gradient(white 0 0) padding-box,
    linear-gradient(to right, pink 0%, var(--enterprise-light-purple) 100%) border-box;
  
  margin: 0px 18px 18px 0px;
  border-radius: 10px;
  display: inline-block;
  opacity: 1;
}
.service-card .header {
  position: absolute;
  background-color: white;
  width: 80px;
  height: 50px;
  border-radius: 0px 0px 30px 0px;
  display: flex;
  vertical-align: middle;
  font-size: xx-large;
  border-right: 1px solid rgb(173, 173, 173);
  border-bottom: 1px solid rgb(173, 173, 173);
}
.card img {
  border-radius: 5px;
  width: 422px;
  height: 422px;
}
.imgage-container img{
  width: 420px;
  height: 280px;
  object-fit: cover;
  background-color: whitesmoke;
  margin-bottom: 10px;
}


.tag {
  font-size: small;
  border-radius: 30px;
  padding: 5px 20px 5px 20px;  
  margin-right: 10px; 
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  min-height: 32px;
}
.tag.blue {
  background-color: rgb(211,194,255);
  color: var(--enterprise-black);
}
.tag.purple {
  background-color: rgb(199,194,255);
  color: var(--enterprise-black);
}
.tag.dark-purple {
  background-color: rgb(196,199,255);
  color: var(--enterprise-black);
}


/* Service splash */
/* Splash cards for the main page */
.service-splash {
  border-left: 1px solid black;
  padding: 20px;
  background-color: whitesmoke;
  border-radius: 0px 5px 5px 0px;

  flex-direction: column;

  position: relative;
  margin-bottom: 20px;
  opacity: 1;
  transition: all 0.5s ease;
  font-size: small;
  width: 30%;

  h2 {
    font-weight: 600;
    font-size: 2em;
    text-transform: uppercase;
    margin: 0;
    font-stretch:condensed;
    text-align: end;
    font-family: Arial, Helvetica, sans-serif;
  }

  @media (hover: none) {
    width: 100%;
    max-width: 100%;
    h2 {
      font-weight: 600;
      font-size: 2.5em;
    }
  }
  
  @media (max-width: 1024px) {
    width: 100%;
    max-width: 100%;
    h2 {
      font-weight: 600;
      font-size: 2.5em;
    }
  }
}
.service-splash p {
   margin-bottom: 0px; 
   padding-bottom: 0px;
  @media (hover: none) {
    font-size: var(--mobilePFontSize);
  }
  @media (max-width: 1024px) {
    font-size: var(--wpMinimizedPFontSize);
  }
}
.service-splash i {
  @media (hover: none) {
    font-size: var(--mobilePFontSize);
  }
  @media (max-width: 1024px) {
    font-size: var(--wpMinimizedPFontSize);
  }
}

.service-card-pad {
  margin-left: 20px;
}
.service-splash:hover {
  border-left: 1px solid var(--enterprise-gray);
  opacity: 1;
}
.service-splash.initial {
  color: slategrey;
  width: 10%;
  display: flex;

  @media (hover: none) {
    display: none;
  }
  @media (max-width: 1024px) {
    display: none;
  }
}

.right {
  right: 20px;
}
.bottom {
  position: absolute;
  bottom: 20px;
}

.button-container {
  height: 64px;
  
  @media (hover: none) {
    button {
      display: none;
    }
  }
  @media (max-width: 1024px) {
    button {
      display: none;
    }
  }
}

/* Everything related to input and forms */
input {
  font-family: 'DM Mono';
  padding: 10px;
  border-radius: 10px;
  border-style: solid;
  border-color: rgb(226, 226, 226);
  background-color: rgb(245, 245, 245);
}
input.dark {
  
  border-color: rgb(90, 90, 90);
  background-color: rgb(50, 50, 50);
  color: rgb(194, 194, 194);
}
input:focus {
  transition: 0.5s;
  outline: none;
  border: 2px solid var(--enterprise-light-purple);
  border-style: solid;
}

/* For code examples */
pre {
  padding: 10px;
  background-color: whitesmoke;
}

/* Portraits with personal information hidden within */





/* Stuffs for blogposts */
.headline {
    h1 {
        font-size: 2em;
        font-weight: 800;
        padding-top: 20px;
        margin-top: 0px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    p {
        font-size: large;
        padding-top: 20px;
        margin-top: 0px;
    }
    time {
        color: gray;
    }
    hr {
        height: 20vw;
    }
    a {
        font-size: 2em;
        font-weight: 900;
    }
    dt {
      color: white;
    }
}
.headline:hover {
  cursor: pointer;
}
.blog_item {
    margin-bottom: 1em;
    padding: 24px;
    width: 80%;
}

.avetar {
    object-fit: cover;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-top: auto;
    margin-bottom: auto;
}
.business_card {
    display: flex;
    dt {
        margin-left: 20px;
        font-weight: 600;
    }
    dd {
        margin-left: 20px;
        color: gray;
        font-weight: 600;
    }
    padding-bottom: 20px;
}




.initial_header_text {
    font-size: 1em;
    vertical-align:top;
    width: 30%;
  @media (hover: none) {
    font-size: 1.5em;
  }
  @media (max-width: 1024px) {
    font-size: 1.5em;
  }
}
.initial_header_motto {
  text-transform: uppercase; 
  vertical-align:top;
  font-stretch: condensed;
  width: 70%;
  padding-top: 0px;
  margin-top: 0px;

  h2 {
    font-weight: 600; 
    font-size: 2em;
    margin: 0; 
    padding-top: 0px;
    margin-top: 0px;
  }
  @media (hover: none) {
    text-align: start;
    width: 100%;
    h2 {
      text-align: start;
      font-weight: 600; 
      font-size: 2em;
      margin: 0; 
    }
  }
  @media (max-width: 1024px) {
    text-align: start;
    width: 100%;
    h2 {
      text-align: start;
      font-weight: 600; 
      font-size: 2em;
      margin: 0; 
    }
  }
}
.headline_text {
    font-size: xx-large;
    padding-top: 0px;
    margin-top: 0px;
    vertical-align: top;
}
.service_description {
    font-size: small;
  @media (hover: none) {
    font-size: var(--mobilePFontSize);
  }
  @media (max-width: 1024px) {
    font-size: var(--wpMinimizedPFontSize);
  }
}

.service_header { 
  padding-right: 40px;
  h2 {
    font-weight: 600; 
    font-size: 6vh; 
    text-transform: uppercase; 
    margin: 0; 
    font-stretch:condensed;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  @media screen and (hover: none) {
    width: 100%;
    p {
      font-size: x-large;
    }
    i {
      font-size: x-large;
    }
    h3 {
      font-size: 2em;
    }
    li {
      font-size: x-large;
    }
    h2 {
      font-size: 6em;
    }
  }

  
  @media (max-width: 1024px) {
    h2 {
      font-size: 4em;
    }
    width: 100%;
    p {
      font-size: x-large;
    }
    i {
      font-size: x-large;
    }
    h3 {
      font-size: 2em;
    }
    li {
      font-size: x-large;
    }
  }
}


/* this is for handeling when elements are not in the right order */
.hideForMobile {
  text-align: end;
  display: block;
  @media (hover: none) {
    display: none;
  }
  @media (max-width: 1000px) {
    display: none;
  }
}
.showForMobile {
  display: none;
  @media (hover: none) {
    display: block;
  }
  @media (max-width: 1000px) {
    display: block;
  }
}


.tbl-statement {
  width: 40%; 
  font-weight: 600; 
  vertical-align: top;

  @media (hover: none) {
    width: 100%; 
    font-weight: 100; 
    font-size: xx-large;
  }
  @media (max-width: 1024px) {
    width: 100%; 
    font-weight: 100; 
    font-size: xx-large;
  }
}
@media screen and (hover: none) {
    table {
        border: 0;
        width: 100%;
        margin: 0;
    }

    th {
        display: none;
        /* Hide header in mobile view */
    }

    td {
        padding: 10px;
        display: block;
        text-align: left;
        /* Ensure text remains left-aligned */
        position: relative;
        font-size: var(--mobilePFontSize);
    }

    tr {
        display: block;
        margin-bottom: 10px;
    }
}
@media (max-width: 1024px) {
    table {
        border: 0;
        width: 100%;
        margin: 0;
    }

    th {
        display: none;
        /* Hide header in mobile view */
    }

    td {
        padding: 10px;
        display: block;
        text-align: left;
        /* Ensure text remains left-aligned */
        position: relative;
      font-size: var(--wpMinimizedPFontSize);
    }

    tr {
        display: block;
        margin-bottom: 10px;
    }
}
.stmt-p p {
  padding-top: 0px;
  margin-top: 0px;
}

a {
  color: slategray;
}

.section-box {
  background-color: white;
  border-radius: 10px;
  margin: 2px auto auto auto;
  padding: 60px 16vw 60px 16vw;
  
}

.content_header {
  margin-bottom: 10px;
}

/* Handle black commic book squares */
.black-box {
  background-color: black; color: white;
  h1 {
    font-weight: 500; 
    font-size: 3em;
    text-transform: uppercase;
    margin: 0;
    font-stretch:condensed;
    text-align: end;
    
  }
  
  @media (max-width: 1240px) {
    h1{
      font-size: 2em
    }
  }
  @media screen and (hover: none) {
    h1{
      font-size: 2em
    }
  }

  hr {
    margin-bottom: 1em;
  }
  
  @media screen and (hover: none) {
    p {
      font-size: var(--mobilePFontSize);
    }
  }
  @media (max-width: 1024px) {
    p {
      font-size: var(--wpMinimizedPFontSize);
    }
  }
}

.smallBb {
  width: 35%;
  @media screen and (hover: none) {
    width: 100%;
  }
  @media (max-width: 1024px) {
    width: 100%;
  }
}
.largeBb{
  width: 55%;
  @media screen and (hover: none) {
    width: 100%;
  }
  @media (max-width: 1024px) {
    width: 100%;
  }
}
.impactText {
  font-size: 6vh; 
  background-color: black; 
  color: black;
  font-weight: 800; 
  padding-left: 20px; 
  font-family: Arial, Helvetica, sans-serif;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: white;
  width: 40vw;

  @media (max-width: 1024px) {
    font-size: 3em
  }
  @media screen and (hover: none) {
    font-size: 3em;
  }
}

.impactDescription {
  color: white;
  width: 40vw;
  padding-left: 20px;
  padding-right:20px;
  margin: auto 0px auto auto;
  right:0;
  padding-top:24px;
  @media screen and (hover: none) {
    width: 90%;
  }
  @media (max-width: 1024px) {
    width: 90%;
  }
}

/* glitch animation */
.glitch {
  text-transform: uppercase;
  max-height: 40vh;
  height: 40vh;
}


.mobileLinksFooter {
  ul {
    font-size: large;
    color: white;
    columns: 2;
    @media screen and (hover: none) {
      font-size: x-large;
      columns: 1;
    } 
    @media (max-width: 1024px) {
      font-size: large;
      columns: 1;
    }
  }
}
.profile {
  object-fit: scale-down; 
  max-width: 200px;
  @media (hover: none) {
    object-fit: fill; 
    width: 80%;
    max-width: 80%;
  }    
  @media (max-width: 1024px) {
    object-fit: fill; 
    width: 80%;
    max-width: 80%;
  }
}

.contact_form { 
    background-color: black;
    color: white;
    padding: 30px;
    float: right;
    margin: auto;
}
.contact_form h2 {
    padding: 10px;
    margin: 0px;
}


td {
    padding-top: 10px;
    width: 100%;
}
select {
    padding: 10px;
    width: 320px;
}
input {
    padding: 10px;
    width: 300px;
}
.cbx {
    padding-left: 0px;
    float: left;
    width: 14px;
    padding-right: 20px;
}
.submit {
    border-radius: 50px;
    padding: 10px 20px 10px 20px;
    font-family: 'DM Mono';
    font-size: large;
    background-color: white;
    border-color: white;
    color: black;
}


.contactHeader {
  font-size: 12vh;
  font-weight: 1000;
  @media (hover: none) {
    font-size: xxx-large;
  }
  @media (max-width: 1024px) {
    font-size: xxx-large;
  }
}
.contactGreeting {
  width: 30%; 
  padding-right: 8vw;
  @media (hover: none) {
    font-size: xx-large;
    width: 100%;
  }
  @media (max-width: 1024px) {
    font-size: xx-large;
    width: 100%;
  }
}
.contactText {
  margin-bottom: 24vh;
  h2 {
    font-weight: 600; 
    font-size: 4vh; 
    text-transform: uppercase; 
    margin: 0; 
    font-stretch:condensed;
    text-align: start; 
    font-family: Arial, Helvetica, sans-serif;
    @media (hover: none) {
      font-size: xxx-large;
      word-break: break-all;
    }
    @media (max-width: 1024px) {
        font-size: xxx-large;
        word-break: break-all;
    }
  }
}




.empty_circle {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 2px;
    margin-bottom: 2px;
}
.active_circle {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    background-color: white;
    border-radius: 50%;
    margin-right: 2px;
    margin-bottom: 2px;
}
.partial_circle {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    background-color: slategray;
    border-radius: 50%;
    margin-right: 2px;
    margin-bottom: 2px;
}

.polka-dot-circle {
  /* Create a perfect circle */
  width: 22px;
  height: 22px;
    min-width: 22px;
    min-height: 22px;
  border-radius: 50%; /* 0.5.15 */
  
  /* Base background color */
  background-color: black;
  
  /* Two layered radial gradients to create the staggered polka dot pattern */
  background-image: 
    radial-gradient(#eceff4 20%, transparent 20%),
    radial-gradient(#eceff4 20%, transparent 20%); /* 0.5.5 */
  
  /* Set the pattern tile size */
  background-size: 6px 6px;
  
  /* Offset the second gradient layer to stagger the dots */
  background-position: 0 0, 3px 3px; /* 0.5.5 */
  border: 2px solid white;
}






/* Tooltip container */
.tooltip {
    cursor: pointer;
}

/* Tooltip text */
.tooltip-text {
    visibility: hidden; /* Hidden by default */
    width: 20vw;
    background-color: black;
    color: #ffffff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1; /* Ensure tooltip is displayed above content */
}
/* Show the tooltip text on hover */
.tooltip:hover .tooltip-text {
    visibility: visible;
}