@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&family=Roboto&display=swap");
:root {
  --white: #fff;
  --black: rgb(22, 22, 22);
  --first: #FFBCD1;
  --second: #CE7BB0;
  --third: #A267AC;
  --fourth: #6867AC;
  --background-dark: #2d3548;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --slider: rgb(0, 0, 0);
  --slider-front: rgb(49, 49, 49);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

/* #Cursor
================================================== */
.cursor {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: var(--white);
  pointer-events: none;
  mix-blend-mode: difference;
  transition: all 0.3s ease-in-out;
  transition-property: background, transform;
  transform-origin: 100% 100%;
}

.link-grow {
  transform: scale(2);
}

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  background-color: var(--black);
}

button {
  font-family: "Roboto", sans-serif;
  width: 12em;
  height: 3em;
  background-color: var(--third);
  color: var(--text-lighter);
  border: none;
  border-radius: 25px;
  font-weight: 800;
}
button:hover {
  transition: all 0.3s ease-in-out;
  width: 16em;
  background-color: transparent;
  border: 1px solid var(--third);
  color: var(--third);
}

h1 {
  font-family: "Poppins", sans-serif !important;
}

p {
  font-family: "Roboto", sans-serif !important;
}

.section {
  color: var(--white);
}
.section h1 {
  font-family: "Roboto", sans-serif;
  font-size: 2em;
}

.s1 {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.s1 .leftside-content {
  width: 50%;
  height: 100%;
  float: left;
  font-family: "Poppins", sans-serif;
  font-size: 2.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s1 .leftside-content .side-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s1 .leftside-content .side-text h1 {
  font-size: larger;
  font-weight: 300;
  text-align: left;
}
.s1 .leftside-content .side-text .profile-image {
  max-width: 35%; /* Set maximum width to 100% of the parent container */
  height: auto; /* Allow the height to adjust proportionally */
}
.s1 .leftside-content .side-text button {
  font-family: "Poppins", sans-serif;
  width: 15em;
  height: 3.5em;
  border: 1px solid var(--white);
  border-radius: 25px;
  color: var(--white);
  background-color: transparent;
}
.s1 .leftside-content .side-text button:hover {
  animation: jello-vertical 1s infinite;
}
.s1 .rightside-content {
  display: grid;
  width: 50%;
  height: 100%;
  float: right;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
}
.s1 .rightside-content .card {
  list-style: none;
  position: relative;
}
.s1 .rightside-content .card:before {
  content: "";
  display: block;
}
.s1 .rightside-content .card__background {
  background-size: cover;
  background-position: center;
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  transform: scale(1) translateZ(0);
  transition: filter 200ms linear, transform 200ms linear;
}
.s1 .rightside-content .card:hover .card__background {
  transform: scale(1.05) translateZ(0);
}
.s1 .rightside-content .card-grid:hover > .card:not(:hover) .card__background {
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}
.s1 .rightside-content .card__content {
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
}
.s1 .rightside-content .card__category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
}
.s1 .rightside-content .card__heading {
  color: var(--text-lighter);
  font-size: 1.9rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
  word-spacing: 100vw;
}

.s2 {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s2 .contentContainer {
  margin: 0 auto;
  width: 100%;
}
.s2 .contentContainer .skill-intro {
  text-align: center;
}
.s2 .contentContainer .skillBar h4 {
  font-size: 1em;
  text-transform: none;
  font-weight: bold;
  margin-bottom: 7px;
  margin-bottom: 0.33em;
}
.s2 .contentContainer .skillBarContainer {
  width: 100%;
  height: 26px;
  height: 0.5em;
  background: var(--slider);
  overflow: hidden;
  border-radius: 5px;
}
.s2 .contentContainer .skillBarValue {
  height: 0.5em;
  float: left;
  background: var(--slider-front);
}
.s2 .contentContainer .value-00 {
  width: 0;
}
.s2 .contentContainer .value-10 {
  width: 10%;
}
.s2 .contentContainer .value-20 {
  width: 20%;
}
.s2 .contentContainer .value-30 {
  width: 30%;
}
.s2 .contentContainer .value-40 {
  width: 40%;
}
.s2 .contentContainer .value-50 {
  width: 50%;
}
.s2 .contentContainer .value-60 {
  width: 60%;
}
.s2 .contentContainer .value-70 {
  width: 70%;
}
.s2 .contentContainer .value-80 {
  width: 80%;
}
.s2 .contentContainer .value-90 {
  width: 90%;
}
.s2 .contentContainer .value-100 {
  width: 100%;
}
@keyframes slideIn {
  0% {
    width: 0;
  }
  25% {
    width: 100%;
  }
  100% {
    width: normal;
  }
}
.s2 .contentContainer .skillBarValue {
  animation: slideIn 2s;
}
.s2 .tech-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.s2 .tech-container .card-container {
  text-align: center;
  padding: 1rem;
  align-items: center;
  flex: 1;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.s2 .tech-container .card-container:hover .card-image-container {
  transform: scale(1.2);
}
.s2 .tech-container .card-container .card-image-container {
  width: 100%;
  height: 300px;
  max-height: 200px; /* Set a maximum height if needed */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.s2 .tech-container .card-container .card-image-container img {
  width: 50%;
  height: auto;
}

.s3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s3 .carousel {
  width: 60%;
  height: 70%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.s3 .carousel-item {
  visibility: visible;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
  position: relative;
  background-color: #fff;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  position: absolute;
  z-index: 0;
  transition: 0.6s all linear;
}
.s3 .carousel-item__info {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-justify-content: center;
  order: 1;
  left: 0;
  margin: auto;
  padding: 0 40px;
  width: 40%;
}
.s3 .carousel-item__image {
  width: 60%;
  height: 100%;
  order: 2;
  align-self: flex-end;
  flex-basis: 60%;
  -webkit-order: 2;
  -webkit-align-self: flex-end;
  -webkit-flex-basis: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transform: translateX(100%);
  transition: 0.6s all ease-in-out;
}
.s3 .carousel-item__subtitle {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 3px;
  font-size: 10px;
  text-transform: uppercase;
  margin: 0;
  color: #7E7E7E;
  font-weight: 700;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all ease-in-out;
}
.s3 .carousel-item__title {
  margin: 15px 0 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  line-height: 45px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--black);
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}
.s3 .carousel-item__description {
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
  margin-top: 35px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #7e7e7e;
  line-height: 22px;
  margin-bottom: 35px;
}
.s3 .carousel-item--1 .carousel-item__image {
  background-image: url("./asset/projects/1.png");
}
.s3 .carousel-item--2 .carousel-item__image {
  background-image: url("./asset/projects/2.png");
}
.s3 .carousel-item--3 .carousel-item__image {
  background-image: url("./asset/projects/4.jpg");
}
.s3 .carousel-item--4 .carousel-item__image {
  background-image: url("./asset/projects/3.png");
}
.s3 .carousel-item--5 .carousel-item__image {
  background-image: url("./asset/projects/5.jpg");
}
.s3 .carousel-item__btn {
  width: 35%;
  color: #2C2C2C;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 3px;
  font-size: 11px;
  text-transform: uppercase;
  margin: 0;
  width: 35%;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}
.s3 .carousel__nav {
  position: absolute;
  right: 0;
  z-index: 2;
  background-color: #fff;
  bottom: 0;
}
.s3 .carousel__icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  fill: #5d5d5d;
}
.s3 .carousel__arrow {
  cursor: pointer;
  display: inline-block;
  padding: 11px 15px;
  position: relative;
}
.s3 .carousel__arrow:nth-child(1):after {
  content: "";
  right: -3px;
  position: absolute;
  width: 1px;
  background-color: #b0b0b0;
  height: 14px;
  top: 50%;
  margin-top: -7px;
}
.s3 .active {
  z-index: 1;
  display: flex;
  visibility: visible;
}
.s3 .active .carousel-item__subtitle, .s3 .active .carousel-item__title, .s3 .active .carousel-item__description, .s3 .active .carousel-item__btn {
  transform: translateY(0);
  opacity: 1;
  transition: 0.6s all ease-in-out;
  visibility: visible;
}
.s3 .active .carousel-item__image {
  transition: 0.6s all ease-in-out;
  transform: translateX(0);
}
.s3 .carousel-rightside {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-xxl);
  flex-direction: column;
}

.s4 {
  justify-content: center;
  align-items: center;
  display: flex;
}
.s4 .wrap {
  margin: 0px auto;
  position: relative;
  width: 80%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.s4 .wrap .center {
  position: absolute;
  background-color: var(--background-dark);
  width: 3px;
  margin-left: 5px;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s4 .wrap .center .center-content {
  position: absolute;
  background-color: var(--background-dark);
  color: var(--white);
  font-weight: 800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s4 .wrap .contact-left {
  position: relative;
  width: 40%;
  height: calc(100% - 40px);
  top: 2px;
  background-color: var(--background-dark);
  padding: var(--spacing-l);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.808);
}
.s4 .wrap .contact-left h1 {
  font-weight: 600;
  font-size: 4em;
  color: var(--white);
}
.s4 .wrap .contact-left .info {
  width: 80%;
  display: flex;
  justify-content: space-around;
}
.s4 .wrap .contact-left .info a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  cursor: pointer;
  margin: 0px auto;
  text-decoration: none;
  font-size: 1.3em;
  color: var(--white);
}
.s4 .wrap .contact-left .info a:hover {
  background-color: var(--fourth);
  color: var(--background-dark);
  border-color: var(--fourth);
  animation: shadow-drop-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.s4 .wrap .contact-right {
  position: relative;
  width: calc(70% - 150px);
  height: 100%;
}
.s4 .wrap .contact-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-dark);
  opacity: 0.5;
  z-index: -1;
}
.s4 .wrap .contact-right .contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--spacing-m);
}
.s4 .wrap .contact-right .contact img {
  margin: auto;
  width: 80%;
}
.s4 .wrap .contact-right .contact form {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-l);
}
.s4 .wrap .contact-right .contact form p {
  font-size: 1em;
  margin: 10px auto;
}
.s4 .wrap .contact-right .contact form .form-group {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 5px auto;
}
.s4 .wrap .contact-right .contact form .form-group p {
  font-size: 1em;
  font-family: "Poppins", sans-serif;
  margin: 10px auto;
}
.s4 .wrap .contact-right .contact form .form-group label {
  margin-left: 10px;
  color: var(--white);
  width: 30%;
  justify-content: center;
  opacity: 0;
}
.s4 .wrap .contact-right .contact form .form-group textarea, .s4 .wrap .contact-right .contact form .form-group input {
  resize: none;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.842);
  padding: var(--spacing-m);
  color: var(--background-dark);
  border: none;
  font-family: "Roboto", sans-serif;
}
.s4 .wrap .contact-right .contact #status {
  width: 100%;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}
.s4 .wrap .contact-right .contact #status.success {
  background-color: rgb(101, 255, 62);
  animation: status 4s ease forwards;
}
.s4 .wrap .contact-right .contact #status.error {
  background-color: rgb(250, 129, 92);
  color: var(--background-dark);
  animation: status 4s ease forwards;
}

#fp-nav span {
  background: var(--white) !important;
}

.jello-vertical {
  animation: jello-vertical 0.9s both;
}
@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scale-in-left {
  0% {
    transform: scale(0);
    transform-origin: 0% 50%;
    opacity: 1;
  }
  100% {
    transform: scale(1);
    transform-origin: 0% 50%;
    opacity: 1;
  }
}
@keyframes shadow-drop-center {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
.entrance {
  background-color: var(--fourth);
  color: var(--background-dark);
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.entrance .hide {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  font-size: 5rem;
}

.slider {
  width: 100%;
  height: 100%;
  background-color: var(--background-dark);
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

body, a, input, textarea, button {
  cursor: none !important;
}/*# sourceMappingURL=style.css.map */