@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --primary: #005a7e;
  --secondary: #f9a51a;
  --grey: #666666;
  --greyMid: #c0c0c0;
  --greyLite: #f1f1f3;
  --greyBG: #f5f5f6;
  --white: #ffffff;
  --black: #000000;
  --stroke: #dadce0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  height: 100%;
}
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--black);
  padding-top: 90px;
  overflow-x: hidden;
}
body.menu-opened {
  overflow: hidden;
}
@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }
}
::-moz-selection {
  color: var(--white);
  background: var(--primary);
}
::selection {
  color: var(--white);
  background: var(--primary);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: var(--greyMid);
  border-radius: 8px;
  height: 42px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--grey);
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:active, a:hover {
  color: var(--secondary);
  outline: 0;
  text-decoration: none;
}
a:focus {
  outline: none;
}
b, strong {
  font-weight: 800;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0 0 20px 0;
  font-weight: 800;
  color: var(--primary);
}
h1 {
  font-size: 56px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 16px;
}
p {
  margin: 0;
  padding: 0 0 20px 0;
  line-height: 24px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
}
video {
  display: block;
  width: 100%;
  height: auto;
}
.xtarget:target {
  margin-top: -12px;
  padding-top: 180px;
}
/* custom bootstrap styles */
.text-primary {
  color: var(--primary) !important;
}
.form-control {
  border-radius: 0;
  padding: 15px;
  font-size: 14px;
}
/* custom bootstrap styles --- ends */
.wrapper {
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.site-section {
  scroll-snap-align: start;
}
.global-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: stretch;
}
.content-area {
  flex-grow: 1;
}
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  padding-top: 5px;
  background-color: var(--white);
  border-bottom: 1px solid var(--stroke);
}
.header .logo {
  display: inline-block;
  height: 70px;
  width: 280px;
  margin-top: 6px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../img/quadrantech-logo.svg) no-repeat center;
}
@media (max-width: 991px) {
  .header {
    height: 60px;
    padding: 5px 0;
  }
  .header .logo {
    height: 50px;
    width: 200px;
    margin-top: 0px;
  }
}
.main-nav ul, .main-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav ul li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 97;
}
.main-nav ul li a {
  display: inline-block;
  height: 85px;
  line-height: 40px;
  padding: 20px 22px;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--primary);
  transition: all 0.3s ease-out;
  pointer-events: all;
}
.main-nav ul li a:hover {
  color: var(--secondary);
}
.main-nav ul li a.active {
  color: var(--secondary);
}
.main-nav ul li a.services {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' width='18' height='18'%3E%3Cpath fill='rgb(192,192,192)' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 96px 32px;
  background-size: 12px;
}
.main-nav ul li a.services:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' width='18' height='18'%3E%3Cpath fill='rgb(186,166,95)' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
}
.sub-nav {
  display: none;
  position: fixed;
  z-index: 98;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
}
.sub-nav::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 89px;
  height: 1px;
}
.sub-nav.show {
  display: block;
}
.sub-nav .content {
  background-color: var(--white);
  padding-top: 90px;
}
.sub-nav .border-right {
  border-right: 1px solid var(--stroke);
}
.sub-nav h3 {
  font-size: 16px;
  font-weight: 700;
  color: #acacbc;
  padding: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sub-nav h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding: 0 0 10px 0;
}
.sub-nav a.main-link {
  font-size: 24px;
  display: block;
  padding: 10px 15px;
  color: var(--black);
}
.sub-nav a.main-link.services {
  position: relative;
}
.sub-nav a.main-link.services::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 0px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' width='18' height='18'%3E%3Cpath fill='rgb(0,0,0)' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transform: rotate(180deg);
  transition: all 0.3s ease-out;
}
.sub-nav a.main-link.services.open::before {
  top: 11px;
  right: 6px;
  transform: rotate(0deg);
}
.sub-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-nav ul li {
  margin-bottom: 4px;
}
.sub-nav ul li a {
  display: block;
  border-radius: 10px;
  padding: 8px 15px;
  color: var(--black);
  transition: all 0.3s ease-out;
}
.sub-nav ul li a:hover {
  background-color: var(--greyBG);
}
.sub-nav ul li p {
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}
.sub-nav .icon {
  padding-left: 40px;
  background-position: 8px 8px;
  background-repeat: no-repeat;
  background-size: 24px;
}
.sub-nav .icon-adm {
  background-image: url("../img/icon-adm.png");
}
.sub-nav .icon-qaa {
  background-image: url("../img/icon-qaa.png");
}
.sub-nav .icon-den {
  background-image: url("../img/icon-den.png");
}
.sub-nav .icon-dop {
  background-image: url("../img/icon-dop.png");
}
.sub-nav .icon-its {
  background-image: url("../img/icon-its.png");
}
.sub-nav .icon-ifs {
  background-image: url("../img/icon-ifs.png");
}
.sub-nav .icon-cs-01 {
  background-image: url("../img/icon-cs-01.png");
}
.sub-nav .icon-cs-02 {
  background-image: url("../img/icon-cs-02.png");
}
.sub-nav .icon-cs-03 {
  background-image: url("../img/icon-cs-03.png");
}
/* mobile view nav */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .sub-nav::before {
    top: 60px;
  }
  .sub-nav .content {
    padding: 100px 0 40px 0;
    height: 100%;
    overflow-y: auto;
  }
  .sub-nav .border-right {
    border-right: none;
  }
  .sub-links {
    display: none;
  }
}
.mobile-nav-icon {
  display: none;
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.mobile-nav-icon div {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  margin: 8px 0;
  transition: all 0.3s ease-out;
}
.mobile-nav-icon.nav-icon-close div:nth-child(1) {
  margin-top: 15px;
  transform: rotate(45deg);
}
.mobile-nav-icon.nav-icon-close div:nth-child(2) {
  margin-top: -10px;
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .mobile-nav-icon {
    display: block;
  }
}
.footer {
  background-color: var(--greyBG);
  padding: 90px 0 40px 0;
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
}
.footer h4 {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 15px;
  color: rgba(0, 0, 0, .6);
}
.footer h4 a {
  margin: 0;
}
.footer ul, .footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul h4, .footer ul p {
  margin: 0;
  padding: 0;
}
.footer a {
  display: inline-block;
  color: rgba(0, 0, 0, .6);
  margin: 5px 0;
}
.footer a:hover {
  color: var(--black);
}
.footer .logo {
  display: inline-block;
  height: 50px;
  width: 200px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../img/quadrantech-logo.svg) no-repeat center;
  margin-bottom: 20px;
}
.section-title {
  padding: 60px 15px;
  text-align: center;
  background-color: var(--primary);
  background-image: url("../img/sec-title-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-title h1 {
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 0;
  margin: 0;
  color: var(--white);
}
.section-content {
  padding: 60px 0;
}
.section-content p {
  text-align: justify;
}
@media (max-width: 767px) {
  .section-title {
    padding: 30px 15px;
  }
  .section-content {
    padding: 30px 0;
  }
}
.section-call-to-action {
  padding: 90px 0;
  background-color: var(--greyLite);
  background-image: url("../img/sec-img-call-to-action.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
}
.section-call-to-action h2 {
  color: var(--white);
}
.section-call-to-action p {
  font-size: 20px;
}
@media (max-width: 767px) {
  .section-call-to-action {
    padding: 30px 0;
  }
}
.grey-bg {
  background-color: var(--greyBG);
}
.white-bg {
  background-color: var(--white);
}
.intro-banner {
  position: relative;
  height: calc(100vh - 90px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-pattern {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background-image: url("../img/home-intro-pattern.svg");
  background-repeat: no-repeat;
  background-position: bottom -2px center;
  background-size: 100%;
}
@media (max-width: 991px) {
  .intro-banner {
    height: calc(100vh - 60px);
  }
}
#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}
.banner-content p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
@media (max-width: 991px) {
  .banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .banner-content p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.home-section {
  padding: 90px 0;
}
@media (max-width: 991px) {
  .home-section {
    padding: 40px 0;
  }
}
.fancy-ol {
  counter-reset: item;
  padding-left: 0;
}
.fancy-ol li {
  list-style: none;
  position: relative;
  margin: 10px 0;
  padding: 20px 20px 20px 60px;
  background: var(--greyBG);
  border-radius: 8px;
}
.grey-bg .fancy-ol li {
  background: var(--white);
}
.fancy-ol li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 15px;
  top: 15px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.fancy-ol li h5 {
  margin: 0;
  padding-bottom: 10px;
}
.fancy-ol li p {
  margin: 0;
  padding: 0;
  text-align: left;
}
.fancy-ol .spl-box {
  background-color: var(--white);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.fancy-ul {
  padding-left: 0;
}
.fancy-ul li {
  list-style: none;
  position: relative;
  margin: 10px 0;
  padding: 15px 20px;
  background: var(--greyBG);
  border-radius: 8px;
}
.grey-bg .fancy-ul li {
  background: var(--white);
}
.fancy-ul li h5 {
  margin: 0;
  padding-bottom: 10px;
}
.fancy-ul li p {
  margin: 0;
  padding: 0;
  text-align: left;
}
.spl-grey-box {
  background-color: var(--greyBG);
  padding: 30px;
  border-radius: 20px;
  margin-top: 60px;
}