/* Background */
body {
  font-family: Eurostile;
  background: #000000;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* width */
::-webkit-scrollbar {
  display: block;
  width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #c1ff00; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c1ff00; 
}

/* @font-face {
  font-family: "Eurostile";
  font-style: normal;
  font-weight: normal;
  src: local("eurostile"),
    url("eurostile") format("woff");
} */

@font-face {
	font-family: 'Eurostile';
	src: 
	     url('/fonts/Eurostile/eurostile.woff') format('woff');
	}

@font-face {
  font-family: "EuroStyle Normal";
  src: 
	     url('/fonts/Eurostile/EuroStyle\ Normal.woff') format('woff');
}

/* @font-face {
  font-family: "EuroStyle Normal";
  font-style: normal;
  font-weight: normal;
  src: local("EuroStyle Normal"),
    url("/src/fonts/Eurostile/EuroStyle\ Normal.woff") format("woff"),
    url("http://127.0.0.1:3000/fonts/EuroStyle\ Normal.woff") format("woff"),;
} */

@font-face {
  font-family: "PitchSans-Regular";
  src: local("PitchSans-Regular"),
    url("/fonts/Pitch-sans/pitch-sans.woff") format("woff");
}

@font-face {
  font-family: "PitchSans-italic";
  font-style: normal;
  font-weight: normal;
  src: local("PitchSans-italic"),
    url("/fonts/Pitch-sans/pitch-sans-italic.woff") format("woff");
}

@font-face {
  font-family: "BankGothic";
  font-style: normal;
  font-weight: normal;
  src: local("BankGothic"),
    url("/fonts/BankGothic/BankGothic.woff") format("woff");
}

/* CURSOR */
/* Inspired from https://tympanus.net/codrops/ */

/* *,
*::after,
*::before {
  box-sizing: border-box;
} */
/* 
* {
  cursor: none !important;
}

:root {

  --cursor-sphere-stroke-width: 1.5px;
}

.cursor_scroll {
} */

/* Cursor CSS Start */
/* .cursor {
  display: none;
  z-index: 1003;
}

@media (any-pointer: fine) {
  .cursor,
  .cursor-sphere {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1003;
  }

  .cursor-sphere__inner {
    fill: var(--cursor-sphere-fill);
    stroke: var(--cursor-sphere-stroke);
    stroke-width: var(--cursor-sphere-stroke-width);
    opacity: 0.7;
    animation: rotationAnim 3s linear infinite;
    transform-origin: center;
  }

  .cursor__path {
    fill: var(--cursor-fill);
  }

  @keyframes rotationAnim {
    to {
      transform: rotate(360deg);
    }
  }
} */
/* Cursor CSS End */

/* NAVBAR */
.container-fluid {
  padding-left: 0px;
}

.navbar {
  padding-right: 0;
  background-color: #000;
  z-index: 100;
  width: 100%;
  height: 5vh;
  min-height: 30px;
  position: fixed;
}

.collapse {
  position: fixed;
  width: 97%;
}
.content_img {
  max-height: 30px;
  height: 100%;
  margin-bottom: 0;
}

.navbar-nav {
  text-align: right;
}

.navbar-custom .nav-item:hover .nav-link {
  color: #8cc63f;
}

.hamburger {
  width: 30px;
  height: 30px;
  z-index: 1002;
}

/* 404 */

/* LOADING SCREEN */

.loading_screen {
  background-color: #000;
  height: 100vh;
  width: 100%;
  position: fixed;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
  z-index: 103;
  visibility: visible;
  display: flex;
  flex-direction: column;
}

.preloader {
  top: 0;
  margin: 0;
  position: fixed;
  background-color: #c1ff00;
  width: 100%;
  height: 100vh;
}

.loader {
  margin: 0;
  position: fixed;
  background-color: #000;
  width: 100%;
  height: 100vh;
}

.loader_content {
  text-align: left;
  width: 400px;
  padding-left: 20px;
  padding-bottom: 20px;
  left: 0;
  bottom: 0;
  position: absolute;
  color: white;
}

@media (max-width: 991px) {
  .loader_content {
    padding-bottom: 100px;
  }
}

.loader_content svg {
  width: 12em;
}

.loader_count {
  height: 10em;
}

.loader_count p {
  font-size: 10em;
  margin: 0;
}

.loader_count_1 {
  font-weight: bold;
  font-size: 8em;
  margin: 0;
}

.loader_count_2 {
  font-weight: bold;
  font-size: 8em;
  margin: 0;
}

.loader_p {
  font-family: BankGothic;
  margin-bottom: 10px;
}

.loader_p p {
  font-family: BankGothic;
  font-size: 1.5em;
  margin: 0;
}

/* MENU OVERLAY */
.menu-overlay {
  background-color: rgb(0, 0, 0);
  color: #333;
  height: 100%;
  width: 100%;
  position: fixed;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-overlay.open {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
  visibility: visible;
}

/* ------------- */

.menu_list {
  list-style-type: none;
}

.menu_list hr {
  width: 100vw;
  height: 0.5px;
  color: #c1ff00;
  background-color: #c1ff00;
}

.menu_text {
  color: #ffffff;
  text-decoration: none;
  font-size: 3em;
}

.menu_text:hover {
  color: #c1ff00;
  text-decoration: none;
}

/* CAROUSEL */
.carousel {
  width: 100%;
  height: 100vh;
  display: flex;
}

.qoute-1 {
  color: white;
  font-size: 10vh;
  font-family: Eurostile;
  font-weight: bold;
}

.qoute-2 {
  color: white;
  font-family: Eurostile;
  font-weight: lighter;
  font-size: 2vh;
}

.carousel-item {
  margin-top: 20%;
  padding: 1% 1%;
}

@media (max-width: 991px) {
  .qoute-1 {
    color: white;
    font-size: 6vh;
    font-family: Eurostile;
    font-weight: bold;
    overflow-wrap: break-word;
  }

  .carousel {
    width: 100%;
    height: 50vh;
    display: flex;
  }

  .carousel-item {
    padding: 1% 1%;
    max-width: 100vw;
  }
}

.car-text {
  text-align: left;
  /* margin: 13rem 0 0 0; */
  /* height: 30rem; */
}

.carousel-item:hover .qoute-1,
.qoute-2 {
  opacity: 85%;
}

/* .green-line {
  background-color: #c1ff00;
  height: .5vh;
  width: 80vh;
  margin-left: 1vh;
} */
.carousel-item hr {
  background-color: #c1ff00;
  height: 0vh;
  width: 0vh;
  margin-left: 1vh;
  -webkit-transition: width 2s ease-in;
  transition: width 2s ease-in;
}
.carousel-item:hover hr {
  /* transition: width 2s; */
  /* -webkit-transition: width 2s ease-in;
  transition: width 2s ease-in; */
  background-color: #c1ff00;
  height: 0.5vh;
  width: 80vh;
  margin-left: 1vh;
}

.work_img {
  fill: #fff;
  width: 10vw;
  height: fit-content;
  position: absolute;
  left: 15px;
  bottom: 25px;
}

.work_svg:hover {
  fill: #c1ff00;
}

/* PORTFOLIO */

.portfolio_div {
  padding-top: 20px;
  padding-bottom: 30px;
}

.portfolio {
  display: flex;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}

.portfolio_img {
  height: 1100px;
}

.port_img {
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
}

.port_text_div {
  position: absolute;
  height: max-content;
  right: 8px;
  align-self: center;
}
.port_text {
  height: 20em;
  fill: #ffffff;
}

.album {
  height: 30vh;
  fill: #ffffff;
}

.port_text:hover {
  fill: #c1ff00;
}

/* Product */

.a.gumroad-button {
  display: inline-block !important;
  width: 5vw !important;
  position: relative !important;
  bottom: 20px !important;
}

.product_img {
  left: 15px;
  padding-top: 20px;
  bottom: 10px;
  position: relative;
  width: 300px;
}

.portfolio_svg {
  width: 100px;
}

.products {
  overflow: hidden;
  max-width: 3000px;
  padding-top: 10px;
  background-color: #2e2e2e;
}

.font {
  height: 100%;
  
  padding-right: 0;
  text-align: left;
  color: #ffffff;
}

.font h1 {
  padding-left: 30px;
  font-family: Eurostile;
}

.prod_svg {
  text-align: center;
  border-radius: 15px 15px 15px 15px;
  width: 100vw;
  background-color: #c1ff00;
  color: #000 ;
}


.product_svg {
  padding: 10px;
  position: relative;
  margin: auto;
  margin: 0;
  width: 100%;
}

.gumroad {
  width: 100%;
  height: 56px;
  /* border: #37a6cb solid 2px; */
}
.gumroad-button {
  text-align: center;
  width: 100% !important;
  align-content: center !important;
}

/* TWD */

.twd {
  height: 400px;
}
.twd_img {
  padding: 100px 0 0 15px;
  width: 400px;
}
.twd_text {
  font-family: PitchSans-Regular;
  color: #c1ff00;
  margin: 50px 0 0 15px;
  width: 60vw;
  overflow-wrap: break-word;
}
@media (max-width: 991px) {
  .twd_text {
    width: 100vw;
  }
}

/* Testimonials */

/* CONTACT ME FORM */
@media (max-width: 991px) {
  .testimonial .box {
    margin-top: 30px;
  }
}

.contact-method {
  margin: 0 0 2em 0;
  padding-left: 3.25em;
  position: relative;
}

.contact-method .icon {
  left: 0;
  position: absolute;
  top: 0;
}

.contact-method h3 {
  margin: 0 0 0.5em 0;
}

/* Contact */
form {
  margin: 0 0 2em 0;
}

form > :last-child {
  margin-bottom: 0;
}

form > .fields {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% + 3em);
  margin: -1.5em 0 2em -1.5em;
}

form > .fields > .field {
  -moz-flex-grow: 0;
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  padding: 1.5em 0 0 1.5em;
  width: calc(100% - 1.5em);
}

form > .fields > .field.half {
  width: calc(50% - 0.75em);
}

form > .fields > .field.third {
  width: calc(100% / 3 - 0.5em);
}

form > .fields > .field.quarter {
  width: calc(25% - 0.375em);
}

#message {
  height: 35vh;
}

@media screen and (max-width: 480px) {
  form > .fields {
    width: calc(100% + 3em);
    margin: -1.5em 0 2em -1.5em;
  }

  form > .fields > .field {
    padding: 1.5em 0 0 1.5em;
    width: calc(100% - 1.5em);
  }

  form > .fields > .field.half {
    width: calc(100% - 1.5em);
  }

  form > .fields > .field.third {
    width: calc(100% - 1.5em);
  }

  form > .fields > .field.quarter {
    width: calc(100% - 1.5em);
  }
}

label {
  color: #ffffff;
  display: block;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.25em;
  margin: 0 0 1em 0;
  text-transform: uppercase;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: rgba(212, 212, 255, 0.035);
  border: none;
  border-radius: 0;
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
input[type="tel"]:invalid,
input[type="search"]:invalid,
input[type="url"]:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  border-color: #9bf1ff;
  box-shadow: 0 0 0 2px #9bf1ff;
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(212, 212, 255, 0.1)' /%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  height: 2.75em;
  padding-right: 2.75em;
  text-overflow: ellipsis;
}

select option {
  color: #c1ff00;
  background: #242943;
}

select:focus::-ms-value {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select {
  height: 2.75em;
}

textarea {
  padding: 0.75em 1em;
}

::-webkit-input-placeholder {
  color: rgb(244, 244, 255) !important;
  opacity: 1;
}

:-moz-placeholder {
  color: rgb(244, 244, 255) !important;
  opacity: 1;
}

::-moz-placeholder {
  color: rgb(244, 244, 255) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgb(244, 244, 255) !important;
  opacity: 1;
}

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.icon > .label {
  display: none;
}

.icon:before {
  line-height: inherit;
}

.icon.solid:before {
  font-weight: 900;
}

.icon.brands:before {
  font-family: "Font Awesome 5 Brands";
}

.icon.alt:before {
  background-color: #ffffff;
  border-radius: 100%;
  color: #242943;
  display: inline-block;
  height: 2em;
  line-height: 2em;
  text-align: center;
  width: 2em;
}

a.icon.alt:before {
  -moz-transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

a.icon.alt:hover:before {
  background-color: #6fc3df;
}

a.icon.alt:active:before {
  background-color: #37a6cb;
}

ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 1em 0;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ul.alt {
  list-style: none;
  padding-left: 0;
}

ul.alt li {
  border-top: solid 1px rgba(212, 212, 255, 0.1);
  padding: 0.5em 0;
}

ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}

dl {
  margin: 0 0 2em 0;
}

dl dt {
  display: block;
  font-weight: 600;
  margin: 0 0 1em 0;
}

dl dd {
  margin-left: 2em;
}

/* Actions */
ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1em;
  padding-left: 0;
}

ul.actions li {
  padding: 0 0 0 1em;
  vertical-align: middle;
}

ul.actions.special {
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  margin-left: 0;
}

ul.actions.special li:first-child {
  padding-left: 0;
}

ul.actions.stacked {
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}

ul.actions.stacked li {
  padding: 1.3em 0 0 0;
}

ul.actions.stacked li:first-child {
  padding-top: 0;
}

ul.actions.fit {
  width: calc(100% + 1em);
}

ul.actions.fit li {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}

ul.actions.fit li > * {
  width: 100%;
}

ul.actions.fit.stacked {
  width: 100%;
}

/* Icons */
ul.icons {
  padding-top: 10px;
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  padding: 0 1em 0 0;
}

ul.icons li:last-child {
  padding-right: 0;
}

@media screen and (max-width: 736px) {
  ul.icons li {
    padding: 0 0.75em 0 0;
  }
}

/* Pagination */
ul.pagination {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.pagination li {
  display: inline-block;
  padding-left: 0;
  vertical-align: middle;
}

ul.pagination li > .page {
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-bottom: 0;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  height: 1.5em;
  line-height: 1.5em;
  margin: 0 0.125em;
  min-width: 1.5em;
  padding: 0 0.5em;
  text-align: center;
}

ul.pagination li > .page.active {
  background-color: #ffffff;
  color: #242943;
}

ul.pagination li > .page.active:hover {
  background-color: #9bf1ff;
  color: #242943 !important;
}

ul.pagination li > .page.active:active {
  background-color: #53e3fb;
}

ul.pagination li:first-child {
  padding-right: 0.75em;
}

ul.pagination li:last-child {
  padding-left: 0.75em;
}

@media screen and (max-width: 480px) {
  ul.pagination li:nth-child(n + 2):nth-last-child(n + 2) {
    display: none;
  }

  ul.pagination li:first-child {
    padding-right: 0;
  }
}

/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
    color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
    color 0.2s ease-in-out;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 0 0 2px #c1ff00;
  color: #c1ff00;
  cursor: pointer;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  height: 3.5em;
  letter-spacing: 0.25em;
  line-height: 3.5em;
  padding: 0 1.75em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

input[type="submit"]:hover, input[type="submit"]:active,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="button"]:hover,
input[type="button"]:active,
/* button:hover,
button:active, */
.button:hover,
.button:active {
  background-color: #c1ff00;
  box-shadow: inset 0 0 0 2px #000;
  color: #000;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
/* button:active, */
.button:active {
  background-color: rgba(193, 255, 0, 0.1);
  box-shadow: inset 0 0 0 2px #c1ff00;
  color: #53e3fb;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
button.icon:before,
.button.icon:before {
  margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
  width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
  font-size: 0.6em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
  font-size: 1.25em;
  height: 3em;
  line-height: 3em;
}

input[type="submit"].next,
input[type="reset"].next,
input[type="button"].next,
button.next,
.button.next {
  padding-right: 4.5em;
  position: relative;
}

input[type="submit"].next:before,
input[type="submit"].next:after,
input[type="reset"].next:before,
input[type="reset"].next:after,
input[type="button"].next:before,
input[type="button"].next:after,
button.next:before,
button.next:after,
.button.next:before,
.button.next:after {
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 36px 24px;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 1.5em;
  top: 0;
  width: 36px;
}

input[type="submit"].next:before,
input[type="reset"].next:before,
input[type="button"].next:before,
button.next:before,
.button.next:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36px' height='24px' viewBox='0 0 36 24' zoomAndPan='disable'%3E%3Cstyle%3Eline %7B stroke: %23ffffff%3B stroke-width: 2px%3B %7D%3C/style%3E%3Cline x1='0' y1='12' x2='34' y2='12' /%3E%3Cline x1='25' y1='4' x2='34' y2='12.5' /%3E%3Cline x1='25' y1='20' x2='34' y2='11.5' /%3E%3C/svg%3E");
}

input[type="submit"].next:after,
input[type="reset"].next:after,
input[type="button"].next:after,
button.next:after,
.button.next:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36px' height='24px' viewBox='0 0 36 24' zoomAndPan='disable'%3E%3Cstyle%3Eline %7B stroke: %239bf1ff%3B stroke-width: 2px%3B %7D%3C/style%3E%3Cline x1='0' y1='12' x2='34' y2='12' /%3E%3Cline x1='25' y1='4' x2='34' y2='12.5' /%3E%3Cline x1='25' y1='20' x2='34' y2='11.5' /%3E%3C/svg%3E");
  opacity: 0;
  z-index: 1;
}

input[type="submit"].next:hover:after,
input[type="submit"].next:active:after,
input[type="reset"].next:hover:after,
input[type="reset"].next:active:after,
input[type="button"].next:hover:after,
input[type="button"].next:active:after,
button.next:hover:after,
button.next:active:after,
.button.next:hover:after,
.button.next:active:after {
  opacity: 1;
}

@media screen and (max-width: 1280px) {
  input[type="submit"].next,
  input[type="reset"].next,
  input[type="button"].next,
  button.next,
  .button.next {
    padding-right: 5em;
  }
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
  background-color: #000;
  box-shadow: none;
  color: #c1ff00;
}

input[type="submit"].primary:hover,
input[type="submit"].primary:active,
input[type="reset"].primary:hover,
input[type="reset"].primary:active,
input[type="button"].primary:hover,
input[type="button"].primary:active,
button.primary:hover,
button.primary:active,
.button.primary:hover,
.button.primary:active {
  background-color: #c1ff00;
  color: #000 !important;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
button.primary:active,
.button.primary:active {
  background-color: #c1ff00;
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.25;
}

/* CONTACT */
#contact {
  margin-top: 10vh;
  background-color: #2e2e2e;
  border-bottom: solid 1px rgba(212, 212, 255, 0.1);
  overflow-x: hidden;
  align-self: auto;
}

#contact > .inner {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  padding: 2vw !important;
}

#contact > .inner > :nth-child(2n - 1) {
  padding: 4em 3em 2em 0;
  border-right: solid 1px #c1ff00;
  width: 60%;
}

#contact > .inner > :nth-child(2n) {
  padding-left: 3em;
  width: 40%;
}

#contact > .inner > .split {
  padding: 0;
}

#contact > .inner > .split > * {
  padding: 3em 0 1em 3em;
  position: relative;
}

#contact > .inner > .split > *:before {
  border-top: solid 1px #c1ff00;
  content: "";
  display: block;
  margin-left: -3em;
  position: absolute;
  top: 0;
  width: calc(100vw + 3em);
}

#contact > .inner > .split > :first-child:before {
  display: none;
}

@media screen and (max-width: 980px) {
  #contact > .inner {
    display: block;
  }

  #contact > .inner > :nth-child(2n - 1) {
    padding: 4em 0 2em 0;
    border-right: 0;
    width: 100%;
  }

  #contact > .inner > :nth-child(2n) {
    padding-left: 0;
    width: 100%;
  }

  #contact > .inner > .split > * {
    padding: 3em 0 1em 0;
  }

  #contact > .inner > .split > :first-child:before {
    display: block;
  }
}

@media screen and (max-width: 736px) {
  #contact > .inner > :nth-child(2n - 1) {
    padding: 3em 0 1em 0;
  }
}

/* Footer */
footer {
  padding-bottom: 10px;
  display: block;
  background-color: #000;
  padding-top: 2vh;
  text-align: center;
}

#footer .icon {
  text-align: center;
}

#footer .icon svg {
  width: 2em;
  fill: #fff;
}

#footer .icon:hover svg {
  -moz-transition: fill 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: fill 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: fill 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out, color 0.2s ease-in-out;
  width: 2em;
  fill: #c1ff00;
}

#footer .brands svg {
  background-color: #c1ff00!;
}

#footer .copyright {
  font-size: 0.8em;
  list-style: none;
  padding-left: 0;
  text-align: center;
}

#footer .copyright li {
  border-left: solid 1px rgb(85, 255, 0);
  color: rgba(244, 244, 255, 0.2);
  display: inline-block;
  line-height: 1;
  margin-left: 1em;
  padding-left: 1em;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

@media screen and (max-width: 480px) {
  #footer .copyright li {
    display: block;
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
    line-height: inherit;
  }
}

/* Wrapper */
#wrapper {
  -moz-transition: -moz-filter 0.35s ease, -webkit-filter 0.35s ease,
    opacity 0.375s ease-out;
  -webkit-transition: -webkit-filter 0.35s ease, -webkit-filter 0.35s ease,
    opacity 0.375s ease-out;
  -ms-transition: -ms-filter 0.35s ease, -webkit-filter 0.35s ease,
    opacity 0.375s ease-out;
  transition: filter 0.35s ease, -webkit-filter 0.35s ease,
    opacity 0.375s ease-out;
  padding-top: 3.25em;
}

#wrapper.is-transitioning {
  opacity: 0;
}

#wrapper > * > .inner {
  padding: 4em 0 2em 0;
  margin: 0 auto;
  max-width: 65em;
  width: calc(100% - 6em);
}

@media screen and (max-width: 736px) {
  #wrapper > * > .inner {
    padding: 3em 0 1em 0;
    width: calc(100% - 3em);
  }
}

@media screen and (max-width: 736px) {
  #wrapper {
    padding-top: 2.75em;
  }
}

/* link */
#contact a {
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  border-bottom: dotted 1px;
  color: white;
  text-decoration: none;
}

#contact a:hover {
  border-bottom-color: transparent;
  color: #b5b5b5 !important;
}

#contact a:active {
  color: #53e3fb !important;
}

.contact-textarea {
  color: white;
}
.tri_under {
  color: #c1ff00;
}

/* Footer */
/* ABOUT US */
/* .about-us-title {
  position: static;
  padding-top: 8vh;
  text-align: center;
  color: white;
}

.about-us hr {
  width: 20vh;
  height: 0.5vh;
  background-color: #8CC63F;
}

.about-us-intro {
  font-size: 4vh;
  padding-left: 2vh;
  color: white;
  text-align: center;
}

.about-us-com {
  margin-top: 3vh;
  color: white;
  font-size: 6vw;
  text-align: right;
  height: 100%;
}


.content-cont {
  margin-top: 8vh;
  width: 95vw;
}
.left-cont{
  margin-right: 2vh;
}
.right-cont{
  max-height: 600px;
}
.right-cont h2{
  margin-top: 3vh;
  color: #8CC63F;
  font-size: 3vw;
}
.right-cont h4{
  color: white;
  font-size: 18vh;
  line-height: 1vh;
  font-weight: lighter;
  height: 900px;
  overflow: scroll;
}
.strong-intro{
  color: #8CC63F;
}
.vl {
  border-left: 10px solid #8CC63F;
  height: 110vh;
} */

/* WORK */
.work_page {
  height: fit-content;
}
.work_def {
  margin-left: auto;
  margin-right: auto;
  padding-top: 150px;
  width: 300px;
}

#bp_loader {
  box-shadow: none;
}

.work_con img {
  width: 100%;
}

.work_con {
  display: block;
  padding: 0;
  width: 100vw;
  margin: 100px auto;
  padding-bottom: 10px;
  overflow: hidden;
  height: 100%;
}

.grid {
  height: 100%;
  padding: 0;
  width: 90%;
  margin: 100px auto;
  display: flex;
}

.grid-col {
  height: 100%;
  flex: 1;
  padding: 0.1em 0.1em;
}

.grid-col--2,
.grid-col--3 {
  display: none;
}

#image_container {
  height: fit-content;
}
.video_container {
  overflow: hidden;
  padding: 0.2em;
}

@media (min-width: 768px) {
  .grid-item {
    margin-bottom: 0.8em;
  }
  .work_con {
    display: block;
    width: 100%;
  }

  .grid-col--2 {
    display: block;
  }
  .grid-col {
    padding: 0 0.5em;
  }
  img {
    margin-bottom: 0.8em;
  }

  /* .grid-item:hover {
        cursor: pointer;

        .content {
            opacity: 1;
            transform: translateX(0);
        }
    } */
}

@media (min-width: 1080px) {
  .grid-col--3 {
    display: block;
  }
  .work_con {
    width: 95%;
  }
}

/* video */

/*# sourceMappingURL=material-photo-gallery.css.map */

/* 
.work_img_con {
  padding-top: 100px;
  width: 95%;
  margin: 0 auto;
}

.grid {
  display: flex;
}

.grid img {
  width: 100%;
}
.grid-item {
  margin-bottom: .8em;
}

.grid-col {
  flex: 1;
  padding: 0 .3em;
  
}
.grid-item:hover {

  transition-timing-function: ease-in;

  /* Quick on the way out */
/* transition: 0.2s;
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
/* }*/
/* 
.grid-col--2, .grid-col--3 {
  display: none;
} */
/* 
@media screen and (min-width: 768px) {
  .work_img_con { 
    width: 90%;
}
.grid-col--2 { display: block; }
.grid-col {
    padding: 0 .5em;
}
} */
/* 
@media screen and (min-width: 1080px) {
  .grid-col--3 { display: block; }
  .work_img_con {
      width: 80%;
  }
}

/*  */
.vid {
  height: 500px;
  position: relative;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.vid:before,
.vid:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.2s;
}

.vid:after {
  background-repeat: no-repeat;
  background-position: 0.7em 0.7em;
  opacity: 0.5;
  background-size: 2em;
}

.vid:before {
  background: linear-gradient(150deg, #000, transparent 60%);
  opacity: 0.9;
}

.vid:hover:after {
  opacity: 0.8;
}

.vid:hover:before {
  opacity: 0.85;
}

.htmlvid:after {
  /* background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23E34F26%22%20d%3D%22M71%20460L30%200h451l-41%20460-185%2052%22%2F%3E%3Cpath%20fill%3D%22%23EF652A%22%20d%3D%22M256%20472l149-41%2035-394H256%22%2F%3E%3Cpath%20fill%3D%22%23EBEBEB%22%20d%3D%22M256%20208h-75l-5-58h80V94H114l1%2015%2014%20156h127zm0%20147h-1l-63-17-4-45h-56l7%2089%20116%2032h1z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M255%20208v57h70l-7%2073-63%2017v59l116-32%201-10%2013-149%202-15h-16zm0-114v56h137l1-12%203-29%201-15z%22%2F%3E%3C%2Fsvg%3E"); */
}

/* About US */
.about_page {
  height: 100vh;
  max-width: 100vw;
}

.about_con {
  padding-top: 200px;
  position: relative;
  margin: auto 0;
  text-align: left;
  width: 50%;
  height: 50vh;
  font-size: 1.5em;
  font-family: PitchSans-Regular;
}

/* .trinity_svg {
display: block;
position: relative;
} */

.about_desc {
  overflow: hidden;
  color: #ffffff;
  padding-left: 10px;
  position: relative;
  text-align: left;
}

.about_desc p {
  color: #ffffff;
  margin: auto;

  /* white-space: nowrap;
  border-right: 2px solid rgba(255,255,255,.75);
  overflow: hidden;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing:content-box;
    box-sizing:content-box; */
}

.anim-typewriter {
  font-family: PitchSans-Regular;
}

#cursor {
  color: #fff;
  margin: 0;
  display: inline-block;
}

/* .trinity_svg_2 {
  padding: 0;
  display: block;
  position: sticky;
  } */

.about_r {
  margin-right: 0;
  margin-left: 70vw;
  width: 30vw;
  height: 20vh;

  color: #ffffff;
}
.about_right {
  background-color: #2e2e2e;
  padding: 10 10;
  font-family: PitchSans-italic;
  text-align: right;
}
.about_right_svg {
  display: inline-block;
  width: 5vw;
  position: relative;
  bottom: 20px;
}

@media (max-width: 900px) {
  .about_page {
    height: fit-content;
    max-width: 100vw;
  }
  .about_con {
    padding-top: 100px;
    height: fit-content;
    display: block;
    margin: auto;
    text-align: left;
    width: 100%;
    font-size: 1.5em;
    font-family: PitchSans-Regular;
    overflow-wrap: break-word;
    padding-bottom: 50px;
  }

  /* .trinity_svg_2 {
    position: relative;
    } */
  /* .trinity_svg {
  opacity: 0.5;
  position:absolute;
  left: 3em;
  margin: auto;
  width: 70vw;
} */

  .about_desc {
    text-align: left;
    width: 100%;
    overflow-wrap: break-word;
  }
  .about_r {
    margin-left: 0;
    right: 0;
    width: 100vw;
    height: fit-content;
    color: #ffffff;
  }
  .about_right {
    background-color: #2e2e2e;
    padding: 10 10;
  }
}

/* 
.about_con {
  position:absolute;
  top: 0; bottom: 0;
  margin: auto;
  text-align: left;
  width: 50%;
  height: 50vh;
  font-size: 1.5em;
  font-family: PitchSans-Regular;
}

.trinity_svg {
  opacity: 0.5;
  position:absolute;
  left: 10em;
  margin: auto;
  width: 20em;
}

.about_desc {
  padding-top: 60px;
  padding-left: 10px;
  position: relative;
  text-align: left;
  width: 50vw;
}
.about_desc p{
  color: #ffffff;
  margin: auto;
}

.about_r{
  background-color: #2e2e2e;
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 100px;
}

.about_right {
  padding-left: 10px;
  padding-top: 10px;
  color: #fff;
  background-image: url(img/qout.svg);
  background-size: cover;
};
.about_right_svg {
  display: inline-block;
  width: 120px;
 position: relative;
 bottom: 300px;
}
.about_right_svg  svg{
  width: 100px;
  height: 130px;
}


@media (max-width: 900px) {
  .about_con {
    position:absolute;
    top: 0; bottom: 0;
    margin: auto;
    text-align: left;
    width: 100vw;
    font-size: 1.5em;
    font-family: PitchSans-Regular;
    
    overflow-wrap: break-word;
  }
.trinity_svg {
  opacity: 0.5;
  position:absolute;
  left: 3em;
  margin: auto;
  width: 70vw;
}

  .about_desc {
    position: relative;
    text-align: left;
    width: 100%;
    overflow-wrap: break-word;
  }
} */

/* .about_con1 {
  margin: 0 auto;
  position: relative;
  width: 97%;
  height: 100%;
}

.about_row {
  height: 90%;
}
.about_col {
  border: #9bf1ff solid;
  width: 50vw;
  color: white;
  height: 100vh;
  
} */
