@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
:root {
  --button-color: rgba(39, 73, 252, 1);
  --title-color: rgba(255, 255, 255, 1);
  --text-color:rgba(255, 255, 255, 0.6);
  --text2-color: rgba(255, 255, 255, 0.8);
  --p-color: rgba(255, 255, 255, 0.4);
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 600;
  --h1-font-size: 1.625rem;
  --h2-font-size: 1.1875rem;
  --h3-font-size: 1.125rem;
  --h4-font-size: 1rem;
  --h5-font-size: 0.9375rem;
  --h6-font-size: 0.875rem;
  --h7-font-size: 0.8175rem;
}

@media screen and (max-width: 650px) {
  :root {
    --button-color: rgba(39, 73, 252, 1);
    --title-color: rgba(255, 255, 255, 1);
    --text-color:rgba(255, 255, 255, 0.6);
    --text2-color: rgba(255, 255, 255, 0.8);
    --p-color: rgba(255, 255, 255, 0.4);
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 600;
    --h1-font-size: 1.125rem;
    --h2-font-size: 0.875rem;
    --h3-font-size: 1rem;
    --h4-font-size: 0.875rem;
    --h5-font-size: 0.9375rem;
    --h6-font-size: 0.875rem;
    --h7-font-size: 0.8175rem;
  }
}

@-webkit-keyframes bpulse {
  0% {
    -webkit-box-shadow: inset 0 0 16px 16px rgba(255, 255, 255, 0.05), 0 0 4px 0 rgba(255, 255, 255, 0.144), 0 20px 40px #437eef40;
            box-shadow: inset 0 0 16px 16px rgba(255, 255, 255, 0.05), 0 0 4px 0 rgba(255, 255, 255, 0.144), 0 20px 40px #437eef40;
  }
  100% {
    -webkit-box-shadow: inset 0 0 0 3px rgba(117, 117, 25, 0.05), 0 0 0 10px transparent, 0 20px 40px #437eef40;
            box-shadow: inset 0 0 0 3px rgba(117, 117, 25, 0.05), 0 0 0 10px transparent, 0 20px 40px #437eef40;
  }
}

@keyframes bpulse {
  0% {
    -webkit-box-shadow: inset 0 0 16px 16px rgba(255, 255, 255, 0.05), 0 0 4px 0 rgba(255, 255, 255, 0.144), 0 20px 40px #437eef40;
            box-shadow: inset 0 0 16px 16px rgba(255, 255, 255, 0.05), 0 0 4px 0 rgba(255, 255, 255, 0.144), 0 20px 40px #437eef40;
  }
  100% {
    -webkit-box-shadow: inset 0 0 0 3px rgba(117, 117, 25, 0.05), 0 0 0 10px transparent, 0 20px 40px #437eef40;
            box-shadow: inset 0 0 0 3px rgba(117, 117, 25, 0.05), 0 0 0 10px transparent, 0 20px 40px #437eef40;
  }
}

@-webkit-keyframes cM {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cM {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes cS1 {
  0% {
    border: 1.5px solid #FD7C1F1A;
  }
  50% {
    border: 1.5px solid #fd7c1f00;
  }
  100% {
    border: 1.5px solid #FD7C1F1A;
  }
}

@keyframes cS1 {
  0% {
    border: 1.5px solid #FD7C1F1A;
  }
  50% {
    border: 1.5px solid #fd7c1f00;
  }
  100% {
    border: 1.5px solid #FD7C1F1A;
  }
}

@-webkit-keyframes cS2 {
  0% {
    border: 1.5px solid #FD7C1F05;
  }
  50% {
    border: 1.5px solid #fd7c1f00;
  }
  100% {
    border: 1.5px solid #FD7C1F05;
  }
}

@keyframes cS2 {
  0% {
    border: 1.5px solid #FD7C1F05;
  }
  50% {
    border: 1.5px solid #fd7c1f00;
  }
  100% {
    border: 1.5px solid #FD7C1F05;
  }
}

* {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("../img/bg.png");
  background-size: cover;
  max-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
  color: var(--title-color);
}

.app {
  max-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
}

.app .wrapper {
  height: 95vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.app .wrapper .profile {
  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;
  z-index: 100;
}

.app .wrapper .profile .profile__pictureBox {
  border-radius: 50%;
}

.app .wrapper .profile .profile__pictureBox .profile__pictureImg {
  position: relative;
  border-radius: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1.5px solid #FD7C1F05;
  z-index: 1;
  width: 250px;
  height: 250px;
  -webkit-animation: cS2 4s infinite;
          animation: cS2 4s infinite;
}

.app .wrapper .profile .profile__pictureBox .profile__pictureImg .circle {
  height: 216px;
  width: 216px;
  border: 1.5px solid #FD7C1F1A;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: cS1 4s infinite;
          animation: cS1 4s infinite;
}

.app .wrapper .profile .profile__pictureBox .profile__pictureImg .circle .circle-img {
  position: absolute;
  height: 158px;
  width: 158px;
  border-radius: 50%;
}

.app .wrapper .profile .profile__pictureBox .profile__pictureImg .circle::before {
  content: "";
  height: 184px;
  width: 184px;
  background-color: #d68b5f20;
  border-radius: 50%;
  display: inline-block;
  z-index: 0;
  -webkit-box-shadow: 0px 4px 50px 0px #c88b5630;
          box-shadow: 0px 4px 50px 0px #c88b5630;
  -webkit-animation: cM 3.5s infinite;
          animation: cM 3.5s infinite;
}

.app .wrapper .profile .profile__pictureBox .profile__pictureImg .circle::after {
  position: absolute;
  left: 18.5%;
  top: 18.5%;
  content: "";
  background-image: url("../img/profile picture.png");
  height: 158px;
  width: 158px;
  background-color: var(--button-color);
  border-radius: 50%;
  display: none;
  z-index: 10;
}

.app .wrapper .profile .profile__pictureBox .profile__pictureImg .yt {
  position: absolute;
  z-index: 100;
  top: 90%;
}

.app .wrapper .profile .profile__link {
  color: var(--text-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-regular);
  z-index: 100;
}

.app .wrapper .profile .profile__data {
  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;
  margin-top: 1rem;
}

.app .wrapper .profile .profile__data .profile-title {
  font-size: var(--h1-font-size);
}

.app .wrapper .profile .profile__data .profile-desc {
  font-size: var(--h2-font-size);
}

.app .wrapper .profile .profile__data::after {
  margin-top: 1rem;
  margin-bottom: 1rem;
  content: "";
  width: 150%;
  height: .5px;
  background-color: rgba(255, 255, 255, 0.2);
}

.app .wrapper .profile .introduction-wrapper {
  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;
  row-gap: .5rem;
  margin-bottom: 1rem;
}

.app .wrapper .profile .introduction-wrapper .introduction-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.app .wrapper .profile .introduction-wrapper .introduction-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .25rem;
          column-gap: .25rem;
}

.app .wrapper .profile .introduction-wrapper .introduction-grid .introduction-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-column-gap: .25rem;
          column-gap: .25rem;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: .7rem;
}

.app .wrapper .profile .introduction-wrapper .introduction-grid .introduction-card .card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app .wrapper .profile .introduction-wrapper .introduction-grid .introduction-card .card-title {
  font-size: var(--h7-font-size);
  font-weight: var(--font-medium);
}

.app .wrapper .profile .introduction-wrapper .introduction-desc {
  font-size: var(--h4-font-size);
  color: var(--p-color);
  font-weight: var(--font-regular);
}

.app .wrapper .profile .start-wrapper {
  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;
  row-gap: .5rem;
  margin-bottom: 2rem;
}

.app .wrapper .profile .start-wrapper .start-btn {
  width: 224px;
  height: 51px;
  background-color: var(--button-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: var(--title-color);
  text-decoration: none;
  -webkit-column-gap: .25rem;
          column-gap: .25rem;
  font-size: var(--h4-font-size);
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  overflow: hidden;
  -webkit-animation: 1s infinite bpulse;
          animation: 1s infinite bpulse;
}

.app .wrapper .profile .start-wrapper .start-btn::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 180px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: white;
  opacity: .5;
  left: -50%;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-filter: blur(24px);
          filter: blur(24px);
}

.app .wrapper .profile .start-wrapper .start-btn:hover::after {
  -webkit-transform: translateX(380px) rotate(45deg);
          transform: translateX(380px) rotate(45deg);
}

.app .wrapper .profile .start-wrapper .start-desc {
  font-size: var(--h7-font-size);
  color: var(--text2-color);
}

.app .wrapper .profile .start-wrapper .start-desc span {
  color: var(--title-color) !important;
}

.app .wrapper .profile .telegram-wrapper {
  width: 564px;
  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;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 15px;
  row-gap: 1rem;
}

.app .wrapper .profile .telegram-wrapper .telegram-title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-medium);
  text-align: center;
}

.app .wrapper .profile .telegram-wrapper .telegram-btn {
  text-decoration: none;
  color: var(--title-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 44px;
  width: 217px;
  border-radius: 50px;
  -webkit-transition: .3s;
  transition: .3s;
}

.app .wrapper .profile .telegram-wrapper .telegram-btn:hover {
  opacity: 0.8;
}

.app .footer {
  height: 5vh;
}

.app .footer::before {
  display: block;
  content: "";
  width: 100%;
  height: .5px;
  background-color: rgba(255, 255, 255, 0.2);
}

.app .footer .footer-grid {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

.app .footer .footer-grid .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .25rem;
          column-gap: .25rem;
  z-index: 100;
}

.app .footer .footer-grid .card .card-title {
  font-size: var(--h5-font-size);
  color: var(--p-color);
}

.app .footer .footer-grid .card .card-link {
  font-size: var(--h5-font-size);
  color: var(--title-color);
}

.app .bg-light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.app .bg-light .bg {
  position: absolute;
}

@media screen and (max-width: 3840px) and (min-width: 2560px) {
  .bg-light {
    top: 0;
  }
}

@media screen and (min-width: 3841px) {
  .bg-light {
    -webkit-transform: scale(1.5) translateY(-20%);
            transform: scale(1.5) translateY(-20%);
  }
}

@media screen and (max-width: 650px) {
  body {
    max-height: 110vh !important;
    max-width: unset;
    overflow: unset;
  }
  .app {
    max-height: 110vh !important;
    overflow: hidden;
  }
  .app .wrapper {
    height: 110vh !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .app .wrapper .profile .profile__data::after {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 300%;
  }
  .app .wrapper .profile .introduction-wrapper .introduction-grid {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: .25rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 370px;
  }
  .app .wrapper .profile .start-wrapper {
    display: none;
  }
  .app .wrapper .profile .telegram-wrapper {
    max-width: calc(370px - 3rem);
  }
  .app .footer {
    display: none;
  }
  .app .bg-light .bg {
    top: -80%;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
/*# sourceMappingURL=styles.css.map */