/* html scroll start*/
html {
  scroll-behavior: smooth;
}
body {
  height: 100vh;
  width: 100vw;
}
/* loading */
.loading {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.loading svg#Layer_1 {
  max-width: 250px;
  width: 100%;
  min-width: 100px;
}

/* afterLoading */
.afterLoading {
  display: none;
  position: relative;
}

/* navbar */
nav {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
}
nav .img {
  width: 60px;
}
nav .img img {
  width: 100%;
}
nav .menu {
  z-index: 100;
  display: flex;
}
nav .menu .item-link {
  text-align: center;
  margin: 0 10px;
}
nav .menu .item-link a {
  color: white;
  text-decoration: none;
  padding: 3px;
  transition: 0.5s;
  font-family: "montserratbold";
}
nav .menu .item-link .borderHome,
nav .menu .item-link .borderProject,
nav .menu .item-link .borderAboutMe,
nav .menu .item-link .borderContactMe {
  background-color: white;
  width: 0px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  transition: 0.3s;
}
nav .menu .item-link .borderHome.true,
nav .menu .item-link .borderProject.true,
nav .menu .item-link .borderAboutMe.true,
nav .menu .item-link .borderContactMe.true {
  cursor: pointer;
  width: 100%;
}
nav .hamburger-menu {
  display: none;
  width: 50px;
  cursor: pointer;
}
nav .hamburger-menu .item-hamburger-menu,
nav .hamburger-menu .item-hamburger-menu-2 {
  background-color: white;
  height: 5px;
  transition: 0.5s;
  border-radius: 5px;
}
nav .hamburger-menu .item-hamburger-menu-2 {
  margin: 8px 0;
  width: 50%;
  margin-left: 50%;
}

nav .hamburger-menu .item-hamburger-menu:nth-child(1).true {
  transform: translate(0px, 13px) rotate(45deg);
}
nav .hamburger-menu .item-hamburger-menu:nth-child(3).true {
  transform: translate(0px, -13px) rotate(-45deg);
}
nav .hamburger-menu .item-hamburger-menu-2.true {
  transform: translateX(25px);
  opacity: 0;
}

/* banner */
.banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 600px;
  background-image: linear-gradient(to right, #1b1464, #2e3192);
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.banner .banner-background1 {
  min-width: 1200px;
  width: 100%;
  top: 0;
}
.banner .banner-title {
  z-index: 1;
  color: white;
  position: absolute;
}
.banner h2 {
  font-family: "bakso_sapiregular";
  font-size: 3rem;
}
.banner h1 {
  font-family: "quicksandregular";
  font-size: 3rem;
  position: relative;
}
.banner h1 span {
  font-family: "balooregular";
}
.banner h1 span.borderRight {
  height: 100%;
  width: 10px;
  margin-left: 10px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
}
.banner h4 {
  font-family: "montserratlight";
  font-size: 1.5rem;
}

/* content1 */
.content1 {
  background-image: linear-gradient(to right, #1b1464, #2e3192);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.content1-body {
  color: white;
  height: 100vh;
  align-items: center;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  padding: 30px 50px;
  box-sizing: border-box;
  min-height: 900px;
  z-index: 1;
  position: relative;
}
.content1 .content1-left,
.content1 .content1-right {
  min-width: 250px;
  position: relative;
}
.content1 .content1-right {
  font-family: "montserratmedium";
  width: 40%;
}
.content1 .content1-right h3 {
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.75s;
}
.content1 .content1-right h3.noHidden {
  opacity: 1;
  transform: translateX(0);
}
.content1 .content1-right h4 {
  margin-top: 30px;
  font-family: "bakso_sapiregular";
  font-size: 1.8rem;
}
.content1 .content1-left {
  width: 45%;
}
.content1 .background2 {
  position: absolute;
  top: 0;
  width: 100vw;
  max-width: 800px;
  right: 0;
}
.content1 .imgSvg1 {
  opacity: 0;
  transition: 1s;
  transform: translateY(30px);
}
.content1 .imgSvg1.noHidden {
  opacity: 1;
  transform: translateY(0);
}

/* projectList */
.projectList {
  background-image: linear-gradient(to right, #1b1464, #2e3192);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
}
.projectList .projectlist-core {
  padding: 50px;
  z-index: 2;
}
.projectList h2 {
  font-family: "montserratblack";
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  opacity: 0;
  transform: translateY(-50px);
  transition: 0.75s;
}
.projectList h2.noHidden {
  transform: translateY(0);
  opacity: 1;
}
.projectList .project {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 50px 100px;
  gap: 30px;
  box-sizing: border-box;
  justify-content: center;
}

/* project-list-card */
.projectList .project .card {
  padding: 20px 10px;
  box-sizing: border-box;
  background-color: white;
  transition: 0.5s;
  cursor: pointer;
  color: black;
  min-height: 300px;
  opacity: 0;
  transform: translateY(-50px);
}
.projectList .project .card.noHidden {
  opacity: 1;
  transform: translateY(30px);
}
.projectList .project .card.noHidden.again {
  opacity: 1;
  transform: translateY(0);
  transform: 0.5s;
}
.projectList .project .card.noHidden.again:hover {
  transform: scale(1.03);
}
.projectList .project .card img {
  width: 100%;
  transition: 0.25s;
  box-sizing: border-box;
}
.projectList .project .card img:hover {
  transform: scale(1.02);
}
.projectList .project .card h4 {
  font-family: "montserratbold";
  font-size: 1.1rem;
  margin-top: 5px;
}
.projectList .project .card h5 {
  font-family: "montserratmedium";
  margin-bottom: 15px;
}
.projectList .project .card p {
  font-family: "montserratlight";
  margin-bottom: 20px;
}
.projectList .project .card a {
  position: relative;
  font-family: "montserratbold";
  text-decoration: none;
  color: white;
  padding: 10px 8px 10px 18px;
  background-image: linear-gradient(
    to right,
    rgb(235, 182, 8),
    rgb(255, 199, 95)
  );
  border-radius: 5px;
  box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.13);
  transition: 0.2s;
  bottom: 0;
}
.projectList .project .card a::after {
  content: "\00bb";
  transition: 0.5s;
  opacity: 0;
  right: 5px;
  margin-left: 10px;
}
.projectList .project .card a:hover {
  padding-right: 25px;
  padding-left: 10px;
}
.projectList .project .card a:hover::after {
  opacity: 1;
}
.background3 {
  position: absolute;
  width: 100vw;
  max-width: 800px;
  bottom: -200px;
}

/* content2 */
.content2 {
  padding: 50px 150px;
  color: white;
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, #1b1464, #2e3192);
  min-height: 600px;
  justify-content: space-evenly;
  gap: 20px;
  z-index: 2;
}
.content2 .content2-right {
  display: flex;
}
.content2 .content2-right img {
  width: 300px;
  height: 300px;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2;
}
.content2 .content2-right img:hover {
  transform: scale(1.05);
}
.content2 .content2-right .box {
  width: 300px;
  height: 300px;
  background-color: white;
  position: absolute;
  z-index: 1;
}
.content2-left {
  font-family: "montserratmedium";
  z-index: 2;
  opacity: 0;
  transition: 0.75s;
  transform: translateY(-50px);
}
.content2-left.noHidden {
  transform: translateY(0);
  opacity: 1;
}
.content2-left h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* background4 - cls-bgSvg4 */
.background4 {
  position: absolute;
  width: 100vw;
  max-width: 900px;
  margin-top: -300px;
  right: 0;
}

/* content3 */
.content3 {
  background-image: linear-gradient(to right, #1b1464, #2e3192);
  padding: 50px 150px;
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
/* content3-title */
.content3 .content3-title {
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
  z-index: 2;
}
.content3 .content3-title h2 {
  font-family: "montserratblack";
  font-size: 2rem;
}
.content3 .content3-title h4 {
  margin-top: 20px;
  font-family: "montserratmedium";
}
.content3 .content3-title h2,
.content3 .content3-title h4 {
  opacity: 0;
  transform: translateY(-50px);
  transition: 0.75s;
}
.content3 .content3-title h2.noHidden,
.content3 .content3-title h4.noHidden {
  opacity: 1;
  transform: translateY(0);
}
/* content3-card */
.content3-card {
  font-family: "montserratmedium";
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 100px;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  z-index: 2;
}
.content3-card .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.75s;
  transform: scale(1.3);
}
.content3-card .card.noHidden {
  opacity: 1;
  transform: scale(1);
}
.content3-card .card h5 {
  margin: 20px 0 5px;
  font-family: "montserratbold";
  font-size: 1.5rem;
}
.content3-card .card p {
  margin-top: 20px;
}
.content3-card .card img {
  width: 100%;
  max-width: 100px;
}

/* content4 */
.content4 {
  position: relative;
  background-image: linear-gradient(to right, #1b1464, #2e3192);
  height: 100vh;
  padding: 0 50px;
  color: white;
  box-sizing: border-box;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.content4 .content4-core {
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 2;
  width: 100%;
}
/* content4-left */
.content4-left-top {
  font-family: "montserratblack";
  font-size: 1.5rem;
}
.content4-left-bottom {
  font-family: "montserratmedium";
  margin-top: 30px;
}
.content4-left-bottom p {
  margin-top: 10px;
}
.content4-left-top,
.content4-left-bottom {
  transition: 0.75s;
  transform: translateX(-50px);
  opacity: 0;
}
.content4-left-top.noHidden,
.content4-left-bottom.noHidden {
  opacity: 1;
  transform: translateX(0);
}
/* content4-right */
.content4-right {
  width: 50%;
  max-width: 600px;
}
/* content4-footer */
.content4-footer {
  margin: 50px 0 10px;
  text-align: center;
  flex-direction: column;
  width: inherit;
  z-index: 2;
}
.content4-footer h4 {
  font-family: "montserratbold";
}
.content4-footer p {
  font-family: "montserratlight";
}

/* background5 - cls-bgSvg5 */
.background5 {
  position: absolute;
  bottom: 0;
  width: 100%;
}
