*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
body {
  font-family: "Kulim Park", sans-serif;
  min-height: 100vh;
  font-size: 18px;
  background: linear-gradient(to bottom, #443451, #362541);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header {
  background-color: #6a3e77;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2.5vw;
}
.header .logo {
  margin: 1.5vw 0;
  display: flex;
  align-items: center;
  width: auto;
  gap: 2vw;
}
.header .logo img {
  max-width: 10vw;
  border-radius: 2vw;
  border: 0.5vw solid #f053bb;
  box-shadow: 0 0.25vw 0.7vw rgba(0, 0, 0, 0.35);
}
.header .logo .logo-text {
  display: flex;
  flex-direction: column;
  text-shadow: 0 0.3vw 0.4vw rgba(0, 0, 0, 0.5);
}
.header .logo .logo-text .title {
  font-size: 4vw;
  font-weight: 700;
  letter-spacing: 1.7vw;
  text-transform: uppercase;
  color: #d9d9d9;
}
.header .logo .logo-text .subtitle {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1vw;
  font-size: 1.9vw;
  font-weight: 500;
  color: #f053bb;
  text-transform: capitalize;
}
.header .logo .logo-text .subtitle i {
  width: 2vw;
  height: 2vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 6vw;
  margin: 2vw 0;
}
.navbar a {
  letter-spacing: 0.4vw;
  font-family: "Lexend Giga", sans-serif;
  font-weight: 400;
  font-size: 1vw;
  color: #d9d9d9;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 0.3vw 0.4vw rgba(0, 0, 0, 0.5);
}
.navbar a:hover {
  color: #f053bb;
  transition: ease-in-out 0.3s;
}
.navbar .active {
  color: #f053bb;
}

.main {
  background-color: #6a3e77;
  width: 100%;
  padding: 2vw 4vw;
  height: auto;
  display: flex;
  justify-content: center;
}
.main .servicelist {
  display: grid;
  grid-template-columns: auto auto;
  font-family: "Lexend Giga", sans-serif;
  gap: 1.5vw;
}
.main .servicelist .service:first-child {
  grid-column: span 2;
  width: 61.2vw;
}
.main .servicelist .service {
  background: linear-gradient(to bottom, #443451, #362541);
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  padding: 2vw 1.5vw;
  border-radius: 2vw;
  box-shadow: 0 0.25vw 0.7vw rgba(0, 0, 0, 0.35);
  width: 30vw;
}
.main .servicelist .service h2 {
  background-color: #865089;
  font-size: 0.8vw;
  font-weight: 600;
  color: #d9d9d9;
  border-radius: 2vw;
  padding: 0.5vw 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  text-align: center;
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.2);
}
.main .servicelist .service p {
  font-family: "Kulim Park", sans-serif;
  font-size: 1vw;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 1.6;
  color: #d9d9d9;
  text-align: justify;
  margin-top: 0.5vw;
  padding: 0 0.5vw;
}
.main .servicelist .service p span {
  font-weight: 400;
  color: #f053bb;
}
.main .worklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 1vw;
  font-family: "Lexend Giga", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
}
.main .worklist .work {
  background: linear-gradient(to bottom, #443451, #362541);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2vw;
  padding: 1.5vw;
  box-shadow: 0 0.25vw 0.7vw rgba(0, 0, 0, 0.35);
}
.main .worklist .work h2 {
  background-color: #865089;
  font-size: 0.8vw;
  font-weight: 600;
  color: #d9d9d9;
  border-radius: 2vw;
  padding: 0.5vw 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  text-align: center;
  margin-bottom: 1vw;
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.2);
}
.main .worklist .work iframe {
  height: 100%;
  width: 100%;
  max-width: 700px;
  border: none;
  border-radius: 1vw;
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.2);
}
.main .worklist .gbig {
  grid-row: 1/3;
}
.main .worklist .gsmall .library {
  display: flex;
  gap: 1vw;
}
.main .worklist .gsmall .library iframe {
  height: 200px;
  width: 200px;
}
.main .contact {
  display: flex;
  flex-direction: column;
  font-family: "Lexend Giga", sans-serif;
  gap: 1.5vw;
}
.main .contact .item {
  background: linear-gradient(to bottom, #443451, #362541);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6vw;
  padding: 2vw 1.5vw;
  border-radius: 2vw;
  box-shadow: 0 0.25vw 0.7vw rgba(0, 0, 0, 0.35);
  width: -moz-fit-content;
  width: fit-content;
}
.main .contact .item h2 {
  background-color: #865089;
  font-size: 0.8vw;
  font-weight: 600;
  color: #d9d9d9;
  border-radius: 2vw;
  padding: 0.5vw 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  text-align: center;
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.2);
}
.main .contact .item p {
  font-family: "Kulim Park", sans-serif;
  font-size: 1vw;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 1.6;
  color: #d9d9d9;
  text-align: justify;
  margin-top: 0.5vw;
  padding: 0 0.5vw;
}
.main .contact .item a {
  font-size: 1.5vw;
  text-decoration: none;
  color: #f053bb;
  transition: ease-in-out 0.2s;
}
.main .contact .item a:hover {
  color: #d9d9d9;
}
.main .contact .item .socials {
  display: flex;
  gap: 1vw;
}
.main .contact .item .socials a {
  display: flex;
  align-items: center;
  font-size: 0.9vw;
  gap: 0.3vw;
}

.unselec {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.animate-on-load {
  animation: fadeIn 1.4s ease-in-out;
}

@media screen and (max-width: 800px) {
  .header {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .header .logo {
    margin: 20px 0;
    flex-direction: column;
  }
  .header .logo img {
    width: 150px;
    max-width: 150px;
  }
  .header .logo .logo-text {
    align-items: center;
  }
  .header .logo .logo-text .title {
    font-size: 2rem;
    letter-spacing: 10px;
    margin-right: -10px;
  }
  .header .logo .logo-text .subtitle {
    font-size: 1.2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .header .logo .logo-text .subtitle i {
    display: none;
  }
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 15px 0;
  }
  .navbar a {
    font-size: 0.8rem;
  }
  .navbar .active {
    font-weight: 700;
  }
  .main {
    padding: 20px 0;
  }
  .main .servicelist {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding: 0 50px;
  }
  .main .servicelist .service:first-child {
    width: 100%;
  }
  .main .servicelist .service {
    width: 80vw;
  }
  .main .servicelist .service h2 {
    font-size: 0.7rem;
    padding: 5px 0;
    margin-bottom: 2px;
  }
  .main .servicelist .service p {
    font-size: 0.8rem;
    padding: 0 10px;
  }
  .main .worklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .main .worklist .work {
    width: 80vw;
  }
  .main .worklist .work h2 {
    font-size: 0.7rem;
    padding: 5px 0;
    margin-bottom: 10px;
  }
  .main .worklist .work iframe {
    height: 300px;
  }
  .main .worklist .gsmall .library {
    flex-direction: column;
    gap: 15px;
  }
  .main .worklist .gsmall .library iframe {
    height: 300px;
    width: 100%;
  }
  .main .worklist .gsmall .library iframe:last-child {
    margin-bottom: 10px;
  }
  .main .worklist .gsmall:last-child .library iframe {
    height: 150px;
    width: 100%;
  }
  .main .contact .item {
    width: 80vw;
  }
  .main .contact .item h2 {
    font-size: 0.7rem;
    padding: 5px 0;
    margin-bottom: 10px;
  }
  .main .contact .item p {
    font-size: 0.8rem;
  }
  .main .contact .item a {
    font-size: 1.5rem;
  }
  .main .contact .item .socials {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .main .contact .item .socials a {
    margin: 5px 0;
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 2000px) {
  .main .worklist .gbig iframe {
    zoom: 1.5;
  }
  .main .worklist .gsmall .library iframe {
    height: 320px;
    width: 320px;
  }
}
@media screen and (min-width: 3840px) {
  .main .worklist .gbig iframe {
    zoom: 2;
  }
  .main .worklist .gsmall .library iframe {
    height: 450px;
    width: 450px;
  }
}/*# sourceMappingURL=style.css.map */