@font-face {
  font-family: "SFSB";
  src: url("/assets/fonts/SF-Pro-Display-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "SFR";
  src: url("/assets/fonts/SF-Pro-Display-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "SFL";
  src: url("/assets/fonts/SF-Pro-Display-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
*,
*:after,
*:before {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  position: relative;
  overflow: hidden;
}

body {
  margin: 0;
  position: relative;
  background-color: black;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#bg {
  position: absolute;
  width: 110%;
  height: 110vh;
  left: -5%;
  top: -5%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  -webkit-filter: blur(15px) brightness(0.75);
          filter: blur(15px) brightness(0.75);
}

#name {
  font-family: "SFSB", -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
  font-size: 2.5em;
  letter-spacing: 0.8px;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  line-height: 48px;
}

a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-drag: none;
  cursor: default;
}

img {
  -webkit-user-drag: none;
}

body > main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.25rem;
}
body > main div {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body > main div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-right: 3rem;
}
body > main div > div:nth-child(4) {
  margin-right: 0;
}
body > main div > div .home-appIcon {
  background: none;
  border: none;
  padding: 0;
  border-radius: 22%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}
body > main div > div .home-appIcon:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}
body > main div > div p {
  color: white;
  margin-top: 0.4rem;
  letter-spacing: 0.75px;
  text-align: center;
  font-size: 0.875em;
  font-family: "SFR", -apple-system, BlinkMacSystemFont, sans-serif;
}
body > main div > div img {
  width: 75px;
  border-radius: 22%;
  -webkit-transition: -webkit-filter 0.05s linear;
  transition: -webkit-filter 0.05s linear;
  transition: filter 0.05s linear;
  transition: filter 0.05s linear, -webkit-filter 0.05s linear;
  -webkit-user-drag: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.1s ease-out, -webkit-filter 0.05s linear, -webkit-box-shadow 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out, -webkit-filter 0.05s linear, -webkit-box-shadow 0.1s ease-out;
  transition: transform 0.1s ease-out, filter 0.05s linear, box-shadow 0.1s ease-out;
  transition: transform 0.1s ease-out, filter 0.05s linear, box-shadow 0.1s ease-out, -webkit-transform 0.1s ease-out, -webkit-filter 0.05s linear, -webkit-box-shadow 0.1s ease-out;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.15), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.15), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}
body > main div > div img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35), inset 0 2px 6px rgba(255, 255, 255, 0.2), inset 0 -2px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35), inset 0 2px 6px rgba(255, 255, 255, 0.2), inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}
body > main div > div img:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 2px 6px rgba(255, 255, 255, 0.1), inset 0 -2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 2px 6px rgba(255, 255, 255, 0.1), inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}

#inApp,
.menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background-color: black;
  width: 100%;
  height: 100%;
  z-index: 9998;
  -webkit-transition: opacity 0.25s linear, visibility 0.25s linear;
  transition: opacity 0.25s linear, visibility 0.25s linear;
}

.appView {
  position: absolute;
  z-index: 9999;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contacts #contactCard {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#101316), to(#0D1014));
  background-image: linear-gradient(to bottom, #101316, #0D1014);
  height: 100%;
  width: 53.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  position: sticky;
}
.contacts #contactCard h1 {
  font-family: "SFL", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 3.25em;
  margin-top: 0.1rem;
  letter-spacing: 2.4px;
}
.contacts #contactCard i {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #34383B;
  border-radius: 100rem;
  width: 2.75rem;
  height: 2.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5em;
  margin: 2rem 0 0 1.1rem;
  cursor: pointer;
  top: 0;
}
.contacts #contactCard > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts #contactCard img {
  width: 362px;
  border-radius: 100rem;
}
.contacts #contactCard p {
  margin-top: 2.225rem;
  font-size: 1.1em;
  letter-spacing: 1.25px;
  font-family: "SFSB", -apple-system, BlinkMacSystemFont, sans-serif;
}
.contacts #contactInfo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
  overflow-y: auto;
  max-height: 100%;
}
.contacts .infoCluster {
  width: 97.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.65rem;
  overflow: hidden;
  margin-bottom: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts .infoCluster .infoBox {
  position: relative;
  font-family: "SFL", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1C1C1E;
  height: 5.45rem;
  padding-left: 1.425rem;
  cursor: pointer;
  width: 100%;
}
.contacts .infoCluster .infoBox h2 {
  font-size: 1.25em;
  letter-spacing: 1px;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.contacts .infoCluster .infoBox p {
  font-size: 1.5em;
  color: #0088ff;
  margin-top: 0.35rem;
  letter-spacing: 0.45px;
}
.contacts .infoCluster .infoBox:active {
  background-color: #3A3A3C;
}
.contacts .infoCluster .infoBox:after {
  content: "";
  background: #3A3A3A;
  position: absolute;
  width: calc(100% - 1.425rem);
  left: 1.425rem;
  height: 1px;
  bottom: 0;
}
.contacts .infoCluster .infoBox:last-child::after {
  height: 0;
}

@media screen and (max-width: 900px) {
  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .contacts #contactCard {
    width: 100%;
    max-height: 27.5rem;
  }
  .contacts #contactCard i {
    width: 2rem;
    height: 2rem;
    font-size: 1.1em;
    margin: 2rem 0 0 0.8rem;
  }
  .contacts #contactCard img {
    width: 265px;
  }
  .contacts #contactCard p {
    margin-top: 1.6rem;
    font-size: 0.8em;
    letter-spacing: 0.9px;
  }
  .contacts #contactCard h1 {
    font-size: 2.35em;
    letter-spacing: 1.85px;
  }
  .contacts .infoBox {
    width: 96%;
    height: 4rem;
    padding-left: 1.05rem;
  }
  .contacts .infoBox h2 {
    font-size: 0.9em;
    letter-spacing: 0.8px;
    color: white;
  }
  .contacts .infoBox p {
    font-size: 1em;
    color: #0088ff;
    margin-top: 0.35rem;
    letter-spacing: 1.05px;
  }
  .contacts #infoCluster {
    width: 96%;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
  }
  .contacts #infoCluster .infoBox::after {
    content: "";
    background: #3A3A3A;
    position: absolute;
    width: calc(100% - 1.05rem);
    left: 1.05rem;
    height: 1px;
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
  #name {
    font-size: 2.35em;
    letter-spacing: 0.7px;
  }
  body > main {
    width: 90%;
    margin: 0.25rem 0rem 0 1rem;
  }
  body > main div {
    margin-top: 1.1rem;
  }
  body > main div > div {
    margin-right: 1.825rem;
  }
  body > main div > div p {
    margin-top: 0.25rem;
    font-size: 0.75em;
  }
  body > main div > div img {
    width: 60px;
  }
  #inApp,
  .menu {
    overflow: scroll;
  }
  .contacts #contactCard {
    min-height: 27.5rem;
    position: relative;
  }
  .contacts #contactInfo {
    overflow-y: visible;
  }
  .contacts #contactInfo .infoCluster {
    width: 96%;
  }
  .contacts #contactInfo .infoCluster .infoBox {
    height: 4rem;
    padding-left: 1.05rem;
  }
  .contacts #contactInfo .infoCluster .infoBox h2 {
    font-size: 0.9em;
  }
  .contacts #contactInfo .infoCluster .infoBox p {
    font-size: 1em;
  }
}/*# sourceMappingURL=main.css.map */