.projects svg {
  height: 200px;
  width: 450px;

  padding-top: 40px;
}

@media screen and (max-width: 500px) {
  .projects svg {
    width: auto;
  }
}

.svg_home {
  position: absolute;
  left: -80px;
  top: -15px;
  margin-left: 30px;
  opacity: 0;
}

.svg_home_text {
  font-weight: var(--normalWeight);
  fill: var(--df);
  font-family: var(--barlow);
  font-size: var(--twentyTwo); /*equal to 18px of line and frame gridBox title*/
}

.swiper-slide-active .svg_home_text {
  opacity: 0;
  animation: svgText 0.5s cubic-bezier(0.7, 0, 0.33, 1) forwards;
  animation-delay: 1.51s;
}

.swiper-slide-next .svg_home_text,
.swiper-slide-prev .svg_home_text {
  opacity: 0;
}

@keyframes svgTextRemove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes svgText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

path {
  stroke: var(--df);
  fill: transparent;
}

text.svg_home_text.initial-load4 {
  opacity: 0;
  animation: svgText 0.7s cubic-bezier(0.7, 0, 0.33, 1) forwards;
  animation-delay: 7.45s;
}

path.nav-tab-inner-shape.nav-tab-path-draw.initial-load3 {
  animation: Loading2 0.7s cubic-bezier(0.7, 0, 0.33, 1) forwards;
  opacity: 1;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation-delay: 7.45s;
}

.swiper-slide-active .nav-tab-path-draw {
  animation: Loading2 0.5s cubic-bezier(0.7, 0, 0.33, 1) forwards;
  opacity: 1;
  animation-delay: 1.5s;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

@keyframes Loading2 {
  100% {
    stroke-dashoffset: 0;
  }
}

.swiper-slide-prev .nav-tab-path-draw {
  opacity: 0;
  stroke-dasharray: 800;
  stroke-dashoffset: 0;
}

.swiper-slide-next .nav-tab-path-draw {
  opacity: 0;
  stroke-dasharray: 800;
  stroke-dashoffset: 0;
}

@keyframes ReverseLoading2 {
  100% {
    stroke-dashoffset: 800;
  }
}
