@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*-----------------------------------------------------------------------------------*/
/*  About
/*-----------------------------------------------------------------------------------*/
#about {
  width: 100%;
  height: auto;
  background: #15202f;
  padding-top: 120px;
}
#about .p-heading {
  line-height: 1em !important;
}
#about .separator {
  color: #feffef;
}
#about .div-img-bg {
  padding-bottom: 0;
  border: none;
}
#about .about-img img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
  margin-top: -60px;
  margin-left: 40px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}
#about .about-descr .p-heading {
  color: #e5ff50;
  font-family: "IBM Plex Mono", monospace;
  font-size: 3em;
  font-weight: 700;
  text-align: left;
}
#about .about-descr .separator {
  max-width: 80%;
  margin-bottom: 0;
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
}

#skills {
  background-color: #15202f;
  padding-bottom: 4em;
}

.skill-badge {
  background-color: #192535;
  display: grid;
  place-items: center;
  padding: 1em 3em;
}
.skill-badge img {
  padding: 0.5em 0;
  width: 2em;
  transition: filter 0.3s ease-out;
}
.skill-badge p {
  margin: 0;
  font-weight: 400;
  font-size: 1em;
  color: #6c83a3;
  transition: color 0.3s ease-out;
}

.skill-badge:hover img {
  filter: invert(86%) sepia(71%) saturate(641%) hue-rotate(37deg) brightness(165%) contrast(101%);
  transition: filter 0.3s ease-out;
}
.skill-badge:hover p {
  color: #e5ff50;
  transition: color 0.3s ease-out;
}

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 40);
  --duration: 30s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
          mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}
.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
/* Parent wrapper */
.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
#portfolio {
  background-color: #1c3b3b;
}

#portfolio-flters li {
  color: #6c83a3 !important;
}
#portfolio-flters li:hover {
  color: #e5ff50 !important;
}
#portfolio-flters .filter-active {
  color: #e5ff50 !important;
}

.section-title h2 {
  color: #e5ff50;
  text-transform: none;
  font-size: 3em;
}

.portfolio-item {
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 300px;
}
.portfolio-item video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-item .portfolio-info {
  left: 12px !important;
  right: 12px !important;
  bottom: 0px !important;
  background-color: #15202f !important;
}
.portfolio-item .portfolio-info h4 {
  color: #e5ff50 !important;
}
.portfolio-item .portfolio-info p {
  display: inline !important;
}
.portfolio-item .portfolio-info a {
  display: inline !important;
  float: right !important;
}

#contact {
  background-color: #15202f;
}
#contact .contact-details {
  color: #feffef;
}
#contact h2 {
  color: #e5ff50;
  text-transform: none;
}

input, textarea {
  border-color: #6c83a3 !important;
}

.form-control {
  text-transform: none;
}

form .btn-send {
  background-color: #6c83a3;
  border-radius: 0;
  text-transform: uppercase;
}
form .btn-send:hover {
  background-color: #e5ff50;
}

.form-gotcha {
  display: none;
}

#portfolio-details {
  background-color: #15202f;
  padding: 8em 0;
}

.portfolio-info {
  background-color: #1e2d42;
  color: #6c83a3;
}
.portfolio-info h3 {
  border-bottom: 1px solid #6c83a3 !important;
}
.portfolio-info a {
  color: #e5ff50;
}
.portfolio-info .badge {
  background-color: #6c83a3;
  color: #feffef;
  font-weight: 300;
  border-radius: 0;
  margin: 0.3em 0;
}

.portfolio-description {
  color: #6c83a3;
}
.portfolio-description p {
  color: #6c83a3;
}
.portfolio-description p a {
  color: #e5ff50;
}

.btn-outline-light,
.btn-outline-light:hover,
.btn-outline-light:active,
.btn-outline-light:visited,
.btn-outline-light:focus {
  color: #6c83a3;
  border-color: #6c83a3;
}

.btn-outline-light:hover {
  background-color: #6c83a3;
  color: #feffef;
}

#header {
  background-color: black;
  font-family: "IBM Plex Mono", monospace;
}

.logo {
  letter-spacing: -0.05em;
}
.logo a:hover {
  color: #fcffd9;
}

.navbar-mobile ul {
  background-color: #15202f;
  bottom: auto;
}

#footer {
  background-color: black;
}
#footer .list-unstyled a:hover {
  color: #e5ff50 !important;
}
#footer .credits, #footer .credits a {
  color: rgba(255, 255, 255, 0.178);
}

body {
  font-family: "IBM Plex Mono", monospace;
}
body a {
  color: #e5ff50;
}
body .nav-link {
  font-family: "IBM Plex Mono", monospace;
  color: #6c83a3;
}
body .nav-link:hover {
  color: #e5ff50 !important;
}

.active {
  color: #e5ff50 !important;
}

#header {
  z-index: 10000;
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: absolute; /* Or fixed if you want it to be the background of the whole site */
  right: 0;
  z-index: -5;
  min-width: 100%;
  min-height: 100%;
}

.hero-content h1 {
  font-size: 6em;
  font-weight: 900;
  color: #feffef;
}
@media only screen and (max-width: 640px) {
  .hero-content h1 {
    letter-spacing: -0.05em;
    font-size: 3em;
  }
}
.hero-content h1 span {
  color: rgb(229, 255, 80);
}
.hero-content p {
  color: #feffef;
  font-weight: 300;
  font-size: 2em;
}
@media only screen and (max-width: 640px) {
  .hero-content p {
    font-size: 1.3em;
  }
}
.hero-content .list-social li i {
  font-size: 1.5em !important;
}
.hero-content .list-social :hover {
  color: #e5ff50;
}

.back-to-top {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #e5ff50;
}
.back-to-top .bi {
  color: #e5ff50 !important;
}

.back-to-top:hover {
  background: #e5ff50;
}
.back-to-top:hover .bi {
  color: #15202f !important;
}/*# sourceMappingURL=app.css.map */