@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;
}
* p {
  font-weight: 300;
}

.spacer {
  width: 100%;
  height: 11rem;
  background-color: #F6F6F6;
}
@media (max-width: 500px) {
  .spacer {
    height: 8rem;
  }
}
.spacer.innosus {
  height: 8rem;
}

#banner {
  background-color: #F6F6F6;
  /* Responsive design for mobile screens */
}
#banner .image {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
}
#banner .image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .image h1 {
  font-size: calc(clamp(1rem, 0.1186rem + 2.8205vw, 2rem) - 8px);
  font-weight: 300;
  line-height: 2ch;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F6F6F6;
}
@media (max-width: 768px) {
  #banner .image h1 {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
  }
}
@media (max-width: 450px) {
  #banner .image h1 {
    font-size: 1rem;
    width: 95%;
  }
}
#banner .image p {
  color: #F6F6F6;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  position: absolute;
  top: 64%;
  left: 50%;
  line-height: 2ch;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #banner .image p {
    width: 80%;
    font-size: 0.9rem;
  }
}
#banner .text h1 {
  font-size: 2rem;
  text-align: center;
  padding: 10%;
  font-weight: 400;
}
@media (max-width: 500px) {
  #banner .text h1 {
    font-size: 1.5rem;
    padding: 5%;
  }
}
#banner .text h1 b {
  font-weight: bold;
}
#banner .second_banner {
  display: flex; /* Side-by-side layout for text and image */
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 10%;
  justify-content: space-between;
  flex-wrap: wrap; /* Ensures elements wrap on smaller screens */
}
#banner .second_banner .text {
  display: flex;
  flex: 1; /* Ensures equal space in the flex container */
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Vertical alignment */
  align-items: center; /* Horizontal alignment */
  text-align: left; /* Ensures the text inside is centered */
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  padding: 4%;
  margin-left: 10%;
}
#banner .second_banner .text p {
  margin-bottom: 5%;
}
#banner .second_banner .image {
  flex: 1;
}
#banner .second_banner .image img {
  width: 80%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  #banner .second_banner {
    flex-direction: column; /* Stack text and image vertically */
    gap: 10px; /* Reduce gap for smaller screens */
    align-items: center; /* Center-align content */
  }
  #banner .text {
    text-align: center; /* Center text for better readability */
    margin-left: 0; /* Remove unnecessary margin */
    padding: 2%; /* Adjust padding for smaller screens */
  }
  #banner .image img {
    width: 100%;
    max-height: unset; /* Allow the image to scale dynamically */
  }
  #banner .image h1 {
    margin-bottom: 2%;
  }
}

#InnSus {
  background-color: #F6F6F6;
  /* Responsive design for mobile screens */
}
#InnSus .image {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
}
#InnSus .image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
#InnSus .image h1 {
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F6F6F6;
}
@media (max-width: 768px) {
  #InnSus .image h1 {
    font-size: 1.5rem;
    top: 40%;
  }
}
#InnSus .image p {
  color: #F6F6F6;
  font-size: clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #InnSus .image p {
    font-size: 1rem;
  }
}
#InnSus .text h1 {
  font-size: 2rem;
  text-align: center;
  padding: 5%;
  font-weight: 400;
}
@media (max-width: 500px) {
  #InnSus .text h1 {
    font-size: 1.5rem;
    margin-top: 6%;
  }
  #InnSus .text h1 br {
    display: none;
  }
}
#InnSus .text h1 b {
  font-weight: bold;
}
#InnSus .second_banner {
  display: flex; /* Side-by-side layout for text and image */
  gap: 20px;
  padding-bottom: 10%;
  justify-content: space-between;
  flex-wrap: wrap; /* Ensures elements wrap on smaller screens */
}
#InnSus .second_banner .text {
  display: flex;
  flex: 1; /* Ensures equal space in the flex container */
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Vertical alignment */
  align-items: center; /* Horizontal alignment */
  text-align: left; /* Ensures the text inside is centered */
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  padding: 4%;
  margin-left: 10%;
}
@media (max-width: 500px) {
  #InnSus .second_banner .text {
    margin: 0;
    padding-left: 8%;
    padding-right: 8%;
  }
}
#InnSus .second_banner .text p {
  margin-bottom: 5%;
  text-align: left;
}
@media (max-width: 500px) {
  #InnSus .second_banner .text p {
    text-align: center;
  }
}
#InnSus .second_banner .image {
  flex: 1;
}
#InnSus .second_banner .image img {
  width: 80%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  #InnSus .second_banner {
    flex-direction: column; /* Stack text and image vertically */
    gap: 10px; /* Reduce gap for smaller screens */
    align-items: center; /* Center-align content */
  }
  #InnSus .text {
    text-align: center; /* Center text for better readability */
    margin-left: 0; /* Remove unnecessary margin */
    padding: 2%; /* Adjust padding for smaller screens */
  }
  #InnSus .image img {
    width: 100%;
    max-height: unset; /* Allow the image to scale dynamically */
  }
  #InnSus .image h1 {
    margin-bottom: 2%;
  }
}

#Inntech {
  background-color: #F6F6F6;
}
#Inntech .title {
  background-color: #F6F6F6;
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  text-align: center;
  padding: 2%;
}
#Inntech .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 2%;
  background-color: #F6F6F6;
  flex-wrap: wrap;
}
#Inntech .wrapper .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F6F6F6;
  width: 45%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #Inntech .wrapper .container {
    width: 100%;
  }
}
#Inntech .wrapper .container .image {
  margin-bottom: 20px;
}
#Inntech .wrapper .container .image img {
  max-width: 100%;
  height: auto;
}
#Inntech .wrapper .container .text {
  max-width: 90%;
  text-align: left;
  line-height: 1.6;
}
#Inntech .wrapper .container .text .subtitle {
  font-size: clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem);
}
#Inntech .wrapper .container .text .paragraph {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
}
@media (max-width: 768px) {
  #Inntech .wrapper {
    flex-direction: column;
    align-items: center;
  }
  #Inntech .container {
    width: 90%;
    margin-bottom: 20px;
  }
  #Inntech .title {
    font-size: clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem);
    padding: 10px;
  }
  #Inntech .text {
    max-width: 100%;
    text-align: center;
    line-height: 1.8;
    padding-left: 5%;
    padding-right: 5%;
  }
  #Inntech .text .subtitle {
    font-size: clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem);
    margin-bottom: 10px;
    font-weight: 500;
  }
  #Inntech .text .paragraph {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
    line-height: 2.5ch;
    padding-bottom: 15px;
  }
}

#Sustech {
  background-color: #4B285D;
}
#Sustech #Finish {
  background-color: #0E0E0E;
}
#Sustech #Finish .container-accordion {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 8rem;
}
#Sustech #Finish .container-accordion .accordion {
  background-color: #0E0E0E;
  color: #F6F6F6;
  cursor: pointer;
  padding: 18px 18px 18px 0;
  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 #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Finish .container-accordion .accordion {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech #Finish .container-accordion .accordion::after {
  content: "+";
  color: #F6F6F6;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
#Sustech #Finish .container-accordion .accordion.active::after {
  content: "−";
}
#Sustech #Finish .container-accordion .panel {
  padding: 0 18px;
  background-color: #0E0E0E;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}
#Sustech #Finish .container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
#Sustech #Finish .container-accordion .panel p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  color: #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Finish .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech #Fibres {
  background-color: #8589A1;
}
#Sustech #Fibres .container-accordion {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 8rem;
}
#Sustech #Fibres .container-accordion .accordion {
  background-color: #8589A1;
  color: #F6F6F6;
  cursor: pointer;
  padding: 18px 18px 18px 0;
  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 #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Fibres .container-accordion .accordion {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech #Fibres .container-accordion .accordion::after {
  content: "+";
  color: #F6F6F6;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
#Sustech #Fibres .container-accordion .accordion.active::after {
  content: "−";
}
#Sustech #Fibres .container-accordion .panel {
  padding: 0 18px;
  background-color: #8589A1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}
#Sustech #Fibres .container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
#Sustech #Fibres .container-accordion .panel p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  color: #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Fibres .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech #Dyeing {
  background-color: #4B285D;
}
#Sustech #Dyeing .container-accordion {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 8rem;
}
#Sustech #Dyeing .container-accordion .accordion {
  background-color: #4B285D;
  color: #F6F6F6;
  cursor: pointer;
  padding: 18px 18px 18px 0;
  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 #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Dyeing .container-accordion .accordion {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech #Dyeing .container-accordion .accordion::after {
  content: "+";
  color: #F6F6F6;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
#Sustech #Dyeing .container-accordion .accordion.active::after {
  content: "−";
}
#Sustech #Dyeing .container-accordion .panel {
  padding: 0 18px;
  background-color: #4B285D;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}
#Sustech #Dyeing .container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
#Sustech #Dyeing .container-accordion .panel p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  color: #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Dyeing .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech #Printing {
  background-color: #133A37;
}
#Sustech #Printing .container-accordion {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 8rem;
}
#Sustech #Printing .container-accordion .accordion {
  background-color: #133A37;
  color: #F6F6F6;
  cursor: pointer;
  padding: 18px 18px 18px 0;
  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 #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Printing .container-accordion .accordion {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech #Printing .container-accordion .accordion::after {
  content: "+";
  color: #F6F6F6;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
#Sustech #Printing .container-accordion .accordion.active::after {
  content: "−";
}
#Sustech #Printing .container-accordion .panel {
  padding: 0 18px;
  background-color: #133A37;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}
#Sustech #Printing .container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
#Sustech #Printing .container-accordion .panel p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  color: #F6F6F6;
}
@media (max-width: 480px) {
  #Sustech #Printing .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
#Sustech .title {
  background-color: #F6F6F6;
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  text-align: center;
  padding: 2%;
}
@media (max-width: 768px) {
  #Sustech .title {
    padding-bottom: 12%;
    font-size: 1.2rem;
    font-weight: 600;
  }
}
#Sustech .container .image {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 2%;
}
#Sustech .container .image video {
  max-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
#Sustech .container .image h2 {
  font-size: calc(clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem) + 12px);
  text-align: center;
  color: #F6F6F6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 450px) {
  #Sustech .container .image h2 {
    top: 30%;
  }
}

.container-accordion {
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 8rem;
}
.container-accordion .accordion {
  background-color: #4B285D;
  color: #F6F6F6;
  cursor: pointer;
  padding: 18px 18px 18px 0;
  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 #F6F6F6;
}
@media (max-width: 480px) {
  .container-accordion .accordion {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}
.container-accordion .accordion::after {
  content: "+";
  color: #F6F6F6;
  font-weight: 300;
  float: right;
  margin-left: 5px;
}
.container-accordion .accordion.active::after {
  content: "−";
}
.container-accordion .panel {
  padding: 0 18px;
  background-color: #4B285D;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}
.container-accordion .panel span {
  display: block;
  height: 40px;
  width: 100%;
}
.container-accordion .panel p {
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  line-height: 2.5ch;
  color: #F6F6F6;
}
@media (max-width: 480px) {
  .container-accordion .panel p {
    font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  }
}

.parallax-container {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax-image {
  height: auto;
  width: 100%;
  transform: translateY(0); /* Default position */
  transition: transform 0.3s ease-out;
}

.parallax-content {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: white;
  transition: transform 0.3s ease-out;
  font-size: clamp(1rem, 0.1186rem + 2.8205vw, 2rem);
  justify-content: center;
  width: 100%;
  top: 50%;
}

@media (max-width: 768px) {
  .parallax-image {
    transform: none; /* Remove the parallax effect */
    transition: none; /* Disable transitions for smoother adjustments */
  }
  .parallax-content {
    text-align: center;
    font-size: 1.2rem; /* Adjust font size for smaller screens */
    top: 50%;
  }
  .parallax-container {
    height: auto; /* Adjust the container height for smaller screens */
  }
}
#nav-menu .dropdown .dropbtn#innsus {
  pointer-events: none;
  color: gray;
  text-decoration: none;
}
#nav-menu .dropdown .dropbtn#innsus:hover {
  cursor: default;
}

.header-video {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  transition: opacity 0.8s ease;
}
.header-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.header-video .header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}
.header-video .header-content h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.sustech-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 450px) {
  .sustech-tabs {
    flex-direction: column;
    align-items: center;
  }
}

.tab-button {
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: clamp(14px, 11.4359px + 0.5128vw, 18px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.tab-button.active {
  color: white;
  font-weight: bold;
}

#Sustech > div {
  display: none;
}
#Sustech > div.active {
  display: block;
}

@keyframes videoFade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
.video-fade-in {
  animation: videoFade 0.5s forwards;
}

.subtitle {
  text-align: center;
  color: white;
  padding-top: 3%;
  position: relative;
  font-size: clamp(0.875rem, -0.0064rem + 2.5205vw, 1.4rem);
}/*# sourceMappingURL=style.css.map */