* {
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: #343634;
  margin: 0 auto;
  padding: 0 !important;
  font-size: 12pt;
  background-color: black;
  backdrop-filter: blur(5px) brightness(0.9);
  background-size: cover;
  background-attachment: fixed;
  background-position: top center;
}
body header, body h1, body main, body section {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
body header {
  padding-top: 21.44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
body header .logo {
  max-width: 50%;
  max-height: 150px;
  width: auto;
  height: auto;
}
body header .name {
  color: white;
  text-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
}
body h1 {
  line-height: 1.6em;
  margin: 0 auto;
  text-align: center;
  padding: 10px 20px;
  font-weight: 900;
  background: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 18pt;
}
body main {
  background-color: white;
  border: 5px solid white;
}
body main .divider-line {
  height: 5px;
  background-color: white;
  width: 100%;
}
body main section {
  display: flex;
  flex-direction: column;
}
body main .short-description {
  text-align: center;
  padding: 40px 40px 20px 40px;
  line-height: 1.6em;
}
body main .features {
  padding: 20px 40px;
}
body main .features ul {
  list-style: none;
  margin: 0 auto;
  padding-inline-start: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
body main .features ul li {
  gap: 3px;
  display: inline-block;
  position: relative;
}
body main .features ul li img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
body main .features ul li[data-title]:hover:after {
  display: block;
  content: attr(data-title);
  position: absolute;
  background: #eee;
  padding: 4px;
  left: 50%;
  top: calc(50% - 10px);
  border: 1px solid rgba(128, 128, 128, 0.1);
  z-index: 2;
  width: max-content;
}
body main .long-description {
  text-align: center;
  padding: 20px 40px 40px 40px;
  line-height: 1.6em;
}
body main footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
body main footer .contact-details {
  flex: 1;
}
body main footer .contact-details ul {
  list-style: none;
  padding-inline-start: 0;
}
body main footer .enquiry-button {
  flex: 1;
  text-align: center;
}
body main footer .enquiry-button button {
  padding: 10px 17px;
  width: 200px;
  height: 50px;
  font-size: 17px;
  background-color: #ff7c46;
  color: white;
  border-radius: 25px;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
}
body main footer .powered-by {
  flex: 1;
  text-align: end;
  z-index: 10;
  padding-top: 5px;
}
body main footer .powered-by img {
  height: 16px;
  padding-top: 3px;
  z-index: 0;
  margin: 0 -5px;
}
@media (max-width: 640px) {
  body header .logo {
    width: 40%;
  }
  body main .features {
    padding: 0 20px;
    max-width: 85%;
  }
  body main .features ul {
    width: 100%;
    padding: 20px;
  }
  body main .features ul li {
    position: static;
  }
  body main .features ul li[data-title]:hover:after {
    left: 0;
    top: auto;
    right: 0;
    margin: -3px auto;
  }
  body main footer {
    flex-direction: column;
    padding: 5px;
    align-items: center;
    text-align: center;
  }
  body main footer .contact-details {
    order: 2;
  }
  body main footer .enquiry-button {
    order: 1;
    margin: 30px 0 10px;
  }
  body main footer .powered-by {
    order: 3;
    margin: 25px 10px 10px 10px;
  }
}
@media (max-width: 460px) {
  body main .short-description {
    padding: 20px 20px;
  }
  body main .features ul {
    width: 100%;
    padding: 5px;
  }
  body main .long-description {
    padding: 20px 20px;
  }
}

html.modal-open,
body.modal-open {
  overflow-y: hidden;
  overscroll-behavior: none;
}
body.modal-open {
  backdrop-filter: none;
}
body.modal-open .nav-object {
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
body.modal-open.active .nav-object {
  opacity: 1;
}

.hidden {
  display: none;
}

/*# sourceMappingURL=classic.css.map */
