/*********************
    BREAKPOINTS
*********************/
@import url("https://fonts.googleapis.com/css?family=Montserrat");
body {
  background-color: #080808;
  margin: 0;
  user-select: none;
  /* supported by Chrome and Opera */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
}

.header {
  display: -ms-grid;
  display: grid;
  gap: 10px;
      grid-template-areas: "tools lo nav";
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  font-size: 25px;
  padding: 16px;
}

.header .t {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: tools;
}

.header .menu {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: nav;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: end;
      justify-self: end;
  /* ANIMATION */
}

.header .menu .menu-btn {
  z-index: 30;
  position: relative;
  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;
  width: 80px;
  height: 80px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.header .menu .menu-btn__burger {
  width: 30px;
  height: 4px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
          box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.header .menu .menu-btn__burger::before {
  content: '';
  position: absolute;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  width: 50px;
  height: 4px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
          box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.header .menu .menu-btn__burger::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
          box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.header .menu .menu-btn__burger::before {
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
}

.header .menu .menu-btn__burger::after {
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
}

.header .menu .menu-btn.open .menu-btn__burger {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header .menu .menu-btn.open .menu-btn__burger::before {
  -webkit-transform: rotate(45deg) translate(35px, -35px);
          transform: rotate(45deg) translate(35px, -35px);
}

.header .menu .menu-btn.open .menu-btn__burger::after {
  width: 50px;
  -webkit-transform: rotate(-45deg) translate(35px, 35px);
          transform: rotate(-45deg) translate(35px, 35px);
}

.header .menu .menu-i {
  z-index: 10;
  background-color: rgba(8, 8, 8, 0.9);
}

.header .menu .menu-i-li {
  list-style: none;
  text-decoration: none;
  margin-top: 50px;
}

.header .menu a {
  text-decoration: none;
  color: #fff;
}

.header .logo {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: lo;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  z-index: 0;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .menu-i {
    text-decoration: none;
    list-style: none;
    display: none;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    text-align: end;
    padding-top: 15vh;
    padding-bottom: 35vh;
    height: 100%;
  }
  .m-item {
    display: block;
    padding: 20px 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-i {
    text-decoration: none;
    list-style: none;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: end;
    padding-bottom: 35vh;
    padding-top: 15vh;
  }
  .m-item {
    display: block;
    padding: 20px 40px;
  }
}

@media screen and (min-width: 1024px) {
  .menu-i {
    text-decoration: none;
    list-style: none;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-align: end;
    padding-bottom: 35vh;
    padding-top: 15vh;
  }
  .m-item {
    display: block;
    padding: 20px 40px;
  }
}

/* ---- reset ---- */
canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #080808;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
  display: none;
}

.container {
  height: 85vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container p {
  font-size: 3rem;
  padding: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
  z-index: 2;
  margin-block: 0;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .container p {
    font-size: 2.5rem;
  }
}

.container p span.typed-text {
  font-weight: bold;
  color: #fff;
}

.container p span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}

.container p span.cursor.typing {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes blink {
  0% {
    background-color: #ccc;
  }
  49% {
    background-color: #ccc;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #ccc;
  }
}

@keyframes blink {
  0% {
    background-color: #ccc;
  }
  49% {
    background-color: #ccc;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #ccc;
  }
}

.desc {
  color: #fff;
  font-size: 36px;
  line-height: 56px;
  position: relative;
  display: block;
  padding: 2rem;
  margin-block: 0;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .desc {
    font-size: 25px;
    line-height: 45px;
  }
  .desc br {
    content: "";
  }
}

.about {
  width: calc(100vw - 60px);
  background-color: #181818;
  -webkit-box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
  margin: auto;
  border-radius: 10px;
  margin-top: 15vh;
  color: #fff;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .about {
    width: auto;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
  }
}

.about #txt-container {
  width: 80%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.about #txt-container h1 {
  text-align: center;
  font-size: 2rem;
  padding-top: 30px;
}

.about #txt-container p {
  font-size: 1.5rem;
}

.about #aboutimg {
  width: 80%;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border-radius: 10px;
}

.works {
  padding-top: 5vh;
}

.works .tittle {
  color: #fff;
  text-align: center;
}

.works .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  justify-items: center;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .works .items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 3%;
  }
}

.project {
  width: 95%;
  border-radius: 10px;
  background: #181818;
  -webkit-box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25);
  display: -ms-grid;
  display: grid;
  justify-items: center;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .project {
    width: auto;
    margin-right: 5%;
    margin-left: 5%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .project {
    width: auto;
    margin-right: 5%;
    margin-left: 5%;
  }
}

.project .name .logo {
  font-size: 2rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #fff;
  padding: 20px;
}

.project .mockup {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.project .mockup img {
  width: 80%;
}

.project .buttons {
  padding: 40px;
  -ms-grid-row: 3;
  grid-row: 3/3;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .project .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .project .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.project .buttons .learnmore {
  -webkit-box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
  background: linear-gradient(97.84deg, #3B3B3B 0%, #181818 53.12%, #3B3B3B 100%);
  background-size: 200% 200%;
  -webkit-animation: rainbow 4s ease-in-out infinite;
          animation: rainbow 4s ease-in-out infinite;
  color: #fff;
  text-decoration: none;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  text-transform: uppercase;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .project .buttons .learnmore {
    margin: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .project .buttons .learnmore {
    margin: 0;
  }
}

.project .buttons .visit {
  -webkit-box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
  background: linear-gradient(97.84deg, #3B3B3B 0%, #D0AE2F 52.6%, #3B3B3B 100%);
  background-size: 200% 200%;
  -webkit-animation: rainbow 4s ease-in-out infinite;
          animation: rainbow 4s ease-in-out infinite;
  color: #fff;
  text-decoration: none;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  text-transform: uppercase;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .project .buttons .visit {
    margin: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .project .buttons .visit {
    margin: 0;
  }
}

.project .buttons .visitea {
  -webkit-box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
  background: linear-gradient(97.84deg, #fbfbfb 0%, #323031 52.6%, #fbfbfb 100%);
  background-size: 200% 200%;
  -webkit-animation: rainbow 4s ease-in-out infinite;
          animation: rainbow 4s ease-in-out infinite;
  color: #000;
  text-decoration: none;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
  text-transform: uppercase;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .project .buttons .visitea {
    margin: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .project .buttons .visitea {
    margin: 0;
  }
}

.project .buttons a:hover {
  color: #f3efef;
}

@-webkit-keyframes rainbow {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

@keyframes rainbow {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

.contact {
  padding: 20px;
  padding-top: 50px;
}

.contact .name {
  color: #fff;
  text-align: center;
}

.contact form {
  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;
}

.contact label {
  color: #fff;
  font-size: 24px;
  margin: 20px 0 0 0;
}

.contact #subject {
  max-height: 100px;
}

.contact input[type=text], .contact select, .contact textarea {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
}

.contact input::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 3;
}

.contact input[type=submit] {
  width: 50%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact input[type=text]:click {
  border: 6px solid #13E8E9;
}

.contact input[type=submit]:hover {
  background-color: #45a049;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .contact input[type=text], .contact select, .contact textarea {
    width: 90%;
    padding: 6px 14px;
  }
}

body {
  overflow-x: hidden;
}

body .footer {
  margin-top: 200px;
  z-index: 1;
  --footer-background: #313131;
  display: -ms-grid;
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
}

body .footer .bubbles {
  width: 90%;
  position: absolute;
  top: 0;
  -ms-grid-column-align: center;
      justify-self: center;
  height: 1rem;
  background: var(--footer-background);
  -webkit-filter: url("#blob");
          filter: url("#blob");
}

body .footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  -webkit-animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
          animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

body .footer .content {
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 1fr;
      grid-template-columns: 5fr 1fr;
  grid-gap: 4rem;
  padding: 2rem;
  background: var(--footer-background);
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  body .footer .content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    grid-gap: 2rem;
  }
}

body .footer .content a, body .footer .content p {
  color: #F5F7FA;
  text-decoration: none;
}

body .footer .content b {
  color: white;
}

body .footer .content p {
  margin: 0;
  font-size: .75rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

body .footer .content > 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .footer .content > div > div {
  margin: 0.25rem 0;
}

body .footer .content > div > div > * {
  margin-right: .5rem;
}

body .footer .content > div .image {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 100%;
  height: 54%;
  margin: 0.25rem 0;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  body .footer .content > div .image {
    width: 50%;
    height: 50%;
  }
}

@-webkit-keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@-webkit-keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}

@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
/*# sourceMappingURL=style.css.map */