
/* Start Home */
.home {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 50px;
}

.home .back {
  font-size: 25px;
  color: var(--blue);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.home .back i {
  margin-right: 10px;
  padding-top: 5px;
}

.home h1 {
  font-size: 28px;
  color: var(--purple);
  margin-bottom: 20px;
}

.home .text > p {
  margin-left: 50px;
}

.home h3 {
  margin-top: 20px;
  color: var(--purple);

}

.home h4 {
  margin-top: 20px;
  color: var(--purple);

}

h2{
  color: var(--purple);

}

.home .experience {
  color: var(--pink);
  line-height: 27px;
  font-size: 20px;
}

.home p {
  color: var(--black);
  margin: 10px 0;
}

.home .jop_title {
  margin: 20px 0;
}

.home ul {
  margin-top: 30px;
  color: var(--black);
}

.home li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 24px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.home .btn {
  width: 269px;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}
/* End Home */

@media (max-width: 991px) {
  .home ul {
    text-align: left;
  }
  .home ul li {
    margin-top: 15px;
  }
}
/* End Responsive */




/* Start Background */
.bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  user-select: none;
  background-attachment: fixed;
}

.bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.logo_bg {
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.logo_bg,
.logo_bg .layer {
  position: absolute;
}

.logo_bg .p1 {
  width: 300px;
  left: 10%;
  top: 20%;
  -webkit-animation: p1 2s linear infinite;
  animation: p1 2s linear infinite;
}

@keyframes p1 {
  0% {
    left: 10%;
    top: 20%;
  }

  25% {
    left: 11%;
    top: 21%;
  }

  50% {
    left: 12%;
    top: 22%;
  }

  75% {
    left: 11%;
    top: 21%;
  }

  100% {
    left: 10%;
    top: 20%;
  }
}

.logo_bg .p2 {
  width: 150px;
  right: 15%;
  top: 15%;
  animation: p2 2s linear infinite;
  -webkit-animation: p2 2s linear infinite;
}
@keyframes p2 {
  0% {
    right: 15%;
    top: 15%;
  }

  25% {
    right: 16%;
    top: 16%;
  }

  50% {
    right: 17%;
    top: 17%;
  }

  75% {
    right: 16%;
    top: 16%;
  }

  100% {
    right: 15%;
    top: 15%;
  }
}

.logo_bg .p3 {
  width: 230px;
  right: 36%;
  bottom: 10%;
  animation: p3 2s linear infinite;
  -webkit-animation: p3 2s linear infinite;
}

@keyframes p3 {
  0% {
    right: 36%;
    bottom: 10%;
  }

  25% {
    right: 37%;
    bottom: 11%;
  }

  50% {
    right: 38%;
    bottom: 12%;
  }

  75% {
    right: 37%;
    bottom: 11%;
  }

  100% {
    right: 36%;
    bottom: 10%;
  }
}
/* End Background */