* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

body {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;

  background: #0d0d0d;
  overflow: scroll;
}
#glow_filter,
#grainy_filter,
#blur_filter,
#blurInfo_filter {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

body::before {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 30%;
  background: white;
  pointer-events: none;
  filter: url(#grainy);
}

body::after {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 30%;
  pointer-events: none;
}
body#body-grid::after {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("404pageimages/gridlines.png");
}
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: blur(0.7px);
}
#star circle {
  animation: sparkle ease-in-out 2s infinite;
  filter: url(#glow);
}

#star {
  width: 100%;
  height: 100%;
}
@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
    fill: #11338a;
  }
}
.mainLogo {
  display: none;
  position: fixed;
  width: 200px;
  height: 200px;
  margin: 0;
  animation: static-waves 4s infinite ease-in-out alternate;
  filter: drop-shadow(0 0 0.5px #fff) drop-shadow(0 0 1px #34a0f8);
}
.initials {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5em;
  left: 0;
  right: 0;
  margin-top: 2rem;
  margin-bottom: 6rem;
  animation: static-waves 4s infinite ease-in-out alternate;
  filter: url(#blur-drop-shadow-filter);
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 0.2s;
}
.mainInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  font-family: "Raleway";
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 0.5s;
}
.mainInfo img {
  width: 250px;
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #34a0f8);
  margin-bottom: 20px;
  animation: fadeIn 2s forwards, planetHover 8s ease-in-out infinite;
  z-index: 9999;
}
.mainInfo p {
  margin-top: 0.5em;
}
.mainInfo::after {
  content: "";
  position: absolute;
  display: flex;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, red, yellow, green, blue);
  background-size: 200% 100%;
  opacity: 0;
  animation: fadeIn 2s forwards, rotateColors 8s linear infinite;
}
.socialHandlesContainer {
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin-top: 4em;
  margin-bottom: 8em;
  animation: fadeIn 2s forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.socialHandle {
  display: flex;
  flex-direction: column;
  margin: 20px;
  align-items: center;
}
.socialHandle p {
  text-align: center;
  font-family: "Raleway";
  font-size: 0.9rem;
  font-weight: 400;
  color: white;
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.socialHandle svg {
  width: 100px;
  cursor: pointer;

  animation: planetHover 8s ease-in-out infinite;
}
#facebookHandle svg {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #34a0f8);
}
#linktreeHandle svg {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #6bbe59);
  animation-delay: 2s;
}
#linkedInHandle svg {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #027ebb);
  animation-delay: 1.5s;
}
#behanceHandle svg {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #456ab3);
  animation-delay: 2.5s;
}
.socialHandle img {
  width: 100px;
  cursor: pointer;
  animation: planetHover 8s ease-in-out infinite;
}
#instagramHandle img {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #fa5f21);
  animation-delay: 1s;
}

.socialHandle:hover p {
  animation: socialsText 0.4s forwards;
}

@keyframes socialsText {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes planetHover {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(6deg);
  }
}
@keyframes rotateColors {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
button.PersonalWorkButton span {
  line-height: 1.2;
  text-align: center;
}
@keyframes static-waves {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}

button.menu-closed {
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border: 2px solid rgba(255, 255, 255);
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.8);
  backdrop-filter: blur(10px);
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  transition: width ease-in-out 0.4s, border-radius ease-in-out 0.4s;

  --text-radius: 30px;
  --text-color: white;
  --text-font-size: 14px;
}

button.menu-closed:hover:not(.menu-expanded) {
  background: rgba(61, 61, 61, 0.8);
}
button.menu-expanded {
  width: 22rem;
  border-radius: 1rem;
}

.menu-closed .menuIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  position: relative;
  width: 40px;
  height: 40px;
  transition: transform 0.4s ease-in-out, background-color 0.5s ease-in-out;
  border-radius: 10px;
}
.rotate-icon {
  transform: rotate(-45deg);
  transition: transform 0.5s ease-in-out;
}
.menuIconContainer {
  display: flex;
  position: absolute;
  transform: translateX(-370%);
  transition: transform 1s ease-in-out;
  background-color: #282828;
}
.menu-expanded .menuIconContainer:hover {
  background-color: #0d0d0d;
}
.menuOptions {
  display: none;
  position: absolute;
  right: 6%;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100%;
  opacity: 0;
  white-space: nowrap;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.menu-expanded .menuOptions {
  opacity: 100;
  transform: translateY(0);
}
button.menu-closed a {
  display: flex;
  margin-left: 10px;
  list-style-type: none;
  text-decoration: none;
  font-size: 0.92rem;
  font-family: "Montserrat";
  font-weight: 500;
  color: rgb(235, 235, 235);
}
.menuOptions a:hover {
  color: #a5a5a5;
}
.dynamicGradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle at var(--gradient-position-x, --mouseX)
      var(--gradient-position-y, --mouseY),
    rgba(46, 46, 46, 0.3) 1%,
    transparent 15%
  );
  pointer-events: none;
  transition: var(--gradient-transition);
}

.bodyGradient {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(57%);
  width: 100%;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0) 0%,
    rgba(116, 116, 116, 0.5) 85%
  );
}
footer {
  display: flex;
  position: relative;
  width: 45%;
  flex-direction: column;
  align-items: flex-end;
  align-items: center;
  justify-content: center;
  bottom: 0;
  border-top: 5px dotted rgb(169, 169, 169, 0.2);
  align-items: center;
  padding-bottom: 116px;
}
footer span {
  font-family: "Montserrat";
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}
footer span:nth-of-type(2) {
  font-size: 1rem;
  font-weight: 700;
}
footer span:nth-child(1) {
  margin-top: 10px;
}
.socialsFooter {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
.socialsFooter img {
  width: 30px;
  color: white;
  margin: 5px;
  box-shadow: white;
  cursor: pointer;
}
.socialsFooter img:hover {
  transform: scale(1.1);
}
.socialsFooter a:nth-of-type(1):hover img {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #2092fc);
}
.socialsFooter a:nth-last-of-type(2):hover img {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #ff7a2d);
}
.socialsFooter a:nth-of-type(3):hover img {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #194ddb);
}
/*portfolio css */
.indexLogo {
  display: flex;
  width: 25px;
}
.grids2 {
  display: flex;
  width: max-content;
  overflow: visible;
  height: min-content;
  flex-direction: row;
  position: relative;
  top: -4em;
}

.grid {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: min-content;
  overflow: visible;
  padding-bottom: 10px;
  top: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.4s;
}

#grid1 {
  order: 0;
}
#grid1-1,
#grid2-2 {
  margin: 10px;
}
.projectContainer {
  display: flex;
  width: 400px;
  height: min-content;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  background: linear-gradient(180deg, #313131 0%, #232323 73.74%);
  border: 2px solid #a9a9a9;
  transform: scale(1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  overflow: hidden;
  margin: 5px;
}
.projectContainer.pr1 {
  margin-top: 55px;
}
.projectContainer.pr4 {
  margin-top: 55px;
}
.projectContainer.pr5 {
  width: 800px;
  top: -2em;
}

.projectContainer a {
  display: flex;
  position: relative;
  flex-direction: column;

  align-items: center;
  width: 100%;
  height: 100%;
  list-style-type: none;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.learnMoreIcon {
  display: none;
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 15%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #a9a9a9;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}
.learnMoreIcon2 {
  display: flex;
  position: absolute;
  right: 1.5%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 15%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #a9a9a9;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}
.learnMoreIcon:hover,
.learnMoreIcon2:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(208, 208, 208, 0.7);
}
.learnMoreIcon:focus,
.learnMoreIcon2:focus {
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 0 2px #1477bc;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.learnMoreIcon svg,
.learnMoreIcon2 svg {
  display: flex;
  width: 25px;
}

.projectContainer.pr1:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px 5px #ffffff, 0 0 40px 10px #1477bc;
  border: 2px solid white;
}

.scale-down {
  transform: scale(0.95) !important;
}

.projectIcon {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 40px;
  width: 60%;
  transition: filter 0.4s ease-in-out;
  filter: grayscale(100%);
}

.projectPng {
  display: flex;
  position: relative;
  transition: filter 0.4s ease-in-out;
  filter: grayscale(100%);
  width: 60%;
}
.studio84Icon {
  width: 100%;
  height: 100%;
  transform: scale(0.8);
  object-fit: cover;
}
.billsoftWebsiteIcon {
  width: 100%;
  height: 100%;
  transform: scale(0.8);
  object-fit: cover;
}
.projectContainer:hover .projectIcon {
  filter: grayscale(0%);
}
.projectContainer:hover .projectPng {
  filter: grayscale(0%);
}
.projectContainerInfo {
  display: flex;
  position: relative;
  align-items: center;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: white;
  border-radius: 0 0 8px 8px;
}
.projectContainerInfo.pr3 {
  display: flex;
  position: relative;
  align-items: center;
  bottom: 0;
  width: 100%;
  height: 15%;
  background: white;
  border-radius: 0 0 8px 8px;
}
.textContainer {
  display: flex;
  position: relative;
  width: 80%;
  font-family: "Montserrat";
  line-height: 1.2em;
  left: 10px;
  flex-direction: column;
  padding: 5px;
  align-items: start;
}

.projectContainerInfo h1 {
  display: flex;
  font-size: 1.2em;
  font-weight: 900;
}
.projectContainerInfo span {
  display: flex;
  font-weight: 800;
  font-size: 1em;
}
.projectContainerInfo p {
  font-weight: 700;
}

.projectContainer.pr2:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px 5px #ffffff, 0 0 40px 10px #ffffff;
  border: 2px solid white;
}

.projectContainer.pr3:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px 5px #ffffff, 0 0 40px 10px #3cb667;
  border: 2px solid white;
}

.projectContainer.pr4:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px 5px #ffffff, 0 0 40px 10px #46abde;
  border: 2px solid white;
}
.projectContainer.pr5 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.projectContainer.pr5:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px 5px #ffffff, 0 0 40px 10px #f47d0e;
  border: 2px solid white;
}
.projectContainer.pr5 h1 {
  display: flex;
  position: relative;
  font-family: "Montserrat";
  font-size: 1.4em;
  font-weight: 800;
  color: white;
}
.projectContainer.pr5 a {
  justify-content: center;
  align-items: center;
}

.projectContainer.pr6:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px 5px #ffffff, 0 0 40px 10px #9690f4, 0 0 30px 7px #6db9cd;
  border: 2px solid white;
}

.projectContainer.pr7:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px 5px #ffffff, 0 0 40px 10px #ffffff;
  border: 2px solid white;
}
.projectContainer.pr8 {
  display: none;
  grid-row: 30/32;
  grid-column: 1/5;
  align-items: center;
}

.projectContainer.pr8:hover {
  transform: scale(1.07);
  box-shadow: 0 0 5px 2px #ffffff, 0 0 40px 10px #f53804;
  border: 2px solid white;
}
.projectContainer.pr8 h1 {
  display: flex;
  position: absolute;
  left: 3%;
  font-family: "Montserrat";
  font-size: 1.6em;
  font-weight: 800;
  color: white;
}

/* personalprojects styling */

.grids {
  display: flex;
  flex-direction: row;
  position: relative;
  width: max-content;
  height: min-content;
  margin-bottom: 6em;
}
.gridsProjects {
  display: flex;
  position: relative;
  width: max-content;
  height: max-content;
  margin-bottom: 6em;
}

.grid-container {
  display: inline-block;
  position: relative;
  background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  z-index: 2;
  margin: 10px;
  overflow: hidden;
  border: 2px solid rgba(245, 245, 245);
  width: 480px;
  height: 420px;
  transition: height 0.5s ease-in-out;
}

.grid-container2 {
  display: inline-block;
  position: relative;
  background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  z-index: 2;
  margin: 10px;
  overflow: hidden;
  border: 2px solid rgba(245, 245, 245);
  width: 480px;
  height: 580px;
  transition: height 0.5s ease-in-out;
}
.grid-container3 {
  display: flex;
  position: relative;
  margin: 10px;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  z-index: 2;
  width: 480px;
  height: 680px;
  border: 2px solid rgba(245, 245, 245);
}
.grid-container4 {
  display: inline-block;
  position: relative;
  background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  z-index: 2;
  margin: 10px;
  overflow: hidden;
  border: 2px solid rgba(245, 245, 245);
  width: 480px;
  height: 720px;
  transition: height 0.5s ease-in-out;
}
.grid-container3 button {
  display: flex;
  position: absolute;
  transform: scale(2);
  z-index: 5;
  background: none;
}
.grid-container3 button svg path:hover {
  fill: rgb(127, 127, 127);
}
.prev-button {
  left: 2%;
  top: 43%;
}
.next-button {
  right: 2%;
  top: 43%;
}
.postersTitle {
  display: flex;
  position: relative;
  margin-top: 2em;
  margin-bottom: 1.2em;
  width: 44%;
}
.posterContainer {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  height: 85%;
  margin-bottom: 1em;
  border-radius: 12px;
}
.posterHolder {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  overflow: hidden;
  width: 80%;
  background: gray;
  height: 100%;
  border-radius: 10px;
}

.poster {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%; /* Set the maximum width to 100% */
  height: 100%; /* Set the maximum height to 100% */
}
.poster.active {
  display: block;
}
#zoomedContainer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 10000;
  overflow: hidden;
}
.zoomContent {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#zoomedPoster {
  display: block;
  max-width: 95%;
  max-height: 95%;
}

.posterHolder svg {
  display: flex;
  position: absolute;
}
.posterHolder .zoom-btn {
  right: 15px;
  top: 15px;
  width: 25px;
  height: 25px;
  z-index: 9999;
}

.posterHolder svg path:hover {
  fill: rgb(127, 127, 127);
}
.posterText {
  display: none;
  position: relative;
  bottom: 0;
  flex-direction: column;
  text-align: center;
  font-family: "Montserrat";
  color: white;
  margin-top: 1rem;
}
.posterInfoText {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  text-align: center;
  font-family: "Montserrat";
  color: white;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 1em;
  z-index: 9999;
}

.posterText.active {
  display: block;
}

.posterText span {
  font-size: 1.1em;
  font-weight: 500;
}

.posterText p {
  font-size: 1em;
  margin-top: 0.3em;
  color: rgb(170, 170, 170);
}

.expandToggle {
  display: flex;
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b1b1b;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0px 0px 10px rgba(235, 235, 235, 0.3);
}

.expandToggle.rotateToggle .arrow {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
}

.expandToggle:hover {
  background: #393939;
}

.expandToggle .arrow {
  display: flex;
  position: relative;
  margin-top: 2px;
  width: 20px;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
}

.mainHolder {
  display: flex;
  position: relative;
  margin: 0 auto;
  margin-left: 5%;
  margin-top: 5%;
  margin-right: 5%;
  width: 90%;
  height: 240px;
  background-color: white;
  border-radius: 15px;
  border: 4px solid rgba(117, 117, 117, 0.3);
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease-in-out;
  overflow: hidden;
  object-fit: cover;
}

.sliderHolder {
  display: flex;
  position: relative;
  margin: 0 auto;
  margin-left: 5%;
  margin-top: 5%;
  margin-right: 5%;
  width: 90%;
  height: 250px;
  background-color: gray;
  border-radius: 15px;
  border: 3px solid rgba(246, 246, 246);
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease-in-out;
  overflow: hidden;
  object-fit: cover;
}
.slider_Track {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: white;
  z-index: 5;
}
.slider_Handle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 30px;
  height: 30px;
  background: gray;
  border: 3px solid white;
  border-radius: 40%;
  cursor: ew-resize;
}
.slider_Handle svg {
  width: 23px;
  padding: 3px;
}
.slider_Images {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sliderHolder .slider_Images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#leftImg {
  clip-path: inset(0 50% 0 0);
}
#rightImg {
  clip-path: inset(0 0 0 50%);
}
.grid-container2 .imageHolder {
  display: flex;
  position: relative;
  margin: 0 auto;
  margin-left: 5%;
  margin-top: 5%;
  margin-right: 5%;
  width: 90%;
  height: 400px;
  background-color: white;
  border-radius: 15px;
  border: 4px solid rgba(117, 117, 117, 0.3);
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease-in-out;
  overflow: hidden;
}
.grid-container2 .mainHolder {
  display: flex;
  position: relative;
  margin: 0 auto;
  margin-left: 5%;
  margin-top: 5%;
  margin-right: 5%;
  width: 90%;
  height: 400px;
  background-color: white;
  border-radius: 15px;
  border: 4px solid rgba(117, 117, 117, 0.3);
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease-in-out;
  overflow: hidden;
}
.grid-container2 .imageHolder .Mockup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-container2#container11 {
  height: 680px;
}
.grid-container2#container11 .imageHolder {
  height: 500px !important;
}
.imageHolder {
  display: flex;
  position: relative;
  margin: 0 auto;
  margin-left: 5%;
  margin-top: 5%;
  margin-right: 5%;
  width: 90%;
  height: 240px;
  background-color: white;
  border-radius: 15px;
  border: 3px solid white;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease-in-out;
  overflow: hidden;
}
.imageHolder button {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-40%) scale(1.3);
  z-index: 5;
  background: none;
  opacity: 0.6;
}
.prevButton {
  left: 4%;
}

.nextButton {
  right: 4%;
}
.prevButton:hover,
.nextButton:hover {
  opacity: 1;
}

.grid-container .mainHolder img {
  object-fit: cover;
  width: 70%;
  background-color: transparent;
}
#container10 .mainHolder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-container2 .mainHolder .iconHolder {
  object-fit: cover;
  width: 40%;
  background-color: transparent;
}
.grid-container .mainHolder .Mockup {
  object-fit: cover;
}
#image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iconHolder {
  display: none;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.activeLogo {
  display: flex;
  opacity: 1;
}
.logoVersionToggle {
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 70px;
  height: 25px;
  background: rgba(205, 205, 205, 0.8);
  border-radius: 15px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4) inset;
  justify-content: space-evenly;
  align-items: center;
}
.whiteToggle,
.blackToggle,
.colorToggle {
  display: flex;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;
}
.whiteToggle:hover,
.blackToggle:hover,
.colorToggle:hover {
  transform: scale(1.1);
}
.whiteToggle {
  background: white;
}
.blackToggle {
  background: black;
}
.colorToggle {
  background: #5f65d3;
}
.scale-down-buttons {
  transform: scale(0.8) !important;
}
.titleHolder {
  display: flex;
  position: relative;
  text-align: center;
  left: 50%;
  margin-top: 20px;
  transform: translateX(-50%);
  flex-direction: column;

  font-family: "Montserrat";
  color: rgb(198, 198, 198);
}
.titleHolder h1 {
  font-size: 1.2em;
  font-weight: 600;
}
.titleHolder p {
  font-size: 1em;
  color: rgb(175, 175, 175);
}
.titleHolder span {
  font-size: 1.2em;
  font-weight: 700;
  color: rgb(198, 198, 198);
}
.expandedText {
  display: flex;
  position: relative;
  width: 90%;
  padding: 15px;
  margin: 0 auto;
  text-align: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 1em;
  color: rgb(198, 198, 198);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.colorBorder {
  display: none;
  position: absolute;
  width: 120%;
  height: 5px;
  bottom: 0;
  background: red;
}
/*aboutme page styling */
.cv-container {
  display: flex;
  position: relative;
  flex-direction: row;
  width: 30%;
  margin: 20px;
  justify-content: center;
}
.cv-button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  margin: 20px;
}
.cv-button p {
  font-size: 1rem;
  margin-top: 15px;
  cursor: pointer;
  scale: 1;
  transition: scale 0.2s ease-in-out;
}
.cv-button img {
  width: 40px;
  height: auto;
  border-radius: 10%;
  outline: 1px solid white;
  outline-offset: 5px;
}

.cv-button p:hover {
  scale: 1.05;
}
.aboutmeContainer {
  display: flex;
  position: relative;
  flex-direction: column;
  overflow: visible;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin-top: 60px;
  margin-bottom: 130px;
  animation: fadeIn 2s forwards;
}
.PhotoContainer {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  /*background: linear-gradient(180deg, #313131 0%, #232323 73.74%);*/
  border: 3px solid #a9a9a9;
  transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
  overflow: visible;
  cursor: pointer;
  margin: 5px;
  transform: scale(1);
}
.PhotoContainer:hover {
  transform: scale(1.06);
  box-shadow: 0 0 5px #fff, 0 0 20px #fff, 0 0 40px #fff;
}
.PhotoContainer #profileFC {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
}
.SoftIcons {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index: 0;
  transition: transform 0.2s ease-in-out, box-shadow 0.4s ease-in-out;
}

@keyframes rotateSvgIcon {
  0%,
  100% {
    transform: rotate(-7deg);
  }
  50% {
    transform: rotate(7deg);
  }
}
@keyframes rotateSvgIcon2 {
  0%,
  100% {
    transform: rotate(7deg);
  }
  50% {
    transform: rotate(-7deg);
  }
}
.PhotoContainer:hover .SoftIcons:nth-child(1) {
  transform: translate(-50%, -50%)
    translate(calc(185px * cos(0deg)), calc(185px * sin(0deg)));
}
.PhotoContainer:hover .SoftIcons:nth-child(2) {
  transform: translate(-50%, -50%)
    translate(calc(185px * cos(51.4286deg)), calc(185px * sin(51.4286deg)));
}
.PhotoContainer:hover .SoftIcons:nth-child(3) {
  transform: translate(-50%, -50%)
    translate(
      calc(185px * cos(2 * 51.4286deg)),
      calc(185px * sin(2 * 51.4286deg))
    );
}
.PhotoContainer:hover .SoftIcons:nth-child(4) {
  transform: translate(-50%, -50%)
    translate(
      calc(185px * cos(3 * 51.4286deg)),
      calc(185px * sin(3 * 51.4286deg))
    );
}
.PhotoContainer:hover .SoftIcons:nth-child(5) {
  transform: translate(-50%, -50%)
    translate(
      calc(185px * cos(4 * 51.4286deg)),
      calc(185px * sin(4 * 51.4286deg))
    );
}
.PhotoContainer:hover .SoftIcons:nth-child(6) {
  transform: translate(-50%, -50%)
    translate(
      calc(185px * cos(5 * 51.4286deg)),
      calc(185px * sin(5 * 51.4286deg))
    );
}
.PhotoContainer:hover .SoftIcons:nth-child(7) {
  transform: translate(-50%, -50%)
    translate(
      calc(185px * cos(6 * 51.4286deg)),
      calc(185px * sin(6 * 51.4286deg))
    );
}
.PhotoContainer:hover .SoftIcons svg#ia1 {
  animation: rotateSvgIcon 7s ease-in-out infinite;
}
.PhotoContainer:hover .SoftIcons svg#ia2 {
  animation: rotateSvgIcon2 7s ease-in-out infinite;
}
.aboutMeText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Montserrat";
  color: white;
  font-size: 2em;
  width: 80%;
  height: min-content;
  animation: fadeIn 2s forwards;
}
.sections {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

#abtMeImg {
  width: 250px;
  margin: 40px;
}
.sectionTextBlock {
  text-align: center;
  width: 60%;
  font-size: 1rem;
}
.kontakti {
  display: inline-block;
  position: relative;
  margin-bottom: 200px;
}
.kontakti img {
  width: 300px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
  transition: transform 0.2s ease-in-out;
}

.kontakti img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.kontakti:hover img:first-child {
  opacity: 0;
  transform: translateY(-20px) rotate(-5deg);
}

.kontakti:hover img:last-child {
  opacity: 1;
  transform: translateY(-20px) rotate(-5deg);
}
.aboutMeText #section1 .sectionTextBlock p span {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #4158d0, rgb(200, 80, 192), #ffcc70);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientAnimation 5s linear infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* 404 page styling */
.mainContainer404 {
  display: flex;
  max-width: 1200px;
  width: 70%;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 200px;
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 0.5s;
}
.container404Image {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.container404Image img {
  display: flex;
  position: relative;
  width: 20%;
  filter: drop-shadow(0 0 14px rgba(218, 149, 255, 0.9));
}
.container404Image img:nth-of-type(1) {
  position: relative;
  left: 25px;
  animation: animation404-3 10s ease-in-out infinite;
}
.container404Image img:nth-of-type(3) {
  position: relative;
  right: 25px;
  animation: animation404-3 10s ease-in-out infinite;
}
.container404Image img:nth-of-type(2) {
  position: relative;
  scale: 1.2;
  animation: animation404-2 10s ease-in-out infinite;
}
.mainContainer404 h1 {
  width: 85%;
  text-align: center;
  color: #9e61fa;
  display: flex;
  justify-content: center;
  font-family: "Raleway";
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 100px;
}
.mainContainer404 h2 {
  display: flex;

  justify-content: center;
  width: 70%;
  color: white;
  text-align: center;
  font-family: "Raleway";
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.mainContainer404 p {
  display: flex;
  justify-content: center;
  width: 70%;
  color: white;
  text-align: center;
  font-family: "Raleway";
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 50px;
}
.formSub {
  display: flex;
  position: relative;
  height: min-content;
  align-items: center;
  justify-content: center;
  width: 60%;
}
.formSubmission {
  display: flex;
  position: relative;
  flex-direction: column;
  height: max-content;
  justify-content: center;
  padding: 10px;
  width: 100%;
  background-color: rgb(158, 158, 158);
  opacity: 1;
  border-radius: 20px;
  border: 2px solid white;
  margin-bottom: 20px;
}
.emailContainer {
  display: flex;
  width: 80%;
  align-items: center;
}
.emailContainer label {
  font-size: 0.92rem;
  font-family: "Montserrat";
  font-weight: 600;
  color: rgb(35, 35, 35);
  margin-left: 15px;
}
.emailInput {
  display: flex;
  width: 70%;
  height: 45px;
  position: relative;
  justify-content: flex-start;
  border-radius: 10px;
  background: linear-gradient(180deg, #313131 0%, rgb(35, 35, 35) 73.74%);
  border: 2px solid #a9a9a9;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  margin-left: 10px;
  overflow: hidden;
}
#emailField {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  border: none;
  background: transparent;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
}
.messageInput {
  display: flex;
  width: 100%;
  height: 300px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  background: linear-gradient(180deg, #313131 0%, #232323 73.74%);
  border: 2px solid #a9a9a9;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 15px;
}
#messageField {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
  background: transparent;
  color: white;
  font-size: 16px;
  box-sizing: border-box;
  resize: none;
}
#emailField::placeholder {
  color: #a9a9a9;
}
.submitBtn {
  display: flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  margin-bottom: 5px;
  width: 100px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 1%;
  position: relative;
  border-radius: 10px;
  background: linear-gradient(180deg, #686868 0%, #4d4d4d 73.74%);
  border: 2px solid #a9a9a9;
  list-style-type: none;
  text-decoration: none;
  cursor: pointer;
}
.submitBtn:hover {
  background: linear-gradient(180deg, #686868 0%, #2b2b2b 90.74%);
  transition: background-color 0.3s ease-in-out;
}
.submitBtn:hover span {
  color: white;
  transition: color 0.3s ease-in-out;
}

.submitBtn span {
  font-size: 0.92rem;
  font-family: "Montserrat";
  font-weight: 500;
  margin: 10px;
  color: rgb(202, 202, 202);
}
.projectTitleContainer {
  display: flex;
  position: relative;
  width: 250px;
  height: 250px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #686868 0%, #4d4d4d 73.74%);
  border-radius: 30px;
  border: 2px solid #a9a9a9;
  object-fit: cover;
}
.projectTitleContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 30px;
  filter: grayscale(1);
  transition: scale 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.projectTitleContainer::after {
  display: flex;
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 40px;
  content: "";
  border: 2px solid #a9a9a9;
  z-index: 1;
  overflow: hidden;
}
.projectTitleContainer:hover img {
  scale: 1.06;
  filter: grayscale(0);
}
.videoHolder {
  display: inline-block;
  position: relative;
  width: max-content;
  margin-top: 50px;
}
#spotifyPlayer {
  display: flex;
  position: relative;
  width: 50%;
  aspect-ratio: 1/0.5;
}
#play-pause-button {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  cursor: pointer;
}
.videoHolder:hover #play-pause-button {
  display: flex;
}
#playBtn,
#pauseBtn {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
}

@keyframes animation404 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes animation404-2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes animation404-3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
.projectMainContainer {
  display: flex;
  max-width: 1200px;
  width: 80%;
  flex-direction: column;
  animation: fadeIn 1s ease;
}
.titleContainer {
  display: flex;
  width: 1100px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.titleGraphicMainContainer {
  display: flex;
  position: relative;
  margin-top: 45px;
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  font-family: "Raleway";
  color: white;
}
.titleGraphicMainContainer::after {
  display: flex;
  content: "";
  position: absolute;
  width: 100%;
  bottom: -50px;
  opacity: 0;
  height: 100%;
  z-index: 20;
  border-radius: 10px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(255, 255, 255, 0) 30%
  );
  transition: bottom 0.2s ease, opacity 0.2s ease;
}
.titleGraphicMainContainer:hover::after {
  bottom: 0;
  opacity: 1;
}
#main-Graphic-Info-Container {
  display: flex;
  width: 100%;
  height: 10%;
  align-items: center;
  position: absolute;
  margin: 5px;
  z-index: 9999;
  opacity: 0;
  bottom: -20px;
  transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#main-Graphic-Info-Container h1 {
  font-size: 1.4rem;
  position: relative;
  left: 20px;
}
.titleGraphicMainContainer:hover #main-Graphic-Info-Container {
  opacity: 1;
  bottom: 0;
}
.graphicHolder {
  display: flex;
  position: relative;
  width: 100%;
  margin: 2.5%;
  border-radius: 10px;
  overflow: hidden;
}
.graphicHolder {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Scale video to cover container */
}
.graphicHolder video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.graphicHolder img {
  display: flex;
  width: 100%;
  object-fit: cover;
}
.graphicHolder2 {
  display: flex;
  position: relative;
  width: 60%;
  margin: 2.5%;
  border-radius: 10px;
  overflow: hidden;
}
.graphicHolder #mainImage {
  display: block;
  position: relative;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.youtubeHolder {
  display: flex;
  width: 80%;
  height: min-content;
  background: white;
  margin-bottom: 50px;
}
#s84video {
  display: flex;
  aspect-ratio: 16/9;
  width: 100%;
  padding: 15px;
}
#verticalLogo {
  width: 100%;
}
.titleGraphicMainContainer:hover #overlay {
  opacity: 1;
}
.graphicHolder #bazarCover {
  display: block;
  position: relative;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.titleGraphicMainContainer:hover img {
  transform: scale(1.06);
}

.titleTextContainer {
  display: flex;
  position: relative;
  width: 100%;
  height: min-content;
  font-family: "Raleway";
  color: white;
  justify-content: space-between;
}
.left-Title-Text-Container {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.left-Title-Text-Container img {
  display: flex;
  position: relative;
  width: 250px;
  margin-bottom: 20px;
}
#diskPng {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 15px #2092fc);
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.titleTextContainer h1 {
  font-size: 2rem;
  font-weight: 500;
}
.titleTextContainer p {
  font-size: 1.4rem;
  font-weight: 300;
}
.right-Title-Text-Container {
  display: flex;
  position: relative;
  width: 45%;

  text-align: right;
  flex-direction: column; /* Make it a column layout */
  justify-content: flex-end;
}
.right-Title-Text-Container p {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  right: 10px;
  margin-bottom: 0; /* Remove the default margin-bottom */
  align-self: flex-end;
}
.right-Title-Text-Container p::after {
  display: inline-block;
  position: absolute;
  right: -10px;
  top: 0;
  content: "";
  height: 100%;
  border-right: 2px solid white;
}
.projectSections {
  display: flex;
  flex-direction: column;
  font-family: "Raleway";
  color: white;
}
#section1,
#section2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#infoContainer1,
#infoContainer2 {
  width: 80%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 60px;
}
.detailsContainer {
  display: flex;
  position: relative;
  width: 80%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#detailsContainerBazar img {
  width: 25%;
  transition: transform 0.2s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px;
}
#detailsContainerBillSoft img {
  width: 30%;
  transition: transform 0.2s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px;
}
.detailsContainer img:hover {
  transform: scale(1.06);
}

#section2 {
  display: flex;
  width: 100%;
}
#gifHolder {
  display: flex;
  justify-content: space-between;
  width: 60%;
}
#gifHolder img {
  width: 45%;
  border-radius: 10px;
  object-fit: cover;
}
#section3 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: 50px;
}

#section4 {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
#MockupContainer {
  display: flex;
  width: 40%;
}
#infoContainer3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: min-content;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
}
#infoContainer3 img:nth-child(1) {
  width: 50%;
  margin-bottom: 40px;
}
#infoContainer3 img:nth-child(3) {
  display: flex;
  width: 50%;
  margin-top: 40px;
  margin-bottom: 40px;
}
#MockupContainer {
  border-radius: 10px;
  margin-bottom: 100px;
}

/*billsoft project page styling */

.sliderStyle {
  display: flex;
  position: relative;

  width: 50%;
  height: auto;
  margin-top: 60px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 3px solid rgb(255, 255, 255);
  transition: box-shadow 0.2s ease-in-out;
  --divider-width: 1px;
  --divider-color: #161616;
  --default-handle-opacity: 1;
  --default-handle-color: #161616;
  --default-handle-width: clamp(40px, 7vw, 100px);
}
.sliderStyle:focus {
  outline: none;
  box-shadow: 0px 0px 15px 5px #fafafa;
}
.before,
.after {
  margin: 0;
}

.before figcaption,
.after figcaption {
  color: #081038;

  opacity: 0.8;
  margin: 10px;
  padding: 5px;
  position: absolute;
  line-height: 100%;
  font-family: "Raleway";
  font-weight: 700;
  font-size: 1.3rem;
}

.before figcaption {
  top: 0;
  left: 0;
}

.after figcaption {
  right: 0;
  bottom: 0;
}
/*s84Logo page styling */
.tshirtMockupsContainer {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 60px;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
  height: min-content;
}
#mockupContainer1,
#mockupContainer2 {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: min-content;
  height: auto;
  margin: 40px;
}
.tshirtMockupsContainer p {
  display: inline-block;
  opacity: 0;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 1.5rem;
  color: white;
  position: absolute;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
#mockupContainer1 p {
  display: inline-block;
  margin: 0;
  text-align: left;
}
#mockupContainer2 p {
  text-align: right;
}
#mockupContainer2 p a {
  list-style-type: none;
  text-decoration: none;
  color: red;
}

.tshirtMockupsContainer img {
  position: relative;
  width: 300px;
  transition: transform 0.5s ease, filter 0.5s ease;
  z-index: 9999;
}
#mockupContainer1 img {
  scale: 1.2;
}
#mockupContainer2:hover img {
  filter: drop-shadow(0 0 5px #ff997a) drop-shadow(0 0 15px #ba2026);
  transform: translateX(-180px);
}
#mockupContainer2:hover p {
  opacity: 1;
  transform: translateX(180px);
}
#mockupContainer1:hover img {
  filter: drop-shadow(0 0 5px #ff997a) drop-shadow(0 0 15px #f15a2c);
  transform: translateX(180px);
}
#mockupContainer1:hover p {
  opacity: 1;
  transform: translateX(-180px);
}
/*billsoft website page styling */

/* personal projects mobile styling */

.splide {
  display: flex;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  margin-top: 40px;
  margin-bottom: 20px;
}
#splide1 {
  width: 90%;
  left: 0;
  transform: none;
}
#splide2 {
  width: 70%;
  left: 0;
  transform: none;
}
.splide__slide {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  margin-bottom: 40px;
}
#knijka__splide {
  margin-top: 10px;
}
.splide__slide__container {
  display: flex;
  position: relative;
  width: 80%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135.79deg,
    rgba(255, 255, 255, 0) -43.92%,
    rgba(172, 238, 252, 0.7) 190.56%
  );
  backdrop-filter: blur(2px);
  border-radius: 5%;
  border: 2px solid white;
  margin-bottom: 10px;
}
#knijka img {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  filter: drop-shadow(0px 0px 10px black);
}
#knijka {
  background: rgb(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 30px;
}
#splide2 .splide__arrow {
  top: 34%;
}
.splide__arrow {
  display: inline-block;
  background: none;
  opacity: 1;
  width: 2em;
  top: 44%;
}
.splide__arrow--prev {
  left: 0.4em;
}
.splide__arrow--next {
  right: 0.4em;
}
.splide__arrow svg {
  fill: white;
  width: 1.5em;
  height: 1.5em;
}

.splide__slide__container img {
  width: 90%;
}
.splide__slide p {
  display: flex;
  font-family: "Raleway";
  font-weight: 500;
  color: white;
}
#splide_s84 {
  width: 100%;
}
.quoteContainer {
  display: flex;
  position: relative;
  width: 70%;
  font-family: "Raleway";
  font-size: 1.2rem;
  font-weight: 400;
  color: yellow;
  text-align: center;
}
.quoteContainer p {
  display: inline-block;
  margin: 70px;
}
#astroPng {
  display: flex;
  width: 35%;
  margin-top: 40px;
  transition: transform 0.5s ease, filter 0.5s ease;
}
#retroliPng {
  display: flex;
  width: 35%;
  transition: transform 0.5s ease, filter 0.5s ease;
  margin-top: 40px;
}
#astroPng:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #2092fc);
}
#retroliPng:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #2092fc);
}
.adParagraph {
  display: flex;
  position: relative;
  font-family: "Raleway";
  color: white;
  font-size: 1.4rem;
  width: 90%;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.pswp-gallery {
  display: flex;
  position: relative;
  flex-direction: column;
  font-family: "Raleway";
  color: white;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.pswp-gallery__item {
  display: flex;
  position: relative;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  width: 70%;
  height: auto;
  transform: scale(1);
  cursor: pointer;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.pswp-gallery__item a img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pswp-gallery .pswp-gallery__item:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 10px #2092fc);
}
.pswp-gallery p {
  margin: 10px;
}

#scrollToTopBtn {
  display: flex;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
}
#scrollToTopBtn svg {
  filter: drop-shadow(0 0 4px #fff);
}
#scrollToTopBtn svg:hover {
  cursor: pointer;
}
header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: -60px;
  z-index: 9999;
  transition: transform 0.5s ease-in-out;
  filter: drop-shadow(0 0 15px #161616);
}
.headerContainer {
  display: flex;
  position: relative;
  backdrop-filter: blur(4px);
  background: rgba(14, 14, 14, 0.8);

  width: 100%;
  height: 100%;
}

.headerLogo img {
  display: flex;
  position: absolute;
  width: 4.2em;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  filter: url(#blur-drop-shadow-filter);
  opacity: 1;
  z-index: 9999;
}
.contacts_Main_Container {
  display: flex;
  position: relative;
  width: 350px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.contactsC {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 95%;

  border-radius: 10px;
  background: rgba(43, 43, 43, 1);

  padding: 20px;

  font-family: "Montserrat";
  font-size: 1.1rem;
  color: #ffffff;
  margin: 10px;
}
.contactsC::before,
.contactsC::after {
  content: "";
  position: absolute;
  inset: -0.15rem;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from var(--gradient-angle),
    #2980b9,
    #6dd5fa,
    #c2e59c,
    #ffffff,
    #c2e59c,
    #6dd5fa,
    #2980b9
  );
  animation: rotation 5s linear infinite;
}
.contactsC span {
  position: relative;
  user-select: none;
}
.contactsC span::after {
  display: flex;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 5px;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  background: rgb(34, 34, 34);
  transition: opacity 0.5s ease-in-out;
}
.contactsC:hover span::after {
  opacity: 0;
}
.clipboardCopy {
  display: flex;
  position: relative;
  background: none;
  cursor: pointer;
}
@keyframes rotation {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}
@media only screen and (max-width: 1100px) {
  .titleContainer {
    width: 100%;
  }
}
@media only screen and (max-width: 970px) {
  #scrollToTopBtn {
    display: flex;
    position: fixed;
    right: 1.5rem;
    bottom: 4.5rem;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 9999;
    transform: scale(0.8);
  }

  .grids {
    flex-direction: column;
    width: 65%;
  }
  .grids2 {
    padding-top: 20px;
    flex-direction: row;
    width: 90%;
  }
  #grid1-1,
  #grid2-2 {
    width: 85%;
  }
  .projectContainer.pr1 {
    margin-top: 0px;
  }
  .projectContainer.pr4 {
    margin-top: 5px;
  }
  #grid1-1 .projectContainer {
    width: 100%;
  }
  #grid2-2 .projectContainer {
    width: 100%;
  }
  .projectIcon {
    filter: grayscale(0%);
  }
  .projectPng {
    filter: grayscale(0%);
  }
  .textContainer {
    line-height: 1em;
  }
  .projectContainerInfo h1 {
    display: flex;
    font-size: 1em;
    font-weight: 800;
  }
  .projectContainerInfo span {
    display: flex;
    font-weight: 700;
    font-size: 0.8em;
  }
  .projectContainerInfo p {
    font-size: 0.8em;
    font-weight: 600;
  }

  .grid {
    all: unset;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: max-content;
    overflow: hidden;
    margin: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.4s;
  }
  .grid-container {
    all: unset;
    display: inline-block;
    position: relative;
    background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid rgba(245, 245, 245);
    width: 95%;
    height: 480px;
    transition: height 0.5s ease-in-out;
  }
  .mainHolder {
    height: 300px;
  }

  .grid-container2 {
    all: unset;
    display: inline-block;
    flex-direction: column;
    position: relative;
    background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid rgba(245, 245, 245);
    width: 95%;
    height: 600px;
    transition: height 0.5s ease-in-out;
  }
  .projectContainer.pr5 {
    width: 80%;
  }
  .projectContainer.pr1:hover,
  .projectContainer.pr2:hover,
  .projectContainer.pr3:hover,
  .projectContainer.pr4:hover,
  .projectContainer.pr5:hover,
  .projectContainer.pr6:hover,
  .projectContainer.pr7:hover {
    transform: scale(1);
    box-shadow: none;
  }
  .grid-container2 .mainHolder {
    all: unset;
    display: flex;
    position: relative;
    margin: 0 auto;
    margin-top: 5%;
    width: 90%;
    height: 420px;
    background-color: white;
    border-radius: 15px;
    border: 4px solid rgba(117, 117, 117, 0.3);
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease-in-out;
    overflow: hidden;
  }
  .grid-container3 {
    all: unset;
    display: flex;
    position: relative;
    margin-bottom: 10px;
    align-items: center;

    flex-direction: column;
    background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
    width: 95%;

    border: 2px solid rgba(245, 245, 245);
  }
  .grid-container3 button {
    display: flex;
    position: absolute;
    transform: scale(1);
    z-index: 5;
    background: none;
    width: 8%; /* Adjust the width percentage as needed */
    height: auto;
    align-items: center;
    justify-content: center;
  }
  .grid-container3 button svg path:hover {
    fill: rgb(127, 127, 127);
  }
  .prev-button {
    top: 40%;
  }
  .next-button {
    top: 40%;
  }
  .posterHolder svg {
    display: flex;
    position: absolute;
  }
  .posterHolder .zoom-btn {
    right: 8%;
    top: 4%;
    width: 11%;
    height: 11%;
    z-index: 9999;
  }
  .posterContainer {
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    width: 95%;
    max-width: 430px;
    border-radius: 12px;
  }
  .posterHolder {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: gray;
    border-radius: 10px;

    width: 80%;
    height: 0;
    padding-bottom: 116.04%;
  }
  .postersTitle {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .postersTitle img {
    display: flex;
    position: relative;
    width: 90%;
  }
  .poster {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .posterText {
    all: unset;
    display: none;
    flex-direction: column;
    text-align: center;
    font-family: "Montserrat";
    color: white;

    width: 80%;
    height: 16vw;
  }
  .posterInfoText {
    display: none;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    text-align: center;
    font-family: "Montserrat";
    color: white;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 1em;
    z-index: 9999;
  }

  .posterText.active {
    display: flex;
    justify-content: center;
  }

  .posterText span {
    font-size: 4vw;
    font-weight: 400;
  }

  .posterText p {
    font-size: 3vw;
    margin-top: 2%;
    color: rgb(170, 170, 170);
  }

  .grid-container4 {
    all: unset;
    display: inline-block;
    position: relative;
    background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid rgba(245, 245, 245);
    width: 95%;
    height: 850px;
    transition: height 0.5s ease-in-out;
  }

  .sliderHolder {
    all: unset;
    display: flex;
    position: relative;
    margin: 0 auto;
    margin-left: 5%;
    margin-top: 5%;
    margin-right: 5%;
    width: 90%;
    height: 300px;
    background-color: gray;
    border-radius: 15px;
    border: 3px solid rgba(246, 246, 246);
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease-in-out;
    overflow: hidden;
  }
  .slider_Images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .sliderHolder .slider_Images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .imageHolder {
    display: flex;
    position: relative;
    margin: 0 auto;
    margin-left: 5%;
    margin-top: 5%;
    margin-right: 5%;
    width: 90%;
    height: 320px;
    background-color: white;
    border-radius: 15px;
    border: 3px solid white;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease-in-out;
    overflow: hidden;
  }
  #image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  .mainContainer404 {
    width: 100%;
  }
  .container404Image img {
    width: 22%;
  }
  .g-recaptcha {
    display: flex;
    position: relative;
    width: 30%;
    left: 0;
    scale: 0.7;
  }
  /*aboutme 970 mobile styling*/
  .sectionTextBlock {
    width: 90%;
  }
  .kontakti img {
    width: 200px;
  }
  .mainContainer404 h1 {
    width: 85%;
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  .projectMainContainer {
    width: 95%;
  }
  .titleTextContainer {
    justify-content: none;
    flex-direction: column;
    align-items: center;
  }
  .left-Title-Text-Container {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .left-Title-Text-Container img {
    left: 0;
    transform: none;
  }
  .right-Title-Text-Container {
    width: 80%;
    text-align: center;
  }
  .right-Title-Text-Container p::after {
    all: unset;
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 60%;
    border-bottom: 5px dotted rgb(169, 169, 169, 0.6);
  }
  .detailsContainer {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .detailsContainer img {
    margin: 10px;
    width: 35%;
    border-radius: 10px;
  }
  #gifHolder {
    width: 90%;
  }
  #section3 {
    width: 100%;
    margin: 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  #infoContainer3 {
    width: 90%;
  }
  #MockupContainer {
    width: 85%;
  }
  .graphicHolder2 {
    width: 100%;
  }
  .sliderStyle {
    display: block;
    width: 80%;
  }
  /*s84 logo page styling */
  #mockupContainer1,
  #mockupContainer2 {
    width: 100%;
    margin-top: 50px;
    flex-direction: column;
  }
  #mockupContainer1 p,
  #mockupContainer2 p {
    opacity: 1;
    width: 40%;
    margin-top: 50px;
    font-size: 1.5rem;
    position: relative;
    text-align: center;
  }
  #mockupContainer1 p {
    margin-top: 120px;
  }
  #mockupContainer1 img {
    width: 50%;

    left: 4%;
  }
  #mockupContainer2 img {
    width: 50%;
  }
  #mockupContainer2 img:hover {
    filter: drop-shadow(0 0 5px #f74a4f) drop-shadow(0 0 15px #ba2026) !important;
    transform: scale(1.05) !important;
  }

  #mockupContainer2:hover p {
    transform: none;
  }
  #mockupContainer1 img:hover {
    filter: drop-shadow(0 0 5px #ff997a) drop-shadow(0 0 15px #f15a2c) !important;
    transform: scale(1.05) !important;
  }

  #mockupContainer1:hover p {
    transform: none;
  }

  #mockupContainer2:hover img {
    filter: none;
    transform: none;
  }

  #mockupContainer1:hover img {
    filter: none;
    transform: none;
  }
  .youtubeHolder {
    display: flex;
    width: 100%;
    height: min-content;
    background: white;
    margin-bottom: 50px;
  }
  #s84video {
    display: flex;
    aspect-ratio: 16/9;
    width: 100%;
    padding: 15px;
  }
  #spotifyPlayer {
    width: 90%;
  }
  #retroliPng {
    width: 80%;
    margin-bottom: 30px;
  }
  .quoteContainer p {
    margin: 20px;
  }
}

@media only screen and (max-width: 750px) {
  .grids {
    width: 85%;
  }
  .projectContainer.pr5 h1 {
    font-size: 1em !important;
  }
  .grid-container2 {
    all: unset;
    display: inline-block;
    flex-direction: column;
    position: relative;
    background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid rgba(245, 245, 245);
    width: 95%;
    height: 680px;
    transition: height 0.5s ease-in-out;
  }
  #container6 {
    height: 580px;
  }
  .grid-container2 .mainHolder {
    all: unset;
    display: flex;
    position: relative;
    margin: 0 auto;
    margin-top: 5%;
    width: 90%;
    height: 500px;
    background-color: white;
    border-radius: 15px;
    border: 4px solid rgba(117, 117, 117, 0.3);
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease-in-out;
    overflow: hidden;
  }
  .mainContainer404 {
    width: 100%;
  }
  .container404Image img {
    width: 30%;
  }
  .g-recaptcha {
    display: flex;
    position: relative;
    width: 30%;
    left: 0;
    scale: 0.7;
  }
  .formSub {
    width: 80%;
  }
  .emailContainer label {
    font-size: 0.8rem;

    font-weight: 500;
    color: rgb(35, 35, 35);
    margin-left: 15px;
    text-align: left;
  }
  .emailContainer {
    width: 100%;
  }
  .mainContainer404 h1 {
    width: 85%;
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .sliderStyle {
    margin-top: 50px;
    width: 90%;
  }
  .splide {
    width: 100%;
  }
  #splide1,
  #splide2 {
    width: 100%;
  }
  .splide__arrow {
    display: none;
  }
  #knijka {
    background: none;
    border: none;
    width: 100%;
    margin-bottom: 0px;
  }
  #knijka img {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #astroPng {
    width: 65%;
    margin-bottom: 30px;
  }

  .quoteContainer {
    width: 90%;
  }
}

@media only screen and (max-width: 450px) {
  footer {
    width: 70%;
  }
  .initials {
    width: 20%;
  }
  .aboutmeContainer {
    margin-bottom: 100px;
  }
  .PhotoContainer {
    width: 200px;
    height: 200px;
  }
  .SoftIcons {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    z-index: 0;
    transition: transform 0.2s ease-in-out, box-shadow 0.4s ease-in-out;
  }
  .sections {
    width: 90%;
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0px;
  }
  .aboutMeText {
    width: 100%;
  }

  #abtMeImg {
    width: 130px;
    margin-top: 40px !important;
  }
  .projectContainer.pr1:hover,
  .projectContainer.pr2:hover,
  .projectContainer.pr3:hover,
  .projectContainer.pr4:hover,
  .projectContainer.pr5:hover,
  .projectContainer.pr6:hover,
  .projectContainer.pr7:hover {
    transform: scale(1);
    box-shadow: none;
  }
  #grid1-1,
  #grid2-2 {
    margin: 0 auto;
  }
  .PhotoContainer:hover .SoftIcons:nth-child(1) {
    transform: translate(-50%, -50%)
      translate(calc(145px * cos(0deg)), calc(145px * sin(0deg)));
  }
  .PhotoContainer:hover .SoftIcons:nth-child(2) {
    transform: translate(-50%, -50%)
      translate(calc(145px * cos(51.4286deg)), calc(145px * sin(51.4286deg)));
  }
  .PhotoContainer:hover .SoftIcons:nth-child(3) {
    transform: translate(-50%, -50%)
      translate(
        calc(145px * cos(2 * 51.4286deg)),
        calc(145px * sin(2 * 51.4286deg))
      );
  }
  .PhotoContainer:hover .SoftIcons:nth-child(4) {
    transform: translate(-50%, -50%)
      translate(
        calc(145px * cos(3 * 51.4286deg)),
        calc(145px * sin(3 * 51.4286deg))
      );
  }
  .PhotoContainer:hover .SoftIcons:nth-child(5) {
    transform: translate(-50%, -50%)
      translate(
        calc(145px * cos(4 * 51.4286deg)),
        calc(145px * sin(4 * 51.4286deg))
      );
  }
  .PhotoContainer:hover .SoftIcons:nth-child(6) {
    transform: translate(-50%, -50%)
      translate(
        calc(145px * cos(5 * 51.4286deg)),
        calc(145px * sin(5 * 51.4286deg))
      );
  }
  .PhotoContainer:hover .SoftIcons:nth-child(7) {
    transform: translate(-50%, -50%)
      translate(
        calc(145px * cos(6 * 51.4286deg)),
        calc(145px * sin(6 * 51.4286deg))
      );
  }
  .mainInfo {
    width: 80%;
  }
  .grids {
    width: 90%;
  }
  .grid {
    align-items: center;
    justify-content: center;
    margin: 0px;
  }
  .grids2 {
    flex-direction: column;
  }
  #grid1-1,
  #grid2-2 {
    width: 100%;
  }

  .grid-container2 {
    all: unset;
    display: inline-block;
    flex-direction: column;
    position: relative;
    background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid rgba(245, 245, 245);
    width: 95%;
    height: 480px;
    transition: height 0.5s ease-in-out;
  }
  .sliderHolder {
    height: 200px;
  }
  .imageHolder {
    height: 200px;
  }
  .grid-container4 {
    height: 600px;
  }
  .grid-container2 .imageHolder {
    height: 240px;
  }
  #container6 {
    height: 400px;
  }
  .grid-container2 .mainHolder {
    all: unset;
    display: flex;
    position: relative;
    margin: 0 auto;
    margin-top: 5%;
    width: 90%;
    height: auto;
    background-color: white;
    border-radius: 15px;
    border: 4px solid rgba(117, 117, 117, 0.3);
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease-in-out;
    overflow: hidden;
  }
  .grid-container2 .mainHolder .iconHolder {
    object-fit: cover;
    width: 40%;
    background-color: transparent;
    margin: 5%;
  }
  .grid-container .mainHolder img {
    object-fit: cover;
    width: 70%;
    background-color: transparent;
  }
  #container10 .mainHolder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mainHolder {
    display: flex;
    position: relative;
    margin: 0 auto;
    margin-left: 5%;
    margin-top: 5%;
    margin-right: 5%;
    width: 90%;
    height: 240px;
    background-color: white;
    border-radius: 15px;
    border: 4px solid rgba(117, 117, 117, 0.3);
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease-in-out;
    overflow: hidden;
    object-fit: cover;
  }
  .grid-container {
    display: inline-block;
    position: relative;
    background: linear-gradient(-145deg, #313131 0%, #232323 73.74%);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
    margin: 10px;
    overflow: hidden;
    border: 2px solid rgba(245, 245, 245);
    height: 400px;
    transition: height 0.5s ease-in-out;
  }
  .mainContainer404 {
    width: 100%;
  }
  .container404Image {
    margin-bottom: 40px;
  }
  .mainContainer404 h1 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .mainContainer404 h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .mainContainer404 p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 400;
    margin-bottom: 50px;
  }
  .formSub {
    width: 85%;
  }
  .formSubmission {
    width: 100%;
  }
  .emailInput {
    height: 40px;
  }
  .textArea {
    height: 200px;
  }
  .container404Image img {
    width: 30%;
  }
  .g-recaptcha {
    display: flex;
    position: relative;
    width: 30%;
    left: 0;
    scale: 0.7;
  }
  .emailContainer label {
    font-size: 0.8rem;

    font-weight: 500;
    color: rgb(35, 35, 35);
    margin-left: 15px;
    text-align: left;
  }
  .emailContainer {
    width: 100%;
  }
  #mockupContainer1 p,
  #mockupContainer2 p {
    opacity: 1;
    width: 80%;
    margin-top: 50px;
    font-size: 1.5rem;
    position: relative;
    text-align: center;
  }

  /* scaled menu */

  button.menu-closed {
    display: flex;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255);
    border-radius: 50%;
    background: rgba(43, 43, 43, 0.8);
    backdrop-filter: blur(10px);
    padding: 0;
    cursor: pointer;
    transition: width ease-in-out 0.4s, border-radius ease-in-out 0.4s;
  }

  button.menu-closed:hover:not(.menu-expanded) {
    background: rgba(61, 61, 61, 0.8);
  }
  button.menu-expanded {
    width: 18rem;
    border-radius: 1rem;
  }

  .menu-closed .menuIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;

    width: 30px;
    height: 30px;
    transition: transform 0.4s ease-in-out, background-color 0.5s ease-in-out;
    border-radius: 10px;
  }
  .rotate-icon {
    transform: rotate(-45deg);
    transition: transform 0.5s ease-in-out;
  }
  .menuIconContainer {
    display: flex;
    position: absolute;
    transform: translateX(-390%);
    transition: transform 1s ease-in-out;
    background-color: #282828;
  }
  .menu-expanded .menuIconContainer:hover {
    background-color: #0d0d0d;
  }
  .menuOptions {
    display: none;
    position: absolute;
    right: 5%;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 100%;
    opacity: 0;
    white-space: nowrap;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .menu-expanded .menuOptions {
    opacity: 100;
    transform: translateY(0);
  }
  button.menu-closed a {
    display: flex;
    margin-left: 10px;
    list-style-type: none;
    text-decoration: none;
    font-size: 0.72rem;
    font-family: "Montserrat";
    font-weight: 400;
    color: rgb(235, 235, 235);
  }
  .menuOptions a:hover {
    color: #a5a5a5;
  }
  .projectMainContainer p {
    font-size: 1rem;
  }
  .right-Title-Text-Container {
    display: flex;
    width: 100%;
  }
  .right-Title-Text-Container p {
    left: 50%;
    transform: translateX(-50%);
  }
  #MockupContainer {
    width: 100%;
  }
  /* slider styling billsoft */
  .sliderStyle {
    width: 90%;
    margin-top: 50px;
  }
  .pswp-gallery__item {
    width: 90%;
  }
}
@media only screen and (max-width: 230px) {
  #container2 {
    height: 310px;
  }
}
@media only screen and (max-width: 300px) {
  .mainHolder {
    height: 160px;
  }
  .grid-container {
    height: 300px;
  }
  .grid-container2 {
    height: 350px;
  }
  .projectContainerInfo {
    justify-content: center;
  }
  .textContainer {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    font-family: "Montserrat";
    line-height: 1.2em;
    left: 10px;
    flex-direction: column;
    padding: 5px;
  }
  .expandToggle {
    display: flex;
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 10px;
    left: 50%;
    padding: 7px;
    transform: translateX(-50%);
    background: #1b1b1b;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0px 0px 10px rgba(235, 235, 235, 0.3);
  }
  .titleHolder {
    width: 80%;
    margin-top: 9px;
  }
  .titleHolder h1 {
    font-size: 1em;
    font-weight: 600;
  }
  .titleHolder p {
    font-size: 0.8em;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    color: rgb(175, 175, 175);
  }
  .titleHolder span {
    font-size: 1em;
    font-weight: 600;
    color: rgb(198, 198, 198);
  }
  .logoVersionToggle {
    display: flex;
    position: absolute;
    top: 2px;
    right: -5px;
    scale: 0.7;
    background: rgba(205, 205, 205, 0.8);
    border-radius: 15px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4) inset;
    justify-content: space-evenly;
    align-items: center;
  }
  button.menu-closed {
    display: flex;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255);
    border-radius: 50%;
    background: rgba(43, 43, 43, 0.8);
    backdrop-filter: blur(10px);
    padding: 0;
    cursor: pointer;
    transition: width ease-in-out 0.4s, border-radius ease-in-out 0.4s;
    /*
    box-shadow: 0 0 5px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff1a1a,
      0 0 70px #ff1a1a, 0 0 80px #ff1a1a, 0 0 100px #ff1a1a, 0 0 150px #ff1a1a;
      */
  }
  button.menu-closed:hover:not(.menu-expanded) {
    background: rgba(61, 61, 61, 0.8);
  }
  button.menu-expanded {
    width: 14rem;
    border-radius: 0.6rem;
  }

  .menu-closed .menuIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    position: relative;

    width: 30px;
    height: 30px;
    transition: transform 0.4s ease-in-out, background-color 0.5s ease-in-out;
    border-radius: 6px;
  }
  .rotate-icon {
    transform: rotate(-45deg);
    transition: transform 0.5s ease-in-out;
  }
  .menuIconContainer {
    display: flex;
    position: absolute;
    transform: translateX(-300%);
    transition: transform 1s ease-in-out;
    background-color: #282828;
  }
  .menu-expanded .menuIconContainer:hover {
    background-color: #0d0d0d;
  }
  .menuOptions {
    display: none;
    position: absolute;
    right: 3%;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 100%;
    opacity: 0;
    white-space: nowrap;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  .menu-expanded .menuOptions {
    opacity: 100;
    transform: translateY(0);
  }
  button.menu-closed a {
    display: flex;
    margin-left: 4px;
    list-style-type: none;
    text-decoration: none;
    font-size: 0.62rem;
    font-family: "Montserrat";
    font-weight: 400;
    color: rgb(235, 235, 235);
  }
  .menuOptions a:hover {
    color: #a5a5a5;
  }
}
