<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */

* {
  box-sizing: border-box;
}

body {
  height: 100%;
  overflow: hidden;
}

.btn-show-details:focus {
  box-shadow: none;
}

@media (min-aspect-ratio: 14/16) {
  .project-images {
    max-width: 75%;
  }
}

.row-centered {
  display: flex;
  justify-content: center;
}

/* Top Navigation Styles */

#nav_portfolio {
  background-image: linear-gradient(-45deg, #6E81F1 0%, #633D8B 60%);
  padding: 0 1em;
}

#portfolio-brand {
  height: 64px;
  padding: 0;
  background-size: cover;
  background: url('/assets/img/brand_isotype.svg');
  background-repeat: no-repeat;
  padding-left: 80px;
  margin-left: -1rem;
  font-weight: 600;
  color: #fff !important;
  background-position: left;
}

@media (min-width: 576px) {
  #portfolio-brand {
    height: 80px;
    padding-left: 96px;
  }
}

@media (min-width: 1200px) {
  #portfolio-brand {
    margin-left: calc( -15px - 1rem);
  }
}

#portfolio-brand span {
  font-weight: 300;
  display: none;
}

@media (min-width: 576px) {
  #portfolio-brand span {
    display: inline;
  }
}

#nav_portfolio .navbar-nav .nav-link {
  padding: 16px 20px;
  letter-spacing: 0.4px;
}

@media (min-width: 1200px) {
  #nav_portfolio .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}

#nav_portfolio .nav-link.active {
  outline: none;
  background-color: transparent;
}

@media (min-width: 1200px) {
  #nav_portfolio .nav-link.active {
    background-color: rgba(0,0,0,.20);
  }
}

.nav-expanded {
  background-color: transparent;
  margin: 0 -1em;
  border-radius: 0;
}

@media (min-width: 1200px) {
  .nav-expanded {
    background-color: transparent;
    margin: 0;
    height: 80px;
  }
}

#nav_portfolio .navbar-nav .nav-link {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

@media (min-width: 1200px) {
  #nav_portfolio .navbar-nav .nav-link {
    border-bottom: none;
  }
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.8);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255,255,255,1);
}

#link-labs:hover {
  color: rgb(127,222,219);
}

#btn-hire {
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 20px;
  margin-left: 1rem;
  margin-top: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}

@media (min-width: 1200px) {
  #btn-hire {
    margin-top: 0;
    margin-bottom: 0;
  }
}

#btn-hire:hover {
  color: #393940;
  background-color: #fff;
}

/* Header Links Styles */

#services-links {
  position: fixed;
  top: 64px;
  left: 0px;
  width: 100%;
  background-color: rgba(255,255,255,1);
  border-bottom: 1px solid #F7931E;
  z-index: 99;
  padding: 1rem 0.5rem;
}

@media (min-width: 576px) {
  #services-links {
    top: 80px;
  }
}

#services-links .nav-link {
  color: #8c8c8c;
  background-color: #f2f2f2;
  margin: 0 0.25rem;
  width: 68px;
  text-align: center;
  font-weight: 400;
  transition: 0.4s;
  font-size: 13px;
  padding: 0.5rem;
}

@media (min-width: 576px) {
  #services-links .nav-link {
    margin: 0 0.5rem;
    width: 96px;
    font-size: inherit;
    padding: 0.5rem 1rem;
  }
}

@media (min-width: 768px) {
  #services-links .nav-link {
    margin: 0 0.5rem;
    width: 120px;
  }
}

#services-links .nav-link.active {
  color: #fff;
  background-color: #F7931E;
}

#services-links .nav-link:hover:not(.active) {
  color: #595959;
  background-color: #ddd;
}

/* Project List Styles */

aside {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 200px 30px;
  background-color: #f2f2f2;
  z-index: 13;
}

aside h3 {
  color: #595959;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}

#projects {
  border: 1px solid #595959;
  border-radius: 6px;
}

#projects a.nav-link {
  color: #595959;
  padding: 12px 16px;
  transition: 0.4s;
}

#projects a.nav-link:hover:not(.active) {
  background-color: #dddddd;
}

#projects a.nav-link.active {
  color: #fff;
  background-color: #595959;
}

#projects .nav-item:not(:last-child) {
  border-bottom: 1px solid #595959;
}

/* Project Items Styles */

#wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh);
}

.overflow-yes {
  overflow-y: hidden;
}

.bg-darker {
  background-color: #ccc !important;
}

.sample-item {
  height: 100%;
  padding-top: 148px;
  padding-bottom: 40px;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  display: block;
  background-color: #fff;
}

@media (min-width: 576px) {
  .sample-item {
    padding-top: 200px;
    padding-bottom: 80px;
  }
}

@media (max-height: 768px) and (min-width: 360px) {
  .sample-item {
    padding-top: 188px;
  }
}

@media (min-width: 1200px) {
  .project-images {
    display: flex;
    justify-content: center;
  }
}

.project-images h2 {
  font-size: 16px;
  color: #633D8B;
  font-weight: 600;
  margin: 0;
}

@media (min-width: 576px) {
  .project-images h2 {
    font-size: 24px;
    padding: 0 1em;
  }
}

.project-details h4 {
  color: #633D8B;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-left: -1rem;
}

.project-details p {
  color: #595959;
  padding-right: 15px;
}

.project-details p:last-child {
  margin-bottom: 0;
}

.project-details p span {
  font-weight: bold;
}

.col.line-left {
  border-left: 1px solid #633D8B;
}

.project-details a {
  color: #595959;
  transition: 0.4s;
  text-decoration: none;
}

.project-details a:hover {
  color: #633D8B;
}

.btn-item-details {
  display: block;
}

/* Carousel Styles */

.carousel-caption {
  color: #595959;
  bottom: 0;
  display: none;
  right: 4%;
  left: 4%;
  padding-bottom: 2%;
}

@media (min-width: 576px) {
  .carousel-caption {
    display: initial;
  }
}

.carousel-indicators li {
  background-color: #ddd;
  transition: 0.4s;
}

.carousel-indicators.on-bg-darker li {
  background-color: #fff;
}

.carousel-indicators li:hover:not(.active) {
  background-color: #8c8c8c;
}

.carousel-indicators li.active {
  background-color: #8052b2;
}

.carousel-caption span {
  font-weight: 600;
  margin-right: 0.5em;
}

.carousel-indicators {
  position: relative;
  bottom: 20px;
}

a.carousel-control-prev, a.carousel-control-next {
  color: #8c8c8c !important;
  transition: 0.4s;
}

a.carousel-control-next {
  justify-content: flex-end;
  font-size: 20px;
  margin-right: -8px;
}

@media (min-width: 576px) {
  a.carousel-control-next {
    margin-right: 0;
  }
}

a.carousel-control-prev {
  justify-content: flex-start;
  font-size: 20px;
  margin-left: -8px;
}

@media (min-width: 576px) {
  a.carousel-control-prev {
    margin-left: 0;
  }
}

.info-details {
  cursor: pointer;
  margin-right: 0.5em;
  color: #6e81f1;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .info-details {
    display: none;
  }
}

@media (max-aspect-ratio: 3/4), (min-height: 960px) {
  .info-details {
    display: none;
  }
}

.info-details:hover {
  color: #633d8b;
}

.btn-show-details {
  font-weight: normal;
  color: #6E81F1;
  border: 1px solid #6E81F1;
  padding: 12px 20px;
  letter-spacing: 0.4px;
}

@media (min-aspect-ratio: 3/4) and (max-height: 960px) {
  .btn-show-details {
    display: none;
  }
}

.btn-show-details:hover {
  color: #fff;
  border: 1px solid #6E81F1;
  background-color: #6E81F1;
}

@media (min-width: 1400px) {
  .carousel-inner {
    max-width: 960px;
  }
}

/* Modal and Overlayers Styles */

h4.modal-title {
  color: #633d8b;
  font-size: 21px;
}

.modal button {
  outline: none;
}

.modal-sample p {
  color: #393940;
}

.modal-sample p span {
  font-weight: 600;
  margin-right: 0.25rem;
}

.modal-sample p a {
  color: #595959;
  transition: 0.4s;
  text-decoration: none;
}

.modal-sample p a:hover {
  color: #8052b2;
}

#preloader {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2222;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#preloader p {
  color: #595959;
  font-size: 18px;
}

</pre></body></html>