/*!
 * Stylesheet: style.сss
 * Project: Nova Orbis
 * Description: Main site styles
 * Author: Gianfar
 * Created: 20.06.2025
 * Version: 1.0.0
 * ------------------------------------------
 * STRUCTURE:
 * 1. TYPOGRAPHY
 * 2. LOADING SCREEN
 * 3. NAVIGATION
 * 4. BUTTON
 * 5. BROWN BUTTON
 * 6. BLACK BUTTON
 * 7. BASIC STYLES FOR PROJECTS
 * 8. PAGE LOADER
 * 9. HOME CORPORATE
 * 10. ABOUT SECTION
 * 11. SERVICES SECTION
 * 12. FUN FACTS SECTION
 * 13. PORTFOLIO STACK
 * 14. TAGLINE SECTION
 * 15. FOOTER
 * 16. SINGLE PROJECT
 * 17. PERSONAL PAGE
 * 18. WORKS SECTION
 * 19. ABOUT PAGE
 * 20. PROCESS CARD
 * 21. HOME HORIZONTAL SCROLL
 * 22. MARQUEE TEXT
 * 23. HORIZONTAL PORTFOLIO SECTION
 * 24. BLOG PAGE
 * 25. CONTACT PAGE
 * 26. MEDIA QUERIES FOR RESPONSIVE DESIGN
 * ------------------------------------------
 */
:root {
  scroll-behavior: auto;
}
/* 1. TYPOGRAPHY */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: unset;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
body::-webkit-scrollbar {
  display: none;
}
body {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 200;
  color: #fff;
  background-color: #0c0c0c;
}
@media (hover: none) and (pointer: coarse) {
  body {
    height: 100%;
  }
}
ul,
menu,
dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.scrollbar {
  overflow: hidden;
}
figure {
  margin: 0;
}
p {
  margin: 0;
  color: var(--bs-gray-400);
}
.h1,
h1 {
  font-size: 150px;
}
.h2,
h2 {
  font-size: 72px;
}
.h3,
h3 {
  font-size: 60px;
}
.h4,
h4 {
  font-size: 48px;
}
.h5,
h5 {
  font-size: 24px;
}
.h6,
h6 {
  font-size: 18px;
}
a {
  text-decoration: none;
}
.sub-title-2 .word,
.project-header .social-link,
.scroll-down-icon,
.sub-title-2,
.title-page-name .char,
.project-category,
.accordion-item,
.title-page-name,
.header-page-img .button,
.header-page-img .header-content p,
.header-page-img .header-content .main-title,
.header-page-img .header-content .sub-title,
.bg-text,
.header-content .sub-title-2,
.anim-block .sub-title .char {
  opacity: 0;
  will-change: transform;
}
.grid__item-img {
  will-change: transform, opacity;
}
.bg-black {
  background-color: #0c0c0c !important;
}
/* LOADING SCREEN */
.pageload-container {
  position: fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #141517;
  z-index: 100;
}
.page-loader {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.loader-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  /* Initially hide all words */
}
.loader-img img {
  width: 150px;
  height: 200px;
}
.loader-text {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 250%;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.progress-container {
  position: absolute;
  bottom: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  /* Center content horizontally */
  align-items: center;
  /* Center content vertically */
  height: 50px;
  /* Adjust height as needed */
}
.progress-bar {
  flex: 1;
  height: 5px;
  overflow: hidden;
  margin-right: 10px;
}
.progress {
  height: 100%;
  width: 0;
  background-color: #af7e62;
}
.loader-counter {
  padding: 0 24px;
  font-size: 48px;
  font-weight: 600;
  color: var(--bs-gray-200);
}
.loading-screen {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  background-color: var(--bs-gray-900);
  width: 0%;
  height: 100%;
}
.load-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 100;
  pointer-events: none;
}
/* NAVIGATION */
nav.main-nav {
  position: absolute;
  z-index: 15;
}
.menu-icon {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 5;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  overflow: hidden;
  cursor: pointer;
  transition-duration: 0.2s;
}
.text-menu {
  color: var(--bs-gray-100);
  font-size: 18px;
  font-weight: 600;
  margin-right: 12px;
  margin-bottom: 2px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.menu-logo:hover {
  animation: spin 10s linear 0s infinite;
}
.wrap-nav {
  cursor: pointer;
  position: fixed;
  top: 48px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.icon-nav {
  display: inline-block;
  height: 10px;
}
.icon-nav-1 {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--bs-gray-100);
  transition-duration: 0.2s;
}
.icon-nav-2 {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--bs-gray-100);
  margin-top: 6px;
  transition-duration: 0.2s;
}
.icon-nav-1-on {
  transform: rotate(45deg);
  transition-duration: 0.2s;
  margin-top: 3px !important;
}
.icon-nav-2-on {
  transform: rotate(-45deg);
  transition-duration: 0.2s;
  margin-top: -2px !important;
}
.full-nav {
  display: flex;
  justify-content: start;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateY(-110%);
  transition: all 0.4s cubic-bezier(0.6, 0.05, 0.4, 1);
  background-color: #0c0c0c;
}
.full-nav-on {
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.6, 0.05, 0.4, 1);
}
.top-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  bottom: auto;
  right: auto;
  transition: all 0.4s cubic-bezier(0.6, 0.05, 0.4, 0.5);
  z-index: 1;
}
.top-layer.active {
  top: 100%;
}
.full-nav-links {
  z-index: 5;
  display: flex;
  flex-direction: column;
  width: 50%;
}
.full-nav-links a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-size: 48px;
  letter-spacing: 6px;
  color: #fff;
  text-transform: uppercase;
  line-height: 72px;
  font-weight: 500;
}
.full-nav-links a:hover {
  color: #fff;
  transition-duration: 0.5s;
}
.wrap-menu-img div {
  width: 60%;
  height: 70%;
  clip-path: polygon(0px 0px, 0% 0%, 0% 100%, 0% 100%);
  transition-duration: 0.5;
}
.menu-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-position: center !important;
  background-size: cover !important;
  z-index: -1;
  overflow: hidden;
}
.menu-active {
  color: #fff !important;
}
.menu-active:before {
  content: "";
  position: absolute;
  width: 100% !important;
  height: 2px;
  background-color: #fff;
  bottom: 0;
}
.nav-img > a {
  position: relative;
}
.nav-img > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  transition-duration: 0.3s;
}
.nav-img > a:hover:before {
  width: 100%;
  transition-duration: 0.3s;
}
.str-submenu > li > a {
  font-size: 14px;
  color: #999;
  line-height: 24px;
}
.full-nav .section-scrollbar-demo-menu {
  position: absolute;
  right: 0;
  height: 100%;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -5%;
}
.full-nav .section-scrollbar-demo-menu .scroll-content {
  max-height: 100%;
}
.full-nav .section-scrollbar-demo-menu .scrollbar-track {
  opacity: 0;
}
.full-nav-links {
  width: 100%;
}
.p-works-item {
  z-index: 1;
  opacity: 0;
  transition-duration: 0.5s;
}
.menu-active-bg {
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%) !important;
  transition-duration: 1s;
  z-index: 3 !important;
  opacity: 1 !important;
}
/* BUTTON */
.button {
  display: inline-block;
}
.button-pos {
  text-align: center;
  color: #0c0c0c;
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  border: 1px solid currentColor;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 0 24px;
  font-size: 18px;
  transition-duration: 0.3s;
  font-weight: 400;
}
.button-pos span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #0c0c0c;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.button-pos:hover {
  color: #fff;
}
.button-pos:hover span {
  width: 220%;
  height: 565px;
}
.button-pos:active {
  background-color: #0c0c0c;
}
.circle-button .button-pos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  padding: unset;
}
.white-button {
  display: inline-block;
}
.white-button > button,
.white-button > a {
  color: #fff;
}
.white-button > button:hover,
.white-button > a:hover {
  color: #0c0c0c;
  border-color: transparent;
}
.white-button .button-pos span {
  background-color: #fff;
}
.white-button .button-pos:active {
  background-color: #fff;
}
.wrap-content {
  overflow-x: hidden;
  height: 100%;
  transition-duration: 5s;
}
/* BROWN BUTTON */
.brown-button > a {
  color: #fff;
}
.brown-button > a:hover {
  color: #fff;
  border-color: transparent;
}
.brown-button .button-pos span {
  background-color: #af7e62;
}
.brown-button .button-pos:active {
  background-color: #af7e62;
}
/* BLACK BUTTON */
.black-button > a {
  position: relative;
  color: var(--bs-gray-900);
  z-index: 0;
}
.black-button > a:hover {
  color: #fff;
  border: unset;
  border-color: transparent;
}
.black-button .button-pos span {
  background-color: #af7e62;
  z-index: -1;
}
.black-button .button-pos:active {
  background-color: #af7e62;
  z-index: -1;
}
/* BASIC STYLES FOR PROJECTS */
#app {
  top: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
.wrap-fs-img {
  position: relative;
  z-index: 4;
}
/* PAGE LOADER */
.js .loading::before {
  content: "";
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}
.js .loading::after {
  content: "";
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
.message {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 1rem;
  text-align: center;
}
.frame {
  padding: 3rem 5vw;
  text-align: center;
  position: relative;
}
.frame__title {
  font-size: 1rem;
  margin: 0 0 1rem;
  font-weight: 500;
}
.frame__links {
  display: inline;
}
.frame__links a:not(:last-child),
.frame__demos a:not(:last-child) {
  margin-right: 1rem;
}
.frame__demos {
  margin: 1rem 0;
}
.frame__demos-title {
  display: inline-block;
  margin: 0 1.5rem 0 0;
}
.frame__demo--current,
.frame__demo--current:hover {
  color: var(--color-text);
}
.grid {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem;
}
.grid__item {
  margin: 0 0 4rem;
}
.grid__item-img {
  max-width: 100%;
  display: block;
  cursor: pointer;
}
.grid__item-img--large {
  top: 0;
  left: 0;
  pointer-events: none;
  position: fixed;
  opacity: 0;
}
.grid__item-title {
  font-size: 2.25rem;
  font-weight: 400;
  margin: 1.25rem 0;
  line-height: 1;
  color: var(--color-title);
}
.grid__item-text {
  color: var(--color-grid-text);
  font-size: 0.95rem;
}
.fullview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  padding: 2rem;
  z-index: 3;
  grid-template-columns: 100%;
  pointer-events: none;
}
.fullview__item {
  pointer-events: none;
  grid-area: 1 / 1 / 2 / 2;
  display: grid;
  grid-template-columns: 50% 50%;
}
.fullview__item--current {
  pointer-events: auto;
}
.fullview__item-title {
  margin: 0 0 0 0.25rem;
  line-height: 1;
  font-size: 4rem;
  font-weight: 400;
  opacity: 0;
  align-self: end;
  color: var(--color-title);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fullview__close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
}
.fullview__item--current ~ .fullview__close {
  pointer-events: auto;
}
.fullview__close:focus {
  outline: none;
}
.fullview__close svg {
  fill: currentColor;
}
@media screen and (min-width: 53em) {
  .message {
    display: none;
  }
  .frame {
    text-align: left;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    padding: 2rem 3rem;
    grid-template-columns: 60% 40%;
    grid-template-areas: "title demos";
  }
  .frame__title-wrap {
    grid-area: title;
    display: flex;
  }
  .frame__title {
    margin: 0 5vw 0 0;
  }
  .frame__demos {
    margin: 0;
    grid-area: demos;
    justify-self: end;
  }
}
.js .loading::before,
.js .loading::after {
  content: "";
  position: fixed;
  z-index: 10000;
}
.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}
.js .loading::after {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 1px;
  margin: 0 0 0 -50px;
  background: var(--color-link);
  animation: loaderAnim 1.5s ease-in-out infinite alternate forwards;
}
@keyframes loaderAnim {
  0% {
    transform: scaleX(0);
    transform-origin: 0% 50%;
  }
  50% {
    transform: scaleX(1);
    transform-origin: 0% 50%;
  }
  50.1% {
    transform: scaleX(1);
    transform-origin: 100% 50%;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}
.unbutton {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}
.unbutton:focus {
  outline: none;
}
.frame {
  padding: var(--page-padding);
  position: relative;
  display: grid;
  z-index: 1000;
  width: 100%;
  height: 100%;
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
  pointer-events: none;
  justify-items: start;
  grid-template-columns: auto auto;
  grid-template-areas: "title" "archive" "back" "github" "sponsor" "demos" "tags";
}
.frame #cdawrap {
  justify-self: start;
}
.frame a {
  pointer-events: auto;
}
.frame__title {
  grid-area: title;
  font-size: inherit;
  font-weight: 700;
  margin: 0;
}
.frame__back {
  grid-area: back;
  justify-self: start;
}
.frame__archive {
  grid-area: archive;
  justify-self: start;
}
.frame__sub {
  grid-area: sub;
}
.frame__github {
  grid-area: github;
}
.frame__tags {
  grid-area: tags;
  display: flex;
  gap: 1rem;
}
.frame__hire {
  grid-area: hire;
}
.frame__demos {
  grid-area: demos;
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 53em) {
  .frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    grid-template-columns: auto auto 1fr auto 1fr;
    grid-template-rows: auto auto;
    align-content: space-between;
    grid-template-areas: "title title ... back sponsor" "tags tags ... github archive";
  }
  .frame #cdawrap {
    justify-self: end;
    max-width: 250px;
    text-align: right;
  }
}
/* HOME CORPORATE */
.bg-mouse-effect {
  backdrop-filter: blur(100px);
  top: 0;
  left: 0;
  position: absolute;
  width: 130vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.header-full {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.header-full .data-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 3;
}
.header-full .data-img p {
  margin-top: 12px;
  color: var(--bs-gray-400);
  text-align: center;
  font-size: 18px;
}
.wrap-head-txt {
  overflow: hidden;
  width: 500px;
  position: absolute;
  top: 100%;
}
.header-full h1 {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 500;
  color: #ff5e5e;
  transition-duration: 0.1s;
}
.header-full h1 span {
  font-family: "Baskervville", serif;
  font-style: italic;
}
.wrap-head-img {
  position: relative;
  width: auto;
  height: auto;
}
/* ABOUT SECTION */
.crp-about {
  padding-top: 144px;
  padding-bottom: 144px;
  position: relative;
  z-index: 3;
}
.crp-about .mission-block {
  margin-top: 288px;
}
.crp-about .mission-block h2 {
  font-weight: 300;
  font-size: 72px;
  text-transform: uppercase;
  letter-spacing: -3px;
}
.crp-about .button {
  margin-top: 144px;
}
.crp-about .button .button-pos {
  width: 200px;
  height: 200px;
  font-weight: 400;
}
.dsc-block {
  margin-top: 144px;
}
.dsc-block h4 {
  line-height: 50px;
}
.dsc-block p {
  margin-top: 36px;
  color: #ffffff;
}
.section {
  padding: 144px 0;
  position: relative;
  z-index: 3;
}
.icon-title {
  display: inline-block;
  background-image: url(../icons/title-icon.svg);
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 24px;
  margin-right: 24px;
}
/* SERVICES SECTION */
.sec-services .container {
  position: relative;
}
.s-title {
  display: flex;
  align-items: center;
  color: var(--bs-gray-500);
  text-transform: uppercase;
  letter-spacing: 10px;
}
.services-list {
  margin-top: 48px;
}
.services-list div h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -3px;
  transition-duration: 0.4s;
}
.services-list div p {
  margin-top: 24px;
  color: var(--bs-gray-400);
}
.services-item {
  display: flex;
  position: relative;
  padding: 48px 48px;
  cursor: pointer;
  overflow: hidden;
  transition-duration: 0.5s;
  border-bottom: 1px solid #222222;
}
.services-item img {
  left: 48px;
  top: 48px;
  width: 200px;
  opacity: 0.4;
}
.service-desc {
  margin-left: 48px;
}
.ser-anim-el div {
  position: relative;
  width: 200px !important;
  height: 200px !important;
  background-repeat: no-repeat;
  opacity: 0.6;
}
/* FUN FACTS SECTION */
.fun-facts {
  position: relative;
  z-index: 3;
}
.fun-facts .container {
  position: relative;
  border-radius: 25px;
}
.fun-facts .container .row {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  z-index: 1;
  margin-right: unset;
  margin-left: unset;
}
.fun-facts .data-img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.anime-number {
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
}
.fact-item p {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}
/* PORTFOLIO STACK */
.works-section {
  z-index: 4;
}
#app {
  z-index: 5;
  top: 0;
  left: 0;
}
#app canvas {
  opacity: 0.8;
  left: 0;
  top: 0;
}
.sec-works .container {
  position: relative;
}
.stack-section {
  margin-top: 96px;
  position: relative;
}
.stack-section .zoom-el a {
  display: block;
}
.scrollmagic-pin-spacer {
  height: 100%;
  overflow: hidden;
}
.stack-item {
  display: inline-block;
  width: 100%;
  height: auto;
}
.stack-item .main-title,
.stack-item p {
  color: #fff;
}
.stack-item p {
  font-weight: 200;
}
.stack-item-info {
  position: relative;
  margin-bottom: 48px;
  z-index: 1;
}
.stack-item-info h6 {
  font-weight: 400;
  padding: 6px 24px;
  background-color: #00000075;
  border-radius: 100px;
  letter-spacing: 1px;
  color: #ffffff;
}
.stack-item-info .button-link {
  margin-top: 14px;
}
.item-wrap-last,
.item-wrap {
  padding-top: 24px;
  position: relative;
  display: block;
}
.item-wrap-last img,
.item-wrap img {
  -webkit-box-shadow: 0px -2px 26px -15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px -2px 26px -15px rgba(0, 0, 0, 0.5);
  box-shadow: 0px -2px 26px -15px rgba(0, 0, 0, 0.5);
  border-radius: 14px;
}
.link-project-arrow {
  position: absolute;
}
.item-wrap-last:after,
.item-wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0c0c0c;
  left: 0;
  top: 24px;
  z-index: -1;
  border-radius: 25px;
}
.item-wrap-last {
  padding-bottom: 0;
  z-index: 1;
}
.stack-item-info {
  display: flex;
  justify-content: flex-end;
  width: 500px;
  top: 0;
  right: 0;
  padding: 48px 24px;
  position: absolute;
  z-index: 1;
}
/* TAGLINE SECTION */
.tagline-marquee-1 {
  overflow: hidden;
  font-size: 60px;
  line-height: 70px;
}
.tagline-marquee-1 span {
  margin-left: 24px;
  margin-right: 12px;
  width: 40px;
  height: 40px;
}
.tagline-marquee-2 {
  overflow: hidden;
  font-weight: 400;
  font-size: 300px;
  text-transform: uppercase;
  line-height: 300px;
}
.tagline-marquee-2 span {
  margin-left: 24px;
  margin-right: 12px;
  margin-bottom: 35px;
  width: 150px;
  height: 150px;
}
.tagline-marquee-2 .img-tagline {
  margin: 0 24px;
  display: inline-block;
  width: 200px !important;
  height: 210px !important;
  background-position: center;
  background-size: cover;
}
/* Tagline Section */
.plx-tagline .container {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plx-tagline h3 {
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 60px;
  text-transform: uppercase;
}
.plx-tagline {
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.plx-tagline h6 {
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 48px;
}
.plx-tagline .button {
  margin-top: 48px;
}
.parallax-img {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: -1px;
  background-position: top !important;
  background-size: cover !important;
  transition-duration: 0.1s;
  will-change: contents;
  height: 140%;
  z-index: -2;
}
.img-project-header {
  background-position: center !important;
  background-size: cover !important;
  transition-duration: 0.1s;
  will-change: contents;
  z-index: -2;
  opacity: 0.8 !important;
}
/* FOOTER */
.footer {
  padding: 96px 0 12px 0;
  background-color: #0c0c0c;
  border-top: 1px solid var(--bs-gray-900);
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer .social-link {
  float: right;
}
.footer canvas {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.footer-menu a {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: 1px;
  font-weight: 400;
  text-decoration: none;
  line-height: 56px;
}
.footer-menu a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  bottom: 0;
  left: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
}
.footer-menu a:hover::after {
  width: 100%;
  left: 0;
}
.footer-menu a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.contacts-info span {
  display: block;
  font-size: 24px;
  line-height: 48px;
}
.ftr-email {
  display: inline-block;
  margin: 144px 0 144px 0;
  font-size: 120px;
  line-height: 120px;
  font-weight: 400;
  text-decoration: underline;
}
.copyright {
  font-size: 14px;
  letter-spacing: 2px;
}
.copyright p {
  display: inline-block;
}
.social-link a {
  text-decoration: none;
  margin-right: 6px;
}
.wrap-button-link {
  height: 24px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.wrap-button-link .button-link-hover {
  font-size: 14px;
  position: absolute;
  display: inline-block;
  top: 26px;
  left: 0;
  width: 100%;
  height: 26px;
  transition-duration: 0.5s;
}
.wrap-button-link:hover span {
  -webkit-transform: translateY(-26px);
  transform: translateY(-26px);
  transition-duration: 0.5s;
}
.wrap-button-link span {
  color: var(--bs-gray-100);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  transition-duration: 0.5s;
}
.tagline-section {
  position: relative;
  z-index: 3;
  background-color: #0c0c0c;
}
/* SINGLE PROJECT */
.project-nav-arrow .wrap-fs-img {
  position: relative;
  z-index: 4;
}
.project-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.project-header .parallax-img {
  bottom: unset;
  height: 100%;
  opacity: 0.75;
}
.project-header .social-link {
  position: absolute;
  bottom: 24px;
  right: 48px;
}
.project-header .social-link span {
  letter-spacing: 1px;
}
.single-project-info a {
  font-weight: 600;
  text-decoration: underline;
  color: #af7e62;
}
.wrap-single-project {
  position: relative;
  z-index: 1;
}
.header-project {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 0;
  opacity: 0.85;
}
h1.project-title {
  position: unset;
  margin: unset;
  line-height: unset;
  text-transform: unset;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -3px;
}
.project-category {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  line-height: 1.4;
  border-radius: 100px;
  padding: 6px 12px;
  margin-right: 3px;
  border: 1px solid #ffffff;
}
.head-description p {
  color: #ffffff;
}
.single-project-img {
  margin-top: 48px;
}
.single-project-img .data-img {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 700px;
  background-position: center;
  background-size: cover;
}
.single-project-img div:nth-child(3n) {
  margin-top: 24px;
  margin-bottom: 24px;
}
.contact-info h3,
.single-project-info h3 {
  margin-bottom: 24px;
  font-weight: 400;
}
.single-project-info span {
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 12px;
  font-size: 14px;
}
.select-project {
  display: flex;
  margin-bottom: 144px;
}
.select-project a {
  position: relative;
  line-height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  font-weight: 400;
  height: auto;
  width: 100%;
  border: 1px solid var(--bs-gray-900);
  overflow: hidden;
}
.select-project a:hover .nav-small-img {
  transform: scale(1.2);
  transition-duration: 0.5s;
  opacity: 0.8;
}
.select-project .prev-project {
  margin-right: 15px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}
.select-project .next-project {
  margin-left: 15px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
.nav-small-img {
  opacity: 0.7;
  transition-duration: 0.5s;
}
.scroll-down-icon {
  left: 20%;
  position: absolute;
  bottom: 24px;
  text-align: center;
  z-index: 1;
  width: 150px;
  height: 150px;
}
.scroll-down-icon .st0 {
  fill: #ffffff;
}
.scroll-down-icon .st2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-left: 2px;
}
.scroll-down-icon .st3 {
  fill: none;
  stroke: #ffffff;
  stroke-miterlimit: 10;
}
path {
  transition-duration: 0.5s;
}
.scroll-down-icon:hover path {
  transform: translateY(10px);
}
.project-header .parallax-img::after {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
/* PERSONAL PAGE */
.p-sec-about {
  padding: 144px 0;
  position: relative;
}
.p-sec-about .bg-mouse-effect {
  z-index: 1;
}
.p-sec-about .container {
  position: relative;
  pointer-events: none;
  z-index: 3;
}
.p-about-info {
  margin-top: 96px;
}
.p-about-info h1 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -5px;
  line-height: 120px;
}
.p-about-info .s-title {
  margin-bottom: 96px;
}
.p-about-info .white-button {
  margin-top: 48px;
  pointer-events: auto;
}
.p-about-info p {
  margin-top: 48px;
  text-transform: uppercase;
  font-weight: 400;
}
.user-about-img img {
  margin-top: 120px;
}
.line-container {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
  pointer-events: none;
  background-color: transparent;
}
.p-line {
  position: relative;
  width: 1px;
  height: 100%;
  background-color: #ffffff19;
}
.p-square {
  opacity: 0.7;
  position: absolute;
  left: 0.5px;
  width: 1px;
  height: 10vh;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0) 100%);
  animation: slide linear infinite;
}
@keyframes slide {
  0% {
    top: 0;
  }
  100% {
    top: 100vh;
  }
}
.prlx-video {
  opacity: 0.7;
  object-fit: cover;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  transition-duration: 0.1s;
  will-change: contents;
  height: 100%;
  z-index: -2;
}
.our-mission-video {
  color: transparent;
}
/* WORKS SECTION */
.section-works {
  z-index: 4;
}
.section-works .row-works a {
  color: #ffffff;
  display: flex;
  align-items: flex-start;
}
.section-works canvas {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}
.section-works figure {
  display: flex;
  padding: 96px 0;
  align-items: center;
}
.section-works figure figcaption {
  display: flex;
  flex-direction: column;
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
  text-transform: uppercase;
}
.section-works figure figcaption span {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.2;
}
.row-works:nth-of-type(even) figure {
  display: flex;
  flex-direction: row-reverse;
}
.row-works:nth-of-type(even) figure figcaption {
  margin-right: 96px;
  text-align: right;
}
.row-works:nth-of-type(odd) figure figcaption {
  margin-left: 96px;
}
.p-img {
  width: 100%;
  transform: scale(1.5);
}
.img-wrap > a,
figcaption {
  width: 50%;
}
.img-wrap {
  display: flex;
  width: 100%;
}
.img-box.zoom-el {
  width: 70%;
  height: 100%;
  overflow: hidden;
}
.img-box {
  width: 30%;
}
.project-link {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 500px;
}
.project-link img {
  position: absolute;
  top: 0;
  transition-duration: 1s;
}
/* ABOUT PAGE */
.head-page {
  position: relative;
  padding-bottom: 98px;
  pointer-events: none;
}
.head-page-text h1 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -5px;
  line-height: 120px;
  color: var(--bs-gray-100);
}
.des-page {
  margin-top: 48px;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: -1px;
  font-weight: 200;
  color: var(--bs-gray-500);
}
.mission-about {
  margin-top: 144px;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 60px;
  font-size: 60px;
  text-transform: uppercase;
  color: var(--bs-gray-800);
}
.cls-1 {
  stroke-dashoffset: 4500;
}
#mySVG {
  height: auto;
  width: 100vw;
  top: -100px;
  left: 50px;
  position: absolute;
  z-index: -1;
}
.swiper {
  margin-top: 120px;
  width: 100%;
  height: 500px;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
}
.swiper-slide {
  background-color: #fff;
  padding: 24px;
  height: 100%;
  -webkit-box-shadow: 0px 0px 28px -8px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 28px -8px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 28px -8px rgba(0, 0, 0, 0.8);
}
.swiper-slide img {
  height: 100%;
  width: auto;
  border-radius: 14px;
}
.team-info {
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-info .social-link {
  margin-top: 48px;
}
.team-info .social-link span {
  color: #af7e62;
}
.t-iteam .prof-team {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--bs-gray-600);
  font-weight: 600;
  margin-bottom: 6px;
}
.t-iteam h4 {
  color: var(--bs-gray-900);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.t-iteam p {
  color: var(--bs-gray-600);
}
/* PROCESS CARD */
.wrap-process-card {
  margin-top: 120px;
}
.process-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--bs-gray-800);
}
.process-card h4 {
  font-weight: 400;
  margin-bottom: 24px;
}
.p-card-2 {
  background-color: var(--bs-gray-900);
}
.p-card-3 {
  background-color: var(--bs-gray-100);
}
.p-card-3 h4 {
  color: var(--bs-gray-900);
}
.p-card-3 p {
  color: var(--bs-gray-600);
}
/* HOME HORIZONTAL SCROLL */
.hrz-scroll {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
}
.hrz-scroll .wrap-content {
  display: inline-flex;
  flex-direction: row;
}
.hrz-scroll footer {
  padding: unset;
  width: 1200px;
  padding-left: 144px;
}
.hrz-scroll footer .container {
  padding-top: 72px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.hrz-scroll footer .copyright .social-link {
  float: left;
}
.hrz-scroll footer .copyright p {
  float: right;
  margin-right: 144px;
}
.h-scrollbar {
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
}
.hz-wrap-header {
  display: flex;
}
.hz-wrap-header .bg-mouse-effect {
  width: 150%;
}
.hz-wrap-header header {
  flex-grow: 1;
  width: 100vw;
  height: 100vh;
}
.hz-crp-about {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100vh;
}
.hz-crp-about h2 {
  width: 90vw;
  font-weight: 300;
  font-size: 72px;
  text-transform: uppercase;
  letter-spacing: -3px;
  white-space: normal;
}
.hz-crp-about .dsc-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 144px;
  margin-top: unset;
  width: 1000px;
  height: 100%;
  margin-left: 144px;
  background-color: var(--bs-gray-100);
}
.hz-crp-about .dsc-block h4 {
  color: var(--bs-gray-900);
}
.hz-crp-about .dsc-block p {
  color: var(--bs-gray-600);
}
.hz-crp-about .dsc-block .button {
  position: relative;
  margin-top: 48px;
  z-index: 1;
}
.hz-crp-about .dsc-block .s-title {
  margin-bottom: 96px;
  color: var(--bs-gray-900);
}
.hz-crp-about .dsc-block .icon-title {
  filter: invert();
}
/* MARQUEE TEXT */
.marquee-section {
  padding: 0 98px;
  background-color: #0c0c0c;
  height: 200vh;
}
.marquee-1 {
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-1 .marquee-content {
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
  writing-mode: sideways-lr;
  letter-spacing: 1px;
  font-weight: 200;
  text-transform: uppercase;
}
.marquee-1 .marquee-content span {
  padding-bottom: 25px;
}
.marquee-2 {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-2 .marquee-content {
  font-size: 200px;
  line-height: 200px;
  color: var(--bs-gray-700);
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
  writing-mode: sideways-lr;
  letter-spacing: -6px;
  font-weight: 600;
  text-transform: uppercase;
}
/* HORIZONTAL PORTFOLIO SECTION */
.hrz-img-wrap {
  position: relative;
}
.hrz-img-wrap figcaption {
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  width: auto;
  position: absolute;
  bottom: 48px;
  left: 48px;
  background-color: #1c1d1f73;
  backdrop-filter: blur(10px);
  border-radius: 14px;
}
.hrz-img-wrap figcaption p {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 14px;
  color: #fff;
}
.hrz-img-wrap figcaption span {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
}
.hrz-portfolio-section {
  position: relative;
  z-index: 4;
  background-color: #0c0c0c;
}
.hrz-portfolio-section .items-wrapper {
  display: flex;
  height: 100vh;
}
.hrz-project-link {
  display: flex;
  justify-content: flex-end;
  height: 101vh;
}
.hrz-project-link .p-img {
  height: 100%;
  width: auto;
  transform: unset;
}
.hrz-project-link .grid__item-img {
  max-width: unset;
}
.hrz-img-box {
  width: 800px;
  overflow: hidden;
}
.hrz-row-works {
  display: flex;
  margin-right: 96px;
  align-items: center;
  justify-content: center;
}
.htl-section-tag {
  position: relative;
  display: inline-flex !important;
  flex-direction: column;
  padding: 48px 144px 48px 48px;
  white-space: normal !important;
  justify-content: center;
  background-color: #0c0c0c;
  z-index: 3;
}
.htl-section-tag span {
  color: #af7e62;
}
.htl-section-tag div {
  transition-duration: 0.15s;
}
.tagline-marquee-scroll div {
  min-width: 1000px;
  font-size: 180px;
  font-weight: 500;
  line-height: 140px;
  text-transform: uppercase;
  color: var(--bs-gray-200);
  display: block;
}
.htl-plx-tagline {
  width: 100vw;
  width: 1400px;
  position: relative;
  overflow: hidden;
  z-index: 3;
  flex: none;
}
.htl-plx-tagline .container {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htl-plx-tagline h6 {
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 48px;
}
.htl-plx-tagline .button {
  margin-top: 48px;
}
.htl-plx-tagline h3 {
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 60px;
  text-transform: uppercase;
}
.htl-plx-tagline .htl-parallax-img {
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  z-index: -2;
  height: auto;
  width: 140%;
}
.hz-wrap-header .head-page {
  position: relative;
  padding-left: 144px;
  padding-right: 144px;
  height: 100%;
  width: 1300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hz-wrap-header .des-page {
  width: 80%;
}
.hz-wrap-header .social-link {
  pointer-events: auto;
}
.hz-wrap-header .button {
  margin-top: 48px;
  pointer-events: auto;
}
.htl-scroll {
  pointer-events: auto;
}
.htl-scroll div {
  display: flex;
  align-items: center;
  color: #af7e62;
  font-weight: 600;
  font-size: 18px;
}
.htl-scroll div span {
  margin-left: 12px;
  width: 70px;
  height: 2px;
  background-color: #af7e62;
}
.social-link-container {
  display: flex;
  justify-content: space-between;
}
/* Horizontal Scroll */
.scroll-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  will-change: transform;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}
.scroll-section {
  flex: none;
  width: fit-content;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.horizontal-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  touch-action: none;
}
.horizontal-scroll #app {
  z-index: 5 !important;
}
.horizontal-scroll .header-full {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
}
.horizontal-scroll .header-full .data-img {
  position: absolute;
}
.scroll-container {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
@media (hover: hover) and (pointer: fine) {
  .scroll-container {
    overflow-x: hidden;
    min-width: min-content;
    z-index: 3;
  }
}
.el-width-window {
  position: relative;
  height: 0;
  min-width: 170vw;
}
@media (hover: none) and (pointer: coarse) {
  .h-head-img h1,
  .h-head-img {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition-duration: 0.15s;
  }
  .scroll-container {
    z-index: 3;
    pointer-events: unset;
  }
  .htl-parallax-img,
  .hrz-project-link {
    transition-duration: 0.15s;
  }
}
.el-width-window {
  pointer-events: none;
}
.z-in-layout {
  z-index: 3;
  pointer-events: unset;
}
/* BLOG PAGE */
.blog-section {
  position: relative;
  z-index: 3;
}
.latest-post-img img {
  border-radius: 14px;
}
.post-date {
  font-size: 14px;
  color: var(--bs-gray-500);
}
.post-title {
  display: inline-block;
  margin-top: 6px;
  font-weight: 400;
  color: var(--bs-gray-100);
}
.post-title h4 {
  font-size: 36px;
}
.latest-post-text p {
  color: var(--bs-gray-500);
}
.latest-post-text .block-quote p {
  margin: 24px 0;
  color: var(--bs-gray-200);
  font-style: italic;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.read-more-button {
  position: relative;
}
.read-more-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--bs-gray-100);
  bottom: 6px;
}
.button-tags {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
}
.post-tags li {
  display: inline-block;
  padding: 3px 14px;
  background-color: var(--bs-gray-800);
  margin-right: 12px;
  border-radius: 100px;
}
.post-tags li a {
  color: var(--bs-gray-100);
  font-size: 14px;
  font-weight: 400;
}
.blog-section .post-item {
  margin-top: 96px;
}
.blog-category-v2 {
  backdrop-filter: blur(10px);
  background-color: #49505747;
  padding: 14px;
  margin-bottom: 24px;
  border-radius: 14px;
  border-bottom: 1px solid #af7e62;
}
.blog-category-v2 .sub-title-2 {
  font-size: 32px;
  color: var(--bs-gray-100);
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 14px;
}
.btn.blog-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 0;
}
.icon-blog-menu {
  left: 0;
  right: 0;
  margin: auto;
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat !important;
  transition-duration: 0.5s;
  transform: rotateZ(-90deg);
}
.icon-blog-menu path {
  fill: #fff;
}
.icon-blog-menu:hover {
  transform: rotateZ(90deg);
}
.form-control {
  display: block;
  width: 100%;
  height: 48px;
  padding: 6px 12px;
  color: #f2f2f2 !important;
  background-color: transparent;
  background-image: none;
  border: none;
  border: 1px solid var(--bs-gray-700);
  border-radius: 0;
  box-shadow: none;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  resize: none;
  border-radius: 14px;
}
.form-control:focus {
  background-color: transparent;
  border-color: unset;
  box-shadow: unset;
}
.search-block {
  margin-top: 24px;
}
.search-block input::placeholder {
  font-weight: 200;
  font-style: italic;
  color: var(--bs-gray-100);
}
.blog-sidebar a {
  color: var(--bs-gray-400);
  font-weight: 400;
  text-decoration: underline;
}
.blog-sidebar .date-post {
  color: var(--bs-gray-100);
  font-size: 14px;
}
.arrows-obj {
  margin-top: 96px;
  margin-bottom: 96px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.arrow-left {
  display: inline-block;
}
.arrow-left:hover div .arrow-text {
  transform: translateX(24px);
  transition-duration: 0.5s;
}
.arrow-right:hover div .arrow-text {
  transform: translateX(-24px);
  transition-duration: 0.5s;
}
.project-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.project-arrow:before {
  content: "";
  width: 150%;
  height: 1px;
  bottom: -10px;
  background-color: #fff;
  position: absolute;
}
.arrow-text {
  transition-duration: 0.5s;
}
.page-link:focus,
.page-link:hover {
  color: #af7e62;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  font-weight: 600;
}
.page-item.active .page-link {
  z-index: 0;
  color: #fafafa;
  background-color: transparent;
  border-color: transparent;
  font-weight: 600;
}
.page-link {
  font-size: 16px;
  position: relative;
  display: block;
  padding: 6px;
  margin-left: -1px;
  color: #9e9e9e;
  background-color: transparent;
  border: none;
  transition-duration: 0.2s;
}
.single-post-item {
  margin-top: 144px;
}
.single-post-item img {
  max-width: unset;
  width: 100%;
  margin-bottom: 24px;
}
.single-post-item .latest-post-info {
  margin-bottom: 24px;
}
.single-post-item .post-date {
  display: inline-block;
}
.single-post-item .post-tags {
  float: right;
}
.single-post-title {
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 120px;
  font-size: 120px;
  text-transform: uppercase;
  color: var(--bs-gray-300);
}
.other-posts {
  padding: 96px 0;
}
.other-posts img {
  border-radius: 14px;
}
.other-posts .col-md-4 {
  padding: 0 48px;
}
.other-posts .post-link p {
  margin-top: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bs-gray-100);
}
.other-posts .s-title {
  margin-bottom: 96px;
}
/* CONTACT PAGE */
.contact-info ul > li > p span {
  font-weight: 600;
  color: var(--bs-gray-100);
}
.contact-info ul > li {
  margin-bottom: 6px;
}
#map {
  border-radius: 14px;
  margin-top: 24px;
  width: 100%;
  height: 600px;
  background-color: grey;
}
.form-title {
  margin-top: 96px;
  margin-bottom: 48px;
  font-weight: 500;
  text-transform: uppercase;
}
.form-group {
  margin-bottom: 24px;
}
textarea#message {
  height: 96px;
}
.white-button button {
  background-color: transparent;
}
.gl-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: "Baskervville", serif;
}
.gl-slider .swiper-slide {
  border-radius: unset;
  box-shadow: unset;
  background-color: transparent;
}
.gl-slider .slider-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gl-slider .slider-content h2 {
  color: #fff;
  font-weight: 400;
  letter-spacing: -3px;
}
.gl-slider .slider-content p {
  color: #fff;
  width: 500px;
}
.gl-slider .white-button {
  margin-top: 48px;
}
.counter {
  bottom: 48px;
  right: 130px;
  position: absolute;
  color: #ffffff;
}
.first-number {
  font-size: 60px;
  position: relative;
  display: inline-block;
  width: 100px;
  top: -14px;
  left: -100px;
  line-height: 33px;
}
.first-number span {
  position: absolute;
  right: 0;
}
.second-number {
  font-size: 24px;
  font-weight: 200;
}
.custom-pagination {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 400;
}
.swiper-gl {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 11;
}
canvas#webgl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.9;
}
.wrap-word {
  overflow: hidden;
  display: inline-block;
}
.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
[class^="swiper-button-"] {
  width: 72px;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-prev {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}
.swiper-button-next {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}
.swiper-button-next,
.swiper-button-prev {
  height: 36px;
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: none;
}
.slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
}
.slider-arrow:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: #ffffff;
  position: absolute;
}
.slider-arrow-text {
  transition-duration: 0.5s;
}
.swiper-button-prev:hover div .slider-arrow-text {
  transform: translateX(24px);
  transition-duration: 0.5s;
}
.swiper-button-next:hover div .slider-arrow-text {
  transform: translateX(-24px);
  transition-duration: 0.5s;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
}
/* MEDIA QUERIES FOR RESPONSIVE DESIGN */
@media (max-width: 1399.9px) {
  .section-works figure figcaption {
    font-size: 48px;
    line-height: 1;
  }
  .p-about-info h1 {
    font-size: 96px;
    line-height: 0.9;
    letter-spacing: 0;
  }
}
@media (max-width: 1199.9px) {
  h1.project-title {
    font-size: 120px;
    line-height: 1.2;
  }
  .services-list div h2 {
    font-size: 48px;
  }
  .project-link {
    height: 400px;
  }
  .row-works:nth-of-type(odd) figure figcaption {
    margin-left: 48px;
  }
  .row-works:nth-of-type(even) figure figcaption {
    margin-right: 48px;
  }
  .line-container .p-line:nth-child(5) {
    display: none;
  }
  .hz-crp-about h2 {
    font-size: 48px;
  }
  .hz-wrap-header .head-page {
    width: 100vw;
    padding-left: 48px;
    padding-right: 48px;
  }
  h1.single-post-title {
    font-size: 72px;
    line-height: 1;
    letter-spacing: 0;
  }
}
@media (max-width: 991.9px) {
  .wrap-menu-img > div {
    width: 80%;
  }
  .full-nav-links a {
    font-size: 36px;
    line-height: 1.2;
  }
  .h1,
  h1 {
    font-size: 120px;
  }
  .head-page-text h1 {
    margin-top: 96px;
  }
  .crp-about .mission-block h2 {
    font-size: 48px;
    letter-spacing: -1px;
  }
  .h4,
  h4 {
    font-size: 36px;
  }
  .dsc-block {
    margin-top: 96px;
  }
  .dsc-block h4 {
    line-height: 36px;
  }
  .services-list div h2 {
    font-size: 36px;
    letter-spacing: 0;
  }
  .plx-tagline h3 {
    font-size: 48px;
  }
  .footer-menu a {
    font-size: 36px;
    line-height: 42px;
  }
  .contacts-info span {
    font-size: 18px;
    line-height: 36px;
  }
  .ftr-email {
    font-size: 90px;
    line-height: 90px;
  }
  h1.project-title {
    font-size: 72px;
    margin-bottom: 0;
    letter-spacing: 0;
  }
  .head-description {
    margin-top: 24px;
  }
  .row-works:nth-of-type(odd) figure figcaption {
    margin-left: 24px;
  }
  .row-works:nth-of-type(even) figure figcaption {
    margin-right: 24px;
  }
  .project-link {
    height: 300px;
  }
  .line-container .p-line:nth-child(4) {
    display: none;
  }
  .section-works figure figcaption {
    font-size: 36px;
    line-height: 1;
  }
  .p-about-info h1 {
    font-size: 60px;
    line-height: 0.9;
    letter-spacing: 0;
  }
  .hrz-img-box {
    width: 700px;
  }
  .des-page {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .mission-about {
    margin-top: 48px;
    line-height: 1;
    font-size: 48px;
  }
  .swiper.swiper-cards {
    height: 300px;
    margin-top: 48px;
  }
  .swiper.swiper-cards .swiper-slide {
    align-items: unset;
  }
  .swiper.swiper-cards .swiper-slide img {
    height: 100%;
    width: 160px;
    object-fit: cover;
  }
  .team-info .social-link {
    margin-top: 12px;
  }
  .t-iteam h4 {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: 0;
    font-weight: 500;
  }
  .t-iteam .prof-team {
    font-weight: 400;
  }
  .section {
    padding: 48px 0;
  }
  .fun-facts {
    padding-bottom: 48px;
  }
  .wrap-process-card {
    margin-top: 48px;
  }
  .head-page-text h1 {
    letter-spacing: 0;
    line-height: 1;
  }
  .stack-section {
    margin-top: 48px;
  }
  .contact-info h3,
  .single-project-info h3 {
    font-size: 48px;
  }
  .link-project-arrow span {
    font-size: 36px;
  }
  .blog-category-v2 .sub-title-2,
  .post-title h4 {
    font-size: 24px;
  }
  .other-posts .col-md-4 {
    padding: 0 12px;
  }
}
@media (max-width: 767.9px) {
  .wrap-menu-img > div {
    display: none;
  }
  .full-nav .section-scrollbar-demo-menu {
    width: 100%;
    text-align: center;
  }
  .p-about-info .s-title {
    margin-bottom: 48px;
  }
  .crp-about .mission-block h2 {
    font-size: 36px;
  }
  .crp-about .button {
    margin-top: 48px;
  }
  .h1,
  h1 {
    font-size: 72px;
  }
  .header-full .data-img {
    width: 400px;
    height: 400px;
  }
  .services-list div h2 {
    font-size: 30px;
  }
  .srv-number {
    top: 150px;
    right: 40px;
    font-size: 150px;
  }
  .fun-facts .data-img {
    background-position: unset;
  }
  .project-category {
    margin-bottom: 24px;
  }
  .single-project-img div:nth-child(2) {
    margin-top: 24px;
  }
  .services-item {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .services-item .service-desc {
    margin-left: unset;
  }
  .ftr-email {
    font-size: 48px;
    line-height: 0;
  }
  h3.our-mission-video {
    font-size: 36px;
    line-height: 1.2;
  }
  .section-works figure figcaption {
    font-size: 24px;
    line-height: 1;
    margin-top: 12px !important;
  }
  .project-link {
    height: 300px;
  }
  .section-works figure {
    flex-direction: column;
    padding: 48px 0;
  }
  .section-works figure .img-box {
    width: 100%;
  }
  .section-works figure .img-box.zoom-el {
    width: 100%;
  }
  .row-works:nth-of-type(even) figure {
    flex-direction: column;
  }
  .row-works:nth-of-type(even) figure .img-box {
    width: 100%;
  }
  .row-works:nth-of-type(even) figure .img-box.zoom-el {
    width: 100%;
  }
  .row-works:nth-of-type(even) figure figcaption {
    text-align: unset;
    margin: unset;
  }
  .row-works:nth-of-type(odd) figure figcaption {
    margin: unset;
  }
  .plx-tagline h3 {
    font-size: 36px;
    line-height: 1.2;
  }
  .hrz-img-box {
    width: 600px;
  }
  .hz-crp-about h2 {
    font-size: 36px;
  }
  .hrz-project-link {
    justify-content: center;
  }
  .hrz-scroll footer {
    padding: unset;
    width: 768px;
    padding-left: 96px;
  }
  .hrz-scroll footer .copyright p {
    margin-right: 0;
  }
  .gl-slider .slider-content h2 {
    font-size: 48px;
    letter-spacing: -3px;
  }
  .gl-slider .slider-content p {
    width: 400px;
  }
  .counter {
    right: 50px;
  }
  .mission-about {
    font-size: 36px;
  }
  .other-posts-container > .col-md-4:nth-child(2) {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .other-posts .s-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 575.9px) {
  .h1,
  h1 {
    font-size: 72px;
    margin-bottom: 24px;
  }
  .header-full .data-img {
    width: 300px;
    height: 300px;
  }
  .wrap-head-txt {
    width: 400px;
  }
  .fact-item:not(:first-child) {
    margin-top: 48px;
  }
  .stack-item-info h6 {
    font-size: 14px;
  }
  .plx-tagline h3 {
    font-size: 36px;
    line-height: 1.2;
  }
  h1.project-title {
    font-size: 48px;
  }
  .copyright {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer .social-link {
    float: unset;
  }
  .ftr-email {
    font-size: 36px;
  }
  .p-sec-about {
    padding-top: 24px;
  }
  .p-about-info h1 {
    font-size: 72px;
    letter-spacing: 0;
    line-height: 1;
  }
  .p-about-info p {
    margin-top: 0;
  }
  .user-about-img {
    text-align: center;
  }
  .user-about-img img {
    width: 80%;
  }
  .row-works {
    padding: 0 15px;
  }
  .hrz-img-box {
    width: 500px;
  }
  .hz-crp-about h2 {
    font-size: 24px;
  }
  .hrz-project-link {
    justify-content: center;
  }
  .hrz-scroll footer {
    width: 600px;
  }
  .gl-slider .slider-content p {
    width: 300px;
  }
  .mission-about {
    font-size: 24px;
  }
  .swiper.swiper-cards {
    height: 100%;
  }
  .swiper.swiper-cards .swiper-slide img {
    height: auto;
    width: 160px;
  }
  .head-page-text h1 {
    font-size: 48px;
  }
  .hz-wrap-header .head-page {
    padding-left: 24px;
    padding-right: 24px;
  }
  .scroll-down-icon {
    left: 12px;
  }
  .contact-info h3,
  .single-project-info h3 {
    font-size: 24px;
  }
  .link-project-arrow span {
    font-size: 24px;
  }
}
@media (max-width: 449.9px) {
  .h1,
  h1 {
    font-size: 60px;
  }
  .wrap-head-txt {
    width: 300px;
  }
  .crp-about .mission-block h2 {
    font-size: 32px;
  }
  .services-list div h2 {
    font-size: 24px;
  }
  .p-about-info h1 {
    font-size: 48px;
    letter-spacing: 0;
    line-height: 1;
  }
  .plx-tagline h3 {
    font-size: 24px;
  }
  .p-about-info {
    margin-top: 48px;
  }
  .swiper.swiper-cards .swiper-slide img {
    display: none;
  }
  .scroll-down-icon {
    display: none;
  }
  .ftr-email,
  .contacts-info,
  .footer-menu {
    margin-bottom: 24px;
  }
  .footer .social-link {
    margin-top: 24px;
  }
}
@media (max-height: 992px) {
  .htl-plx-tagline h3 {
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
  }
}
@media (max-height: 768px) {
  body .header-full .data-img {
    width: 300px;
    height: 300px;
  }
  .hz-crp-about .circle-button .button-pos {
    text-align: center;
    color: #0c0c0c;
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    border: 1px solid currentColor;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 0 24px;
    font-size: 18px;
    transition-duration: 0.3s;
    font-weight: 400;
  }
  .tagline-marquee-scroll div {
    min-width: 400px;
    font-size: 72px;
    line-height: 60px;
  }
  .htl-plx-tagline h3 {
    font-size: 36px;
  }
  .ftr-email {
    margin: 0px 0 12px 0;
  }
  .hrz-scroll footer .container {
    padding-top: 0;
  }
  .plx-tagline h3 {
    font-size: 36px;
    line-height: 1;
  }
}
@media (max-height: 480px) {
  body .header-full .data-img {
    width: 200px;
    height: 200px;
  }
  .header-full h1 {
    font-size: 72px;
  }
  .hz-crp-about h2 {
    font-size: 24px;
  }
  .hz-crp-about .dsc-block .button {
    margin-top: 24px;
  }
  .hz-crp-about .dsc-block p {
    margin-top: 12px;
  }
  .hz-crp-about .dsc-block .s-title {
    margin-bottom: 24px;
  }
  .hrz-img-box {
    width: 500px;
  }
  .htl-plx-tagline h3 {
    font-size: 24px;
  }
  .hrz-scroll footer {
    width: 800px;
  }
  .ftr-email {
    font-size: 60px;
    line-height: 60px;
  }
  .plx-tagline h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .head-page-text h1 {
    font-size: 48px;
  }
  .scroll-down-icon {
    display: none;
  }
}
@media (max-height: 340px) {
  body .header-full .data-img {
    width: 200px;
    height: 200px;
  }
  .header-full h1 {
    font-size: 48px;
  }
  .header-full .data-img p {
    font-size: 12px;
    line-height: 12px;
  }
  .hz-wrap-header .button {
    margin-top: 24px;
  }
}
