@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --primary-blue: #2950a3;
  --secondary-orange: #f68527;
  --whatsapp-green: #49c858;
  --small-padding: 2rem;
  --medium-padding: 15rem;
  --large-padding: 21rem;
  --letter-spacing-small: -0.05em;
  --letter-spacing-medium: -0.03em;
  --line-height-small: 114.5%;
  --line-height-medium: 145.5%;
  --line-height-large: 163.5%;
}

::selection,
::-moz-selection {
  background-color: var(--secondary-orange);
  color: white;
}

* {
  -webkit-font-smoothing: antialiased;
}

html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-transform: translate3d(0);
  -webkit-backface-visibility: hidden;
  -moz-transform: translate3d(0);
  position: relative;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

/* Nav menu start */
.nav-menu {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 70vw;
  background-color: #f6f6f6;
  z-index: 200;
  overflow-x: hidden;
  overflow-y: scroll;
  transform: translateX(100%);
  transition: transform 200ms ease;
}

.nav-overlay {
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.nav-link {
  display: block;
  color: var(--primary-blue);
  font-size: 1.6em;
  text-align: right;
  letter-spacing: var(--letter-spacing-small);
  font-variation-settings: "wght" 550;
  text-decoration: none;
  padding: 2rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.dropdown-accordion {
  padding: 2rem;
  max-height: 1.6rem;
  overflow: hidden;
  transition: max-height 300ms ease, background-color 300ms ease;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.dropdown-open {
  max-height: 200rem;
  background-color: white;
}

.stop-scroll {
  overflow: hidden;
}

.dropdown-accordion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.dropdown-accordion-item span {
  font-size: 1.6rem;
  letter-spacing: var(--letter-spacing-small);
  font-variation-settings: "wght" 550;
  color: var(--primary-blue);
}

.dropdown-accordion-item .iconify {
  font-size: 0.6rem;
  color: var(--primary-blue);
}

.dropdown-accordion-links {
  text-align: right;
}

.product-title {
  font-size: 1.3rem;
  font-variation-settings: "wght" 600;
  margin: 0 0 2rem 0;
}

.dropdown-links-unit {
  display: block;
  margin-bottom: 3rem;
}

.dropdown-links-unit > a {
  display: block;
  font-size: 1.4rem;
  letter-spacing: var(--letter-spacing-small);
  color: black;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.show {
  opacity: 0.6;
  pointer-events: all;
}

.show-nav {
  transform: translateX(0%);
}
/* Nav menu end */

/* navbar start */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--small-padding);
  box-shadow: 2px 2px 20px 5px rgba(0, 0, 0, 0.05);
}

.nav-logo img {
  width: 100%;
  height: 100%;
}

.nav-logo {
  width: 8.5rem;
}

.hamburger {
  color: var(--primary-blue);
  font-size: 2.5em;
}
/* navbar end */

/* Title Block start */
.title-block {
  padding: 0 var(--small-padding);
  margin: 2rem 0;
}

.title {
  font-size: 2.25rem;
  font-variation-settings: "wght" 550;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-medium);
  border-bottom: 3px solid var(--secondary-orange);
  width: fit-content;
}

.desc {
  font-size: 1.3rem;
  font-variation-settings: "wght" 450;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-large);
  padding: 0 var(--small-padding);
}
/* Title Block end */

/* Accordion styles start */
.accordion-section {
  padding: 0 var(--small-padding);
  margin: 3rem 0;
}

.accordion {
  width: 100%;
}

.accordion-item {
  background-color: #f6f6f6;
  margin: 1rem 0;
}

.accordion-item:first-child {
  margin-top: 0;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-variation-settings: "wght" 400;
  letter-spacing: var(--letter-spacing-small);
  background-color: var(--primary-blue);
  transition: background-color 100ms ease;
  user-select: none;
  padding: 1rem 0.25rem;
}

.accordion-link .iconify {
  font-size: 2rem;
  margin: 0 0.5rem;
  pointer-events: none;
}

.accordion-content {
  max-height: 200rem;
  overflow: hidden;
  transition: max-height 200ms ease-in-out, padding 200ms ease-in-out;
  padding: 0rem 1rem;
}

.checklist-image-flex {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.checklist-unit {
  display: flex;
  align-items: baseline;
  margin: 1rem 0;
}

.checklist-unit .iconify {
  font-size: 1.1rem;
  font-weight: 100;
  margin-right: 0.5rem;
  color: var(--secondary-orange);
  flex-shrink: 0;
}

.checklist-text {
  font-size: 1.2rem;
  font-variation-settings: "wght" 450;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-medium);
}

.availability {
  font-size: 1.2rem;
  font-variation-settings: "wght" 400;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-small);
  padding: 0 0.7rem;
  margin-bottom: 1rem;
}

.enquire-button {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  font-variation-settings: "wght" 500;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-large);
  background-color: var(--secondary-orange);
  color: white;
  border-radius: 5px;
  padding: 0.375rem 2rem;
  margin-left: 0.7rem;
}

.image > img {
  width: 100%;
  height: 100%;
}

.image {
  width: 15rem;
}

.hidden {
  display: none;
}

.collapse {
  max-height: 0rem;
}

.padding {
  padding: 2.5rem 1rem;
}

.active {
  background-color: #f6f6f6;
  color: black;
}
/* Accordion styles end */

/* Table section start */
.table-wrapper {
  overflow-x: scroll;
}

.table-wrapper table {
  table-layout: auto;
  width: auto;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.table-wrapper > table > thead {
  background-color: #ffe0c6;
}

.table-wrapper > table > thead > tr > th {
  font-size: 1.2rem;
  font-variation-settings: "wght" 600;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-small);
  text-align: left;
  padding: 0.75rem 0.7rem;
}

.table-wrapper > table > tbody > tr > td {
  font-size: 1.2rem;
  font-variation-settings: "wght" 450;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-small);
  padding: 0.5rem 0.7rem;
}

sub {
  font-size: 0.6rem;
  font-variation-settings: "wght" 600;
}
/* Table section end */

/* Industries section start */
.industries {
  padding: 0 var(--small-padding);
  margin: 3rem 0;
}

.industries-links-container {
  background-color: #f6f6f6;
  padding: 2.5rem 2rem;
}

.industries-title-block {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.industries-title-block > p {
  font-size: 1.7rem;
  display: inline-block;
  margin-right: 2rem;
  word-wrap: normal;
  color: var(--secondary-orange);
  font-variation-settings: "wght" 550;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-small);
}

.line {
  height: 0px;
  flex-grow: 1;
  border-bottom: 1.5px solid var(--secondary-orange);
}

.links-unit a {
  color: black;
  display: inline-block;
  margin: 0.5rem 0;
  text-decoration: none;
  font-size: 1.3rem;
  font-variation-settings: "wght" 400;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-small);
}

.links-unit {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

.links-title {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 1rem;
  font-variation-settings: "wght" 550;
  letter-spacing: var(--letter-spacing-small);
  line-height: var(--line-height-small);
}

.links-flex {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* Industries section end */

/* Footer */
footer {
  color: white;
  background-color: var(--primary-blue);
  letter-spacing: -0.05em;
  padding: 3rem var(--small-padding);
}

footer a {
  text-decoration: none;
  color: white;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
  justify-content: space-between;
}

.footer-flex > * {
  flex-basis: 40%;
}

.footer-unit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  width: 100%;
}

.footer-logo {
  width: 10rem;
}

.footer-logo p {
  font-size: 0.8rem;
  font-variation-settings: "wght" 300;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}

.footer-address {
  text-align: right;
  font-size: 1.2rem;
  font-variation-settings: "wght" 300;
  line-height: 163.5%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-links a {
  text-align: right;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-variation-settings: "wght" 500;
}

footer h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-variation-settings: "wght" 400;
}

.footer-contact p {
  font-size: 1.2rem;
  font-variation-settings: "wght" 300;
  margin-bottom: 0.5rem;
  line-height: 163.5%;
}

.copyright {
  font-size: 1.2rem;
  font-variation-settings: "wght" 300;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.footer-social-media i {
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}
/* Footer */

/* Responsiveness */

/* iPhone X Responsiveness */
@media only screen and (device-width: 375px) and (device-height: 812px) {
  nav {
    padding: 4rem var(--small-padding);
  }

  .nav-logo {
    width: 12rem;
  }

  .hamburger {
    font-size: 3em;
  }

  .title {
    font-size: 2.5rem;
  }
}

@media only screen and (device-width: 375px) and (device-height: 667px) {
  .nav-logo {
    width: 10rem;
  }

  .hamburger {
    font-size: 3em;
  }

  .title {
    font-size: 2.5rem;
  }
}

@media only screen and (min-device-width: 411px) {
  :root {
    --small-padding: 3rem;
  }

  .nav-logo {
    width: 10rem;
  }

  .hamburger {
    font-size: 3em;
  }

  .title {
    font-size: 2.5rem;
  }

  .text-container .desc {
    font-size: 1.5rem;
  }
}
