/* #region Global */
img {
  display: block; /* Remove default inline behavior */
  max-width: 100%; /* Ensure image is responsive */
}
img:not(:only-child) {
  position: relative; /* Relative positioning if img is not the only child */
}
:root {
  --animation-duration: 0.5s;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url(../font/Roboto/Roboto-Regular.ttf);
}
@font-face {
  font-family: "Roboto-Light";
  src: url(../font/Roboto/Roboto-Light.ttf);
}
@font-face {
  font-family: "Roboto-Bold";
  src: url(../font/Roboto/Roboto-Bold.ttf);
}
@font-face {
  font-family: "FuturaBT-Light";
  src: url(../font/FuturaBT/FuturaBT-Light.ttf);
}
@font-face {
  font-family: "FuturaBT-Medium";
  src: url(../font/FuturaBT/FuturaBT-Medium.TTF);
}
@font-face {
  font-family: "FuturaBT-Book";
  src: url(../font/FuturaBT/FuturaBT-Book.ttf);
}
@font-face {
  font-family: "FuturaBT-LightItalic";
  src: url(../font/FuturaBT/FuturaBT-LightItalic.ttf);
}
* {
  font-family: "Roboto-Regular", sans-serif;
}
html,
body {
  margin: 0px !important;
  padding: 0px !important;
  scroll-behavior: smooth;
  font-size: 16px;
}
nav,
div,
li,
ul,
a,
p {
  padding: 0;
  margin: 0;
}
a,
a:hover {
  color: inherit;
  text-decoration: inherit;
}
h1,
h2,
h3,
p {
  text-transform: none;
}
.hidden {
  visibility: hidden;
}
.mobile,
.hide {
  display: none;
}
.sectionContainer .header {
  font-size: 3.75rem;
  font-family: "FuturaBT-Medium";
  color: #000;
  text-transform: uppercase;
  line-height: 0.967;
  text-align: center;
  margin-top: 10vh;
  margin-bottom: 4vh;
}
.sectionContainer .header span {
  display: block;
  font-size: 0.875rem;
  font-family: "FuturaBT-Light";
  color: #000;
  line-height: 1.2;
  text-align: center;
}
.middleLine {
  width: 50vw;
  border-right: #000 2px solid;
  height: 15vh;
  align-self: flex-start;
}
.loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.6);
}
.loading-indicator::before {
  content: "";
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 2s linear infinite;
}
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.loader {
  color: white;
  font-size: 1.5rem;
}
/* #endregion */
/* #region Header */
.pageHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.headerContainer {
  background-color: #242424;
  color: #fff;
  display: flex;
  align-items: center;
  height: 80px;
}
.pageHeader .TextlogoCont a {
  position: absolute;
  background-color: #000;
  top: 0;
  left: 50%;
  transform: translateX(-45%);
  padding: 20px;
}
.pageHeader .TextlogoCont img {
  height: 90px;
}
.pageHeader .navHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.pageHeader .navbar {
  padding: 0;
  margin: 0;
  width: 33vw;
}
.pageHeader .navbar.left {
  display: flex;
  flex-direction: row-reverse;
  padding-right: 10vw;
  padding-left: 4vw;
}
.pageHeader .left .navLinks {
  display: flex;
  flex-direction: row-reverse;
}
.pageHeader .navbar.right {
  padding-left: 10vw;
  padding-right: 4vw;
}
.pageHeader .navLinks {
  display: flex;
  list-style: none;
  width: 100%;
  gap: 4vw;
  text-wrap: nowrap;
}
.pageHeader .navLinks a {
  font-size: 1.125rem;
  color: #bbb;
  text-decoration: none;
  line-height: 0.425;
  text-align: center;
}
/* #endregion */
/* #region Fixed */
.landingContainer {
  background-color: #000;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease-out;
  top: 0;
}
.landingContainer .bg {
  background-image: url("../image/landing-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landingContainer #landingLogo {
  height: 60%;
  width: auto;
}
.landingContainer.hide {
  opacity: 0;
}
.pageFix .arrow {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 999;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1px;
  border-radius: 50%;
}
.pageFix .triangleContainer {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(-90deg);
}
.pageFix .triangleContainer svg {
  width: 25%;
  margin-left: 9%;
}
/* #endregion */
/* #region Home */
/* #region BannerSection */
.bannerSection .sectionContainer {
  background-image: url("../image/banner-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 108.3vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.bannerSection .navHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  height: 10%;
}
.bannerSection .navbar {
  padding: 0;
  margin: 0;
  width: 43.5vw;
  margin: 0 4vw;
}
.bannerSection .navbar.left {
  display: flex;
  flex-direction: row-reverse;
}
.bannerSection .left .navLinks {
  display: flex;
  flex-direction: row-reverse;
}
.bannerSection .navLinks {
  display: flex;
  list-style: none;
  width: 100%;
  gap: 4vw;
  text-wrap: nowrap;
}
.bannerSection .navLinks a {
  font-size: 1.125rem;
  color: #bbb;
  text-decoration: none;
  line-height: 0.425;
  text-align: center;
}
.bannerSection .TextlogoCont {
  display: flex;
  align-items: flex-end;
  padding-top: 1%;
  width: 13vw;
}
.bannerSection .TextlogoCont a,
.bannerSection .TextlogoCont img {
  width: 100%;
}
.bannerSection .logoCont {
  margin-top: 8vh;
  height: 22vh;
}
.bannerSection .logoCont img {
  height: 100%;
  width: auto;
}
.bannerSection .slogan {
  margin-top: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 10px;
}
.bannerSection .slogan p {
  position: relative;
  font-size: 3.75rem;
  font-family: "FuturaBT-Light";
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  text-shadow: 2px 0 0px #000, 3px 2px 0px rgba(0, 0, 0, 0.5), 3px 0 3px #000, 5px 0 3px #000, 6px 2px 3px rgba(0, 0, 0, 0.5), 6px 0 9px #000, 8px 0 9px #000,
    9px 2px 9px rgba(0, 0, 0, 0.5), 9px 0 18px #000, 11px 0 18px #000, 12px 2px 18px rgba(0, 0, 0, 0.5), 12px 0 30px #000, 14px 0 30px #000, 15px 2px 30px rgba(0, 0, 0, 0.5),
    15px 0 45px #000, 17px 0 45px #000, 17px 2px 45px rgba(0, 0, 0, 0.5);
  text-shadow: 2px 0 0px #000, 3px 2px 0px rgba(0, 0, 0, 0.5), 3px 0 3px #000, 5px 0 3px #000, 6px 2px 3px rgba(0, 0, 0, 0.5), 6px 0 9px #000, 8px 0 9px #000,
    9px 2px 9px rgba(0, 0, 0, 0.5), 9px 0 18px #000, 11px 0 18px #000, 12px 2px 18px rgba(0, 0, 0, 0.5), 12px 0 30px #000, 14px 0 30px #000, 15px 2px 30px rgba(0, 0, 0, 0.5),
    15px 0 45px #000, 17px 0 45px #000, 17px 2px 45px rgba(0, 0, 0, 0.5);
}
.bannerSection .middleText {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bannerSection .middleText p {
  position: relative;
  white-space: nowrap;
}
.bannerSection .bottomText {
  text-align: center;
  width: 100%;
}
.bannerSection .arrow {
  position: absolute;
  left: 100%;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  cursor: pointer;
  display: none;
}
.bannerSection .arrow .line {
  width: 200px;
  height: 2px;
  background-color: #fff;
}
.bannerSection .triangleContainer {
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerSection .triangleContainer svg {
  width: 25%;
  margin-left: 9%;
}
/* #endregion */
/* #region AboutusSection */
.aboutusSection .sectionContainer {
  background-color: #e7e7e7;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.aboutusSection .gallery {
  position: relative;
  transform: translateY(-33%);
  height: 25vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0% 2%;
  scroll-padding: 50%;
  overflow: hidden;
}
.aboutusSection .header {
  margin-top: 0;
}
.aboutusSection .carouselItem {
  height: 100%;
}
.aboutusSection .carouselItem img {
  width: 100%;
  height: 100%;
}
.aboutusSection .swiper-scrollbar {
  display: none;
}
.aboutusSection p {
  width: 40%;
  font-size: 1.5rem;
  font-family: "FuturaBT-Book";
  color: #000;
  line-height: 1.2;
  text-align: center;
}
.aboutusSection .numbTextCont {
  display: flex;
  justify-content: space-between;
  width: 62%;
  margin-top: 5%;
  margin-bottom: 25vh;
  z-index: 2;
}
.aboutusSection .numb {
  font-size: 1.125rem;
  font-family: "FuturaBT-Book";
  color: #000;
  line-height: 1;
}
.aboutusSection .numbText a {
  font-size: 3.125rem;
  font-family: "FuturaBT-Book";
  font-weight: bold;
  color: #000;
  line-height: 1.2;
  text-align: center;
}
.aboutusSection .hoverImg {
  display: none;
  position: absolute;
  z-index: 0;
  height: 30vh;
  width: 25vw;
  object-fit: cover;
}
/* #endregion */
/* #region CategorySection */
.categorySection .sectionContainer {
  background-color: #000;
  width: 100%;
  padding: 2% 5% 5% 5%;
}
.categorySection .filterCont {
  display: flex;
  align-items: center;
  position: relative;
  border: rgba(177, 173, 173, 0.4) 0 solid;
  border-bottom-width: 2px;
  height: 11vh;
}
.categorySection .selectedCont {
  display: flex;
  align-items: flex-end;
  width: 50%;
  height: 100%;
  border: rgba(177, 173, 173, 0.4) 0 solid;
  border-right-width: 2px;
  padding-bottom: 2vh;
}
.categorySection label {
  color: rgba(177, 173, 173, 0.4);
  font-family: "FuturaBT-Light";
  font-size: 41.75px;
  line-height: 1;
}
.categorySection .selectedCont label {
  margin-right: 40px;
}
.categorySection .selectedCat {
  color: rgba(177, 173, 173, 0.4);
  font-family: "FuturaBT-Light";
  line-height: 1;
  font-size: 1.3125rem;
}
.categorySection .dropdown {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 50%;
  height: 100%;
  padding-bottom: 2vh;
  cursor: pointer;
  user-select: none;
}
.categorySection .dropdownLabelCont {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  cursor: pointer;
}
.categorySection .dropdownLabelCont label {
  margin-left: 40px;
  cursor: pointer;
}
.categorySection .dropbtn {
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  background-color: transparent;
  align-self: flex-end;
}
.categorySection .dropbtn svg {
  width: 30px;
}
.categorySection .dropbtn svg path {
  fill: rgba(177, 173, 173, 0.4);
}
.categorySection .dropdownMenu {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 100%;
  top: 100%;
}
.categorySection .dropdownMenu span {
  background-color: #000;
  color: #fff;
  padding: 10px 25px;
  display: block;
  text-transform: uppercase;
}
.categorySection .dropdownMenu span:hover {
  background-color: #333;
}
.categorySection .gallery {
  scroll-padding: 50%;
  height: 55vh;
  overflow: hidden;
}
.categorySection .carouselItem {
  flex: 0 0 auto;
  padding: 20px;
}
.categorySection .carouselItem img {
  height: 90%;
  width: 100%;
}
.categorySection .itemFooter {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}
.categorySection .itemFooterName {
  font-size: 2.5rem;
  font-family: "FuturaBT-Book";
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left;
}
.categorySection .itemFooterCount {
  font-size: 1rem;
  font-family: "FuturaBT-Light";
  color: rgba(177, 173, 173, 0.62);
  text-transform: uppercase;
  line-height: 1.2;
}
/* #endregion */
/* #region MarbelSection */
.marbelSection .sectionContainer {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 5vh;
}
.marbelSection .middleLine {
  height: 25vh;
}
.marbelSection .header {
  margin-top: 1vh;
}
.marbelSection .contentCont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 12vw;
}
.marbelSection .textCont {
  text-align: center;
  width: 100%;
  margin-bottom: 8vh;
}
.marbelSection .textCont text,
.marbelSection .textCont span {
  font-family: "FuturaBT-Book";
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #b1adad;
}
.marbelSection .textCont span {
  cursor: pointer;
}
.marbelSection .selected {
  font-weight: bold;
  color: #000 !important;
}
.marbelSection .imgsCont {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
}
.marbelSection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.marbelSection .imgBg {
  position: absolute;
  height: 85%;
  width: 100%;
}
.marbelSection .imgCont {
  position: relative;
  height: 100%;
  width: 70%;
  z-index: 2;
  padding: 3% 5%;
  display: flex;
  align-items: flex-end;
  background-image: url(../image/marbel/bg.png);
  background-position: center;
}
.marbelSection .imgCont img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}
.marbelSection .desc {
  position: inherit;
  color: #fff;
  z-index: 2;
  font-family: "FuturaBT-Book";
  font-size: 1.5rem;
  text-shadow: 2px 0 0px #000, 3px 2px 0px rgba(0, 0, 0, 0.5), 3px 0 3px #000, 5px 0 3px #000, 6px 2px 3px rgba(0, 0, 0, 0.5), 6px 0 9px #000, 8px 0 9px #000,
    9px 2px 9px rgba(0, 0, 0, 0.5), 9px 0 18px #000, 11px 0 18px #000, 12px 2px 18px rgba(0, 0, 0, 0.5), 12px 0 30px #000, 14px 0 30px #000, 15px 2px 30px rgba(0, 0, 0, 0.5),
    15px 0 45px #000, 17px 0 45px #000, 17px 2px 45px rgba(0, 0, 0, 0.5);
  text-shadow: 2px 0 0px #000, 3px 2px 0px rgba(0, 0, 0, 0.5), 3px 0 3px #000, 5px 0 3px #000, 6px 2px 3px rgba(0, 0, 0, 0.5), 6px 0 9px #000, 8px 0 9px #000,
    9px 2px 9px rgba(0, 0, 0, 0.5), 9px 0 18px #000, 11px 0 18px #000, 12px 2px 18px rgba(0, 0, 0, 0.5), 12px 0 30px #000, 14px 0 30px #000, 15px 2px 30px rgba(0, 0, 0, 0.5),
    15px 0 45px #000, 17px 0 45px #000, 17px 2px 45px rgba(0, 0, 0, 0.5);
}
/* #endregion */
/* #region ProjectSection */
.projectSection .sectionContainer {
  background-color: #e7e7e7;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.projectSection .content {
  position: relative;
  display: flex;
  width: 100%;
  user-select: none;
}
.projectSection .left,
.projectSection .middle,
.projectSection .right {
  flex: 1;
  height: 64vh;
}
.projectSection .left {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 5vh 5vw 5vh 0;
  width: 50vw;
  min-width: 50vw;
}
.projectSection .middle {
  flex-basis: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projectSection .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5vh 0 5vh 5vw;
}
.projectSection .imgCont {
  position: relative;
  height: 100%;
  user-select: none;
}
.projectSection .imgCont img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.projectSection .top {
  flex: 1;
  border: #6d6d6d 0 solid;
  border-left-width: 2px;
  margin-bottom: 3.5vh;
}
.projectSection .index {
  font-size: 1rem;
  font-family: "FuturaBT-Book";
}
.projectSection .title,
.projectSection .subtitle {
  font-size: 4.5rem;
  font-family: "FuturaBT-Medium";
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
}
.projectSection .subtitle {
  font-size: 2.25rem;
}
.projectSection .bottom {
  border: #6d6d6d 0 solid;
  border-left-width: 2px;
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-top: 3.5vh;
}
.projectSection .desc {
  width: 60%;
  font-size: 1rem;
  font-family: "FuturaBT-Book";
}
.projectSection .swipeTextCont {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.projectSection .swipeText {
  color: #000;
  background-color: #fff;
  border-radius: 10px;
  padding: 2px 8px;
}
/* #endregion */
/* #region How Section */
.howSection .sectionContainer {
  background-color: #e7e7e7;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.howSection .top,
.howSection .center,
.howSection .bottom {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "FuturaBT-Book";
  font-size: 2.8rem;
  color: #fff;
  text-transform: uppercase;
}
.howSection .top {
  background-image: url("../image/how/1.png");
}
.howSection .center {
  background-image: url("../image/how/2.png");
}
.howSection .bottom {
  background-image: url("../image/how/3.png");
}
/* #endregion */
/* #endregion */
/* #region ApplicationsPage */
.applicationsPage .sectionContainer {
  background-color: #e7e7e7;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.applicationsPage .header {
  margin-top: 200px;
}
.applicationsPage p {
  width: 40%;
  font-size: 1.5rem;
  font-family: "FuturaBT-Book";
  color: #000;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
}
.applicationsPage .content {
  display: flex;
  flex-direction: column;
  gap: 70px;
  width: 100%;
  padding: 40px;
}
.applicationsPage .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.applicationsPage .item.reverse {
  flex-direction: row-reverse;
}
.applicationsPage .item img {
  max-width: 25vw;
  height: 15vw;
}
.applicationsPage .item label {
  font-family: "FuturaBT-Medium";
  font-size: 2rem;
  color: #b1adad;
  font-weight: bold;
}
.applicationsPage .item span {
  font-family: "FuturaBT-Light";
  font-size: 5.5rem;
  color: #b1adad;
  text-transform: uppercase;
}
.applicationsPage .item:hover span {
  font-size: 4rem;
}
.applicationsPage .desc {
  display: none;
  font-family: "FuturaBT-Book";
  font-size: 1.5rem;
  color: #000;
  width: 20%;
  line-height: 1.1;
}
.applicationsPage .item:hover .desc {
  display: block;
}
/* #endregion */
/* #region TilesPage */
.tilesPage .sectionContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.tilesPage .header {
  margin-top: 200px;
}
.tilesPage p {
  width: 40%;
  font-size: 1.5rem;
  font-family: "FuturaBT-Book";
  color: #000;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
}
.tilesPage .content {
  width: 100%;
  padding: 40px 2vw;
}
.tilesPage .filterCont {
  display: flex;
  align-items: center;
  position: relative;
  border: #b1adad 0 solid;
  border-bottom-width: 2px;
  width: 100%;
  height: 11vh;
  margin-bottom: 40px;
}
.tilesPage .selectedCont {
  display: flex;
  align-items: flex-end;
  width: 50%;
  height: 100%;
  border: #b1adad 0 solid;
  border-right-width: 2px;
  padding-bottom: 2vh;
}
.tilesPage .filterCont label {
  color: #b1adad;
  font-family: "FuturaBT-Light";
  font-size: 41.75px;
  line-height: 1;
}
.tilesPage .selectedCont label {
  margin-right: 40px;
}
.tilesPage .selectedCat {
  color: #b1adad;
  font-family: "FuturaBT-Light";
  line-height: 1;
  font-size: 1.3125rem;
}
.tilesPage .dropdown {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 50%;
  height: 100%;
  padding-bottom: 2vh;
  cursor: pointer;
  user-select: none;
}
.tilesPage .dropdownLabelCont {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  cursor: pointer;
}
.tilesPage .dropdownLabelCont label {
  margin-left: 40px;
  cursor: pointer;
}
.tilesPage .dropbtn {
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  background-color: transparent;
  align-self: flex-end;
}
.tilesPage .dropbtn svg {
  width: 30px;
}
.tilesPage .dropbtn svg path {
  fill: #b1adad;
}
.tilesPage .dropdownMenu {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 100%;
  top: 100%;
}
.tilesPage .dropdownMenu span {
  background-color: #fff;
  color: #000;
  padding: 10px 25px;
  display: block;
  text-transform: uppercase;
}
.tilesPage .dropdownMenu span:hover {
  background-color: #b1adad;
}
.tilesPage .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tilesPage .gallery-item {
  position: relative;
  cursor: pointer;
  display: flex;
  width: calc(33.33% - 20px);
  flex-direction: column;
  align-items: flex-start;
}
.tilesPage .gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.tilesPage .gallery-title {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  text-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: left;
}
.tilesPage .imageOverlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  user-select: none;
}
.tilesPage .imageCont {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 80vw;
  max-height: 80vh;
}
.tilesPage .overlayPath {
  color: #fff;
  text-transform: uppercase;
  align-self: baseline;
}
.tilesPage .overlayImage {
  width: 100%;
  max-height: 90%;
}
.tilesPage .overlayControls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tilesPage .prev,
.tilesPage .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.tilesPage .prev {
  left: 0;
}
.tilesPage .next {
  right: 0;
}
/* #endregion */
/* #region ContactusPage */
.contactusPage .sectionContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contactusPage .header {
  margin-top: 200px;
}
.contactusPage .contact-text {
  font-family: "FuturaBT-Light";
  font-size: 2.25rem;
  margin-top: 30px;
  margin-bottom: 60px;
}
.contactusPage .contact-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 15vh;
}
.contactusPage button {
  border: #e7e7e7 2px solid;
  background-color: transparent;
  width: 13.5vw;
  min-height: 40px;
  height: 3.1vh;
  max-height: 60px;
  font-family: "FuturaBT-Light";
  font-size: 1rem;
  font-weight: bold;
}
.contactusPage button:hover {
  background-color: #e7e7e7;
}
.contactusPage .tooltiptext {
  position: absolute;
  display: none;
  background-color: black;
  color: white;
  padding: 5px;
  border-radius: 4px;
  font-size: 0.8em;
  pointer-events: none;
}
.contactusPage .map-container {
  padding: 0 2vw;
  width: 100%;
}
.contactusPage img {
  width: 100%;
}
.contactusPage .form-container {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contactusPage .form-container p {
  font-family: "FuturaBT-Medium";
  font-size: 3.75rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
}
.form-container form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
  max-width: 1000px;
}
.form-container input:not([type="checkbox"]),
.form-container textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 0;
  border-bottom: 1px solid #393939;
  background-color: transparent;
  color: #fff;
  width: 45%;
}
.form-container textarea {
  width: 100%;
}
.form-container .checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
}
.form-container .checkbox-container label {
  margin-left: 10px;
  color: #2e2e2e;
}
.form-container button[type="submit"] {
  font-family: "FuturaBT-Book";
  font-size: 2rem;
  cursor: pointer;
  border: #e7e7e7 2px solid;
  background-color: transparent;
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  height: auto;
}
/* #endregion */
/* #region legacyPage */
.legacyPage .sectionContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.legacyPage .header.top {
  margin-top: 200px;
}
.legacyPage .mainText {
  width: 40%;
  font-size: 1.5rem;
  font-family: "FuturaBT-Book";
  color: #000;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
}
.legacyPage .top-image {
  width: 80%;
  height: auto;
}
.legacyPage .middleLine.pad {
  margin-top: 20px;
}
.legacyPage .doubleTxtCont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 72%;
}
.legacyPage .doubleTxtCont .txtCont {
  width: 45%;
  font-family: "FuturaBT-Book";
  font-size: 1.7rem;
  line-height: 1.1;
}
.legacyPage .timelineCont {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legacyPage .timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  height: 5px;
  background-color: #000;
  margin-top: 21vh;
  margin-bottom: 45vh;
  z-index: 2;
}
.legacyPage .dot-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.legacyPage .dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-size: cover;
  position: absolute;
  background-color: #000;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.legacyPage .timeline .imgCont {
  height: 9vmin;
  position: absolute;
  z-index: 1;
}
.legacyPage .timeline img {
  height: 100%;
  width: auto;
}
.legacyPage .text-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
}
.legacyPage .text-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.legacyPage .down .text-container {
  transform: translateY(120%);
}
.legacyPage .up .text-container {
  transform: translateY(-120%);
}
.legacyPage .text-container .id {
  font-size: 3rem;
}
.legacyPage .text-container span {
  font-family: "FuturaBT-Book";
  font-size: 1.875rem;
  line-height: 1.1;
  text-align: center;
  color: #c5c5c5;
  white-space: nowrap;
  font-weight: bold;
}
.legacyPage .text-container:hover span {
  color: #000;
}
.legacyPage .timeline img {
  height: 100%;
}
.legacyPage .desc {
  position: absolute;
  display: none;
  width: 18vw;
  text-align: center;
  transform: translateY(200%);
  height: 12vh;
  text-overflow: ellipsis;
  font-family: "FuturaBT-Book";
  font-size: 1.5rem;
  line-height: 1.1;
}
.legacyPage .up .desc {
  transform: translateY(100%);
}
.legacyPage .popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.legacyPage .popupContent {
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  text-align: center;
}
.legacyPage .popupContent .desc {
  all: unset;
  color: white;
  font-size: 16px;
}
.legacyPage .popupContent {
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  text-align: center;
}
.legacyPage .popupContent .desc {
  all: unset;
  color: white;
  font-size: 16px;
}
.whyWorkSection .sectionContainer {
  width: 100%;
  padding: 50px;
  background-color: #000;
  color: #fff;
}
.whyWorkSection .title {
  font-size: 4.8rem;
  font-family: "FuturaBT-Medium";
  text-transform: uppercase;
  line-height: 1.023;
  text-align: center;
}
.whyWorkSection .features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 45px;
  margin-top: 11vh;
}
.whyWorkSection .feature {
  display: flex;
  align-items: flex-start;
  max-width: 40%;
}
.whyWorkSection .feature-icon {
  margin-right: 1rem;
  width: 3.2vw;
  height: auto;
}
.whyWorkSection .feature h2 {
  font-size: 1.25rem;
  font-family: "FuturaBT-Book";
  text-transform: uppercase;
  padding-bottom: 3vh;
  border-bottom: #979797 1px solid;
  white-space: nowrap;
}
.whyWorkSection .feature p {
  font-size: 1.1rem;
  font-family: "FuturaBT-Book";
  color: #979797;
  line-height: 1;
}
.factorySection .sectionContainer {
  width: 100%;
  padding: 20px 10vw;
  background-color: #fff;
}
.factorySection .title {
  font-family: "FuturaBT-Book";
  font-size: 1rem;
  color: #2f2f2f;
  text-transform: uppercase;
  border-bottom: #979797 1px solid;
  width: 100%;
  display: block;
  padding: 15px 0;
}
.factorySection .content {
  margin-top: 50px;
  width: 100%;
  overflow-x: hidden;
}
.factorySection .swiper-wrapper {
  align-items: center;
  user-select: none;
}
.factorySection .imgCont {
  height: 30vw;
}
.factorySection .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ourClientSection .sectionContainer {
  width: 100%;
  padding: 20px 10vw;
  background-color: #d9d9d9;
}
.ourClientSection .title {
  font-family: "FuturaBT-Medium";
  font-size: 3.75rem;
  color: #fff;
}
.ourClientSection .content {
  margin-top: 50px;
  width: 100%;
  overflow-x: hidden;
}
.ourClientSection .carouselItem {
  height: 100%;
}
.ourClientSection .swiper-wrapper {
  align-items: center;
  user-select: none;
}
.ourClientSection .content img {
  width: 8vw;
  height: auto;
}
/* #endregion */
/* #region Footer */
.footerContainer {
  background-color: black;
  height: 100vh;
  width: 100%;
  text-align: center;
  padding: 10% 10%;
  padding-bottom: 2vh;
  color: white;
  display: flex;
  flex-direction: column;
}
.footerContainer .top {
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.footerContainer .slogan {
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: "FuturaBT-Light";
  text-transform: uppercase;
}
.footerContainer .heading {
  font-size: 5rem;
  font-weight: bold;
  font-family: "FuturaBT-Medium";
  line-height: 1.2;
  white-space: nowrap;
}
.footerContainer .center {
  flex: 1;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 5vh;
}
.footerContainer .center button {
  margin: 10px;
  padding: 10px 20px;
  border: 1px solid #333;
  background: none;
  color: white;
  font-size: 1em;
  cursor: pointer;
  width: calc((45vw - 40px) / 3);
  white-space: nowrap;
}
.footerContainer .center button:hover {
  background: white;
  color: black;
}
.footerContainer .bottom {
  display: flex;
  align-items: center;
  border-top: #333 2px solid;
  padding-top: 20px;
  flex-wrap: wrap;
}
.footerContainer .logo {
  height: 5vh;
  position: absolute;
}
.footerContainer .logo img {
  height: 100%;
  width: auto;
}
.footerContainer .link {
  color: white;
  text-decoration: none;
  margin: 10px 0;
}
.footerContainer .social {
  margin: 10px 0;
}
.footerContainer .legal p {
  margin: 10px 0;
  font-size: 0.8em;
}
.footerContainer .item {
  width: 33%;
}
.footerContainer .rborder {
  border-right: 1px solid #333;
}
/* #endregion */
/* #region Animation */
.animate-out-left {
  animation: slideOutLeft var(--animation-duration) forwards;
}
.animate-in-left {
  animation: slideInLeft var(--animation-duration) forwards;
}
.animate-out-right {
  animation: slideOutRight var(--animation-duration) forwards;
}
.animate-in-right {
  animation: slideInRight var(--animation-duration) forwards;
}
.animate-out-up {
  animation: slideOutUp var(--animation-duration) forwards;
}
.animate-in-up {
  animation: slideInUp var(--animation-duration) forwards;
}
.animate-out-down {
  animation: slideOutDown var(--animation-duration) forwards;
}
.animate-in-down {
  animation: slideInDown var(--animation-duration) forwards;
}
.fade-out {
  animation: fadeOut var(--animation-duration) forwards;
}
.fade-in {
  animation: fadeIn var(--animation-duration) forwards;
}
.fade-out-right {
  animation: slideOutRight var(--animation-duration) forwards, fadeOut var(--animation-duration) forwards;
}
.fade-in-right {
  animation: slideInRight var(--animation-duration) forwards, fadeIn var(--animation-duration) forwards;
}
.fade-out-left {
  animation: slideOutLeft var(--animation-duration) forwards, fadeOut var(--animation-duration) forwards;
}
.fade-in-left {
  animation: slideInLeft var(--animation-duration) forwards, fadeIn var(--animation-duration) forwards;
}
.fade-out-up {
  animation: slideOutUp var(--animation-duration) forwards, fadeOut var(--animation-duration) forwards;
}
.fade-in-up {
  animation: slideInUp var(--animation-duration) forwards, fadeIn var(--animation-duration) forwards;
}
.fade-out-down {
  animation: slideOutDown var(--animation-duration) forwards, fadeOut var(--animation-duration) forwards;
}
.fade-in-down {
  animation: slideInDown var(--animation-duration) forwards, fadeIn var(--animation-duration) forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes slideOutUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* #endregion */
