@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --primary: #00668F;
  --secondary: #F9A51A;
  --grey: #666666;
  --greyMid: #c0c0c0;
  --greyLite: #f1f1f3;
  --greyBG: #f5f5f6;
  --white: #ffffff;
  --black: #000000;
  --stroke: #dadce0;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--black);
  padding-top: 70px;
  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(--secondary);
  text-decoration: none;
}
a:active, a:hover {
  color: var(--primary);
  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: 70px;
  background-color: var(--white);
  border-bottom: 1px solid var(--stroke);
}
.header .logo {
  display: inline-block;
  height: 60px;
  width: 200px;
  text-indent: -9999px;
  margin-top: 5px;
  overflow: hidden;
  background: url(../img/triquad-logo.svg) no-repeat center;
}
@media (max-width: 991px) {
  .header {
    height: 60px;
    padding: 5px 0;
  }
  .header .logo {
    height: 50px;
    width: 167px;
    margin-top: 0;
  }
}
.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;
  margin: 0 10px;
}
.main-nav ul li a {
  display: inline-block;
  height: 70px;
  line-height: 70px;
  padding: 0 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
}
.main-nav ul li a:hover {
  color: var(--secondary);
}
.main-nav ul li a.active {
  color: var(--secondary);
}
.main-nav ul li ul {
  display: none;
  position: absolute;
  left: 1px;
  top: 70px;
  margin: 0 0 0 -1px;
  padding: 0;
  list-style: none;
  width: 200px;
}
.main-nav ul li:hover > ul {
  display: block;
}
.main-nav ul li ul li {
  display: block;
  float: left;
  margin: 0;
}
.main-nav ul li ul a {
  display: block;
  padding: 8px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: normal;
  text-transform: capitalize;
  line-height: normal;
  height: auto !important;
  width: 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
}
.main-nav ul li ul a:hover {
  background: var(--secondary);
  color: var(--white);
}
.main-nav ul li ul ul {
  left: 150px;
  top: 0px;
  margin: 0 0 0 -1px;
}
/* mobile view nav */
@media (max-width: 992px) {
  .main-nav {
    display: block;
    float: none;
    position: fixed;
    z-index: 1000;
    left: -240px;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    width: 240px;
    margin-top: 0;
    background: var(--secondary);
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
  }
  .main-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    display: block;
    vertical-align: inherit;
  }
  .main-nav ul li a {
    position: static;
    display: block;
    padding: 10px;
    color: var(--white) !important;
    background: var(--secondary);
    letter-spacing: normal;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    vertical-align: inherit;
    box-shadow: none;
    transform: none;
    height: inherit;
  }
  .main-nav ul li a:hover {
    background: var(--primary);
    color: var(--white) !important;
  }
  .main-nav ul li ul {
    display: block;
    position: inherit;
    left: inherit;
    top: inherit;
    margin: inherit;
    padding: inherit;
    width: inherit;
  }
  .main-nav ul li ul li {
    border-bottom: none;
    float: none;
  }
  .main-nav ul li ul li:before {
    content: ' \00BB';
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.5);
  }
  .main-nav ul li ul a {
    padding: 5px 10px 5px 30px;
    font-size: 13px;
    line-height: 15px;
    width: inherit;
    border-bottom: none;
  }
  .main-nav ul li ul li ul {
    margin: 0 0 0 20px;
    left: inherit;
  }
  .main-nav.show-menu {
    left: 0px;
  }
}
/* mobile view nav --- ends */
.mobile-nav-icon {
  display: none;
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 7px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.mobile-nav-icon div {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  height: 5px;
  border-radius: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.mobile-nav-icon.nav-icon-close div:nth-child(1) {
  margin-top: 15px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-nav-icon.nav-icon-close div:nth-child(2) {
  display: none;
}
.mobile-nav-icon.nav-icon-close div:nth-child(3) {
  margin-top: -10px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 992px) {
  .mobile-nav-icon {
    display: block;
  }
}
.footer {
  background-color: var(--greyBG);
  padding: 90px 0 20px 0;
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 15px;
}
.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: 8px 0;
}
.footer a:hover {
  color: var(--black);
}
.footer .logo {
  display: inline-block;
  height: 60px;
  width: 200px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../img/triquad-logo.svg) no-repeat center;
  margin-bottom: 20px;
}
.section-title {
  padding: 60px 15px;
  text-align: center;
  background-color: #F1F1F1;
}
.section-title h1 {
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 0;
  margin: 0;
}
.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 - 70px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@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;
}
.banner-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--white);
}
.banner-content p {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .banner-content p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.home-about .custom-text-block {
  padding: 100px 15px;
}
.home-about .img-block {
  background-image: url(../img/home-about.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-about p {
  text-align: justify;
}
.custom-text-block {
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .custom-text-block {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.home-section {
  padding: 90px 0;
}
@media (max-width: 991px) {
  .home-section {
    padding: 40px 0;
  }
}
.home-services {
  background: var(--greyBG);
}
.home-services .block {
  background-color: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 20, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-services .block:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 30, 0.1);
}
.home-services h4 {
  padding: 0;
}
.home-services .home-icon {
  width: 96px;
  margin-bottom: 20px;
}
.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-ul {
  padding-left: 0;
}
.fancy-ul li {
  list-style: none;
  position: relative;
  margin-bottom: 15px;
  padding: 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;
}