/* src/styles.scss */
@media (min-width: 1025px) {
  .hide-large {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hide-large-down {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-medium {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-medium-down {
    display: none !important;
  }
}
:root {
  --swiper-wrapper-transition-timing-function: linear;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth !important;
}
body {
  background-color: #121212;
  color: white;
  font-family: Archivo, sans-serif;
}
h1 {
  font-variation-settings: "wdth" 125;
  font-size: 4rem;
  line-height: 1.3333;
  font-weight: normal;
}
a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: 0.25s;
}
a:hover {
  text-decoration: none;
  color: white;
}
.text-muted {
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 3.78px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.row {
  max-width: 1134px;
  margin-left: auto;
  margin-right: auto;
}
.row.pad {
  padding-left: 30px;
  padding-right: 30px;
}
.row.no-pad {
  max-width: 1194px;
}
.row.row-wide {
  max-width: 1334px;
}
.row.row-narrow {
  max-width: 750px;
}
@media screen and (max-width: 1176px) {
  .row.extra-pad {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.btn {
  width: 250px;
  height: 64px;
  border: none;
  border-radius: 4px;
  outline: none;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  background-color: rgba(255, 255, 255, 0.2);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-family: Archivo, sans-serif;
}
.btn:hover {
  background: white;
  color: #121212;
  cursor: pointer;
}
.btn--primary {
  background-color: white;
  color: black;
}
.btn--primary:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.btn--secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.page-wrapper--content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-wrapper--content .page-content {
  flex-grow: 1;
  padding-top: 90px;
}
.header {
  width: 100%;
  position: fixed;
  transition: 0.375s;
  z-index: 10;
  top: 0;
}
.header--scrolled {
  background: #1f1f1f;
}
.header--scrolled .header__inner {
  box-shadow: none;
}
.header--scrolled .header__menu-link {
  color: rgba(255, 255, 255, 0.6);
}
.header--scrolled .header__menu-link:hover,
.header--scrolled .header__menu-link:focus,
.header--scrolled .header__menu-link--active {
  color: rgb(255, 255, 255);
  box-shadow: inset 0px -1px 0 0 white;
}
.header__inner {
  display: flex;
  align-items: center;
  box-shadow: 0px 1px 0 0 rgba(255, 255, 255, 0.2);
  height: 90px;
}
.header__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.3);
  transition: 0.25s;
}
.header__container-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__toggle-btn {
  display: inline-block;
  cursor: pointer;
}
.header__toggle-btn .bar1,
.header__toggle-btn .bar3 {
  width: 32px;
  height: 2px;
  background-color: #ffffff;
  margin: 0px 0;
  transition: 0.4s;
}
.header__toggle-btn .invis {
  width: 32px;
  height: 2px;
  margin: 4px 0;
}
.header__toggle-btn.opened .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  transform: rotate(-45deg) translate(-5px, 3px);
}
.header__toggle-btn.opened .bar3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
  transform: rotate(45deg) translate(-5px, -3px);
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: auto;
}
.header__menu--active .header__menu-link:not(.header__menu-link--active):not(:hover) {
  opacity: 0.6;
}
.header__menu-link {
  color: white;
  transition: 0.25s;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 90px;
}
.header__menu-link:hover,
.header__menu-link:focus,
.header__menu-link--active {
  cursor: pointer;
  text-decoration: none;
  color: rgb(255, 255, 255);
  box-shadow: 0px 1px 0 0 white;
}
.header__brand {
  margin-right: auto;
}
.footer__top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px 0;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 48px;
  height: 48px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.25s;
}
.footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.footer__brand {
  margin-right: auto;
}
.footer__link {
  letter-spacing: 2.4px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0.7;
  text-decoration: none;
  display: flex;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
  transition: 0.25s;
  cursor: pointer;
}
.footer__link:hover,
.footer__link:focus {
  opacity: 1;
  text-decoration: none;
}
.footer__links {
  display: flex;
  gap: 40px;
  margin-right: 40px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0;
}
.footer__service-links {
  display: flex;
  gap: 24px;
}
.footer__service-links a {
  font-weight: 500;
}
.article p {
  margin-bottom: 40px !important;
  opacity: 0.8;
}
.article h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.article h3 {
  font-size: 1.5rem;
  margin-bottom: 40px;
}
.article a {
  color: white;
  font-size: 20px;
  line-height: 32px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.article a:hover {
  text-decoration: none;
}
.service-page__inner {
  padding: 80px 0;
  max-width: 945px;
  margin: 0 auto;
}
.service-page p {
  margin-bottom: 40px !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 32px;
}
.service-page a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 32px;
  white-space: pre-wrap;
  word-wrap: break-word;
  transition: 0.25s;
}
.service-page a:hover {
  text-decoration: none;
  color: white;
}
.service-page ul,
.service-page ol {
  margin-left: 60px;
}
.service-page li {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 32px;
  color: #d0d0d0;
}
.service-page h1 {
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 40px;
  margin-top: 24px;
  font-variation-settings: normal;
}
.service-page h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-variation-settings: normal;
}
.service-page h3 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-variation-settings: normal;
}
.service-page table,
.service-page th,
.service-page td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-collapse: collapse;
}
.service-page .table-container {
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 40px;
}
.service-page table {
  width: 100%;
}
.service-page th,
.service-page td {
  padding: 20px;
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.service-page th {
  font-weight: 500;
}
.service-page td {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 24px;
  }
  .footer__brand {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-wrapper--content .page-content {
    padding-top: 64px;
  }
  .page-wrapper--mobile-menu-opened .header {
    background: #121212;
  }
  .page-wrapper--mobile-menu-opened .header__container-inner {
    left: 0;
  }
  h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .header > div {
    padding: 0 !important;
  }
  .header__inner {
    height: 64px;
    padding: 0 30px;
  }
  .header__logo {
    width: 108px;
  }
  .header__container-inner {
    position: fixed;
    height: calc(100% - 64px - 1px);
    background: #121212;
    top: 64px;
    width: 100%;
    left: 100%;
    transition: 0.25s;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
  }
  .header__menu {
    flex-direction: column;
  }
  .header__menu-link {
    height: initial;
  }
  .header__menu-link--active {
    box-shadow: none !important;
  }
  .footer__top {
    gap: 0;
    padding: 80px 0 0;
  }
  .footer__links {
    flex-direction: column;
    margin: 0;
    gap: 24px;
    margin-bottom: 48px;
  }
  .footer__link {
    text-align: center;
    justify-content: center;
  }
  .footer__service-links {
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
  }
  .footer__social {
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    padding: 48px 0;
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 24px;
    padding: 48px 0;
  }
  .footer__copy {
    opacity: 0.8;
  }
  .article p {
    margin-bottom: 32px !important;
    opacity: 0.8;
  }
  .article h2 {
    font-size: 22px;
    margin: 32px 0;
  }
  .article h3 {
    font-size: 20px;
    margin: 24px 0;
  }
  .service-page {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-QY5K44VJ.css.map */
