:root {
  --blue-color: rgb(44, 140, 216);
  --header-height: 80px;
  --header-height-mb: 96px;
}
*,
*::before,
*::after {
  /* outline: 1px solid red; */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.mb-show {
  display: block;
}
.main-nav {
  display: none;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
@media (min-width: 808px) {
  .mb-show {
    display: none;
  }
  .main-nav {
    display: flex;
  }
}
header {
  background-color: rgb(255, 255, 255);
  width: 100%;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  box-shadow: rgba(148, 148, 148, 0.25) 0px 5px 30px 0px;
  height: var(--header-height-mb);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 25px;
}
@media (min-width: 810px) {
  header {
    height: var(--header-height);
  }
}
header > a > img {
  display: block;
  width: 137px;
  height: 48px;
}
header .main-nav {
  align-items: center;
  gap: 20px;
}
.main-nav > a h3,
.mobile-nav-bar > a h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
}
.fixed-header {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
#overlay-nav {
  position: fixed;
  top: var(--header-height-mb);
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--header-height-mb));
  background: white;
  z-index: 1;
  transition: top 0.5s ease-in-out;
}
.mobile-nav-bar {
  position: fixed;
  top: 100px;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  gap: 80px;
  height: calc(100vh - 20px);
  width: 100%;
}

@media (min-width: 810px) {
  .mobile-nav-bar {
    display: none !important;
  }
  #overlay-nav {
    display: none !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
.nav-btn {
  padding: 4px 16px;
}
.nav-btn:hover {
  background-color: var(--blue-color);
  border-radius: 20px;
  color: white;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.contact-us-btn {
  background-color: var(--blue-color);
  border-radius: 8px;
  color: white;
  padding: 8px 32px;
  transition: translate;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  font-family: "Raleway", serif;
}
.contact-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0.59714px 0.59714px -0.625px,
    rgba(0, 0, 0, 0.125) 0px 1.81088px 1.81088px -1.25px,
    rgba(0, 0, 0, 0.125) 0px 4.78699px 4.78699px -1.875px,
    rgba(0, 0, 0, 0.125) 0px 15px 15px -2.5px;
}
/* Display */
.display-container {
  display: flex;
  align-items: center;
  position: relative;
  height: calc(100vh - var(--header-height-mb));
  background-image: url("assets/industry-bg-2048.png");
  background-size: cover;
  background-position: center;
}
.display-container .landing-bg-img img {
  object-fit: cover;
  height: calc(100vh - var(--header-height));
  width: 100vw;
}
.display-container .display-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  color: white;
  padding-left: 20px;
}
.display-container .display-title h1 {
  font-size: 26px;
  font-weight: 700;
  width: 280px;
  line-height: 150%;
}
.display-container .certification-icon {
  width: 106px;
  height: 90x;
  object-fit: cover;
  position: absolute;
  right: 50px;
  bottom: 100px;
}
.display-container .wa-svg {
  position: absolute;
  bottom: -20px;
  width: 189px;
  height: 40px;
  left: 50px;
  right: unset;
}
@media (min-width: 480px) {
  .display-container .display-title {
    padding-left: 50px;
  }
}
@media (min-width: 810px) {
  .display-container {
    height: calc(100vh - var(--header-height));
  }
  .display-container .display-title h1 {
    font-size: 32px;
    width: 700px;
  }
  .display-container .display-title {
    padding-left: 120px;
  }
  .display-container .wa-svg {
    right: 50px;
    left: unset;
  }
}
.other-container {
  max-width: 1800px;
  padding: 0 120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 120px;
  margin-bottom: 120px;
  padding: 0 20px;
}
.relative {
  position: relative;
}
.bg-icon {
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
}
.bg-1 {
  left: 0;
  top: 45px;
}
.bg-2 {
  right: 0px;
  bottom: 300px;
}
@media (min-width: 810px) {
  .other-container {
    padding: 0 60px;
    gap: 150px;
    margin-top: 150px;
    margin-bottom: 150px;
  }
}
.analytics {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-direction: column;
}
.analytics > div {
  flex: 1;
}
.analytics .summary p {
  font-size: 14px;
  font-weight: 400;
}
.analytics .summary h2 {
  font-size: 26px;
  line-height: 150%;
  font-weight: 700;
}
.analytics .counts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.analytics .counts > div {
  padding: 16px 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border-bottom: 1px solid #e8deff;
  gap: 10px;
}
.analytics .counts > div h2 {
  font-size: 66px;
  line-height: 0.8em;
  font-weight: 400;
}
.analytics .counts > div p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Inter", serif;
}
@media (min-width: 810px) {
  .analytics {
    flex-direction: row;
  }
  .analytics .summary p {
    font-size: 18px;
  }
  .analytics .summary h2 {
    font-size: 32px;
  }
  .analytics .counts > div {
    padding: 32px 0;
  }
  .analytics .counts > div h2 {
    font-size: 98px;
  }
}
.products .products-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
  flex-direction: column;
}
.products .contact-us-btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}
.products .products-list > div {
  height: 260px;
  flex: 1;
  width: 100%;
  overflow: hidden;
  /* width: 100%; */
  /* width: calc(25% - 10px); */
  display: flex;
  justify-content: center;
  align-items: center;
}
.products .products-list img {
  object-fit: cover;
  width: 100%;
  height: 260px;
}
@media (min-width: 480px) {
  .products .products-list img {
    height: 360px;
    width: 70%;
  }
}
@media (min-width: 810px) {
  .products .products-list img {
    width: 100%;
  }
  .products .products-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .products .products-list > div {
    width: 48%;
    flex: none;
  }
  .products .products-list img {
    object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .products .products-list > div {
    width: auto;
    flex: 1;
  }
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.products-list > div,
.benefits > div {
  box-shadow: 0 10px 20px 5px #0000001a;
  border-radius: 25px;
}
.benefits > div {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  width: 100%;
}
.benefits > div img {
  width: 100px;
  height: 100px;
  margin-bottom: 26px;
}
.benefits > div h3 {
  font-size: 16px;
  font-weight: 600;
}
.benefits > div p {
  font-weight: 400;
  line-height: 1.5em;
}
@media (min-width: 810px) {
  .benefits > div {
    width: calc(50% - 15px);
  }
}
.heading {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(22, 46, 66);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5em;
}
.description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 64px;
  font-weight: 400;
}
.description span:not(:first-child) {
  margin-top: 16px;
}
.description span {
  display: block;
}
.contact-details-cont {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 500px;
  /* width: min-content; */
}
.contact-details-cont p,
.contact-details-cont a {
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 810px) {
  .contact-details-cont p,
  .contact-details-cont a {
    font-size: 18px;
  }
}
.undeline {
  color: var(--blue-color);
  text-decoration: underline;
  font-weight: 400;
}
.contact-us-social {
  display: flex;
  gap: 24px;
  justify-content: center;
}
footer {
  border-top: 1px solid #cbcbcb;
  padding: 20px 40px;
}
footer p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 810px) {
  footer p {
    font-size: 18px;
  }
}
.about-us-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
.about-us-cont .heading {
  font-size: 18px;
  font-weight: 700;
}
.about-us-cont .description span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  max-width: 690px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 810px) {
  .about-us-title {
    font-size: 32px;
  }
  .about-us-cont .heading {
    font-size: 20px;
  }
  .about-us-cont .description span {
    font-size: 18px;
  }
}
