<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# Imports
--------------------------------------------------------------*/
@import "fonts.css";
@import "colors.css";

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
  --background-color: var(--black-color-80);
  --text-color: var(--white-color-60);
  --text-intense-color: var(--white-color-100);
  --h-color: var(--white-color-100);
  --a-color: var(--primary-color-60);
  --a-hover-color: var(--text-color);
  --highlight-color: var(--primary-color-60);
  --highlight-color-darker: var(--primary-color-80);
  --highlight-color-darkest: var(--primary-color-100);
  --highlight-color-brighter: var(--primary-color-40);
  --shadow-color: var(--black-color-80);

  --h-font-family: var(--raleway-font-family);
  --body-font-family: var(--opensans-font-family);
  --title-font-family: var(--poppins-font-family);
  --counts-font-family: var(--raleway-font-family);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--body-font-family);
  color: var(--text-color);
  position: relative;
  background: transparent;
  background-color: var(--background-color);
}

body::before {
  content: "";
  position: fixed;
  background: var(--background-color) url("../img/bg2.jpg") top left no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: var(--a-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--a-hover-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font-family);
  color: var(--h-color);
}

.contact-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.20);
  color: var(--a-hover-color);
  line-height: 1;
  margin-right: 16px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.contact-links a:hover {
  background: var(--a-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  transition: ease-in-out 0.3s;
}

#header h1 {
  font-size: 48px;
  margin: 0 0 0.2em 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: var(--title-font-family);
}

#header h1 a,
#header h1 a:hover {
  color: var(--a-hover-color);
  line-height: 1;
  display: inline-block;
}

#header h1 span {
  font-size: 75%;
}

#header h2 {
  font-size: 24px;
  color: var(--text-color);
  display: inline;
}

#header h2.delimiter {
  color: var(--highlight-color);
}

#header h2 i {
  display: none;
}

#header img {
  padding: 0;
  margin: 0;
}

#header .contact-links {
  margin-top: 40px;
  display: flex;
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }

  #header h2 {
    font-size: 18px;
  }

  #header .contact-links {
    margin-top: 15px;
  }

  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: var(--shadow-color);
}

#header.header-top .contact-links,
#header.header-top h2 {
  display: none;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}

#header.header-top img {
  max-height: 60px;
  margin-right: 20px !important;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .navbar {
  margin: 0;
}

@media (max-width: 768px) {
  #header.header-top {
    height: 60px;
  }

  #header.header-top h1 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
  margin-top: 35px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: var(--title-font-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  visibility: hidden;
  background-color: var(--a-color);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover&gt;a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover&gt;a {
  color: var(--text-intense-color);
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  font-size: 48px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 30px;
  color: var(--highlight-color)
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  color: var(--text-intense-color);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 999;
  margin-top: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 30px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 45px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.90);
  border: 2px solid rgba(255, 255, 255, 0.20);
}

.navbar-mobile li {
  padding: 12px 20px;
}

.navbar-mobile li+li {
  margin: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 16px;
  position: relative;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 0;
  transition: ease-in-out 0.4s;
  z-index: 2;
}

section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 45px;
}

section .container {
  background: var(--shadow-color);
  padding: 30px;
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }

  section.section-show {
    top: 80px;
  }
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-color);
  font-family: var(--title-font-family);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--highlight-color);
  margin: 4px 10px;
}

.section-title h3 {
  margin: -10px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--title-font-family);
  color: var(--text-intense-color);
}

.section-title p {
  font-style: italic;
  margin: -10px 0 25px 0;
  color: var(--text-color);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-me .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--highlight-color);
}

.about-me .content ul {
  list-style: none;
  padding: 0;
}

.about-me .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-me .content ul strong {
  margin-right: 10px;
}

.about-me .content ul i {
  font-size: 16px;
  margin-right: 6px;
  color: var(--highlight-color);
  line-height: 0;
}

.about-me .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 30px !important;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.10);
  padding: 24px 12px;
  color: var(--highlight-color);
  border-radius: 50px;
  line-height: 0;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--text-intense-color);
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: --var(--counts-font-family);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Technologies
--------------------------------------------------------------*/
.technologies {
  padding-top: 30px !important;
}

.technologies .technology-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: ease-in-out 0.3s;
}

.technologies .technology-box img {
  width: 64px;
  max-height: 64px;
  padding-right: 16px;
  line-height: 1;
}

.technologies .technology-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: var(--text-color);
}

.technologies .technology-box:hover {
  background: rgba(255, 255, 255, 0.12);
}

/*--------------------------------------------------------------
# Cooperations
--------------------------------------------------------------*/
.cooperations {
  padding-top: 30px !important;
}

.cooperations .cooperations-carousel,
.cooperations .cooperations-slider {
  overflow: hidden;
}

.cooperations .cooperations-item {
  box-sizing: content-box;
  min-height: 320px;
}

.cooperations .cooperations-item p {
  margin-right: 1.5rem;
  padding: 20px 20px 60px 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}

.cooperations .cooperations-item .cooperations-img {
  width: 100px;
  border-radius: 50%;
  margin: -50px 0 0 50px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.12);
}

.cooperations .cooperations-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.cooperations .cooperations-item h4 {
  font-size: 14px;
  color: var(--text-color);
  margin: 0 0 0 45px;
}

.cooperations .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.cooperations .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.30);
}

.cooperations .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--highlight-color);
}

/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.projects .projects-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--text-intense-color);
}

.projects .projects-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid rgba(255, 255, 255, 0.20);
  position: relative;
}

.projects .projects-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--title-font-family);
  color: var(--highlight-color);
  margin-bottom: 10px;
}

.projects .projects-item h5 {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 15px;
  margin-bottom: 10px;
}

.projects .projects-item h6 {
  font-size: 14px;
  font-style: italic;
  display: block;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 5px 8px 5px 8px;
  margin: 0 5px 10px 5px;
  float: right;
}

.projects .projects-item ul {
  padding-left: 20px;
}

.projects .projects-item ul li {
  padding-bottom: 10px;
}

.projects .projects-item:last-child {
  padding-bottom: 0;
}

.projects .projects-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: -9px;
  top: 0;
  background: var(--highlight-color);
  border: 2px solid var(--highlight-color);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
  text-align: center;
  background: rgba(204, 204, 204, 0.10);
  padding: 40px 20px;
  width: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--highlight-color);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .service-box .icon i {
  color: var(--text-intense-color);
  font-size: 28px;
}

.services .service-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--text-color);
}

.services .service-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-color);
}

.services .service-box:hover {
  background: var(--highlight-color);
  border-color: var(--highlight-color-darker);
}

.services .service-box:hover .icon {
  /* Same as .services .service-box .icon i color */
  background: var(--text-intense-color);
}

.services .service-box:hover .icon i {
  /* Same as .services .service-box:hover background */
  color: var(--highlight-color);
}

.services .service-box:hover .icon::before {
  /* Same as .services .service-box:hover border-color */
  background: var(--highlight-color-darker);
}

.services .service-box:hover h4,
.services .service-box:hover p {
  color: var(--text-intense-color);
}

/*--------------------------------------------------------------
# References
--------------------------------------------------------------*/
.references #references-filters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.references #references-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.10);
  margin: 0 3px 10px 3px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.references #references-filters li:hover,
.references #references-filters li.filter-active {
  color: var(--text-intense-color);
  background: var(--highlight-color);
}

.references #references-filters li:last-child {
  margin-right: 0;
}

.references .references-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
}

.references .references-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.60);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.references .references-wrap img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: auto;
  max-height: 240px;
}

.references .references-wrap .references-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.references .references-wrap .references-info::before {
  display: block;
  content: "";
  width: 36px;
  height: 36px;
  position: absolute;
  top: 18px;
  left: 18px;
  border-top: 3px solid var(--text-intense-color);
  border-left: 3px solid var(--text-intense-color);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.references .references-wrap .references-info::after {
  display: block;
  content: "";
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 18px;
  right: 18px;
  border-bottom: 3px solid var(--text-intense-color);
  border-right: 3px solid var(--text-intense-color);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.references .references-wrap .references-info h4 {
  font-size: 20px;
  font-weight: 600;
}

.references .references-wrap .references-info p {
  color: var(--text-color);
  font-size: 14px;
  padding: 0;
  margin: 0;
}

.references .references-wrap .references-links {
  text-align: center;
  line-height: 1;
  padding-top: 5px;
  z-index: 4;
}

.references .references-wrap .references-links a {
  color: var(--a-color);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.references .references-wrap .references-links a:hover {
  color: var(--a-hover-color);
}

.references .references-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.references .references-wrap:hover .references-info {
  opacity: 1;
}

.references .references-wrap:hover .references-info::before {
  top: 15px;
  left: 15px;
}

.references .references-wrap:hover .references-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: var(--background-color);
  padding: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.contact .info-box i.icon {
  font-size: 24px;
  color: var(--highlight-color);
  border-radius: 50%;
  padding: 14px;
  line-height: 1;
  float: left;
  background: rgba(255, 255, 255, 0.10);
}

.contact .info-box h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.50);
  font-weight: 700;
  margin: 10px 0 8px 68px;
}

.contact .info-box p {
  padding: 0;
  color: var(--text-color);
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}

.contact .info-box .contact-links {
  margin: 5px 0 0 68px;
  display: flex;
}

.contact .info-box .contact-links a {
  margin-right: 16px;
}

/*--------------------------------------------------------------
# Footnote
--------------------------------------------------------------*/
#footnote {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 10px;
  text-align: right;
  font-size: 12px;
  color: var(--text-color);
  z-index: 999999;
}

#footnote i {
  color: var(--highlight-color);
}

@media (max-width: 992px) {
  #footnote {
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
  }
}

.footnote-hide {
  display: none;
}
</pre></body></html>