@font-face {
    font-family: 'oswaldreg';
    src: url(fonts/Oswald-Regular.ttf);
}

@font-face {
    font-family: 'oswaldbold';
    src: url(fonts/Oswald-Bold.ttf);
}

@font-face {
  font-family: 'mextrine';
  src: url(fonts/MextrineSans_PERSONAL_USE_ONLY.otf);
}

@font-face {
  font-family: "roboto";
  src: url(fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: "roboto-thin";
  src: url(fonts/Roboto-Thin.ttf);
}

@font-face {
  font-family: 'GreaterTheory';
  src: url(fonts/GreaterTheory.otf);
}
@font-face {
  font-family: 'dmsans';
  src: url(fonts/DMSans.ttf);
}
@font-face {
  font-family: 'monda';
  src: url(fonts/monda.ttf);
}
@font-face {
  font-family: 'inter';
  src: url(fonts/Inter.ttf);
}
@font-face {
  font-family: 'gcreg';
  src: url(fonts/gcreg.ttf);
}
@font-face {
  font-family: 'ddt';
  src: url(fonts/DegularDemo-Thin.otf);
}
@keyframes FloatDown {
  0% {
    opacity: 0%;
    transform: translateY(-50px);
  }
  100% {
    opacity: 90%;
    transform: translateY(0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  100% {
    transform: rotate(360deg);
    transform-origin: 50% 100%;
  }
}

@keyframes wave {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

@keyframes hl-flw1 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-600px);
  }
}
@keyframes hl-fli1 {
  0% {
    transform: translateX(0px);
    opacity: 0%;
    filter: blur(16px);
    width: 5px;
  }
  20% {
    opacity: 80%;
    filter: blur(0px);
  }
  80% {
    opacity: 80%;
    filter: blur(0px);
  }
  100% {
    transform: translateX(-600px);
    opacity: 0%;
    filter: blur(16px);
    width: 100px;
  }
}

@keyframes hl-flw2 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-600px);
  }
}
@keyframes hl-fli2 {
  0% {
    transform: translateX(0px);
    opacity: 0%;
    filter: blur(16px);
    width: 5px;
  }
  20% {
    opacity: 80%;
    filter: blur(0px);
  }
  80% {
    opacity: 80%;
    filter: blur(0px);
  }
  100% {
    transform: translateX(600px);
    opacity: 0%;
    filter: blur(16px);
    width: 100px;
  }
}
@keyframes hl-flw3 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-400px);
  }
}
@keyframes hl-fli3 {
  0% {
    transform: translateX(0px);
    opacity: 0%;
    filter: blur(16px);
    width: 5px;
  }
  20% {
    opacity: 80%;
    filter: blur(0px);
  }
  80% {
    opacity: 80%;
    filter: blur(0px);
  }
  100% {
    transform: translateX(-800px);
    opacity: 0%;
    filter: blur(16px);
    width: 100px;
  }
}
@keyframes hl-flw4 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-600px);
  }
}
@keyframes hl-fli4 {
  0% {
    transform: translateX(0px);
    opacity: 0%;
    filter: blur(16px);
    width: 5px;
  }
  20% {
    opacity: 80%;
    filter: blur(0px);
  }
  80% {
    opacity: 80%;
    filter: blur(0px);
  }
  100% {
    transform: translateX(-300px);
    opacity: 0%;
    filter: blur(16px);
    width: 100px;
  }
}
@keyframes hl-flw5 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-500px);
  }
}
@keyframes hl-fli5 {
  0% {
    transform: translateX(0px);
    opacity: 0%;
    filter: blur(16px);
    width: 5px;
  }
  20% {
    opacity: 80%;
    filter: blur(0px);
  }
  80% {
    opacity: 80%;
    filter: blur(0px);
  }
  100% {
    transform: translateX(700px);
    opacity: 0%;
    filter: blur(16px);
    width: 100px;
  }
}
@keyframes hl-flw6 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-500px);
  }
}
@keyframes hl-fli6 {
  0% {
    transform: translateX(0px);
    opacity: 0%;
    filter: blur(16px);
    width: 5px;
  }
  20% {
    opacity: 80%;
    filter: blur(0px);
  }
  80% {
    opacity: 80%;
    filter: blur(0px);
  }
  100% {
    transform: translateX(100px);
    opacity: 0%;
    filter: blur(16px);
    width: 100px;
  }
}

html {
  margin-left: calc(100vw - 100%);
}
body {
  overflow-x: hidden;
  background-color: #000;
}

button {
  background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
a {
  color: #5e79db;
}
.FloatDown {
  animation: 500ms ease FloatDown;
}

@keyframes FloatUp {
  0% {
    opacity: 0%;
    transform: translateY(50px);
  }
  100% {
    opacity: 100%;
    transform: translateY(0);
  }
}
@keyframes goaway {
  0% {
    opacity: 100%;
    filter: blur(0px);
  }
  100% {
    opacity: 0%;
    filter: blur(100px);
  }
}

@keyframes loading {
  0%{
    opacity: 100%;
    scale: 1;
  }
  100%{
    opacity: 20%;
    scale: 0.8;
  }
}
.FloatUp {
  animation: 500ms ease FloatUp;
}

.Scale1d1:hover {
  transform: scale(1.1);
  transition: 150ms ease;
  text-align: center;
}

#loader {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  z-index: 1000;
}
#loader img{
  width: 16rem;
  animation: ease 1.5s alternate-reverse infinite loading;
}
.loader-hide {
 display: none !important;
}

:root {
    --fs-big: 5rem;
    --fs-big-mq: 3rem;
    --fs-standard: 2rem;
    --fs-standard-mq: 1rem;
    --fs-small: 1rem;
    --fs-small-mq: 0.5rem;
}

html {
    scroll-behavior: smooth;
    margin: 0;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'oswaldreg';
    text-decoration: none;

}

.nav-holder {
    position: fixed;
    display: flex;
    justify-content: center;
    z-index: 999;
    width: 100vw;

}
.nav-closed {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px 15px 40px;
    border-radius: 500px;
    width: 70vw;
    z-index: 1;
    margin: 0 auto;
    align-items: center;
    margin-top: 30px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background: linear-gradient(90deg, rgba(17,17,17,0.75) 0%, rgba(28,28,28,0.75) 36%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    height: 40px;
    animation: 500ms ease FloatDown;
    box-shadow: 7px 7px 25px -4px rgba(0,0,0,0.68);
}
.nav-open {
  animation: 200ms ease pillEnlarge;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px 15px 40px;
    border-radius: 30px;
    height: 90svh;
    width: 70vw;
    z-index: 2;
    margin: 0 auto;
    align-items: center;
    margin-top: 30px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background: linear-gradient(90deg, rgba(17,17,17,0.75) 0%, rgba(28,28,28,0.75) 36%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    flex-direction: column;
    box-shadow: 7px 7px 25px -4px rgba(0,0,0,0.68);
}
@keyframes pillEnlarge {
  0% {
    height: 50px;
    border-radius: 500px;
  }
  20% {
    border-radius: 30px;
  }
  100% {
    height: 90vh;
    flex-direction: column;
  }
}
.Nav-Menu-Items-Open {
  display: flex;
  padding-left: 0;
  padding-bottom: 5vh;
  font-size: 1.25em;
}



/* Hamburger Button */
.hamburger {
  display: none !important;
}
.hamburger {
  cursor: pointer;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}


.irregular-screen {
  display: none;
}

.logo {
    width: 70px;
}

.logo img {
    width: 90%;
}

.navitem {
    display: flex;
    list-style: none;
}

.navitem li {
  opacity: 90%;
  text-align: center;
}

.navitem li:hover {
  transform: scale(1.1);
  opacity: 100%;
  transition: 150ms ease;
}

.navitem-open {
  display: flex;
  list-style: none;
  align-items: center;
  flex-direction: column;
  opacity: 90%;
  animation: ease 400ms FloatDown;
}

.navitem li {
    padding-left: 50px;
    display: flex;
    align-items: center;
}

.navitem li a {
    color: #e8e8e8;
    font-size: 1.5em;
}

.navitem-open li a {
  color: #e8e8e8;
  font-size: 1.5em;
}




  /* Scroll Down item */
  .scroll-container {
    position: absolute;
    bottom: 20px;
  }

  .mouse-btn {
    margin: 10px auto;
    width: 20px;
    height: 50px;
    border: 3px solid rgba(122, 122, 124, 0.918);
    border-radius: 20px;
    display: flex;
  }
  
  .mouse-scroll {
    display: block;
    width: 10px;
    height: 10px;
    background: linear-gradient(170deg, rgba(122, 122, 124, 0.918), rgb(123, 124, 124));
    border-radius: 50%;
    margin: auto;
    animation: scrolling13 1s linear infinite;
  }
  .scroll-text {
    font-size: 0.8rem;
    color: #e8e8e8;
  }
  @keyframes scrolling13 {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(10px);
    }
  }


.z-id1{
  z-index: 1;
}
.index-bg {
  position: absolute;
  filter: blur(3px);
}
@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
.portfolio-items2 {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}

.hero {
  background-image: url(/images/hero-bg.jpg);
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #e8e8e8;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 95%, rgba(0,0,0,0.5));
}
.hero::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100svh;
  display: flex;
  align-self: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img {
  width: 100vw;
  position: absolute;
}

.hero-headline {
  letter-spacing: 0.05em;
  font-family: 'oswaldbold';
  text-align: center;
  padding: 10px 0px 0px 0px;
  animation: 500ms ease FloatDown;
  text-shadow: 0px 0px 178px 62px rgba(184,184,184,0.9);
}

.hero-topper {
  background: linear-gradient(145deg, rgb(196 196 196 / 57%) 0%, rgb(190 190 190 / 30%) 100%);
  backdrop-filter: blur(5px);
  display: flex;
  border-radius: 999px;
  padding: 5px 8px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: ease 0.5s;
}
.hero-topper:hover {
  box-shadow: 0px 0px 10px 0px rgb(183, 183, 183);
}
.hero-topper-new-tag {
  padding: 4px 10px;
  background: #106bc7;
  background: linear-gradient(145deg,rgba(16, 107, 199, 1) 0%, rgba(17, 85, 212, 1) 100%);
  box-shadow: 0px 0px 5px 0px rgba(16, 107, 199, 1);
  border-radius: 999px;
  font-size: 0.6rem;
  margin-right: 0.5rem;
  text-decoration: none;
  line-height: 0.6rem;
}
.hero-topper-content {
  text-decoration: none;
  margin-right: 0.25rem;
  font-size: 0.8rem;
  line-height: 0.8rem;
}

.hero-headline-text-special {
  font-family: 'gcreg';
  font-weight: 400;
  color: #e8e8e8dc;
}

.hero-topper-arrow {
  width: 0.8rem;
  transform: translateY(1px);
}

.hero-headline-text {
  font-weight: bold;
  font-size: 3.6rem;
  font-family: 'inter';
  color: #d8d8d8e6;
  letter-spacing: 0rem;
  font-weight: bolder;
}

.hero-subtitle {
  letter-spacing: 0.1em;
  color: #d8d8d8a1;
  font-family: 'inter';
  margin-bottom: 30px;
  text-align: center;
  animation: 500ms ease FloatDown;
}

.index-content {
  display: flex;
  align-items: top;
  justify-content: center;
}
.index-content-border-wrapper {
  display: flex;
  align-items: top;
  justify-content: space-between;
  max-width: 1300px;
  min-width: 300px;
  margin: 0 20px 0 20px;
}
.index-content-border {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.19);
  box-shadow: 0px 0px 87px 4px rgba(255,255,255,0.2);
-webkit-box-shadow: 0px 0px 87px 4px rgba(255,255,255,0.2);
-moz-box-shadow: 0px 0px 87px 4px rgba(255,255,255,0.2);
}
.index-content-border::before {
  content: '';
  display: block;
  height: 100px;
  width: 1px;
  z-index: 1;
  background: linear-gradient(180deg, hsla(0, 0%, 0%, 1) 10%, hsla(0, 0%, 100%, 0) 100%);
}
.index-photos {
  margin-top: 100px;
  color: transparent;
  background: linear-gradient(160deg, rgba(232,232,232,1) 2%, rgb(136, 136, 136) 88%);
  background-clip: text;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}
.index-photos-text {
  max-width: 450px;
}
.index-photos-padding {
  padding-left: 80px;
}
.index-photos-padding::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  top: 30%;
  left: 10%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 999px;
  filter: blur(100px);
  z-index: 1;
}
.index-photos-header h1{
  font-size: 2.5rem;
  font-family: "GreaterTheory";
  line-height: 3rem;
}
.index-photos-subtitle h1{
  font-size: 1.3rem;
  line-height: 1.9rem;
}
.index-photos .index-photos-text .pf-item-button {
  margin-top: 20px;
  background-color: #000;
  margin-left: 5px;
}
.index-photos-image-wrapper img{
  width: 600px;
}
.index-photos-image-wrapper {
  align-self: flex-end;
}
.godray {
  position: absolute;
  filter: blur(80px);
  opacity: 30%;
  transform: rotate(0deg) scale(1.4);
  pointer-events: none;
}
.godray img {
  width: 800px;
}
.index-server {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  padding: 30px 80px 30px 80px;
  gap: 80px;
}
.index-server-image-wrapper img{
  width: 400px;
}
.index-bktctrl-txt {
  color: transparent;
  background: linear-gradient(160deg, rgba(232,232,232,1) 2%, rgb(136, 136, 136) 88%);
  background-clip: text;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.index-bktctrl-txt button{
  margin-top: 30px;
}
.index-bucketcentral {
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-image: url(images/bucketcentral-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.index-bktctrl-image-wrapper img{
  width: 100%;
}
.blank {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}





/* Hero Button item */
.button-hero {
    --black-700: hsla(0 0% 12% / 1);
    --border_radius: 9999px;
    --transtion: 0.3s ease-in-out;
    --offset: 2px;
  
    cursor: pointer;
    position: relative;
  
    display: flex;
    align-items: center;
    gap: 0.5rem;
  
    transform-origin: center;
  
    padding: 0.8rem 1.8rem;
    background-color: transparent;
  
    border: none;
    border-radius: var(--border_radius);
    transform: scale(calc(1 + (var(--active, 0) * 0.1)));
  
    transition: transform var(--transtion);
  }

  .button-hero-main {
    --black-700: rgba(31, 31, 31, 0.586);
    transform: scale(0.8);
  }
  
  .button-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
    width: 100%;
    height: 100%;
    background-color: var(--black-700);
  
    border-radius: var(--border_radius);
    box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%),
      0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
      0 0 0 calc(var(--active, 0) * 0.375rem) hsl(260 97% 50% / 0.75);
  
    transition: all var(--transtion);
    z-index: 0;
  }
  
  .button-hero::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
    width: 100%;
    height: 100%;
    background-color: hsla(260 97% 61% / 0.75);
    background-image: radial-gradient(
        at 51% 89%,
        hsla(266, 45%, 74%, 1) 0px,
        transparent 50%
      ),
      radial-gradient(at 100% 100%, hsla(266, 36%, 60%, 1) 0px, transparent 50%),
      radial-gradient(at 22% 91%, hsla(266, 36%, 60%, 1) 0px, transparent 50%);
    background-position: top;
  
    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 2;
  }
  
  .button-hero:is(:hover, :focus-visible) {
    --active: 1;
  }
  .button-hero:active {
    transform: scale(1);
  }
  
  .button-hero .dots_border {
    --size_border: calc(100% + 2px);
  
    overflow: hidden;
  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
    width: var(--size_border);
    height: var(--size_border);
    background-color: transparent;
  
    border-radius: var(--border_radius);
    z-index: -10;
  }
  
  .button-hero .dots_border::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: left;
    transform: rotate(0deg);
  
    width: 100%;
    height: 2rem;
    background-color: white;
  
    mask: linear-gradient(transparent 0%, white 120%);
    animation: rotate 2s linear infinite;
  }

  .button-hero-main .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);

  width: 0;
  height: 2rem;
  background-color: white;

  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
  }
  
  @keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }
  
  .button-hero .sparkle {
    position: relative;
    z-index: 10;
  
    width: 1.75rem;
  }
  
  .button-hero .sparkle .path {
    fill: currentColor;
    stroke: currentColor;
  
    transform-origin: center;
  
    color: hsl(0, 0%, 100%);
  }
  
  .button-hero:is(:hover, :focus) .sparkle .path {
    animation: path 1.5s linear 0.5s infinite;
  }
  
  .button-hero .sparkle .path:nth-child(1) {
    --scale_path_1: 1.2;
  }
  .button-hero .sparkle .path:nth-child(2) {
    --scale_path_2: 1.2;
  }
  .button-hero .sparkle .path:nth-child(3) {
    --scale_path_3: 1.2;
  }
  
  @keyframes path {
    0%,
    34%,
    71%,
    100% {
      transform: scale(1);
    }
    17% {
      transform: scale(var(--scale_path_1, 1));
    }
    49% {
      transform: scale(var(--scale_path_2, 1));
    }
    83% {
      transform: scale(var(--scale_path_3, 1));
    }
  }
  
  .button-hero .text_button {
    position: relative;
    z-index: 10;
  
    background-image: linear-gradient(
      90deg,
      hsla(0 0% 100% / 1) 0%,
      hsla(0 0% 100% / var(--active, 0)) 120%
    );
    background-clip: text;
  
    font-size: 1rem;
    color: transparent;
  }


/* Footer */
#footers {
  z-index: 999;
}

.footer {
  display: flex;
  box-shadow: 0px 10px 15px -5px rgba(230, 230, 230, 0.378) inset;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #737373;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  z-index: 999;
  padding: 30px 80px 30px 80px;
}


/* F-left */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #e8e8e8;
}

.footer-left-img {
  width: 80px;
}

.footer-center-txt {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding-bottom: 2rem;
}

/* F-Center */
.footer-center-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 50px;
}
.footer-center {
  border-top: 1px solid #454545;
  border-left: 1px solid #454545;
  background: linear-gradient(175deg, rgb(37, 37, 37) 0%, rgb(21, 21, 21) 100%);
  padding: 15px 25px;
  border-radius: 999px;
}

.footer-social-text {
  color: #e8e8e8;
}

/* F-Right */
.footer-right {
  color: #e8e8e8;
}

.footer-right-text {
  text-align: center;
}

.footer-right-text button{
  color: #5e79db;
}
/* Social Buttons */

.btn {
  display: grid;
  place-items: center;
  transition: ease 0.5s;
}

.btn:hover {
 transform: scale(1.1);
}

.btn svg {
  transition: transform 0.5s;
}

.btn:hover svg {
  transform: scale(0.9);
  fill: #333333;
}


/* Photography */
.photography-header {
  height: auto;
  background: linear-gradient(45deg, rgb(4, 6, 10) 0%, rgb(17, 29, 46) 100%);
  display: flex;
  justify-content: center;
  position: relative;
}

.photography-collage {
  height: 160vh;
  width: 100vw;
  background-image: url(images/collage.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 170vh;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-direction: column;
  box-shadow: 7px 7px 25px -4px rgba(0,0,0,0.68);
}
.photography-box {
  text-align: center;
  position: relative;
  width: 90vw;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: solid #aeaeae 1px;
  border-radius: 30px;
}
.phototop {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phototop img {
  width: 20px;
  transform: rotate(315deg);
}
.phototop a {
  padding: 15px 20px;
  border-radius: 30px;
  transform: translateY(3px);
  border-top: 1px solid #454545;
  border-left: 1px solid #454545;
  background: linear-gradient(175deg, rgb(37, 37, 37) 0%, rgb(21, 21, 21) 100%);
  display: flex;
  align-items: center;
  transition: 250ms ease;
}
.phototop a:hover {
  border-top: 1px solid #454545;
  border-left: 1px solid #454545;
  background: linear-gradient(175deg, rgb(77, 77, 77) 0%, rgb(50, 50, 50) 100%);
}
.photography-restrict {
  height: 20vh;
  overflow: hidden;
}
.expand-photography {
  width: 100%;
  height: 20% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 10;
}

.expand-photography button{
  background-color: #ffffff4d;
  padding: 5px 20px;
  border-radius: 999px;
  color: #d8d8d8e6;
  transition: 250ms ease;
}

.expand-photography button:hover {
  background-color: #ffffffb5;
  color: #4a4a4ac5;
  transform: scale(1.02);
}

.photo-main-ver {
  width: 1200px;
  position: relative;
}
.lyc {
  height: 60vh;
  overflow: hidden;
}
.photo-main-ver .expand {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  font-size: 1.2rem;
  z-index: 1;
  color: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
}
.photo-main-ver .expand button{
  background-color: #ffffff4d;
  padding: 5px 20px;
  border-radius: 999px;
  transition: 250ms ease;
}
.photo-main-ver .expand button:hover {
  background-color: #ffffffb5;
  color: #4a4a4ac5;
  transform: scale(1.02);
}
.photography-box h1 {
  background: linear-gradient(119deg, rgb(171, 171, 171) 0%, rgba(232,232,232,1) 100%);
  background-clip: text;
  color: rgba(0, 0, 0, 0);
  font-size: 2em;
  padding: 2rem;
}
.photography-card {
 margin-top: 20vh;
}

.photography-header-headline {
  background: linear-gradient(119deg, rgb(171, 171, 171) 0%, rgba(232,232,232,1) 100%);
  background-clip: text;
  color: rgba(0, 0, 0, 0);
  font-size: 8em;
  letter-spacing: 5px;
  font-family: "GreaterTheory";
  text-align: center;
  z-index: 1;
}

.photography-header-subtitle {
  background: linear-gradient(119deg, rgb(130, 130, 130) 0%, rgb(192, 192, 192) 100%);
  background-clip: text;
  color: rgba(0, 0, 0, 0);
  text-align: center;
}

 /* photography button stuff https://uiverse.io/satyamchaudharydev/rude-wolverine-24 */
 .buttons-for-photography {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  justify-content: center;
 }

 .button-photography {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0, 31, 52);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon-photography-button {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button-photography:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button-photography:hover .icon-photography-button {
  transform: translate(4px);
}

.button-photography:hover::before {
  animation: shine 1.5s ease-out ;
}

.button-photography::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
.photography-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.photography-collage::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 100px;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.photography-end-cards-style {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  border-radius: 30px;
}

.photography-end-card1 {
  background: rgb(27,6,40);
  background: linear-gradient(326deg, rgba(27,6,40,1) 20%, rgb(120, 40, 165) 100%);
  border: 2px solid rgb(72, 25, 98);
  box-shadow: 0px 0px 250px 1px rgba(120, 40, 165,0.6);
}
.photography-end-card2 {
  background: rgb(29,19,0);
  background: linear-gradient(326deg, rgba(29,19,0,1) 0%, rgba(208,134,0,1) 100%);
  border: 2px solid rgb(131, 85, 0);
  box-shadow: 0px 0px 250px 1px rgba(208,134,0,0.6);
}
.photography-end-card3 {
  background: rgb(29, 5, 0);
  background: linear-gradient(326deg, rgba(29,19,0,1) 0%, rgb(208, 52, 0) 100%);
  box-shadow: 0px 0px 250px 1px rgba(208,55,0,0.6);
  border: 2px solid rgb(80, 21, 13);
}
.photography-end-card4 {
  background: rgb(27,6,40);
  background: linear-gradient(326deg, rgb(6, 10, 40) 20%, rgb(40, 40, 165) 100%);
  border: 2px solid rgb(32, 25, 98);
  box-shadow: 0px 0px 250px 1px rgba(40, 40, 165,0.6);
}
.photography-end-card5 {
  background: rgb(27,6,40);
  background: linear-gradient(326deg, rgb(6, 32, 40) 20%, rgb(40, 140, 165) 100%);
  border: 2px solid rgb(25, 71, 98);
  box-shadow: 0px 0px 250px 1px rgba(40, 140, 165,0.6);
}
.photography-end-card-content {
  color: transparent;
  background: linear-gradient(326deg, rgba(158,158,158,1) 20%, rgba(232,232,232,1) 100%);
  background-clip: text;
}
.photography-end-card-content h1 {
  font-size: 2em;
  color: #e8e8e8;
}
.photography-end-card-content h3 {
  font-size: 1em;
}
.photography-end-card-content img {
  width: 80px;
}
.photography-other-tools {
  text-align: center;
  color: transparent;
  background: linear-gradient(326deg, rgba(158,158,158,1) 20%, rgba(232,232,232,1) 100%);
  background-clip: text;
  margin-bottom: 50px;
  margin-top: 50px;
  font-size: 4em;
}

.photography-box-wrapper {
  margin: 15vh 0 5vh 0;
}

.portfolio-call-to-action {
  background-image: url(images/layered-waves-haikei.svg);
  height: 900px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.portfolio-cta-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.portfolio-cta-content h1 {
  padding-top: 50px;
  font-size: 6em;
  text-align: center;
  color: transparent;
  background: linear-gradient(326deg, rgba(158,158,158,1) 20%, rgba(232,232,232,1) 100%);
  background-clip: text;
  padding-bottom: 10px;
  padding: 50px 10px 10px 10px;
}

/* Homelab */
.hl-hero-bg {
  height: 100svh;
  position: absolute;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  width: 100vw;
}
.change-screen {
  position: fixed;
  color: white;
  text-align: center;
  z-index: 999;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red;
}
.homelab-hero {
  height: 100svh;
  display: flex;
  justify-content: center;
}
.hlhero-bg-if {
  width: 100vw;
  height: 100svh;
  pointer-events: none;
}
.hl-hero-overflow {
  overflow: hidden;
  width: 100vw;
}
.homelab-hero-header {
   margin-top: 20vh;
   z-index: 0;
}
.homelab-hero-header h1 {
  font-family: 'GreaterTheory';
  line-height: 1.2em;
  letter-spacing: 0.2em;
  font-size: 0.6em;
  background: linear-gradient(326deg, rgba(158,158,158,1) 20%, rgb(228, 226, 228) 100%);
  background-clip: text;
  margin-bottom: 20px;
  text-align: center;
}
.homelab-hero-header p {
  width: 70vw;
  font-size: 0.3em;
  letter-spacing: normal;
  background: linear-gradient(326deg, rgba(158,158,158,1) 20%, rgb(203, 206, 225) 100%);
  background-clip: text;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.hl-flywrapper1 {
  position: absolute;
  top: 100%;
  animation: infinite hl-flw1 ease-out 2.5s;
}
.hl-flywrapper1 img {
  width: 80px;
  border-radius: 20px;
  animation: infinite hl-fli1 ease-in 2.5s;
}

.hl-flywrapper2 {
  position: absolute;
  top: 100%;
  animation: infinite hl-flw2 ease-out 2s;
}
.hl-flywrapper2 img {
  width: 80px;
  border-radius: 20px;
  animation: infinite hl-fli2 ease-in 2s;
}

.hl-flywrapper3 {
  position: absolute;
  top: 100%;
  animation: infinite hl-flw3 ease-out 3.5s;
}
.hl-flywrapper3 img {
  width: 80px;
  border-radius: 20px;
  animation: infinite hl-fli3 ease-in 3.5s;
}

.hl-flywrapper4 {
  position: absolute;
  top: 100%;
  animation: infinite hl-flw4 ease-out 4.5s;
}
.hl-flywrapper4 img {
  width: 80px;
  border-radius: 20px;
  animation: infinite hl-fli4 ease-in 4.5s;
}
.hl-flywrapper5 {
  position: absolute;
  top: 100%;
  animation: infinite hl-flw5 ease-out 2.8s;
}
.hl-flywrapper5 img {
  width: 80px;
  border-radius: 20px;
  animation: infinite hl-fli5 ease-in 2.8s;
}

.hl-flywrapper6 {
  position: absolute;
  top: 100%;
  animation: infinite hl-flw6 ease-out 2.8s;
}
.hl-flywrapper6 img {
  width: 80px;
  border-radius: 20px;
  animation: infinite hl-fli6 ease-in 2.8s;
}
.homelab-body1 {
  background: linear-gradient(180deg, rgba(8,3,7,1) 0%, rgba(0,0,0,1) 100%);
}
.homelab-body1 h1{
  color: #fff;
  text-align: center;
  margin: 80px 0 30px 0;
  font-size: 4em;
  letter-spacing: 5px;
}
.homelab-servercard-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.whyselfhost {
  text-align: center;
  max-width: 1400px;
  padding: 80px;
  margin: 0 auto 100px auto; 
}
.whyselfhost h2 {
  background: linear-gradient(326deg, rgb(122, 121, 121) 20%, rgb(203, 206, 225) 100%);
  background-clip: text;
  color: transparent;
  font-size: 8em;
  font-weight: bolder;
  margin: 120px;
}
.whyselfhost p {
  background: linear-gradient(326deg, rgb(73, 73, 73) 20%, rgb(131, 131, 131) 100%);
  background-clip: text;
  color: transparent;
  font-size: 3em;
}

.homelab_card {
  --white: hsl(0, 0%, 100%);
  --black: hsl(240, 15%, 9%);
  --paragraph: hsl(0, 0%, 83%);
  --line: hsl(240, 9%, 17%);
  --primary: hsl(19, 92%, 58%);

  position: relative;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 1rem;
  width: 19rem;
  background-color: hsla(240, 15%, 9%, 1);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsl(24, 98%, 26%) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsl(27, 97%, 36%) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsl(3, 94%, 13%) 0px, transparent 85%);

  border-radius: 1rem;
  box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
}

.homelab_card1 {
  --primary: hsl(0, 92%, 58%);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsl(0, 98%, 26%) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsl(353, 97%, 36%) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsl(318, 94%, 13%) 0px, transparent 85%);
}
.homelab_card2 {
  --primary: hsl(224, 92%, 58%);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsl(207, 98%, 26%) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsl(233, 97%, 36%) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsl(238, 94%, 13%) 0px, transparent 85%);
}
.homelab_card .homelab_card__border {
  overflow: hidden;
  pointer-events: none;

  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(
    0deg,
    hsl(0, 0%, 100%) -50%,
    hsl(0, 0%, 40%) 100%
  );

  border-radius: 1rem;
}

.homelab_card .homelab_card__border::before {
  content: "";
  pointer-events: none;

  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%), rotate(0deg);
  transform-origin: left;

  width: 200%;
  height: 10rem;
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(19, 92%, 58%) 40%,
    hsl(19, 92%, 58%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );

  animation: rotate 8s linear infinite;
}
.homelab_card1 .homelab_card__border::before {
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(355, 92%, 58%) 40%,
    hsl(0, 92%, 58%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );
}
.homelab_card2 .homelab_card__border::before {
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(215, 92%, 58%) 40%,
    hsl(210, 92%, 58%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.homelab_card .homelab_card_title__container .homelab_card_title {
  font-size: 2rem;
  color: var(--white);
}

.homelab_card .homelab_card_title__container .homelab_card_paragraph {
  margin-top: 0.25rem;
  width: 65%;

  font-size: 0.9rem;
  color: var(--paragraph);
}

.homelab_card .line {
  width: 100%;
  height: 0.1rem;
  background-color: var(--line);

  border: none;
}

.homelab_card .homelab_card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.homelab_card .homelab_card__list .homelab_card__list_item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.homelab_card .homelab_card__list .homelab_card__list_item .check {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 1rem;
  height: 1rem;
  background-color: var(--primary);

  border-radius: 50%;
}

.homelab_card .homelab_card__list .homelab_card__list_item .check .check_svg {
  width: 0.75rem;
  height: 0.75rem;

  fill: var(--black);
}

.homelab_card .homelab_card__list .homelab_card__list_item .list_text {
  font-size: 0.8rem;
  color: var(--white);
}

.homelab-body-apps-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}
.homelab-body-apps-item {
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.125);
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 600px;
  height: 300px;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 104px 7px rgba(0,0,0,0.9);
}
.homelab-body-apps-item-top {
  display: flex;
  gap: 30px;
  align-items: center;
}
.homelab-body-apps-item-top img{
  border-radius: 999px;
  width: 90px;
  height: 90px;
}
.homelab-body-apps-item-bottom img{
  width: 800px;
  border-radius: 10px;
  position: relative;
  top: 30px;
  left: 30px;
  transition: 1s ease;
}
.homelab-body-apps-item-text {
  background: linear-gradient(326deg, rgb(122, 121, 121) 20%, rgb(203, 206, 225) 100%);
  background-clip: text;
  color: transparent;
}
.homelab-body-apps-item-wrapper {
  padding: 10px;
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 35px;
  background-color: rgba(56, 90, 53, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(56, 90, 53, 0.55);
  transition: 1s ease;
}
.homelab-body-apps-item-wrapper:hover {
  scale: 1.02;
}
.homelab-body-apps-item-wrapper:hover .homelab-body-apps-item-bottom img{
  top: 10px;
  left: 10px;
}
.homelab-body-apps-item-wrapper1 {
  background-color: rgba(90, 86, 53, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(90, 86, 53, 0.75);
}
.homelab-body-apps-item-wrapper2 {
  background-color: rgba(53, 81, 90, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(53, 81, 90, 0.75);
}
.homelab-body-apps-item-wrapper3 {
  background-color: rgba(90, 53, 78, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(90, 53, 78, 0.75);
}
.homelab-body-apps-item-wrapper4 {
  background-color: rgba(90, 64, 53, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(90, 64, 53, 0.75);
}
.homelab-body-apps-item-wrapper5 {
  background-color: rgba(71, 53, 90, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(71, 53, 90, 0.75);
}
.homelab-body-apps-item-wrapper6 {
  background-color: rgba(90, 53, 72, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(90, 53, 72, 0.75);
}
.homelab-body-apps-item-wrapper7 {
  background-color: rgba(85, 85, 85, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(85, 85, 85, 0.75);
}
.homelab-body-apps-item-wrapper8 {
  background-color: rgba(53, 90, 90, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(53, 90, 90, 0.75);
}
.homelab-body-apps-item-wrapper9 {
  background-color: rgba(53, 90, 90, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(53, 90, 90, 0.75);
}
.homelab-body-apps-item-wrapper10 {
  background-color: rgba(53, 90, 76, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(53, 90, 76, 0.75);
}
.homelab-body-apps-item-wrapper11 {
  background-color: rgba(89, 90, 53, 0.75);
  box-shadow: 0px 0px 104px 7px rgba(89, 90, 53, 0.75);
}

/* Portfolio */
#portfolio-hero-bg {
  height: 100dvh;
  width: 100vw;
  position: fixed;
  pointer-events: none;
  z-index: 1;
}
.portfolio-hero {
  height: 245vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.portfolio-hero-top {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.246);
  flex-direction: column;
}
.portfolio-hero-bottom {
  height: 100dvh;
  width: 100vw;
  scroll-snap-align: start;
  display: grid;
  align-items: center;
  justify-content: center;
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
}
.portfolio-hero-bottom::-webkit-scrollbar {
  display: none;
}
.hidden {
  opacity: 0;
  animation: 1s ease goaway;
}
#portfolio-items-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin-top: 80px;
    gap: 70px;
    width: 100vw;
    transition: 200ms ease;
}
.portfolio-items-holder-show {
  opacity: 100% !important;

}
.pf-items-wrapper {
  margin: 30px;
  height: 85%;
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
}
.portfolio-items2 {
  position: relative;
  background-color:#1E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  height: 400px;
  width: 100%;
  box-shadow: 0px 0px 105px 5px rgba(67, 67, 67, 0.28);
  overflow: hidden;
  interpolate-size: allow-keywords;
  border: #5151515e solid 3px;
  transition: ease 1.4s;
}
.portfolio-items2-open{
  height: auto;
  transition: ease 0.7s;
  interpolate-size: allow-keywords;
}
.portfolio-items2:hover {
  box-shadow: 0px 0px 105px 5px rgba(97, 97, 97, 0.68);
  border: #515151 solid 3px;
  transition: ease 0.7s;
}
.pf-personal-highlights {
  border: #ffaa0072 solid 3px;
  box-shadow: 0px 0px 105px 5px rgba(255, 170, 0, 0.38);
}
.pf-personal-highlights:hover {
  border: #ffaa0093 solid 3px;
  box-shadow: 0px 0px 105px 10px rgba(255, 170, 0, 0.658);
}
.icon-stack {
  display: flex;
  margin-left: 15px;
  transition: 500ms ease;
}
.icon-stack img {
  height: 30px;
  width: 30px;
  border-radius: 9999px;
  margin-left: -15px;
  border: #363636 3px solid;
  transition: 500ms ease;
}
.icon-stack:hover {
  margin: 0;
}
.icon-stack:hover img {
  margin: 0;
}
.pf-item-content h1 {
  font-size: 3em;
  line-height: 1.25em;
  margin-top: 120px;
}
.pf-item-button-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

/*------ Settings ------*/
.pf-info-dropdown-checkbox {
  transform: translateX(-25px);
  --color: #a5a5b0;
  --size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: var(--size);
  user-select: none;
  fill: var(--color);
}

.pf-info-dropdown-checkbox .chevron-down {
  position: absolute;
  animation: keyframes-return .5s;
}

/* ------ On check event ------ */
.pf-info-dropdown-checkbox input:checked ~ .chevron-down {
  animation: keyframes-rotate .5s;
  transform: rotate(180deg);
}

/* ------ Hide the default checkbox ------ */
.pf-info-dropdown-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.pf-items-top {
  display: flex;
}
.pf-info-dropdown {
  display: flex;
  justify-content: right;
  width: 10%;
}

/* ------ Animation ------ */
@keyframes keyframes-rotate {
  0% {
    transform: rotate(0deg);
    opacity: 0;
  }

  100% {
    transform: rotate(-180deg);
  }
}

@keyframes keyframes-return {
  0% {
    transform: rotate(-180deg);
    opacity: 0;
  }

  100% {
    transform: rotate(0deg);
  }
}


.pf-item-button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.3rem;
  padding-inline: 1rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 5px;
  font-weight: bold;
  border: 2px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 12px;
  cursor: pointer;
}
.pf-item-demo {
  background-color: rgba(0, 0, 0, 0.2);
}

.pf-item-buttom-icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease-in-out;
}

.pf-item-button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.pf-item-button:hover .pf-item-buttom-icon {
  transform: translate(4px);
}

.pf-item-button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.pf-item-button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}
.pf-button-left-stack {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pf-button-left-stack h3{
  color: #9d9d9d;
}
.detect-reach {
  height: 1px;
  width: 100%;
}
.portfolio-nav-buttons {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: fixed;
  top: 90%;
  left: 80%;
}
.portfolio-nav-buttons button{
  background-color: #181818;
  border-radius: 999px;
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: 300ms ease;
}
.portfolio-nav-buttons button:hover{
  background-color: #2f2f2f;
}
.portfolio-nav-buttons button svg {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms ease;
}
.portfolio-nav-buttons button:hover svg{
  scale: 1.2;
  filter: drop-shadow(0 0 20px #000000);
 }
#left-arrow-hidden {
  opacity: 0%;
  transition: 300ms ease;
}
.pf-item-tag {
  display: flex;
  width: 90%;
  gap: 1rem;
}
.pf-item-tag-personal {
  padding: 0.3rem 1rem;
  border-radius: 999px;
  color: #532a01;
  background-color: #ef7a05;
}
.pf-item-tag-personal-best {
  padding: 0.3rem 1rem;
  border-radius: 999px;
  color: #000000;
  background-color: #ffaa00;
  box-shadow: 0px 0px 6px 4px rgb(255 170 0 / 90%);
}
.pf-item-tag-school {
  padding: 0.3rem 1rem;
  border-radius: 999px;
  color: rgb(0, 52, 87);
  background-color: rgb(0,107,179);
}
.pf-on-main h6 {
  width: 100% !important; 
}
.pf-item1-image {
  transform: rotate(45deg);
  margin-top: 10vh;
}
.pf-item1-content {
  background: linear-gradient(119deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  background-clip: text;
  color: transparent;
}
.pf-item-content h6{
  color: #aeaeae;
  font-size: 1rem;
  width: 40%;
  margin-top: 0.5rem;
}
.pf-item-content h1 {
  background: linear-gradient(119deg, rgb(255, 255, 255) 0%, rgb(172, 172, 172) 100%);
  background-clip: text;
  color: transparent;
}
.pf-item-image-wrapper-blur {
  width: 100%;
  height: 100%;
  position: absolute;
  filter: blur(5px);
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-item-image-wrapper-blur-minecraft {
  filter: blur(3px);
}
.pf-item-image{
  width: 110%;
}
.pf-item-image-pandus{
  width: 60%;
}
.pf-item-card-bg {
  background-color: #000;
}
.pf-item-image2 {
  box-shadow: none;
  width: 15vw;
  margin: auto;
  -webkit-filter: drop-shadow(0px 0px 25px 1px rgba(0,0,0,0.68));
  filter: drop-shadow(0px 0px 25px 1px rgba(0,0,0,0.68));
}
.pf-hidden-content {
  display: none;
}
.pf-hidden-content-shown {
  display: flex;
  flex-direction: column;
  color: #aeaeae;
  background: linear-gradient(119deg, #272727 0%, #202020 100%);
  padding: 10px 18px 18px 18px;
  border-radius: 12px;
  margin-top: 2rem;
}
.pf-hidden-tags {
  margin-left: 0.5rem;
}
.pf-hidden-summary {
  margin-left: 0.5rem;
  letter-spacing: 0.2rem;
}
.pf-hidden-content-shown h1{
  color: #ebebeb;
  font-size: 2.5rem;
}
.pf-hidden-bottom {
  display: flex;
  gap: 2rem;
}
.pf-hidden-keypoints {
  display: flex;
  gap: 1rem;
  width: 100%;

  background-color: #52525284;
  padding: 13px 30px 18px 25px;
  margin-top: 1rem;
  border-radius: 15px;
  border: 2px solid #525252b7;
}
.pf-hidden-left {
  display: flex;
  flex: 1;
}
.pf-hidden-right {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  background-color: #52525284;
  padding: 20px;
  margin-top: 1rem;
  border-radius: 15px;
  border: 2px solid #525252b7;
}
.pf-key {
  color: #d6d6d6;
  margin-top: 0.5rem;
}
.pf-point {
  margin-top: 0.25rem;
  margin-left: 1rem;
}
#pjddm .june {
  font-family: 'ddt';
  font-size: 64px;
  font-weight: unset;
  background: linear-gradient(91deg, #FFF 0.34%, #5b5a5a 99.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.darken {
  filter: brightness(40%);
}
.darken-light {
  filter: brightness(60%);
}

/* Aboutme Page */

.abm-bg {
  background-color: #000000;
}

.coolabmbuttons {
  margin-top: 20px;
  background-color: #000;
  margin-left: 5px;
}
.aboutme-main-holder {
  padding: 1.5em 1.5rem 1.5rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.aboutme-top-holder {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  grid-template-rows: repeat(30,1fr);
  gap: 2rem;
  height: 5968px;
}

.abm-grid-items-bg {
  background-color: rgba(26, 26, 26, 0.7);
  /*border-left: 1px solid rgba(255, 255, 255, 0.15);*/
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.15);*/
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 2rem;
  /*box-shadow: 0 4px 10.5px 0 rgba(0, 0, 0, 0.70) inset;*/
}

.abm-key {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'inter';
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 2px;
}

.abm-largeheading {
  font-family: 'oswaldbold';
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(91deg, #FFF 0%, #8D8D8D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abm-smallheading {
  font-family: 'oswaldbold';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(92deg, #FFF 0%, #8D8D8D 63.7%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abm-content {
  color: #979797;
  font-family: 'oswaldreg';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.abm-top0 {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}
.abm-top0 .wrappers {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  position: relative;
}
.abm-top0 .wrappers img{
  width: 4rem;
  top: 0;
  right: 0;
  position: absolute;
  animation: infinite alternate-reverse wave 1s ease-in-out;
  transform-origin: 100% 100%;
}
.abm-top0 .wrappers h1{
  background: linear-gradient(119deg, rgb(255, 255, 255) 0%, rgb(172, 172, 172) 100%);
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  font-family: 'dmsans';
}


.abm-top1 {
  grid-column: 4 / span 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 26, 26, 0.7);
  background-image: url(images/chibi-sukuna.png);
  background-size: 30rem;
  background-repeat: no-repeat;
}
.abm-top1:hover {
  background-image: url(images/chibi-sukuna-eye-closed.png);
}
.abm-top1-blink {
  background-image: url(images/sukuna-blink.png) !important;
}
.abm-top1 a {
  width: 100%;
  height: 100%;
}


.abm-top2 {
  grid-row: 3 / span 2;
  grid-column: 1 / span 2;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.abm-top2 .imgstk {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.abm-top2 img {
  border-radius: 19px;
  width: 100%;
}
.abm-top2 .left {
  mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
}
.abm-top2 .right {
  mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
}


.abm-top3 {
  align-self: stretch;
  grid-row: 3 / span 4;
  grid-column: 3 / span 3;
  justify-self: stretch;
}
.abm-top3 img {
  width: 90%;
  padding-top: 1rem;
}
.abm-top3 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 40px 30px;
  height: 100%;
  box-sizing: border-box;
}

.abm-top4 {
  grid-row: 5 / span 2;
  grid-column: 1 / span 2;
  justify-self: stretch;
  position: relative;
  overflow: hidden;
  background-image: url(images/abm-3d.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.abm-top4 .inner {
  display: flex;
  justify-content: right;
  width: 100%;
}
.abm-button {
  text-decoration: none;
  color: #E8E8E8;
  background: rgba(217, 217, 217, 0.30);
  padding: 5px 20px;
  border-radius: 999px;
}

.abm-top15 {
  grid-row: 7 / span 5;
  grid-column: 1 / span 5;
  display: flex;
  align-items: end;
  position: relative;
}
.abm-top15 .june {
  position: absolute;
  left: 0;
  top: -40px;
}
.abm-top15 .june-logo{
  font-family: 'ddt';
  font-size: 128px;
  background: linear-gradient(91deg, #FFF 0.34%, #5b5a5a 99.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abm-top15 .inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}
.abm-top15 .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
.abm-top15 .right .abm-key {
  padding-top: 55px;
}
.abm-top15 .left {
  width: 70%;
}



.abm-top5 {
  grid-row: 12 / span 4;
  grid-column: 1 / span 4;
  background-image: url(images/abm-design.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
}

.abm-top5 .inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}
.abm-top5 .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
.abm-top5 .left {
  width: 70%;
}


.abm-top6 {
  align-self: stretch;
  grid-row: 12 / span 4;
grid-column: 5 / span 1;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}
.abm-top6 img {
  width: 89px;
  border-radius: 19px;
}
.abm-top6 .top {
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.abm-top6 .bottom{
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

.abm-top7 {
  align-self: stretch;
  grid-row: 16 / span 4;
  grid-column: 1 / span 3;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}
.abm-top7 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.abm-top7 svg {
  width: 24px;
}
.abm-top7 img{
  width: 100%;
  border-radius: 17px;
  border: 1px solid #5B5B5B;
}
.abm-top7 .bottom-top {
  display: flex;
  align-items: center;
}
.abm-top7 .bottom-top img {
  width: 81px;
  height: 81px;
  border-radius: 19px;
  margin-right: 1.5rem;
  border: unset;
}


.abm-top8 {
  align-self: stretch;
  grid-row: 16 / span 4;
  grid-column: 4 / span 2;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
.abm-top8 .top {
  width: 100%;
}
.abm-top8 img {
  width: 81px;
  border-radius: 19px;
  margin-bottom: 1rem;
}
.abm-top8 .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 360px;
}
.abm-top8 .center .front{
  width: 100%;
  transform: translateY(-80%);
  border: 1px #5B5B5B solid;
  border-radius: 10px;
  transition: 1s ease;
  margin: unset;
}
.abm-top8 .center .middle{
  width: 80%;
  transform: translateY(-50%);
  border: 1px #5B5B5B solid;
  border-radius: 10px;
  transition: 1s ease;
  margin: unset;
}
.abm-top8 .center .back{
  width: 60%;
  border: 1px #5B5B5B solid;
  border-radius: 10px;
  transition: 1s ease;
  margin: unset;
}
.abm-top8 .center .middle:hover{
  width: 100%;
  transform: scale(1.1);
  z-index: 2;
  transition: 1s ease;
}
.abm-top8 .center .back:hover{
  width: 100%;
  transform: scale(1.1);
  z-index: 2;
  transition: 1s ease;
}
.abm-top8 .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abm-top9 {
  grid-row: 20 / span 2;
  grid-column: 1 / span 5;
  justify-self: stretch;
  display: flex;
  gap: 2rem;
  padding: 40px;
}
.abm-top9 .left {
  flex-shrink: 0;
  height: 100%;
}
.abm-top9 .left img {
  height: 100%;
  border-radius: 17px;
  border: 1px solid #5B5B5B;
}
.abm-top9 .right {
  width: max-content;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 5px 0;
}
.abm-top9 .right .right-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.abm-top9 .right .right-bottom img {
  border-radius: 19px;
  width: 81px;
  margin-bottom: 0.7rem;
}
.abm-top9 svg {
  width: 24px;
}

.abm-top10 {
  align-self: stretch;
  grid-row: 22 / span 3;
  grid-column: 1 / span 5;
  justify-self: stretch;
  display: flex;
  gap: 2rem;
  padding: 40px;
}
.abm-top10 .left {
  flex-shrink: 0;
  height: 100%;
}
.abm-top10 .left img {
  height: 100%;
  border-radius: 17px;
  border: 1px solid #5B5B5B;
}
.abm-top10 .right {
  width: max-content;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px 0;
}
.abm-top10 .right .right-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.abm-top10 .right .right-bottom img {
  border-radius: 19px;
  width: 81px;
  margin-bottom: 0.7rem;
}
.abm-top10 svg {
  width: 24px;
}


.abm-top11 {
  height: 761.6px;
  grid-row: 25 / span 4;
  grid-column: 1 / span 3;
  background-image: url(images/abm-hl.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.abm-top11 svg {
  width: 24px;
}
.abm-top11 .top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.abm-top12 {
  grid-row: 25 / span 2;
  grid-column: 4 / span 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(images/abm-udm.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.abm-top13 {
  align-self: stretch;
  grid-row: 27 / span 4;
  grid-column: 4 / span 2;
  justify-self: stretch;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.abm-top13 p {
  flex-shrink: 0;
  width: 100%;
}
.abm-top13 .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 650px;
}
.abm-top13 img {
  height: 100%;
  border-radius: 32px;
}

.abm-top14 {
  grid-row: 29 / span 2;
  grid-column: 1 / span 3;
  justify-self: stretch;
  padding: 40px;
  background-image: url(images/unified-apps.png);
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.abm-top14 .top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.abm-top14 svg {
  width: 24px;
}

.article-chapters {
  flex: 1;
  position: sticky;
  justify-self: left;
  z-index: 10;
  top: 0;
  display: flex;
  height: 800px;
  justify-content: left;
  color: #979797;
}
.article-chapters h1 {
  font-size: clamp(12px,3vw,3rem);
}
.article-chapters-ultimate-wrapper {
  margin-top: 10vh;
  margin-left: 5vw;
}
.article-chapter-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 15px;
}
.article-chapter-wrapper a {
  color: #505050;
  font-size: clamp(10px,1vw,1.2rem);
  transition: 1s ease;
}
.article-chapter-selected {
  color: #bcbcbc !important;
  padding: 5px 10px;
  text-shadow: 0 0 20px rgba(127, 127, 127, 0.847);
  transition: 1s ease;
  border-left: 5px solid white;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0.119) 0%, rgba(0, 0, 0, 0) 20%);
  border-radius: 5px;
}
.article-balance {
  flex: 1;
}

.article-image {
  width: 100%;
  height: 100vh;
  top: 0;
  background-image: url(images/pandusarticle.png);
  background-size: cover;
  background-position: top center;
  filter: blur(10px);
  position: fixed;
}
.article-csdp-image {
  width: 100%;
  height: 100vh;
  top: -80px;
  background-image: url(images/csdp-bg.png);
  background-size: cover;
  background-position: top center;
  filter: blur(5px);
  position: fixed;
}
.article-Brolocator-image {
  width: 100%;
  height: 100vh;
  top: -180px;
  background-image: url(images/borlocator-pf-context.png);
  background-size: cover;
  background-position: top center;
  filter: blur(10px);
  position: fixed;
}
.article-ProjJune-image {
  background-image: url(images/ProjJuneBanner1.png);
  background-position-x: center;
  position: fixed;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  top: 0;
}
.Project-june-special-title {
  font-family: 'ddt' !important;
  background: linear-gradient(91deg, #FFF 0.34%, #5b5a5a 99.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.article-elecf-image {
  background-image: url(images/elecf-img.png);
  transform: scale(0.7);
}
.article-content {
  position: relative;
}
.article-fade {
  height: 50vh;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
}
.article-bottom-fade {
  height: 10vh;
  mask: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, black 100%);
  backdrop-filter: blur(10px);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.article-bottom-fade2 {
  height: 3vh;
  position: fixed;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, black 100%);
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.article-body {
  background-color: #000;
  display: flex;
  width: 100vw;
}
.article-body-wrapper {
  max-width: 1000px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: center;
}
.article-real-body {
  width: 100%;
  margin-top: 3vh;
  border-radius:25px;
  border-top: 1px solid #454545;
  border-left: 1px solid #454545;
  background-color: #121212;
  padding: 20px 25px;
}
.gap {
  height: 1rem;
}
.borderless {
  border: unset !important;
}
.article-real-body object {
  height: 800px;
}
.article-real-body img {
  width: 100%;
  margin-top: 2vh;
  border-radius: 21px;
  border-top: 1px solid #454545;
  border-left: 1px solid #454545;
}
.article-real-body h1{
  font-size: 2rem;
  padding-left: 0.5rem;

  color: #ffffff;
  font-weight: bold;
  font-family: 'monda';
}
.article-real-body p{
  font-size: 1rem;
  color: #a7a7a7;
  font-family: 'monda';
  padding-left: 0.5rem;
}
.article-real-body span {
  font-size: 0.9rem;
  color: #676767;
  font-family: 'monda';
  text-align: center;
  display: block;
}
.article-real-body iframe {
  width: 100%;
}
.article-header {
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.article-header .pf-item-tag {
  width: auto;
}
.article-header h1{
  font-size: 5rem;
  font-family: 'Monda';
  font-weight: bold;
  text-align: center;
}
.article-header h3{
  font-size: 1rem;
  font-family: 'Monda';
  text-align: left;
  color: #a7a7a7;
}
.article-header-icons {
  margin-top: 30px;
  align-self: flex-start;
}
.team-members {
  border-top: 1px solid #454545;
  border-left: 1px solid #454545;
  background: linear-gradient(175deg, rgb(37, 37, 37) 0%, rgb(21, 21, 21) 100%);
  border-radius: 30px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}
.team-members h3 {
  font-size: 1.5rem;
  font-family: 'Monda';
  text-align: center;
  color: #d8d8d8;
}
.team-members-member {
  display: flex;
  height: 62px;
  background: linear-gradient(175deg, rgb(64, 64, 64) 0%, rgba(42, 42, 42, 1) 100%);
  border-top: 1px solid #636363;
  border-left: 1px solid #636363;
  border-radius: 999px;
  align-items: center;
  padding: 0 10px;
  justify-content: space-between;
}
.team-members-profile {
  height: 44px;
  width: 44px;
  background-color: white;
  border-radius: 999px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(images/profiless.jpg);
}
.tyr-profile {
  background-image: url(https://framerusercontent.com/images/Z3GPice7XE0ttZhHBYRI737GQtA.png?scale-down-to=512&width=854&height=486);
  background-size: 90%;
  background-color: #000;
}
.zx-profile {
  background-image: url(https://www.ongkian.com/css/images/Passport_Photo.jpg);
}
.braven-profile {
  background-image: url(images/nk-black.png);
  background-size: 80%;
  background-color: #000;
}
.jyc-profile {
  background-image: url(https://framerusercontent.com/images/asafLs7NWVzXO9AolaQ8XVF5F4.jpg?scale-down-to=512&width=1280&height=807);
}
.team-members-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.team-members-title h1 {
  color: #FFF;
  font-family: 'monda';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.team-members-title p {
  color: #848484;
  font-family: 'monda';
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: -5px;
  margin-left: 3px;
}
.team-members-right {
  display: flex;
  border-radius: 36px;
  background: linear-gradient(175deg, rgb(78, 77, 77) 0%, rgb(65, 64, 64) 100%);
  border-top: 1px solid #636363;
  border-left: 1px solid #636363;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  transition: 250ms ease;
}
.team-members-right h2 {
  color: #FFF;
  font-family: 'monda';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.team-members-right img {
  width: 16px;
  margin-top: 0;
}
.team-members-right:hover {
  background: linear-gradient(175deg, rgb(34, 104, 201) 0%, rgb(9, 58, 95) 100%);;
  transition: 250ms ease;
}
.team-members-right-disabled {
  pointer-events: none;
  background: linear-gradient(175deg, rgb(48, 47, 47) 0%, rgb(27, 26, 26) 100%);
  border-top: 1px solid #565656;
  border-left: 1px solid #565656;
  opacity: 50%;
}

.next-article {
  font-size: 2rem;
  color: #ffffff;
  font-weight: bold;
  font-family: 'monda';
  text-align: center;
  margin: 10vh 0;
  border: 1px solid #989898;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5vh;
  box-shadow: inset 0 0 20px 0 rgba(255, 255, 255, 0.5);
}
.next-article button {
  margin: 3vh auto;
}

.abm-tweaks {
  overflow: hidden;
  justify-content: end ;
}
.abm-img-tweaks {
  width: 30%;
  height: fit-content;
  align-self: flex-end;
}

@media only screen and (max-width: 1300px) {
  .article-body-wrapper {
    max-width: 700px;
  }
}


/* Media Qurey */
@media only screen and (max-width: 1235px) {
    .irregular-screen {
      position: fixed;
      color: white;
      z-index: 999;
      bottom: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: red;
    }
    .hero-headline {
        font-size: var(--fs-big-mq);
    }

    .hero-subtitle {
        font-size: var(--fs-standard-mq);
    }

    .Nav-Menu-Items {
      display: none !important;
    }

    .navitem li {
      padding-left: 0;
    }
    
    .hamburger {
      display: flex !important;
    }

    .scroll-container {
      transform: scale(0.7);
    }
    .nav-closed {
      height: 35px;
      margin-top: 10px;
      padding: 15px 40px;
    }
    .footer {
      flex-direction: column;
      gap: 30px;
      align-items: center;
      justify-content: center;
    }
    .photography-collage {
      height: 100vh;
      background-position-y: 50vh;
      position: relative;
    }
    .photography-card {
      margin-top: 15vh;
    }
    .photo-main-ver {
      width: 90vw;
    }
    .photography-header-headline {
      font-size: 2em;
      letter-spacing: 0;
      font-weight: bold;
    }
    .photography-body-item-top {
      flex-direction: column;
      gap: 30px;
    }
    .photography-header-subtitle {
      font-size: 1em;
      padding: 20px 50px;
    }
    .photography-body-item-top-right h1 {
      font-size: clamp(1em, 2vw, 3em);
      padding: 0 25px;
      word-spacing: 0.02em;
      font-family: "roboto";
    }
    .photography-body-item-top-left h1 {
      font-size: 1.5em;
      font-weight: bold;
    }
    .photography-body-item-top-left {
      gap: 10px;
      width: 90px;
    }
    .photography-body-item-bottom {
      font-size: 0.8em;
    }
    .photography-body-item-bottom {
      margin-top: 50px;
    }
    .photography-end-cards-style {
      width: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 30px 20px;
    }
    .photography-end-card-content h1 {
      font-size: 1.4em;
    }
    .photography-end-card-content h3 {
      font-size: 0.8em;
    }
    .photography-end-card-content img {
      width: 50px;
    }
    .photography-cards {
      gap: 20px;
    }
    .portfolio-cta-content h1{
      font-size: 3em;
    }
    .portfolio-call-to-action {
      height: 60vh;
    }
    .hl-hero-bg-blob-wrp {
      height: 300px;
      width: 300px;
    }
    .hl-hero-bg-blob {
      filter: blur(100px);
      height: 300px;
      width: 300px;
    }
    .homelab-servercard-holder {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      flex-direction: column;
    }
    .whyselfhost {
      padding: 10px;
    }
    .whyselfhost h2 {
      font-size: 4rem;
      margin: 0 0 10vh 0;
    }
    .whyselfhost p {
      font-size: 1.5em;
    }
    .homelab-body-apps-item {
      width: 75vw;
      height: 25vh;
    }
    .homelab-body-apps-item-top img {
      width: 50px;
      height: 50px;
    }
    .homelab-body-apps-item-text p{
      font-size: 0.8rem;
    }
    .homelab-body-apps-item-bottom img {
      width: 400px;
    }
    .hl-flywrapper1 {
      display: none;
    }
    .hl-flywrapper2 {
      display: none;
    }
    .hl-flywrapper3 {
      display: none;
    }
    .hl-flywrapper4 {
      display: none;
    }
    .hl-flywrapper5 {
      display: none;
    }
    .hl-flywrapper6 {
      display: none;
    }
    #portfolio-items-holder {
      width: auto;
      margin: 90px 5vw 0 5vw;
      gap: 15px;
    }
    .portfolio-hero {
      height: 2000px;
    }
    .portfolio-items1 {
      width: 90vw;
      height: 70vh;
      margin: 0;
    }
    .portfolio-items2 {
      width: 90vw;
      height: 70vh;
      margin: 0;
    }
    .portfolio-items2-open {
      height: auto;
    }

    .pf-button-left-stack h3{
      display: none;
    }
    .pf-dual-buttons {
      display: flex;
      flex-direction: column;
    }
    .pf-item-content h1{
      font-size: 2rem;
    }
    .pf-item-button-wrapper {
      margin-top: 1.5rem;
    }
    .pf-item-image {
        height: 100%;
        width: auto;
    }
    .pf-item-image2 {
      width: 40vw;
    }
    .pf-items-wrapper {
      height: 90%;
    }
    .pf-item-content h6 {
      width: 100%;
    }
    .pf-item-image-wrapper-blur {
      filter: brightness(40%) blur(5px);
    }
    .portfolio-nav-buttons {
      left: 40%;
    }
    .pf-hidden-bottom {
      flex-direction: column;
    }
    .aboutme-top-holder {
      margin: auto;
      height: 1300vw;
      grid-template-rows: repeat(66, minmax(0, 1fr));
      grid-template-columns: repeat(5, minmax(0, 1fr));
      width: 90vw;
    }
    .hero-topper-arrow {
      width: 12px;
    }
    .abm-grid-items-bg {
      padding: 2rem;
      border-radius: 20px;
    }

    .abm-top0 .wrappers img {
      width: 4vw;
    }
    .abm-top0 {
      padding: 1rem;
      align-self: stretch;
      grid-row: 1 / span 2;
      grid-column: 1 / span 3;
      justify-self: stretch;
    }
    .abm-top0 .abm-largeheading {
      font-size: 4vw;
    }
    .abm-top1 {
      padding: 1rem;
      background-size: 105%;
      align-self: stretch;
      grid-row: 1 / span 2;
      grid-column: 4 / span 2;
      justify-self: stretch;
    }
    .abm-top3 {
      align-self: stretch;
      grid-row: 3 / span 5;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top3 .inner {
      padding: 0 0 1rem 0;
    }
    .abm-top2 {
      align-self: stretch;
      grid-row: 8 / span 3;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top4 {
      align-self: stretch;
      grid-row: 11 / span 4;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top15 {
      grid-row: 15 / span 5;
      grid-column: 1 / span 5;
    }
    .abm-top15 .june {
      position: absolute;
      left: 0;
      top: -30px;
      width: 95vw;
    }
    .abm-top15 .june-logo{
      font-family: 'ddt';
      font-size: 64px;
      background: linear-gradient(91deg, #FFF 0.34%, #5b5a5a 99.8%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .abm-top15 .inner {
      flex-direction: column-reverse;
      display: flex;
      justify-content: space-between;
      padding: 0;
    }
    .abm-top15 .right {
      display: flex;
      flex-direction: unset;
      justify-content: space-between;
      align-items: end;
      margin-bottom: 1rem;
    }
    .abm-top15 .right .abm-key {
      padding-top: 0px;
    }
    .abm-top15 .left {
      width: auto;
    }
    .abm-top5 {
      align-self: stretch;
      grid-row: 20 / span 4;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top5 .inner {
      flex-direction: column-reverse;
      padding: 0;
    }
    .abm-top5 .right {
      flex-direction: unset;
      align-items: center;
      margin-bottom: 1rem;
    }
    .abm-top5 .left {
      width: 100%;
    } 
    .abm-top6 {
      align-self: stretch;
      grid-row: 24 / span 1;
      grid-column: 1 / span 5;
      justify-self: stretch;
      flex-direction: unset;
    }
    .abm-top6 img{
      width: 8vw;
      border-radius: 8px;
    }
    .abm-top6 .top {
      mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    }
    .abm-top6 .bottom {
      mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
    }
    .abm-top7 {
      align-self: stretch;
      grid-row: 25 / span 5;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top7 svg {
      width: 14px;
    }
    .abm-top7 .abm-smallheading {
      font-size: 20px;
    }
    .abm-top7 .bottom-top img {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      margin-right: 1rem;
    }
    .abm-top7 .abm-content {
      margin-top: 1rem;
    }
    .abm-top8 {
      align-self: stretch;
      grid-row: 30 / span 7;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top8 .center {
      height: 60%;
    }
    .abm-top8 .abm-smallheading {
      font-size: 20px;
    }
    .abm-logo-figma {
      width: 60px !important;
      height: 60px;
      border-radius: 12px !important;
    }
    .abm-top9 {
      align-self: stretch;
      grid-row: 37 / span 5;
      grid-column: 1 / span 5;
      justify-self: stretch;
      flex-direction: column;
      gap: unset;
    }
    .abm-top9 .left {
      height: auto;
    }
    .abm-top9 .right {
      width: auto;
    }
    .abm-top9 .right .right-bottom img {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      margin: 0;
    }
    .abm-top9 .abm-smallheading {
      font-size: 20px;
    }
    .abm-top9 .left img{
      height: auto;
      width: 100%;
    }
    .abm-top9 svg {
      width: 14px;
    }
    .abm-top10 {
      align-self: stretch;
      grid-row: 42 / span 5;
      grid-column: 1 / span 5;
      justify-self: stretch;
      flex-direction: column;
      gap: unset;
    }
    .abm-top10 .left {
      height: auto;
    }
    .abm-top10 .right {
      width: auto;
    }
    .abm-top10 .right .right-bottom img {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      margin: 0;
    }
    .abm-top10 .right-bottom .inner {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 0.5rem 0;
    }
    .abm-top10 svg {
      width: 14px;
    }
    .abm-top10 .left img {
      height: auto;
      width: 100%;
    }
    .abm-top11 {
      align-self: stretch;
      grid-row: 47 / span 5;
      grid-column: 1 / span 5;
      justify-self: stretch;
      height: auto;
    }
    .abm-top11 svg {
      width: 14px;
    }
    .abm-top11 .top {
      margin-bottom: 0.5rem;
    }
    .abm-top12 {
      align-self: stretch;
      grid-row: 52 / span 4;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top13 {
      align-self: stretch;
      grid-row: 56 / span 8;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top14 {
      align-self: stretch;
      grid-row: 64 / span 3;
      grid-column: 1 / span 5;
      justify-self: stretch;
    }
    .abm-top14 svg {
      width: 14px;
    }
    .abm-top13 img {
      height: auto;
      width: 80%;
    }
    .abm-top13 .bottom {
      height: auto;
    }
    .index-photos {
      flex-direction: column;
      align-items: start;
    }
    .index-photos-image-wrapper img {
      padding-top: 40px;
      width: 100%;
    }
    .index-server {
      padding: 20px;
      position: relative;
    }
    .index-server-image-wrapper img{
      position: absolute;
      top: 120px;
      left: 0;
      width: 100%;
    }
    .index-photos-text {
      color: transparent;
      background: linear-gradient(160deg, rgba(232,232,232,1) 2%, rgb(136, 136, 136) 88%);
      background-clip: text;
      margin-bottom: 90px;
      z-index: 1;
    }
    .index-photos-padding {
      padding: 20px;
    }
    .index-photos-padding::before {
      top: 10%;
    }
    .article-header h3 {
      text-align: center;
      width: 80%;
    }
    .article-header-icons {
      align-self: center;
    }
    .article-chapters {
      display: none;
    }
    .article-balance {
      display: none;
    }
    .article-body {
      justify-content: center;
    }
    .article-body-wrapper {
      width: 85vw;
    }
    .article-real-body {
      padding: 10px 20px;
    }
    .article-real-body h1{
      padding-left: 0.2rem;
      font-size: 1.5rem;
    }
    .article-real-body p{
      padding-left: 0.2rem;
      font-size: 0.8rem;
    }
}
@media only screen and (max-width: 820px) {
  .abm-largeheading {
    font-size: 2rem;
  }
  .abm-smallheading {
    font-size: 1.5rem;
  }
  .abm-content {
    font-size: 1rem;
  }
  .abm-key {
    font-size: 1rem;
  }
  .side-bar-scroll {
    position: relative;
  }
  .side-bar-scroll object {
    width: 90%;
  }
  .side-bar-scroll::after {
    content: 'Drag here to scroll on this site';
    color: rgb(183, 76, 76);
    position: absolute;
    background-color: rgb(49, 49, 49);
    width: 8%;
    border-radius: 999px;
    height: 90%;
    writing-mode: sideways-lr;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    bottom: 0;
    right: 0;
  }

}

@media only screen and (max-width: 480px) {
  .irregular-screen {
    display: none;
  }
  .abm-top0 .abm-largeheading{
    font-size: 18px;
  }
  .abm-top0 .wrappers img {
    width: 1.2rem;
  }
  .index-photos-header h1 {
    font-size: 1.5em;
    line-height: 2rem;
  }
  .index-photos-subtitle h1 {
    font-size: 0.8em;
  }
  .aboutme-top-holder {
    height: 6000px;
  }
  .abm-key {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 2px;
  }

  .abm-largeheading {
    font-family: 'oswaldbold';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(91deg, #FFF 0%, #8D8D8D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .abm-smallheading {
    font-family: 'oswaldbold';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(92deg, #FFF 0%, #8D8D8D 63.7%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .abm-content {
    color: #979797;
    font-family: 'oswaldreg';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .abm-button {
    font-size: 12px;
  }
  .abm-top13 img {
    height: auto;
    width: 90%;
  }
  .abm-top8 .center {
    height: 300px;
  }
  .abm-top5 {
    background-position-y: -30px ;
  }
  .team-members {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .team-members-profile {
    height: 40px;
    width: 40px;
  }
  .team-members-member {
    height: 50px;
    padding: 0 10px 0 8px;
  }
  .team-members-title h1 {
    font-size: 14px;
  }
  .team-members-title p {
    font-size: 10px;
    margin-left: 0px;
    margin-top: -5px;
  }
  .team-members-right {
    padding: 6px 9px;
  }
  .team-members-right h2 {
    font-size: 12px;
  }
  .team-members-right img {
    width: 14px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 429px) { 
  .abm-top15 .june-logo{
    font-size: 54px;
  }
}