@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif
}

::-webkit-scrollbar {
  width: 7px
}

::-webkit-scrollbar-track {
  background: #f1f1f1
}

::-webkit-scrollbar-thumb {
  background: #7900ff;
  border-radius: 12px;
  transition: all .3s ease
}

nav {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 998;
  transition: all .3s ease;
  font-family: 'Poppins', sans-serif
}

nav.sticky {
  background: #7900ff;
  padding: 13px 0
}

nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto
}

nav .navbar .logo a {
  font-weight: 500;
  font-size: 35px;
  color: #fff;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.7)
}

nav.sticky .navbar .logo a {
  color: #fff
}

nav .navbar .menu {
  display: flex;
  position: relative
}

nav .navbar .menu li {
  list-style: none;
  margin: 0 8px
}

.navbar .menu a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 6px 0;
  transition: .4sra ease
}

nav .menu a:hover::after {
  content: '';
  display: block;
  border-bottom: 3px solid #0c001c;
  width: 50%;
  margin: auto;
  padding-bottom: 5px;
  margin-bottom: -8px
}

nav.sticky .menu a {
  color: #fff
}

nav.sticky .menu a:hover {
  color: #fff
}

.navbar .media-icons a {
  color: #fff;
  font-size: 18px;
  margin: 0 6px
}

nav.sticky .media-icons a {
  color: #FFF
}

nav .menu-btn,
.navbar .menu .cancel-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all .3s ease;
  display: none
}

nav .menu-btn {
  color: #fff
}

nav.sticky .menu-btn {
  color: #FFF
}

.navbar .menu .menu-btn {
  color: #fff
}

section .title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px
}

section .title span {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px
}

section .title span::after {
  display: block;
  content: '';
  border-bottom: 3px solid #3e0082;
  width: 50%;
  margin: auto;
  padding-bottom: 5px
}

.index {
  height: 100vh;
  width: 100%;
  background: url(assets/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif
}

.index .index-content {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.mo-tiv {
  font-size: 50px;
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.7)
}

.button {
  margin-top: 10px;
  text-align: center
}

.button a {
  text-decoration: none;
  padding: 15px;
  font-size: 15px;
  color: #fff;
  opacity: 1;
  border: #fff solid;
  border-radius: 5px;
  transition: .5s
}

.button a:hover {
  opacity: .9
}

.tulisan {
  margin-top: 100px
}

.service {
  height: 100%;
  width: 100%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: #debfff
}

.wrapper {
  display: grid;
  margin: 0 90px auto;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))
}

@media(max-width:700px) {
  .wrapper {
    margin: 0 auto
  }
}

.wrapper .box {
  width: 350px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px
}

.wrapper .box .front-face {
  background: #fff;
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 20px 0 rgba(0, 81, 250, 0.1);
  transition: all .5s ease;
  border-radius: 10px
}

.box .front-face .icon {
  height: 80px
}

.box .front-face .icon i {
  font-size: 65px
}

.box .front-face span,
.box .back-face span {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase
}

.box .front-face .icon i,
.box .front-face span {
  background: linear-gradient(-135deg, #7900FF, #4158d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.box .back-face {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  width: 100%;
  padding: 30px;
  color: #fff;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background: linear-gradient(-135deg, #7900FF, #4158d0);
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0 5px 20px 0 rgba(0, 81, 250, 0.1);
  transition: all .5s ease;
  border-radius: 10px
}

.box .back-face p {
  margin-top: 10px;
  text-align: justify
}

.box:hover .back-face {
  opacity: 1;
  transform: rotateX(0deg)
}

.box:hover .front-face {
  opacity: 0;
  transform: translateY(-110px) rotateX(90deg)
}

.kunjungi {
  text-align: center
}

.kunjungi a {
  justify-content: center;
  outline: 0;
  padding: 5px 25px;
  border-radius: 25px;
  border-color: #3e0082;
  border: 2px solid;
  font-size: 15px;
  text-align: center;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: all .4s ease
}

.Project {
  background: #f0f8ff
}

.Project .text {
  width: 80%;
  text-align: center;
  margin: auto
}

.Project .topic {
  font-style: italic;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 10)
}

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1)
}

.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-sans)
}

@media(min-width:600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr)
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: #f5f5f5;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1)
}

@media(min-width:600px) {
  .card {
    height: 350px
  }
}

.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d)*1.5) var(--e);
  pointer-events: none
}

.card:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.320) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.540) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.790) 100%);
  transform: translatey(-50%);
  transition: transform calc(var(--d)*2) var(--e)
}

.card:nth-child(1):before {
  background-image: url(assets/1.jpg)
}

.card:nth-child(2):before {
  background-image: url(assets/2.png)
}

.card:nth-child(3):before {
  background-image: url(assets/3.jpg)
}

.card:nth-child(4):before {
  background-image: url(assets/4.jpg)
}

.te {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1
}

.te>*+* {
  margin-top: 1rem
}

.title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2
}

.copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35
}

@media(hover:hover) and (min-width:600px) {
  .card:after {
    transform: translatey(0)
  }

  .te {
    transform: translatey(calc(100% - 4.5rem))
  }

  .te>:not(.title) {
    opacity: 0;
    transform: translatey(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e)
  }

  .card:hover,
  .card:focus-within {
    align-items: center
  }

  .card:hover:before,
  .card:focus-within:before {
    transform: translatey(-4%)
  }

  .card:hover:after,
  .card:focus-within:after {
    transform: translatey(-50%)
  }

  .card:hover .te,
  .card:focus-within .te {
    transform: translatey(0)
  }

  .card:hover .te>:not(.title),
  .card:focus-within .te>:not(.title) {
    opacity: 1;
    transform: translatey(0);
    transition-delay: calc(var(--d)/8)
  }

  .card:focus-within:before,
  .card:focus-within:after,
  .card:focus-within .content,
  .card:focus-within .content>:not(.title) {
    transition-duration: 0
  }
}

.About {
  background: #debfff
}

.About .content {
  margin: 0 auto;
  padding: 30px 0
}

.About .text {
  width: 80%;
  text-align: center;
  margin: auto
}

.About .text p {
  margin-bottom: 15px
}

.button2 a {
  text-decoration: none;
  text-align: center;
  margin: auto;
  padding: 15px;
  background: #7900ff;
  opacity: .8;
  border-radius: 10px
}

.button2 a:hover {
  background: #7900ff;
  opacity: 1
}

.contact {
  margin: auto;
  background: #f0f8ff
}

.contact .contact-t {
  width: 60%;
  margin: auto
}

.contact .contact-t .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  justify-content: center;
  text-align: center
}

.contact .contact-t .left p {
  text-align: justify
}

.contact .contact-t .left .icons {
  margin: 10px 0
}

.contact .contact-t .row {
  display: flex;
  height: 65px;
  align-items: center
}

.contact .contact-t .row .info {
  margin-left: 30px
}

.contact .contact-t .row i {
  font-size: 25px;
  color: #dc143c
}

.contact .contact-t .info .head {
  font-weight: 500
}

.contact .contact-t .info .sub-title {
  color: #333
}

.contact .right form .fields {
  justify-content: center;
  display: flex
}

.contact .right form .field,
.contact .right form .fields .field {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
  justify-content: center
}

.contact .right form .textarea {
  height: 80px;
  width: 100%
}

.contact .right form .name {
  margin-right: 10px
}

.contact .right form .field input,
.contact .right form .textarea textarea {
  height: 100%;
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  outline: 0;
  padding: 0 15px;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  transition: all .3s ease
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
  border-color: #b3b3b3
}

.contact .right form .textarea textarea {
  padding-top: 10px;
  resize: none
}

.contact .right form .button-area {
  display: flex;
  align-items: center
}

.right form .button-area button {
  color: #fff;
  display: block;
  width: 160px !important;
  height: 45px;
  margin: auto;
  margin-bottom: 100px;
  outline: 0;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #7900ff;
  border: 2px solid #7900ff
}

.right form .button-area button:hover {
  background: #6c04de
}

@media(max-width:500px) {
  .contact .right form .fields {
    flex-direction: column
  }

  .contact .right form .name,
  .contact .right form .email {
    margin: 0
  }

  .right form .error-box {
    width: 150px
  }

  .contact .contact-t {
    width: 80%;
    margin: auto
  }
}

footer {
  background: #390078;
  width: 100%;
  bottom: 0;
  left: 0
}

footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%
}

footer .o {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px
}

footer .o .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px
}

.o .top .logo-details {
  color: #fff;
  font-size: 30px
}

.o .top .media-icons {
  display: flex
}

.o .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all .4s ease
}

.top .media-icons a:nth-child(1) {
  background: #4267b2
}

.top .media-icons a:nth-child(1):hover {
  color: #4267b2;
  background: #fff
}

.top .media-icons a:nth-child(2) {
  background: #3ab926
}

.top .media-icons a:nth-child(2):hover {
  color: #3ab926;
  background: #fff
}

.top .media-icons a:nth-child(3) {
  background: #e1306c
}

.top .media-icons a:nth-child(3):hover {
  color: #e1306c;
  background: #fff
}

.top .media-icons a:nth-child(4) {
  background: red
}

.top .media-icons a:nth-child(4):hover {
  color: red;
  background: #fff
}

footer .o .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between
}

footer .o .link-boxes .box {
  width: calc(100%/5 - 10px)
}

.o .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative
}

.link-boxes .box .link_name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff
}

.o .link-boxes .box li {
  margin: 6px 0;
  list-style: none
}

.o .link-boxes .box li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: .8;
  transition: all .4s ease
}

.o .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline
}

.o .link-boxes .input-box {
  margin-right: 55px
}

.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: 0;
  border: 2px solid #afafb6;
  background: #140b5c;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px
}

.link-boxes .input-box input::placeholder {
  color: #afafb6;
  font-size: 16px
}

.link-boxes .input-box input[type="button"] {
  background: #fff;
  color: #140b5c;
  border: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: .8;
  cursor: pointer;
  transition: all .4s ease
}

.input-box input[type="button"]:hover {
  opacity: 1
}

.input-box img {
  width: 125%;
  border-radius: 4px
}

footer .bottom-details {
  width: 100%;
  background: #2a0059
}

footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: .8;
  text-decoration: none
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline
}

.bottom-details .bottom_text a {
  margin-right: 10px
}

@media(max-width:900px) {
  footer .o .link-boxes {
    flex-wrap: wrap
  }

  footer .o .link-boxes .input-box {
    width: 40%;
    margin-top: 10px
  }
}

@media(max-width:700px) {
  footer {
    position: relative
  }

  .o .top .logo-details {
    font-size: 26px
  }

  .o .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px
  }

  footer .o .link-boxes .box {
    width: calc(100%/3 - 10px)
  }

  footer .o .link-boxes .input-box {
    width: 60%
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px
  }
}

@media(max-width:520px) {
  footer::before {
    top: 145px
  }

  footer .o .top {
    flex-direction: column
  }

  .o .top .media-icons {
    margin-top: 16px
  }

  footer .o .link-boxes .box {
    width: calc(100%/2 - 10px)
  }

  footer .o .link-boxes .input-box {
    width: 100%
  }

  .input-box img {
    width: 115%
  }
}

.scroll-button a {
  z-index: 2;
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  background: #4070f4;
  padding: 7px 12px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
  display: none
}

@media(max-width:1190px) {
  section .content {
    width: 85%
  }
}

@media(max-width:750px) {
  nav .navbar {
    width: 90%
  }

  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: #0c001c;
    height: 100vh;
    max-width: 400px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    transition: all .5s ease
  }

  .navbar.active .menu {
    left: 0
  }

  nav .navbar .menu a {
    font-size: 23px;
    display: block;
    color: #fff;
    margin: 10px 0
  }

  nav.sticky .menu a:hover {
    color: #fff
  }

  nav .navbar .media-icons {
    display: none
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    display: block
  }
}