html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #ffffff;
  color: #333333;
}

.icon-1, .icon-3 {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 32px;
  height: 3px;
  background-color: black;
  -webkit-transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.icon-2 {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 16px;
  height: 3px;
  background-color: black;
  -webkit-transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.icon-1 {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.icon-3 {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.hamburger-icon {
  position: absolute;
  width: 60px;
  left: 3%;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
}

.hamburger-icon:hover {
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.icon-1.a {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.icon-3.b {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.icon-2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

@-webkit-keyframes slideIn {
  0% {
    width: 0%;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    opacity: 0;
  }
  100% {
    width: 50%;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    width: 0%;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    opacity: 0;
  }
  100% {
    width: 50%;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

nav {
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  z-index: 10;
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
  transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

nav ul {
  margin: 0;
  position: absolute;
  top: 5%;
  left: 10%;
}

nav ul .title {
  margin-bottom: 100px;
  font-weight: 600;
  font-size: 35px;
  line-height: 35px;
}

nav ul li {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
  color: #333333;
}

nav ul li a {
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
  color: #333333 !important;
}

nav ul li a:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateY(-0.33em);
          transform: translateY(-0.33em);
  color: #666666 !important;
}

nav.show {
  opacity: 0;
  -webkit-animation: slideIn 0.6s cubic-bezier(0.62, 0.04, 0.3, 1.56);
          animation: slideIn 0.6s cubic-bezier(0.62, 0.04, 0.3, 1.56);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  width: 100% !important;
  height: 700% !important;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.dark-blue {
  position: absolute;
  top: 0;
  left: 0;
  background: #333333;
  height: 100%;
  width: 0%;
  -webkit-transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
  transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
  z-index: 5;
  opacity: 1;
}

.dark-blue.slide {
  width: 100%;
  opacity: 1;
}

@-webkit-keyframes shotup {
  0% {
    -webkit-transform: translateY(300%);
            transform: translateY(300%);
    opacity: 0;
  }
  90% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes shotup {
  0% {
    -webkit-transform: translateY(300%);
            transform: translateY(300%);
    opacity: 0;
  }
  90% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.content h1 {
  font-size: 70px;
  -webkit-animation: shotup 600ms ease-in-out;
          animation: shotup 600ms ease-in-out;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.title {
  font-weight: 600;
  font-size: 25px;
  line-height: 29px;
  color: #333333;
}

.title-skill {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #333333;
}

.description-skill {
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  color: #333333;
}

.description {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #333333;
}

.card {
  cursor: pointer;
  background: #FFFFFF;
  border: 3px solid #000000;
  border-radius: 25px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 12px 24px 24px;
          box-shadow: rgba(0, 0, 0, 0.15) 12px 24px 24px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.card:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 18px 36px 36px;
          box-shadow: rgba(0, 0, 0, 0.15) 18px 36px 36px;
}

.btn-download {
  padding: 5px 10px;
  background-color: #ffffff;
  border: 2px solid #333333;
  border-radius: 25px;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-download:hover {
  -webkit-transition: cubic-bezier(0.68, -0.55, 0.265, 2.55) 0.4s;
  transition: cubic-bezier(0.68, -0.55, 0.265, 2.55) 0.4s;
  -webkit-transform: translateY(-0.55em);
          transform: translateY(-0.55em);
  -webkit-box-shadow: 0px 4px 0 0 black;
          box-shadow: 0px 4px 0 0 black;
}

.btn-default {
  padding: 10px;
  gap: 10px;
  background: #FFFFFF;
  border: 2px solid #333333;
  border-radius: 25px;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-default:hover {
  -webkit-transition: cubic-bezier(0.68, -0.55, 0.265, 2.55) 0.4s;
  transition: cubic-bezier(0.68, -0.55, 0.265, 2.55) 0.4s;
  -webkit-transform: translateY(-0.55em);
          transform: translateY(-0.55em);
  -webkit-box-shadow: 0px 4px 0 0 black;
          box-shadow: 0px 4px 0 0 black;
}

.section-navigasi .navbar .container .d-lg-block .navbar-brand {
  font-weight: 600;
  font-size: 25px;
  line-height: 29px;
  color: #333333;
}

.section-navigasi .navbar .container .d-lg-block .navbar-brand:hover {
  color: #666666;
}

.section-navigasi .navbar .container .d-lg-block .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  color: #333333;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.section-navigasi .navbar .container .d-lg-block .navbar-nav .nav-item .nav-link:hover {
  color: #666666;
  -webkit-transform: translateY(-0.33em);
          transform: translateY(-0.33em);
}

.section-navigasi .navbar .container .offcanvas .offcanvas-body .title {
  margin-top: 50px;
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
  color: #333333;
}

.section-navigasi .navbar .container .offcanvas .offcanvas-body .navbar-nav {
  margin-top: 200px;
}

.section-navigasi .navbar .container .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
  color: #333333;
}

.section-hero .container .row .col-lg-5 .figure img {
  -webkit-animation-name: bounce-1;
          animation-name: bounce-1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin: 0 auto 0 auto;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes bounce-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bounce-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.section-hero .container .row .col-lg-7 .button .btn-download img {
  width: 30px;
}

.section-portfolio .container .row .col-lg-4 {
  margin-left: 4rem;
}

.section-portfolio .container .row .col-lg-4 .card img {
  background-size: cover;
  border-radius: 20px;
}

.section-experience .container .row .col-lg-4 {
  margin-left: 4rem;
}

.section-experience .container .row .col-lg-4 .card img {
  background-size: cover;
  border-radius: 20px;
}

.section-experience .container .row .col-lg-7 {
  margin-left: auto;
}

.section-skill .container .row .col-lg-4 .d-flex .icon img {
  width: 38.85px;
}

.section-connect .container .row .d-flex .icon-connect {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.section-connect .container .row .d-flex .icon-connect img {
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 30px;
}

.section-connect .container .row .d-flex .icon-connect img:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

@media (max-width: 575.98px) {
  .section-hero .container .row .col-lg-7 .description {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #333333;
  }
  .section-portfolio .container .row .col-lg-7 .description {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #333333;
  }
  .section-portfolio .container .d-block .row .col-lg-7 {
    padding: 10px;
  }
  .section-portfolio .container .d-block .row .col-lg-4 {
    margin-left: 0;
  }
  .section-portfolio .container .d-block .row .col-lg-4 .card {
    height: 500px;
    margin-bottom: 50px;
  }
  .section-portfolio .container .d-block .row .col-lg-4 .card img {
    background-size: cover;
    height: 494px;
  }
  .section-experience .container .row .col-lg-4 {
    margin-left: 0;
  }
  .section-experience .container .row .col-lg-4 .card {
    margin-bottom: 50px;
    height: 500px;
  }
  .section-experience .container .row .col-lg-4 .card img {
    height: 494px;
  }
  .section-experience .container .row .col-lg-7 {
    padding: 10px;
  }
  .section-experience .container .row .col-lg-7 .description {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #333333;
  }
  .section-skill .container {
    padding: 30px;
  }
}
/*# sourceMappingURL=main.css.map */