.logo-page-art {
  position: absolute;
  top: -424px;
  width: 790px;
  height: 930px;
  background-image: url("/images/logo_page_art.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.logo-page-art.left {
  left: -400px;
}
.logo-page-art.right {
  right: -400px;
}

@media (max-width: 1200px) {
  .logo-page-art {
    display: none;
  }
}
.divider {
  width: 150px;
  height: 20px;
  background-image: url("/images/divider.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 500px) {
  .divider {
    width: 117px;
    height: 16px;
  }
}
.header-nav-cc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.header-nav-cc .logo-ascii-art {
  width: 200px;
  height: 250px;
  background-image: url("/images/logo_ascii_art.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  .header-nav-cc .logo-ascii-art {
    width: 150px;
    height: 195px;
  }
}
.header-nav-cc nav {
  display: flex;
  gap: 20px;
}
.header-nav-cc nav a {
  font-family: SourceCodePro, monospace;
  font-size: 16px;
  color: #bbb;
  text-decoration: none;
}
.header-nav-cc nav a:hover {
  color: #fff;
  font-weight: bold;
}
.header-nav-cc nav a:visited {
  color: #bbb;
}
.header-nav-cc nav a.active {
  position: relative;
  color: #fff;
  font-weight: bold;
}
.header-nav-cc nav a.active::after {
  content: "^";
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
}
.header-nav-cc .mobile-nav {
  flex-direction: column;
  gap: 10px;
  width: 152px;
}
.header-nav-cc .mobile-nav .row {
  display: flex;
  justify-content: space-between;
}
.header-nav-cc .mobile-nav a.active::after {
  display: none;
}
.header-nav-cc .mobile-nav {
  display: none;
}
@media (max-width: 500px) {
  .header-nav-cc .desktop-nav {
    display: none;
  }
  .header-nav-cc .mobile-nav {
    display: flex;
  }
}

.section-open-for-business {
  width: 380px;
}
.section-open-for-business h1 {
  margin-bottom: 25px;
  font-family: SourceCodePro, monospace;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.section-open-for-business p {
  font-family: Inter, sans-serif;
  font-size: 16px;
}
.section-open-for-business p.first {
  margin-bottom: 10px;
}
.section-open-for-business p.second {
  text-align: right;
  margin-bottom: 25px;
}
.section-open-for-business a {
  position: relative;
  font-family: SourceCodePro, monospace;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.section-open-for-business a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.2s ease;
}
.section-open-for-business a:hover::after {
  width: 100%;
}
.section-open-for-business a:visited {
  color: #fff;
}

@media (max-width: 500px) {
  .section-open-for-business {
    width: auto;
    margin: 0 30px;
  }
  .section-open-for-business h1 {
    line-height: 25px;
  }
}
.footer-cc {
  font-family: AnonymousPro, monospace;
  font-size: 14px;
}

.about-cc .header {
  margin-bottom: 60px;
}
.about-cc .section-statement {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 60px 0;
}
.about-cc .section-statement h1 {
  font-family: SourceCodePro, monospace;
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  line-height: 25px;
}
.about-cc .section-statement p {
  font-family: Inter, sans-serif;
  font-size: 16px;
}
.about-cc .section-about {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 60px 0;
}
.about-cc .section-about .portrait {
  width: 205px;
  height: 248px;
  background-image: url("/images/portrait.jpg");
  background-size: 150%;
  background-position: center;
  box-shadow: 0px 4px 4px 10px rgba(0, 0, 0, 0.2509803922);
}
.about-cc .section-about .statement-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 430px;
}
.about-cc .section-about .statement-container p {
  margin-bottom: 15px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}
.about-cc .section-about .statement-container .links {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}
.about-cc .section-about .statement-container .links a {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about-cc .section-about .statement-container .links a.gitlab {
  background-image: url("/images/gitlab_logo.svg");
}
.about-cc .open-for-business {
  margin: 60px 0;
}
.about-cc .footer {
  margin: 30px 0;
}

@media (max-width: 800px) {
  .about-cc .section-about .statement-container {
    width: 280px;
  }
}
@media (max-width: 600px) {
  .about-cc .header {
    margin-bottom: 40px;
  }
  .about-cc .section-statement {
    margin: 40px 30px;
  }
  .about-cc .section-about {
    flex-direction: column;
    gap: 25px;
    margin: 40px 30px;
  }
  .about-cc .section-about .statement-container {
    width: 100%;
  }
  .about-cc .section-about .statement-container p:first-child {
    text-align: right;
  }
  .about-cc .section-about .statement-container .links {
    justify-content: center;
  }
  .about-cc .open-for-business {
    margin: 40px 0;
  }
}
@media (max-width: 500px) {
  .about-cc .section-statement h1 br, .about-cc .section-statement p br {
    display: none;
  }
}

/*# sourceMappingURL=about.css.map */
