@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap");
* {
  box-sizing: border-box;
}

/*=============Common Class================*/
.padded {
  padding: 0 1.5em;
}

@media screen and (min-width: 768px) {
  .padded {
    padding: 0 5em;
  }
}

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #12a4f8;
  border-radius: 10px;
  overflow: hidden;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #5b00ec;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c45fff;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  background: black;
}

body .main-container .back {
  min-height: 100vh;
  background: black url("image/background.png") no-repeat center top;
  background-size: cover;
}

body .main-container .front {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.404);
}

body .main-container .front header {
  padding-top: 1.5em;
}

body .main-container .front header nav ul, body .main-container .front header .floating-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

body .main-container .front header nav ul li:first-child, body .main-container .front header .floating-menu ul li:first-child {
  flex-grow: 1;
}

body .main-container .front header nav ul .hdemble, body .main-container .front header .floating-menu ul .hdemble {
  display: none;
}

@media screen and (min-width: 768px) {
  body .main-container .front header nav ul .hdemble, body .main-container .front header .floating-menu ul .hdemble {
    display: inline-block;
  }
}

body .main-container .front header nav ul li, body .main-container .front header .floating-menu ul li {
  display: inline-block;
}

body .main-container .front header nav ul li a, body .main-container .front header nav ul li i, body .main-container .front header .floating-menu ul li a, body .main-container .front header .floating-menu ul li i {
  color: white;
  padding: 0.5em;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2em;
  display: inline-block;
}

body .main-container .front header nav ul li a, body .main-container .front header .floating-menu ul li a {
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  transition: color 0.2s;
}

body .main-container .front header nav ul li a:hover, body .main-container .front header .floating-menu ul li a:hover {
  color: #ff00d4;
}

body .main-container .front header nav ul li i, body .main-container .front header .floating-menu ul li i {
  padding-top: 0.6em;
}

body .main-container .front header nav ul li i:hover, body .main-container .front header .floating-menu ul li i:hover {
  color: #ff00d4;
}

body .main-container .front header .floating-menu {
  position: fixed;
  top: 50%;
  right: -110%;
  transform: translateY(-50%);
  transition: right 0.2s ease-in;
  background: #b253ff;
  border-radius: 10px 0 0 10px;
  z-index: 10;
}

body .main-container .front header .floating-menu ul {
  display: flex;
  flex-flow: column;
}

body .main-container .front header .floating-menu ul li a {
  display: block;
  text-align: center;
}

body .main-container .front header .floating-menu ul li i {
  display: block;
  text-align: center;
  font-size: 1.5em;
}

body .main-container .front header .floating-menu ul li i:hover {
  color: #ff00d4;
}

body .main-container .front header .show-menu {
  right: 0;
}

body .main-container .front section {
  display: grid;
  grid-template-columns: auto;
}

@media screen and (min-width: 768px) {
  body .main-container .front section {
    grid-template-columns: auto auto;
  }
}

body .main-container .front section .design {
  text-align: center;
  position: relative;
}

body .main-container .front section .design img {
  max-width: 100%;
}

body .main-container .front section .design h1 {
  display: block;
  position: absolute;
  top: 50%;
  margin: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: white;
}

body .main-container .front section .design h1 span {
  font-family: 'Monoton', 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: 400;
}

body .main-container .front section article {
  display: flex;
  align-items: center;
  justify-content: center;
}

body .main-container .front section article .content {
  text-align: center;
}

@media screen and (min-width: 768px) {
  body .main-container .front section article .content {
    text-align: right;
  }
}

body .main-container .front section article .content h1 {
  text-transform: uppercase;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  color: white;
  text-align: center;
  margin: 0.5em 0;
}

@media screen and (min-width: 768px) {
  body .main-container .front section article .content h1 {
    text-align: right;
  }
}

body .main-container .front section article .content p {
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  color: white;
  text-align: center;
  max-width: 400px;
}

@media screen and (min-width: 768px) {
  body .main-container .front section article .content p {
    text-align: right;
  }
}

body .main-container .front section article .content a {
  color: #100667;
  text-decoration: none;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: bold;
  background: #d3cddf;
  padding: 0.4em 1.5em;
  display: inline-block;
  margin: auto;
  margin-bottom: 2em;
  border-radius: 10px;
}

body .main-container .front section article .content a:hover {
  background: #c148e6;
}

body .main-container section.intro {
  color: #fff;
  margin: 10em auto;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  text-align: center;
}

body .main-container section.intro .circle {
  display: inline-block;
  position: relative;
  height: 3.5em;
  width: 3.5em;
  border-radius: 50%;
  background: #fff;
}

body .main-container section.intro .circle .inner {
  position: absolute;
  height: 1em;
  width: 1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000000;
}

body .main-container section.intro h1 {
  font-size: 1.6em;
}

body .main-container section.intro p {
  display: inline-block;
  line-height: 1.8em;
  font-size: 1.1em;
  padding: 0 2em;
  max-width: 900px;
}

body .main-container section.desc {
  background-color: #aa15b6;
  color: #fff;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

body .main-container section.desc .item {
  padding: 2em;
  max-width: 350px;
}

body .main-container section.company {
  padding: 5em;
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
}

body .main-container section.company h3 {
  text-align: center;
  font-size: 1.6em;
}

body .main-container section.company h3 + p {
  max-width: 900px;
  margin: auto;
  font-size: 1.1em;
  line-height: 1.8em;
}

body .main-container section.company .card-container {
  margin: 3em auto auto auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

body .main-container section.company .card {
  margin: 1.5em;
  background: #aa15b6;
  max-width: 300px;
  padding: 1.5em;
}

body .main-container section.company .card .circles {
  position: relative;
  display: inline-block;
  height: 3em;
  width: 3em;
  background: #fff;
  border-radius: 50%;
}

body .main-container section.company .card .circles .inner {
  position: absolute;
  height: 2.3em;
  width: 2.3em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #aa15b6;
  border-radius: 50%;
}

body .main-container section.company .card .name {
  margin-left: 1em;
  display: inline-block;
}

body .main-container section.company .card .name h3 {
  margin-bottom: 0;
}

body .main-container section.company .card .name p {
  margin-top: 0.5em;
}

body .main-container .parallax {
  height: 35vh;
}

body .main-container .about {
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  padding-top: 3em;
  padding-bottom: 3em;
}

body .main-container .about h3 {
  font-size: 1.6em;
  text-align: center;
}

body .main-container .about p {
  font-size: 1.1em;
  line-height: 1.8em;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

body .main-container .about .line {
  width: 170px;
  height: 10px;
  background-color: #fff;
  margin: 2em auto;
}

body .main-container .about ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

body .main-container .about ul li {
  list-style-type: none;
  display: inline-block;
}

body .main-container .about ul li a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

body .main-container .about ul li a:hover {
  color: #ff00d4;
}

body .main-container .nothing {
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  padding-top: 3em;
  padding-bottom: 3em;
}

body .main-container .nothing h3 {
  font-size: 1.6em;
  text-align: center;
}

body .main-container .nothing img {
  position: relative;
  width: 40px;
  left: 50%;
  transform: translateX(-50%) rotateZ(180deg);
  margin: 1em auto;
}

body .main-container .nothing p {
  font-size: 1.1em;
  line-height: 1.8em;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

body .main-container .nothing .line {
  width: 170px;
  height: 10px;
  background-color: #fff;
  margin: 2em auto;
}

body .main-container .newnum {
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  padding-top: 6em;
  padding-bottom: 6em;
  background: #000000 url(image/design4.png) no-repeat center top;
  background-size: cover;
}

body .main-container .newnum h1 {
  text-align: center;
}

body .main-container .newnum .box {
  margin: auto;
  max-width: 600px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: row wrap;
}

body .main-container .newnum .box .item {
  max-width: 150px;
}

body .main-container #projects {
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  padding-top: 3em;
  padding-bottom: 3em;
}

body .main-container #projects h5 {
  font-size: 1em;
}

body .main-container #projects h4 {
  font-size: 1.3em;
}

@media screen and (max-width: 768px) {
  body .main-container #projects .item .text {
    text-align: center;
  }
  body .main-container #projects .item img {
    margin: auto;
  }
}

body .main-container #projects .item {
  width: 100%;
  display: grid;
  grid-template-areas: 'one two';
  align-items: center;
  justify-content: center;
  margin: 1em auto;
}

body .main-container #projects .item .text {
  grid-area: one;
  padding: 2em;
}

body .main-container #projects .item .text p {
  max-width: 400px;
}

body .main-container #projects .item img {
  grid-area: two;
  width: 80%;
}

body .main-container #projects .item:nth-child(even) .text {
  grid-area: two;
}

body .main-container #projects .item:nth-child(even) img {
  grid-area: one;
}

@media screen and (max-width: 768px) {
  body .main-container #projects .item {
    grid-template-areas: 'one' 'two';
  }
  body .main-container #projects .item:nth-child(even) .text {
    grid-area: one;
  }
  body .main-container #projects .item:nth-child(even) img {
    grid-area: two;
  }
}

body .main-container .unknown {
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  background: #aa15b6;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 3em;
  padding-bottom: 2em;
}

body .main-container .unknown .item {
  max-width: 300px;
  padding-left: 1.5em;
  border-left: 5px solid white;
  margin: auto auto 1em auto;
}

body .main-container .social {
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  padding-top: 3em;
  padding-bottom: 3em;
}

body .main-container .social img {
  position: relative;
  left: 50%;
  transform: translateX(-50%) rotateZ(180deg);
}

body .main-container .social p {
  max-width: 900px;
  margin: 2em auto;
  text-align: center;
}

body .main-container .social h2 {
  text-align: center;
}

body .main-container .social .social-links {
  display: block;
  text-align: center;
  margin-top: 1em;
}

body .main-container .social .social-links ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

body .main-container .social .social-links ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

body .main-container .social .social-links ul li a {
  display: block;
  text-decoration: none;
  color: white;
}

body .main-container .social .social-links ul li a i {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  line-height: 1.5em;
  text-align: center;
  color: #000;
  background-color: white;
  font-size: 1.5em;
  border-radius: 50%;
  transition: color 0.1s, background-color 0.1s;
}

body .main-container .social .social-links ul li a:hover i {
  color: white;
}

body .main-container .social .social-links ul li a.facebook:hover i {
  background-color: #3b5999;
}

body .main-container .social .social-links ul li a.twitter:hover i {
  background-color: #55acee;
}

body .main-container .social .social-links ul li a.instagram:hover i {
  background-color: #e4405f;
}

body .main-container .social .social-links ul li a.pinterest:hover i {
  background-color: #bd081c;
}

body .main-container .social .social-links ul li a.google:hover i {
  background-color: #dd4b39;
}

body .main-container footer {
  color: white;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  padding-top: 3em;
  padding-bottom: 3em;
  background: #aa15b6;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

body .main-container footer .about1 {
  flex: 50%;
  padding: 0 1em;
}

body .main-container footer .about1 p {
  max-width: 500px;
}

body .main-container footer .about2 {
  flex: 50%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}

body .main-container footer .about2 .item h3 {
  margin-bottom: 1em;
}

body .main-container footer .about2 .item h4 {
  margin: 0.3em;
}

@media screen and (max-width: 768px) {
  body .main-container footer .about1, body .main-container footer .about2 {
    flex: 100%;
  }
}
