* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "seamly";
  src: url(../fonts/CircularStd-Book.141786e81ed670627c7a85592c5c9897.woff);
  font-weight: 500;
}

@font-face {
  font-family: "curly";
  src: url(../fonts/D-DINCondensed-Bold.1c40626b390ef186f676b920b5a284ff.woff);
  font-weight: 500;
}

@font-face {
  font-family: "blondy";
  src: url(../fonts/MarkPro-Heavy.e2c6ce4009c23ed34b4861cb4151990f.woff);
  font-weight: 900;
}

.hero__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #070d2e;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  margin-left: 1rem;
  height: 20rem;
}

.hero__logo-box {
  position: relative;
  width: 200px;
  height: 300px;
  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;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 20px;
}

.hero__logo-box::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(#60daff), to(#f10cd3f5));
  background: linear-gradient(#60daff, #f10cd3f5);
  -webkit-animation: anim 4s linear infinite;
          animation: anim 4s linear infinite;
}

.hero__logo-box::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #0e1538;
  border-radius: 16px;
}

@-webkit-keyframes anim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes anim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.hero__logo-box h2 {
  position: relative;
  color: #fff;
  font-size: 3rem;
  z-index: 10;
}

.header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr (minmax(min-content, 10rem))[12] 1fr;
      grid-template-columns: 1fr repeat(12, minmax(-webkit-min-content, 10rem)) 1fr;
      grid-template-columns: 1fr repeat(12, minmax(min-content, 10rem)) 1fr;
  background-color: #000;
  position: relative;
  height: 70vh;
}

.header__hd {
  margin-top: 6rem;
}

.header__span {
  color: #fff;
  margin-left: 12rem;
}

.header__form {
  width: 50rem;
  height: 6rem;
  background-color: transparent;
  margin-top: 3rem;
  -ms-grid-column: 3;
  -ms-grid-column-span: 7;
  grid-column: 3 / 10;
  border-radius: 2rem;
  border: 1px solid #fff;
}

.header__checkbox {
  margin-top: 1rem;
  margin-left: 40rem;
  display: none;
}

.header .header__nav-button {
  background-color: transparent;
  height: 4.5rem;
  width: 4.5rem;
  position: fixed;
  top: 4rem;
  right: 5rem;
  border-radius: 50%;
  z-index: 2000;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  border: 1px solid #fff;
}

.header .header__nav-background {
  height: 3rem;
  width: 2.8rem;
  border-radius: 0;
  position: fixed;
  top: 6.5rem;
  right: 2.6rem;
  z-index: 500;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1), -webkit-transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}

.header .header__checkbox:checked ~ .header__nav-background {
  -webkit-transform: scaleX(100);
          transform: scaleX(100);
  height: 20rem;
  margin-top: -5rem;
}

.header .header__checkbox:checked ~ .headernav-nav {
  opacity: 1;
  width: 20%;
}

.header .header__nav-icon {
  position: relative;
  margin-top: 2rem;
}

.header .header__nav-icon,
.header .header__nav-icon::before,
.header .header__nav-icon::after {
  width: 2rem;
  height: 2px;
  background-color: #fff;
  display: inline-block;
}

.header .header__nav-icon::before,
.header .header__nav-icon::after {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header .header__nav-icon::before {
  top: -0.8rem;
}

.header .header__nav-icon::after {
  top: 0.8rem;
}

.header .header__nav-button:hover .header__nav-icon::before {
  top: -1rem;
}

.header .header__nav-button:hover .header__nav-icon::after {
  top: 1rem;
}

.header__head-animated {
  color: #8000ff;
}

.header__hero-heading {
  color: #8000ff;
  margin-top: 14rem;
  font-size: 4rem;
  position: relative;
  -ms-grid-column: 2;
  -ms-grid-column-span: 8;
  grid-column: 2/ 10;
  margin-left: -9rem;
  margin-bottom: 5rem;
}

.header__content {
  position: relative;
}

.header__content h2 {
  position: absolute;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  font-size: 8rem;
  margin-top: -7rem;
  margin-left: -5rem;
}

.header__content h2:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 2px #8000ff;
}

.header__content h2:nth-child(2) {
  color: #8000ff;
  -webkit-animation: animate 4s ease-in-out infinite;
          animation: animate 4s ease-in-out infinite;
}

@-webkit-keyframes animate {
  0%,
  100% {
    -webkit-clip-path: polygon(0% 40%, 4% 41%, 11% 46%, 15% 48%, 21% 49%, 27% 50%, 31% 50%, 36% 46%, 38% 43%, 43% 41%, 50% 38%, 55% 38%, 64% 40%, 71% 39%, 76% 43%, 82% 44%, 85% 47%, 92% 47%, 97% 45%, 99% 43%, 100% 98%, 1% 99%);
            clip-path: polygon(0% 40%, 4% 41%, 11% 46%, 15% 48%, 21% 49%, 27% 50%, 31% 50%, 36% 46%, 38% 43%, 43% 41%, 50% 38%, 55% 38%, 64% 40%, 71% 39%, 76% 43%, 82% 44%, 85% 47%, 92% 47%, 97% 45%, 99% 43%, 100% 98%, 1% 99%);
  }
  50% {
    -webkit-clip-path: polygon(0% 48%, 1% 50%, 5% 53%, 6% 56%, 11% 59%, 15% 61%, 19% 63%, 25% 65%, 31% 66%, 36% 67%, 40% 66%, 44% 65%, 49% 63%, 52% 61%, 56% 57%, 58% 54%, 60% 50%, 63% 48%, 67% 47%, 72% 47%, 79% 47%, 84% 45%, 90% 45%, 93% 47%, 97% 47%, 99% 98%, 99% 48%, 98% 99%, 1% 98%, 99% 52%, 97% 97%, 3% 96%, 1% 96%);
            clip-path: polygon(0% 48%, 1% 50%, 5% 53%, 6% 56%, 11% 59%, 15% 61%, 19% 63%, 25% 65%, 31% 66%, 36% 67%, 40% 66%, 44% 65%, 49% 63%, 52% 61%, 56% 57%, 58% 54%, 60% 50%, 63% 48%, 67% 47%, 72% 47%, 79% 47%, 84% 45%, 90% 45%, 93% 47%, 97% 47%, 99% 98%, 99% 48%, 98% 99%, 1% 98%, 99% 52%, 97% 97%, 3% 96%, 1% 96%);
  }
}

@keyframes animate {
  0%,
  100% {
    -webkit-clip-path: polygon(0% 40%, 4% 41%, 11% 46%, 15% 48%, 21% 49%, 27% 50%, 31% 50%, 36% 46%, 38% 43%, 43% 41%, 50% 38%, 55% 38%, 64% 40%, 71% 39%, 76% 43%, 82% 44%, 85% 47%, 92% 47%, 97% 45%, 99% 43%, 100% 98%, 1% 99%);
            clip-path: polygon(0% 40%, 4% 41%, 11% 46%, 15% 48%, 21% 49%, 27% 50%, 31% 50%, 36% 46%, 38% 43%, 43% 41%, 50% 38%, 55% 38%, 64% 40%, 71% 39%, 76% 43%, 82% 44%, 85% 47%, 92% 47%, 97% 45%, 99% 43%, 100% 98%, 1% 99%);
  }
  50% {
    -webkit-clip-path: polygon(0% 48%, 1% 50%, 5% 53%, 6% 56%, 11% 59%, 15% 61%, 19% 63%, 25% 65%, 31% 66%, 36% 67%, 40% 66%, 44% 65%, 49% 63%, 52% 61%, 56% 57%, 58% 54%, 60% 50%, 63% 48%, 67% 47%, 72% 47%, 79% 47%, 84% 45%, 90% 45%, 93% 47%, 97% 47%, 99% 98%, 99% 48%, 98% 99%, 1% 98%, 99% 52%, 97% 97%, 3% 96%, 1% 96%);
            clip-path: polygon(0% 48%, 1% 50%, 5% 53%, 6% 56%, 11% 59%, 15% 61%, 19% 63%, 25% 65%, 31% 66%, 36% 67%, 40% 66%, 44% 65%, 49% 63%, 52% 61%, 56% 57%, 58% 54%, 60% 50%, 63% 48%, 67% 47%, 72% 47%, 79% 47%, 84% 45%, 90% 45%, 93% 47%, 97% 47%, 99% 98%, 99% 48%, 98% 99%, 1% 98%, 99% 52%, 97% 97%, 3% 96%, 1% 96%);
  }
}

.container {
  background-color: #000;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr (minmax(min-content, 10rem))[12] 1fr;
      grid-template-columns: 1fr repeat(12, minmax(-webkit-min-content, 10rem)) 1fr;
      grid-template-columns: 1fr repeat(12, minmax(min-content, 10rem)) 1fr;
}

.container__about {
  font-size: 3rem;
  font-family: seamly;
  line-height: 4;
  color: #fff;
  margin-left: 2rem;
}

.container__name {
  text-transform: capitalize;
  color: #cf59e6;
  font-family: audiowide;
}

.container__first {
  -ms-grid-column: 1;
  -ms-grid-column-span: 9;
  grid-column: 1 / 10;
  font-size: 2rem;
  font-family: seamly;
  line-height: 1;
  color: #fff;
  margin-left: 2rem;
  margin-top: 14rem;
}

.container__about-sp1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 9;
  grid-column: 1 / 10;
  font-size: 2rem;
  font-family: seamly;
  line-height: 1;
  color: #fff;
  margin-left: 2rem;
  margin-top: 2rem;
}

.container__about-sp2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 8;
  grid-column: 2 / 10;
  font-size: 2rem;
  font-family: seamly;
  line-height: 1;
  color: #fff;
  margin-top: 2rem;
  margin-left: 2rem;
}

.container__about-sp3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 10;
  grid-column: 1 / 11;
  font-size: 2rem;
  font-family: seamly;
  line-height: 1;
  color: #fff;
  margin-top: 2rem;
  margin-left: 2rem;
}

.container__story {
  margin-top: 10rem;
  font-size: 3rem;
  font-family: seamly;
  color: #fff;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / 8;
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.container__paragraph {
  font-size: 2rem;
  font-family: seamly;
  color: #cf59e6;
  margin-left: 2rem;
}

.container__detail {
  -ms-grid-column: 1;
  -ms-grid-column-span: 11;
  grid-column: 1 / 12;
}

span {
  color: #fff;
}

.projects {
  background-color: #000;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr (minmax(min-content, 10rem))[12] 1fr;
      grid-template-columns: 1fr repeat(12, minmax(-webkit-min-content, 10rem)) 1fr;
      grid-template-columns: 1fr repeat(12, minmax(min-content, 10rem)) 1fr;
}

.projects__cards {
  -ms-grid-column: 7;
  -ms-grid-column-span: 4;
  grid-column: 7 / 11;
  margin-top: 4rem;
  position: relative;
}

.projects__cards-2 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 4;
  grid-column: 3 / 7;
  margin-top: 4rem;
  position: relative;
  margin-top: -35rem;
}

.projects__tutored {
  -ms-grid-column: 11;
  -ms-grid-column-span: 2;
  grid-column: 11 / 13;
  margin-top: 4rem;
  position: relative;
  margin-top: -34rem;
}

.projects__tutored-story {
  font-size: 1.2rem;
  color: #fff;
}

.projects__tutored-story:hover {
  text-decoration: underline;
}

.projects__name {
  font-size: 2rem;
  color: #fff;
  margin-top: 8rem;
  margin-left: 21rem;
}

.projects__img-1-front {
  width: 20rem;
  border-bottom-left-radius: 5rem;
  position: relative;
}

.projects__img-1-back {
  width: 20rem;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  margin-top: 1px;
  margin-left: -20rem;
  border-bottom-left-radius: 5rem;
}

.projects__cards-box-1 {
  position: relative;
  width: 20rem;
  margin-top: -6rem;
}

.projects__img-2-front {
  width: 20rem;
  border-bottom-left-radius: 5rem;
  position: relative;
}

.projects__img-2-back {
  width: 20rem;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  margin-top: 1px;
  margin-left: -20rem;
  border-bottom-left-radius: 5rem;
}

.projects__cards-box-2 {
  position: relative;
  width: 20rem;
  margin-top: -6rem;
  margin-bottom: 5rem;
}

.projects__cards-box-3 {
  position: relative;
  width: 20rem;
  margin-top: -6rem;
  margin-bottom: 5rem;
  margin-left: 1rem;
}

.projects__cards-box-4 {
  position: relative;
  width: 20rem;
  margin-top: -8.5rem;
  margin-bottom: 5rem;
  margin-left: 1rem;
}

.projects__cards-box-5 {
  position: relative;
  width: 20rem;
  margin-top: -6rem;
  margin-bottom: 5rem;
}

.projects__cards-box-6 {
  position: relative;
  width: 20rem;
  margin-top: -6rem;
  margin-bottom: 5rem;
}

.projects__img-nayo-front {
  width: 20rem;
  border-bottom-left-radius: 5rem;
  position: relative;
}

.projects__img-nayo-back {
  width: 20rem;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  margin-top: 1px;
  margin-left: -20rem;
  border-bottom-left-radius: 5rem;
}

.projects__cards-box-1:hover .projects__img-1-back {
  display: inline;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.projects__cards-box-1:hover .projects__img-1-front {
  display: inline;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.projects__cards-box-2:hover .projects__img-2-back {
  display: inline;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.projects__cards-box-2:hover .projects__img-2-front {
  display: inline;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.projects__cards-box-3:hover .projects__img-1-back {
  display: inline;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.projects__cards-box-3:hover .projects__img-1-front {
  display: inline;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.projects__cards-box-4:hover .projects__img-1-back {
  display: inline;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.projects__cards-box-4:hover .projects__img-1-front {
  display: inline;
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

h3::after {
  content: "\270B";
}

.wu-img__wura {
  width: 25rem;
  height: 25rem;
  margin-left: 30rem;
}

.wu-ed {
  width: 25rem;
  height: 25rem;
  position: relative;
  color: green;
}

.wu-text {
  font-size: 1.2rem;
  color: #cf59e6;
  position: absolute;
}

.footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr (minmax(min-content, 10rem))[12] 1fr;
      grid-template-columns: 1fr repeat(12, minmax(-webkit-min-content, 10rem)) 1fr;
      grid-template-columns: 1fr repeat(12, minmax(min-content, 10rem)) 1fr;
  background-color: #000;
}

.footer__heading {
  -ms-grid-column: 2;
  -ms-grid-column-span: 8;
  grid-column: 2 / 10;
  font-size: 2rem;
  margin-left: 2rem;
  color: #fff;
  margin-top: 5rem;
}

.footer__span {
  text-transform: uppercase;
  color: #8000ff;
}

.footer__svg {
  -ms-grid-column: 10;
  -ms-grid-column-span: 2;
  grid-column: 10 / 12;
  margin-top: 10rem;
  margin-left: -65rem;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}

h5::after {
  content: "\2728";
  margin-left: 2rem;
}

.footer__svg-link {
  width: 8rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 4rem;
}

.link {
  color: #8000ff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
  color: #cf59e6;
}

/*










MEDIA 810PX*/
@media screen and (max-width: 810px) {
  .header__nav-background {
    display: none;
  }
  .header__nav-button {
    display: none;
  }
  .container__first {
    margin-top: 1rem;
  }
  .projects {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
  }
  .projects__cards {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1 / 6;
  }
  .projects__cards-box-1 {
    width: 15rem;
  }
  .projects__cards-2 {
    margin-top: -2rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1 / 6;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
  .projects__tutored {
    margin-top: -7rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1 / 6;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .footer__heading {
    margin-top: -3rem;
  }
  .footer__svg {
    margin-top: -1rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1 / 6;
    margin-left: 1rem;
  }
}

/*













MEDIA 635PX*/
/*












MMEDIA 580PX*/
@media screen and (max-width: 580px) {
  .hero__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #070d2e;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 20vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    margin-left: 1rem;
    margin-top: -4rem;
  }
  .hero__logo-box {
    position: relative;
    width: 100px;
    height: 200px;
    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;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 20px;
  }
  .hero__logo-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 300px;
    background: -webkit-gradient(linear, left top, left bottom, from(#60daff), to(#f10cd3f5));
    background: linear-gradient(#60daff, #f10cd3f5);
    -webkit-animation: anim 4s linear infinite;
            animation: anim 4s linear infinite;
  }
  .hero__logo-box::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #0e1538;
    border-radius: 16px;
  }
  .hero__logo-box h2 {
    font-size: 1rem;
    margin-left: 1rem;
    margin-top: 1rem;
  }
  .header__content h2 {
    margin-top: -2rem;
    font-size: 4rem;
    margin-left: 2rem;
  }
  .header__hd {
    font-size: 1.2rem;
    margin-left: 3rem;
  }
  .header {
    height: 30vh;
  }
  .container__first {
    margin-top: 8rem;
    font-size: 1.2rem;
  }
  .container__about-sp1 {
    font-size: 1.2rem;
  }
  .container__about-sp2 {
    font-size: 1.2rem;
  }
  .container__about-sp3 {
    font-size: 1.2rem;
  }
  .container__story {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .container__paragraph {
    font-size: 1.2rem;
  }
  .projects {
    margin-top: -5.5rem;
  }
  .projects__img-1-front {
    width: 15rem;
  }
  .projects__img-2-front {
    width: 15rem;
  }
  .projects__name {
    font-size: 1.2rem;
    margin-left: 15rem;
  }
  .projects__cards-box-3 {
    margin-left: 1px;
  }
  .projects__cards-box-4 {
    margin-top: -5rem;
    margin-left: 1px;
  }
  .footer__heading {
    margin-top: -10rem;
  }
  .footer__svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .footer__svg-link {
    width: 8rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 4rem;
  }
  .link {
    color: #8000ff;
    text-decoration: none;
  }
  .link:hover {
    text-decoration: underline;
    color: #cf59e6;
  }
}

/*









MEDIA 490*/
@media screen and (max-width: 490px) {
  .container__first {
    margin-top: 13rem;
  }
}

/*









MEDIA 453*/
@media screen and (max-width: 453px) {
  .container__first {
    margin-top: 13rem;
  }
}

/*









MEDIA 435*/
@media screen and (max-width: 435px) {
  .container__first {
    margin-top: 13rem;
  }
}

/*










MEDIA 428PX*/
@media screen and (max-width: 428px) {
  .hero__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #070d2e;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 20vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    margin-left: 1rem;
    margin-top: -4rem;
  }
  .hero__logo-box {
    position: relative;
    width: 100px;
    height: 200px;
    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;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 20px;
  }
  .hero__logo-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 300px;
    background: -webkit-gradient(linear, left top, left bottom, from(#60daff), to(#f10cd3f5));
    background: linear-gradient(#60daff, #f10cd3f5);
    -webkit-animation: anim 4s linear infinite;
            animation: anim 4s linear infinite;
  }
  .hero__logo-box::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #0e1538;
    border-radius: 16px;
  }
  .hero__logo-box h2 {
    font-size: 1rem;
    margin-left: 1rem;
    margin-top: 1rem;
  }
  .header__content h2 {
    margin-top: -2rem;
    font-size: 4rem;
    margin-left: 2rem;
  }
  .header__hd {
    font-size: 1.2rem;
    margin-left: 3rem;
  }
  .header {
    height: 30vh;
  }
  .header__span {
    margin-left: 2px;
  }
  .container__name {
    font-size: 1rem;
  }
  .container__first {
    margin-top: 12rem;
    font-size: 1.2rem;
  }
  .container__about-sp1 {
    font-size: 1.2rem;
  }
  .container__about-sp2 {
    font-size: 1.2rem;
  }
  .container__about-sp3 {
    font-size: 1.2rem;
  }
  .container__story {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .container__paragraph {
    font-size: 1.2rem;
  }
  .projects {
    margin-top: -5.5rem;
  }
  .projects__img-1-front {
    width: 15rem;
  }
  .projects__img-2-front {
    width: 15rem;
  }
  .projects__name {
    font-size: 1.2rem;
    margin-left: 15rem;
  }
  .projects__cards-box-3 {
    margin-left: 1px;
  }
  .projects__cards-box-4 {
    margin-top: -5rem;
    margin-left: 1px;
  }
  .footer__heading {
    margin-top: -10rem;
  }
  .footer__svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .footer__svg-link {
    width: 4rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
  }
  .link {
    color: #8000ff;
    text-decoration: none;
  }
  .link:hover {
    text-decoration: underline;
    color: #cf59e6;
  }
}

/*





MEDIA 390PX*/
@media screen and (max-width: 390px) {
  .header__hd {
    font-size: 1rem;
  }
  .header__span {
    margin-left: 2px;
  }
  .container__first {
    margin-top: 13rem;
  }
  .footer__heading {
    margin-top: -10rem;
    font-size: 1.5rem;
  }
  .footer__svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .footer__svg-link {
    width: 4rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
  }
  .link {
    color: #8000ff;
    text-decoration: none;
  }
  .link:hover {
    text-decoration: underline;
    color: #cf59e6;
  }
  .container__first {
    margin-top: 8rem;
    font-size: 15px;
  }
  .container__about-sp1 {
    font-size: 15px;
  }
  .container__about-sp2 {
    font-size: 15px;
  }
  .container__about-sp3 {
    font-size: 15px;
  }
  .container__story {
    font-size: 15px;
  }
  .container__paragraph {
    font-size: 15px;
  }
}

/*










MEDIA 384PX*/
@media screen and (max-width: 384px) {
  .header__content h2 {
    font-size: 3rem;
    margin-left: 4rem;
  }
  .header__hd {
    margin-top: 2rem;
  }
  .container__first {
    margin-top: 11rem;
  }
  .container__story {
    margin-top: 1rem;
    font-size: 15px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
  }
  .container__paragraph {
    font-size: 15px;
  }
  .container__first {
    margin-top: 8rem;
    font-size: 15px;
  }
  .container__about-sp1 {
    font-size: 15px;
  }
  .container__about-sp2 {
    font-size: 15px;
  }
  .container__about-sp3 {
    font-size: 15px;
  }
  .projects__img-2-back {
    width: 15rem;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 1px;
    margin-left: -15rem;
    border-bottom-left-radius: 5rem;
  }
  .projects__cards-box-2:hover .projects__img-2-back {
    display: inline;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .projects__img-1-back {
    width: 15rem;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 1px;
    margin-left: -15rem;
    border-bottom-left-radius: 5rem;
  }
  .footer__heading {
    margin-top: -10rem;
  }
  .footer__svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .footer__svg-link {
    width: 4rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
  }
  .link {
    color: #8000ff;
    text-decoration: none;
  }
  .link:hover {
    text-decoration: underline;
    color: #cf59e6;
  }
}

/*









MEDIA 380*/
@media screen and (max-width: 380px) {
  .container__first {
    margin-top: 13rem;
  }
  .projects__name {
    font-size: 15px;
  }
  .container {
    marker-start: -1rem;
  }
}

/*









MEDIA 377*/
@media screen and (max-width: 377px) {
  .container__first {
    margin-top: 13rem;
  }
  .container {
    marker-start: -1rem;
  }
  .projects__name {
    font-size: 12px;
  }
}

/*




MEDIA 375*/
@media screen and (max-width: 375px) {
  .container__first {
    margin-top: 10rem;
  }
  .container {
    marker-start: -1rem;
  }
}

/*









MEDIA 373*/
@media screen and (max-width: 373px) {
  .container__first {
    margin-top: 13rem;
  }
  .projects__name {
    font-size: 12px;
  }
  .container {
    marker-start: -1rem;
  }
}

/*








MEDIA 366PX*/
@media screen and (max-width: 366px) {
  .header__content h2 {
    font-size: 3rem;
    margin-left: 4rem;
  }
  .header__hd {
    margin-top: 2rem;
  }
  .container {
    marker-start: -1rem;
  }
  .container__first {
    margin-top: 11rem;
  }
  .container__story {
    margin-top: 1rem;
    font-size: 15px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
  }
  .container__first {
    margin-top: 8rem;
    font-size: 15px;
  }
  .container__about-sp1 {
    font-size: 15px;
  }
  .container__about-sp2 {
    font-size: 15px;
  }
  .container__about-sp3 {
    font-size: 15px;
  }
  .projects__img-2-back {
    width: 15rem;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 1px;
    margin-left: -15rem;
    border-bottom-left-radius: 5rem;
  }
  .projects__cards-box-2:hover .projects__img-2-back {
    display: inline;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .projects__img-1-back {
    width: 15rem;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 1px;
    margin-left: -15rem;
    border-bottom-left-radius: 5rem;
  }
  .footer__heading {
    margin-top: -10rem;
  }
  .footer__svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .footer__svg-link {
    width: 4rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
  }
  .link {
    color: #8000ff;
    text-decoration: none;
  }
  .link:hover {
    text-decoration: underline;
    color: #cf59e6;
  }
}

/*






MEDIA 360PX*/
@media screen and (max-width: 360px) {
  .header__content h2 {
    font-size: 3rem;
    margin-left: 4rem;
  }
  .header__hd {
    margin-top: 2rem;
  }
  .container {
    marker-start: -1rem;
  }
  .container__first {
    margin-top: 16rem;
  }
  .container__story {
    margin-top: 1rem;
    font-size: 1rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
  }
  .container__first {
    margin-top: 8rem;
    font-size: 1rem;
  }
  .container__about-sp1 {
    font-size: 1rem;
  }
  .container__about-sp2 {
    font-size: 1rem;
  }
  .container__about-sp3 {
    font-size: 1rem;
  }
  .projects__img-2-back {
    width: 15rem;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 1px;
    margin-left: -15rem;
    border-bottom-left-radius: 5rem;
  }
  .projects__cards-box-2:hover .projects__img-2-back {
    display: inline;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .projects__img-1-back {
    width: 15rem;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 1px;
    margin-left: -15rem;
    border-bottom-left-radius: 5rem;
  }
  .footer__heading {
    margin-top: -10rem;
  }
  .footer__svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .footer__svg-link {
    width: 4rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
  }
  .link {
    color: #8000ff;
    text-decoration: none;
  }
  .link:hover {
    text-decoration: underline;
    color: #cf59e6;
  }
}

/*









MEDIA 327*/
@media screen and (max-width: 327px) {
  .container__first {
    margin-top: 13rem;
    font-size: 12px;
  }
  .projects__name {
    font-size: 12px;
  }
  .container {
    marker-start: -1rem;
  }
  .container__about-sp1 {
    font-size: 12px;
    margin-top: 8px;
  }
  .container__about-sp2 {
    font-size: 12px;
    margin-top: 8px;
  }
  .container__about-sp3 {
    font-size: 12px;
    margin-top: 8px;
  }
  .container__story {
    font-size: 12px;
  }
  .container__paragraph {
    font-size: 12px;
  }
}

/*







MEDIA 326PX*/
@media screen and (max-width: 326px) {
  .header__content h2 {
    font-size: 2rem;
    margin-left: 5.5rem;
  }
  .footer__heading {
    margin-top: -10rem;
  }
  .footer__svg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .footer__svglink {
    width: 1rem;
    margin-left: -1rem;
  }
  .projects__name {
    margin-top: 10rem;
    font-size: 1rem;
    margin-left: 6rem;
    display: none;
  }
  .projects__cards {
    margin-top: 6rem;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .projects__cards-2 {
    margin-top: 2rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1 / 6;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
  .projects__tutored {
    margin-top: -12rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1 / 6;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .projects__cards-box-1 {
    margin-top: 2rem;
    width: 15rem;
  }
  .projects__cards-box-2 {
    margin-top: 2rem;
    width: 15rem;
  }
  .projects__cards-box-3 {
    margin-top: -5rem;
    width: 15rem;
  }
  .projects__cards-box-4 {
    margin-top: -3rem;
    width: 15rem;
  }
  .footer__svg-link {
    width: 4rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
  }
  .link {
    color: #8000ff;
    text-decoration: none;
  }
  .link:hover {
    text-decoration: underline;
    color: #cf59e6;
  }
  .container {
    marker-start: -1rem;
  }
}

/*









MEDIA 317*/
@media screen and (max-width: 317px) {
  .container__first {
    margin-top: 13rem;
  }
  .container {
    marker-start: -1rem;
  }
}
/*# sourceMappingURL=styles.css.map */