/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&;display=swap');

/* Common */

* {
  margin: 0;
  padding: 0;
  border: none;
}

body {
  font-weight: 400;
  font-size: 13px;
  height: 100%;
  text-align: center;
  background: #2D2D32;
  color: #000;
  font-family: 'Titillium Web', sans-serif;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

.highlight {
  color: #FF7F7F;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  position: relative;
}

.body-content {
  position: relative;
  z-index: 5;
}

.flex {
  display: flex;
  justify-content: center;
}

/* Hero */

#hero-section {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 4;
  background: #2A2A2E;
  box-sizing: border-box;
  padding-left: 80px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-self: center;
  z-index: 10;
}

.hero-title:before {
  content: '';
  position: absolute;
  top: -30px;
  width: 50px;
  height: 4px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  animation-name: fadeIn;
  animation-duration: 1s;
}

.hero-title h1 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 0.65rem + 3.45vw, 3.13rem);
  text-align: left;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 7.5px;
  position: relative;
}

.hero-title h1:nth-child(3) {
  margin-bottom: 30px;
}

.hero-title h4 {
  width: min-content;
  white-space: nowrap;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.21);
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.71);
  letter-spacing: 6px;
  font-weight: 600;
}

.hero-title .btn {
  margin-top: 50px;
}

.hero-location {
  display: flex;
  position: absolute;
  z-index: 20;
  left: 40%;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  padding-left: 80px;
  cursor: pointer;
  overflow: hidden;
  animation-name: fadeIn;
  animation-duration: 1s;
}

.hero-location::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 1px;
  background: #FF7F7F;
}

.hero-location span {
  margin-right: 60px;
  position: relative;
  top: 0;
}

.hero-location span:nth-child(2) {
  margin-right: 0;
}

.hero-location span,
.hover-location {
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  color: rgba(255, 255, 255, 0.51);
  letter-spacing: 10px;
  font-size: 10px;
  text-transform: uppercase;
}

.hero-location:hover span {
  top: 50px;
  opacity: 0;
  visibility: hidden;
}

.hover-location {
  position: absolute;
  left: 80px;
  top: -40px;
  opacity: 0;
  visibility: hidden;
}

.hero-location:hover .hover-location {
  top: 0;
  opacity: 1;
  visibility: visible;
}

/* Buttons */

.btn {
  width: min-content;
  white-space: nowrap;
  padding: 15px 30px;
  position: relative;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  text-transform: uppercase;
  border-radius: 4px;
  text-shadow: 1px 1px 2px rgba(150, 150, 150, 0.36);
}

.btn:hover {
  padding-left: 60px;
}

.btn:hover::before {
  width: 30px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  height: 1px;
  width: 0;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.colour-btn {
  background: #FF7F7F;
  color: #fff;
  border-color: transparent;
}

.btn.colour-btn::before {
  background: #fff;
}

/* Navigation - Sidebar */

#sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  z-index: 100;
  -webkit-transform: translate3d(0, 0, 0);
}

#sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2C2D32;
  opacity: 0.6;
}

#logo-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  position: relative;
}

.logo {
  transition: all 0.35s ease;
  height: 40px;
  width: 30px;
  background: #fff;
  -webkit-clip-path: polygon(
    10% 100%,
    50% 20%,
    68% 55%,
    53% 55%,
    50% 50%,
    25% 100%,
    75% 100%,
    65% 80%,
    80% 80%,
    90% 100%
  );
  clip-path: polygon(
    10% 100%,
    50% 20%,
    68% 55%,
    53% 55%,
    50% 50%,
    25% 100%,
    75% 100%,
    65% 80%,
    80% 80%,
    90% 100%
  );
}

@keyframes clip-animation {
  0% {
    -webkit-clip-path: polygon(
      10% 100%,
      0% 100%,
      0% 100%,
      25% 100%,
      25% 100%,
      25% 100%,
      25% 100%,
      25% 100%,
      0% 100%,
      0% 100%
    );
    clip-path: polygon(
      10% 100%,
      0% 100%,
      0% 100%,
      25% 100%,
      25% 100%,
      25% 100%,
      25% 100%,
      25% 100%,
      0% 100%,
      0% 100%
    );
  }
  33% {
    -webkit-clip-path: polygon(
      10% 100%,
      50% 20%,
      50% 50%,
      50% 50%,
      50% 50%,
      25% 100%,
      25% 100%,
      25% 100%,
      0% 100%,
      0% 100%
    );
    clip-path: polygon(
      10% 100%,
      50% 20%,
      50% 50%,
      50% 50%,
      50% 50%,
      25% 100%,
      25% 100%,
      25% 100%,
      0% 100%,
      0% 100%
    );
  }
  66% {
    -webkit-clip-path: polygon(
      10% 100%,
      50% 20%,
      80% 60%,
      50% 50%,
      25% 100%,
      75% 100%,
      75% 100%,
      100% 100%,
      100% 100%
    );
    clip-path: polygon(
      10% 100%,
      50% 20%,
      68% 55%,
      53% 55%,
      50% 50%,
      25% 100%,
      75% 100%,
      75% 100%,
      100% 100%,
      100% 100%
    );
  }
  100%{
    -webkit-clip-path: polygon(
      10% 100%,
      50% 20%,
      68% 55%,
      53% 55%,
      50% 50%,
      25% 100%,
      75% 100%,
      65% 80%,
      80% 80%,
      90% 100%
    );
    clip-path: polygon(
      10% 100%,
      50% 20%,
      68% 55%,
      53% 55%,
      50% 50%,
      25% 100%,
      75% 100%,
      65% 80%,
      80% 80%,
      90% 100%
    );
  }
}

#logo-container:hover .logo {
  background: #FF7F7F;
  transition: all 0.35s ease;
  -webkit-clip-path: polygon(10% 100%, 50% 20%, 73% 65%, 58% 65%, 50% 50%, 25% 100%, 75% 100%, 65% 80%, 80% 80%, 90% 100%);
  clip-path: polygon(10% 100%, 50% 20%, 73% 65%, 58% 65%, 50% 50%, 25% 100%, 75% 100%, 65% 80%, 80% 80%, 90% 100%);
}

.navigation-menu-btn {
  width: 28px;
  height: 50px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  margin-top: 5px;
  padding: 25px 25px 0 25px;
}

.navigation-menu-btn span {
  width: 100%;
  margin-bottom: 6px;
  height: 2px;
  background: #fff;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: #FF7F7F;
}

.navigation-menu-btn .second-bar {
  width: 70%;
}

.navigation-menu-btn .third-bar,
.navigation-menu-btn.closed-menu:hover .third-bar {
  width: 0;
}

.navigation-menu-btn.closed-menu .first-bar {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-bottom: 0;
  top: 8.5px;
}

.navigation-menu-btn.closed-menu .second-bar {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: 0;
  top: 6px;
  width: 100%;
}

.menu-btn-text {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -1px;
  color: rgba(255, 255, 255, 0.41);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease-in-out;
}

.navigation-menu-btn:hover .menu-btn-text {
  color: #fff;
}

.navigation-menu-btn:hover .second-bar,
.navigation-menu-btn:hover .third-bar {
  width: 100%;
}

.navigation-socials {
  position: absolute;
  bottom: 50px;
  width: 100%;
  left: 0;
}

.navigation-socials::before {
  content: '';
  position: absolute;
  top: -70px;
  width: 1px;
  height: 50px;
  left: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.navigation-socials li {
  width: 100%;
  margin-bottom: 16px;
}

.navigation-socials li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.41);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-transition: all 300ms linear;
  transition: all 0.4s ease-in-out;
}

.navigation-socials li:last-child {
  margin-bottom: 0;
}

.navigation-socials li a:hover {
  border-radius: 100%;
  color: #fff;
  transition: all 0.4s ease-in-out;
}

#navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 98;
  width: 100%;
  background: rgba(37, 36, 37, 0.71);
  cursor: none;
  display: none;
  -webkit-transform: translate3d(0, 0, 0);
}

#navigation-container {
  position: fixed;
  top: 0;
  left: -1064px;
  bottom: 0;
  z-index: 99;
  width: 610px;
  background: #252425;
  overflow: auto;
  padding: 35px 30px 35px 160px;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  touch-action: none;
  overflow: hidden !important;
  box-sizing: border-box;
}

#navigation-container::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47.5%;
  height: 100px;
  background: rgba(255, 255, 255, 0.031);
  z-index: -1;
}

.navigation-logo {
  position: absolute;
  top: 110px;
  left: 167px;
}

.navigation-logo::before {
  content: '';
  position: absolute;
  right: -90px;
  left: 60px;
  top: -8px;
  bottom: -8px;
  background: rgba(255, 255, 255, 0.031);
  z-index: -1;
  cursor: default;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.navigation-logo:hover::before {
  left: calc(100% + 100px);
}

.navigation-logo img {
  height: 21px;
  width: auto;
}

#menu-panel {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

#menu-panel li {
  margin: 0;
  position: relative;
  width: 100%;
}

.menu-link {
  display: flex;
  width: 100%;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  position: relative;
  font-weight: 600;
  font-size: 12px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.2s ease;
}

.menu-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  height: 100%;
  background: rgba(255, 255, 255, 0.071);
}

.menu-link:hover {
  color: #FF7F7F;
  transition: all 0.2s ease;
}

.menu-link:hover::after {
  width: 100%;
}

.navigation-title {
  position: absolute;
  bottom: 0;
  left: 125px;
  z-index: 2;
  right: 0;
}

.navigation-title span {
  display: flex;
  position: relative;
  opacity: 0.2;
  top: 150px;
  min-height: 200px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 94px;
  color: #fff;
  letter-spacing: 4px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  -moz-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

.navigation-inner {
  width: 350px;
  position: relative;
  z-index: 10;
  top: 180px;
}

nav .navigation-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #252425;
  z-index: 20;
}

#navigation-overlay .tooltip {
  width: 150px;
  height: 50px;
  line-height: 50px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 100;
  font-size: 10px;
  display: none;
}

#navigation-overlay:hover .tooltip {
  display: block;
  position: fixed;
  overflow: hidden;
  background: #FF7F7F;
}

#hero-container {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 100px;
}

#hero-container .hero-logo {
  position: absolute;
  top: 32%;
  left: 97.5%;
  transform: translate(-50%, -50%);
  height: 640px;
  width: 480px;
  background: #8A4D4D;
  opacity: 0.7;
  animation: clip-animation 1.35s cubic-bezier(0.34, 1.3, 0.7, 1);
    animation-delay: 0s;
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
  -webkit-  clip-path: polygon(
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%);
  clip-path: polygon(
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%);
}

.navigation-credits {
  position: absolute;
  right: 0;
  bottom: -37px;
  width: 60%;
  height: 120px;
  line-height: 70px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navigation-credits:last-of-type {
  display: none;
}

.hero-pagination {
  display: flex;
  width: 36px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  align-items: self-end;
  justify-content: inherit;
  flex-direction: column;
  flex-wrap: wrap;
  margin-right: 2.2rem;
  left: 95.5%;
  animation-name: fadeIn;
  animation-duration: 1s;
}

.pagination-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 20px;
  display: flex;
  align-content: center;
  cursor: pointer;
  align-items: center;
  justify-content: end;
}

.pagination-line {
  width: 75%;
  height: 100%;
  max-height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.51);
  display: block;
  transition: width .2s ease-in-out;
}

.pagination-line.active {
  width: 100%;
  opacity: 1;
  background: #FF7F7F;
}

/* Featured Projects */

#featured-projects {
  background: #2A2A2E;
  position: relative;
  width: 100%;
  padding: 110px 0;
  overflow: hidden;
  box-sizing: border-box;

}

.slider-title-wrapper {
  position: absolute;
  left: 100px;
  width: 50%;
  top: 30%;
}

.slider-title {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index: 11;
  position: relative;
}

.slider-title h3 {
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.71);
  position: relative;
  text-align: left;
  padding-bottom: 20px;
}

.slider-title p {
  font-size: 11px;
  line-height: 24px;
  padding-bottom: 10px;
  font-weight: 500;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.slider-title .btn {
  margin-top: 50px;
}

.slider-wrapper {
  z-index: 10;
  width: 70%;
  position: relative;
}

.carousel-slider-container {
  z-index: 2;
}

.slider-wrapper .slick-dots {
  position: absolute;
  display: flex;
  flex-direction: row;
  z-index: 10;
  width: 50%;
  bottom: -96px;
  right: 0;
  padding-left: 20px;
  box-sizing: border-box;
}

.slider-wrapper .slick-dots li {
  position: relative;
  margin-right: 10px;
}

.slick-dots li button {
  position: relative;
  width: 14px;
  height: 14px;
  text-indent: -9999px;
  line-height: 14px;
  border: none;
  cursor: pointer;
  background: none;
  border-radius: 100%;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.slick-dots li button::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
  border-radius: 100%;
  background: #eee;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.slick-dots li.slick-active button {
  border-color: rgba(255, 255, 255, 0.41);
}

.slick-dots li.slick-active button::before {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
  background: #FF7F7F;
}

.slider-arrow {
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  background: rgba(255, 255, 255, 0.071);
  border-radius: 4px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  cursor: pointer;
  position: absolute;
  z-index: 50;
  top: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  margin-top: -66px;
  color: #FF7F7F;
  z-index: 11;
}

.slider-arrow:hover {
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.21);
  transition: all 200ms linear;
}

.previous-arrow {
  left: 50px;
}

.next-arrow {
  right: 50px;
}

.slider-wrapper .slick-slide {
  opacity: 0.3;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
  transition: all 400ms linear;
}

.slider-img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-box-media {
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.slider .slick-current .slider-box-text {
  -webkit-transform: perspective(1200px) rotateX(0deg) translateZ(0px);
  -moz-transform: perspective(1200px) rotateX(0deg) translateZ(0px);
  transform: perspective(1200px) rotateX(0deg) translateZ(0px);
  transition-delay: 0.3s;
}

.slider-wrapper .slick-current,
.slider-wrapper .slick-current-clone-animate {
  opacity: 1;
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  transform: scale(1.0);
}

.slider-box-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 50px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.031);
}

.slider-wrapper .slick-current .slider-box-text {
  -webkit-transform: perspective(1200px) rotateX(0deg) translateZ(0px);
  -moz-transform: perspective(1200px) rotateX(0deg) translateZ(0px);
  transform: perspective(1200px) rotateX(0deg) translateZ(0px);
  transition-delay: 0.3s;
}

.slider-box-text,
.slider-wrapper .slick-item,
.slider-box-zoom {
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
    transition-delay: 0s;
}

.slider-box-text {
  background: #35353A;
  padding: 26px 30px;
  transform-style: preserve-3d;
  z-index: 1;
  -webkit-transform: perspective(1200px) rotateX(-90deg) translateZ(-51px);
  -moz-transform: perspective(1200px) rotateX(-90deg) translateZ(-51px);
  transform: perspective(1200px) rotateX(-90deg) translateZ(-51px);
}

.slider-box-text h5::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background: #FF7F7F;
}

.slider-box-text h5::before,
.slider-box-text h5,
.slider-box-zoom {
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.slider-box-text h5 {
  text-align: left;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
  padding-left: 35px;
  position: relative;
}

.slider-box-tags {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  padding-left: 35px;
}

.slider-box-text h6 {
  font-size: 14px;
  font-weight: 300;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.31);
}

.slider-box-zoom {
  position: absolute;
  top: 0;
  right: -70px;
  width: 70px;
  height: 60px;
  line-height: 60px;
  background: #35353A;
  z-index: 5;
  color: #FF7F7F;
  font-size: 15px;
}

.slider-box-zoom:hover{
  color: #fff;
}

.slick-current .slider-box-zoom {
  transition-delay: 0.3s;
  right: 0;
}

.slider-box-zoom {
  z-index: 100;
}

.slider-counter::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 30px;
  height: 1px;
  background: #FF7F7F;
}

.slider-counter {
  position: absolute;
  right: 50%;
  z-index: 50;
  bottom: 18px;
  margin-right: 54px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.71);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
}

#page-end {
  position: relative;
  background: #2A2A2E;
  padding: 70px 0 70px 80px;
  overflow: hidden;
}

.page-end-container {
  max-width: 1224px;
  width: 92%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.page-end-container h6 {
  padding-left: 90px;
  position: relative;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #8B8B8B;
  top: 2px;
  text-align: left;
}

.page-end-container h6::before {
  background: #FF7F7F;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 2px;
  margin-top: -1px;
}

.page-end-container h6::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -70px;
  bottom: -15px;
  width: 270px;
  background: rgba(255, 255, 255, 0.041);
}

.page-end-btn {
  text-align: right;
}

#about-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 4;
  background: #2A2A2E;
  box-sizing: border-box;
  padding-left: 80px;
}

.section-number {
  position: absolute;
  font-size: 86px;
  font-weight: bold;
  color: #eee;
  opacity: 0.03;
  font-family: 'Orbitron', sans-serif;
  transform: rotate(-90deg);
  right: -20px;
  top: 80px;
  letter-spacing: -5px;
}

#about-section h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  text-align: left;
  padding-bottom: 25px;
}

#about-section p {
  color: #fff;
  padding-top: 10px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 22px;
  position: relative;
  z-index: 2;
  max-width: 515px;
}

#about-section h3::before {
  background: #FF7F7F;
  content: '';
  position: absolute;
  top: 327px;
  width: 50px;
  height: 2px;
  margin-top: -1px;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 70px;
}

.three-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}

.column {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#about-section .two-column-grid p {
  text-align: left;
  font-size: 15px;
  line-height: 24px;
  padding-bottom: 10px;
  text-transform: initial;
  font-weight: 400;
  letter-spacing: 1px;
}

.tech-stack-item {
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: space-evenly;
  height: 100px;
  width: 160px;
  border: double 3px transparent;
    border-top-width: 3px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-image-slice: 100%;
  border-image-slice: 1;
  border-width: 3px;
  background-image: linear-gradient(#2D2D32, #2D2D32),radial-gradient(circle at top left, #FF7F7F, #FF7F7F);
  border-radius: 10px;
  background-origin: border-box;
  background-clip: content-box, border-box;
  overflow: hidden;
}

.tech-stack-item:not(:last-child) {
  margin-bottom: 25px;
}

.tech-stack-img {
  height: 55px;
}

#about-section .two-column-grid .tech-stack-caption {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  padding: 0;
}

.reveal-text {
  position: relative;
  animation-name: reveal-text;
  cursor: default;
  width: fit-content;
}

.reveal-text:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: revealer-text;
}

.reveal-text,
.reveal-text:after {
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-duration: 800ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text:nth-child(2),
.reveal-text:nth-child(2):after {
  animation-delay: 0.75s;
}

.reveal-text:nth-child(3),
.reveal-text:nth-child(3):after {
  animation-delay: 1s;
}

.reveal-text:nth-child(4),
.reveal-text:nth-child(4):after {
  animation-delay: 1.25s;
}

.reveal-text:nth-child(5),
.reveal-text:nth-child(5):after {
  animation-delay: 1.5s;
}

@keyframes reveal-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes revealer-text {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

#sidebar,
#sidebar::before {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
  from {
    opacity:0;
    left: -5%;
  }
  to {
    opacity:1;
    left: 0%;
  }
}

@keyframes fadeIn {
  0% {
    opacity:0
  }
  to {
    opacity:1
  }
}

@media (max-width: 1075px) {

  #hero-section,
  #about-section {
    padding-left: 0px;
  }

  #hero-container {
    margin-right: 0;
  }

  .hero-title .btn {
    margin-top: 0px;
  }

  .hero-title h1 {
    line-height: 1.4;
  }

  #sidebar::before,
  .navigation-socials,
  .navigation-socials::before,
  #logo-link,
  .hero-pagination,
  .hero-location,
  .hero-title h4 {
    display: none;
  }
}

@media (max-width: 610px) {
  #navigation-container {
    width: 100vw;
    padding: 35px 30px 35px 76px;
  }
  .navigation-logo {
    left: 85px;
  }
  .navigation-title span {
    top: 150px;
    left: -97px;
    font-size: 60px;
  }
  .navigation-credits:first-of-type {
    display: none;
  }
  .navigation-credits:last-of-type {
    display: block;
    right: 11px;
  }
}

@media (max-width: 450px) {
  #hero-container .hero-logo {
    left: 78.5%;
  }
}

@media (max-width: 300px) {
  #hero-container .hero-logo {
    left: 78.5%;
    height: 400px;
    width: 300px;
  }
}
