  header,
img,
section {
  width: 100%;
}

.nav-menu-item li a span,
button {
  font-size: 1rem;
}

button,
nav {
  transition: var(--transition);
}

*,
.card-body {
  box-sizing: border-box;
}

.Animation li,
.cv_btn,
.headings,
.hobby-box,
.social_icon ul li a,
.wrapper {
  text-align: center;
}

*,
img {
  outline: 0;
}

.btn,
.cv_btn {
  font-family: inherit;
  cursor: pointer;
}

#services_cards,
*,
.Animation,
.footer_icon_list,
.social_icon ul li,
.testimonial-cards-container ul {
  list-style: none;
}

* {
  margin: 0;
  padding: 0;
  caret-color: var(--prime-colcr);
  text-decoration: none;
  font-family: Poppins;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
small {
  cursor: default;
}

:root {
  --loader-bg-color: #ffeef7;
  --prime-colcr: #00cdc9;
  --popup-background: linear-gradient(
    -90deg,
    rgba(0, 205, 202, 0.8),
    rgba(1, 19, 41, 0.8)
  );
  --pere-color-timeline: linear-gradient(-90deg, #dae3dd 0%, #eae4c5 100%);
  --pere-color-timeline2: linear-gradient(-90deg, #eae4c5 0%, #dae3dd 100%);
  --pere-color-timeline-after: #dae3dd;
  --scrollbar-thumb: #0000004d;
  --transition: 0.3s;
  --transition2: 0.6s;
  --transition3: 1s;
  --cardHeight: auto;
  --cardTopPadding: 1.5em;
  --cardMargin: 4vw;
  --black-color: #080808;
  --white-color: #fff;
  --secendary-white: #ddfffe;
  --text-color: #666666;
  --pere-color: #1e272e;
  --popup-text-color: #ddd;
  --sticky_nav_background: rgba(236, 240, 241, 0.7);
  --contact-input-bg: #dddddd77;
  --contact-input-hover: #cccccccc;
  --second-color: #0e2431;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --testimonial-card-width: 230px;
  --testimonial-card-height: 360px;
  --footer: #2d3436;
  --ds: 0.9s;
}

[data-theme="dark"] header,
.sticky_nav,
body,
[data-theme="dark"] body,
header,
section {
  transition: all var(--transition2);
}

[data-theme="dark"] {
  --popup-background: linear-gradient(90deg, rgba(0, 205, 202, 0.7), rgba(255, 238, 225, 0.7));
  --scrollbar-thumb: #ffffff33;
  --loader-bg-color: #01305a;
  --black-color: #ebfbfc;
  --secendary-white: #011329;
  --text-color: #cccccc;
  --pere-color: #dff9fb;
  --popup-text-color: #444444;
  --sticky_nav_background: #121121b3;
  --contact-input-bg: #dddddd33;
  --contact-input-hover: #99999999;
}

html.modal-active,
body.modal-active {
  overflow: hidden;
}

html.show_nav,
body.show_nav {
  overflow: hidden;
}

body {
  overflow-x: hidden;
  background: linear-gradient(-90deg, #e9e8fc 0, #ffeee1 100%);
  transition: background-color 3s ease, color 3s ease;
}

body::before,
body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -9999;
}

body::before {
  background-image: url(Images/svg/sun-mark-svgrepo-com.svg);
}

body::after {
  background-image: url(Images/svg/Sun.svg);
}

[data-theme="dark"] body {
  transition: background-color 3s ease, color 3s ease;

  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

body::selection {
  background: 0 0;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px var(--scrollbar-thumb);
  background-color: var(--secendary-white);
}

body::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  cursor: pointer;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px var(--scrollbar-thumb);
  background-color: var(--prime-colcr);
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: right center !important;
  background-size: cover !important;
}

.show_nav .nav_menu {
  right: 0;
  transform: translateX(0);
  visibility: visible;
}

.about_me {
  position: relative;
  display: inline-block;
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.about_me > * {
  display: inline-flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: all 0.2s;
}

.about_me .in_visible {
  position: absolute;
  padding: 10px;
  left: 0;
  top: -100%;
}

.about_me .visible {
  padding: 10px;
}

.about_me:hover .visible {
  transform: translateY(100%);
}

.about_me:hover .in_visible {
  top: 0;
}

.skill_btn.about_me span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.3s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.3s;
}

.skill_btn.about_me span:nth-child(2n) {
  transform: translateY(15px);
}

.skill_btn.about_me:hover span {
  opacity: 1;
  transform: translateY(0);
}

.skill_btn.about_me:hover span:nth-child(2) {
  transition-delay: 0.05s;
}

.skill_btn.about_me:hover span:nth-child(3) {
  transition-delay: 0.1s;
}

.skill_btn.about_me:hover span:nth-child(4) {
  transition-delay: 0.15s;
}

.skill_btn.about_me:hover span:nth-child(5) {
  transition-delay: 0.2s;
}

.skill_btn.about_me:hover span:nth-child(6) {
  transition-delay: 0.25s;
}

.skill_btn.about_me:hover span:nth-child(7) {
  transition-delay: 0.3s;
}

.skill_btn.about_me:hover span:nth-child(8) {
  transition-delay: 0.35s;
}

.ripple {
  position: absolute;
  background-color: #00cdc9;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: 0.8s linear forwards rippleEffect;
}

@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.7;
  }

  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

.loader_box {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--loader-bg-color);
  z-index: 999999999;
}

.curve {
  position: absolute;
  bottom: -195px;
  left: 0;
  height: 200px;
  width: 100%;
}

.curve-fill {
  fill: var(--loader-bg-color);
}

.loader {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.loader__square {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  width: auto;
  height: auto;
  position: absolute;
  top: 22%;
  left: 22%;
  border-radius: 10px;
}

@keyframes loader_square_rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(70deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader__frame {
  display: none;
  position: relative;
  width: 150px;
  height: 150px;
  animation: outer_rotation 12.8s steps(1) 0s infinite;
}

@keyframes outer_rotation {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader__frame .bar {
  position: absolute;
  background-color: #00cdc9;
}

.loader__frame .bar-top,
.loader__frame .bar-bottom {
  width: 100%;
  height: 10px;
}

.loader__frame .bar-right,
.loader__frame .bar-left {
  width: 10px;
  height: 100%;
}

.loader__frame .bar-top {
  top: 0;
  left: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  animation: bar-top 2s linear 0s infinite;
}

.loader__frame .bar-right {
  top: 0;
  right: 0;
  transform-origin: left top;
  transform: scale(1, 0);
  animation: bar-right 2s linear 0s infinite;
}

.loader__frame .bar-bottom {
  right: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  animation: bar-bottom 2s linear 0s infinite;
}

.loader__frame .bar-left {
  left: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: scale(1, 0);
  animation: bar-left 2s linear 0s infinite;
}

@keyframes bar-top {
  0% {
    transform: scale(0, 1);
  }

  12.5% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@keyframes bar-right {
  0% {
    transform: scale(1, 0);
  }

  12.5% {
    transform: scale(1, 0);
  }

  25% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

@keyframes bar-bottom {
  0% {
    transform: scale(0, 1);
  }

  25% {
    transform: scale(0, 1);
  }

  37.5% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(0, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@keyframes bar-left {
  0% {
    transform: scale(1, 0);
  }

  37.5% {
    transform: scale(1, 0);
  }

  50% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

.slide-up {
  animation: slideUpFade 1s ease-in forwards;
}

@keyframes slideUpFade {
  0% {
    opacity: 1;
    transform: translate(0%);
  }

  50% {
    opacity: 1;
    transform: translate(0%, -35%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, -200%);
  }
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5% 7%;
}

img {
  border: none;
  height: 100%;
}

.card-body {
  border-radius: 10px;
}

.cv_btn,
button {
  border-radius: 8px;
}

header {
  position: relative;
  background-image: url(Images/bg/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  height: 90vh;
  border-bottom-left-radius: 10% 25%;
}

.sticky_nav,
nav {
  height: 4rem;
  width: 100%;
}

[data-theme="dark"] header {
  background-image: url(Images/bg/dark-hero-bg.webp);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7%;
  z-index: 999;
}

.show_nav nav {
  background-color: rgba(242, 233, 202, 0.85);
}

[data-theme="dark"] .show_nav nav {
  background-color: var(--footer);
}

.sticky_nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--sticky_nav_background);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-100px);
  animation: 0.6s linear forwards anim_up;
}

.sticky_nav::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
}

@keyframes anim_up {
  100% {
    transform: translateY(0);
  }
}

.logo {
  padding-left: 45px;
  position: relative;
}

.logo a {
  font-size: 2rem;
  color: var(--pere-color);
  font-weight: 700;
}

.contact .from-wrapper a,
.headings h1 span,
.hero_contenr h2,
.logo a span,
.taxt-animation h3 span {
  color: var(--prime-colcr);
}

.contact .from-wrapper a {
  cursor: pointer;
}

.logo a span {
  margin-left: 4px;
}

.logo a img {
  position: absolute;
  left: 0;
}

.nav-menu-item,
.social_icon ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav_menu {
  display: flex;
  align-items: center;
  column-gap: 3.5rem;
}

.nav-menu-item li a i,
.nav-menu-item li a span {
  font-weight: 500;
  color: var(--black-color);
  transition: var(--transition);
}

.nav_link i {
  padding-top: 3px;
  font-size: 1.5rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav_link span {
  position: relative;
  transition: margin 0.4s;
}

.nav_link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 0.13rem;
  background-color: var(--black-color);
  transition: width 0.4s ease-out;
}

.nav_link:hover span {
  margin-left: 1.6rem;
}

.cv_btn:hover:after,
.cv_btn:hover:before,
.nav_link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav_link:hover span::after {
  width: 100%;
}

.nav-menu-item:has(.nav_link:hover) .nav_link:not(:hover) {
  opacity: 0.4;
}

.show_nav .menu_icon::before,
.show_nav .nav_item {
  visibility: visible;
  transform: translateX(0);
}

.social_icon {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.social_icon ul li a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--prime-colcr);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social_icon ul li a .icon {
  position: relative;
  color: var(--white-color);
  transition: 0.5s;
  z-index: 3;
}

.social_icon ul li a:hover .icon {
  color: var(--white-color);
  transform: rotateY(360deg);
}

.social_icon ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: red;
  transition: 0.5s;
  z-index: 2;
}

.cv_btn:hover .btn_icon,
.social_icon ul li a:hover:before {
  top: 0;
}

.social_icon ul li:first-child a:before {
  background: #3b5999;
}

.social_icon ul li:nth-child(2) a:before {
  background: #e4405f;
}

.social_icon ul li:nth-child(3) a:before {
  background: #0077b5;
}

.social_icon ul li:nth-child(4) a:before {
  background: #dd4b39;
}

.menu_icon,
.skill-box .progress-bar-box .total-percentage,
.slideshow-buttons-container.bottom,
.taxt-animation .word_mobile_box {
  display: none;
}

.hero_contenr {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 5% 7%;
  height: 80vh;
}

.hero_contenr h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: -15px;
}

.hero_contenr h1 {
  font-size: 3.2rem;
  line-height: 4rem;
  font-weight: 700;
  color: var(--pere-color);
}

.hero_contenr h3 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  margin-top: -15px;
  color: var(--pere-color);
}

.hero_contenr p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: 400;
  color: var(--text-color);
}

.text-animation-box {
  display: flex;
  margin-top: -15px;
  margin-bottom: 15px;
}

.taxt-animation h3 {
  position: relative;
  height: 1em;
  perspective: 1000px;
  display: inline-flex;
  margin: 0;
  vertical-align: top;
}

.section-category-container,
.taxt-animation .word_pc_box {
  display: block;
}

.taxt-animation h3 .word,
.taxt-animation h3 .word_mobile {
  position: absolute;
  display: flex;
  opacity: 0;
}

.taxt-animation h3 .word .letter,
.taxt-animation h3 .word_mobile .letter {
  transform-origin: center center 25px;
}

.taxt-animation h3 .word .letter.out,
.taxt-animation h3 .word_mobile .letter.out {
  transform: rotateX(90deg);
  transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}

.taxt-animation h3 .word .letter.in,
.taxt-animation h3 .word_mobile .letter.in {
  transition: 0.38s;
}

.taxt-animation h3 .word .letter.behind,
.taxt-animation h3 .word_mobile .letter.behind {
  transform: rotateX(-90deg);
}

.cv_contain {
  margin-top: 10px;
  margin-bottom: 35px;
}

.cv_btn {
  scale: 1;
  --width: 150px;
  --height: 45px;
  --tooltip-width: 110px;
  --tooltip-height: 40px;
  --gap-between-tooltip-to-button: 18px;
  width: var(--width);
  height: var(--height);
  background: var(--pere-color);
  position: absolute;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s;
}

.cv_btn::before {
  position: absolute;
  content: attr(data-tooltip);
  width: var(--tooltip-width);
  height: var(--tooltip-height);
  background-color: var(--pere-color);
  font-size: 0.8rem;
  color: var(--secendary-white);
  border-radius: 6px;
  line-height: var(--tooltip-height);
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
  left: calc(50% - var(--tooltip-width) / 2);
}

.quic_link .bg_links,
button {
  background-color: var(--prime-colcr);
}

.cv_btn::after,
.cv_btn::before {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.cv_btn .btn_text {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}

.cv_btn .btn_icon,
.cv_btn .btn_text,
.cv_btn .button-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  color: var(--secendary-white);
}

.cv_btn .btn_icon,
.cv_btn .btn_text {
  transition: top 0.5s;
}

.cv_btn .btn_icon {
  color: var(--secendary-white);
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv_btn .btn_icon svg {
  width: 24px;
  height: 24px;
}

.cv_btn:hover {
  background: var(--prime-colcr);
}

.cv_btn:hover .btn_text {
  top: -100%;
}

.cv_btn:hover:after {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.cv_btn:hover:before {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

button {
  width: 150px;
  height: 45px;
  border: none;
  color: var(--white-color);
}

button:hover {
  box-shadow: 0 0 20px var(--prime-colcr);
  cursor: pointer;
}

.quic_link {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: -100px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: 0.2s;
  cursor: pointer;
}

.quic_link .bg_links,
.quic_link .social .icon {
  justify-content: center;
  border-radius: 100%;
  display: flex;
}

.quic_link.show-quick-link {
  right: 20px;
}

.quic_link .bg_links {
  width: 35px;
  height: 35px;
  align-items: center;
  backdrop-filter: blur(5px);
  position: absolute;
}

.quic_link .quic_link_logo {
  width: 35px;
  height: 35px;
  z-index: 9;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 1;
  transition: 1s 0.2s;
  bottom: 0;
  right: 0;
}

.quic_link .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}

.quic_link .social .icon img {
  scale: 1;
  transition: all var(--transition) ease;
}

.quic_link .social.quic_contact .icon img {
  scale: 0.6;
}

.quic_link:hover .social:hover .icon img {
  scale: 1.3;
}

.quic_link:hover .social.quic_contact:hover .icon img {
  scale: 0.66;
}

.quic_link .social .icon {
  width: 100%;
  height: 100%;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  transition: 0.1s, background-color 0.4s;
  opacity: 0;
  align-content: space-around;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
}

.quic_link .social.quic_contact,
.quic_link .social.top_to_back {
  transition: 0.8s;
}

.quic_link .social .dark_icon {
  cursor: pointer;
  transition: 0.3s;
}

.quic_link .social.dark_icon .icon {
  background-image: url(Images/svg/sun-mark-svgrepo-com.svg);
  transition: all var(--transition) ease;
  animation: square_rotate 0.3s linear;
}

[data-theme="dark"] .quic_link .social.dark_icon .icon {
  background-image: url(Images/svg/Sun.svg);
  transition: all var(--transition) ease;
  animation: square_rotate_sun 0.3s linear;
}

@keyframes square_rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes square_rotate_sun {
  0% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.quic_link:hover .social:hover .icon {
  background-size: 65%;
}

.quic_link:hover {
  width: 105px;
  height: 105px;
  transition: 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.quic_link:hover .quic_link_logo {
  opacity: 1;
  transition: 0.6s;
}

.quic_link:hover .social {
  opacity: 1;
}

.quic_link:hover .social .icon {
  opacity: 0.9;
}

.quic_link:hover .social:hover {
  background-size: 28px;
}

.quic_link:hover .social.top_to_back {
  right: 0;
  bottom: calc(100% - 35px);
  transition: 0.3s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}

.quic_link:hover .social.top_to_back .icon:hover {
  background-color: #ff3d58;
}

.quic_link:hover .social.dark_icon {
  bottom: 45%;
  right: 45%;
  transition: 0.3s cubic-bezier(0.64, 0.01, 0.07, 1.65) 0.15s;
}

.quic_link:hover .social.dark_icon .icon:hover {
  background-color: #f3b90b;
}

.quic_link:hover .social.quic_contact {
  bottom: 0;
  right: calc(100% - 35px);
  transition: 0.3s cubic-bezier(0.64, 0.01, 0.07, 1.65) 0.25s;
}

.quic_link:hover .social.quic_contact .icon:hover {
background: #60FC7C;
background: linear-gradient(180deg, rgba(96, 252, 124, 1) 1%, rgba(45, 187, 41, 1) 100%);
}

.quic_link_logo {
  position: fixed;
  z-index: 5;
  bottom: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_image,
.headings h1,
.img_box,
.percent {
  position: relative;
}

.quic_link_logo img {
  width: 55%;
  height: 55%;
  transform: translateY(-1px);
  opacity: 0.8;
}

.about {
  min-height: 100vh;
  gap: 50px;
  flex-direction: column;
  z-index: -5;
}

.about_top {
  padding: 40px 0;

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about_content,
.headings {
  flex-direction: column;
  display: flex;
}

.about_image {
  width: 25%;
}

.img_box {
  background: 0 0;
}

.img_box img {
  padding: 12px 12px 6px;
  width: 100%;
  height: 100%;
}

.img_box::after,
.img_box::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 25%;
  transition: 0.35s;
  background: 0 0;
  z-index: -1;
}

.card-body,
[data-theme="dark"] .card-body,
.tab-filter-item-container {
  transition: var(--transition3);
}

.img_box::before {
  top: 0;
  left: 0;
  border-left: 4px solid var(--prime-colcr);
  border-top: 4px solid var(--prime-colcr);
}

.img_box::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid var(--prime-colcr);
  border-bottom: 4px solid var(--prime-colcr);
}

.img_box:hover::after,
.img_box:hover::before {
  width: 98.6%;
  height: 99.1%;
  box-shadow: 10px 12px 15px rgba(8, 133, 133, 0.445);
}

.about_content {
  width: 50%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.about_content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--pere-color);
}

.about_content p {
  font-size: 0.9rem;
  line-height: 1.3rem;
  font-weight: 300;
  color: var(--text-color);
}

.about_content button {
  margin: 20px 0;
  width: 180px;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--pere-color);
  color: var(--secendary-white);
}

.about_content button:hover {
  box-shadow: none;
}

.percent {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(131, 131, 131, 0.4);
}

.percent:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-color: var(--prime-colcr);
}

.headings {
  width: 60%;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.headings h1 {
  display: inline-block;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.8;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1.2rem;
  color: var(--pere-color);
}

.heading_underline,
.text-box small {
  display: inline-block;
  margin-bottom: 15px;
}

.heading_underline {
  position: relative;
  line-height: 2.2;
}

.heading_underline::after,
.heading_underline::before {
  content: "";
  position: absolute;
}

.heading_underline::before {
  width: 80%;
  height: 0.2rem;
  bottom: 0;
  left: 10%;
  background: var(--prime-colcr);
  border-radius: 0.2rem;
}

.heading_underline::after {
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.8rem;
  height: 0.8rem;
  border: 0.2rem solid var(--prime-colcr);
  background: #dff9fb;
}

.headings h2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--prime-colcr);
}

.headings p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-color);
}

.Animation li,
.filter-btns {
  color: var(--secendary-white);
}

.services {
  flex-direction: column;
  background-color: var(--secendary-white);
  gap: 3rem;
}

.services_card {
  width: 90%;
  margin: 0 auto;
}

#services_cards {
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--services_cards), var(--cardHeight));
  gap: var(--cardMargin);
  padding-bottom: calc(var(--services_cards) * var(--cardTopPadding));
  margin-bottom: var(--cardMargin);
}

#card1 {
  --index: 1;
}

#card2 {
  --index: 2;
}

#card3 {
  --index: 3;
}

#card4 {
  --index: 4;
}

#card5 {
  --index: 5;
}

#services_cards li .card-body {
  animation: 0.51s ease-in forwards slaidDoun;
  transform: scale(1);
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes slaidDoun {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.card {
  position: sticky;
  top: 4.8rem;
  padding-top: calc(var(--index) * var(--cardTopPadding));
}

.card-body {
  padding: 10%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid var(--prime-colcr);
  height: var(--cardHeight);
  overflow: hidden;
  gap: 5px;
  display: grid;
  grid-template-columns: 1fr 4fr 2fr;
  background: linear-gradient(-90deg, #a8dbdc 0, #dae3dd 100%);
}

.main-content .box,
.tab-container {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

[data-theme="dark"] .card-body {
  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

.card-body .services_card_icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body .services_card_icon img {
  height: auto;
  width: 50px;
}

.card-body .services_card_info h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--pere-color);
}

.card-body .services_card_info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.25rem;
  color: var(--text-color);
}

.services_card_info ul.list-style-one {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.services_card_info ul.list-style-one li {
  position: relative;
  padding-left: 20px;
  color: var(--pere-color);
  font-size: 14px;
  font-weight: 500;
}

.services_card_info ul.list-style-one li::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "✔";
  transform: translateY(-50%);
  margin-top: -1px;
}

.services_card_thumb img {
  border-radius: 10px;
  object-fit: cover;
}

#card1 .card-body {
  background-color: #52b2cf;
}

#card2 .card-body {
  border: 2px solid #ffb646;
}

#card3 .card-body {
  border: 2px solid #00cc97;
}

#card4 .card-body {
  border: 2px solid #6f39fd;
}

.infinite-scroll {
  flex-direction: column;
  background-color: var(--secendary-white);
  padding: 7% 0;
}

.skill-boxs-container {
  width: 85%;
  padding: 0;
  margin: 20px auto 0;
}

.tab-container {
  border-radius: 10px;
  width: 100%;
  margin: 0 auto 3rem;
}

.tab-filter-container {
  padding: 1rem;
  text-align: center;
  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

[data-theme="dark"] .tab-filter-container,
.tab-filter-item-container {
  background: linear-gradient(-90deg, #dae3dd 0, #a8dbdc 100%);
}

.filter-btns {
  display: inline-flex;
  padding: 0.5rem 1.8rem;
  margin: 0.5rem 0.1rem;
  cursor: pointer;
  border-radius: 2rem;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.filter-btns.active {
  background: #8799a3;
  color: var(--white-color);
}

.tab-filter-item-container {
  height: 352px !important;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hobby-box,
[data-theme="dark"] .tab-filter-item-container,
[data-theme="dark"] .tab-item,
[data-theme="dark"] .tab-item.select_tab {
  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

.tab-item,
.tab-item.select_tab {
  transition: transform 0.5s ease-in-out;
  background: linear-gradient(-90deg, #dae3dd 0, #a8dbdc 100%);
}

.tab-item {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0 5rem;
  transform: translateY(100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.2rem;
  place-items: center start;
}

.Animation li,
[data-theme="dark"] .Animation li,
.tab-img {
  transition: var(--transition2);
}

.tab-img-box {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-img {
  padding: 4%;
  width: 22rem;
  border-radius: 30px;
  scale: 1.1;
  object-fit: cover;
}

.tab-img-box:hover .tab-img {
  scale: 1.15;
}

.tab-heading {
  padding: 2rem 0;
  font-size: 3rem;
}

.tab-item.select_tab {
  transform: translateY(0);
  animation: 0.6s ease-in-out feadIn;
}

.skill-boxs {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--black-color);
  margin-top: 40px;
  margin-bottom: 40px;
}

.skille-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.skill-box .progress-bar-box {
  display: flex;
  align-items: center;
}

.skill-box .progress-bar-box .progress-bar {
  width: 100%;
  height: 8px;
  background-color: #f0e8e8;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.skill-box .progress-bar-box .progress-bar .line {
  position: absolute;
  width: 0%;
  height: 100%;
  border-radius: 100px;
  background-color: var(--prime-colcr);
  transition: 0.1s;
}

.skill-box .progress-bar-box .incrasing-percentage {
  margin-left: 10px;
  font-size: 20px;
}

@keyframes feadIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.Animation {
  --d: 50s;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  --webkit-mask: linear-gradient(90deg, #0000, #0000 5% 95%, #0000);
  padding: 0;
}

.Animation li {
  grid-area: 1/1;
  animation: r var(--d) linear infinite;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem;
  border: 0.5rem solid #0000;
  background: linear-gradient(-90deg, #363b3f 0, #1a1d22 100%) padding-box;
  border-radius: 12px;
}

[data-theme="dark"] .Animation li {
  background: linear-gradient(-90deg, #dae3dd 0, #eae4c5 100%) padding-box;
}

.Animation:hover li {
  animation-play-state: paused;
}

.Animation li:nth-child(2) {
  animation-delay: calc(-0.1428571429 * var(--d));
}

.Animation li:nth-child(3) {
  animation-delay: calc(-0.2857142857 * var(--d));
}

.Animation li:nth-child(4) {
  animation-delay: calc(-0.4285714286 * var(--d));
}

.Animation li:nth-child(5) {
  animation-delay: calc(-0.5714285714 * var(--d));
}

.Animation li:nth-child(6) {
  animation-delay: calc(-0.7142857142 * var(--d));
}

.Animation li:nth-child(7) {
  animation-delay: calc(-0.8571428571 * var(--d));
}

@keyframes r {
  14.2857142857% {
    transform: translate(-100%);
  }

  14.2957142857% {
    transform: translate(600%);
  }
}

.alt.Animation li {
  animation-direction: reverse;
}


.animation-line {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 25px;
  width: 100%;
  height: 100%;
}

.time_line {
  flex-direction: column;
  padding: 8% 7%;
  background: linear-gradient(-90deg, #e9e8fc 0, #ffeee1 100%);
}

[data-theme="dark"] .time_line {
  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

.time_line_contenr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.time_line_contenr h1 {
  font-size: 4rem;
  line-height: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pere-color);
}

.time_line_contenr h3 {
  color: var(--text-color);
}

.timeline {
  position: relative;
  width: 100%;
  margin: 100px auto;
}

.container {
  padding: 10px 50px;
  position: relative;
  will-change: transform, opacity;
  width: 50%;
}

.left-container-arrow,
.right-container-arrow {
  height: 0;
  width: 0;
  top: 28px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
}

.text-box {
  padding: 20px 30px;
  background: var(--pere-color-timeline);
  border-radius: 6px;
  font-size: 15px;
}

.right-container .text-box {
  background: var(--pere-color-timeline2);
}

.left-container {
  left: 0;
  opacity: 1;
  transform: translateX(-50px) scale(0.8);
  animation: 1.2s ease-in forwards slaidMoveLeft;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes slaidMoveLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.8);
  }
  50% {
    opacity: 0;
    transform: translateX(-50px) scale(0.8);
  }

  70% {
    opacity: 1;
    transform: translateX(10px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.right-container {
  left: 50%;
  opacity: 1;
  transform: translateX(50px) scale(0.8);
  animation: 1.2s ease-in forwards slaidMoveRight;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes slaidMoveRight {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }
  50% {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }

  70% {
    opacity: 1;
    transform: translateX(-10px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.container img {
  position: absolute;
  height: 40px;
  width: 40px;
  padding: 7px;
  background: #eae4c5;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  right: -20px;
  top: 25px;
  z-index: 10;
}

.right-container img {
  left: -20px;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: var(--pere-color-timeline-after);
  top: 0;
  left: 50%;
  margin-left: -3px;
}

.text-box h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

.text-box small {
  font-size: 0.8rem;
  font-weight: 500;
  color: #011329;
}

.text-box p {
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.left-container-arrow {
  z-index: 1;
  border-left: 15px solid var(--pere-color-timeline-after);
  right: 35px;
}

.right-container-arrow {
  z-index: 1;
  border-right: 15px solid var(--pere-color-timeline-after);
  left: 37px;
}

.best-protfolio {
  background: linear-gradient(-90deg, #e9e8fc 0, #ffeee1 100%);
}

[data-theme="dark"] .best-protfolio {
  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wrapper .headings {
  padding-bottom: 2rem;
}

.main-content {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}

.box .more-details-btn .more-detail {
  z-index: 10;
}

/* ===== Modal Styles ===== */
.modal-live-damo {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.modal-live-damo-content {
  background: #fff;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #00000088;
  transition: width 0.3s ease, height 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: live-damo-content-roadRunnerIn 0.6s ease forwards;
}

@keyframes live-damo-content-roadRunnerIn {
  0% {
    transform: translateY(1500px) scaleX(0.1);
  }

  70% {
    transform: translateY(-100px) scaleX(1.1);
  }

  100% {
    transform: translateY(0px) scaleX(1);
  }
}

.modal-live-damo-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 22px;
  background: #eeeeee;
}

.modal-live-damo-header button {
  width: auto;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.1s ease;
}

.modal-live-damo-header button:hover {
  scale: 1.1;
  box-shadow: none;
}

.modal-live-damo-header button:hover svg path,
.modal-live-damo-header button:hover svg rect {
  fill: var(--prime-colcr) !important;
}

.modal-live-damo-header button.active {
  color: var(--prime-colcr) !important;
}

.modal-live-damo-header button.active svg path,
.modal-live-damo-header button.active svg rect {
  fill: var(--prime-colcr) !important;
}

.modal-live-damo-body {
  flex: 1;
  background: #000;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.modal-live-damo-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

/* ===== Loader Spinner ===== */
.modal-live-damo-loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
}

.modal-live-damo-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  backdrop-filter: blur(5px);
  z-index: -1;
}

.hero-skeleton {
  height: 100vh;
  display: flex;
  padding: 150px 150px 0 0;
  justify-content: center;
  align-items: flex-start;
  color: white;
}

.skeleton-container {
  width: 80%;
  max-width: 800px;
}

.skeleton {
  background: #dddddd;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

/* Skeleton size variants */
.title {
  width: 60%;
  height: 16px;
}

.heading {
  width: 90%;
  height: 40px;
}

.description {
  height: 14px;
  width: 100%;
}

.description.short {
  width: 80%;
}

.button {
  width: 180px;
  height: 40px;
  margin-top: 25px;
  border-radius: 25px;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

/* ===== Responsive Visibility ===== */

.best-protfolio .main-content .box .live-damo-button {
  background: #fff;
  color: #404040;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  place-items: center;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: -45px;
  transition: all var(--transition);
}

.best-protfolio .main-content .box:hover .live-damo-button {
  right: 15px;
}

.main-content .box {
  position: relative;
  margin-bottom: 1rem;
  height: 200px;
  border-radius: 10px;
}

.main-content .box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.009) 11.7%,
    rgba(0, 0, 0, 0.034) 22.1%,
    rgba(0, 0, 0, 0.072) 31.2%,
    rgba(0, 0, 0, 0.283) 39.4%,
    rgba(0, 0, 0, 0.382) 46.6%,
    rgba(0, 0, 0, 0.449) 53.1%,
    rgba(0, 0, 0, 0.52) 58.9%,
    rgba(0, 0, 0, 0.594) 64.3%,
    rgba(0, 0, 0, 0.668) 69.3%,
    rgba(0, 0, 0, 0.74) 74.1%,
    rgba(0, 0, 0, 0.807) 78.8%,
    rgba(0, 0, 0, 0.868) 83.6%,
    rgba(0, 0, 0, 0.921) 88.7%,
    rgba(0, 0, 0, 0.962) 94.1%,
    rgba(0, 0, 0, 0.99) 100%
  );
  transform: translateY(-50%);
}

.main-content .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  pointer-events: none;
  transition: all var(--transition) ease-in-out;
}

.main-content .box {
  overflow: hidden;
}

.main-content .box img {
  width: 100%;
  height: 106%;
  object-fit: cover;
  transition: all var(--transition) ease-in-out;
}

.main-content .box:hover img {
  transform: translateY(-5%);
}

.main-content .box .img-content .title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--prime-colcr);
}

.main-content .box .img-content .copy {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  line-height: 1rem;
  color: var(--pere-color-timeline-after);
}

.main-content .box .img-content .content-btn {
  margin-top: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
  line-height: 1;
  height: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #dff9fb;
  color: #011329;
  border-radius: 6px;
  padding: 5px 26px 5px 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.main-content .box .img-content .content-btn .button__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: #dff9fb;
  background-color: #011329;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.main-content .box .img-content .content-btn:hover {
  background-color: #00cdc9;
}

.main-content .box .img-content .content-btn:hover .button__icon {
  color: #00cdc9;
}

.main-content .box .img-content .content-btn:focus .button__icon {
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}

.main-content .box .img-content .content-btn .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.main-content
  .box
  .img-content
  .content-btn:hover
  .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.main-content .box .img-content .content-btn:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.main-content .box .img-content > :not(.title) {
  opacity: 0;
  cursor: pointer;
  transform: translateY(1rem);
  transition: transform var(--ds) var(--e), opacity var(--ds) var(--e);
}

.main-content .box:after {
  transform: translateY(0);
}

.main-content .box .img-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 1rem 2rem;
  z-index: 10;
  transition: all var(--ds) var(--e);
  transform: translateY(calc(-10%));
}

.main-content .box:hover:before {
  transform: translateY(-4%);
}

.main-content .box:hover:after {
  transform: translateY(-50%);
  backdrop-filter: blur(1px);
}

.main-content .box:hover .img-content {
  transform: translateY(-100%);
}

.main-content .box:hover .img-content > :not(.title) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--ds) / 8);
}

/* my-hobby */

.my-hobby {
  flex-direction: column;
  padding: 5% 7% 45px;
  background-color: var(--secendary-white);
}

.grid-hobby-boxs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.hobby-box {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 15px 39px rgba(8, 18, 109, 0.1);
  border: 0 solid var(--prime-colcr);
  transition: transform 0.3s, border 0.1s ease-in;
  background: linear-gradient(-90deg, #dae3dd 0, #a8dbdc 100%);
}

.hobby-box:hover {
  transform: translateY(-10px);
  border: 1px solid var(--prime-colcr);
  box-shadow: 0 18px 35px rgba(8, 133, 133, 0.445);
}

.bg-hobby-logo {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.blue-line,
.prev-button {
  margin-right: 15px;
}

.bg-hobby-logo img {
  width: 100%;
  height: 100%;
}

.my-hobby .hobby-box h3,
.work-shokes-box .shokes-box .work-shokes-text-container h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.2rem;
  color: var(--prime-colcr);
}

.my-hobby .hobby-box p {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--pere-color);
  transition: var(--transition);
}

.hireMe {
  flex-direction: column;
  gap: 30px;
  width: 100%;
  transition: var(--transition2);
  background: linear-gradient(-90deg, #e9e8fc 0, #ffeee1 100%);
}

[data-theme="dark"] .hireMe {
  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

.hireMe h1 {
  font-size: 2.7rem;
  color: var(--pere-color);
  font-weight: 700;
}

.hireMe button {
  appearance: none;
  border: none;
  cursor: pointer;
}

.hireMe .hireMe-button {
  background: var(--pere-color);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  width: 200px;
  border-radius: 9999rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hireMe-text {
  color: var(--secendary-white);
  width: 100%;
  text-align: left;
  padding-block: 12px;
  padding-left: 24px;
  z-index: 2;
  transition: 0.2s;
}

.hireMe-button .overlay {
  background: var(--secendary-white);
  color: var(--pere-color);
  height: calc(100% - 2px);
  width: 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px;
  border-radius: inherit;
  position: absolute;
  right: 1px;
  z-index: 1;
  transition: 0.4s;
}

[data-theme="dark"] .hireMe-button:focus .hireMe-text,
[data-theme="dark"] .hireMe-button:hover .hireMe-text {
  color: #ededed;
}

.hireMe-button:focus .hireMe-text,
.hireMe-button:hover .hireMe-text {
  color: #011329;
}

.hireMe-button:focus .overlay,
.hireMe-button:hover .overlay {
  width: calc(100% - 2px);
  transition: width 0.2s;
}

.testimonials {
  flex-direction: column;
  background: linear-gradient(-90deg, #e9e8fc 0, #ffeee1 100%);
}

[data-theme="dark"] .testimonials {
  background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
}

.testimonial-section {
  text-align: center;
  margin-top: 20px;
  width: 80%;
}

.blue-line {
  height: 40px;
  width: 15px;
  background-color: var(--prime-colcr);
  border-radius: 20px;
}

.testimonial-section-top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  place-items: center;
}

.slideshow-buttons-container {
  display: flex;
  flex-direction: row;
}

.section-category-type {
  display: flex;
  place-items: center;
}

.section-category-container h1 {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  margin-bottom: 40px;
}

.category .active-filter-btn,
.category button:hover {
  color: var(--white-color);
  background-color: var(--prime-colcr);
}

.section-category-text {
  color: var(--pere-color);
  cursor: default;
  font-weight: 600;
  font-size: 2.5rem;
}

.slideshow-buttons-container.top {
  display: flex;
}

.slideshow-button {
  background-color: #ededed;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: var(--footer);
  font-size: 220%;
  display: flex;
  justify-content: center;
  place-items: center;
  box-shadow: 0 2px 15px rgba(71, 71, 71, 0.2);
}

[data-theme="dark"] .slideshow-button {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
}

.slideshow-button:hover {
  transform: translateY(-5px);
  box-shadow: -2px 5px 15px rgba(71, 71, 71, 0.5);
}

[data-theme="dark"] .slideshow-button:hover {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.3),
    0 4px 4px rgba(0, 0, 0, 0.3), 0 8px 8px rgba(0, 0, 0, 0.3),
    0 16px 16px rgba(0, 0, 0, 0.3);
}

.testimonial-cards-container {
  position: relative;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-cards-container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
  padding: 2% 20px 2rem;
}

.testimonial-cards-container .testimonial-card {
  border-radius: 10px;
  backdrop-filter: blur(15px);
  border: 0px solid rgba(255, 255, 255, 0.5);
  text-align: left;
  overflow: hidden;
  transition: var(--transition2) ease-in-out;
  width: 0;
  height: 0;
}

.testimonial-card.active {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(71, 71, 71, 0.3);
  width: var(--testimonial-card-width);
  height: var(--testimonial-card-height);
}

.slides {
  display: flex;
  background-image: url(Images/svg/bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
  height: 100%;
}

.testimonial-background-image {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.testimonial-cards {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(1, 1fr);
  gap: 25px;
  padding-left: 5%;
  padding-right: 5%;
  scrollbar-width: none;
  -webkit-box-align: stretch;
  align-items: stretch;
  width: 100%;
  overflow: scroll hidden;
  scrollbar-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.testimonials_section {
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  -webkit-box-align: stretch;
  margin-left: -8%;
  margin-right: -8%;
}

.testimonial-card-slider {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  height: 441px;
  max-width: 320px;
  width: 100%;
  padding: 5%;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.testimonial-card-slider::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -55%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--prime-colcr);
  z-index: -1;
  transition: var(--transition2);
}

.testimonial-card-slider span {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 0.6rem;
  padding-top: 0.4rem;
  font-size: 2rem;
  color: var(--white-color);
}

.testimonial-card-slider h4 {
  margin-top: 4rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--prime-colcr);
  transition: var(--transition);
}

.testimonial-card-slider p {
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  line-height: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.testimonial-card-slider img {
  margin-bottom: 0.9rem;
  max-width: 5.5rem;
  max-height: 5.5rem;
  border-radius: 100%;
  border: 3px solid var(--prime-colcr);
  transition: var(--transition);
}

.testimonial-card-slider .h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--prime-colcr);
  transition: var(--transition);
}

.testimonial-card-slider h5 {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-color);
  transition: var(--transition);
}

.testimonial-card-slider:hover::before {
  width: 600%;
}

.testimonial-card-slider:hover :is(h4) {
  color: var(--white-color);
}

.testimonial-card-slider:hover :is(p, h5) {
  color: var(--secendary-white);
}

.testimonial-card-slider:hover img {
  border-color: var(--white-color);
}

.portfolios {
  flex-direction: column;
  background-color: var(--secendary-white);
  gap: 50px;
}

.category {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.category button {
  height: 35px;
  font-size: 0.9rem;
  background-color: transparent;
  border: 1px solid var(--prime-colcr);
  color: var(--prime-colcr);
}

.category button:hover {
  cursor: pointer;
}

.work-shokes-box {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-row-gap: 25px;
  grid-column-gap: 25px;
}

.work-shokes-box .shokes-box {
  position: relative;
  margin-bottom: 1rem;
  max-width: 250px;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--pere-color-timeline);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
  animation: fadeIncategory var(--transition2);
}

@keyframes fadeIncategory {
  from {
    opacity: 0;
    scale: 0.1;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

.work-shokes-box .product-image-container {
  height: 140px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  place-items: center;
  position: relative;
}

.work-shokes-box .shokes-box .product-image-container img {
  scale: 1;
  object-fit: cover;
  transition: var(--transition2);
}

.work-shokes-box .shokes-box .product-image-container .live-damo-button {
  background: #fff;
  color: #404040;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  place-items: center;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: -40px;
  transition: all 0.2s;
}

.work-shokes-box
  .shokes-box
  .product-image-container
  .live-damo-button.more-details-btn {
  transition: all 0.4s;
}

.work-shokes-box .shokes-box:hover .product-image-container .live-damo-button {
  right: 10px;
}

.popup-box {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 9999;
  color: #222222;
}

.popup-box.details {
  transform: scale(1);
}

.popup-box.details .popup-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  backdrop-filter: blur(20px);
  animation: fadeIn 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.popup-box.details .popup-background .modal {
  transform: translateX(-1500px);
  animation: roadRunnerIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.popup-box.details.out {
  animation: quickScaleDown 0.55s linear forwards;
}

.popup-box.details.out .popup-background {
  animation: fadeOut 0.55s forwards;
}

.popup-box.details.out .popup-background .modal {
  animation: roadRunnerOut 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.popup-box .popup-background {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

.popup-box .popup-background .modal {
  background: var(--popup-background);
  width: 350px;
  height: 400px;
  padding: 50px 30px 30px 30px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.2),
    0 4px 4px rgba(0, 0, 0, 0.2), 0 8px 8px rgba(0, 0, 0, 0.2),
    0 16px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}


.popup-box .popup-background .modal h2 {
  font-size: 35px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secendary-white);
}
.popup-box .popup-background .modal h4 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secendary-white);
}

.popup-box .popup-background .modal p {
  margin-top: 15px;
  font-size: 0.9rem;
  line-height: 1.25rem;
  color: var(--popup-text-color);
}

.popup-box .popup-background .modal ul.list-style {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.popup-box .popup-background .modal ul.list-style li {
  position: relative;
  padding-left: 20px;
  color: var(--secendary-white);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.popup-box .popup-background .modal li::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "✔";
  transform: translateY(-50%);
  margin-top: -1px;
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }

  100% {
    background: rgba(0, 0, 0, 0.1);
  }
}

@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.1);
  }

  50% {
    background: rgba(0, 0, 0, 0.01);
  }

  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }

  99.9% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes roadRunnerIn {
  0% {
    transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
  }

  70% {
    transform: translateX(100px) skewX(0deg) scaleX(0.9);
  }

  100% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
  }
}

@keyframes roadRunnerOut {
  0% {
    transform: translateX(0px) skewX(0deg) scaleX(1);
  }

  30% {
    transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
  }

  100% {
    transform: translateX(1500px) skewX(30deg) scaleX(1.3);
  }
}

.work-shokes-box
  .shokes-box
  .product-image-container
  .live-damo-button.more-details-btn {
  top: 45px;
}

.live-damo-button .live-damo-icon {
  position: relative;
  background: var(--white-color);
  color: #000;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.live-damo-button .tooltip,
.live-damo-button .tooltip::before {
  position: absolute;
  background: #fff;
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.live-damo-button .tooltip {
  left: 0;
  font-size: 12px;
  color: #fff;
  padding: 4px 7px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
}

.live-damo-button .tooltip::before {
  content: "";
  height: 8px;
  width: 8px;
  top: 35%;
  right: -7px;
  transform: translate(-50%) rotate(45deg);
}

.live-damo-button .live-damo-icon:hover .tooltip {
  left: -90px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.live-damo-button .live-damo-icon:hover .tooltip.more-details {
  left: -100px;
}

.footer_icon_list .footer_icon:hover .tooltip,
.footer_icon_list .footer_icon:hover span,
.live-damo-button .live-damo-icon:hover .tooltip,
.live-damo-button .live-damo-icon:hover span {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.live-damo-button .live-view:hover,
.live-damo-button .live-view:hover .tooltip,
.live-damo-button .live-view:hover .tooltip::before {
  background: #ff7675;
  color: #fff;
}

.footer_icon_list .more-detail:hover,
.footer_icon_list .more-detail:hover .tooltip,
.footer_icon_list .more-detail:hover .tooltip::before,
.live-damo-button .more-detail:hover,
.live-damo-button .more-detail:hover .tooltip,
.live-damo-button .more-detail:hover .tooltip::before {
  background: var(--prime-colcr);
  color: #fff;
}

.work-shokes-box .shokes-box:hover .product-image-container img {
  scale: 1.1;
}

.work-shokes-box .shokes-box .work-shokes-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  height: calc(100% - 170px);
}

.work-shokes-box .shokes-box .work-shokes-text-container p {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.contact,
.input-wrap.focus .contact-input,
.input-wrap.valid .contact-input {
  background-color: var(--secendary-white);
}

.mobile-break {
  display: inline;
}

.contact .headings {
  width: 100%;
  margin-bottom: 3rem;
}

.contact .headings h1 {
  margin-bottom: -0.7rem;
}

.contact .from-wrapper {
  width: 80%;
}

.contact-from {
  display: grid;
  margin-top: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 1rem;
}

.contact-buttons.w-100,
.input-wrap.w-100 {
  grid-column: span 2;
}

.input-wrap {
  position: relative;
  margin-bottom: 10px;
}

.contact-input {
  width: 100%;
  border: none;
  border-radius: 8px;
  background-color: var(--contact-input-bg);
  padding: 0.9rem 3rem 0.9rem 1.5rem;
  font-size: 18px;
  color: #f5f5f5;
  transition: var(--transition);
}

.btn,
.label {
  font-weight: 500;
  font-size: 1rem;
}

.contact-icon,
.label {
  position: absolute;
  color: #9e9e9e;
  pointer-events: none;
}

.label {
  left: 1.5rem;
  transform: translateY(55%);
  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.email_popup {
  position: relative;
}

.email_popup .popup {
  width: 350px;
  background: #fff;
  border-radius: 6px;
  position: fixed;
  top: 0%;
  left: 50%;
  text-align: center;
  padding: 0 30px 30px;
  transition: transform 0.5s, top 0.5s;
  transform: translate(-50%, -50%) scale(0);
  animation: emailpopupOut 0.5s forwards;
  z-index: 9999;
}

.email_popup .openPopup {
  visibility: visible;
  animation: emailpopupIn 0.5s forwards;
}

@keyframes emailpopupIn {
  0% {
    top: 0%;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes emailpopupOut {
  0% {
    top: 50%;

    transform: translate(-50%, -50%) scale(1);
  }

  40% {
    top: 50%;

    transform: translate(-80%, -50%) scale(0.8);
  }

  100% {
    top: 50%;

    transform: translate(500%, -50%) scale(0);
  }
}

.email_popup .popup img {
  margin-top: -80px;
  width: 50%;
}

.email_popup .popup h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 10px 0 15px;
}

.email_popup .popup h4 {
  font-size: 20px;
  font-weight: 500;
  margin: -15px 0 10px;
  color: var(--prime-colcr);
}

.email_popup .pushable {
  background: hsl(120, 100%, 14%);
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
}

.email_popup .front {
  display: block;
  padding: 12px 42px;
  border-radius: 12px;
  font-size: 1.25rem;
  background: var(--prime-colcr);
  color: white;
  transform: translateY(-6px);
}

.email_popup .pushable:active .front {
  transform: translateY(-2px);
}

.email_popup .popup .email-progress-bar {
  width: 100%;
  height: 8px;
  background-color: #f0e8e8;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
}

.email_popup .openPopup .email-progress-bar .progress-line {
  position: absolute;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--prime-colcr);
  animation: mailprogressbar 6s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes mailprogressbar {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.btn,
.contact-icon,
.footer p span {
  transition: var(--transition);
}

.contact-icon {
  right: calc(1.35rem + 2px);
  top: 50%;
  transform: translateY(-50%);
}

.btn.upload,
.contact-buttons {
  position: relative;
}

textarea.contact-input {
  resize: none;
  width: 100%;
  min-height: 150px;
}

textarea.contact-input ~ .contact-icon {
  top: 1.3rem;
  transform: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px var(--secendary-white) inset !important; 
    -webkit-text-fill-color: var(--pere-color) !important;  
}

.contact-input:focus,
.contact-input:valid {
  outline: 0;
  background: 0 0;
  color: var(--pere-color);
  border: 1.5px solid var(--prime-colcr);
}

.contact-input:focus {
  box-shadow: 1px 1px 10px #0fbaf977;
}

.contact-input:focus ~ .label,
.contact-input:valid ~ .label {
  transform: translateX(-10px) translateY(-50%) scale(0.8);
  background-color: var(--secendary-white);
  padding: 0.4em;
  color: var(--prime-colcr);
}

.contact-input:focus ~ .contact-icon,
.contact-input:valid ~ .contact-icon {
  color: var(--prime-colcr);
}

.btn {
  display: inline-block;
  padding: 1.1rem 2rem;
  width: 100%;
  height: auto;
  background-color: var(--prime-colcr);
  color: var(--white-color);
  border-radius: 8px;
  border: none;
}

.btn.upload {
  background-color: var(--contact-input-bg);
}

.btn.upload span {
  color: var(--pere-color);
}

.btn.upload .remove-attachment {
  position: absolute;
  right: calc(1.35rem + 2px);
  display: inline;
  width: auto;
  background: none;
  height: auto;
  color: var(--pere-color);
  font-weight: 600;
  display: none;
}
.btn.upload .remove-attachment:hover {
  box-shadow: none;
  color: var(--prime-colcr);
}
.btn.upload.file-attached .contact-icon {
  display: none;
}

.btn.upload.file-attached .remove-attachment {
  display: inline;
}

.cont_anim_btn .state p,
.footer p,
.footer_icon_list .footer_icon:hover i {
  color: var(--white-color);
}

.btn.upload:hover,
.contact-input:hover {
  background-color: var(--contact-input-hover);
}

.btn.upload:hover {
  box-shadow: none;
}

.btn.upload input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: red;
  cursor: pointer;
  opacity: 0;
}

.contact-test-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.cont_anim_btn {
  --radius: 10px;
  scale: 1;
  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: 0.3s;
  width: 160px;
  height: 45px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}

.cont_anim_btn:hover {
  transform: scale(1.02);
}

.cont_anim_btn:active {
  transform: scale(1);
}

.cont_anim_btn:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--prime-colcr);
  border: 2.5px solid transparent;
  z-index: 0;
  transition: 0.4s;
}

.cont_anim_btn:hover::after {
  transform: scale(1.05, 1.1);
}

.cont_anim_btn::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}

.cont_anim_btn .state p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont_anim_btn .state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont_anim_btn .state .icon svg {
  overflow: visible;
}

.cont_anim_btn .state p span {
  display: block;
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}

.cont_anim_btn:hover p span {
  opacity: 1;
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}

.cont_anim_btn:focus p span {
  opacity: 1;
  animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}

@keyframes wave {
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
    color: var(--white-color);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(5px) rotate(-90deg);
    color: var(--white-color);
    filter: blur(5px);
  }

  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
    filter: blur(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes disapear {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(5px) translateY(20px);
    color: var(--white-color);
    filter: blur(5px);
  }
}

.cont_anim_btn .state--default .icon svg {
  animation: 0.6s forwards land;
}

.cont_anim_btn:hover .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}

.cont_anim_btn:focus .state--default svg {
  animation: 0.8s linear forwards takeOff;
}

.cont_anim_btn:focus .state--default .icon {
  transform: rotate(0) scale(1.25);
}

@keyframes takeOff {
  0% {
    opacity: 1;
  }

  60% {
    opacity: 1;
    transform: translateX(70px) rotate(45deg) scale(2);
  }

  100% {
    opacity: 0;
    transform: translateX(160px) rotate(45deg) scale(0);
  }
}

@keyframes land {
  0% {
    transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
    opacity: 0;
    filter: blur(3px);
  }

  100% {
    transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

.cont_anim_btn .state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}

.cont_anim_btn .state--default span:nth-child(6) {
  margin-right: 5px;
}

.cont_anim_btn .state--sent {
  display: none;
}

.cont_anim_btn .state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}

.cont_anim_btn:focus .state--default {
  position: absolute;
}

.cont_anim_btn:focus .state--sent {
  display: flex;
}

.cont_anim_btn:focus .state--sent span {
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.2s);
}

.cont_anim_btn:focus .state--sent .icon svg {
  opacity: 0;
  animation: 1.2s 0.8s forwards appear;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(4) rotate(-40deg);
    color: var(--white-color);
    filter: blur(4px);
  }

  30% {
    opacity: 1;
    transform: scale(0.6);
    filter: blur(1px);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.footer {
  padding: 3% 12%;
  background-color: var(--footer);
  justify-content: space-between;
}

.footer p {
  font-size: 0.9rem;
  font-weight: 400;
}

.footer p span {
  font-weight: 600;
}

.footer p span:hover {
  color: var(--prime-colcr);
  cursor: pointer;
}

.footer_icon_list {
  display: inline-flex;
}

.footer_icon_list .footer_icon {
  position: relative;
  background: var(--white-color);
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 35px;
  height: 35px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer_icon_list .tooltip,
.footer_icon_list .tooltip::before {
  position: absolute;
  background: #fff;
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer_icon_list .footer_icon i {
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--prime-colcr);
}

.footer_icon_list .tooltip {
  top: 0;
  font-size: 12px;
  color: #fff;
  padding: 4px 7px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
}

.footer_icon_list .tooltip::before {
  content: "";
  height: 8px;
  width: 8px;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}

.footer_icon_list .footer_icon:hover .tooltip {
  top: -35px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer_icon_list .facebook:hover,
.footer_icon_list .facebook:hover .tooltip,
.footer_icon_list .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.footer_icon_list .twitter:hover,
.footer_icon_list .twitter:hover .tooltip,
.footer_icon_list .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: #fff;
}

.footer_icon_list .instagram:hover,
.footer_icon_list .instagram:hover .tooltip,
.footer_icon_list .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

.footer_icon_list .github:hover,
.footer_icon_list .github:hover .tooltip,
.footer_icon_list .github:hover .tooltip::before {
  background: #060842;
  color: #fff;
}

@media (max-width: 1200px) {
  .hero_contenr {
    width: 70%;
  }
}

@media (max-width: 1000px) {
  .nav_menu {
    column-gap: 1rem;
  }

  .nav-menu-item {
    gap: 20px;
  }

  .social_icon ul {
    gap: 10px;
  }

  .tab-item {
    padding: 0 2rem;
  }
  #btn-desktop {
    display: none;
  }

  .hero-skeleton {
    padding: 150px 0px 0 20px;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .menu_icon,
  .nav-icon {
    width: 30px;
    height: 25px;
  }

  [data-theme="dark"] header {
    background-position: top center;
  }

  .menu_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: var(--transition);
  }

  [data-theme="dark"] .sticky_nav::before,
  .sticky_nav::before {
    transition: background-color 0.6s linear;
  }

  .show_nav .sticky_nav::before {
    background-color: rgba(242, 233, 202, 0.85);
  }

  [data-theme="dark"] .show_nav .sticky_nav::before {
    background-color: var(--footer);
  }

  .nav-icon {
    position: relative;
    cursor: pointer;
  }

  .menu_icon::before,
  .nav_menu {
    position: fixed;
    top: 4rem;
    height: 100vh;
    transform: translateX(500px);
    visibility: hidden;
  }

  .nav-icon span {
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--pere-color);
    transition: 0.3s ease-in-out;
  }

  .nav-icon span:nth-child(odd) {
    left: 2%;
    border-radius: 7px 0 0 7px;
  }

  .nav-icon span:nth-child(2n) {
    left: 48%;
    border-radius: 0 7px 7px 0;
  }

  .nav-icon span:first-child,
  .nav-icon span:nth-child(2) {
    top: 0;
  }

  .nav-icon span:nth-child(3),
  .nav-icon span:nth-child(4) {
    top: 10px;
  }

  .nav-icon span:nth-child(5),
  .nav-icon span:nth-child(6) {
    top: 20px;
  }

  .show_nav .nav-icon span:first-child,
  .show_nav .nav-icon span:nth-child(6) {
    transform: rotate(45deg);
  }

  .show_nav .nav-icon span:nth-child(2),
  .show_nav .nav-icon span:nth-child(5) {
    transform: rotate(-45deg);
  }

  .show_nav .nav-icon span:first-child {
    top: 7px;
    left: 2px;
  }

  .show_nav .nav-icon span:nth-child(2) {
    top: 7px;
    left: calc(50% - 2px);
  }

  .show_nav .nav-icon span:nth-child(3) {
    left: -100%;
    opacity: 0;
  }

  .show_nav .nav-icon span:nth-child(4) {
    left: 150%;
    opacity: 0;
  }

  .show_nav .nav-icon span:nth-child(5) {
    top: 18px;
    left: 2px;
  }

  .show_nav .nav-icon span:nth-child(6) {
    top: 18px;
    left: calc(50% - 2px);
  }

  .menu_icon::before {
    content: "";
    left: 0;
    width: 100vh;
    backdrop-filter: blur(5px);
    background: rgba(0, 205, 202, 0.3);
    transition: transform 0.2s ease-out, visibility 0.2s;
    z-index: 101;
  }

  .nav_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    right: -100%;
    width: 70%;
    padding: 4rem;
    background-color: var(--second-color);
    transition: right 0.8s;
    z-index: 200;
    transition: transform 0.6s ease-in-out, visibility 0.6s;
  }

  .nav-menu-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu-item li a i,
  .nav-menu-item li a span {
    color: var(--white-color);
  }

  .nav_link span::after {
    background-color: var(--white-color);
  }

  .nav_item {
    transform: translateX(400px);
    visibility: hidden;
    transition: transform 0.5s ease-out, visibility 0.5s;
  }

  .nav_item:first-child {
    transition-delay: 0.2s;
  }

  .nav_item:nth-child(2) {
    transition-delay: 0.25s;
  }

  .nav_item:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav_item:nth-child(4) {
    transition-delay: 0.35s;
  }

  .nav_item:nth-child(5) {
    transition-delay: 0.4s;
  }

  .social_icon {
    margin-bottom: 100%;
  }

  .hero_contenr h2 {
    font-size: 1.5rem;
    margin-bottom: -7px;
  }

  .hero_contenr h1,
  .time_line_contenr h1 {
    font-size: 3.5rem;
    line-height: 4.4rem;
  }

  .hero_contenr {
    width: 80%;
  }

  .about_content,
  .about_image,
  .container,
  .headings,
  .inputs,
  .services_card,
  .testSwiper,
  textarea {
    width: 100%;
  }

  .about_top,
  .contact_inputs,
  section {
    flex-direction: column;
  }

  .about {
    gap: 0;
  }
  .services {
  gap: 2rem;
}

  @keyframes slaidDoun {
    0% {
      transform: scale(.9);
    }

    100% {
      transform: scale(1);
    }
  }
  .card-body {
    display: block;
    padding: 10% 10% 15% 10%;
  }

  .card-body .services_card_icon img {
    width: 40px;
    height: auto;
    margin-bottom: 20px;
  }

  .card-body .services_card_info h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .card-body .services_card_info p,
  .services_card_info ul.list-style-one li {
    font-size: 16px;
  }

  .services_card_thumb img {
    margin-top: 20px;
  }

  .time_line_contenr {
    gap: 10px;
  }

  .timeline {
    margin: 50px auto;
  }

  .timeline::before {
    left: 31px;
  }

  .container {
    padding-left: 80px;
    padding-right: 25px;
  }

  .tab-filter-item-container {
    height: 672px !important;
  }

  .tab-content-right.tab-img-box {
    padding-top: 10px;
  }

  .text-box {
    font-size: 13px;
  }

  .text-box small {
    margin-bottom: 10px;
  }

  .left-container,
  .right-container {
    left: 0;
  }

  .left-container img,
  .right-container img {
    left: 10px;
    top: 22px;
  }

  .left-container {
    opacity: 1;
    transform: translateX(50px) scale(0.8);
  }
  
  
  @keyframes slaidMoveLeft {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }
  50% {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }

  70% {
    opacity: 1;
    transform: translateX(-10px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

  

  .left-container-arrow,
  .right-container-arrow {
    border-left: 0;
    left: 67px;
  }

  .left-container-arrow {
    border-right: 15px solid #eae4c5;
  }

  .hireMe h1 {
    text-align: center;
  }

  .testimonials {
    padding: 0;
    overflow-x: hidden;
  }

  .testimonial-cards {
    grid-auto-columns: max(250px, 50% - 6px);
  }

  .category button {
    font-size: 1rem;
  }

  .testimonial-cards-container ul {
    width: auto;
    flex-wrap: nowrap;
  }

  .contact .headings h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  .contact .from-wrapper {
    width: 100%;
    max-width: 620px;
    margin-top: 40px;
  }

  .input-wrap {
    margin-bottom: 5px;
  }

  .contact-from {
    display: grid;
    margin-top: 1.9rem;
    column-gap: 1rem;
  }

  .contact-input {
    padding: 0.8rem 3rem 0.8rem 1.4rem;
    font-size: 15px;
  }

  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.87rem;
  }

  .contact-test-btn {
    margin-bottom: 3rem;
  }

  .footer {
    gap: 10px;
    padding: 10% 12% 6%;
  }
}

@media (max-width: 767px) {
  header {
    border-bottom-right-radius: 0% 0%;
    border-bottom-left-radius: 0 0;
  }

  header .header_after_box {
    position: absolute;
    overflow: hidden;
    left: 0;
    bottom: 0;
    margin-bottom: -5px;
    width: 100%;
    height: 100px;
  }

  header .header_after_box .after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 100px;
    background: linear-gradient(-90deg, #e9e8fc 0, #ffeee1 100%);
    filter: blur(20px);
    pointer-events: none;
  }

  [data-theme="dark"] header .header_after_box .after {
    background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
  }

  .about {
    background: linear-gradient(-90deg, #e9e8fc 0, #ffeee1 100%);
  }

  [data-theme="dark"] .about {
    background: linear-gradient(-90deg, #01305a 0, #13192f 100%);
  }

  section {
    padding: 15% 7% 7% 7%;
  }

  .popup-box .popup-background .modal h2 {
    font-size: 30px;
  }
  .popup-box .popup-background .modal h4 {
    font-weight: 500;
    font-size: 0.8rem;
  }

  .popup-box .popup-background .modal p {
    font-size: 0.8rem;
  }
  .popup-box .popup-background .modal ul.list-style li {
    font-size: 0.88rem;
  }

  .contact {
    padding: 7%;
  }

  .img_box::after,
  .img_box::before {
    z-index: 1;
  }

  .skill-boxs-container {
    width: 100%;
  }

  .tab-container {
    width: 90%;
  }

  .tab-filter-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hireMe {
    padding: 15% 7%;
    gap: 15px;
  }

  .hireMe h1 {
    font-size: 2rem !important;
  }

  .hireMe .hireMe-button {
    width: 180px;
    scale: 0.8;
  }
}

@media (max-width: 620px) {
  .footer p,
  .hireMe h1 {
    text-align: center;
  }

  .footer p span,
  .mobile-break {
    display: block;
  }

  header {
    height: auto;
  }

  .hero_contenr {
    height: 60vh;
    margin-top: -30px;
    padding: 5% 7%;
    width: 100%;
  }

  .hero_contenr h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .about_top {
    gap: 30px;
  }

  .headings h1 {
    font-size: 3rem;
  }

  .time_line_contenr h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .services_card_thumb {
    height: 220px;
  }

  .hireMe h1 {
    font-size: 2rem;
  }

  .category {
    flex-wrap: wrap;
  }

  .time_line_contenr h3 {
    margin-top: -15px;
  }

  #menu-bar,
  .work-shokes-box .shokes-box .product-image-container .live-damo-button {
    display: flex;
    right: 10px;
  }

  .blue-line {
    height: 25px;
    width: 10px;
    margin-right: 10px;
  }

  .Animation {
    --d: 30s;
    grid-template-columns: repeat(4, 1fr);
  }

  .Animation li {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .testimonial-section {
    margin-top: 40px;
    margin-bottom: 10px;
    width: 105%;
  }

  .main-content .box:hover .img-content {
    transform: translateY(-100%);
  }

  .testimonial-cards-container .testimonial-card {
    transition: var(--transition) ease-in-out;
  }

  .section-category-type {
    margin-bottom: 7px;
  }

  .testimonial-section-top-container {
    margin-bottom: 25px;
    padding: 0 10%;
  }

  .section-category-container h1 {
    font-size: 22px;
    margin-bottom: 0;
  }

  .section-category-text {
    font-size: 1.8rem;
  }

  .cont_anim_btn,
  .contact .contact-icon,
  .contact .label {
    font-size: 16px;
  }

  .slideshow-button {
    width: 45px;
    height: 45px;
  }

  .slideshow-button svg {
    width: 25px;
    height: 25px;
  }

  .tab-img {
    width: 20rem;
    scale: 1;
  }

  .tab-item {
    padding: 0 1rem;
  }

  .skill-boxs {
    margin-top: 2px;
    margin-bottom: 0;
  }

  .skill-boxs .tab-content-left:first-child {
    margin-top: 40px;
  }

  .skill-boxs .tab-content-right:first-child {
    margin-top: 0;
  }

  .popup-box .popup-background .modal {
    width: 320px;
  }

  .testimonial-cards-container {
    height: 500px;
  }

  .testimonial-cards-container ul {
    padding: 10% 20px 20%;
  }

  .prev-button {
    margin-right: 8px;
  }

  .testimonial-card-slider span {
    padding-top: 0.5rem;
  }

  .testimonial-card-slider p {
    line-height: 21px;
    margin-bottom: 1rem;
  }

  .testimonial-card-slider img {
    margin-bottom: 0.8rem;
  }

  .mobile-break {
    margin-top: 2px;
  }

  .input-wrap {
    grid-column: span 2;
    margin-bottom: 7px;
  }

  .contact .headings h1 {
    font-size: 1.9rem;
  }

  .contact-from {
    margin-top: 1.5rem;
    row-gap: 1.2rem;
  }

  .cont_anim_btn {
    height: 40px;
    font-weight: 500;
  }
}

@media (max-width: 580px) {

  .work-shokes-box .shokes-box {
    max-width: 100%;

    height: 280px;
  }

  .work-shokes-box .product-image-container {
    height: 190px;
  }

  .work-shokes-box .shokes-box .work-shokes-text-container {
    height: calc(100% - 210px);
  }

  .taxt-animation .word_pc_box {
    display: none;
  }

  .taxt-animation .word_mobile_box {
    display: block;
  }

  .filter-btns {
    margin: 0;
  }
}

@media (max-width: 520px) {
  .Animation {
    --d: 25s;
  }

  .Animation li {
    font-size: 0.8rem;
    padding: 0.7rem;
  }

  .time_line_contenr {
    text-align: center;
  }

  .time_line_contenr h1 {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 2rem;
  }

  .services_card_thumb {
    height: 150px;
  }
  #btn-desktop,
  #btn-tablet,
  #btn-mobile {
    display: none;
  }
  .testimonial-card-slider h4 {
    line-height: 22px;
  }

  .section-category-container h1 {
    font-size: 16px;
  }

  .testimonial-card-slider p {
    line-height: 18px;
  }
}

@media (max-width: 434px) {
  .hero_contenr h1 {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-top: -7px;
    margin-bottom: -7px;
  }

  .hero_contenr h2 {
    font-size: 1.2rem;
  }

  .hero_contenr h3 {
    font-size: 1.5rem;
    margin-top: 5px;
  }

  .contact .headings p,
  .hero_contenr p {
    font-size: 0.8rem;
  }

  .cv_btn {
    scale: 0.77;
    --width: 180px;
    --height: 54px;
    font-size: 1.2rem;
    width: var(--width);
    height: var(--height);
  }

  .cv_contain {
    margin-left: -20px;
  }

  .show_skills {
    height: 200px;
  }

  .about_content h1,
  .headings h1 {
    margin-top: 17px;
    font-size: 2.5rem;
  }

  .about_content p {
    font-size: 1rem;
  }

  .Animation {
    --d: 20s;
  }

  .Animation li {
    font-size: 0.7rem;
    padding: 0.7rem;
  }

  .tab-filter-item-container {
    height: 525px !important;
  }

  .tab-filter-item-container .tab-item,
  .testimonial-section-top-container {
    display: block;
  }

  .main-content {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .hireMe .hireMe-button {
    width: 160px;
  }

  .category {
    margin-top: -30px;
    gap: 8px;
  }

  .skill-boxs {
    width: 85%;
    margin-left: 5%;
  }

  .testimonial-category {
    height: 70px;
  }

  .slideshow-buttons-container {
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
  }

  .section-category-container {
    display: block;
    width: 100%;
  }

  .slideshow-buttons-container.top {
    display: none;
  }

  .slideshow-buttons-container.bottom {
    display: flex;
  }

  .slideshow-button {
    position: relative;
    left: 30px;
    border-radius: 20px;
  }

  .slideshow-button.next-button {
    left: -30px;
  }

  .contact .contact-icon,
  .contact .label {
    font-size: 13px;
  }

  .contact .label {
    top: 5px;
  }

  .contact-input:focus ~ .label,
  .contact-input:valid ~ .label {
    transform: translateX(-10px) translateY(calc(-50% - 5px)) scale(0.8);
    background-color: var(--secendary-white);
  }

  .contact .headings h1 {
    font-size: 1.5rem;
  }
}
