/* NAVBAR All Version */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "montserrat", sans-serif;
}
li {
  list-style: none;
}
header {
  position: relative;
  padding: 0 2rem;
}
.links {
  text-transform: uppercase;
  margin-top: 15px;
}
.links a:hover {
  color: #211e2b !important;
  text-shadow: none;
}
.links a:hover::after {
  content: "";
  display: block;
  border-bottom: 1px solid #211e2b;
  width: 50%;
  margin: auto;
  padding-bottom: 5px;
  margin-bottom: -8px;
}
.navbar {
  position: fixed;
  width: 100%;
  z-index: 9999;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.navbar .logo a {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar .links {
  display: flex;
  gap: 2rem;
}
.navbar .toggle_btn {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}
.navbar a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}
.action_btn {
  background-color: #41375c;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2s ease;
}
.action_btn:hover {
  scale: 1.05;
  color: #fff !important;
}
.action_btn:active {
  scale: 0.95;
}
/* DROPDOWN */
.dropdown_menu {
  z-index: 999;
  position: fixed;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  background-color: rgba(168, 134, 255, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu.open {
  height: 300px;
}
.dropdown_menu a {
  text-decoration: none;
  color: #211e2b;
  font-size: 1rem;
}
.dropdown_menu a:hover {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown_menu .action_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #a886ff;
  max-width: 200px;
  margin-top: 210px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  border-radius: 5px;
  padding: 0;
}
.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.dropdown-content a:hover {
  color: #fff;
  background-color: #211e2b;
  padding: 5px;
  border-radius: 5px;
}
.dropdown:hover .dropdown-content {
  display: block;
  padding: 0;
}

/* Jumbotron All Version */
.jumbotron {
  background-image: url(img/jumbotron-bg.png);
  background-size: cover;
  height: 480px;
  text-align: center;
  position: relative;
}
.jumbotron .container {
  position: relative;
  z-index: 1;
}
.jumbotron::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.jumbotron .display-4 {
  color: #fff;
  padding-top: 180px;
  font-weight: 200;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 24px;
  margin-bottom: 20px;
}
.jumbotron .display-4 span {
  font-weight: 600;
}

/* INFO PANEL All Version */
.info-panel {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  margin-top: -75px;
  background-color: #fff;
  z-index: 99;
  padding: 30px;
}
.info-panel img {
  margin: 10px;
  width: 50px;
}
.info-panel h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 15px;
}
.info-panel p {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: -5px;
  font-weight: 200;
}

/* About */
.about {
  margin-top: 120px;
  text-align: center;
  margin-bottom: 120px;
}
.about img {
  width: 200px;
  height: 200px;
}
.about h3 {
  font-size: 26px;
  font-weight: 200;
  text-transform: uppercase;
}
.about h3 span {
  font-weight: 600;
  color: #211e2b;
}
.about p {
  font-size: 16px;
  color: #7a7a7a;
  font-weight: 200;
  margin: 10px 20px;
}

/* Clients */
.clients {
  padding: 30px 0;
  display: block;
}
.logos-slide {
  text-align: center;
}
.logos-slide img {
  background-color: #fff;
  height: 150px;
  margin-right: 30px;
  cursor: pointer;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.logos-slide img:hover {
  filter: grayscale(0%);
}

/* Service */
#service {
  padding-top: 120px;
  padding-bottom: 120px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
}
.service-list div {
  color: #fff;
  background: #a886ff;
  padding: 40px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.service-list div i {
  color: #fff;
  font-size: 55px;
  margin-bottom: 30px;
}
.service-list div h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.service-list div a {
  text-decoration: none;
  color: #ffff;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
}
.service-list div p {
  font-size: 14px;
  text-align: justify;
}
.service-list .kartu:hover {
  background-color: #fff;
  transform: translateY(-10px);
  color: #a886ff;
  box-shadow: none;
}
.service-list .kartu:hover i {
  color: #a886ff;
}
.service-list .kartu .btn {
  min-width: 150px;
  height: 45px;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  border-color: #a886ff;
  background-color: #a886ff;
}
.service-list .kartu .btn:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #a886ff;
  background-color: #fff;
}
.service-list .kartu .btn:focus {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #a886ff;
  background-color: #fff;
}
.btn-service {
  margin-top: 40px;
  justify-content: center;
  text-align: center;
}
.btn-service i {
  background-color: #fff;
  color: #211e2b;
  padding: 0px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 50px;
  transition: transform 0.3s;
}
.btn-service i:hover {
  transform: translateY(5px);
  color: #a886ff;
}
/* Project */
.project {
  background-image: url("./img/project-bg.png");
  margin-bottom: -50px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
}
.project h1 {
  color: #fff;
  font-weight: 200;
  font-size: 42px;
  padding-top: 150px;
  padding-left: 20px;
  padding-right: 20px;
}

/* TEMPLATE SEGITIGA DROPDOWN------------- */
.project i {
  background-color: #a886ff;
  color: #fff;
  font-size: 40px;
  border-radius: 50px;
  margin-top: 5px;
  transition: transform 0.3s;
  margin-bottom: 150px;
}
.project i:hover {
  background-color: #fff;
  color: #a886ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transform: translateX(5px);
}
/* TEMPLATE SEGITIGA DROPDOWN------------- */

/* Product */
#product {
  background-color: #a886ff;
  padding-top: 50px;
  padding-bottom: 150px;
}
#product h2 {
  color: #fff;
  font-weight: 600;
  font-size: 2.5rem;
  font-family: montserrat, sans-serif;
  margin-bottom: 20px;
}
#product .product-box {
  position: relative;
  background-color: transparent;
  border-radius: 10px;
  height: 450px;
  transform-style: preserve-3d;
}
#product .product-box::before {
  content: "MY";
  position: absolute;
  color: #fff;
  font-size: 6em;
  font-weight: bold;
  font-style: italic;
  top: 30px;
  left: 50%;
  transform: translate(-55%, 0);
  opacity: 0;
  transition: 0.5s;
  border-radius: 10px;
}
#product .product-box:hover::before {
  opacity: 0.2;
  border-radius: 10px;
}
#product .product-box::after {
  content: "CHARACTER";
  position: absolute;
  color: #fff;
  font-size: 3.4em;
  font-weight: bold;
  font-style: italic;
  left: 50%;
  transform: translate(-50%, 0);
  top: 350px;
  opacity: 0;
  transition: 0.5s;
  border-radius: 10px;
}
#product .product-box:hover::after {
  opacity: 0.3;
  border-radius: 10px;
}
#product .product-name {
  position: absolute;
  top: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 1.8em;
  opacity: 0;
  transform: translate3d(0, 0, 50px);
  transition: 0.5s;
}
#product .product-box:hover .product-name {
  top: 20px;
  opacity: 1;
}
#product .product-detail-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 100px);
  opacity: 0;
  transition: 0.5s;
}
#product .product-box:hover .product-detail-button {
  opacity: 1;
  bottom: 20px;
}
#product .product-img-girls {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate3d(-50%, -50%, 80px);
  max-width: 190px;
  transition: 0.5s;
}
#product .product-box:hover .product-img-girls {
  transform: translate3d(-50%, -50%, 100px) scale(1.1);
}
#product .product-img-astronaut {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 80px);
  max-width: 300px;
  transition: 0.5s;
}
#product .product-box:hover .product-img-astronaut {
  transform: translate3d(-50%, -50%, 100px) scale(1.2);
}
/* BTN-Project */
.btn-product {
  color: #fff;
  background-color: #211e2b;
  border-color: #211e2b;
}
.btn-product:hover {
  color: #000;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(33, 30, 43, 0.9);
}
.btn-product:focus {
  color: #000;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(33, 30, 43, 0.9);
}

/* TESTI All Version */
.site {
  margin-top: -300px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-try {
  max-width: 1100px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.testi {
  max-width: 900px;
  margin: 0 auto;
}
.testi .thumbnail {
  width: 150px;
  height: 150px;
  position: relative;
  flex-shrink: 0;
  margin-right: 80px;
}
.testi .thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(2);
  transition: transform 0.5s;
}
.testi .swiper-slide-active .thumbnail img {
  transform: scale(1);
}
.testi .thumbnail::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 30px);
  height: calc(100% + 10px);
  background-color: #a886ff;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  transition: border-radius 0.5s 0.3s;
}
.testi .swiper-slide-active .thumbnail::before {
  border-radius: 33% 67% 50% 50% / 50% 14% 86% 50%;
}
.testi .aside {
  position: relative;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  padding-right: 80px;
}
.testi .aside > p {
  position: relative;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(10%);
  transition: transform 1s, opacity 1s;
}
.testi .swiper-slide-active .aside > p {
  transform: translateX(0);
  opacity: 1;
}
.testi .aside > p::before,
.testi .aside > p::after {
  font-family: serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  color: #7a7a7a;
  height: 40px;
  z-index: -1;
}
.testi .aside > p::before {
  content: open-quote;
  top: -30px;
  left: 0;
}
.testi .aside > p::after {
  content: close-quote;
  bottom: -38px;
  right: 0;
}
.testi .aside .name {
  position: relative;
  width: fit-content;
  line-height: 1;
  opacity: 0;
  transform: translateX(30px);
  transition: transform 1s 0.2s, opacity 1s 0.3s;
}
.testi .swiper-slide-active .aside .name {
  transform: translateX(0);
  opacity: 1;
}
.testi .aside .name h4 {
  font-size: 22px;
  font-weight: 800;
  color: #41375c;
  opacity: 0.8;
}
.testi .aside .name p {
  font-size: 12px;
  text-align: right;
}
.testi .head {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
}
.testi .head h3 {
  font-size: 34px;
  font-weight: 800;
  color: #211e2b;
}
.testi .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  text-align: justify;
}
/* TESTI SLIDER */
.testi :is(.swiper-button-next, .swiper-button-prev) {
  background-color: #7a7a7a;
  top: 35%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background-color 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.testi :is(.swiper-button-next, .swiper-button-prev):hover {
  background-color: #a886ff;
}
.testi :is(.swiper-button-next, .swiper-button-prev)::after {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.testi .swiper-pagination {
  position: relative;
}
.testi .swiper-pagination span {
  background-color: #7a7a7a;
  transition: width 0.3s;
  opacity: 1;
}
.testi .swiper-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 4px;
  background-color: #a886ff;
}
.swiper-wrapper {
  list-style: none;
}

/* BUTTON All Version */
.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
}
.tombol-frst {
  text-transform: uppercase;
  border-radius: 20px;
  background-color: #41375c;
  border-color: #41375c;
  color: #fff;
}
.tombol-frst:hover {
  background-color: #211e2b;
  border-color: #211e2b;
  color: #fff;
}
.tombol-scnd {
  text-transform: uppercase;
  border-radius: 10px;
  background-color: #211e2b;
  border-color: #211e2b;
  color: #fff;
  padding: 5px 15px;
  font-size: 15px;
}
.tombol-scnd:hover {
  background-color: #a886ff;
  border-color: #a886ff;
  color: #fff;
}
.tombol-thrd {
  border-radius: 20px;
  background-color: #a886ff;
  border-color: #a886ff;
  color: #fff;
  padding: 0px 15px;
  font-size: 15px;
}
.tombol-thrd:hover {
  background-color: #211e2b;
  border-color: #211e2b;
  color: #fff;
}

/* CONTACT US */
.contactUs {
  position: relative;
  width: 100%;
  padding: 40px 100px;
}
.contactUs .title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}
.contactUs .title h2 {
  color: #fff;
  font-weight: 500;
}
.form {
  grid-area: form;
}
.info {
  grid-area: info;
}
.map {
  grid-area: map;
}

.contact {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}
.box {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 4fr;
  grid-template-areas: "form info" "form map";
  grid-gap: 20px;
  margin-top: 20px;
}
.contact h3 {
  color: #211e2b;
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

/* FORM */
.formBox {
  position: relative;
  width: 100%;
}
.formBox .row50 {
  display: flex;
  gap: 20px;
}
.inputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}
.formBox .row100 .inputBox {
  width: 100%;
}
.inputBox span {
  color: #41375c;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}
.inputBox input {
  border-radius: 5px;
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #7a7a7a;
}
.inputBox textarea {
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border-radius: 5px;
  border: 1px solid #7a7a7a;
  resize: none;
  min-height: 220px;
  margin-bottom: 10px;
}
.inputBox input[type="submit"] {
  background: #a886ff;
  color: #fff;
  border: none;
  font-size: 1.1em;
  max-width: 120px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 5px;
  transition: scale 0.2s ease;
}
.inputBox input[type="submit"]:hover {
  background: #fff;
  color: #a886ff;
  border: 1px solid #a886ff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  scale: 1.05;
}
.inputBox::placeholder {
  color: #999;
}

/* Info */
.info {
  background: #a886ff;
}
.info h3 {
  color: #fff;
  font-weight: 700;
}
.info .infoBox div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.info .infoBox div span {
  min-width: 40px;
  height: 40px;
  color: #fff;
  background: #41375c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 50%;
  margin-right: 15px;
}
.info .infoBox div p {
  color: #fff;
  font-size: 1.1em;
}
.info .infoBox div a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
}
.sci {
  margin-top: 20px;
  margin-bottom: -10px;
  display: flex;
}
.sci .instagram {
  margin-left: -30px;
}
.sci li {
  list-style: none;
  margin-right: 20px;
}
.sci li a {
  color: #fff;
  font-size: 2em;
  color: #ccc;
}
.sci li a:hover {
  color: #211e2b;
}
.map {
  padding: 0;
}
.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Footer */
footer {
  position: relative;
  bottom: 0;
}
.footer {
  background-color: #fff;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 60px 50px;
  margin-top: 80px;
}
.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
  display: inline-block;
  vertical-align: top;
}
.footer .footer-left {
  width: 30%;
}
.footer h3 {
  color: #211e2b;
  margin: 0;
  font-weight: 700;
  padding-bottom: 20px;
}
.footer .footer-left img {
  width: 25%;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 10px;
}
.footer .footer-left .credit-cards {
  width: 100%;
}
.footer .footer-copyright {
  color: #211e2b;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  padding-top: 35px;
  text-align: center;
  margin-bottom: -30px;
}
.footer .footer-center {
  width: 35%;
}
.footer .footer-center i {
  color: #a5a5a5;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 10px;
  vertical-align: middle;
}
.footer .footer-center i.fa-envelope {
  font-size: 25px;
  line-height: 40px;
}
.footer .footer-center p {
  display: inline-block;
  color: #211e2b;
  vertical-align: middle;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.footer .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
.footer .footer-center p a {
  color: #211e2b;
  text-decoration: none;
}
.footer .footer-right {
  width: 30%;
}
.footer .footer-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}
.footer .footer-about span {
  display: block;
  color: #211e2b;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer .footer-media {
  margin-top: 20px;
}
.footer .footer-media a {
  display: inline-block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  color: #a5a5a5;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
}
.footer .footer-media a:hover {
  color: #a886ff;
}
