/* 
  ---- 01 TYPOGRAPHY ----
  
      - Font Sizes (px):


      - Font Weights:
        Regular: 400
        Bold: 500

      - Line Heights:
        Default: 1
        1.3

  ---- 02 COLORS ----

      - Primary: ##2A7BC5
      - Secondary: #9D69D6
      - Tints: #3f88cb
      - Shades:
      - Accents:
      - Greys: #222,#4e4e4e,#808080,#838383,#F8F8F8,#F5F5F5
      - Warning: #e74c3c;

  ---- 03 SHADOWS ----

  ---- 04 BORDER-RADIUS

          Default: 2px

  ---- 05 WHITESPACE

      - Spacing (px):
        2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128


  */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #222;
  overflow-x: hidden;
}

/* ********************** */
/* GENERAL */
/* ********************** */

/* Temp */
.bg-inv-pop-up {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}
/* Temp */
.inv-pop-up {
  width: 50rem;
  height: 54rem;
  border-radius: 6px;
  padding: 2rem;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container {
  max-width: 120rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}

.secondary-heading {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin: 6.4rem 0;
}

.blue-text {
  font-weight: 500;
  color: #2a7bc5;
}

.white-text {
  color: #f5f5f5;
}

.btn:link,
.btn:visited {
  display: inline-block;
  background-color: #2a7bc5;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 1.6rem 3.2rem;
  border-radius: 2px;
  transition: all 0.2s;
}

.btn:hover,
.btn:active {
  background-color: #3f88cb;
}

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 3.2rem;
  right: 3.2rem;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: #2a7bc5;
  color: #f5f5f5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9999;
}

.scroll-to-top:hover,
.scroll-to-top:active {
  background-color: #3f88cb;
}

/* ********************** */
/* TRIANGLE */
/* ********************** */

.triangle-box {
  max-width: 48rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -9999;
}

.triangle-img {
  width: 100%;
}

/* ********************** */
/* HEADER */
/* ********************** */

.hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.2rem 4.8rem;
  position: relative;
}

.logo {
  height: 3.6rem;
}

/* MAIN NAVIGATION */

.main-nav-list {
  display: flex;
  gap: 4rem;
  align-items: center;
  list-style: none;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.2s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #4e4e4e;
}

.main-nav-link.nav--btn:link,
.main-nav-link.nav--btn:visited {
  display: inline-block;
  padding: 1rem 1.8rem;
  border-radius: 2px;
  background-color: #2a7bc5;
  color: #fff;
}

.main-nav-link.nav--btn:hover,
.main-nav-link.nav--btn:active {
  background-color: #3f88cb;
}

/* MOBILE NAVIGATION */

.btn-burger-menu {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-burger-menu {
  width: 3.2rem;
  height: 3.2rem;
  color: #222;
}

.icon-burger-menu[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */

.sticky .hdr {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  z-index: 999;
}

.sticky .section-hero {
  margin-top: 10.15rem;
}

/* ********************** */
/* TRACK ORDER */
/* ********************** */

.bg-pop-up {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.pop-up {
  width: 60rem;
  height: 50rem;
  border-radius: 6px;
  padding: 2rem;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.textbox {
  display: block;
  margin: 1.8rem auto;
  padding: 0.6rem;
  border-color: #808080;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1.8rem;
}

.close-pop-up {
  width: 3.2rem;
  height: 3.2rem;
  color: #222;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.project-status-paragraph {
  color: #e74c3c;
  font-size: 1.4rem;
  margin-top: 1.8rem;
  display: none;
}

#track-btn {
  display: inline-block;
  background-color: #2a7bc5;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 1.6rem 3.2rem;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}

#track-btn:hover {
  background-color: #3f88cb;
}

/* ********************** */
/* HERO SECTION */
/* ********************** */

.div-hero {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 12.8rem;
  align-items: center;
  justify-items: center;
}

.heading-primary {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0rem;
  margin-bottom: 3.2rem;
  text-align: justify;
  text-justify: inter-word;
}

.hero-img-box {
  max-width: 52rem;
}

.hero-img {
  width: 100%;
}

/* ********************** */
/* ABOUT */
/* ********************** */

.section-about {
  margin: 6rem auto;
  padding: 6rem;
  background-color: #2a7bc5;
}

.quality-quote {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #2a7bc5;
  text-align: center;
}

/* ********************** */
/* WCUS AND CLIENTS SECTION */
/* ********************** */

.section-wcus-clients {
  margin-top: 3.2rem;
}

/* WCUS */

.wcus-cards {
  padding: 0 22.6rem;
  margin-bottom: 4.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4.8rem;
}

.card {
  padding: 4.8rem 3.2rem;
  background-color: #f8f8f8;
  box-shadow: 0 3px 4px 0 rgba(196, 196, 196, 0.682);
}

.card-icon {
  height: 4.8rem;
  margin-bottom: 1rem;
}

.card-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.card-description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #4e4e4e;
}

.client-paragraph {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #2a7bc5;
}

/* CLIENTS */

.div-clients {
  text-align: center;
}

.clients-logos-box {
  padding: 0 6.4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.8rem;
  margin-bottom: 4.8rem;
}

.client-img-box {
  max-height: 10rem;
}

.client-logo {
  height: 100%;
}

/* CLIENT POP UP */

.client-bg-pop-up {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.client-pop-up {
  width: 80rem;
  height: 50rem;
  border-radius: 6px;
  padding: 2rem;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
}

#close-clients {
  width: 4.8rem !important;
  height: 4.8rem !important;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
  padding: 2.4rem;
  margin: 2.4rem 0;
  min-height: 0;
  min-width: 0;
  justify-content: center;
  align-items: center;
}

.client-img-box-grid {
  max-width: 12rem;
  min-height: auto;
  min-width: auto;
}

.client-logo-grid {
  width: 100%;
}

/* ********************** */
/* FOOTER*/
/* ********************** */

.ftr {
  background-color: #f5f5f5;
  margin-top: 6.4rem;
  padding: 4.8rem 6.4rem 1.8rem 6.4rem;
}

.ftr-items {
  justify-content: space-evenly;
  justify-items: center;
  padding: 0 6.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem;
}

.address-col {
  font-style: normal;
}

.ftr-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4e4e4e;
}

.footer-nav-list {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  list-style: none;
  line-height: 1.4;
}

.footer-link:link,
.footer-link:visited {
  font-size: 1.4rem;
  color: #4e4e4e;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:active {
  color: #838383;
}

.address-li {
  margin-right: 6.4rem;
  font-size: 1.4rem;
  color: #4e4e4e;
  line-height: 1.4;
}

.certificates {
  margin-top: 4.8rem;
  text-align: center;
}

.certificate-grid {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}

.certificate-box {
  max-width: 6rem;
}

.certificate-img {
  width: 100%;
}

.copyright {
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.8;
}

.privacy-policy:link,
.privacy-policy:visited {
  color: #4e4e4e;
}

.privacy-policy:hover,
.privacy-policy:active {
  color: #838383;
}
