@font-face {
  font-family: 'ZeroesThree';
  src: url('/application/themes/intellectechs/css/ZeroesThree.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'ZeroesThree', sans-serif;
  font-weight: 400;
}
h3 {
  font-size: 32px;
}
.items-center {
  align-items: center;
}
.content-center {
  justify-content: center;
}
.content-end {
  justify-content: flex-end;
}
.flex {
  display: flex;
}
.min-h-500 {
  min-height: 500px;
}
.full-width .container {
  width: 100%;
  max-width: none !important;
}
.xs-text-center {
  text-align: center;
}
.navbar {
  background-color: transparent !important;
}
.navbar-brand {
  display: none;
}
div.navbar-collapse {
  justify-content: flex-end;
}
.navbar-nav .nav-link {
  position: relative;
  color: white;
  /* White text color */
  text-decoration: none;
  /* Remove underline from links */
  font-weight: 600;
  /* Bold text */
  padding: 10px 15px;
  /* Add horizontal padding for better background effect */
  transition: all 0.3s ease-in-out;
  /* Smooth hover effect */
}
.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  /* Thickness of the border */
  background-color: transparent;
  /* Default transparent */
  transition: background-color 0.3s ease-in-out;
  /* Smooth color change */
}
.navbar-nav .nav-link::before {
  top: 0;
  /* Top border */
  background-color: white;
}
.navbar-nav .nav-link::after {
  bottom: 0;
  /* Bottom border */
  background-color: white;
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after {
  background-color: transparent;
  /* Remove borders on hover */
}
.navbar-nav .nav-link:hover {
  background-color: #662d91 !important;
  /* Purple background on hover */
  color: white !important;
  /* White text on hover */
}
.hover-section {
  display: flex;
  font-family: "Myriad Pro", sans-serif;
  font-size: 28px;
  font-weight: 600;
  justify-content: center;
  position: relative;
  align-items: center;
  gap: 60px;
  /* Space between cards */
  padding: 50px 0;
  /* Give space for the 3D effect */
}
.hover-card {
  position: relative;
  width: 300px;
  height: 135px;
  background: white;
  color: #662d91;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  transform: rotate(-15deg) skew(15deg) translate(0, 0);
  transition: all 0.5s ease;
  box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.3);
  border: none;
  overflow: visible;
}
.hover-card .hover-label,
.hover-card span {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: color 0.5s ease;
  line-height: 1.2;
}
.hover-card .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.hover-card:before {
  content: '';
  position: absolute;
  top: 4px;
  left: -8px;
  height: 100%;
  width: 8px;
  background: #b1b1b1;
  transition: all 0.5s ease;
  transform: rotate(0deg) skewY(-45deg);
}
.hover-card:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -4px;
  height: 8px;
  width: 100%;
  background: #b1b1b1;
  transition: all 0.5s ease;
  transform: rotate(0deg) skewX(-45deg);
}
.hover-card:hover {
  transform: rotate(-15deg) skew(15deg) translate(10px, -7.5px);
  box-shadow: -40px 40px 40px rgba(0, 0, 0, 0.4);
  background: #662d91;
  color: white;
}
.hover-card:hover .hover-label,
.hover-card:hover span {
  color: white;
}
.hover-card:hover .hover-image {
  opacity: 0.8;
}
.hover-card:hover:before {
  background: #220f30;
}
.hover-card:hover:after {
  background: #3d1b57;
}
.feature-grid {
  display: grid;
  /* Use grid layout */
  justify-content: space-between;
  /* Automatically distribute space between columns */
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  grid-template-columns: repeat(5, 200px);
  /* Fixed column width matching card width */
  width: 1116px;
  /* Exact width to match the section above */
  margin: 0 auto;
  /* Center the grid horizontally */
}
@media (max-width: 768px) {
  .feature-grid {
    /* Tablet/mobile screens */
    grid-template-columns: repeat(3, 150px);
    /* 3 cards in the first row */
    grid-template-rows: auto auto;
    /* Create 2 rows */
    max-width: calc(490px);
    /* Constrain max width for 3 cards + gaps */
    justify-content: center;
    /* Center both rows */
  }
}
@media (max-width: 480px) {
  .feature-grid {
    /* Smaller mobile screens */
    grid-template-columns: repeat(2, 150px);
    /* 2 cards per row */
    grid-template-rows: auto auto;
    /* Create 2 rows automatically */
    max-width: calc(320px);
    /* Constrain max width for 2 cards + gaps */
    justify-content: center;
    /* Center both rows */
  }
}
.feature-card {
  position: relative;
  width: 200px;
  /* Width of each card */
  height: 200px;
  /* Height of each card */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.feature-card .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease-in-out;
}
.feature-card .feature-label {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: #fff;
  /* Adjust to your theme */
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}
.feature-card .feature-hint {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-card:hover {
  transform: translateY(-10px);
  /* Raise the card up by 10px */
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.6);
  /* Enhanced shadow for depth */
}
.feature-card:hover .feature-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  /* Lighten the overlay on hover */
}
.feature-card:hover .feature-hint {
  opacity: 1;
  transform: translateY(0);
}
.feature-training .feature-overlay {
  background-color: rgba(76, 51, 98, 0.75);
}
.feature-testing .feature-overlay {
  background-color: rgba(82, 80, 158, 0.75);
}
.feature-contracts .feature-overlay {
  background-color: rgba(1, 162, 237, 0.75);
}
.feature-certification .feature-overlay {
  background-color: rgba(90, 136, 198, 0.75);
}
.feature-careers .feature-overlay {
  background-color: rgba(153, 103, 167, 0.75);
}
/* Specific feature card background images */
.feature-training {
  background-image: url('/application/files/5717/3265/3237/4b885e73ff55dab909022c3751e40675.jpeg');
}
.feature-testing {
  background-image: url('/application/files/3017/3265/3243/testingandtraining_1.png');
}
.feature-contracts {
  background-image: url('/application/files/4417/3265/3243/AdobeStock_576966021_1.png');
}
.feature-certification {
  background-image: url('/application/files/6917/3265/3243/Rectangle_2.png');
}
.feature-careers {
  background-image: url('/application/files/4417/3265/3242/managedit1_1.png');
}
#industry-news .row .col-md-3 {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
#industry-news .row .col-md-3 .ccm-block-content {
  width: 100%;
  text-align: center;
}
.white-button {
  background-color: white;
  color: black;
  border: 1px solid black;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  margin-bottom: 20px;
}
.white-button:hover {
  background-color: #662d91;
  color: white;
}
.purple-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 60px;
  cursor: pointer;
  transition: 0.5s;
  text-decoration: none;
  border: none;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.purple-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(45deg, #662d91 50%, #00afeb 100%);
  opacity: 0;
  transition: 0.5s;
}
.purple-button::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(45deg, #662d91 50%, #00afeb 100%);
  transition: 0.5s;
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
}
.purple-button .phone-icon {
  position: relative;
  font-size: 1.2em;
  color: #662d91;
  transition: all 0.5s ease;
  transition-delay: 0s;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
}
.purple-button i {
  position: relative;
  font-size: 1.2em;
  color: #662d91;
  transition: all 0.5s ease;
  transition-delay: 0s;
  z-index: 2;
  transform: scale(1);
}
.purple-button .phone-text {
  position: absolute;
  color: white;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  font-weight: 600;
  transform: scale(0);
  transition: all 0.5s ease;
  transition-delay: 0s;
  z-index: 2;
  opacity: 0;
}
.purple-button:hover {
  width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}
.purple-button:hover::before {
  opacity: 1;
}
.purple-button:hover::after {
  opacity: 0.5;
}
.purple-button:hover .phone-icon,
.purple-button:hover i {
  transform: scale(0);
  color: white;
  transition-delay: 0.1s;
}
.purple-button:hover .phone-text {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}
footer {
  position: relative;
  background-color: unset !important;
  color: white !important;
  overflow: hidden;
}
footer .footer-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer p {
  font-size: 16px;
}
footer h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}
footer #services p,
footer #about p,
footer #address p {
  font-size: 14px;
}
.list-inline {
  display: flex;
  gap: 15px;
  /* Space between icons */
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-start;
}
.list-inline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  /* Diameter of the circle */
  height: 50px;
  /* Diameter of the circle */
  border-radius: 50%;
  /* Makes the background circular */
  background-color: #000;
  /* Circle background color */
  transition: transform 0.3s ease, background-color 0.3s ease;
  /* Smooth hover effect */
}
.list-inline-item a {
  color: #fff;
  /* Icon color */
  font-size: 20px;
  /* Icon size */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.list-inline-item:hover {
  background-color: #662d91;
  /* Purple hover effect */
  transform: scale(1.1);
  /* Slightly enlarge the circle on hover */
}
.list-inline-item svg {
  fill: #fff;
  /* Ensures SVG icons inherit white color */
  width: 24px;
  /* Size of the SVG icon */
  height: 24px;
}
.ccm-block-social-links a {
  color: #fff !important;
}
.ccm-block-social-links i {
  font-size: 18px !important;
}
.ccm-block-social-links svg {
  height: 16px !important;
  width: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}
#video-header {
  margin-top: -188px;
}
#header {
  position: relative;
  z-index: 1000;
  background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.commutes {
  min-height: 400px !important;
  margin-top: 20px;
}
.commutes-info {
  display: none !important;
}
#logo {
  padding-left: 0 !important;
}
#logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
#logos picture {
  display: inline-block;
  animation: scroll-left 40s linear infinite;
}
#logos picture img {
  display: block;
  height: auto;
  max-width: none;
}
#logos picture::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-image: url('/application/files/6217/6295/7317/Logos-Bar_1125.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  /* Start exactly at the beginning */
  transform: translateX(0);
  /* No offset */
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
    /* Move by full width to show the duplicate */
  }
}
.full-width .container {
  width: 100%;
}
.video-header {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  margin-left: -15px;
}
.video-header .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.video-header .video-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  text-align: center;
}
.video-header .stats-overlay {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 90%;
  max-width: 1120px;
}
.video-header .stats-overlay .stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .video-header .stats-overlay .stats-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.video-header .stats-overlay .stat-item {
  text-align: center;
  color: white;
  flex: 1;
}
.video-header .stats-overlay .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'ZeroesThree', sans-serif;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 5px;
  display: block;
}
@media (max-width: 768px) {
  .video-header .stats-overlay .stat-item .stat-number {
    font-size: 2.5rem;
  }
}
.video-header .stats-overlay .stat-item .stat-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .video-header .stats-overlay .stat-item .stat-label {
    font-size: 0.9rem;
  }
}
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}
.xs-text-center {
  text-align: center;
}
.info-blocks-container {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.info-blocks-container .row {
  display: flex;
  flex-wrap: wrap;
}
.info-blocks-container .row .col-md-4 {
  display: flex;
  flex-direction: column;
}
.info-blocks-container .row .col-md-4 .ccm-custom-style-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.info-blocks-container .ccm-block-content {
  padding: 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.info-blocks-container p {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
}
.info-blocks-container li {
  font-size: 14px;
}
.info-blocks-container h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ccc;
  color: #662d91;
}
.info-blocks-container h4:first-of-type {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
}
.info-blocks-container h4:first-of-type::before {
  content: '';
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  margin-right: 20px;
  margin-left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease-in-out;
}
.info-blocks-container .govt-services .ccm-block-content:hover h4 {
  background-color: #662d91;
  color: white;
}
.info-blocks-container .govt-services .ccm-block-content:hover h4:before {
  opacity: 1;
  background-image: url('/application/files/6317/6296/2653/Icon-Capitol-White-NoBG.png');
}
.info-blocks-container .govt-services h4 {
  transition: background-color 0.5s ease-in-out, color 1s ease-in-out;
}
.info-blocks-container .govt-services h4:before {
  background-image: url('/application/files/4617/6295/9308/Icon-Capitol-NoBG.png');
  transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
}
.info-blocks-container .compliance-services .ccm-block-content:hover h4 {
  background-color: #662d91;
  color: white;
}
.info-blocks-container .compliance-services .ccm-block-content:hover h4:before {
  opacity: 1;
  background-image: url('/application/files/2717/6296/2653/Icon-Lock-White-NoBG.png');
}
.info-blocks-container .compliance-services h4 {
  transition: background-color 0.5s ease-in-out, color 1s ease-in-out;
}
.info-blocks-container .compliance-services h4:before {
  background-image: url('/application/files/8517/6295/9308/Icon-Lock-NoBG.png');
  transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
}
.info-blocks-container .managed-services .ccm-block-content:hover h4 {
  background-color: #662d91;
  color: white;
}
.info-blocks-container .managed-services .ccm-block-content:hover h4:before {
  opacity: 1;
  background-image: url('/application/files/7417/6468/6648/Icon-CustomerService-White-NoBG_4.png');
}
.info-blocks-container .managed-services h4 {
  transition: background-color 0.5s ease-in-out, color 1s ease-in-out;
}
.info-blocks-container .managed-services h4:before {
  background-image: url('/application/files/4317/6356/3260/Icon-CustomerService-Purple-NoBG-1.png');
  transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
}
.value-container h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  background: linear-gradient(to bottom, #662d91, #4b216a);
}
.m-w-1080 {
  max-width: 1080px;
}
