@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,200;0,300;1,100;1,200;1,300;1,500&display=swap");

:root {
  --green: #1cdb86;
  --green-active: #1cdb8680;
  --dark: #00141d;
}

body {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  font-family: "Publica Sans", sans-serif;
  background-color: #fff;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-active);
}

li::marker {
  color: var(--green);
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 15px 20px 15px 20px;
  background-color: transparent;
  box-shadow: none;
  position: fixed;
  top: 0px;
  z-index: 2;
  transition: 285ms ease-in-out;
}

header img {
  height: 70px;
  width: fit-content;
  max-width: 100px;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

header a, .burger-links a {
  -webkit-font-smoothing: antialiased;
  font-family: "Publica Sans", sans-serif;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  color: #fff;
  font-weight: 500;
}

.header-scroll {
  background: #ffff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px;
  transition: 285ms ease-in-out;
}

main {
  width: 100%;
  height: 80vh;
  background-image: url("/assets/IntelliPOS_Banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

main section {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main img {
  width: 650px;
  height: fit-content;
}

main h1 {
  font-size: 55px;
  line-height: 50px;
  padding: 0px;
  margin: 0px 0px 10px 0px;
}

main h3 {
  font-size: 15px;
  line-height: 15px;
  font-weight: normal;
  padding: 0px;
  margin: 0px;
}

main > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 25px;
}

.about-wrapper-blocks {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.about-wrapper-blocks .block {
  width: calc(25% - 20px);
  height: 220px;
  background-color: #f5f6fa;
  border-radius: 10px;
  padding: 15px;
}

.about-wrapper-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--dark);
  padding-top: 60px;
}

.headline {
  font-size: 45px;
  line-height: 45px;
  margin: 0px;
}

.headline-2 {
  font-size: 35px;
  line-height: 35px;
  margin: 0px;
}

.about-wrapper-text p,
.technical-specs p {
  width: 60%;
  max-width: 60%;
  text-align: center;
  margin: 0px;
  margin-top: 25px;
}

.specification li,
.specification p,
.about-wrapper-text p,
.technical-specs p,
.tech-detail p,
.tech-detail li {
  font-size: 19px;
  line-height: 26px;
}

.green-text {
  color: var(--green);
}

.block-header {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.block-header svg {
  width: 45px;
  height: 45px;
  fill: var(--green);
}

.block-header strong {
  font-size: 18px;
  width: calc(100% - 65px);
}

.about-wrapper-blocks .block li,
.about-wrapper-blocks .block p {
  font-size: 18px;
}

.technical-specs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
  flex-direction: column;
}

.specifications {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 25px;
}

.specification {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 65px;
}

.text-specifications {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 80px;
}

.specification img {
  width: 50%;
  height: auto;
}

.specification img:nth-child(1) {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.specification img:nth-child(2) {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.text-specifications p,
.text-specifications li,
.tech-detail p,
.tech-detail li {
  width: 90% !important;
  max-width: 90% !important;
  text-align: left;
}

.tech-details {
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
}

.tech-detail {
  width: 33%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left !important;
  margin-right: 30px;
  margin-left: 30px;
}

.tech-detail img {
  width: 100%;
  height: fit-content;
}

.separator {
  height: 100px;
  width: 1px;
}

.docs {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.download-docs {
  width: 32%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 10px;
  padding: 10px;
}

.download-docs h4{
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.download-docs a {
  width: 50px;
  height: 50px;
  background-color: var(--green);
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.download-docs a svg {
  width: 35px;
  height: 35px;
}

footer {
  width: 100%;
  margin-top: 40px;
  padding: 15px;
  height: 520px;
  background-image: url("/assets/IntelliPOS_Footer.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  color: #fff;
  padding-top: 65px;
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
}

.contact-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 385px;
  gap: 25px;
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
}

.contact-detail  a {
  text-decoration: none;
  color: #fff;
}

.contact-detail svg {
  width: 30px;
  height: 30px;
}

.separator-footer {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 25px;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 25px;
  gap: 45px;
}

.social-media svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.pib-and-id {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  margin-top: 20px;
}

.pib-and-id p {
  margin: 0;
  padding: 0;
}

.copyright {
  position: absolute;
  bottom: -5px;
  left: 10px;
  color: #fff;
}

.tech-detail img {
  border-radius: 10px;
}

header svg {
  color: #fff !important;
  width: 35px;
  height: 35px;
  display: none;
}

.burger-content {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  z-index: 3;
  transform: translateX(100%);
  transition: transform 285ms ease-in-out;
}

.show-burger {
  transform: translateX(0%);
}

.hide-burger {
  transform: translateX(100%);
}

.close-burger-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}

.close-burger-btn svg {
  width: 35px;
  height: 35px;
}

.burger-links {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}

.burger-links a {
  color: var(--dark) !important;
}