html,
*,
*:before,
*:after {
  box-sizing: border-box; }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

* {
  outline: 0;
  margin: 0;
  padding: 0; }

main {
  display: block; }

h1 {
  font-size: 2em;
  margin: 0; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  outline: none; }

button,
input {
  overflow: visible; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button {
  border: 0;
  outline: 0; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

[hidden] {
  display: none; }

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  border-style: none; }

a {
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

label {
  margin-bottom: 0; }

li {
  list-style: none; }

ul {
  margin: 0;
  padding: 0; }

:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Poppins", sans-serif;
  --transition: 0.2s all ease-in-out;
  --primary-color: #010314;
  --accent-color-1: #7241ff;
  --accent-color-2: #2a2b3a;
  --accent-color-3: #664dff;
  --active: #865bff;
  --primary-text-color: #fff;
  --secondary-text-color: #77798f;
  --linear-gradient: linear-gradient(
  	120.11deg,
  	rgb(98, 127, 255),
  	rgb(134, 91, 255)
  );
  --radial-gradient: radial-gradient(
  	70.71% 70.71% at 50% 50%,
  	rgb(255, 255, 255) 30.000001192092896%,
  	#82838b 84.77022051811218%
  );
  --white: #fff;
  --black: #000;
  --c-primary: #0b8fed;
  --c-text-white: #fff;
  --c-border: #eee; }

html {
  font-size: 1px; }

body {
  font-family: var(--font-family);
  font-size: 16rem;
  background: var(--primary-color);
  color: var(--primary-text-color); }

.container {
  max-width: 1440rem;
  padding: 0 40rem;
  margin-inline: auto; }
  @media (max-width: 576px) {
    .container {
      padding: 0 25rem; } }

.btn {
  display: inline-block;
  cursor: pointer;
  border: 0; }

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0); }

* ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--accent-color-1); }

.row {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px; }

.col-5 {
  width: 20%;
  padding: 0 10px 10px; }
  @media (max-width: 576px) {
    .col-5 {
      width: 100%; } }

.col-4 {
  width: 25%;
  padding: 0 10px 10px; }
  @media (max-width: 576px) {
    .col-4 {
      width: 100%; } }

.col-3 {
  width: 33.33%;
  padding: 0 10px 10px; }
  @media (max-width: 576px) {
    .col-3 {
      width: 100%; } }

.col-25 {
  width: 40%;
  padding: 0 10px 10px; }
  @media (max-width: 576px) {
    .col-25 {
      width: 100%; } }

.col-2 {
  width: 50%;
  padding: 0 10px 10px; }
  @media (max-width: 576px) {
    .col-2 {
      width: 100%; } }

.col-2m {
  width: 50%;
  padding: 0 10px 10px; }

.col-23 {
  width: 66.66%;
  padding: 0 10px 10px; }
  @media (max-width: 576px) {
    .col-23 {
      width: 100%; } }

.col-1 {
  width: 100%;
  padding: 0 10px 10px; }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 45rem;
  padding-bottom: 45rem; }
  .header__logo {
    font-weight: 900;
    font-size: 24rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary-text-color); }
    .header__logo span {
      font-style: italic;
      color: var(--accent-color-1); }
    @media (max-width: 576px) {
      .header__logo {
        font-size: 20rem; } }
  .header__backdrop {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    transform: translateX(120%);
    display: none;
    transition: var(--transition);
    opacity: 0; }
    @media (max-width: 992px) {
      .header__backdrop {
        display: block; } }
    .header__backdrop._active {
      opacity: 1;
      transform: translateX(0); }
  .header__a:hover {
    color: var(--accent-color-1); }
  .header__ul {
    display: flex;
    align-items: center;
    gap: 32rem;
    z-index: 9;
    font-weight: 400;
    font-size: 18rem;
    transition: var(--transition); }
    @media (max-width: 992px) {
      .header__ul {
        z-index: 9;
        position: fixed;
        width: 70%;
        height: 100%;
        flex-direction: column;
        left: 0;
        top: 0;
        background: var(--primary-color);
        align-items: center;
        justify-content: center;
        transform: translateX(-120%);
        transition: var(--transition);
        font-size: 22rem; } }
    @media (max-width: 576px) {
      .header__ul {
        font-size: 14rem; } }
    .header__ul._active {
      transform: translateX(0); }
    .header__ul .icon-close {
      position: absolute;
      top: 40px;
      right: 40px;
      color: var(--primary-text-color); }
  .header__a {
    transition: var(--transition);
    color: var(--primary-text-color); }
    @media (max-width: 992px) {
      .header__a {
        color: var(--primary-text-color); } }
  .header__buttons {
    display: flex;
    gap: 16rem;
    align-items: center; }
    @media (max-width: 992px) {
      .header__buttons {
        display: none; } }
  .header__btn, .header__small-btn {
    display: inline-block;
    cursor: pointer;
    border: 0;
    outline: 0;
    align-items: center;
    padding: 16rem 44rem;
    border-radius: 40rem;
    font-weight: 500;
    font-size: 16rem;
    color: var(--primary-text-color);
    transition: var(--transition);
    background: none;
    border: 3px solid var(--accent-color-1);
    box-shadow: 0 0 10px 0 #74f; }
    @media (max-width: 992px) {
      .header__btn, .header__small-btn {
        display: none; } }
  .header__small-btn {
    padding: 16rem 30rem;
    display: none;
    font-size: 18rem; }
    @media (max-width: 992px) {
      .header__small-btn {
        display: flex;
        gap: 2rem; } }
  .header__btn:hover, .header__small-btn:hover {
    transition: var(--transition);
    transform: scale(1.1); }

.icon-menu,
.icon-close {
  cursor: pointer;
  display: none; }
  @media (max-width: 992px) {
    .icon-menu,
    .icon-close {
      display: inline-block; } }

.set-up {
  padding-top: 70rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }
  .set-up__title {
    font-weight: 700;
    font-size: 54rem;
    line-height: 120%;
    background: var(--radial-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40rem; }
  .set-up__desc {
    font-weight: 400;
    font-size: 24rem;
    line-height: 160%;
    text-align: center;
    color: var(--secondary-text-color);
    max-width: 725rem;
    margin-bottom: 68rem; }
    .set-up__desc span {
      font-weight: 700; }
  .set-up__profile {
    display: flex;
    align-items: center;
    text-align: left;
    border-bottom: 3px solid #664dff;
    border-top: 1px solid #664dff;
    border-radius: 42rem;
    max-width: 1520rem;
    box-shadow: 0 4px 100px 0 rgba(102, 77, 255, 0.2);
    padding: 50rem;
    gap: 50rem; }
    @media (max-width: 992px) {
      .set-up__profile {
        flex-direction: column; } }
  .set-up__profile__group {
    display: flex;
    flex-direction: column; }
  .set-up__profile__group-pretitle {
    font-weight: 500;
    font-size: 16rem;
    line-height: 160%;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: var(--linear-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    gap: 12rem;
    margin-bottom: 20rem; }
    @media (max-width: 576px) {
      .set-up__profile__group-pretitle {
        font-size: 14rem; } }
  .set-up__profile__group-title {
    font-weight: 700;
    font-size: 44rem;
    line-height: 120%;
    background: var(--radial-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30rem; }
    @media (max-width: 992px) {
      .set-up__profile__group-title {
        font-size: 38rem; } }
    @media (max-width: 576px) {
      .set-up__profile__group-title {
        font-size: 30rem; } }
  .set-up__profile__group-desc {
    font-weight: 400;
    font-size: 22rem;
    line-height: 160%;
    color: var(--secondary-text-color);
    max-width: 600rem;
    margin-bottom: 30rem; }
    .set-up__profile__group-desc span {
      font-weight: 700; }
    @media (max-width: 992px) {
      .set-up__profile__group-desc {
        font-size: 20rem; } }
    @media (max-width: 576px) {
      .set-up__profile__group-desc {
        font-size: 18rem; } }
  .set-up__profile__group-btn {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white);
    border: 1.5rem solid var(--accent-color-1);
    border-radius: 40rem;
    box-sizing: border-box;
    box-shadow: 0 0 10rem 0 rgba(119, 68, 255, 0.7);
    display: inline-block;
    width: 100%;
    max-width: 180rem;
    padding: 22rem 40rem;
    transition: var(--transition); }
    @media (max-width: 576px) {
      .set-up__profile__group-btn {
        padding: 18rem;
        max-width: 135rem; } }
  .set-up__profile__group-btn:hover {
    transform: scale(1.1); }

.img-mask {
  width: 100%;
  max-width: 300rem;
  aspect-ratio: 1 / 1;
  border-radius: 10%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid var(--accent-color-1);
  box-shadow: 0 0 20px 0 rgba(119, 68, 255, 0.7); }
  @media (max-width: 992px) {
    .img-mask {
      max-width: 250rem; } }
  @media (max-width: 576px) {
    .img-mask {
      max-width: 150rem; } }

.img-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.portfolios {
  display: flex;
  text-align: center;
  padding-top: 100rem;
  flex-direction: column;
  align-items: center; }
  @media (max-width: 992px) {
    .portfolios {
      padding-top: 50rem; } }
  @media (max-width: 576px) {
    .portfolios {
      padding-top: 30rem; } }
  .portfolios__title {
    font-weight: 700;
    font-size: 54rem;
    line-height: 120%;
    text-align: center;
    background: var(--radial-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 100rem; }
    @media (max-width: 992px) {
      .portfolios__title {
        margin-bottom: 50rem;
        font-size: 40rem; } }
    @media (max-width: 576px) {
      .portfolios__title {
        margin-bottom: 30rem;
        font-size: 35rem; } }
  .portfolios__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 40rem;
    grid-row-gap: 40rem;
    justify-items: center;
    max-width: 1440rem; }
    @media (max-width: 992px) {
      .portfolios__group {
        grid-template-columns: 1fr;
        grid-column-gap: 30rem;
        grid-row-gap: 30rem; } }
    @media (max-width: 576px) {
      .portfolios__group {
        grid-column-gap: 25rem;
        grid-row-gap: 25rem; } }
  .portfolios__group-item {
    border-bottom: 3rem solid #664dff;
    border-top: 1rem solid #664dff;
    border-radius: 42rem;
    max-width: 745rem;
    width: 100%;
    box-shadow: 0 4rem 100rem 0 rgba(102, 77, 255, 0.2);
    padding: 45rem 40rem;
    text-align: left; }
    @media (max-width: 992px) {
      .portfolios__group-item {
        padding: 35rem 30rem; } }
    .portfolios__group-item__pretitle {
      font-weight: 500;
      font-size: 16rem;
      line-height: 160%;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      background: var(--linear-gradient);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      gap: 12rem;
      margin-bottom: 20rem; }
    .portfolios__group-item__title {
      font-family: var(--font-family);
      font-weight: 700;
      font-size: 44rem;
      line-height: 120%;
      background: var(--radial-gradient);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 24rem; }
      @media (max-width: 992px) {
        .portfolios__group-item__title {
          font-size: 38rem; } }
      @media (max-width: 576px) {
        .portfolios__group-item__title {
          font-size: 30rem; } }
    .portfolios__group-item__desc {
      margin-bottom: 75rem;
      max-width: 570rem;
      font-weight: 400;
      font-size: 22rem;
      line-height: 160%;
      color: var(--secondary-text-color); }
    .portfolios__group-item__image-container {
      overflow: hidden;
      position: relative;
      border-radius: 10rem; }
    .portfolios__group-item__image-container img {
      border-radius: 0;
      width: 100%;
      height: 300rem;
      transition: transform 0.5s ease; }
      @media (max-width: 576px) {
        .portfolios__group-item__image-container img {
          height: 180rem; } }
    .portfolios__group-item__image-container:hover img {
      transform: scale(1.2); }
      @media (max-width: 992px) {
        .portfolios__group-item__image-container:hover img {
          transform: none; } }

.reach {
  padding-top: 45rem;
  padding-bottom: 45rem;
  display: flex;
  justify-content: center; }
  .reach__block {
    display: flex;
    align-items: center;
    border-bottom: 2rem solid #664dff;
    border-top: 2rem solid #664dff;
    border-radius: 30rem;
    padding: 100rem;
    box-shadow: 0 16px 80px 0 rgba(102, 77, 255, 0.1);
    max-width: 1520rem;
    gap: 78rem; }
    @media (max-width: 992px) {
      .reach__block {
        flex-direction: column;
        padding: 50rem; } }
    @media (max-width: 576px) {
      .reach__block {
        padding: 30rem; } }
  .reach__title {
    font-weight: 700;
    font-size: 54rem;
    line-height: 120%;
    background: var(--radial-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32rem; }
    @media (max-width: 992px) {
      .reach__title {
        font-size: 40rem; } }
    @media (max-width: 576px) {
      .reach__title {
        font-size: 30rem; } }
  .reach__desc {
    font-weight: 400;
    font-size: 22rem;
    line-height: 160%;
    color: var(--secondary-text-color);
    margin-bottom: 34rem; }
    @media (max-width: 992px) {
      .reach__desc {
        font-size: 20rem; } }
    @media (max-width: 576px) {
      .reach__desc {
        font-size: 18rem; } }
  .reach__founder {
    border-top: 1rem solid #182542;
    padding-top: 34rem;
    display: flex;
    align-items: center;
    gap: 28rem; }
  .reach__founder-info {
    display: flex;
    flex-direction: column;
    gap: 8rem; }
  .reach__founder-name {
    font-weight: 500;
    font-size: 29rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-text-color); }
    @media (max-width: 992px) {
      .reach__founder-name {
        font-size: 24rem; } }
    @media (max-width: 576px) {
      .reach__founder-name {
        font-size: 20rem; } }
  .reach__founder-occupation {
    font-weight: 400;
    font-size: 16rem;
    line-height: 160%;
    color: var(--secondary-text-color); }
  .reach__founder-socials {
    display: flex;
    gap: 16rem; }
  .reach__tel {
    font-size: 14rem;
    font-weight: 400;
    color: var(--primary-text-color);
    transition: var(--transition); }
  .reach__tel:hover {
    color: var(--accent-color-1); }
  .reach__img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 600rem;
    overflow: hidden; }
    @media (max-width: 992px) {
      .reach__img {
        max-width: 400rem; } }
    @media (max-width: 576px) {
      .reach__img {
        max-width: 250rem; } }

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24rem; }
  .footer__copyright {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14rem;
    color: var(--secondary-text-color); }
    @media (max-width: 576px) {
      .footer__copyright {
        font-size: 12rem; } }
  .footer__ul {
    display: flex;
    align-items: center;
    gap: 32rem; }
  .footer__a {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14rem;
    color: var(--secondary-text-color); }

.footer__separator {
  border: 2rem solid #63e; }

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