/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", sans-serif;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.container {
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;

  height: 100px;
}

#header .container {
  width: 92%;
  max-width: 92%;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 100px;
  justify-content: center;
  padding: 0;
  position: relative;
}

#header .logo {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 53px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 14%;
}

#header .logo img {
        height: 53px;
    width: auto;
}

.Hrtxt {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 36px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}
.Hrtxt h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 24px;
  font-weight: 500;
  color: #000;
}

.nav_wrapper {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
  height: 36px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  /* width: min-content; */
}

/* .nav_wrapper a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000;
} */

.nav_wrapper a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000;
  position: relative;
  padding: 0 0 5px;
  text-decoration: none;
}

.nav_wrapper a:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav_wrapper a:hover:after {
  transform: scaleX(1);
}

.nav_wrapper a:hover:after {
  transform-origin: left;
}

.Hrlink {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 36px;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 24%;
}

/* .Hrlink a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000;
} */

/* .Hrlink a:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scaleX(0); 
  transform-origin: right; 
  transition: transform 0.4s ease; 
}

.Hrlink a:hover:after {
  transform: scaleX(1); 
}

.Hrlink a:hover:after {
  transform-origin: left; 
} */

.Hrlink a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000;
  position: relative;
  padding: 0 0 5px;
  text-decoration: none;
}

/* Hover-in line */
.Hrlink a:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scaleX(0); /* Initially hidden */
  transform-origin: left; /* Animation starts from the left */
  transition: transform 0.6s ease, opacity 0.6s ease; /* Slower transition */
  opacity: 0; /* Initially hidden */
}

/* Hover-out line */
.Hrlink a:before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scaleX(0); /* Initially hidden */
  transform-origin: right; /* Animation starts from the right */
  transition: transform 0.6s ease, opacity 0.6s ease; /* Slower transition */
  opacity: 0; /* Initially hidden */
}

/* Show the line when hovered */
.Hrlink a:hover:after {
  transform: scaleX(1); /* Expands to the right on hover */
  opacity: 1; /* Show line on hover */
}

/* Hide the line when not hovering */
.Hrlink a:not(:hover):after {
  transform: scaleX(0); /* Retracts back to the left when not hovering */
  opacity: 0; /* Hide line */
}

/* Show the retracting effect when hover ends */
.Hrlink a:not(:hover):before {
  transform: scaleX(1); /* Expands from the right to the left */
  opacity: 1; /* Show line on hover out */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
}

#hero .container {
  width: 92%;
  max-width: 92%;
  position: relative;
  padding: 0;
}

.hero_title {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 0 30px;
  position: relative;
  width: 100%;
}

/* .hero_title h1 {
  margin: 0;
  font-size: 123px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 110px;
  color: #000;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
} */

.hero_title {
  perspective: 1200px; /* Add perspective for 3D effect */
}

.hero_title h1 {
  margin: 0;
  font-size: 123px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 110px;
  color: #000;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;

  /* Animation properties */
  opacity: 0; /* Initially hidden */
  transform: translateY(100px); /* Start below the final position */
  animation: slide-up 0.7s forwards; /* Apply animation */
  animation-delay: 0.3s;
}

/* Define the keyframes for the slide-up animation */
@keyframes slide-up {
  to {
    opacity: 1; /* Final opacity */
    transform: translateY(0); /* Final position */
  }
}

/* Add staggered animation for the second h1 element */
.hero_title h1:nth-child(2) {
  animation-delay: 0.5s; /* Start animation after the first h1 */
}

.paragraph_intro {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 0 40px;
  position: relative;
  width: 100%;
}

.paragraph_intro h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 47px;
  color: #000000;
  position: relative;
  width: 675px;
  word-break: break-word;
  word-wrap: break-word;
}

.hero_button {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 0 180px;
  position: relative;
  width: 100%;
}
.hero_button a {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  padding: 0 35px;
  position: relative;
  text-decoration: none;
  width: min-content;
  will-change: transform;
  border: 1px solid rgb(34, 34, 34);
  border-radius: 70px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
}

.hero_button a h3 {
  background-color: rgb(0, 0, 0);
  align-content: center;
  align-items: center;
  bottom: -69px; /* Starting position */
  display: flex;
  flex-direction: row;
  height: 62px;
  justify-content: center;
  position: absolute;
  left: -4px;
  right: -4px;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  border-radius: 50px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  transform-origin: 50% 50%;
  transition: bottom 0.4s ease; /* Smooth transition */
}

.hero_button a:hover h3 {
  bottom: -11px; /* New position on hover */
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

#about .container {
  width: 92%;
  max-width: 92%;
  position: relative;
}

.aboutHr {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 26px;

  justify-content: center;
  overflow: visible;
  padding: 0 0 20px;
  position: relative;
  width: 100%;
}

.aboutHr_lft {
  align-content: center;
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;

  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}

.aboutHr_rgt {
  align-content: center;
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;

  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}

.aboutHr_lft h3,
.aboutHr_rgt h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;

  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000000;
}

.project_wrapper {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}

.project_img {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 85vh;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  will-change: transform;
  border-radius: 12px;
}
.project_img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center;
  object-fit: cover;
  image-rendering: auto;
  transition: transform 0.5s ease; /* Smooth transition for the zoom effect */
}

.project_info {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  padding: 11px 0 0;
  position: relative;
  width: 100%;
}

.project_name {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 68px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 27%;
}
.project_name h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000000;
}

.project_description {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 68px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 25%;
}
.project_description h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000000;
}
.blank_spacer {
  flex: none;
  height: 68px;
  overflow: hidden;
  position: relative;
  width: 20%;
}

.project_year {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 68px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}
.project_year h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000000;
}

.project_wrapper:hover .project_img img {
  transform: scale(1.1); /* Zoom in on hover (increase scale for more zoom) */
}

.viewBtn {
  background-color: #fff;
  border-radius: 100%;
  width: 0px; /* Initially hidden width */
  height: 0px; /* Initially hidden height */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0); /* Initially scaled down */
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; /* Initially hidden */
  transition: width 0.5s ease, height 0.5s ease, transform 0.5s ease,
    opacity 0.5s ease; /* Transition for scaling, opacity, and size */
}

.project_wrapper:hover .viewBtn {
  width: 150px; /* Expands width on hover */
  height: 150px; /* Expands height on hover */
  transform: translate(-50%, -50%) scale(1.2); /* Scales up to normal size */
  opacity: 1; /* Show the button */
}

.viewBtn h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000000;
  text-align: center;

  transition: none; /* No transition effect on h3 */
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

#proposition .container {
  width: 92%;
  max-width: 92%;
  position: relative;
}

.proposition_box {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 220px 0;
  position: relative;
  width: 100%;
}

.proposition_number {
  align-content: flex-end;
  align-items: flex-end;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 31px;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: 27%;
}

.proposition_number h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000000;
}

.proposition_content {
  align-content: flex-start;
  align-items: flex-start;
  /* display: flex; */
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: 1px;
}
.proposition_content h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 47px;
  color: #000000;
  margin: 0 0 40px;
}

.proposition_content_inner {
  flex: none;
  height: auto;
  position: relative;
  width: 100%;
  word-break: break-word;
  word-wrap: break-word;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  transform: none;
}

.proposition_spacer {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 31px;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: 16%;
}

.about.pb-5 {
  padding-bottom: 70px !important;
}

.proposition_content_inner a {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  padding: 0 35px;
  position: relative;
  text-decoration: none;
  width: 325px;
  will-change: transform;
  border: 1px solid rgb(34, 34, 34);
  border-radius: 70px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
}

.proposition_content_inner a h3 {
  background-color: rgb(0, 0, 0);
  align-content: center;
  align-items: center;
  bottom: -69px;
  display: flex;
  flex-direction: row;
  height: 62px;
  justify-content: center;
  position: absolute;
  left: -4px;
  right: -4px;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  border-radius: 50px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  transform-origin: 50% 50%;
  transition: bottom 0.4s ease; /* Smooth transition */
}

.proposition_content_inner a:hover h3 {
  bottom: -11px; /* New position on hover */
}

/*-------------------------------------------------------------- 
# Footer 
--------------------------------------------------------------*/

#footer {
  width: 100%;
}

#footer .container {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: 308px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 92%;
  max-width: 92%;
}
.Bigtext {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  padding: 0 0 30px;
  position: relative;
  width: 100%;
}
.Bigtext h1 {
  margin: 0;
  font-size: 123px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 110px;
  color: #000;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.footer_bottom {
  align-content: center;
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 1px;
  justify-content: center;
  padding: 0 0 70px;
  position: relative;
  width: 100%;
}

.footer_links {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}

.footer_links a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000;
  position: relative;
  padding: 0 0 5px;
  text-decoration: none;
}

.footer_links a:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scaleX(0); /* Initially hidden */
  transform-origin: right; /* Animation starts from the left */
  transition: transform 0.4s ease; /* Smooth transition */
}

.footer_links a:hover:after {
  transform: scaleX(1); /* Expands to the right on hover */
}

.footer_links a:hover:after {
  transform-origin: left; /* Line retracts to the right when hover ends */
}

.back_top {
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 25px;
  justify-content: start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}
.back_top a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000000;
}
.Copyright {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 25px;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}
.Copyright h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;

  line-height: 24px;
  color: #000000;
}

.paragraphs_wrapper {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 80px;
  height: min-content;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: 90%;
  padding: 80px 0 0;
}

.paragraphs_wrapper_one,
.paragraphs_wrapper_two {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.paragraph_number {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: 81px;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 114px;
}

.paragraph_txt {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 25px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}
.paragraph_number {
}
.paragraph_number h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;

  color: #000000;
  text-decoration: none;
  text-transform: none;
}

.paragraph_txt h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  margin: 0;

  color: #000000;
  text-decoration: none;
  text-transform: none;
}

.paragraph_txt p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.5em;
  margin: 0;
  color: #868788;
}

.aboutHr_lft h4 {
  font-family: "Inter", sans-serif;
  font-size: 123px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 130px;

  text-transform: uppercase;
}

.aboutHr_rgt a {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  padding: 0 35px;
  position: relative;
  text-decoration: none;
  width: 280px;
  will-change: transform;
  border: 1px solid rgb(34, 34, 34);
  border-radius: 70px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
}

.aboutHr_rgt a h3 {
  background-color: rgb(0, 0, 0);
  align-content: center;
  align-items: center;
  bottom: -69px;
  display: flex;
  flex-direction: row;
  height: 62px;
  justify-content: center;
  position: absolute;
  left: -4px;
  right: -4px;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  border-radius: 50px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  transform-origin: 50% 50%;
  transition: bottom 0.4s ease; /* Smooth transition */
}

.aboutHr_rgt a:hover h3 {
  bottom: -11px; /* New position on hover */
}

.servicesBox {
  border-top: 1px solid #d6d6d6;
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.servicesBox:last-child {
  border-bottom: 1px solid #d6d6d6;
}

.servicesBox_number {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 65px 0 0;
  position: relative;
  width: 17%;
}

.servicesBox_number h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;

  color: #000000;
}
.servicesBox_title {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 60px 0 0;
  position: relative;
  width: 40%;
}
.servicesBox_title h4 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 47px;
  color: #000000;
}
.servicesBox_txt {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 65px 0;
  position: relative;
  width: 1px;
}
.servicesBox_txt p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.5em;
  color: #868788;
}
.servicesBox_spacer {
  flex: none;
  height: 51px;
  overflow: hidden;
  position: relative;
  width: 7%;
}
.hero_spacer {
  padding: 0 0 100px;
}

.project_hero_title {
  place-content: flex-start center;
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row;
  gap: 10px;
  height: min-content;
  overflow: hidden;
  padding: 0px 0px 310px;
  position: relative;
  width: 100%;
}

.project_hero_title_lft {
  place-content: center flex-start;
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-flow: row;
  gap: 70px;
  height: min-content;
  overflow: hidden;
  padding: 0px;
  position: relative;
  width: 1px;
}

.project_hero_title_rgt {
  place-content: center flex-end;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row;
  gap: 10px;
  height: min-content;
  overflow: hidden;
  padding: 0px;
  position: relative;
  width: min-content;
}

.project_hero_title_lft h1 {
  margin: 0;
  font-size: 123px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 110px;
  color: #000;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;

  /* Animation properties */
  opacity: 0; /* Initially hidden */
  transform: translateY(100px); /* Start below the final position */
  animation: slide-up 0.7s forwards; /* Apply animation */
  animation-delay: 0.3s;
}

/* Define the keyframes for the slide-up animation */
@keyframes slide-up {
  to {
    opacity: 1; /* Final opacity */
    transform: translateY(0); /* Final position */
  }
}

/* Add staggered animation for the second h1 element */
.project_hero_title_lft h1:nth-child(2) {
  animation-delay: 0.5s; /* Start animation after the first h1 */
}

.project_hero_title_rgt h1 {
  margin: 0;
  font-size: 123px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 110px;
  color: #000;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;

  /* Animation properties */
  opacity: 0; /* Initially hidden */
  transform: translateY(100px); /* Start below the final position */
  animation: slide-up 0.7s forwards; /* Apply animation */
  animation-delay: 0.3s;
}

/* Define the keyframes for the slide-up animation */
@keyframes slide-up {
  to {
    opacity: 1; /* Final opacity */
    transform: translateY(0); /* Final position */
  }
}

/* Add staggered animation for the second h1 element */
.project_hero_title_rgt h1:nth-child(2) {
  animation-delay: 0.5s; /* Start animation after the first h1 */
}

.aboutHr_lft h5 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 47px;
  color: #000000;
}

.project-link a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;
  color: #000;
  position: relative;
  padding: 0 0 5px;
  text-decoration: none;
  border: none;
  border-radius: 0;
  padding: 0 0 15px;
  width: 245px;
  height: auto;
}

/* Hover-in line */
.project-link a:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scaleX(0); /* Initially hidden */
  transform-origin: left; /* Animation starts from the left */
  transition: transform 0.6s ease, opacity 0.6s ease; /* Slower transition */
  opacity: 0; /* Initially hidden */
}

/* Hover-out line */
.project-link a:before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #000;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: scaleX(0); /* Initially hidden */
  transform-origin: right; /* Animation starts from the right */
  transition: transform 0.6s ease, opacity 0.6s ease; /* Slower transition */
  opacity: 0; /* Initially hidden */
}

/* Show the line when hovered */
.project-link a:hover:after {
  transform: scaleX(1); /* Expands to the right on hover */
  opacity: 1; /* Show line on hover */
}

/* Hide the line when not hovering */
.project-link a:not(:hover):after {
  transform: scaleX(0); /* Retracts back to the left when not hovering */
  opacity: 0; /* Hide line */
}

/* Show the retracting effect when hover ends */
.project-link a:not(:hover):before {
  transform: scaleX(1); /* Expands from the right to the left */
  opacity: 1; /* Show line on hover out */
}

.project-link {
  margin-bottom: 70px;
}

.project-detalis-info {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  height: min-content;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 85%;
}

.project-detalis-info_box {
  border-top: 1px solid #d6d6d6;
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  overflow: hidden;
  padding: 35px 0;
  position: relative;
  width: 100%;
}

.project-detalis-info_box:last-child {
  border-bottom: 1px solid #d6d6d6;
}

.project-detalis-info_lft {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1px;
}

.project-detalis-info_lft h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;

  color: #000000;
}

.project-detalis-info_rgt {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: auto;
}

.project-detalis-info_rgt h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 24px;

  color: #000000;
}

.project_detalis_spacer {
  padding: 0 0 290px;
  width: 100%;
  height: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .aboutHr_lft h4 {
    font-size: 71px;
    line-height: 0.9em;
  }

  .servicesBox {
    height: 290px;
  }
  .servicesBox_number {
    width: 12%;
  }
  .servicesBox_title {
    width: 35%;
  }
  .servicesBox_title h4 {
    font-size: 31px;
    line-height: 39px;
  }
  .proposition_number {
           width: 10%;
  }
    .blank_spacer {    width: 0;}
    .project_year {    justify-content: end;}
    .project_description {    width: 42%;}
  .proposition_spacer {
    width: 2%;
  }
  .proposition_content h2 {
    font-size: 31px;
    line-height: 39px;
  }
  .hero_button {
    padding: 0px 0px 70px;
  }
  .hero_title h1 {
    font-size: 71px;
    line-height: 0.9em;
  }
  .Hrtxt {
    display: none;
  }
  #header .container {
    justify-content: start;
  }
  #header .logo {
    width: min-content;
  }
  .nav_wrapper {
    padding: 0px 0px 0px 40px;
            width: 66%;
  }
  .Hrlink {
    width: min-content;
  }
    
    .proposition_box {    padding: 50px 0;}
    .Bigtext h1 {
            font-size: 81px;
            line-height: 82px;
    }

  .project_img {
    flex-direction: column;
    height: 70vh;
  }
  .hero_spacer {
    padding: 0 0 50px;
  }
  .project_hero_title {
    padding: 0px 0px 100px;
  }
  .project_hero_title_lft h1,
  .project_hero_title_rgt h1 {
    font-size: 71px;
    line-height: 0.9em;
    letter-spacing: -4px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .Hrtxt {
    display: none;
  }
  #header .container {
    justify-content: start;
  }
  #header .logo {
    width: min-content;
  }
  .nav_wrapper {
    padding: 0px 0px 0px 40px;
                    width: 51%;
  }
    .paragraph_intro {    padding: 0 0 20px;}
  .Hrlink {
    width: min-content;
  }
  .hero_title h1 {
            font-size: 39px;
        line-height: 1.2em;
        letter-spacing: 0;
  }
    .hero_title {    padding: 0 0 20px;} 
    
    .paragraphs_wrapper  {     padding: 30px 0 0;   gap: 30px;}
    .servicesBox_spacer { display:none;}
    .servicesBox_title h4 br { display:none;}
  .paragraph_intro h2 {
    font-size: 22px;
    line-height: 25px;
    letter-spacing: -0.8px;
  }
  .hero_button {
    padding: 0 0 30px;
  }
  .proposition_box {
    flex-direction: column;
           padding: 30px 0 0;
  }
  .proposition_content {
    width: 100%;
  }
    .proposition_content h2 {margin: 0 0 20px;}
  .paragraph_number {
    display: none;
  }
    .Bigtext h1 {
                  line-height: 70px;
        font-size: 58px;
        letter-spacing: 0;
    }
#footer .container {
        height: 227px;
    }
    footer_bottom {padding: 0 0 40px;}

  .project_img {
    flex-direction: column;
           height: auto;
  }
    .project_year {    justify-content: end;}
    .blank_spacer {    width: 0;}
    .project_description {width: 50%;}
  .aboutHr.aboutHr2 {
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0px 0px 35px;
  }
  .aboutHr.aboutHr2 .aboutHr_lft {
    align-items: flex-start;
    flex: 0 0 auto;
    flex-direction: column;
    height: min-content;
    padding: 0px 0px 0px;
    width: 100%;
  }
  .aboutHr_lft h4 {
    font-size: 71px;
    line-height: 0.9em;
  }
  .aboutHr_rgt {
    flex: 0 0 auto;
    justify-content: flex-start;
    width: 100%;
  }
  .servicesBox {
    flex-direction: column;
  }
  .servicesBox_number {
    display: none;
  }

  .servicesBox_title {
    padding: 30px 0px 0px;
    width: 100%;
  }
  .servicesBox_txt {
    flex: 0 0 auto;
    padding: 0px 0px 30px;
    width: 100%;
  }
    .about.pb-5 {
    padding-bottom: 20px !important;
}
  .servicesBox_title h4 {
    font-size: 31px;
    line-height: 39px;
  }
  .hero_spacer {
    padding:0px 0px 20px;
  }
    
    .project-detalis-info {width: 100%;}
    .project-detalis-info_box {    padding: 15px 0;}
    .project_detalis_spacer {
    padding: 0 0 50px;
    width: 100%;
    height: 5px;
}

  .project_hero_title {
    display: block;
    padding: 0px 0px 70px;
  }
  .project_hero_title_lft {
    width: min-content;
  }
  .project_hero_title_lft h1,
  .project_hero_title_rgt h1 {
    font-size: 39px;
    line-height: 0.9em;
    letter-spacing: -1.8px;
    margin-bottom: 10px;
  }

  .aboutHr.proaboutHr {
    display: block;
    padding: 0px 0px 50px;
  }
  .aboutHr.proaboutHr .aboutHr_lft {
    width: 100%;
    padding: 0px 0px 28px;
  }
  .aboutHr.proaboutHr .aboutHr_rgt {
    width: 100%;
    justify-content: start;
  }
  .aboutHr.proaboutHr .aboutHr_lft h5 {
    font-size: 22px;
    letter-spacing: -0.8px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  #header .container {
    height: 65px;
    justify-content: space-between;
  }
  .Hrlink {
    display: none;
  }
  .Hrtxt {
    display: none;
  }
  .hero_title h1 {
        font-size: 41px;
        line-height: 45px;
          letter-spacing: 0;
  }
    .hero_title {    padding: 0 0 10px;}
  .paragraph_intro h2 {
    font-size: 22px;
    line-height: 24px;
  }
  .paragraph_intro {
    padding: 0 0 20px;
  }
  .hero_button {
           padding: 0 0 50px;
  }
  /* #hero {
    min-height: 400px;
  } */

  .hero_spacer {
    padding: 0 0 0px;
  }
  .project_img {
           height: auto;
  }
  .project_description {
    display: none;
  }
  .blank_spacer {
    display: none;
  }
  .project_info {
    justify-content: space-between;
  }
  .project_year {
    justify-content: flex-end;
  }
  .proposition_box {
    flex-direction: column;
 padding: 0 0;
  }
  .proposition_content {
    width: 100%;
  }
    .proposition_content h2 {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -1.3px;
    line-height: 37px;
    color: #000000;
    margin: 0 0 20px;
}
  .about.pb-5 {
    padding-bottom: 0px !important;
  }
    .project_name {    width: 70%;}
  #footer .container {
    justify-content: center;
          height: auto;
  }
  .Bigtext h1 {
            font-size: 33px;
        line-height: 1.2em;
    letter-spacing: -1.8px;
    text-align: center;
  }
  .Bigtext {
    justify-content: center;
    padding: 0;
  }
  .footer_bottom {
    flex-direction: column;
          padding: 40px 0 70px;
  }
  .footer_links {
    flex: none;
    justify-content: center;
    width: 100%;
  }
  .back_top {
    flex: none;
    justify-content: center;
    width: 100%;
  }
  .Copyright {
    flex: none;
    justify-content: center;
    width: 100%;
  }
  .paragraph_number {
    display: none;
  }

  .aboutHr.aboutHr2 {
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0px 0px 0px;
  }
  .aboutHr.aboutHr2 .aboutHr_lft {
    align-items: flex-start;
    flex: 0 0 auto;
    flex-direction: column;
    height: min-content;
    padding: 0px 0px 0px;
    width: 100%;
  }
    .project_detalis_spacer {
    padding: 0;
    width: 100%;
    height: 5px;
}
  .aboutHr_lft h4 {
           font-size: 38px;
    line-height: 0.9em;
  }
  /* .aboutHr_rgt {
    flex: 0 0 auto;
    justify-content: flex-start;
    width: 100%;
  } */
  .servicesBox {
    flex-direction: column;
          gap: 0;
  }
  .servicesBox_number {
    display: none;
  }

  .servicesBox_title {
           padding: 20px 0px 0;
    width: 100%;
  }
    .servicesBox_spacer { display: none;}
  .servicesBox_txt {
    flex: 0 0 auto;
    padding: 0px 0px 0px;
    width: 100%;
  }
    #header .logo img {
    height: 48px;
    width: auto;
}
    .project_wrapper {margin-bottom: 20px;}
  .servicesBox_title h4 {
    font-size: 31px;
    line-height: 39px;
  }
    .servicesBox_title h4 br {        display: none;}
  .project_hero_title {
    display: block;
    padding: 0px 0px 10px;
  }
  .project_hero_title_lft {
        width: 100%;
  }
  .project_hero_title_lft h1,
  .project_hero_title_rgt h1 {
    font-size: 39px;
    line-height: 0.9em;
    letter-spacing: -1.8px;
    margin-bottom: 10px;
  }

    .project-detalis-info {    width: 100%;}
    .project-link {
    margin-bottom: 30px;
}
    
    .project-detalis-info_rgt {    width: 100%;     justify-content: start;}
    .project-detalis-info_lft{    width: 100%;     justify-content: start;}
    .project-detalis-info_box {    display: block;    padding: 15px 0;}
    
    .paragraphs_wrapper {    width: 100%;
    padding: 20px 0 0; gap: 30px;}
    
    #Services .container {    width: 92%;
    max-width: 92%;
    position: relative;}
    
    
    
    
    .project-detalis-info_rgt h3 {    margin-bottom: 0;}

  .aboutHr.proaboutHr {
    display: block;
    padding:0px 0px 20px;
  }
  .aboutHr.proaboutHr .aboutHr_lft {
    width: 100%;
    padding: 0px 0px 10px;
  }
  .aboutHr.proaboutHr .aboutHr_rgt {
    width: 100%;
    justify-content: start;
  }
  .aboutHr.proaboutHr .aboutHr_lft h5 {
    font-size: 22px;
    letter-spacing: -0.8px;
    line-height: 25px;
  }
  .nav_wrapper a {
    font-size: 15px;
  }
}
