@import url("https://fonts.cdnfonts.com/css/helvetica-neue-55");
/*@import url("https://fonts.cdnfonts.com/css/sf-pro-display");*/

body::-webkit-scrollbar {
  display: none;
}

/* SF Pro Display Light Italic */
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-display : swap;
  font-style: italic;
}

/* SF Pro Display Medium Italic */
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-display : swap;
  font-style: italic;
}

/* SF Pro Display Black */
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-Black.otf") format("opentype");
  font-weight: 900;
  font-display : swap;
  font-style: normal;
  
}

/* SF Pro Display Bold */
/*@font-face {*/
/*  font-family: "SF Pro Display";*/
  /*src: url("fonts/SF-Pro-Display-Bold.otf") format("opentype");*/
/*  font-weight: 700;*/
/*  font-display : swap;*/
/*  font-style: normal;*/
/*}*/

/* SF Pro Display Bold Italic */
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-display : swap;
  font-style: italic;
}

/* SF Pro Display Heavy */
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-Heavy.otf") format("opentype");
  font-weight: 800;
  font-display : swap;
  font-style: normal;
}

:root {
  --Dark: #3b4b58;
  --Light: #e9e0d2;
  --Black: #000000;
  --LightNum: #d7d7d7;
}


body,
html {
  background-color: #000;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-x pan-y;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SF Pro Display", sans-serif;
}

.loading-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.loading-animation #img {
  height: 50px;
  width: 50px;
}

.full-s-h {
  height: 100vh;
}

.full-s-h-auto {
  height: auto;
}

.hero {
  max-width: 1700px;
  max-width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1700px;
  max-width: 100%;
  height: max-content;
  margin: 0 auto;
}

.content-wrapper {
  padding: 0rem 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 0rem 0.9rem;
    gap: 5rem;
  }

  html,
  body {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto;
  }
}

.full-w {
  width: 100%;
  padding: 0px 0px;
}

.normal-w {
  padding: 2vw;
}

nav {
  font-family: "SF Pro Display", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 90%; */
  /* margin: 0 auto; */
  min-height: 70px;
  position: sticky;
  z-index: 999;
  /* top: 10px; */
  margin-bottom: 10px;
  transition: color 0.3s ease;
  transition: padding 0.3s ease;
  /* margin-bottom: 2rem;
    margin-top: 2rem; */
  background-color: #000;
  /* border: 1px solid green; */
  width: 100vw;
  padding: 0px 2.1rem;
}

nav h1 {
  font-weight: 500;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: #faf9f5;
}

ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav li a {
  text-decoration: none;
  color: #faf9f5;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  /* font-style: italic; */
}

ul li a:hover {
  color: #666;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #faf9f5;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background-color: rgba(34, 0, 0, 0.1);
}

.menu-toggle.active {
  transform: rotate(90deg);
}

.overlay {
  font-family: "SF Pro Display", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #000;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 9991;
  padding: 18px 10px;
  border-radius: 0 0 20px 20px;
  display: none;
}

.overlay.active {
  transform: translateY(0);
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.overlay ul li {
  padding: 0.7vh 0;
  border-bottom: 1px solid #faf9f580;
}

.overlay ul li a {
  color: #faf9f5;
  font-size: 2.5rem;
  text-decoration: none;
  font-weight: 600;
  /* font-style: italic; */
  letter-spacing: -0.08em;
  /* text-transform: uppercase; */
}

.nav-over-header h2 {
  font-weight: 400;
  font-size: 3rem;
  margin-top: 35px;
  transition: padding 0.3s ease;
}

#close-btn {
  font-size: 50px;
  color: #faf9f5;
  cursor: pointer;
  z-index: 10000;
  margin-right: 8px;
  height: fit-content;
  box-sizing: border-box;
  line-height: 1;
}

.overlay .btn {
  margin-top: clamp(1rem, 2vw, 2rem);
  display: inline-block;
  padding: clamp(0.6rem, 0.8vw, 1rem) clamp(1.2rem, 2vw, 1.8rem);
  background-color: #000000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.1rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.3rem;
  border: 1px solid #ffffff;
  box-shadow: 0 3px 0 #ffffff;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 41%;
}

.overlay .btn:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 3px 0 #000000;
  transform: translateY(-2px);
}

.nav-over-header {
  display: flex;
  justify-content: space-between;
  justify-content: space-between;
  color: #faf9f5;
  position: relative;
}

@media (max-width: 1024px) {
  nav {
    max-width: 100%;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  ul {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    margin: 0 auto;
    padding: 0px 0.7rem;
  }

  nav h1 {
    width: fit-content;
  }

  .menu-toggle {
    display: block;
  }

  ul {
    display: none;
  }

  .active li {
    text-transform: lowercase !important;
  }
}

@media (max-width: 480px) {
  nav {
    max-width: 100%;
  }

  #hero-caption {
    font-size: calc(9.8vw + 4vh);
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tagline-layer {
  font-family: "SF Pro Display";
  font-weight: 500;
  line-height: 94%;
  letter-spacing: 0.1em;
  flex: 0 0 auto;
  background-color: #000000;
  color: #3b4b58;
  /* padding-top: 1.5rem; */
  /* padding-bottom: 1.5rem; */
  text-align: center;
}

.highlight {
  color: #e9e0d2;
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 7px;
  text-underline-position: from-font;
  font-weight: 300;
}

.tagline-content {
  max-width: 1400px;
  text-align: left;
  height: 100%;
}

.tagline-content h1 {
  font-size: calc(6vw + 4vh);
  font-weight: 500;
  line-height: 94%;
  letter-spacing: -0.08em;
  word-break: break-word;
}

.mark {
  font-size: calc(6vw + 4vh);
  color: #e9e0d2;
  letter-spacing: -0.08em;
}

.content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  width: 100%;
}

.content-rev {
  display: grid;
  grid-template-columns: 2fr 3fr;
  direction: rtl;
}

.sub-hero-img {
  width: 100%;
  height: 100%;
  object-fit: fit;
}

.desc {
  margin-right: 9px;
  padding-left: 2vw;
  background-color: #000;
  color: #3b4b58;
  display: flex;
  flex-direction: column;
}

.desc-left {
  padding-right: 2vw;
  background-color: #000;
  color: #3b4b58;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.desc-top h1 {
  width: 100%;
}

.title {
  font-size: calc(6vw + 4vh);
  line-height: 94%;
  font-weight: 500;
  letter-spacing: -0.08em;
}

@media (max-width: 768px) {
  .content {
    grid-template-columns: 1fr;
    height: max-content;
  }

  .content-rev {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: calc(9vw + 4vh);
    text-align: left;
  }

  .highlight {
    text-decoration-thickness: 3px;
  }
}

.desc-top {
  height: 65%;
}

.desc-bottom {
  height: 35%;
  border-top: 2px solid #d7d7d7;
}

.desc-bottom-left {
  height: 35%;
  border-top: 2px solid #d7d7d7;
  text-align: left;
}

.desc-bottom h1 {
  font-size: calc(3vw + 2vh);
  line-height: 94%;
  font-weight: 500;
  letter-spacing: -0.09em;
  text-align: right;
  color: #e9e0d2;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.desc-bottom p {
  font-size: calc(1.4vw + 1vh);
  color: #e9e0d2;
  text-align: justify;
  line-height: 86%;
  letter-spacing: -0.06em;
}

@media (max-width: 768px) {
  .tagline-content h1 {
    font-size: calc(10vw + 4vh);
  }

  .mark {
    font-size: calc(9vw + 4vh);
  }

  .tagline-layer {
    /* border: 2px solid green; */
    margin: auto;
    height: fit-content;
  }

  .desc-bottom p {
    font-size: calc(1.5vw + 1.3vh);
    line-height: 96%;
  }
}

/* ABOUT SECTION */
.about-content {
  text-align: right !important;
}

.about-body {
  margin-top: 1.3rem;
  line-height: 2.2rem !important;

}

/* DIV WHICH HAS IMAGE IN RIGHT */
.desc-left {
  text-align: left;
  color: var(--Dark);
}

/* NUMBERS */
.numbers-content {
  display: flex;
  flex-direction: column;
  font-size: calc(3vw + 1.2vh);
  padding-bottom: 0.3em;
  color: var(--Light);
  font-style: italic;
  margin-top: 1em;

}

.numbers-content>div {
  border-bottom: 1px solid var(--Light);
  letter-spacing: -0.08em;
  line-height: 96%;
  padding-bottom: 0.14em;
  padding-top: 0.14em;
}

.numbers-card {
  display: flex;
  flex-direction: row-reverse;
  gap: 0px 0.2em;
}

.numbers-card i,
b {
  font-size: calc(3vw + 2.3vh);
}

.numbers-card b {
  font-style: normal;
}

.num {
  display: flex;
  font-weight: 100;
  flex-direction: row-reverse;
}

.numbers-card p {
  font-weight: 100;
  padding-top: 0.6em;
  letter-spacing: -0.05rem;
  font-size: calc(1vw + 1vh);
}

@media (max-width: 768px) {
  .numbers-card {
    gap: 0px 0.3em;
  }

  .numbers-card .num,
  b {
    font-size: calc(4vw + 2.6vh);
  }

  .about-body {
    margin-top: 1rem;
    line-height: 1.3rem !important;
  }

  .numbers-card p {
    padding-top: 0.3em;
    font-size: calc(1.5vw + 1.6vh);
  }
}

/* 3rd row WHAT DO WE DO */

.services {
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  width: 100%;
  justify-content: space-around;
  font-size: calc(3vw + 1.2vh);
  align-self: flex-end;
  padding-bottom: 0.4em;
  cursor: pointer;
}

.services * {
  color: var(--Light);
  font-style: italic;
  font-weight: 400;
  border-bottom: 1px solid var(--Light);
  letter-spacing: -0.08em;
  line-height: 94%;
  padding-bottom: 0.12em;
  padding-top: 0.12em;
}

@media (max-width: 768px) {
  .services {
    margin-top: 1em;
    width: 100%;
    pointer-events: none;
  }

  .services * {
    text-align: left;
    /* font-size: calc(3.5vw + 2vh); */
    font-size: calc(2vw + 4vh);
    font-weight: 300;
  }

  .numbers-content>div {
    padding-bottom: 0.30em;
    padding-top: 0.30em;
  }
}

/* WHY CHOOSE US */

#why-us {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  font-size: calc(3vw + 1.2vh);
  padding-bottom: 0.3em;
  cursor: pointer;
  pointer-events: none;
}

.why-us-content * {
  color: var(--Light);
  font-style: italic;
  font-weight: 400;
  border-bottom: 1px solid var(--Light);
  letter-spacing: -0.08em;
  line-height: 94%;
  padding-bottom: 0.12em;
  padding-top: 0.12em;
}

@media (max-width: 768px) {
  .why-us-content {
    margin-top: 1em;
  }

  .why-us-content * {
    text-align: left;
    /* font-size: calc(3.5vw + 2vh); */
    font-size: calc(2vw + 4vh);
    font-weight: 300;
  }
}

/*what can we do hover animation */
.service-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  z-index: 999;
}

.service-img {
  width: 50%;
  height: 50%;
  object-fit: cover;
}

footer {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-y: hidden;
  color: var(--Light);
  border-top: 3px solid var(--Light);
  margin-top: 4em;
}

.footer-top {
  display: flex;
  flex-direction: column;
  padding: 4em;
  gap: 3rem;
}

.footer-top-heading {
  display: flex;
  flex-direction: column;
}

.footer-top-heading img {
  width: 31vw;
}

.footer-top-heading b {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-socials {
  display: flex;
  justify-content: space-between;
  width: 50vw;
}

.socials-heading {
  font-size: calc(2vw + 0.9vh);
  letter-spacing: -0.07em;
  border-bottom: 0.5rem solid var(--Light);
}

.socials-list {
  display: flex;
  flex-direction: column;
  font-size: calc(2.5vw + 0.9vh);
  row-gap: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.3rem;
  cursor: pointer;
}

.socials-list li a {
  text-decoration: none;
  color: var(--Light);
}

.footer-bottom-brand {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: center;
  transform: translateY(15%);
}

.footer-bottom-brand img {
  width: 96vw;
}

footer .btn {
  padding: clamp(0.6rem, 0.8vw, 1rem) clamp(1.2rem, 2vw, 1.8rem);
  background-color: #000000;
  color: var(--Light);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: -0.03rem;
  border-radius: 0.3rem;
  border: 1px solid var(--Light);
  box-shadow: 0 3px 0 var(--Light);
  transition: all 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
}

@media (max-width: 768px) {
  .footer-socials {
    flex-direction: column;
    row-gap: 3rem;
  }

  .footer-top {
    padding-top: 2rem;
    padding-left: 1rem;
  }

  .footer-top-heading img {
    width: 80vw;
  }

  .footer-bottom-brand {
    transform: translateY(-20%);
  }

  .footer-bottom-brand img {
    width: 90vw;
  }

  .socials-list {
    letter-spacing: -0.1rem;
    font-size: calc(5vw + 1vh);
    width: max-content;
    font-weight: 700;
  }

  .socials-heading {
    border-bottom: none;
    font-size: calc(4vw + 1vh);
    font-weight: 300;
  }

}

img {
  display: block;
  max-width: 100%;
  height: auto;
}