@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  /* Colors */
  --primary-color: #fff;
  --secondary-color: #90fbbe;
  --tertiary-color: #768089;
  --gradient-color: linear-gradient(
    90deg,
    rgba(190, 246, 170, 1) 0%,
    rgba(136, 203, 186, 1) 15%,
    rgba(136, 203, 186, 1) 100%
  );

  --background-color: #0c1821;
  --button-hover-color: #142431;

  counter-reset: rgb(12, 24, 33);

  /* Typography */
  --font-title: "Pockota", sans-serif;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Manrope", sans-serif;
  --font-size-heading: 3rem;
  --font-size-subheading: 1.5rem;
  --font-size-body: 1rem;
  --font-size-button: 15px;

  /* Spacing */
  --spacing-section-padding: 3rem 4rem;
  --spacing-element-margin: 1.5rem;
  --spacing-left-margin: 100px;
  --spacing-button-padding: 10px 20px;

  /* Borders */
  --border-radius: 14px;

  /* Shadows */
  --box-shadow-light: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  font-family: var(--font-primary);
  color: var(--primary-color);

  user-select: none;
  cursor: url("images/icons_cursor.svg"), auto;
}

html,
body {
  max-width: 100vw; /* Ensure no element exceeds viewport width */
}

body {
  background-color: var(--background-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section {
  padding: 120px 0 50px;
  display: flex;
  justify-content: center;
  align-content: center;
}

a {
  cursor: pointer;
}

img {
  pointer-events: none;
  user-select: none;
}

/* TYPOGRAPHY */
@font-face {
  font-family: "Pockota";
  src: url("fonts/Pockota-Light.woff") format("woff"),
    url("fonts/Pockota-Regular.woff") format("woff"),
    url("fonts/Pockota-Medium.woff") format("woff"),
    url("fonts/Pockota-Bold.woff") format("woff"),
    url("fonts/Pockota-ExtraBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.text-section-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 20px;

  background: var(--gradient-color);
  background-size: 100%; /* Ensures the gradient covers the entire text */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-section-title.shrinked {
  font-weight: 600;
  letter-spacing: 1px;
}

.text-heading-primary {
  font-family: var(--font-title);
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 15px;
}

.text-heading-secondary {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 200;
  margin-bottom: 15px;
}

.text-heading-main {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.text-body {
  font-family: var(--font-secondary);
  color: var(--tertiary-color);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}

.text-body.smalled {
  color: #ffffff71;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin: 0;
}

.text-body.name-effect {
  font-weight: 500;
  color: var(--secondary-color);
}

/* BUTTONS */
.btn {
  width: fit-content;
  height: 45px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;

  transition: 0.3s all;
}

.btn.btn-1 {
  background-color: var(--primary-color);
  color: var(--background-color);
}
.btn.btn-1:hover {
  scale: 1.05;
  background-color: var(--secondary-color);
}

.btn.btn-2 {
  border: 1px solid #3d464d;
  color: var(--primary-color);
  background-color: var(--background-color);
  transition: 0.3s all;
}
.btn.btn-2:hover {
  scale: 1.05;
  background-color: var(--button-hover-color);
}

.btn .btn-icon {
  width: 15px;
  cursor: pointer;
}

.btn .btn-icon.upped {
  rotate: -45deg;
}

/* HEADER SECTION */
header {
  padding: 25px 0 50px;
  background: url("images/bg_grainy_textured.svg");
  background-color: var(--background-color);
  background-size: 30%; /* Keep proportional scaling */
  overflow: hidden;
  display: flex;
  justify-content: center;
  z-index: 50;
  position: relative;

  min-height: 100vh;
}

header > .bg-decoration {
  position: absolute;
  top: 0;
  right: 0;
  height: 160%;

  opacity: 0.5;
}
header > .bg-decoration-responsive {
  display: none;
}

.nav {
  position: fixed;
  width: fit-content;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 11px;
  gap: 10px;
  z-index: 100;

  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.1px);
  -webkit-backdrop-filter: blur(5.1px);
  border: 1px solid rgba(255, 255, 255, 0.158);
}

.nav a {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  color: #d2d5d6;
  padding: 10px 25px;
  border-radius: 200px;

  transition: 0.5s all;
}
.nav a:hover {
  color: var(--background-color);
  background-color: #89e2b0;
}

.banner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  padding: 40px;
}

.banner-section .work-availability {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 200;
}

.banner-section .work-availability .image {
  width: 50px;
}

.banner-section .availability-description {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  background-color: #06160a;
  border-bottom: 2px solid #091f0e;
  padding: 10px 27px;
  border-radius: 14px;
}

.banner-section .availability-description .description {
  font-family: var(--font-secondary);
  color: var(--tertiary-color);
  font-size: 14px;
}

.banner-section .main-area {
  margin: 30px 0;
  text-align: center;
}

.banner-section .main-area .banner-title {
  font-family: "Playfair Display";
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
}

.banner-section .main-area .banner-title > span {
  font-family: "Playfair Display";
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  color: var(--secondary-color);
}

.banner-section .main-area .banner-description {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--tertiary-color);
  margin-top: 20px;
}

.banner-section .CTA-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 50;
}

.btn.CTA-button {
  width: 45px;
  transition: 0.3s all;
  background: #ffffff3f;
}
.btn.CTA-button:hover {
  scale: 1.1;
  background: #ffffff6b;
}

.btn.CTA-button > .btn-icon {
  width: 25px;
  cursor: pointer;
}

/* ABOUT ME SECTION */
.about-me-section {
  gap: 110px;
}

.about-me-section .about-me-content {
  width: 550px;
}

.about-me-picture-wrapper {
  width: 330px;
  height: 330px;
  border-radius: 25px;
  border: 15px solid #fff;
  background: #fff;
  overflow: hidden;
  transform: rotate(7deg);
}

.about-me-picture {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.decor {
  position: absolute;
  z-index: -10000;
}

.decor.decor-1 {
  width: 900px;
  left: -400px;
  top: 1050px;
}

.decor.decor-2 {
  width: 700px;
  right: -300px;
  top: 2100px;
}

.decor.decor-3 {
  width: 900px;
  left: -400px;
  top: 3450px;
}

.decor.decor-4 {
  width: 700px;
  right: -300px;
  top: 5700px;
}

.decor.decor-5 {
  width: 500px;
  left: -250px;
  top: 6350px;
}

/* CURATED WORK SECTION */
.curated-work-section {
  flex-direction: column;
  gap: 50px;
  margin-top: -60px;
}

.curated-work-content {
  text-align: center;
}

.curated-work-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

.curated-work-card {
  width: 800px;
  height: 400px;
  border-radius: 25px;
  background: url("images/bg_grainy_textured.svg"),
    linear-gradient(
      to right bottom,
      #1f2a2c,
      #1e2c2c,
      #283b37,
      #334c40,
      #425742
    );
  background-size: 50%, cover;
  background-position: top left, center;
  background-repeat: repeat, no-repeat;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 2;
}

.curated-work-card .work-card-details {
  margin-left: 65px;
  width: 350px;
}

.work-card-details .seperation-line {
  width: 100%;
  height: 0.5px;
  background-color: #7680895e;
}

.work-card-details .work-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-card-details .work-list-items li {
  position: relative;
  padding-left: 25px;
  margin: 15px 0;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 300;
  color: #dadddd;
}

.work-card-details .work-list-items li:last-of-type {
  margin-bottom: 35px;
}

.work-card-details .work-list-items li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px; /* Desired width */
  height: 16px; /* Desired height */
  background: url("images/icons_check.svg") no-repeat center center;
  background-size: contain; /* Scale the icon */
}

.work-list-description {
  margin: 20px 0 35px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 300;
  color: #dadddd;
  line-height: 20px;
}

.curated-work-card .work-card-image-1 {
  margin-right: -100px;
  position: relative;
  width: 480px;
  top: 45px;
  left: 30px;
}

.curated-work-card .work-card-image-2 {
  margin-right: -100px;
  position: relative;
  width: 450px;
  top: 5px;
  left: 0px;
}

.curated-work-card .work-card-image-3 {
  margin-right: -180px;
  position: relative;
  width: 580px;
  top: 18px;
  left: 25px;
}

.curated-work-card .work-card-image-4 {
  margin-right: -400px;
  position: relative;
  width: 800px;
  top: 80px;
  left: 70px;
}

.traits-wrapper {
  width: 100%;
  margin-inline: auto;
  position: relative;
  height: 40px;
  overflow: hidden;

  background: linear-gradient(
    to right,
    #c1f5a3,
    #a6eaad,
    #91deb5,
    #84d0b9,
    #7fc2b9
  );

  transform: rotate(-0.5deg); /* Rotates the div */

  z-index: 200;
}

@keyframes scrollLeft-1 {
  to {
    left: -200px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.traits-wrapper > .item {
  width: 130px;
  height: 40px;
  border-radius: 6px;
  position: absolute;
  left: max(calc(130px * 16), 100%);
  animation-name: scrollLeft-1;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
  color: #1c261e;
}

.traits-wrapper > .item > img {
  animation-name: rotate;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.traits-wrapper > .item.item1 {
  animation-delay: calc(40s / 16 * (16 - 1) * -1);
}
.traits-wrapper > .item.item2 {
  animation-delay: calc(40s / 16 * (16 - 2) * -1);
}
.traits-wrapper > .item.item3 {
  animation-delay: calc(40s / 16 * (16 - 3) * -1);
}
.traits-wrapper > .item.item4 {
  animation-delay: calc(40s / 16 * (16 - 4) * -1);
}
.traits-wrapper > .item.item5 {
  animation-delay: calc(40s / 16 * (16 - 5) * -1);
}
.traits-wrapper > .item.item6 {
  animation-delay: calc(40s / 16 * (16 - 6) * -1);
}
.traits-wrapper > .item.item7 {
  animation-delay: calc(40s / 16 * (16 - 7) * -1);
}
.traits-wrapper > .item.item8 {
  animation-delay: calc(40s / 16 * (16 - 8) * -1);
}
.traits-wrapper > .item.item9 {
  animation-delay: calc(40s / 16 * (16 - 9) * -1);
}
.traits-wrapper > .item.item10 {
  animation-delay: calc(40s / 16 * (16 - 10) * -1);
}
.traits-wrapper > .item.item11 {
  animation-delay: calc(40s / 16 * (16 - 11) * -1);
}
.traits-wrapper > .item.item12 {
  animation-delay: calc(40s / 16 * (16 - 12) * -1);
}
.traits-wrapper > .item.item13 {
  animation-delay: calc(40s / 16 * (16 - 13) * -1);
}
.traits-wrapper > .item.item14 {
  animation-delay: calc(40s / 16 * (16 - 14) * -1);
}
.traits-wrapper > .item.item15 {
  animation-delay: calc(40s / 16 * (16 - 15) * -1);
}
.traits-wrapper > .item.item16 {
  animation-delay: calc(40s / 16 * (16 - 16) * -1);
}

/* MY SKILLS SECTION */
.my-skills-section {
  flex-direction: column;
  padding: 0;
  padding-top: 50px;
  gap: 45px;
}

.my-skills-section .my-skills-heading {
  text-align: center;
}

.my-skills-grid {
  display: grid;
  grid-template-columns: 320px 220px 320px;
  grid-template-rows: 300px 300px;
  gap: 15px;
  margin: 0 auto;
}

.my-skills-item {
  background-color: #0a151c;
  border: 4px solid #0d1b25;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  overflow: hidden;
}

.my-skills-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.my-skills-item .my-skills-description h3 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 10px;
}

.my-skills-item .my-skills-description h3 img {
  width: 17px;
}

.my-skills-item:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.my-skills-item:nth-child(1) > .my-skills-icons {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.my-skills-item:nth-child(1) > .my-skills-icons > .icons {
  width: 60px;
}

.my-skills-item:nth-child(2) {
  grid-column: span 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.my-skills-item:nth-child(2) > img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.my-skills-item:nth-child(3) {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 0;
  padding-bottom: 0;
}
.my-skills-item:nth-child(3) > img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: relative;
  left: 2px;
  top: 2px;
}

.my-skills-item:nth-child(4) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.my-skills-item:nth-child(4) > img {
  width: 100%;
  height: 125px;
  object-fit: contain;
  margin: auto;
}

/* MY STATS SECTION */
.my-stats-section {
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  gap: 45px;
}

.my-stats-section .my-stats-heading {
  text-align: center;
}

.my-stats-grid {
  display: grid;
  grid-template-columns: 260px 260px 260px;
  grid-template-rows: 220px;
  gap: 15px;
  margin: 0 auto;
}

.my-stats-grid .my-stats-card {
  background: url("images/stats_card_pattern.svg");
  background-color: #081218;
  border: 3px solid #0d1b25;
  padding: 25px 30px;
  border-radius: 25px;
  text-align: left;
  overflow: hidden;

  background-size: 140%;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: 0.3s all;
}
.my-stats-grid .my-stats-card:hover {
  background-color: #09141b;
  scale: 1.02;
  border: 3px solid #90fbbead;
}

.my-stats-grid .my-stats-card > h3 {
  font-size: 26px;
  line-height: 35px;
}

.my-stats-grid .my-stats-card > h1 {
  font-size: 40px;
  line-height: 1;
  position: relative;
  text-align: right;
  left: 5px;
  top: 5px;
  color: var(--secondary-color);
  font-family: var(--font-secondary);
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  flex-direction: column;
  padding-top: 50px;
  gap: 45px;
}

.testimonial-section .testimonial-heading {
  text-align: center;
}

.testimonial-wrapper {
  width: 100%;
  height: 250px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;

  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft-2 {
  to {
    left: -300px;
  }
}

.testimonial-wrapper > .item {
  width: 300px;
  height: 250px;
  border-radius: 20px;
  position: absolute;
  left: max(calc(300px * 8), 100%);
  animation-name: scrollLeft-2;
  animation-duration: 80s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border: 2px solid #28353e;
  color: #1c261e;

  background: url("images/bg_grainy_textured.svg");
  background-color: #1d2b35;
  background-size: 100%, cover;
  background-position: center;
  background-repeat: repeat;
  overflow: hidden;
}

.testimonial-wrapper > .item .testimonial-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-wrapper > .item .testimonial-card-top > img {
  width: 30px;
  border-radius: 200px;
}

.testimonial-wrapper > .item .testimonial-card-top .testimonial-card-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-wrapper
  > .item
  .testimonial-card-top
  .testimonial-card-title
  > h6 {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
}

.testimonial-wrapper > .item .testimonial-card-top .testimonial-card-title > p {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 500;
  color: var(--tertiary-color);
}

.testimonial-wrapper > .item > p {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 300;
  line-height: 19px;
  color: var(--primary-color);
}

.testimonial-wrapper > .item.item1 {
  animation-delay: calc(80s / 8 * (8 - 1) * -1);
}
.testimonial-wrapper > .item.item2 {
  animation-delay: calc(80s / 8 * (8 - 2) * -1);
}
.testimonial-wrapper > .item.item3 {
  animation-delay: calc(80s / 8 * (8 - 3) * -1);
}
.testimonial-wrapper > .item.item4 {
  animation-delay: calc(80s / 8 * (8 - 4) * -1);
}
.testimonial-wrapper > .item.item5 {
  animation-delay: calc(80s / 8 * (8 - 5) * -1);
}
.testimonial-wrapper > .item.item6 {
  animation-delay: calc(80s / 8 * (8 - 6) * -1);
}
.testimonial-wrapper > .item.item7 {
  animation-delay: calc(80s / 8 * (8 - 7) * -1);
}
.testimonial-wrapper > .item.item8 {
  animation-delay: calc(80s / 8 * (8 - 8) * -1);
}

/* BEYOND PORTFOLIO SECTION */
.beyond-portfolio-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 80px;
}

.beyond-portfolio-section .beyond-portfolio-item {
  background-color: #07161e;
  border: 3px solid #0d1b25;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  overflow: hidden;
}

.beyond-portfolio-item .beyond-portfolio-description h3 {
  font-family: var(--font-secondary);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 400;

  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.beyond-portfolio-item .beyond-portfolio-description h3 img {
  width: 17px;
}

.beyond-portfolio-section > .left,
.beyond-portfolio-section > .center,
.beyond-portfolio-section > .right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 250px;
}

.beyond-portfolio-section
  > .left
  > .beyond-portfolio-item
  > .text-section-title.shrinked {
  margin-bottom: 10px;
}

.beyond-portfolio-section > .left > .beyond-portfolio-item:nth-child(1) {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  height: 115px;
}

.beyond-portfolio-section > .left > .beyond-portfolio-item:nth-child(2) {
  height: 250px;

  background: url("images/decor_element_4.svg");
  background-color: var(--background-color);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: center 100px;
}
.beyond-portfolio-section > .left > .beyond-portfolio-item:nth-child(2) > img {
  height: 100%;

  position: relative;
  left: 26px;
  top: 20px;

  border-radius: 10px;
}

.beyond-portfolio-section > .center > .beyond-portfolio-item:nth-child(1) {
  height: 265px;

  background: url("images/decor_element_4.svg");
  background-color: var(--background-color);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: -340px -340px;
}
.beyond-portfolio-section
  > .center
  > .beyond-portfolio-item:nth-child(1)
  > img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  position: relative;
  left: 0;
  top: -20px;
}

.beyond-portfolio-section > .center > .beyond-portfolio-item:nth-child(2) {
  height: 100px;

  background: url("images/bg_grainy_textured.svg");
  background-color: var(--secondary-color);
  background-size: 80%;
}
.beyond-portfolio-section > .center > .beyond-portfolio-item:nth-child(2) > p {
  color: var(--background-color);
}
.beyond-portfolio-section
  > .center
  > .beyond-portfolio-item:nth-child(2)
  > img {
  width: 80px;
}

.beyond-portfolio-section > .right > .beyond-portfolio-item:nth-child(1) {
  height: 160px;

  background: url("images/beyond_map.png");
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: center center;
}
.beyond-portfolio-section > .right > .beyond-portfolio-item:nth-child(1) > img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  position: relative;
  left: 0;
  top: -20px;
}

.beyond-portfolio-section > .right > .beyond-portfolio-item:nth-child(2) {
  height: 205px;

  background: url("images/decor_element_4.svg");
  background-color: var(--background-color);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: -340px -340px;
}
.beyond-portfolio-section > .right > .beyond-portfolio-item:nth-child(2) > img {
  width: 140%;
  object-fit: contain;

  position: relative;
  left: -43px;
  top: -7px;
}

/* MY EXPERIENCES SECTION */
.my-experiences-section {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 70px;
  padding: 0;
}

.my-experiences-section .my-experiences-heading {
  text-align: center;
  margin-bottom: 50px;
}

.my-experiences-section .my-experiences-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 620px;
  margin: 0 auto;
}

.my-experiences-section .my-experiences-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.my-experiences-section .my-experiences-left h5 {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 500;
}

.my-experiences-section .my-experiences-left h5 span {
  color: var(--secondary-color);
}

.my-experiences-section .my-experiences-left h6 {
  margin: 5px 0 0;
  font-size: 12px;
  font-style: italic;
  color: #7a8691;
}

.my-experiences-section .my-experiences-left .experiences_image {
  width: 300px;
  margin-top: 20px;
  border-radius: 10px;
}

.my-experiences-section .my-experiences-right {
  width: 260px;
  font-size: 14px;
  font-weight: 300;
  color: #adb6be;
}

.my-experiences-section .collaborators img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 5px;
}

hr {
  border: 0;
  border-top: 1px solid #7a86913f;
  margin: 20px 0;
}

/* LETS CONNECT SECTION */
.lets-connect {
  width: 800px;
  height: 100px;

  background-image: linear-gradient(
    to right,
    #b4e998,
    #a8eeaf,
    #93e0b6,
    #85d2b9,
    #7fc2b8
  );
  background-size: 100%, cover;
  background-position: center;
  background-repeat: repeat;
  border-radius: 15px;
  overflow: hidden;

  margin: 60px auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lets-connect .lets-connect-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lets-connect .lets-connect-heading > h3 {
  font-family: "Playfair Display";
  color: var(--background-color);
  margin: 0;
  font-size: 21px;
  font-weight: 700;
}

.lets-connect .lets-connect-heading > h6 {
  font-family: var(--font-secondary);
  color: var(--background-color);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.lets-connect > a {
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 11px 20px;
  border-radius: 8px;

  font-family: var(--font-secondary);
  font-size: 13px;

  transition: 0.3s all;
}
.lets-connect > a:hover {
  scale: 1.05;
  background-color: #1c2d36;
}

.lets-connect > a > img {
  width: 12px;
  rotate: -45deg;
}

/* FOOTER SECTION */
footer {
  border-top: 1px solid #ffffff27;
  margin: 0 120px;
  padding-top: 20px;
  padding-bottom: 20px;

  display: flex;
  justify-content: space-between;
}

footer .footer-text {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--tertiary-color);
}

footer .social-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

footer .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-secondary);
  font-size: 12px;
  color: #ffffff;
  font-weight: 300;

  transition: 0.3s all;
}
footer .social-links .social-link:hover {
  color: var(--secondary-color);
}

footer .social-links .social-link > img {
  width: 13px;
}
