@import url('../fonts/orbitron-font.css');

:root {
  /* custom properties must not include !important; apply importance in rules if needed */
  --default-font: 'Ubuntu', Verdana, Arial, Helvetica;
  --heading-font: 'Ubuntu', sans-serif;
  --nav-font: 'Ubuntu';
  --background-color: #000000;
  --default-color: #f6f6f6;
  --heading-color: #ffffff;
  --accent-color: #12abdb;
  --surface-color: #181a1b;
  --contrast-color: #000000;
  --nav-color: #f6f6f6;
  --nav-hover-color: #22242a;
  --nav-mobile-background-color: #181a1b;
  --nav-dropdown-background-color: #181a1b;
  --nav-dropdown-color: #f6f6f6;
  --nav-dropdown-hover-color: #12abdb;
  scroll-behavior: smooth;
}

/* Color Presets */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #f6f6f6;
}

.dark-background {
  --background-color: #272936;
  --default-color: #f6f6f6;
  --heading-color: #f6f6f6;
  --surface-color: #404356;
  --contrast-color: #f6f6f6;
}

/* General Styling */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

/* ==================================================
   Table of Contents
   - Variables / Color presets
   - General Styling
   - Header / Navigation
   - Sections: Home, About, Services, Portfolio, Contact
   - Utilities: Buttons, Preloader, Helpers
   - inTheMarkets (Swiper) - controls & pagination
   - Clickable image overlay
   Use these headings to navigate and maintain styles.
   ================================================== */

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Header */
.header {
  color: var(--default-color);
  background-color: transparent !important;
  padding: 20px 0;
  transition: background-color 0.5s, box-shadow 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* (removed duplicate commented rules for .scrolled .header) */

.scrolled .header {
  background-color: var(--background-color) !important;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Navigation Menu */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: #12abdb !important;
    color: var(--contrast-color) !important;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* allow wrapping on mobile so long labels/tooltips don't overflow */
    white-space: normal;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Footer */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
  box-shadow: 0 -6px 24px -8px rgba(18, 171, 219, 0.18);
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 10px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: '';
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Page Titles & Breadcrumbs */
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: '';
  background-color: color-mix(in srgb,
      var(--background-color),
      transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: '/';
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* Global Sections */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

.section-title {
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.section-title h2::after {
  content: '';
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: none;
  font-family: var(--heading-font);
}

/* Home Section */
.home {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000000;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.home .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}

.home h2 {
  padding-top: 50px;
  margin-bottom: 30px;
  font-size: 90px;
  font-weight: lighter;
}

/* Reduce the very large headline on medium screens */
@media (max-width: 1024px) {
  .home h2 {
    font-size: 48px;
  }
  .home .carousel-container {
    min-height: 65vh;
  }
  .page-title {
    padding: 120px 0 60px 0;
  }
}

.home h2 span {
  text-decoration: underline;
}

.home p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.home .carousel-control-prev,
.home .carousel-control-next {
  width: 10%;
}

.home .carousel-control-next-icon,
.home .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  width: auto;
  height: auto;
}

.btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  /* margin: 10px; */
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  background: transparent;
}

.btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .home p {
    max-width: 60%;
  }

  .home .carousel-control-prev,
  .home .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .home .carousel-container {
    min-height: 90vh;
  }

  .home h2 {
    font-size: 28px;
  }
}

.home .home-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.home .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #12abdb;
  opacity: 0.6;
}

.home .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -3s;
  fill: #f6f6f6;
  opacity: 0.4;
}

.home .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #0070ad;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* About Section */
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: flex-start;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
  vertical-align: text-top;
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/* Services Section */
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 30px 50px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.services .service-item .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 30px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item a:hover {
  color: inherit;
  text-decoration: underline;
  transition: color 200ms ease, background 200ms ease, transform 160ms ease, box-shadow 200ms ease;
  border-radius: 8px;
  display: inline-block;
}
/* Duplicate service-item block removed — styles consolidated above. */


/* Services-noIcon Section */
.services .service-item-noIcon {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 30px 50px 40px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.services .service-item-noIcon .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 30px);
}

.services .service-item-noIcon h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item-noIcon p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item-noIcon:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.services .service-item-noIcon:hover h3 {
  color: var(--accent-color);
}

.services .service-item-noIcon a:hover {
  color: inherit;
  text-decoration: underline;
  transition: color 200ms ease, background 200ms ease, transform 160ms ease, box-shadow 200ms ease;
  border-radius: 8px;
  display: inline-block;
}


/* Portfolio Section (Industry Solutions) */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

/* Contact Section */
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .email-form {
  height: 100%;
}

.contact .email-form input[type='text'],
.contact .email-form input[type='email'],
.contact .email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb,
      var(--background-color),
      transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .email-form input[type='text']:focus,
.contact .email-form input[type='email']:focus,
.contact .email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .email-form input[type='text']::placeholder,
.contact .email-form input[type='email']::placeholder,
.contact .email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .email-form button[type='submit'] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type='submit']:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact-quick-link a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s;
  padding-left: 5px;
}

.contact-quick-link a:hover,
.contact-quick-link a:focus {
  color: var(--accent-color);
  text-decoration: underline;
}

.contact-bgvid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

#contact {
  position: relative;
  overflow: hidden;
}

#contact>.container {
  position: relative;
  z-index: 1;
}

.contact .lh-lg ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Industry Solutions Card Styles */
.industry-solutions-card {
  background: linear-gradient(180deg, #232323 35%, #22343c 100%);
  border-radius: 28px;
  border: 1px solid #333;
  min-height: unset;
  margin-bottom: 32px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.industry-solutions-card .industry-type {
  background: #000000;
  color: #bdbdbd;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 10px 0 10px 28px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  text-transform: uppercase;
}

.industry-solutions-card .industry-title {
  color: #e0e0e0;
  font-size: 1.2rem;
  font-family: 'Roboto Mono', 'Ubuntu', monospace, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 10px 0 10px 28px;
  text-transform: uppercase;
}

.industry-solutions-card:hover {
  box-shadow: 0 8px 32px 0 rgba(18, 171, 219, 0.18);
}

.industry-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #232323 0%, #22343c 100%);
  opacity: 0.7;
  margin: 0;
  border: none;
}

/* Quote Section */
.quoteSection {
  font-size: 3.3em;
  margin-bottom: 0;
  font-weight: 900;
  text-align: center;
}

.quoteIcon {
  font-size: 1em;
  background: -webkit-linear-gradient(#0070ad, #272936);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quoteColorText {
  color: var(--accent-color);
}

.quoteColorTextBig {
  color: var(--accent-color);
  font-size: 1.8em;
}

.quoteSmall {
  color: var(--accent-color);
  font-weight: bold; 
  font-size: 18px; 
  font-style: italic;
}

.text-center {
  display: block;
  text-align: center;
}

/* Icon image styling for service cards */
.service-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin-left: 10px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px #12abdb) brightness(0) saturate(100%) invert(62%) sepia(82%) saturate(747%) hue-rotate(162deg) brightness(92%) contrast(101%);
  transition: filter 0.3s;
}

.service-item:hover .service-icon-img {
  filter: drop-shadow(0 2px 8px #0070ad) brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(747%) hue-rotate(170deg) brightness(92%) contrast(101%);
}

/* Home Headline */
.home-headline {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 4px 32px #12abdb, 0 2px 8px #000, 0 1px 0 #12abdb;
  margin-bottom: 30px;
  line-height: 1.1;
  text-align: center;
}

@media (max-width: 768px) {
  .home-headline {
    font-size: 2.2rem;
    padding: 0 10px;
  }
}

/* Responsive Video */
.responsive-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Utility Buttons */
.btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.btn:hover,
.btn:focus {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
}

.formBtn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.formBtn:hover,
.formBtn:focus {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
}

.formBtn.h-100 {
  min-height: 48px;
}

.footerLinkIcon {
  color: var(--accent-color);
}

.home .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.home>*:not(.bg-video) {
  position: relative;
  z-index: 1;
}

.btn-watch-video {
  font-size: 1.15rem;
  min-width: 120px;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.agent-border-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #12abdb;
  border-radius: 100px;
  padding: 0px 22px;
  font-weight: 500;
  font-size: 1.1rem;
  display: inline-block;
}

.agent-border-btn:hover,
.agent-border-btn:focus {
  background: #12abdb;
  color: #fff;
  text-decoration: none;
}

::selection {
  background: #336b7c;
}

/* tooltip helper classes should be class selectors */
.wide-tooltip .tooltip-inner,
.extra-wide-tooltip .tooltip-inner {
  max-width: 250px !important;
  /* or 500px for extra-wide */
  min-width: 120px;
  white-space: normal;
  text-align: left;
}

.important-underline {
  color: #fff;
  /* Font color is white */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #1976d2;
  /* Underline color */
  font-weight: 600;
}

.important-underline:hover {
  color: #fff;
  /* Darker shade on hover */
  text-decoration-color: #12abdb;
}

.gradientBigText {
  font-size: 1.8em;
  /* Bigger text */
  font-weight: 700;
  background: linear-gradient(90deg, #6ec6ff 0%, #1976d2 60%, #5e35b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  line-height: 1.1;
  display: inline-block;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .gradientBigText {
    font-size: 1.4em;
    /* Adjust size for smaller screens */
  }
}

.smallSubtitle {
  display: block;
  font-size: 1rem;
  color: #f6f6f6;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: -4px;
  margin-bottom: 0;
  opacity: 0.85;
}

/* Section: Recognition from the Analyst Community */

/* wrapper fixes the visual height and centers the image */
.clickable-image-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 330px;
  padding-top: 10px;
  /* fixed visual height */
  max-width: 100%;
  overflow: hidden;
  /* fine to keep for safety */
  margin: 0 auto 18px;
  background: rgba(0, 0, 0, 0.02);
}

/* ensure the whole image fits inside the wrapper without being cropped */
.clickable-image-wrapper .clickable-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* preserves aspect ratio and shows full image */
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: zoom-in;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .clickable-image-wrapper {
    height: 240px;
    padding-top: 8px;
  }
}

@media (max-width: 480px) {
  .clickable-image-wrapper {
    height: 180px;
    padding-top: 6px;
  }
}

/* overlay for zoomed image */
.image-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.image-zoom-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.image-zoom-overlay img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
  transform: scale(1);
  transition: transform 220ms ease;
}

.image-zoom-overlay .close-icon {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 8px;
  border-radius: 6px;
}

.image-zoom-overlay .caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #ddd;
  font-size: 14px;
  max-width: calc(100% - 48px);
}

/* ...existing code... */

.icon_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 28px;
  line-height: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-color);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, filter 300ms ease;
  margin-right: 8px;
  user-select: none;
}

.icon_number:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40);
  background: rgba(18, 171, 219, 0.075);
  cursor: pointer;
}

/* Make icon_number match service-icon-img filter and hover behavior */
.service-item .icon .icon_number {
  filter: drop-shadow(0 2px 8px #12abdb) brightness(0) saturate(100%) invert(62%) sepia(82%) saturate(747%) hue-rotate(162deg) brightness(92%) contrast(101%);
  transition: filter 300ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-item:hover .icon .icon_number {
  filter: drop-shadow(0 2px 8px #0070ad) brightness(0) saturate(100%) invert(34%) sepia(99%) saturate(747%) hue-rotate(170deg) brightness(92%) contrast(101%);
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

/* responsive tweak */
@media (max-width: 576px) {
  .icon_number {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-right: 6px;
  }
}

/* Quote panel with dark #181a1b background */
.quote-panel {
  padding: 48px 0;
}

.quote-panel .quote-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.quote-panel .quote-text {
  margin: 0 0 14px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  position: relative;
}

.quote-panel .quote-mark {
  color: var(--accent-color);
  /* font-size: 56px; */
  font-size: 26px;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  opacity: 0.95;
}

.quote-panel .quote-mark-left {
  margin-right: 12px;
}

.quote-panel .quote-mark-right {
  float: right;
  margin-left: 12px;
}

.quote-panel .quote-source {
  margin-top: 18px;
  font-weight: 800;
  color: var(--heading-color);
  font-size: 18px;
}

.quote-panel .quote-subtext {
  margin-top: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-panel {
    padding: 28px 0;
  }

  .quote-panel .quote-wrapper {
    padding: 20px;
  }

  .quote-panel .quote-text {
    font-size: 20px;
  }

  .quote-panel .quote-mark {
    font-size: 40px;
  }
}


/*--------------------------------------------------------------
# inTheMarkets Section / Start
--------------------------------------------------------------*/
/* inTheMarkets: single slide view, two-column (50% / 50%) layout */
.inTheMarkets .swiper-slide {
  width: 100% !important;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
}

.inTheMarkets .inTheMarket-item {
  width: 100%;
  max-width: 1100px;
  /* container cap, optional */
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  padding: 28px;
  box-sizing: border-box;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* left: text column (50%) */
.inTheMarkets .inTheMarket-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* right: media column (50%) */
.inTheMarkets .inTheMarket-media {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
}

/* image should fill the right column while preserving aspect */
.inTheMarkets .inTheMarket-media .inTheMarket-img {
  width: 100%;
  height: 280px;
  /* fixed height instead of auto */
  object-fit: cover;
  /* maintains aspect ratio and fills the box */
  /* border-radius: 8px; */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  margin-right: 25px;
  cursor: pointer;
}

/* tune typography spacing */
.inTheMarkets .inTheMarket-item h3 {
  margin-bottom: 6px;
}

.inTheMarkets .inTheMarket-item h4 {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.inTheMarkets .inTheMarket-item p {
  margin-top: 12px;
}

/* Ensure plain anchors in inTheMarket content are visible and styled */
.inTheMarkets .inTheMarket-content a {
  color: var(--accent-color);
  /* text-decoration: underline; */
  font-weight: 600;
}

.inTheMarkets .inTheMarket-content a:hover {
  color: color-mix(in srgb, var(--accent-color), black 10%);
  text-decoration: none;
}

/* pagination placement */
.inTheMarkets .swiper-pagination {
  margin-top: 18px;
}

/* Responsive: stack columns on small viewports */
@media (max-width: 991px) {
  .inTheMarkets .inTheMarket-item {
    flex-direction: column;
    padding: 20px;
  }

  .inTheMarkets .inTheMarket-content,
  .inTheMarkets .inTheMarket-media {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }

  .inTheMarkets .inTheMarket-media {
    margin-top: 12px;
  }

  .inTheMarkets .inTheMarket-media .inTheMarket-img {
    width: 100%;
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .inTheMarkets .inTheMarket-media .inTheMarket-img {
    width: 100%;
    height: 280px;
    /* even smaller on mobile */
  }
}

@media (max-width: 480px) {
  .inTheMarkets .inTheMarket-media .inTheMarket-img {
    width: 100%;
    height: 240px;
    /* compact on very small screens */
  }
}

/* Swiper navigation (Prev / Next) for inTheMarkets */
.inTheMarkets {
  position: relative;
}

.inTheMarkets .swiper-button-prev,
.inTheMarkets .swiper-button-next {
  --swiper-navigation-size: 44px;
  --swiper-navigation-sides-offset: 12px;
  --swiper-navigation-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}

.inTheMarkets .swiper-button-prev:hover,
.inTheMarkets .swiper-button-next:hover {
  transform: scale(1.06);
  background: rgba(18, 171, 219, 0.08);
}

.inTheMarkets .swiper-button-prev:focus,
.inTheMarkets .swiper-button-next:focus {
  outline: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  outline-offset: 2px;
}

@media (max-width: 767px) {

  .inTheMarkets .swiper-button-prev,
  .inTheMarkets .swiper-button-next {
    display: none;
    /* hide arrows on very small viewports where swipe is primary */
  }
}

/* Center controls inside the carousel (absolute overlay centered on the slide) */
.inTheMarkets .swiper {
  position: relative;
}

.inTheMarkets .swiper-controls {
  position: absolute;
  left: 50%;
  
  /* anchored to bottom-center of the slide */
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  /* ensure vertical centering of children */
  justify-content: center;
  gap: 18px;
  /* spacing between left arrow, pagination, right arrow */
  z-index: 30;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.18);
  /* subtle backdrop so bullets are visible over images */
  padding: 10px 18px;
  /* increased vertical padding so arrows fit inside */
  min-height: 56px;
  /* ensure sufficient height for arrow buttons */
  border-radius: 999px;
}

.inTheMarkets .swiper-controls .swiper-pagination {
  margin: 0;
  /* control spacing via container gap */
  /* Override Swiper's absolute pagination so it behaves inline inside controls */
  position: static !important;
  width: auto !important;
  left: auto !important;
  bottom: auto !important;
  top: auto !important;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.inTheMarkets .swiper-controls .swiper-button-prev,
.inTheMarkets .swiper-controls .swiper-button-next {
  position: relative;
  /* override default absolute from Swiper */
  top: auto;
  right: auto;
  left: auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
}

/* Reduce visual weight for smaller viewports, keep layout tidy */
@media (max-width: 991px) {
  .inTheMarkets .swiper-controls {
    gap: 10px;
    bottom: 18px;
    /* slightly closer to the slide bottom on small screens */
    transform: translateX(-50%);
    padding: 6px 10px;
  }

  .inTheMarkets .swiper-controls .swiper-button-prev,
  .inTheMarkets .swiper-controls .swiper-button-next {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .inTheMarkets .swiper-controls {
    gap: 8px;
    padding: 6px 8px;
    bottom: 14px;
  }

  .inTheMarkets .swiper-controls .swiper-button-prev,
  .inTheMarkets .swiper-controls .swiper-button-next {
    width: 26px;
    height: 26px;
  }

  .inTheMarkets .swiper-controls .swiper-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
  }
}

/* Reduce visual weight for smaller viewports, keep layout tidy */
@media (max-width: 991px) {
  .inTheMarkets .swiper-controls {
    gap: 10px;
  }

  .inTheMarkets .swiper-controls .swiper-button-prev,
  .inTheMarkets .swiper-controls .swiper-button-next {
    width: 28px;
    height: 28px;
  }
}

/* Improve pagination visibility and relative sizing */
.inTheMarkets .swiper-controls .swiper-pagination {
  display: flex;
  align-items: center;
}

.inTheMarkets .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  /* visible but subtle */
  opacity: 1 !important;
  margin: 0 6px !important;
  border-radius: 8px !important;
  transition: transform 120ms ease, background 160ms ease, box-shadow 160ms ease;
}

/* Ensure pagination bullets are vertically centered within the controls row */
.inTheMarkets .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  vertical-align: middle;
}

/* Make sure Swiper generated pseudo glyphs align centrally */
.inTheMarkets .swiper-controls .swiper-button-prev:after,
.inTheMarkets .swiper-controls .swiper-button-next:after {
  font-size: 16px;
  /* adjust to fit new button size */
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.inTheMarkets .swiper-controls .swiper-pagination .swiper-pagination-bullets {
  display: flex !important;
  gap: 8px;
  align-items: center;
}

.inTheMarkets .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  vertical-align: middle;
}

.inTheMarkets .swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color) !important;
  box-shadow: 0 6px 16px rgba(18, 171, 219, 0.16) !important;
  transform: scale(1.15) !important;
}

/* Make arrows lighter and less visually heavy */
.inTheMarkets .swiper-controls .swiper-button-prev,
.inTheMarkets .swiper-controls .swiper-button-next {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent-color);
  box-shadow: none;
  margin-top: 0px;
}

.inTheMarkets .swiper-controls .swiper-button-prev:hover,
.inTheMarkets .swiper-controls .swiper-button-next:hover {
  background: rgba(18, 171, 219, 0.08);
}

.inTheMarkets .swiper-controls .swiper-button-prev:focus,
.inTheMarkets .swiper-controls .swiper-button-next:focus {
  outline: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  outline-offset: 2px;
}

/* Make the icon size match the smaller button */
.inTheMarkets .swiper-controls .swiper-button-prev:after,
.inTheMarkets .swiper-controls .swiper-button-next:after {
  font-size: 14px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# inTheMarkets Section / End
--------------------------------------------------------------*/

.container blockquote {
  overflow: hidden;
  /* background-color: color-mix(in srgb, var(--default-color), transparent 95%); */
  padding: 60px;
  position: relative;
}

.container blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-size: 17px;
}

.container blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.container blockquote.no-border:after {
  display: none;
}

/* Page title responsiveness */
@media (max-width: 768px) {
  .page-title {
    padding: 80px 0 40px 0;
  }
}

@media (max-width: 480px) {
  .page-title {
    padding: 60px 0 30px 0;
  }
  /* Reduce button sizes on very small devices */
  .btn,
  .btn-get-started {
    padding: 8px 18px;
    font-size: 14px;
  }
}

/* Reduce carousel control icon sizes on small screens */
@media (max-width: 768px) {
  .home .carousel-control-next-icon,
  .home .carousel-control-prev-icon {
    font-size: 28px;
  }
  .home .carousel-control-prev,
  .home .carousel-control-next {
    width: auto;
  }
}

/* hide visually but keep accessible to screen readers for W3C HTML valid */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Taking OAI-revamp new font logo styling */

.orbitronFont {
  font-family: 'Orbitron', sans-serif !important;
}

.logoNavRoot .logoText {
  font-family: 'Orbitron', sans-serif  !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logoText {
  text-align: center;
  color: #ffffff;
  display: block;
  font-weight: bold;
  unicode-bidi: isolate;
  letter-spacing: 0.03em;
  margin: 0 0 0 0px;
  font-family: 'Orbitron', sans-serif !important;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
  font-size: 1.56em;
}

@media (max-width: 320px) {
  .logoText {
    font-size: 0.72em;
    margin: 0 0 0 0px;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 420px) {
  .logoText {
    font-size: 0.89em;
    margin: 0 0 0 0px;
    letter-spacing: 0.015em;
  }
}

@media (max-width: 600px) {
  .logoText {
    font-size: 1em;
    margin: 0 0 0 0px;
    letter-spacing: 0.02em;
  }
}

@media (min-width: 600px) {
  .logoText {
    font-size: 1em;
    margin: 0 0 0 0px;
    letter-spacing: 0.025em;
  }
}

@media (min-width: 768px) {
  .logoText {
    font-size: 1.11em;
    margin: 0 0 0 0px;
    letter-spacing: 0.03em;
  }
}

@media (min-width: 992px) {
  .logoText {
    font-size: 1.32em;
    margin: 0 0 0 0px;
    letter-spacing: 0.035em;
  }
}

@media (min-width: 1200px) {
  .logoText {
    font-size: 1.51em;
    margin: 0 0 0 0px;
    letter-spacing: 0.04em;
  }
}

.logoNavRoot {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.logoNavRoot:hover,
.logoNavRoot:focus,
.logoNavRoot:active {
  color: inherit;
  text-decoration: none;
  background: none;
  outline: none;
}

.logoNavImg {
  height: 60px;
  width: auto;
  object-fit: contain;
  padding-left: 0;
  display: block;
}

.logoNavImg:hover {
  text-decoration: none;
}

.logoTextContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
  min-width: 0;
}

@media (max-width: 320px) {
  .logoTextContainer {
    margin-left: 3px;
  }
}

@media (max-width: 420px) {
  .logoTextContainer {
    margin-left: 5px;
  }
}

@media (max-width: 600px) {
  .logoTextContainer {
    margin-left: 8px;
  }
}

.logoHighlight {
  color: #12ABDB;
}

.logoTagline {
  font-family: 'Orbitron', sans-serif !important;
  font-style: italic;
  color: #ffffff;
  font-size: 0.60em;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: -2px;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 320px) {
  .logoTagline {
    font-size: 0.42em;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 420px) {
  .logoTagline {
    font-size: 0.48em;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 600px) {
  .logoTagline {
    font-size: 0.52em;
    letter-spacing: 0.04em;
  }
}

@media (min-width: 600px) {
  .logoTagline {
    font-size: 0.55em;
  }
}

@media (min-width: 768px) {
  .logoTagline {
    font-size: 0.60em;
  }
} 

@media (min-width: 992px) {
  .logoTagline {
    font-size: 0.65em;
  }
}

@media (min-width: 1200px) {
  .logoTagline {
    font-size: 0.70em;
  }
}
/* /Taking OAI-revamp new font logo styling */
