.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serfi;
}

/* navbar style custom */
.navbar {
  position: fixed;
  width: 100%;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.transparent {
  background: #050c9c;
  box-shadow: 20px;
}

.navbar-nav .nav-link {
  position: relative;
  color: white;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: white;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* end navbar style custom */

/* hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #050c9c, #020436);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero h2 {
  font-size: 2rem;
  font-weight: bold;
}

.hero .container {
  position: relative;
  z-index: 2;
}
/* end hero */

/* btn animation*/
.btn:link,
.btn:visited {
  text-decoration: none;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  position: absolute;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* btn white */
.btn-white {
  background-color: #fff;
  color: #000;
}

/* btn blue */
.btn-blue {
  background-color: #050c9c;
  color: #fff;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn-white::after {
  background-color: #fff;
}

.btn-blue::after {
  background-color: #050c9c;
}

.btn-primary::after {
  background-color: #3572ef;
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* end btn animation */

/* Service */
.service {
  margin-top: -15vh;
}
/* end service */

/* profil */
.profil {
  padding: 40px;
}
/* end profil */

/* portofolio */
.portofolio {
  padding: 40px;
  background-image: linear-gradient(#e8f0ff 0%, white 52.08%);
}

.lg-item {
  width: 200px;
  padding: 5px;
}
/* end portofolio */

/* contact */
.contact {
  padding: 40px;
  background-image: url("../img/background.png");
}
/* end contact */

/* footer */
.footer {
  padding: 20px;
  background-color: #050c9c;
}
/* end contact */

/* Responsive */
@media (max-width: 667px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero img {
    margin-top: 30px;
  }
}
