@font-face {
    font-family: 'Coolvetica Crammed Rg';
    src: url('assets/fonts/CoolveticaCrammedRg-Regular.eot');
    src: url('assets/fonts/CoolveticaCrammedRg-Regular.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/CoolveticaCrammedRg-Regular.woff2') format('woff2'),
        url('assets/fonts/CoolveticaCrammedRg-Regular.woff') format('woff'),
        url('assets/fonts/CoolveticaCrammedRg-Regular.ttf') format('truetype'),
        url('assets/fonts/CoolveticaCrammedRg-Regular.svg#CoolveticaCrammedRg-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }

html, body { height: 100%; margin: 0; padding: 0; }

body {
  background: #000;
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  color: #c0c0c0;
}

.border { border: 1px solid red; }

.container { 
  width: 1200px; 
  max-width: 100%;
  padding-left: 20px; 
  padding-right: 20px;
}

/* Loading Screen Styling */

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.loading-screen {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  background-color: #101010;
  width: 100%;
  height: 100%;
  transform: scaleY(0) skewX(0);
  transform-origin: top left;
}

#hero-glitch {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}

.follow {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.3s ease-in-out background-color, 0.3s ease-in-out opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(0px, 0px);
}

.follow.active {
  background-color: transparent;
  opacity: 1;
}

.follow div {
  width: 0px;
  height: 0px;
  border: 1px solid rgba(255,255,255,0.5);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  opacity: 0;
  pointer-events: none;
}

.follow.active div:first-child {
  animation: follow 1s linear infinite forwards;
}

.follow.active div:last-child {
  animation: follow 1s linear infinite forwards 0.6s;
}

@keyframes follow {
  0% { width: 0px; height: 0px; opacity: 0; }
  50% { width: 60px; height: 60px; opacity: 0.8; }
  100% { width: 80px; height: 80px; opacity: 0; }
}

@keyframes follow_two {
  0% { width: 0px; height: 0px; opacity: 0; }
  50% { width: 60px; height: 60px; opacity: 0.8; }
  100% { width: 80px; height: 80px; opacity: 0; }
}

.dust {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;    
  object-fit: cover;
  opacity: .5;
  z-index: 99;
}

section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
  
.hero .container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
    padding-bottom: 20vh;
}

.hero h1 {
    display: block;
    position: relative;
    font-family: 'Coolvetica Crammed Rg';
    font-size: 7.5em;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: transparent;
    margin: 0;
    overflow: hidden;
}
.hero h1 span:first-child {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      color: #fff;
      text-align: left;
      transform: translateY(-50px);
}
.hero h1 span:last-child {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      right: 0;
      top: 0;
      color: #fff;
      text-align: right;
      transform: translateY(50px);
}
.hero h1 span:first-child,
.hero h1 span:last-child {
  opacity: 0;
}
.hero-subtitle {
  display: block;
  font-weight: bold;
  font-size: 1.35em;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
}
.hero-intro {
  display: block;
  font-size: 1em;
  text-align: center;
  opacity: 0;
}
.hero-intro .word {
  opacity: 0;
}
.availability {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  position: absolute;
  width: 100%;
  bottom: 75px;
  left: 50%;
  gap: 5px;
  transform: translateX(-50%);
}
.index-contact {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #333;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
  opacity: 0;
  transform: translateY(-30px);
}
.index-contact:hover {
    background: #666;
}
.index-contact:before,
.index-contact:after {
    display: none;
}
.index-imforhire {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  padding: 5px 20px;
  font-weight: 600;
  height: 40px;
  background: #ffffff;
  color: #000000;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(30px);
}
.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
}
.mouse {
  width: 30px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid #c0c0c0;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 15px);
}
.mouse:before, .mouse:after {
  content: "";
  display: block;
  position: absolute;
}
.m-4:before, .m-4:after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 10px;
  left: calc(50% - 3px);
  background: #999;
  opacity: 0;
  -webkit-animation: m-4-ball 1.2s ease-in-out infinite;
          animation: m-4-ball 1.2s ease-in-out infinite;
}
.m-4:after {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes m-4-ball {
  50% {
    opacity: 1;
  }
  47.5%, 52.5% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(20px);
  }
}

@keyframes m-4-ball {
  50% {
    opacity: 1;
  }
  47.5%, 52.5% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(20px);
  }
}

/* About */

section.about {
  background: url(assets/images/about-BG.jpg) -30% top no-repeat;
  background-size: 50vw;
  padding-top: 20vh;
}

section.about .container {
  padding-left: 10vw;
  padding-right: 3vw;
}

h1.about-salam {
  font-size: 6em;
  font-weight: 600;
  margin: 0;
  line-height: 1.2em;
}

h3.about-post-greeting {
  font-size: 2.5em;
  font-weight: normal;
  margin: 0;
  line-height: 1.6em;
}

.about-intro {
  width: 20vw;
  margin-top: 5vh;
  line-height: 1.8em;
}