* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: TTHovesM;
  color: #181818;
}

html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.c-scrollbar {
  z-index: 99;
}

#main {
  width: 100%;
}

@font-face {
  font-family: TTHovesD;
  src: url(../fonts/TTHovesDemiBold.otf);
}
@font-face {
  font-family: TTHovesM;
  src: url(../fonts/TTHovesMedium.otf);
}
@font-face {
  font-family: TTHovesR;
  src: url(../fonts/TTHovesRegular.otf);
}
.fontLarge {
  font-size: 9vw;
  font-family: TTHovesR;
  letter-spacing: -0.4vw;
  line-height: 100%;
}

.fontMedium {
  font-size: 5vw;
  font-family: TTHovesR;
  line-height: 95%;
  letter-spacing: -0.15vw;
}

.fontSmall {
  font-size: 3vw;
  font-family: TTHovesR;
  line-height: 95%;
  letter-spacing: -0.09vw;
}

.font16 {
  font-size: 16px;
  letter-spacing: -0.3px;
}

/* Reveal text */
.reveal {
  overflow: hidden;
}
.reveal h1 {
  transform: translateY(9vw);
}

/* Breakpoitns */
@media (max-width: 768px) {
  .fontLarge {
    font-size: 15vw;
  }
  .fontMedium {
    font-size: 7vw;
  }
  .fontSmall {
    font-size: 5vw;
  }
  .reveal h1 {
    transform: translateY(15vw);
  }
}
@media (max-width: 560px) {
  .fontLarge {
    font-size: 20vw;
    letter-spacing: -1vw;
  }
  .fontMedium {
    font-size: 12vw;
  }
  .fontSmall {
    font-size: 8vw;
  }
  .reveal h1 {
    transform: translateY(20vw);
  }
}
a {
  text-decoration: none;
  color: #181818;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

nav {
  position: absolute;
  width: 100%;
  padding: 35px 35px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
nav .wrapper {
  display: flex;
  gap: 15vw;
}
nav h1 {
  font-size: 36px;
  font-family: TTHovesD;
  letter-spacing: -1.5px;
}
nav a {
  font-size: 24px;
  letter-spacing: -1.5px;
  font-family: TTHovesD;
}
nav .clock {
  font-size: 14px;
  width: 120px;
}

/* Breakpoints */
@media (max-width: 768px) {
  nav {
    padding: 25px 15px;
    flex-direction: column;
    gap: 2vw;
  }
  nav .wrapper {
    gap: 30vw;
  }
  nav h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  nav a {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding-bottom: 5px;
  }
}
footer {
  width: 100%;
  /* Footer Details */
  /* EyeBall Social container */
}
footer #footer_details {
  width: 100%;
  padding: 10vw 0;
}
footer #footer_details .footer_heading {
  width: 100%;
  text-align: right;
}
footer #footer_details .footer_inner .footer_col {
  display: flex;
  gap: 6vw;
  padding: 10vw 0;
}
footer #footer_details .footer_inner .footer_col p {
  width: 25%;
}
footer #footer_details .footer_inner .footer_col h3 {
  width: 75%;
  max-width: 750px;
}
footer #footer_details .footer_inner .footer_col h3 a {
  margin-top: 5vw;
}
footer #footer_details .footer_inner .footer_col2 {
  display: flex;
  gap: 6vw;
}
footer #footer_details .footer_inner .footer_col2 P {
  width: 27%;
}
footer #footer_details .footer_inner .footer_col2 .footer_inner_links {
  width: 75%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer #footer_details .footer_inner .footer_col2 .footer_inner_links a {
  font-size: 20px;
}
footer .Footer_Social {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
footer .Footer_Social .footer_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .Footer_Social .footer_wrapper #svg {
  width: 100%;
  position: absolute;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
footer .Footer_Social .footer_wrapper .footer_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
footer .Footer_Social .footer_wrapper .footer_container > div {
  display: flex;
  gap: 5vw;
}
footer .Footer_Social .footer_wrapper .footer_container > div .footer_text {
  height: 11vw;
  font-size: 11vw;
  letter-spacing: -0.5vw;
  color: #e9e9e9;
  position: relative;
}
footer .Footer_Social .footer_wrapper .footer_container > div .footer_text::before {
  content: "";
  background: #e9e9e9;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0;
  transition: all 0.5s ease-in-out;
}
footer .Footer_Social .footer_wrapper .footer_container > div .footer_text:hover::before {
  width: 100%;
}

/* BreakPoints */
@media (max-width: 768px) {
  footer #footer_details {
    padding: 20vw 0;
  }
  footer #footer_details .footer_inner .footer_col {
    flex-direction: column;
    gap: 10vw;
    padding: 20vw 0;
  }
  footer #footer_details .footer_inner .footer_col p {
    width: 100%;
  }
  footer #footer_details .footer_inner .footer_col h3 {
    width: 100%;
  }
  footer #footer_details .footer_inner .footer_col h3 a {
    margin-top: 10vw;
  }
  footer #footer_details .footer_inner .footer_col2 {
    flex-direction: column-reverse;
    gap: 4vw;
  }
  footer #footer_details .footer_inner .footer_col2 P {
    width: 100%;
  }
  footer #footer_details .footer_inner .footer_col2 .footer_inner_links {
    width: 100%;
  }
  footer #footer_details .footer_inner .footer_col2 .footer_inner_links a {
    font-size: 18px;
  }
  footer .Footer_Social .footer_wrapper .footer_container > div {
    flex-direction: column;
    gap: 10vw;
    align-items: center;
  }
  footer .Footer_Social .footer_wrapper .footer_container > div .footer_text {
    height: 18vw;
    font-size: 18vw;
    letter-spacing: -0.8vw;
    display: block;
  }
}
@media (max-width: 560px) {
  footer #footer_details {
    padding: 20vw 0 10vw 0;
  }
  footer .Footer_Social .footer_wrapper .footer_container > div {
    gap: 15vw;
  }
  footer .Footer_Social .footer_wrapper .footer_container > div .footer_text {
    height: 21vw;
    font-size: 21vw;
  }
}
/* Loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #181818;
  color: #e9e9e9;
  z-index: 99;
}
.loader-container #counter {
  position: absolute;
  right: 5%;
  bottom: 10%;
  font-size: 9vw;
  letter-spacing: -0.2vw;
}
.loader-container .bar {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 3px;
  background: #323232;
  border-radius: 50px;
  overflow: hidden;
}
.loader-container .bar .bar2 {
  width: 0%;
  height: 100%;
  background: #e9e9e9;
  z-index: 2;
}

/* Underline Link */
.underLineLink {
  position: relative;
}
.underLineLink::before {
  content: "";
  background: #181818;
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.underLineLink:hover::before {
  width: 100%;
}

/* Section */
section,
.work,
.work_heading,
footer {
  width: 100%;
  overflow-x: hidden;
  padding: 0 35px;
}

/* Break Points */
@media (max-width: 1440px) {
  .loader-container #counter {
    font-size: 12vw;
  }
}
@media (max-width: 768px) {
  section,
  .work,
  .work_heading,
  footer {
    padding: 0 15px;
  }
  .loader-container #counter {
    font-size: 15vw;
  }
}
@media (max-width: 560px) {
  .loader-container #counter {
    font-size: 20vw;
  }
}
.header {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100vh;
  overflow: hidden;
  /* Marquee */
}
.header .wrapper {
  width: 100%;
  display: flex;
  gap: 6vw;
}
.header .wrapper .text {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6vw;
  margin-top: 6vw;
}
.header .wrapper .text p:nth-child(1) {
  width: 100%;
  max-width: 200px;
}
.header .wrapper .text p:nth-child(2) {
  width: 100%;
  max-width: 400px;
}
.header .wrapper .headerImg {
  width: 60%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.header .marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 10vw;
  overflow-x: hidden;
}
.header .marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 64s linear infinite;
  mix-blend-mode: difference;
  color: #fff;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about {
  width: 100%;
  padding-top: 10vw;
  padding-bottom: 10vw;
}
.about .about_text {
  padding-top: 10vw;
  padding-bottom: 10vw;
  padding-right: 4vw;
  display: flex;
  align-items: flex-end;
  gap: 6vw;
}
.about .about_text P {
  width: 25%;
}
.about .about_text h2 {
  width: 75%;
}
.about .tools {
  display: flex;
  overflow: hidden;
  gap: 6vw;
}
.about .tools .tools_heading {
  width: 23.5%;
}
.about .tools .tools_wrapper {
  width: 75%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.about .tools .tools_wrapper > div p {
  width: 100%;
  max-width: 650px;
  margin-top: 20px;
  color: #5f5f5f;
}

.works .work_heading {
  padding-bottom: 10vw;
  padding-top: 10vw;
}
.works .work_heading .reveal {
  text-align: right;
}
.works .work_heading .txt {
  width: 100%;
  max-width: 600px;
  margin-top: 5vw;
}
.works .work {
  position: relative;
  width: 100vw;
  padding-top: 10vw;
  padding-bottom: 10vw;
  transition: background-color 0.5s ease;
  overflow: hidden;
}
.works .work .overlay {
  position: absolute;
  top: 0%;
  left: 15.25%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  transition: 1s;
  opacity: 0;
}
.works .work .overlay .prev {
  position: relative;
  width: 500px;
  height: auto;
  transform: rotate(10deg);
  transition: transform 0.5s ease;
}
.works .work .overlay .prev.active {
  transform: rotate(12.5deg);
}
.works .work .overlay .prev img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .work .overlay #prev-1 {
  top: -500px;
}
.works .work .overlay #prev-2 {
  top: 0;
}
.works .work .overlay #prev-3 {
  top: 500px;
}
.works .work .overlay #prev-4 {
  top: 1000px;
}
.works .work .work-item {
  position: relative;
  width: 100%;
  padding: 2em 0;
  display: flex;
  align-items: center;
  gap: 2em;
  border-bottom: 1px solid rgba(198, 198, 198, 0.5);
}
.works .work .work-item h2 {
  font-size: 4vw;
}
.works .work .work-item#w-4 {
  border-bottom: none;
}
.works .work .work-item .work-item-name {
  display: flex;
  gap: 20px;
}
.works .work .work-item .work-item-name span {
  font-size: 14px;
}
.works .work .work-item .work-item-icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: #323232;
  color: #e9e9e9;
  overflow: hidden;
  left: -20px;
  opacity: 0;
  transition: 0.2s;
}
.works .work .work-item .work-item-icon .icon-holder {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.works .work .work-item .work-item-icon .icon-holder.i-1 {
  transition-delay: 0.2s;
  left: -70px;
}
.works .work .work-item .work-item-icon .icon-holder.i-2 {
  left: 0px;
}
.works .work .work-item:hover .work-item-icon {
  opacity: 1;
  left: 0px;
}
.works .work .work-item:hover .work-item-icon .i-1 {
  left: 0;
}
.works .work .work-item:hover .work-item-icon .i-2 {
  left: 70px;
}
.works .work:hover .overlay {
  opacity: 0.5;
}
.works .work.hovered .work-item {
  border-bottom: 1px solid #323232;
}
.works .work.hovered .work-item#w-4 {
  border-bottom: none;
}

.bg-color-one {
  background-color: #d5fbe2;
}

.bg-color-two {
  background: #f0e8e6;
}

.bg-color-three {
  background: #fffbd1;
}

.bg-color-four {
  background: #c4dcc5;
}

/* BreakPoints */
@media (max-width: 1068px) {
  .about .about_text {
    padding-top: 5vw;
    padding-bottom: 20vw;
    padding-right: 0;
    align-items: start;
    gap: 5vw;
    flex-direction: column;
  }
  .about .about_text P {
    width: 100%;
  }
  .about .about_text h2 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header {
    height: auto;
    padding-top: 200px;
    /* Marquee */
  }
  .header .wrapper {
    flex-direction: column-reverse;
  }
  .header .wrapper .text {
    gap: 2vw;
  }
  .header .wrapper .headerImg {
    width: 100%;
  }
  .header .marquee {
    height: 17vw;
    bottom: 30vw;
  }
  .works .work .work-item {
    padding: 1em 0;
    gap: 2em;
  }
  .works .work .work-item h2 {
    font-size: 7vw;
    letter-spacing: -0.2vw;
  }
  .works .work .work-item .work-item-icon {
    scale: 0.8;
  }
  .works .work .work-item .work-item-icon .icon-holder {
    scale: 0.8;
  }
}
@media (max-width: 560px) {
  .header {
    /* Marquee */
  }
  .header .wrapper .text {
    gap: 8vw;
  }
  .header .wrapper .headerImg {
    height: 60vh;
  }
  .header .marquee {
    height: 25vw;
    bottom: 20vw;
  }
  .about {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .about .about_text {
    padding-top: 10vw;
    padding-bottom: 30vw;
    gap: 10vw;
  }
  .about .tools {
    flex-direction: column;
    gap: 10vw;
  }
  .about .tools .tools_heading {
    width: 100%;
  }
  .about .tools .tools_wrapper {
    width: 100%;
    gap: 12vw;
  }
  .works .work_heading {
    padding-bottom: 20vw;
    padding-top: 20vw;
  }
  .works .work_heading .txt {
    margin-top: 10vw;
  }
  .works .work {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .works .work .work-item h2 {
    font-size: 10vw;
    letter-spacing: -0.3vw;
  }
}
.approachHeader {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 35px;
}
.approachHeader h2 {
  width: 70%;
}

/* Details */
.approachDetails {
  padding-top: 10vw;
  padding-bottom: 10vw;
  display: flex;
  gap: 5vw;
}
.approachDetails .col {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 300px;
}
.approachDetails .col > div:nth-child(1) p:nth-child(1) {
  opacity: 0.5;
  margin-bottom: 20px;
}
.approachDetails .col > div:nth-child(2) p {
  width: 100%;
  max-width: 500px;
}
.approachDetails .col:nth-child(2) {
  margin-top: 300px;
}

@media (max-width: 768px) {
  .approachHeader {
    padding-bottom: 20px;
  }
  .approachHeader h2 {
    width: 100%;
  }
  .approachDetails {
    padding-top: 20vw;
    padding-bottom: 20vw;
    gap: 10vw;
  }
  .approachDetails .col {
    gap: 200px;
  }
  .approachDetails .col:nth-child(2) {
    margin-top: 200px;
  }
}
@media (max-width: 560px) {
  .approachDetails {
    flex-direction: column;
    gap: 0;
  }
  .approachDetails .col {
    gap: 100px;
  }
  .approachDetails .col:nth-child(2) {
    margin-top: 100px;
  }
}/*# sourceMappingURL=main.css.map */