@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@keyframes slide-in-ep {
  0% {
    transform: translateX(-20rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fade-in-slide-left {
  0% {
    opacity: 0%;
    transform: translateX(-80px);
  }
  100% {
    opacity: 100%;
    transform: translateX(0);
  }
}
@keyframes lace-rotation {
  0% {
    transform: rotate3d(0, 1, 0, 0deg); /* Start rotation */
  }
  50% {
    transform: rotate3d(0, 1, 0, 180deg); /* Halfway rotation */
  }
  100% {
    transform: rotate3d(0, 1, 0, 360deg); /* Full rotation */
  }
}
@keyframes go-up {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-350px);
  }
}
@keyframes go-down {
  0% {
    transform: translateY(-350px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes appear {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes cross-fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
* {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* p {
  font-weight: 300;
}

.banner {
  background-color: #F6F6F6;
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 1;
}
.banner img {
  width: 100%;
  max-height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}
.banner h2, .banner p {
  position: absolute;
  width: 100%;
  color: #F6F6F6;
  margin: 0;
  z-index: 2;
}
.banner h2 {
  top: 40%;
  font-family: "Montserrat", sans-serif;
  font-size: calc(clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem) + 1rem);
  animation: fade-in-slide-left 0.6s ease-in-out;
}
.banner p {
  top: 53%;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  animation: fade-in-slide-left 0.6s ease-in-out;
}

@media (max-width: 768px) {
  .banner h2 {
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-40%);
    z-index: 2;
    font-weight: 600;
  }
  .banner p {
    font-size: 0.9rem;
    top: 60%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .banner img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#the_story {
  background-color: #F6F6F6;
  text-align: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10%;
  overflow-x: hidden;
}
#the_story p {
  position: relative;
  color: black;
  text-align: center;
  box-sizing: border-box;
  margin: 0 15%;
  padding: 1%;
  margin-top: 5%;
  margin-bottom: 5%;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  font-weight: 300;
}
@media (max-width: 450px) {
  #the_story p {
    margin: 0 2%;
    padding: 6% 0;
  }
}
#the_story .image_structure {
  position: relative;
  width: 100%;
  height: auto;
}
@media (max-width: 450) {
  #the_story .image_structure {
    padding-top: 5%;
  }
}
#the_story .image_structure img {
  width: 70%;
  height: auto;
}
@media (max-width: 450px) {
  #the_story .image_structure img {
    width: 90%;
    margin-top: 6%;
    margin-bottom: 6%;
  }
  #the_story .image_structure .text_structure {
    margin-left: 5%;
    margin-right: 5%;
  }
}
#the_story .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F6F6F6; /* Adjust the color as needed */
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) + 10px);
  padding: 0;
  text-align: center;
}

#social_responsability {
  background-color: #F6F6F6;
  text-align: center;
}
#social_responsability .title {
  width: 100%;
  justify-content: center;
  padding: 5%;
  height: 100px;
}
#social_responsability .title h1 {
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) + 10px);
  font-weight: 300;
}
#social_responsability img {
  width: 100%;
  height: auto;
}
#social_responsability .text {
  text-align: center;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  display: -webkit-box;
}
#social_responsability .text_structure {
  margin-left: 20%;
  margin-right: 20%;
  box-sizing: border-box;
}
#social_responsability .text_structure p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
}
@media (max-width: 768px) {
  #social_responsability .text_structure {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5%;
    padding-bottom: 5%;
  }
}
#social_responsability .parallax-content {
  padding-bottom: 20%;
}
#social_responsability .parallax-image {
  height: auto;
  z-index: 0;
  transform: translateY(0);
  transition: transform 0.6s ease-out;
}
@media (max-width: 450px) {
  #social_responsability .parallax-image {
    transform: none; /* Disables the parallax effect */
    transition: none; /* Optional: removes transition for a static experience */
    height: 25vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #social_responsability .parallax-content {
    transform: none; /* Disables the parallax effect */
    transition: none;
    padding-bottom: 5%;
  }
  #social_responsability img {
    width: 100%;
    padding-bottom: 3%;
  }
  #social_responsability .title {
    width: 100%;
    justify-content: center;
    height: auto;
    padding-bottom: 10%;
    padding-top: 10%;
  }
  #social_responsability .title h1 {
    font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) + 10px);
    font-weight: 300;
  }
}

#qas {
  background-color: #F6F6F6;
}
#qas .title {
  width: 100%;
  height: 70px;
  text-align: center;
  padding: 5%;
}
#qas .title h1 {
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) + 10px);
  font-weight: 300;
}
#qas img {
  width: 100%;
  height: auto;
}
#qas .text {
  padding: 5%;
  text-align: left;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
}
#qas .container-accordion {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 8rem;
}
#qas .container-accordion .accordion {
  background-color: #F6F6F6;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  transition: 0.4s;
  border-bottom: 1px solid black;
}
@media (max-width: 480px) {
  #qas .container-accordion .accordion {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#qas .container-accordion .accordion::after {
  content: "+";
  color: black;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
#qas .container-accordion .accordion.active::after {
  content: "−";
}
#qas .container-accordion .accordion::-moz-selection {
  background: transparent;
  color: inherit;
}
#qas .container-accordion .accordion::selection {
  background: transparent;
  color: inherit;
}
#qas .container-accordion .panel {
  padding: 0 18px;
  background-color: #F6F6F6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}
#qas .container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
#qas .container-accordion .panel p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2ch;
}
@media (max-width: 480px) {
  #qas .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}

#recruitment {
  box-sizing: border-box;
  background-color: #F6F6F6;
  text-align: center;
  padding-bottom: 2%;
}
#recruitment .title {
  width: 100%;
  height: 70px;
  justify-content: center;
}
#recruitment .title h1 {
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) + 10px);
  font-weight: 300;
}
#recruitment .image {
  position: relative;
  width: 100%;
  height: auto;
}
#recruitment .image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  #recruitment .image img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#recruitment .image .text-overlay {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6F6F6; /* Adjust the color as needed */
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #recruitment .image .text-overlay {
    margin-left: 10%; /* Apply margin only for mobile screens */
    margin-right: 10%;
    width: 80%; /* Adjust width to account for margin */
    align-self: center;
  }
}
#recruitment .container-accordion {
  margin-left: 4%;
  margin-right: 4%;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
#recruitment .container-accordion .accordion {
  background-color: #F1F1F1;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  margin-bottom: 2px;
  font-weight: 300;
  gap: 10px;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  transition: 0.4s;
}
@media (max-width: 480px) {
  #recruitment .container-accordion .accordion {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  #recruitment .container-accordion .accordion {
    font-size: 0.3 rem;
  }
  #recruitment .container-accordion .accordion image {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#recruitment .container-accordion .accordion:hover, #recruitment .container-accordion .accordion.active {
  background-color: #F1F1F1;
}
#recruitment .container-accordion .accordion::after {
  content: url(/assets/vectors/arrow-right.svg);
  color: black;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
#recruitment .container-accordion .accordion.active::after {
  content: url(/assets/vectors/arrow-down2.svg);
  align-self: center;
}
#recruitment .container-accordion .apply {
  justify-content: center;
  align-self: center;
  margin-top: 2%;
}
#recruitment .container-accordion .apply button {
  background-color: #0E0E0E;
  color: #F6F6F6;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
}
#recruitment .container-accordion .panel {
  padding: 0 0px;
  background-color: #F1F1F1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}
#recruitment .container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
#recruitment .container-accordion .panel p {
  font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 3px);
  line-height: 2.5ch;
  margin-left: 30px;
}
@media (max-width: 480px) {
  #recruitment .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#recruitment .container-accordion .panel .apply {
  display: inline-block;
  padding: 8px 18px;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  font-family: "Montserrat", sans-serif;
  color: #F6F6F6;
  background-color: black;
  border: none;
  border-radius: 1px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 30px;
}
@media (max-width: 480px) {
  #recruitment .container-accordion .panel .apply {
    font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 2px);
    padding: 8px 16px;
  }
}
#recruitment .subtitle {
  margin-top: 10px;
  font-size: clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem);
  font-weight: 600;
  text-align: left;
  padding-top: 10px;
  margin-bottom: 0.625rem;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  #recruitment .text-overlay {
    font-size: 1rem;
  }
}

.spacer {
  width: 100%;
  height: 11rem;
  background-color: #F6F6F6;
}
@media (max-width: 500px) {
  .spacer {
    height: 8rem;
  }
}

.parallax-container {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax-image {
  width: 50%;
  height: 50%;
  z-index: 0;
  transform: translateY(0);
  transition: transform 0.6s ease-out;
}

.parallax-content {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: white;
  transition: transform 0.6s ease-out;
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  font-weight: 300;
  justify-content: center;
}

#nav-menu .dropdown .dropbtn#about-us {
  pointer-events: none;
  color: gray;
  text-decoration: none;
}
#nav-menu .dropdown .dropbtn#about-us:hover {
  cursor: default;
}

#production {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #F6F6F6;
  overflow: hidden;
  /* Container for horizontal scrolling */
  /* Optional: Scrollbar styling */
}
#production .title {
  width: 100%;
  height: 70px;
  text-align: center;
}
#production .title h1 {
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) + 10px);
  font-weight: 300;
}
#production .subtitle {
  width: 100%;
  height: 70px;
  text-align: center;
}
#production .subtitle p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  font-weight: 300;
}
#production .navbar_prod {
  background-color: white;
  overflow: hidden;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  padding: 5px 5px;
  gap: 7%;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (max-width: 1200px) {
  #production .navbar_prod {
    gap: 3%;
  }
}
@media (max-width: 768px) {
  #production .navbar_prod {
    width: 90%;
    min-width: unset;
    padding: 10px 5px;
    gap: 1%;
  }
}
#production .navbar_prod a {
  color: black;
  text-align: center;
  padding: 14px 14px;
  text-decoration: none;
  transition: background-color 0.6s ease, color 0.6s ease;
  border-radius: 30px;
  font-size: 0.8rem;
}
#production .navbar_prod a:hover,
#production .navbar_prod .selected {
  background-color: black;
  color: white;
}
#production .navbar_prod a.active {
  background-color: black;
  color: white;
  transition: background-color 0.6s ease;
}
#production .container_prod {
  margin-top: 5%;
  width: 100vw;
  max-width: 100vw; /* Prevents exceeding viewport width */
  overflow-x: auto;
  display: flex;
  scroll-snap-type: x mandatory; /* Optional: snap to each section */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}
#production .container_prod::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}
#production section {
  padding-left: 7%;
  padding-right: 7%;
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  flex: 0 0 100vw;
  justify-content: flex-start;
  position: relative;
}
#production section .card-1 {
  width: 350px;
  height: 500px;
  border-radius: 6px;
  position: sticky;
  left: 50px;
  top: 0;
}
#production section .card-1 .text_prod-1 {
  color: #c8c8c8;
  padding: 7%;
  padding-bottom: 0%;
  font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 2px);
  line-height: 2.2ch;
}
#production section .card-1 .title_prod-1 {
  padding: 7%;
  padding-bottom: 0%;
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
}
#production section .card {
  width: 350px;
  height: 500px;
  border-radius: 6px;
  display: inline-block;
  position: sticky;
  left: 50px;
  top: 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  flex-direction: column;
}
#production section .half_image {
  width: 100%;
  height: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}
#production section .division {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #F6F6F6;
}
#production section .text_prod {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  color: black;
}
#production section .title_prod {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}
#production section .title_prod::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2px;
  background-color: rgba(128, 128, 128, 0.4);
}
#production section .title_prod .info h1 {
  margin: 0;
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  font-weight: bold;
}
#production section .title_prod .info small {
  font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 2px);
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
}
#production section .title_prod .btn_prod button {
  padding: 8px 14px;
  font-size: 0.9rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#production section .paragraph {
  flex-grow: 1;
}
#production section .paragraph h1 {
  margin-top: 0;
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) - 3px);
}
#production section .paragraph p {
  margin: 0;
  font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 5px);
  line-height: 1.65;
}
@media (max-width: 480px) {
  #production section .paragraph p {
    font-size: calc(clamp(14px, 11.4359px + 0.5128vw, 18px) - 3px);
  }
}
#production #Continuous_Dye .card-1 {
  background-color: #2D3D30;
  color: white;
}
#production #Garment_Dye .card-1 {
  background-color: #133A37;
  color: white;
}
#production #Conventional_Printing .card-1 {
  background-color: #3A131F;
  color: white;
}
#production #Digital_Printing .card-1 {
  background-color: #5D2222;
  color: white;
}
#production #Finishing .card-1 {
  background-color: #131313;
  color: white;
}
@media (max-width: 480px) {
  #production {
    /* Container adjustments */
  }
  #production .navbar_prod {
    width: 80%;
    min-width: unset;
    padding: 10px 5px;
    gap: 1%;
    display: none;
  }
  #production .navbar_prod a {
    font-size: 0.5rem;
    padding: 2px 4px;
  }
  #production .container_prod {
    gap: 5px;
    padding: 5px;
    scroll-padding-left: 2%;
  }
  #production section {
    padding-left: 2%;
    flex: 0 0 100vw;
    gap: 5px;
  }
  #production section .card {
    width: 77vw;
    height: 400px;
    flex-direction: column;
    position: sticky;
    left: 2%;
    top: 0;
  }
  #production section .card .text_prod {
    padding: 2%;
    font-size: 8px;
    line-height: 2.5ch;
  }
  #production section .card img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  #production section .card-1 {
    width: 70vw;
    height: 400px;
    position: sticky;
    left: 2%;
    top: 0;
  }
  #production section .card-1 .title_prod {
    font-size: 0.6rem;
    padding: 2%;
  }
  #production section .card-1 .text_prod {
    padding: 2%;
    font-size: 8px;
    line-height: 2.5ch;
  }
}/*# sourceMappingURL=style.css.map */