/*
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


html {
  font-family: "Inter", sans-serif;
  background-color: #121212;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background-color: #121212;
  font-weight: 400;
  font-style: normal;
  color: #f2f2f2;
  font-size: 14px;
}

/*scroll bar styles*/

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background-color: #5e56f5;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #443fb1;
}

a,
a:hover,
a:focus,
i,
input,
button,
input:focus,
.transition {
  text-decoration: none;
  outline: none;
  -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
      transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
      transition-duration: 0.4s;
  -webkit-transition-property: all;
    -o-transition-property: all;
      transition-property: all;
  -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
      transition-timing-function: ease;
  -webkit-box-shadow: none;
      box-shadow: none;
}

a {
  color: #f2f2f2;
}

iframe {
  border: 0;
  outline: none;
}

::-moz-selection {
  background: #f2f2f2;
  text-shadow: none;
  color: #121212;
}

::selection {
  background: #f2f2f2;
  text-shadow: none;
  color: #121212;
}

img {
  max-width: 100%;
  border: none;
  outline: none;
  height: auto;
}

input,
textarea {
  border-radius: 0;
  resize: none;
}

ul {
  padding: 0;
  margin: 0;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent;
  background-image: none;
  color: #f2f2f2;
}

/* 1.2 Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

figure {
  margin: 0;
}

svg,
img {
  max-width: 100%;
  height: auto;
}

/*                          NAVBAR/ HEADER                               */
.pf-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background-color: #121212;
  padding: 70px 0;
  -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
      transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
      transition-duration: 0.4s;
  -webkit-transition-property: all;
    -o-transition-property: all;
      transition-property: all;
  -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
      transition-timing-function: ease;
}

.pf-header.pf-fixed-header {
  padding: 20px 0;
  -webkit-box-shadow: 0px 0px 20px #5e56f571;
          box-shadow: 0px 0px 20px #5e56f571;
}

.pf-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pf-logo {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 3px;
  color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pf-logo span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f2f2f2;
  border-radius: 4px;
  color: #121212;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-right: 12px;
}

.pf-logo:hover {
  color: #f2f2f2;
}

.pf-social {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pf-social li {
  margin-left: 12px;
}

.pf-social li:first-child {
  margin-left: 0;
}

.pf-social li a {
  border-radius: 100%;
  color: #121212;
  width: 24px;
  height: 24px;
  background-color: #5e56f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
}

.pf-social li a:hover {
  background-color: #f2f2f2;
  color: #121212;
}

.profile-image {
  border-radius: 82% 70% 34% 83% / 53% 82% 46% 100%;
  -webkit-animation: animateImg 8s linear infinite;
          animation: animateImg 8s linear infinite;
  background-color: #5e56f5;
}
/*                        ANIMATE BORDER BLOB                  */
@-webkit-keyframes animateImg {
  0% {
    border-radius: 82% 70% 34% 83% / 53% 82% 46% 100%;
  }

  33% {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  }

  66% {
    border-radius: 51% 83% 63% 89% / 100% 72% 59% 76%;
  }

  100% {
    border-radius: 82% 70% 34% 83% / 53% 82% 46% 100%;
  }

}

@keyframes animateImg {
  0% {
    border-radius: 82% 70% 34% 83% / 53% 82% 46% 100%;
  }

  33% {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  }

  66% {
    border-radius: 51% 83% 63% 89% / 100% 72% 59% 76%;
  }

  100% {
    border-radius: 82% 70% 34% 83% / 53% 82% 46% 100%;
  }

}

.pf-banner section {
  padding-left: 70px;
  padding-right: 100px;
}

.pf-banner section h1 span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 30px;
}

.pf-banner section h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #f2f2f2;
}

.pf-numbervalulist {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  margin-top: 60px;
}

.pf-numbervalulist li {
  margin-right: 60px;
}

.pf-numbervalulist li:last-child {
  margin-right: 0;
}

.pf-numbervalulist strong {
  display: block;
  color: #5e56f5;
  font-size: 36px;
  font-weight: 800;
}

.pf-numbervalulist span {
  font-size: 16px;
  letter-spacing: 1px;
}

.pf-about-section {
  padding-top: 60px;
  padding-bottom: 120px;
}

.pf-heading {
  display: inline-block;
  font-weight: 700;
  color: #f2f2f2;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  border-bottom: 3px solid #5e56f5;
  padding-bottom: 7px;
  margin-bottom: 23px;
}

.pf-about-section p {
  color: #f2f2f2;
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
  margin-bottom: 60px;
}

.pf-button {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #121212;
  padding: 17px 30px;
  border: 2px solid #121212;
  border-radius: 60px;
}

.pf-button:hover {
  background-color: #121212;
  color: #5e56f5;
}

.pf-button2 {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #5e56f5;
  padding: 17px 30px;
  border: 2px solid #5e56f5;
  border-radius: 60px;
}

.pf-button2:hover {
  background-color: #5e56f5;
  color: #121212;
}



.pf-arrow-button i {
  display: inline-block;
  vertical-align: middle;
}

.pf-skills-section {
  padding-bottom: 105px;
}

.pf-skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 11px;
}

.pf-skills-list li {
  display: inline-block;
  color: #f2f2f2;
  font-size: 16px;
  padding: 10px 20px;
  background-color: #121212;
  border: 1px solid #d7d7d7;
  border-radius: 27px;
  margin-right: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.pf-experience-section {
  padding-bottom: 120px;
}

.pf-experience-list section {
  padding-right: 70px;
}

.pf-experience-list {
  padding-top: 15px;
}

.pf-officename {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}

.pf-experience-list span {
  display: block;
}

span.pf-year {
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 10px;
}

span.pf-department {
  color: #f2f2f2;
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 30px;
}

.pf-experience-list p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.pf-experience-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 10px;
}

.pf-experience-list ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  padding-left: 28px;
  position: relative;
  margin-bottom: 20px;
}

.pf-experience-list ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background-color: #f2f2f2;
}

.pf-work-section {
  padding-bottom: 80px;
}

.pf-project-ls {
  padding-left: 70px;
  padding-top: 40px;
  padding-right: 70px;
  background-color: #2b2b2b;
  margin-bottom: 40px;
}

.pf-project-ls section {
  padding-top: 20px;
  padding-right: 120px;
  padding-bottom: 60px;
}

.pf-work-tilte {
  color: #f2f2f2;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

.pf-project-ls p {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
}

.pf-project-ls .pf-button {
  margin-top: 20px;
}

.pf-work-det-hed {
  padding-top: 42px;
  padding-bottom: 80px;
}

.pf-work-det-title {
  font-weight: 600;
  color: #f2f2f2;
  font-size: 48px;
  margin-bottom: 20px;
}

.pf-work-det-dep {
  display: block;
  font-weight: 600;
  color: #f2f2f2;
  font-size: 18px;
}

.pf-work-content-sec {
  padding: 100px 0;
}

.pf-work-content-sec p {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 30px;
}

.pf-work-content-sec h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.pf-work-content-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-work-content-sec li {
  font-size: 18px;
  line-height: 36px;
  padding-left: 28px;
  position: relative;
  margin-bottom: 20px;
}

.pf-work-content-sec li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background-color: #f2f2f2;
}

.pf-footer {
  background-color: #5e56f5;
  padding: 120px 0;
}

.pf-footer section {
  padding-bottom: 97px;
}

.pf-footer section span {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding-bottom: 20px;
}

.pf-footer section h4 {
  color: #121212;
  font-size: 48px;
  font-weight: 700;
}

.pf-footer section p {
  letter-spacing: 1.13px;
  color: #121212;
  font-size: 18px;
  margin-bottom: 40px;
}

.pf-copyright {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  font-size: 16px;
}

.pf-copyright a {
  color: rgba(255, 255, 255, 0.5);
}

.pf-copyright a:hover {
  color: #5e56f5;
}
/*                        HEADER                      */
@media (max-width: 768px) {
  .pf-header,
  .pf-header.pf-fixed-header {
    padding: 15px 0;
  }

  .pf-banner,
  .pf-about-section,
  .pf-skills-section,
  .pf-experience-section,
  .pf-work-section,
  .pf-work-details-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pf-logo {
    font-size: 0;
  }

  .pf-banner figure {
    padding: 30px 0;
  }

  .pf-banner section {
    padding-left: 0;
    padding-right: 0;
  }

  .pf-banner section h1 span {
    padding-bottom: 0;
  }

  .pf-banner section h1,
  .pf-work-det-title {
    font-size: 30px;
    line-height: 40px;
  }

  .pf-numbervalulist {
    margin-top: 20px;
  }

  .pf-numbervalulist li {
    margin-right: 30px;
  }

  .pf-numbervalulist strong {
    font-size: 30px;
  }

  .pf-numbervalulist span {
    font-size: 14px;
  }

  .pf-about-section {
    padding-bottom: 60px;
  }

  .pf-about-section p,
  .pf-work-content-sec p,
  .pf-work-content-sec li {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 30px;
  }
/*                       SKILLS SECTION                      */
  .pf-skills-list li {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .pf-skills-section .col-12,
  .pf-experience-list .col-12 {
    margin-bottom: 40px;
  }

  .pf-skills-section,
  .pf-work-section,
  .pf-experience-section {
    padding-bottom: 0;
  }

  .pf-experience-list section {
    padding-right: 0;
  }

/*                            PROJECTS LIST                 */

  .pf-project-ls {
    padding: 30px;
  }

  .pf-project-ls p {
    font-size: 15px;
    line-height: 30px;
  }

/*                      FOOTER                              */
  .pf-footer {
    padding: 60px 10px;
  }

  .pf-footer section h4 {
    font-size: 40px;
  }

  .pf-copyright {
    font-size: 14px;
  }

  .pf-footer section {
    padding-bottom: 30px;
  }

  .pf-button {
    padding: 11px 10px;
  }

  .pf-work-details-section {
    padding-top: 30px;
  }

  .pf-work-det-title {
    margin-bottom: 7px;
  }

  .pf-work-content-sec h2 {
    font-size: 20px;
  }

  .pf-work-content-sec {
    padding: 30px 0;
  }

  .pf-project-ls section {
    padding-right: 0;
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pf-project-ls section {
    padding-right: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pf-banner section {
    padding-right: 0;
  }

  .pf-project-ls section {
    padding-right: 30px;
    padding-bottom: 60px;
  }
}
