@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Sora", "Poppins";
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f58220;
  border-radius: 200px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #03a681;
}

body {
  background-color: #f2f5f8;
  display: flex;
  flex-direction: column;
}

.card {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  box-shadow: 0 14px 11px -5px #d9d9d9;
  height: -moz-fit-content;
  height: fit-content;
}

.side-navigation-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  background-color: #fff;
  z-index: 10;
  transition: width 0.2s ease-in-out;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 1200px) {
  .side-navigation-bar {
    display: block;
  }
}
.side-navigation-bar.open {
  width: 100%;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1200px) {
  .side-navigation-bar.open .id-card.open {
    display: flex !important;
  }
}
.side-navigation-bar.open .id-card {
  display: none !important;
  max-width: 250px !important;
  padding: 10px !important;
}
.side-navigation-bar.open .id-card .id-card-personal-details {
  padding-bottom: 10px !important;
  gap: 5px !important;
}
.side-navigation-bar.open .id-card .id-card-residence-details {
  gap: 5px !important;
  padding: 10px !important;
  margin-bottom: 20px;
}
.side-navigation-bar.open .id-card .id-card-skills {
  padding: 10px !important;
  gap: 10px !important;
}
.side-navigation-bar.open .id-card .id-card-skills .skills-wrapper {
  gap: 10px !important;
  justify-content: space-between !important;
}
.side-navigation-bar .main-section {
  height: 100vh;
  width: 100%;
  margin-left: auto;
  padding: 0;
}
.side-navigation-bar .main-section .container {
  height: 100%;
  padding: 60px 20px 20px 20px;
  display: flex;
  margin-left: auto;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0;
}
.side-navigation-bar .main-section .container .navigation-wrapper {
  display: flex !important;
  max-width: 75px;
  background-color: #fff;
  justify-content: flex-start;
  gap: 0;
  margin-left: 10px;
}
@media screen and (max-width: 375px) {
  .side-navigation-bar .main-section .container .navigation-wrapper.open {
    width: 0;
    overflow: hidden;
    padding: 0;
    background: unset;
    border: none;
    margin: 0;
  }
}

.heading {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: hsla(0, 0%, 100%, 0.1);
  padding: 10px 20px;
  height: 56px;
  position: fixed;
  z-index: 12;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.heading .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.heading .logo-wrapper .logo-name {
  font-family: "Sora", "Poppins";
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.heading .toggle-btn-wrapper {
  z-index: 12;
}
.heading .toggle-btn-wrapper.open {
  position: fixed;
  right: 20px;
}
.heading .toggle-btn-wrapper .toggle-btn {
  background-color: #fff;
  border-radius: 200px;
  border: none;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 2px -0.5px rgba(0, 0, 0, 0.5019607843);
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1200px) {
  .heading .toggle-btn-wrapper .toggle-btn {
    display: flex;
  }
}

.main-section {
  height: 100vh;
  position: relative;
  padding-top: 60px;
}
.main-section .background-wrapper {
  position: fixed;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  padding: 0 40px;
}
.main-section .background-wrapper .background-inner-wrapper {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}
.main-section .background-wrapper .background-inner-wrapper .background-track-bottom {
  height: 100%;
  width: 0;
  border: 1px dashed rgb(203, 213, 225);
  position: relative;
}
.main-section .background-wrapper .background-inner-wrapper .background-track-bottom::before {
  content: "";
  position: absolute;
  background-color: #f58220;
  animation: topToBottom 25s linear infinite;
  width: 0.5rem;
  height: 0.5rem;
  left: -0.25rem;
  rotate: 47deg;
}
@keyframes topToBottom {
  0% {
    top: 0;
  }
  100% {
    top: 98.8%;
  }
}
.main-section .background-wrapper .background-inner-wrapper .background-track-top {
  height: 100%;
  width: 0;
  border: 1px dashed rgb(203, 213, 225);
  position: relative;
}
.main-section .background-wrapper .background-inner-wrapper .background-track-top::before {
  content: "";
  position: absolute;
  background-color: #f58220;
  animation: topToTop 25s linear infinite;
  width: 0.5rem;
  height: 0.5rem;
  left: -0.25rem;
  rotate: 47deg;
}
@keyframes topToTop {
  0% {
    top: 98.8%;
  }
  100% {
    top: 0;
  }
}
.main-section .container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .main-section .container {
    flex-wrap: wrap;
  }
}
.main-section .container .id-card {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 14px 11px -5px #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: auto;
  max-height: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .main-section .container .id-card {
    display: none;
  }
}
.main-section .container .id-card .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 25px;
  width: 100%;
  height: 25px;
  background-color: #f58220;
  border-radius: 0 8px 0 0;
  padding: 5px;
}
.main-section .container .id-card .id-card-personal-details {
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.main-section .container .id-card .id-card-personal-details .img-wrapper {
  border-radius: 200px;
  max-width: 100px;
  width: 100%;
  height: 100px;
  overflow: hidden;
  margin: 0 auto;
  border: 5px solid rgb(232, 232, 232);
}
.main-section .container .id-card .id-card-personal-details .img-wrapper img {
  width: 100%;
  height: 100%;
}
.main-section .container .id-card .id-card-personal-details .id-card-name,
.main-section .container .id-card .id-card-personal-details .id-card-post {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.main-section .container .id-card .id-card-personal-details .id-card-name span {
  font-family: "Sora", "Poppins";
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.main-section .container .id-card .id-card-personal-details .id-card-post span {
  font-family: "Sora", "Poppins";
  font-size: 12px;
  font-weight: 400;
  color: #f58220;
}
.main-section .container .id-card .id-card-residence-details {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid rgb(232, 232, 232);
}
.main-section .container .id-card .id-card-residence-details .residence,
.main-section .container .id-card .id-card-residence-details .state,
.main-section .container .id-card .id-card-residence-details .city,
.main-section .container .id-card .id-card-residence-details .age {
  font-family: "Sora", "Poppins";
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.main-section .container .id-card .id-card-residence-details .residence span:first-child,
.main-section .container .id-card .id-card-residence-details .state span:first-child,
.main-section .container .id-card .id-card-residence-details .city span:first-child,
.main-section .container .id-card .id-card-residence-details .age span:first-child {
  color: #000;
}
.main-section .container .id-card .id-card-residence-details .residence span:last-child,
.main-section .container .id-card .id-card-residence-details .state span:last-child,
.main-section .container .id-card .id-card-residence-details .city span:last-child,
.main-section .container .id-card .id-card-residence-details .age span:last-child {
  color: #707070;
}
.main-section .container .id-card .id-card-skills {
  background-color: rgb(240, 242, 245);
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.main-section .container .id-card .id-card-skills .skills {
  font-family: "Sora", "Poppins";
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.main-section .container .id-card .id-card-skills .skills-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  font-family: "Sora", "Poppins";
  font-size: 12px;
  font-weight: 400;
  color: #000;
  max-width: calc(50% - 10px);
  width: 100%;
  /* HTML */
  /* CSS */
  /* JS */
  /* jQuery */
  /* Tailwind */
  /* A/B Testing */
  /* Figma */
  /* UI/UX */
  /* PHP */
  /* Angular */
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill .starts-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 5px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill .starts-wrapper span {
  padding: 5px;
  border-radius: 200px;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.html .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.html .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.html .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.html .starts-wrapper span:nth-child(4) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.html .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.css .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.css .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.css .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.css .starts-wrapper span:nth-child(4) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.css .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.js .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.js .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.js .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.js .starts-wrapper span:nth-child(4) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.js .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.jQuery .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.jQuery .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.jQuery .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.jQuery .starts-wrapper span:nth-child(4) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.jQuery .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.tailwind .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.tailwind .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.tailwind .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.tailwind .starts-wrapper span:nth-child(4) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.tailwind .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.ab-testing .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.ab-testing .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.ab-testing .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.ab-testing .starts-wrapper span:nth-child(4) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.ab-testing .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.figma .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.figma .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.figma .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.figma .starts-wrapper span:nth-child(4) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.figma .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.uiux .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.uiux .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.uiux .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.uiux .starts-wrapper span:nth-child(4) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.uiux .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.php .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.php .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.php .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.php .starts-wrapper span:nth-child(4) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.php .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.angular .starts-wrapper span:nth-child(1) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.angular .starts-wrapper span:nth-child(2) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.angular .starts-wrapper span:nth-child(3) {
  background-color: #f58220;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.angular .starts-wrapper span:nth-child(4) {
  background-color: #707070;
}
.main-section .container .id-card .id-card-skills .skills-wrapper .skill.angular .starts-wrapper span:nth-child(5) {
  background-color: #707070;
}
.main-section .container .professional-details {
  display: flex;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  overflow: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  border-radius: 8px;
  /* width */
}
.main-section .container .professional-details::-webkit-scrollbar {
  display: none;
}
.main-section .container .professional-details .introduction,
.main-section .container .professional-details .about-me,
.main-section .container .professional-details .my-services,
.main-section .container .professional-details .advantages,
.main-section .container .professional-details .work-experiance,
.main-section .container .professional-details .project-wrapper,
.main-section .container .professional-details .contact-me {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.main-section .container .professional-details .introduction .badge,
.main-section .container .professional-details .about-me .badge,
.main-section .container .professional-details .my-services .badge,
.main-section .container .professional-details .advantages .badge,
.main-section .container .professional-details .work-experiance .badge,
.main-section .container .professional-details .project-wrapper .badge,
.main-section .container .professional-details .contact-me .badge {
  display: flex;
  flex-direction: row;
  align-content: flex-end;
  justify-content: center;
  align-items: flex-end;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid #e8e8e8;
  border-radius: 200px;
  margin-bottom: 10px;
}
.main-section .container .professional-details .introduction .badge img,
.main-section .container .professional-details .about-me .badge img,
.main-section .container .professional-details .my-services .badge img,
.main-section .container .professional-details .advantages .badge img,
.main-section .container .professional-details .work-experiance .badge img,
.main-section .container .professional-details .project-wrapper .badge img,
.main-section .container .professional-details .contact-me .badge img {
  width: 12px;
  height: 12px;
}
.main-section .container .professional-details .introduction .badge span,
.main-section .container .professional-details .about-me .badge span,
.main-section .container .professional-details .my-services .badge span,
.main-section .container .professional-details .advantages .badge span,
.main-section .container .professional-details .work-experiance .badge span,
.main-section .container .professional-details .project-wrapper .badge span,
.main-section .container .professional-details .contact-me .badge span {
  font-family: "Sora", "Poppins";
  font-size: 10px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
  text-wrap: nowrap;
}
.main-section .container .professional-details .introduction .main-heading,
.main-section .container .professional-details .about-me .main-heading,
.main-section .container .professional-details .my-services .main-heading,
.main-section .container .professional-details .advantages .main-heading,
.main-section .container .professional-details .work-experiance .main-heading,
.main-section .container .professional-details .project-wrapper .main-heading,
.main-section .container .professional-details .contact-me .main-heading {
  font-family: "Sora", "Poppins";
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.main-section .container .professional-details .introduction .main-heading span:first-child,
.main-section .container .professional-details .about-me .main-heading span:first-child,
.main-section .container .professional-details .my-services .main-heading span:first-child,
.main-section .container .professional-details .advantages .main-heading span:first-child,
.main-section .container .professional-details .work-experiance .main-heading span:first-child,
.main-section .container .professional-details .project-wrapper .main-heading span:first-child,
.main-section .container .professional-details .contact-me .main-heading span:first-child {
  color: #000;
  font-weight: 400;
}
.main-section .container .professional-details .introduction .main-heading span:last-child,
.main-section .container .professional-details .about-me .main-heading span:last-child,
.main-section .container .professional-details .my-services .main-heading span:last-child,
.main-section .container .professional-details .advantages .main-heading span:last-child,
.main-section .container .professional-details .work-experiance .main-heading span:last-child,
.main-section .container .professional-details .project-wrapper .main-heading span:last-child,
.main-section .container .professional-details .contact-me .main-heading span:last-child {
  color: #f58220;
}
.main-section .container .professional-details .introduction .description,
.main-section .container .professional-details .about-me .description,
.main-section .container .professional-details .my-services .description,
.main-section .container .professional-details .advantages .description,
.main-section .container .professional-details .work-experiance .description,
.main-section .container .professional-details .project-wrapper .description,
.main-section .container .professional-details .contact-me .description {
  font-family: "Sora", "Poppins";
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  max-width: 700px;
}
.main-section .container .professional-details .introduction .description h1,
.main-section .container .professional-details .about-me .description h1,
.main-section .container .professional-details .my-services .description h1,
.main-section .container .professional-details .advantages .description h1,
.main-section .container .professional-details .work-experiance .description h1,
.main-section .container .professional-details .project-wrapper .description h1,
.main-section .container .professional-details .contact-me .description h1 {
  font-family: "Sora", "Poppins";
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  max-width: 700px;
}
.main-section .container .professional-details .introduction .availability-wrapper,
.main-section .container .professional-details .about-me .availability-wrapper,
.main-section .container .professional-details .my-services .availability-wrapper,
.main-section .container .professional-details .advantages .availability-wrapper,
.main-section .container .professional-details .work-experiance .availability-wrapper,
.main-section .container .professional-details .project-wrapper .availability-wrapper,
.main-section .container .professional-details .contact-me .availability-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.main-section .container .professional-details .introduction .availability-wrapper .availability,
.main-section .container .professional-details .about-me .availability-wrapper .availability,
.main-section .container .professional-details .my-services .availability-wrapper .availability,
.main-section .container .professional-details .advantages .availability-wrapper .availability,
.main-section .container .professional-details .work-experiance .availability-wrapper .availability,
.main-section .container .professional-details .project-wrapper .availability-wrapper .availability,
.main-section .container .professional-details .contact-me .availability-wrapper .availability {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.main-section .container .professional-details .introduction .availability-wrapper .availability .img-wrapper,
.main-section .container .professional-details .about-me .availability-wrapper .availability .img-wrapper,
.main-section .container .professional-details .my-services .availability-wrapper .availability .img-wrapper,
.main-section .container .professional-details .advantages .availability-wrapper .availability .img-wrapper,
.main-section .container .professional-details .work-experiance .availability-wrapper .availability .img-wrapper,
.main-section .container .professional-details .project-wrapper .availability-wrapper .availability .img-wrapper,
.main-section .container .professional-details .contact-me .availability-wrapper .availability .img-wrapper {
  max-width: 12px;
  width: 100%;
  height: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.main-section .container .professional-details .introduction .availability-wrapper .availability span,
.main-section .container .professional-details .about-me .availability-wrapper .availability span,
.main-section .container .professional-details .my-services .availability-wrapper .availability span,
.main-section .container .professional-details .advantages .availability-wrapper .availability span,
.main-section .container .professional-details .work-experiance .availability-wrapper .availability span,
.main-section .container .professional-details .project-wrapper .availability-wrapper .availability span,
.main-section .container .professional-details .contact-me .availability-wrapper .availability span {
  font-family: "Sora", "Poppins";
  font-size: 12px;
  font-weight: 400;
  color: #707070;
}
.main-section .container .professional-details .introduction .hire-btn-wrapper,
.main-section .container .professional-details .about-me .hire-btn-wrapper,
.main-section .container .professional-details .my-services .hire-btn-wrapper,
.main-section .container .professional-details .advantages .hire-btn-wrapper,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper,
.main-section .container .professional-details .contact-me .hire-btn-wrapper {
  display: flex;
  gap: 10px;
}
.main-section .container .professional-details .introduction .hire-btn-wrapper .hire-btn,
.main-section .container .professional-details .introduction .hire-btn-wrapper .resume-btn,
.main-section .container .professional-details .about-me .hire-btn-wrapper .hire-btn,
.main-section .container .professional-details .about-me .hire-btn-wrapper .resume-btn,
.main-section .container .professional-details .my-services .hire-btn-wrapper .hire-btn,
.main-section .container .professional-details .my-services .hire-btn-wrapper .resume-btn,
.main-section .container .professional-details .advantages .hire-btn-wrapper .hire-btn,
.main-section .container .professional-details .advantages .hire-btn-wrapper .resume-btn,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .hire-btn,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .resume-btn,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .hire-btn,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .resume-btn,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .hire-btn,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .resume-btn {
  background-color: #f58220;
  border: none;
  padding: 10px 20px;
  border-radius: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.main-section .container .professional-details .introduction .hire-btn-wrapper .hire-btn:hover,
.main-section .container .professional-details .introduction .hire-btn-wrapper .resume-btn:hover,
.main-section .container .professional-details .about-me .hire-btn-wrapper .hire-btn:hover,
.main-section .container .professional-details .about-me .hire-btn-wrapper .resume-btn:hover,
.main-section .container .professional-details .my-services .hire-btn-wrapper .hire-btn:hover,
.main-section .container .professional-details .my-services .hire-btn-wrapper .resume-btn:hover,
.main-section .container .professional-details .advantages .hire-btn-wrapper .hire-btn:hover,
.main-section .container .professional-details .advantages .hire-btn-wrapper .resume-btn:hover,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .hire-btn:hover,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .resume-btn:hover,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .hire-btn:hover,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .resume-btn:hover,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .hire-btn:hover,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .resume-btn:hover {
  background-color: #03a681;
}
.main-section .container .professional-details .introduction .hire-btn-wrapper .hire-btn .img-wrapper,
.main-section .container .professional-details .introduction .hire-btn-wrapper .resume-btn .img-wrapper,
.main-section .container .professional-details .about-me .hire-btn-wrapper .hire-btn .img-wrapper,
.main-section .container .professional-details .about-me .hire-btn-wrapper .resume-btn .img-wrapper,
.main-section .container .professional-details .my-services .hire-btn-wrapper .hire-btn .img-wrapper,
.main-section .container .professional-details .my-services .hire-btn-wrapper .resume-btn .img-wrapper,
.main-section .container .professional-details .advantages .hire-btn-wrapper .hire-btn .img-wrapper,
.main-section .container .professional-details .advantages .hire-btn-wrapper .resume-btn .img-wrapper,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .hire-btn .img-wrapper,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .resume-btn .img-wrapper,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .hire-btn .img-wrapper,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .resume-btn .img-wrapper,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .hire-btn .img-wrapper,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .resume-btn .img-wrapper {
  max-width: 14px;
  width: 100%;
  height: 14px;
}
.main-section .container .professional-details .introduction .hire-btn-wrapper .hire-btn span,
.main-section .container .professional-details .introduction .hire-btn-wrapper .resume-btn span,
.main-section .container .professional-details .about-me .hire-btn-wrapper .hire-btn span,
.main-section .container .professional-details .about-me .hire-btn-wrapper .resume-btn span,
.main-section .container .professional-details .my-services .hire-btn-wrapper .hire-btn span,
.main-section .container .professional-details .my-services .hire-btn-wrapper .resume-btn span,
.main-section .container .professional-details .advantages .hire-btn-wrapper .hire-btn span,
.main-section .container .professional-details .advantages .hire-btn-wrapper .resume-btn span,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .hire-btn span,
.main-section .container .professional-details .work-experiance .hire-btn-wrapper .resume-btn span,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .hire-btn span,
.main-section .container .professional-details .project-wrapper .hire-btn-wrapper .resume-btn span,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .hire-btn span,
.main-section .container .professional-details .contact-me .hire-btn-wrapper .resume-btn span {
  font-family: "Sora", "Poppins";
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
.main-section .container .professional-details .introduction .contact-details-wrapper,
.main-section .container .professional-details .about-me .contact-details-wrapper,
.main-section .container .professional-details .my-services .contact-details-wrapper,
.main-section .container .professional-details .advantages .contact-details-wrapper,
.main-section .container .professional-details .work-experiance .contact-details-wrapper,
.main-section .container .professional-details .project-wrapper .contact-details-wrapper,
.main-section .container .professional-details .contact-me .contact-details-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}
@media screen and (max-width: 1200px) {
  .main-section .container .professional-details .introduction .contact-details-wrapper,
  .main-section .container .professional-details .about-me .contact-details-wrapper,
  .main-section .container .professional-details .my-services .contact-details-wrapper,
  .main-section .container .professional-details .advantages .contact-details-wrapper,
  .main-section .container .professional-details .work-experiance .contact-details-wrapper,
  .main-section .container .professional-details .project-wrapper .contact-details-wrapper,
  .main-section .container .professional-details .contact-me .contact-details-wrapper {
    flex-direction: column;
    width: 100%;
  }
}
.main-section .container .professional-details .introduction .contact-details-wrapper .contact-details,
.main-section .container .professional-details .about-me .contact-details-wrapper .contact-details,
.main-section .container .professional-details .my-services .contact-details-wrapper .contact-details,
.main-section .container .professional-details .advantages .contact-details-wrapper .contact-details,
.main-section .container .professional-details .work-experiance .contact-details-wrapper .contact-details,
.main-section .container .professional-details .project-wrapper .contact-details-wrapper .contact-details,
.main-section .container .professional-details .contact-me .contact-details-wrapper .contact-details {
  max-width: calc(50% - 20px);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .main-section .container .professional-details .introduction .contact-details-wrapper .contact-details,
  .main-section .container .professional-details .about-me .contact-details-wrapper .contact-details,
  .main-section .container .professional-details .my-services .contact-details-wrapper .contact-details,
  .main-section .container .professional-details .advantages .contact-details-wrapper .contact-details,
  .main-section .container .professional-details .work-experiance .contact-details-wrapper .contact-details,
  .main-section .container .professional-details .project-wrapper .contact-details-wrapper .contact-details,
  .main-section .container .professional-details .contact-me .contact-details-wrapper .contact-details {
    max-width: 345px;
  }
}
.main-section .container .professional-details .introduction .contact-details-wrapper .contact-details span,
.main-section .container .professional-details .about-me .contact-details-wrapper .contact-details span,
.main-section .container .professional-details .my-services .contact-details-wrapper .contact-details span,
.main-section .container .professional-details .advantages .contact-details-wrapper .contact-details span,
.main-section .container .professional-details .work-experiance .contact-details-wrapper .contact-details span,
.main-section .container .professional-details .project-wrapper .contact-details-wrapper .contact-details span,
.main-section .container .professional-details .contact-me .contact-details-wrapper .contact-details span {
  font-family: "Sora", "Poppins";
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.main-section .container .professional-details .introduction .contact-details-wrapper .contact-details span:first-child,
.main-section .container .professional-details .about-me .contact-details-wrapper .contact-details span:first-child,
.main-section .container .professional-details .my-services .contact-details-wrapper .contact-details span:first-child,
.main-section .container .professional-details .advantages .contact-details-wrapper .contact-details span:first-child,
.main-section .container .professional-details .work-experiance .contact-details-wrapper .contact-details span:first-child,
.main-section .container .professional-details .project-wrapper .contact-details-wrapper .contact-details span:first-child,
.main-section .container .professional-details .contact-me .contact-details-wrapper .contact-details span:first-child {
  color: #707070;
  width: 50%;
}
.main-section .container .professional-details .introduction .contact-details-wrapper .contact-details span:last-child,
.main-section .container .professional-details .about-me .contact-details-wrapper .contact-details span:last-child,
.main-section .container .professional-details .my-services .contact-details-wrapper .contact-details span:last-child,
.main-section .container .professional-details .advantages .contact-details-wrapper .contact-details span:last-child,
.main-section .container .professional-details .work-experiance .contact-details-wrapper .contact-details span:last-child,
.main-section .container .professional-details .project-wrapper .contact-details-wrapper .contact-details span:last-child,
.main-section .container .professional-details .contact-me .contact-details-wrapper .contact-details span:last-child {
  color: #000;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .contact-details-wrapper .contact-details span:last-child,
  .main-section .container .professional-details .about-me .contact-details-wrapper .contact-details span:last-child,
  .main-section .container .professional-details .my-services .contact-details-wrapper .contact-details span:last-child,
  .main-section .container .professional-details .advantages .contact-details-wrapper .contact-details span:last-child,
  .main-section .container .professional-details .work-experiance .contact-details-wrapper .contact-details span:last-child,
  .main-section .container .professional-details .project-wrapper .contact-details-wrapper .contact-details span:last-child,
  .main-section .container .professional-details .contact-me .contact-details-wrapper .contact-details span:last-child {
    padding-left: 0;
  }
}
.main-section .container .professional-details .introduction .contact-details-wrapper .contact-details span:last-child a,
.main-section .container .professional-details .about-me .contact-details-wrapper .contact-details span:last-child a,
.main-section .container .professional-details .my-services .contact-details-wrapper .contact-details span:last-child a,
.main-section .container .professional-details .advantages .contact-details-wrapper .contact-details span:last-child a,
.main-section .container .professional-details .work-experiance .contact-details-wrapper .contact-details span:last-child a,
.main-section .container .professional-details .project-wrapper .contact-details-wrapper .contact-details span:last-child a,
.main-section .container .professional-details .contact-me .contact-details-wrapper .contact-details span:last-child a {
  color: #f58220;
}
.main-section .container .professional-details .introduction .experience-projects-wrapper,
.main-section .container .professional-details .about-me .experience-projects-wrapper,
.main-section .container .professional-details .my-services .experience-projects-wrapper,
.main-section .container .professional-details .advantages .experience-projects-wrapper,
.main-section .container .professional-details .work-experiance .experience-projects-wrapper,
.main-section .container .professional-details .project-wrapper .experience-projects-wrapper,
.main-section .container .professional-details .contact-me .experience-projects-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 100px;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .experience-projects-wrapper,
  .main-section .container .professional-details .about-me .experience-projects-wrapper,
  .main-section .container .professional-details .my-services .experience-projects-wrapper,
  .main-section .container .professional-details .advantages .experience-projects-wrapper,
  .main-section .container .professional-details .work-experiance .experience-projects-wrapper,
  .main-section .container .professional-details .project-wrapper .experience-projects-wrapper,
  .main-section .container .professional-details .contact-me .experience-projects-wrapper {
    gap: 20px;
  }
}
.main-section .container .professional-details .introduction .experience-projects-wrapper .experience-projects,
.main-section .container .professional-details .about-me .experience-projects-wrapper .experience-projects,
.main-section .container .professional-details .my-services .experience-projects-wrapper .experience-projects,
.main-section .container .professional-details .advantages .experience-projects-wrapper .experience-projects,
.main-section .container .professional-details .work-experiance .experience-projects-wrapper .experience-projects,
.main-section .container .professional-details .project-wrapper .experience-projects-wrapper .experience-projects,
.main-section .container .professional-details .contact-me .experience-projects-wrapper .experience-projects {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
.main-section .container .professional-details .introduction .experience-projects-wrapper .experience-projects span:first-child,
.main-section .container .professional-details .about-me .experience-projects-wrapper .experience-projects span:first-child,
.main-section .container .professional-details .my-services .experience-projects-wrapper .experience-projects span:first-child,
.main-section .container .professional-details .advantages .experience-projects-wrapper .experience-projects span:first-child,
.main-section .container .professional-details .work-experiance .experience-projects-wrapper .experience-projects span:first-child,
.main-section .container .professional-details .project-wrapper .experience-projects-wrapper .experience-projects span:first-child,
.main-section .container .professional-details .contact-me .experience-projects-wrapper .experience-projects span:first-child {
  color: #f58220;
  font-family: "Sora", "Poppins";
  font-size: 40px;
  font-weight: 700;
}
.main-section .container .professional-details .introduction .experience-projects-wrapper .experience-projects span:last-child,
.main-section .container .professional-details .about-me .experience-projects-wrapper .experience-projects span:last-child,
.main-section .container .professional-details .my-services .experience-projects-wrapper .experience-projects span:last-child,
.main-section .container .professional-details .advantages .experience-projects-wrapper .experience-projects span:last-child,
.main-section .container .professional-details .work-experiance .experience-projects-wrapper .experience-projects span:last-child,
.main-section .container .professional-details .project-wrapper .experience-projects-wrapper .experience-projects span:last-child,
.main-section .container .professional-details .contact-me .experience-projects-wrapper .experience-projects span:last-child {
  color: #707070;
  font-family: "Sora", "Poppins";
  font-size: 16px;
  font-weight: 400;
}
.main-section .container .professional-details .introduction .service-provided,
.main-section .container .professional-details .about-me .service-provided,
.main-section .container .professional-details .my-services .service-provided,
.main-section .container .professional-details .advantages .service-provided,
.main-section .container .professional-details .work-experiance .service-provided,
.main-section .container .professional-details .project-wrapper .service-provided,
.main-section .container .professional-details .contact-me .service-provided {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .main-section .container .professional-details .introduction .service-provided,
  .main-section .container .professional-details .about-me .service-provided,
  .main-section .container .professional-details .my-services .service-provided,
  .main-section .container .professional-details .advantages .service-provided,
  .main-section .container .professional-details .work-experiance .service-provided,
  .main-section .container .professional-details .project-wrapper .service-provided,
  .main-section .container .professional-details .contact-me .service-provided {
    flex-direction: column;
  }
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card,
.main-section .container .professional-details .about-me .service-provided .service-provided-card,
.main-section .container .professional-details .my-services .service-provided .service-provided-card,
.main-section .container .professional-details .advantages .service-provided .service-provided-card,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card {
  max-width: calc(50% - 15px);
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 40px;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .main-section .container .professional-details .introduction .service-provided .service-provided-card,
  .main-section .container .professional-details .about-me .service-provided .service-provided-card,
  .main-section .container .professional-details .my-services .service-provided .service-provided-card,
  .main-section .container .professional-details .advantages .service-provided .service-provided-card,
  .main-section .container .professional-details .work-experiance .service-provided .service-provided-card,
  .main-section .container .professional-details .project-wrapper .service-provided .service-provided-card,
  .main-section .container .professional-details .contact-me .service-provided .service-provided-card {
    max-width: 100%;
    width: 100%;
  }
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card:hover,
.main-section .container .professional-details .about-me .service-provided .service-provided-card:hover,
.main-section .container .professional-details .my-services .service-provided .service-provided-card:hover,
.main-section .container .professional-details .advantages .service-provided .service-provided-card:hover,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card:hover,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card:hover,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card:hover {
  border: 1px solid #f58220;
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card:hover .service-provided-count span,
.main-section .container .professional-details .about-me .service-provided .service-provided-card:hover .service-provided-count span,
.main-section .container .professional-details .my-services .service-provided .service-provided-card:hover .service-provided-count span,
.main-section .container .professional-details .advantages .service-provided .service-provided-card:hover .service-provided-count span,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card:hover .service-provided-count span,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card:hover .service-provided-count span,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card:hover .service-provided-count span {
  -webkit-text-stroke-color: #f58220;
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card .service-provided-count,
.main-section .container .professional-details .about-me .service-provided .service-provided-card .service-provided-count,
.main-section .container .professional-details .my-services .service-provided .service-provided-card .service-provided-count,
.main-section .container .professional-details .advantages .service-provided .service-provided-card .service-provided-count,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card .service-provided-count,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card .service-provided-count,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card .service-provided-count {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card .service-provided-count span,
.main-section .container .professional-details .about-me .service-provided .service-provided-card .service-provided-count span,
.main-section .container .professional-details .my-services .service-provided .service-provided-card .service-provided-count span,
.main-section .container .professional-details .advantages .service-provided .service-provided-card .service-provided-count span,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card .service-provided-count span,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card .service-provided-count span,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card .service-provided-count span {
  font-family: "Sora", "Poppins";
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #707070;
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card .service-provided-count .img-wrapper,
.main-section .container .professional-details .about-me .service-provided .service-provided-card .service-provided-count .img-wrapper,
.main-section .container .professional-details .my-services .service-provided .service-provided-card .service-provided-count .img-wrapper,
.main-section .container .professional-details .advantages .service-provided .service-provided-card .service-provided-count .img-wrapper,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card .service-provided-count .img-wrapper,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card .service-provided-count .img-wrapper,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card .service-provided-count .img-wrapper {
  max-width: 40px;
  width: 100%;
  height: 40px;
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card .heading,
.main-section .container .professional-details .about-me .service-provided .service-provided-card .heading,
.main-section .container .professional-details .my-services .service-provided .service-provided-card .heading,
.main-section .container .professional-details .advantages .service-provided .service-provided-card .heading,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card .heading,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card .heading,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card .heading {
  font-family: "Sora", "Poppins";
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  color: #000;
  position: unset;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
.main-section .container .professional-details .introduction .service-provided .service-provided-card .content,
.main-section .container .professional-details .about-me .service-provided .service-provided-card .content,
.main-section .container .professional-details .my-services .service-provided .service-provided-card .content,
.main-section .container .professional-details .advantages .service-provided .service-provided-card .content,
.main-section .container .professional-details .work-experiance .service-provided .service-provided-card .content,
.main-section .container .professional-details .project-wrapper .service-provided .service-provided-card .content,
.main-section .container .professional-details .contact-me .service-provided .service-provided-card .content {
  font-family: "Sora", "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #707070;
}
.main-section .container .professional-details .introduction .skills-wrapper,
.main-section .container .professional-details .about-me .skills-wrapper,
.main-section .container .professional-details .my-services .skills-wrapper,
.main-section .container .professional-details .advantages .skills-wrapper,
.main-section .container .professional-details .work-experiance .skills-wrapper,
.main-section .container .professional-details .project-wrapper .skills-wrapper,
.main-section .container .professional-details .contact-me .skills-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .skills-wrapper,
  .main-section .container .professional-details .about-me .skills-wrapper,
  .main-section .container .professional-details .my-services .skills-wrapper,
  .main-section .container .professional-details .advantages .skills-wrapper,
  .main-section .container .professional-details .work-experiance .skills-wrapper,
  .main-section .container .professional-details .project-wrapper .skills-wrapper,
  .main-section .container .professional-details .contact-me .skills-wrapper {
    flex-direction: column;
  }
}
.main-section .container .professional-details .introduction .skills-wrapper .skills,
.main-section .container .professional-details .about-me .skills-wrapper .skills,
.main-section .container .professional-details .my-services .skills-wrapper .skills,
.main-section .container .professional-details .advantages .skills-wrapper .skills,
.main-section .container .professional-details .work-experiance .skills-wrapper .skills,
.main-section .container .professional-details .project-wrapper .skills-wrapper .skills,
.main-section .container .professional-details .contact-me .skills-wrapper .skills {
  max-width: calc(50% - 10px);
  width: 100%;
}
.main-section .container .professional-details .introduction .skills-wrapper .skills .skill,
.main-section .container .professional-details .about-me .skills-wrapper .skills .skill,
.main-section .container .professional-details .my-services .skills-wrapper .skills .skill,
.main-section .container .professional-details .advantages .skills-wrapper .skills .skill,
.main-section .container .professional-details .work-experiance .skills-wrapper .skills .skill,
.main-section .container .professional-details .project-wrapper .skills-wrapper .skills .skill,
.main-section .container .professional-details .contact-me .skills-wrapper .skills .skill {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5px;
}
.main-section .container .professional-details .introduction .skills-wrapper .skills .skill .skill-name,
.main-section .container .professional-details .about-me .skills-wrapper .skills .skill .skill-name,
.main-section .container .professional-details .my-services .skills-wrapper .skills .skill .skill-name,
.main-section .container .professional-details .advantages .skills-wrapper .skills .skill .skill-name,
.main-section .container .professional-details .work-experiance .skills-wrapper .skills .skill .skill-name,
.main-section .container .professional-details .project-wrapper .skills-wrapper .skills .skill .skill-name,
.main-section .container .professional-details .contact-me .skills-wrapper .skills .skill .skill-name {
  font-family: "Sora", "Poppins";
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  max-width: 30px;
  width: 100%;
  height: 30px;
}
.main-section .container .professional-details .introduction .skills-wrapper .skills .skill .skill-bar,
.main-section .container .professional-details .about-me .skills-wrapper .skills .skill .skill-bar,
.main-section .container .professional-details .my-services .skills-wrapper .skills .skill .skill-bar,
.main-section .container .professional-details .advantages .skills-wrapper .skills .skill .skill-bar,
.main-section .container .professional-details .work-experiance .skills-wrapper .skills .skill .skill-bar,
.main-section .container .professional-details .project-wrapper .skills-wrapper .skills .skill .skill-bar,
.main-section .container .professional-details .contact-me .skills-wrapper .skills .skill .skill-bar {
  height: 4px;
  background: #cacaca;
  border-radius: 8px;
}
.main-section .container .professional-details .introduction .skills-wrapper .skills .skill .skill-bar .skill-per,
.main-section .container .professional-details .about-me .skills-wrapper .skills .skill .skill-bar .skill-per,
.main-section .container .professional-details .my-services .skills-wrapper .skills .skill .skill-bar .skill-per,
.main-section .container .professional-details .advantages .skills-wrapper .skills .skill .skill-bar .skill-per,
.main-section .container .professional-details .work-experiance .skills-wrapper .skills .skill .skill-bar .skill-per,
.main-section .container .professional-details .project-wrapper .skills-wrapper .skills .skill .skill-bar .skill-per,
.main-section .container .professional-details .contact-me .skills-wrapper .skills .skill .skill-bar .skill-per {
  height: 4px;
  background-color: #f58220;
  border-radius: 8px;
  width: 0;
  position: relative;
  transition: 1s linear;
}
.main-section .container .professional-details .introduction .skills-wrapper .skills .skill .skill-bar .skill-per::before,
.main-section .container .professional-details .about-me .skills-wrapper .skills .skill .skill-bar .skill-per::before,
.main-section .container .professional-details .my-services .skills-wrapper .skills .skill .skill-bar .skill-per::before,
.main-section .container .professional-details .advantages .skills-wrapper .skills .skill .skill-bar .skill-per::before,
.main-section .container .professional-details .work-experiance .skills-wrapper .skills .skill .skill-bar .skill-per::before,
.main-section .container .professional-details .project-wrapper .skills-wrapper .skills .skill .skill-bar .skill-per::before,
.main-section .container .professional-details .contact-me .skills-wrapper .skills .skill .skill-bar .skill-per::before {
  content: attr(per);
  position: absolute;
  background-color: #f58220;
  font-family: "Sora", "Poppins";
  color: #fff;
  font-size: 12px;
  top: -35px;
  right: 0;
  transform: translateX(50%);
  border-radius: 200px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.main-section .container .professional-details .introduction .skills-wrapper .skills .skill .skill-bar .skill-per::after,
.main-section .container .professional-details .about-me .skills-wrapper .skills .skill .skill-bar .skill-per::after,
.main-section .container .professional-details .my-services .skills-wrapper .skills .skill .skill-bar .skill-per::after,
.main-section .container .professional-details .advantages .skills-wrapper .skills .skill .skill-bar .skill-per::after,
.main-section .container .professional-details .work-experiance .skills-wrapper .skills .skill .skill-bar .skill-per::after,
.main-section .container .professional-details .project-wrapper .skills-wrapper .skills .skill .skill-bar .skill-per::after,
.main-section .container .professional-details .contact-me .skills-wrapper .skills .skill .skill-bar .skill-per::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #f58220;
  top: -16.5px;
  right: 0;
  transform: translateX(50%) rotate(45deg);
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .skills-wrapper .skills,
  .main-section .container .professional-details .about-me .skills-wrapper .skills,
  .main-section .container .professional-details .my-services .skills-wrapper .skills,
  .main-section .container .professional-details .advantages .skills-wrapper .skills,
  .main-section .container .professional-details .work-experiance .skills-wrapper .skills,
  .main-section .container .professional-details .project-wrapper .skills-wrapper .skills,
  .main-section .container .professional-details .contact-me .skills-wrapper .skills {
    max-width: 100%;
  }
}
.main-section .container .professional-details .introduction .work-experiance-wrapper,
.main-section .container .professional-details .about-me .work-experiance-wrapper,
.main-section .container .professional-details .my-services .work-experiance-wrapper,
.main-section .container .professional-details .advantages .work-experiance-wrapper,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper,
.main-section .container .professional-details .contact-me .work-experiance-wrapper {
  width: 100%;
  padding-top: 20px;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .work-experiance-wrapper,
  .main-section .container .professional-details .about-me .work-experiance-wrapper,
  .main-section .container .professional-details .my-services .work-experiance-wrapper,
  .main-section .container .professional-details .advantages .work-experiance-wrapper,
  .main-section .container .professional-details .work-experiance .work-experiance-wrapper,
  .main-section .container .professional-details .project-wrapper .work-experiance-wrapper,
  .main-section .container .professional-details .contact-me .work-experiance-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 20px 0;
  }
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance {
  display: flex;
  flex-direction: row;
  align-content: flex-end;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .work-experiance-wrapper .experiance,
  .main-section .container .professional-details .about-me .work-experiance-wrapper .experiance,
  .main-section .container .professional-details .my-services .work-experiance-wrapper .experiance,
  .main-section .container .professional-details .advantages .work-experiance-wrapper .experiance,
  .main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance,
  .main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance,
  .main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance {
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    gap: 20px;
  }
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card {
  display: flex;
  width: 100%;
  padding: 0;
  height: auto;
  position: relative;
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:first-child,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:first-child,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:first-child,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:first-child,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:first-child,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:first-child,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:first-child {
  border-radius: 0;
  box-shadow: none;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  max-width: 40%;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:first-child,
  .main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:first-child,
  .main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:first-child,
  .main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:first-child,
  .main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:first-child,
  .main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:first-child,
  .main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:first-child {
    max-width: 100%;
    border-right: none;
    gap: 0;
  }
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:first-child::after,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:first-child::after,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:first-child::after,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:first-child::after,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:first-child::after,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:first-child::after,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:first-child::after {
  content: "";
  padding: 3px;
  border-radius: 200px;
  background-color: #f58220;
  position: absolute;
  top: 0;
  right: -3.5px;
  z-index: 5;
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:first-child span:first-child,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:first-child span:first-child,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:first-child span:first-child,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:first-child span:first-child,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:first-child span:first-child,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:first-child span:first-child,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:first-child span:first-child {
  font-size: 16px;
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:first-child span:last-child,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:first-child span:last-child,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:first-child span:last-child,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:first-child span:last-child,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:first-child span:last-child,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:first-child span:last-child,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:first-child span:last-child {
  font-size: 14px;
  color: #f58220;
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:last-child,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:last-child,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:last-child,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:last-child,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:last-child,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:last-child,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:last-child {
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 30px 80px;
  gap: 10px;
  max-width: 60%;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:last-child,
  .main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:last-child,
  .main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:last-child,
  .main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:last-child,
  .main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:last-child,
  .main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:last-child,
  .main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:last-child {
    max-width: 100%;
    padding: 0;
    gap: 0;
  }
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:last-child span:first-child,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:last-child span:first-child,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:last-child span:first-child,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:last-child span:first-child,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:last-child span:first-child,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:last-child span:first-child,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:last-child span:first-child {
  font-size: 16px;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:last-child span:first-child,
  .main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:last-child span:first-child,
  .main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:last-child span:first-child,
  .main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:last-child span:first-child,
  .main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:last-child span:first-child,
  .main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:last-child span:first-child,
  .main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:last-child span:first-child {
    font-size: 14px;
  }
}
.main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:last-child span:last-child,
.main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:last-child span:last-child,
.main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:last-child span:last-child,
.main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:last-child span:last-child,
.main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:last-child span:last-child,
.main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:last-child span:last-child,
.main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:last-child span:last-child {
  font-size: 14px;
  color: #707070;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .work-experiance-wrapper .experiance .card:last-child span:last-child,
  .main-section .container .professional-details .about-me .work-experiance-wrapper .experiance .card:last-child span:last-child,
  .main-section .container .professional-details .my-services .work-experiance-wrapper .experiance .card:last-child span:last-child,
  .main-section .container .professional-details .advantages .work-experiance-wrapper .experiance .card:last-child span:last-child,
  .main-section .container .professional-details .work-experiance .work-experiance-wrapper .experiance .card:last-child span:last-child,
  .main-section .container .professional-details .project-wrapper .work-experiance-wrapper .experiance .card:last-child span:last-child,
  .main-section .container .professional-details .contact-me .work-experiance-wrapper .experiance .card:last-child span:last-child {
    font-size: 12px;
  }
}
.main-section .container .professional-details .introduction .projects-inner-wrapper,
.main-section .container .professional-details .introduction .more-projects,
.main-section .container .professional-details .about-me .projects-inner-wrapper,
.main-section .container .professional-details .about-me .more-projects,
.main-section .container .professional-details .my-services .projects-inner-wrapper,
.main-section .container .professional-details .my-services .more-projects,
.main-section .container .professional-details .advantages .projects-inner-wrapper,
.main-section .container .professional-details .advantages .more-projects,
.main-section .container .professional-details .work-experiance .projects-inner-wrapper,
.main-section .container .professional-details .work-experiance .more-projects,
.main-section .container .professional-details .project-wrapper .projects-inner-wrapper,
.main-section .container .professional-details .project-wrapper .more-projects,
.main-section .container .professional-details .contact-me .projects-inner-wrapper,
.main-section .container .professional-details .contact-me .more-projects {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .projects-inner-wrapper,
  .main-section .container .professional-details .introduction .more-projects,
  .main-section .container .professional-details .about-me .projects-inner-wrapper,
  .main-section .container .professional-details .about-me .more-projects,
  .main-section .container .professional-details .my-services .projects-inner-wrapper,
  .main-section .container .professional-details .my-services .more-projects,
  .main-section .container .professional-details .advantages .projects-inner-wrapper,
  .main-section .container .professional-details .advantages .more-projects,
  .main-section .container .professional-details .work-experiance .projects-inner-wrapper,
  .main-section .container .professional-details .work-experiance .more-projects,
  .main-section .container .professional-details .project-wrapper .projects-inner-wrapper,
  .main-section .container .professional-details .project-wrapper .more-projects,
  .main-section .container .professional-details .contact-me .projects-inner-wrapper,
  .main-section .container .professional-details .contact-me .more-projects {
    flex-direction: column;
  }
}
.main-section .container .professional-details .introduction .projects-inner-wrapper .projects,
.main-section .container .professional-details .introduction .more-projects .projects,
.main-section .container .professional-details .about-me .projects-inner-wrapper .projects,
.main-section .container .professional-details .about-me .more-projects .projects,
.main-section .container .professional-details .my-services .projects-inner-wrapper .projects,
.main-section .container .professional-details .my-services .more-projects .projects,
.main-section .container .professional-details .advantages .projects-inner-wrapper .projects,
.main-section .container .professional-details .advantages .more-projects .projects,
.main-section .container .professional-details .work-experiance .projects-inner-wrapper .projects,
.main-section .container .professional-details .work-experiance .more-projects .projects,
.main-section .container .professional-details .project-wrapper .projects-inner-wrapper .projects,
.main-section .container .professional-details .project-wrapper .more-projects .projects,
.main-section .container .professional-details .contact-me .projects-inner-wrapper .projects,
.main-section .container .professional-details .contact-me .more-projects .projects {
  max-width: calc(50% - 10px);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: inherit;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 520px) {
  .main-section .container .professional-details .introduction .projects-inner-wrapper .projects,
  .main-section .container .professional-details .introduction .more-projects .projects,
  .main-section .container .professional-details .about-me .projects-inner-wrapper .projects,
  .main-section .container .professional-details .about-me .more-projects .projects,
  .main-section .container .professional-details .my-services .projects-inner-wrapper .projects,
  .main-section .container .professional-details .my-services .more-projects .projects,
  .main-section .container .professional-details .advantages .projects-inner-wrapper .projects,
  .main-section .container .professional-details .advantages .more-projects .projects,
  .main-section .container .professional-details .work-experiance .projects-inner-wrapper .projects,
  .main-section .container .professional-details .work-experiance .more-projects .projects,
  .main-section .container .professional-details .project-wrapper .projects-inner-wrapper .projects,
  .main-section .container .professional-details .project-wrapper .more-projects .projects,
  .main-section .container .professional-details .contact-me .projects-inner-wrapper .projects,
  .main-section .container .professional-details .contact-me .more-projects .projects {
    max-width: 100%;
  }
}
.main-section .container .professional-details .introduction .projects-inner-wrapper .projects a,
.main-section .container .professional-details .introduction .more-projects .projects a,
.main-section .container .professional-details .about-me .projects-inner-wrapper .projects a,
.main-section .container .professional-details .about-me .more-projects .projects a,
.main-section .container .professional-details .my-services .projects-inner-wrapper .projects a,
.main-section .container .professional-details .my-services .more-projects .projects a,
.main-section .container .professional-details .advantages .projects-inner-wrapper .projects a,
.main-section .container .professional-details .advantages .more-projects .projects a,
.main-section .container .professional-details .work-experiance .projects-inner-wrapper .projects a,
.main-section .container .professional-details .work-experiance .more-projects .projects a,
.main-section .container .professional-details .project-wrapper .projects-inner-wrapper .projects a,
.main-section .container .professional-details .project-wrapper .more-projects .projects a,
.main-section .container .professional-details .contact-me .projects-inner-wrapper .projects a,
.main-section .container .professional-details .contact-me .more-projects .projects a {
  color: #000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
.main-section .container .professional-details .introduction .projects-inner-wrapper .projects a:hover .projects-name,
.main-section .container .professional-details .introduction .more-projects .projects a:hover .projects-name,
.main-section .container .professional-details .about-me .projects-inner-wrapper .projects a:hover .projects-name,
.main-section .container .professional-details .about-me .more-projects .projects a:hover .projects-name,
.main-section .container .professional-details .my-services .projects-inner-wrapper .projects a:hover .projects-name,
.main-section .container .professional-details .my-services .more-projects .projects a:hover .projects-name,
.main-section .container .professional-details .advantages .projects-inner-wrapper .projects a:hover .projects-name,
.main-section .container .professional-details .advantages .more-projects .projects a:hover .projects-name,
.main-section .container .professional-details .work-experiance .projects-inner-wrapper .projects a:hover .projects-name,
.main-section .container .professional-details .work-experiance .more-projects .projects a:hover .projects-name,
.main-section .container .professional-details .project-wrapper .projects-inner-wrapper .projects a:hover .projects-name,
.main-section .container .professional-details .project-wrapper .more-projects .projects a:hover .projects-name,
.main-section .container .professional-details .contact-me .projects-inner-wrapper .projects a:hover .projects-name,
.main-section .container .professional-details .contact-me .more-projects .projects a:hover .projects-name {
  border-color: #f58220;
  color: #f58220;
}
.main-section .container .professional-details .introduction .projects-inner-wrapper .projects a:hover .card,
.main-section .container .professional-details .introduction .more-projects .projects a:hover .card,
.main-section .container .professional-details .about-me .projects-inner-wrapper .projects a:hover .card,
.main-section .container .professional-details .about-me .more-projects .projects a:hover .card,
.main-section .container .professional-details .my-services .projects-inner-wrapper .projects a:hover .card,
.main-section .container .professional-details .my-services .more-projects .projects a:hover .card,
.main-section .container .professional-details .advantages .projects-inner-wrapper .projects a:hover .card,
.main-section .container .professional-details .advantages .more-projects .projects a:hover .card,
.main-section .container .professional-details .work-experiance .projects-inner-wrapper .projects a:hover .card,
.main-section .container .professional-details .work-experiance .more-projects .projects a:hover .card,
.main-section .container .professional-details .project-wrapper .projects-inner-wrapper .projects a:hover .card,
.main-section .container .professional-details .project-wrapper .more-projects .projects a:hover .card,
.main-section .container .professional-details .contact-me .projects-inner-wrapper .projects a:hover .card,
.main-section .container .professional-details .contact-me .more-projects .projects a:hover .card {
  border-color: #f58220;
}
.main-section .container .professional-details .introduction .projects-inner-wrapper .projects a .projects-name,
.main-section .container .professional-details .introduction .more-projects .projects a .projects-name,
.main-section .container .professional-details .about-me .projects-inner-wrapper .projects a .projects-name,
.main-section .container .professional-details .about-me .more-projects .projects a .projects-name,
.main-section .container .professional-details .my-services .projects-inner-wrapper .projects a .projects-name,
.main-section .container .professional-details .my-services .more-projects .projects a .projects-name,
.main-section .container .professional-details .advantages .projects-inner-wrapper .projects a .projects-name,
.main-section .container .professional-details .advantages .more-projects .projects a .projects-name,
.main-section .container .professional-details .work-experiance .projects-inner-wrapper .projects a .projects-name,
.main-section .container .professional-details .work-experiance .more-projects .projects a .projects-name,
.main-section .container .professional-details .project-wrapper .projects-inner-wrapper .projects a .projects-name,
.main-section .container .professional-details .project-wrapper .more-projects .projects a .projects-name,
.main-section .container .professional-details .contact-me .projects-inner-wrapper .projects a .projects-name,
.main-section .container .professional-details .contact-me .more-projects .projects a .projects-name {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #d9d9d9;
  border-radius: 8px 8px 0 0;
  padding: 5px 10px;
  background-color: #fff;
  border-bottom: none;
  z-index: 5;
  transition: all 0.2s ease-in-out;
  max-width: 200px;
  width: 100%;
}
.main-section .container .professional-details .introduction .projects-inner-wrapper .projects a .card,
.main-section .container .professional-details .introduction .more-projects .projects a .card,
.main-section .container .professional-details .about-me .projects-inner-wrapper .projects a .card,
.main-section .container .professional-details .about-me .more-projects .projects a .card,
.main-section .container .professional-details .my-services .projects-inner-wrapper .projects a .card,
.main-section .container .professional-details .my-services .more-projects .projects a .card,
.main-section .container .professional-details .advantages .projects-inner-wrapper .projects a .card,
.main-section .container .professional-details .advantages .more-projects .projects a .card,
.main-section .container .professional-details .work-experiance .projects-inner-wrapper .projects a .card,
.main-section .container .professional-details .work-experiance .more-projects .projects a .card,
.main-section .container .professional-details .project-wrapper .projects-inner-wrapper .projects a .card,
.main-section .container .professional-details .project-wrapper .more-projects .projects a .card,
.main-section .container .professional-details .contact-me .projects-inner-wrapper .projects a .card,
.main-section .container .professional-details .contact-me .more-projects .projects a .card {
  border: 1px solid #d9d9d9;
  box-shadow: none;
  overflow: hidden;
  border-radius: 0 10px 10px 10px;
  margin-top: -1px;
  transition: all 0.2s ease-in-out;
}
.main-section .container .professional-details .introduction .more-projects,
.main-section .container .professional-details .about-me .more-projects,
.main-section .container .professional-details .my-services .more-projects,
.main-section .container .professional-details .advantages .more-projects,
.main-section .container .professional-details .work-experiance .more-projects,
.main-section .container .professional-details .project-wrapper .more-projects,
.main-section .container .professional-details .contact-me .more-projects {
  display: none;
}
.main-section .container .professional-details .introduction .more-projects.open,
.main-section .container .professional-details .about-me .more-projects.open,
.main-section .container .professional-details .my-services .more-projects.open,
.main-section .container .professional-details .advantages .more-projects.open,
.main-section .container .professional-details .work-experiance .more-projects.open,
.main-section .container .professional-details .project-wrapper .more-projects.open,
.main-section .container .professional-details .contact-me .more-projects.open {
  display: flex;
}
.main-section .container .professional-details .introduction .show-more-projects-btn-wrapper,
.main-section .container .professional-details .about-me .show-more-projects-btn-wrapper,
.main-section .container .professional-details .my-services .show-more-projects-btn-wrapper,
.main-section .container .professional-details .advantages .show-more-projects-btn-wrapper,
.main-section .container .professional-details .work-experiance .show-more-projects-btn-wrapper,
.main-section .container .professional-details .project-wrapper .show-more-projects-btn-wrapper,
.main-section .container .professional-details .contact-me .show-more-projects-btn-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.main-section .container .professional-details .introduction .show-more-projects-btn-wrapper .show-more-projects-btn,
.main-section .container .professional-details .about-me .show-more-projects-btn-wrapper .show-more-projects-btn,
.main-section .container .professional-details .my-services .show-more-projects-btn-wrapper .show-more-projects-btn,
.main-section .container .professional-details .advantages .show-more-projects-btn-wrapper .show-more-projects-btn,
.main-section .container .professional-details .work-experiance .show-more-projects-btn-wrapper .show-more-projects-btn,
.main-section .container .professional-details .project-wrapper .show-more-projects-btn-wrapper .show-more-projects-btn,
.main-section .container .professional-details .contact-me .show-more-projects-btn-wrapper .show-more-projects-btn {
  background-color: #f58220;
  border: none;
  padding: 10px 20px;
  border-radius: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper,
.main-section .container .professional-details .about-me .contact-me-form-wrapper,
.main-section .container .professional-details .my-services .contact-me-form-wrapper,
.main-section .container .professional-details .advantages .contact-me-form-wrapper,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper {
  width: 100%;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper form,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper input,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper input,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper input,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper input,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper input,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper input,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper input {
  border: 1px solid #d9d9d9;
  height: 40px;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  color: #707070;
  border-radius: 4px;
  outline: none;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper input:active, .main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper input:hover, .main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper input:focus,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper input:active,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper input:hover,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper input:focus,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper input:active,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper input:hover,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper input:focus,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper input:active,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper input:hover,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper input:focus,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper input:active,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper input:hover,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper input:focus,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper input:active,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper input:hover,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper input:focus,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper input:active,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper input:hover,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper input:focus {
  border: 1px solid #f58220;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper textarea,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper textarea,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper textarea,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper textarea,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper textarea,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper textarea,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper textarea {
  border: 1px solid #d9d9d9;
  height: 150px;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  color: #707070;
  border-radius: 4px;
  outline: none;
  resize: none;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper textarea:active, .main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper textarea:hover, .main-section .container .professional-details .introduction .contact-me-form-wrapper form .input-wrapper textarea:focus,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper textarea:active,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper textarea:hover,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .input-wrapper textarea:focus,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper textarea:active,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper textarea:hover,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .input-wrapper textarea:focus,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper textarea:active,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper textarea:hover,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .input-wrapper textarea:focus,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper textarea:active,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper textarea:hover,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .input-wrapper textarea:focus,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper textarea:active,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper textarea:hover,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .input-wrapper textarea:focus,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper textarea:active,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper textarea:hover,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .input-wrapper textarea:focus {
  border: 1px solid #f58220;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper form .send-message-btn-wrapper,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .send-message-btn-wrapper,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .send-message-btn-wrapper,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .send-message-btn-wrapper,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .send-message-btn-wrapper,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .send-message-btn-wrapper,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .send-message-btn-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: flex-end;
}
.main-section .container .professional-details .introduction .contact-me-form-wrapper form .send-message-btn-wrapper .send-message-btn,
.main-section .container .professional-details .about-me .contact-me-form-wrapper form .send-message-btn-wrapper .send-message-btn,
.main-section .container .professional-details .my-services .contact-me-form-wrapper form .send-message-btn-wrapper .send-message-btn,
.main-section .container .professional-details .advantages .contact-me-form-wrapper form .send-message-btn-wrapper .send-message-btn,
.main-section .container .professional-details .work-experiance .contact-me-form-wrapper form .send-message-btn-wrapper .send-message-btn,
.main-section .container .professional-details .project-wrapper .contact-me-form-wrapper form .send-message-btn-wrapper .send-message-btn,
.main-section .container .professional-details .contact-me .contact-me-form-wrapper form .send-message-btn-wrapper .send-message-btn {
  background-color: #f58220;
  border: none;
  padding: 10px 20px;
  border-radius: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
}
.main-section .container .navigation-wrapper {
  max-width: 80px;
  width: 100%;
  border: 1px solid #e8e8e8;
  height: 500px;
  border-radius: 200px;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .main-section .container .navigation-wrapper {
    display: none;
  }
}
.main-section .container .navigation-wrapper .navigation-brand-wrapper {
  border: 1px solid #e8e8e8;
  border-radius: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.main-section .container .navigation-wrapper .navigation-brand-wrapper a {
  padding: 15px;
}
.main-section .container .navigation-wrapper .links-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: auto;
}
.main-section .container .navigation-wrapper .links-wrapper .links {
  max-width: 35px;
  width: 100%;
  height: 35px;
  padding: 10px;
  border-radius: 200px;
  position: relative;
}
.main-section .container .navigation-wrapper .links-wrapper .links::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 0;
  right: 40px;
  background-color: #f58220;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.main-section .container .navigation-wrapper .links-wrapper .links.active {
  background-color: #fff;
}
.main-section .container .navigation-wrapper .links-wrapper .links:hover::after {
  opacity: 1;
  transform: translateY(-4px);
}

.modal-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 15;
  padding: 20px;
  overflow: auto;
  display: none;
}
.modal-wrapper.open {
  display: flex;
}
.modal-wrapper .hire-me-modal-wrapper {
  background-color: #fff;
  max-width: 700px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 25px -5px #d9d9d9;
  overflow: hidden;
  margin: auto;
  position: relative;
}
.modal-wrapper .hire-me-modal-wrapper form {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
  overflow: auto;
  position: relative;
}
.modal-wrapper .hire-me-modal-wrapper form .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 25px;
  width: 100%;
  height: 25px;
  background-color: #f58220;
  border-radius: 0 8px 0 0;
  padding: 5px;
  cursor: pointer;
}
.modal-wrapper .hire-me-modal-wrapper form .close-btn:hover {
  background-color: #008f6b;
  /* Darker shade on hover */
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper {
  max-width: calc(50% - 10px);
  width: 100%;
  display: flex;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.textarea-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.textarea-wrapper label {
  font-family: "Sora", "Poppins";
  font-size: 14px;
  font-weight: 400;
  color: #707070;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.textarea-wrapper textarea {
  border: 1px solid #d9d9d9;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  color: #707070;
  border-radius: 4px;
  outline: none;
  resize: none;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group, .modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group p, .modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group p {
  font-family: "Sora", "Poppins";
  font-size: 14px;
  font-weight: 400;
  color: #707070;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .checkbox-wrapper,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .radio-wrapper, .modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .checkbox-wrapper,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .radio-wrapper {
  max-width: calc(50% - 10px);
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .checkbox-wrapper:hover input,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .radio-wrapper:hover input, .modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .checkbox-wrapper:hover input,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .radio-wrapper:hover input {
  border: 1px solid #f58220;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .checkbox-wrapper input,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .radio-wrapper input, .modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .checkbox-wrapper input,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .radio-wrapper input {
  max-width: 16px;
  width: 100%;
  height: 16px;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .checkbox-wrapper label,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.checkbox-group .radio-wrapper label, .modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .checkbox-wrapper label,
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper.radio-group .radio-wrapper label {
  font-family: "Sora", "Poppins";
  font-size: 14px;
  font-weight: 400;
  color: #707070;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper input {
  border: 1px solid #d9d9d9;
  height: 40px;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  color: #707070;
  border-radius: 4px;
  outline: none;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper input:hover {
  border: 1px solid #f58220;
}
.modal-wrapper .hire-me-modal-wrapper form .input-wrapper input:focus {
  border: 1px solid #f58220;
}
.modal-wrapper .hire-me-modal-wrapper form .send-message-btn-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
}
.modal-wrapper .hire-me-modal-wrapper form .send-message-btn-wrapper .send-message-btn {
  background-color: #f58220;
  border: none;
  padding: 10px 20px;
  border-radius: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
}
.modal-wrapper .hire-me-modal-wrapper form .send-message-btn-wrapper .send-message-btn:hover {
  background-color: #03a681;
}

.resume-modal-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
  z-index: 99;
  display: none;
}
.resume-modal-wrapper.open {
  display: block;
}
.resume-modal-wrapper .resume-btn {
  background-color: #FF0000;
  border: none;
  border-radius: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  bottom: 5px;
  width: 50px;
  height: 50px;
}
.resume-modal-wrapper .resume-btn:hover {
  background-color: #03a681;
}
.resume-modal-wrapper .resume-btn .img-wrapper {
  max-width: 14px;
  width: 100%;
  height: 14px;
}
.resume-modal-wrapper .resume-btn span {
  font-family: "Sora", "Poppins";
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
.resume-modal-wrapper .resume-wrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.resume-modal-wrapper .resume-wrapper iframe {
  width: 100%;
  height: 100vh;
}

@keyframes pulse_animation {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  70% {
    opacity: 0.4;
  }
  100% {
    width: 250px;
    height: 250px;
    opacity: 0;
  }
}
/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}
#preloder #pulse-wrapper {
  display: flex;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #f2f5f8;
}
#preloder #pulse-wrapper #pulse {
  margin: auto;
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(242, 245, 248, 0.7);
}
#preloder #pulse-wrapper span {
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(0, 188, 145, 0.05);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: inset 0 0 40px -4px #f58220;
  border: 2px solid #f58220;
  transform: translate(-50%, -50%);
  animation: pulse_animation 4s ease-in-out infinite;
  z-index: 5;
}
#preloder #pulse-wrapper span:nth-of-type(1) {
  animation-delay: 0s;
}
#preloder #pulse-wrapper span:nth-of-type(2) {
  animation-delay: 1s;
}
#preloder #pulse-wrapper span:nth-of-type(3) {
  animation-delay: 2s;
}
#preloder #pulse-wrapper span:nth-of-type(4) {
  animation-delay: 3s;
}

.rotate {
  transform: rotate(270deg);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.rotate a {
  display: flex;
}
.rotate::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}
.rotate:hover {
  border: 1px solid #f58220 !important;
}
.rotate:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}/*# sourceMappingURL=style.css.map */