/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Source Sans Pro", sans-serif;
  --nav-font: "Poppins", sans-serif;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #1a1f24; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #485664; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #114e80; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #485664; /* The default color of the main navmenu links */
  --nav-hover-color: #0ea2bd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #485664; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0ea2bd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #eef0f2;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #3a4753;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4f6171;
  --contrast-color: #ffffff;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
.bg-sec {
  background-image: linear-gradient(90deg, #fdfbfb 0%, #ebedee 100%);
}
.bg-main {
  background-color: #114e80 !important;
}
.topbar {
  min-height: 4vh !important;
  min-height: 4vh !important;
}
@media only screen and (max-width: 508px) {
  .topbar-content {
    font-size: 8px !important;
  }
}
/*--------------------------------------------------------------
                    # General Styling & Shared Classes
                    --------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-family: var(--default-font);
  max-width: 100vw;
}
p{
  font-size: 16px !important;
}
@media (max-width:992px ){
  p{
    font-size: 14px !important;
  }
}
/* scroll bar */
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  background-color: rgb(255, 255, 255);
  border-radius: 100px;
}
body::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 100px;
}
/* fillter */
.content {
  display: none; /* Start with content hidden */
  padding: 10px;
}
.button-container {
  margin-bottom: 20px;
}
/* fillter end */
.text-prime {
  color: #114e80 !important;
}
.text-prime-outline {
  border: 1px solid #114e80 !important;
  color: #114e80 !important;
}
.text-prime-outline:hover {
  border: 1px solid #000000 !important;
  color: white !important;
  background-color: #114e80;
}

/* home cards */
.home-cards {
  min-height: 260px !important;
  max-height: 260px !important;
  margin-bottom: 20px !important;
}
.home-cards:hover{
  transform: scale(1.1);
  transition: transform 200ms linear 0s;
}
@media (min-width:375px){
  .home-cards {
    min-height: 260px !important;
    max-height: 260px !important;
    margin: auto !important;

  }

}
@media (min-width: 425px) {
 
  .home-cards{
    margin: auto !important;
  }
}
@media (min-width: 768px) {
  .home-cards {
    min-height: 250px !important;
    max-height: 250px !important;
    min-width: 230px !important;
  }
  .home-cards > .card-body > .card-header > .card-title{
    font-size: 16px !important;
  }
}
@media (min-width: 1024px) {
  .home-cards > .card-body > .card-header > .card-title{
    font-size: 18px !important;
  }
  .home-cards {
    min-height: 310px !important;
    max-height: 310px !important;
  }
}
/* inventory cards */
.inventory-hero-cards{
  min-height: 390px !important;
  max-height: 390px !important;
  padding: 8px;
} 
.inventory-hero-cards > .card-header > .card-title{
  font-size: 16px !important;
  margin-bottom: 0 !important;
}

.inventory-hero-cards>.card-body{
  font-size: 14px !important;
  text-align: left !important;
}
@media (min-width: 425px) {
  .inventory-hero-cards {
    min-height: 325px !important;
    max-height: 325px !important;
  }
  .inventory-hero-cards>.card-header>.card-title{
    font-size: 16px !important;
  }
  .inventory-hero-cards>.card-body>p{
    text-align: left;
    font-size: 14px !important;
  }
}
@media (min-width: 768px) {
  .inventory-hero-cards{
    min-height: 340px !important;
    max-height: 340px !important;
  }
  .inventory-hero-cards>.card-body>p{
    text-align: left;
    font-size: 13px !important;
  }
}

@media (min-width: 1024px){
  .inventory-hero-cards{
    min-height: 290px !important;
    max-height: 290px !important;
  }
}
/* career cards */

@media (max-width:425px){
  #career-table{
    font-size: 8px !important;
  }
  .career-btn{
    width: 90px !important;
    height: 25px !important;
    font-size: 6px !important;
    display: flex;
    align-items: center;
    /* padding: 5px auto !important; */
  }
}
.career-cards {
  min-height: 380px !important;
  max-height: 380px !important;
  margin-bottom: 20px !important;
}
.career-cards > .card-body > p {
  font-size: 14px !important;
  text-align: start;
}
@media screen and (min-width: 375px) {
  .career-cards {
    min-height: 400px !important;
    max-height: 400px !important;
    min-width: 300px !important;
  }
  .career-cards > .card-body > p {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 425px) {
  .career-cards {
    min-height: 400px !important;
    max-height: 400px !important;
    min-width: 400px !important;
    margin: auto !important;
  }
  .career-cards > .card-body > p {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 768px) {
  .career-cards {
    min-height: 400px !important;
    max-height: 400px !important;
    min-width: 200px !important;
  }
  .career-cards > .card-body > p {
    font-size: 12px !important;
  }
}
@media (min-width: 1024px) {
  .career-cards {
    min-height: 380px !important;
    max-height: 380px !important;
  }
  .career-cards > .card-body > p {
    font-size: 15px !important;
  }
}
/* help desk cards */
.help-desk-cards {
  min-height: 300px !important;
  max-height: 300px !important;
  margin: auto !important;
}
.help-desk-cards > .card-body > p {
  font-size: 16px !important;
  font-weight: 400;
  text-align: start;
}
@media screen and (min-width: 768px) {
  .help-desk-cards {
    min-height: 300px !important;
    max-height: 300px !important;
  }
  .help-desk-cards > .card-body > p {
    font-size: 14px !important;
    text-align: start;
  }
  .help-desk-cards > .card-header > .card-title{
    font-size: 17px !important;
  } 
}
@media screen and (min-width: 1024px) {
  .help-desk-cards {
    min-height: 340px !important;
    max-height: 340px !important;
  }
  .help-desk-cards > .card-body > p {
    font-size: 17px !important;
    text-align: start;
  }
}
/* business cards */
.business-cards {
  min-height: 390px !important;
  max-height: 390px !important;
  margin-bottom: 20px !important;
}
.business-cards .card-up {
  min-height: 60px;
  max-height: 60px;
  overflow: hidden;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.business-cards > .aqua-gradient {
  background: #4e54c8; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #8f94fb,
    #4e54c8
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #8f94fb,
    #4e54c8
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.business-cards > .card-body {
  min-height: 160px !important;
  max-height: 160px !important;
  font-size: 12px !important;
}
.business-cards > .card-body > .card-title {
  font-size: 16px !important;
  font-weight: 700 !important;
}
.business-cards .avatar {
  width: 80px !important;
  min-height: 80px !important;
  max-height: 80px !important;
  margin-top: -40px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50%;
  background-color: white;
  padding: 10px 5px;
}
@media only screen and (min-width: 375px) {
  .business-cards {
    min-height: 320px !important;
    max-height: 320px !important;
  }
  .business-cards > .card-body > p {
    font-size: 13px !important;
  }
  .business-cards > .card-body {
    min-height: 240px !important;
    max-height: 240px !important;
  }
}
@media only screen and (min-width: 425px) {
  .business-cards {
    min-height: 350px !important;
    max-height: 350px !important;
  }
}
@media only screen and (min-width: 768px) {
  .business-cards {
    min-height: 450px !important;
    max-height: 450px !important;
  }
  .business-cards > .card-body > p {
    font-size: 13px !important;
  }
  .business-cards > .card-body > .card-title {
    font-size: 15px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    font-weight: 700 !important;
  }
  .business-cards > .card-body {
    min-height: 320px !important;
    max-height: 320px !important;
  }
}
@media (min-width: 1024px) {
  .business-cards {
    min-height: 360px !important;
    max-height: 360px !important;
  }
  .business-cards > .card-body {
    min-height: 220px !important;
    max-height: 220px !important;
  }
  .business-cards > .card-body > p {
    font-size: 13px !important;
  }
  .business-cards > .card-body > .card-title {
    font-size: 18px !important;
    min-height: 35px !important;
  }
}
.drop-shadow{
  filter: drop-shadow(-3px 2px 1px #000000) !important;
}

/* story card */
.story-card {
  min-height: 200px !important;
  max-height: 200px !important;
}
.story-card img{
  filter: drop-shadow(-3px 2px 1px #000000);
}
@media (max-width:425px){
  .story-card{
    min-height: 300px !important;
    max-height: 300px !important;
    padding: 15px 20px !important;
  }
  .story-card img{
    width: 110px !important;
    height: 110px !important;
     }
}
/* inventory cards */
.inventory-cards {
  min-height: 150px !important;
  background-color: #fff;
  border-radius: 10px;
  margin: 10px 5px !important;
}
.inventory-cards > .col-9 {
  display: flex;
  align-items: center;
}
.inventory-cards > .col-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px !important ;
}
.inventory-cards {
  min-height: 150px !important;
  background-color: #fff;
}
.inventory-cards {
  min-height: 150px !important;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#content-container {
  min-height: 400px !important;
  max-height: 400px !important;
}
@media (min-width: 1440px) {
  .inventory-cards {
    min-height: 120px !important;
    margin-right: 8px !important;
  }
}
/* testimonial cards */
.testimonial-card{
  min-height: 340px !important;
  max-height: 340px !important;
}
.testimonial-card:hover{
  transform: scale(1.1);
  transition: transform 500ms ease-in-out 0s;
}
.testimonial-card .card-up {
  min-height: 80px;
  max-height: 80px;
  overflow: hidden;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.aqua-gradient {
  background: #00b4db;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #0083b0, #00b4db);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #0083b0, #00b4db);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.testimonial-card .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  margin-top: -45px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50%;
  background-color: white;
  padding: 10px 5px;
}
@media (min-width:375px){
  .testimonial-card {
    min-height: 300px !important;
    max-height: 300px !important;
  }
  .testimonial-card .card-body{
    min-height: 100px !important;
  }
  .testimonial-card .card-title{
    font-size: 1.3em !important;
    min-height: 35px !important;
  }
}
@media (min-width: 768px) {
  .testimonial-card {
    min-height: 310px !important;
    min-height: 310px !important;
  }
  .testimonial-card .card-body{
    min-height: 130px !important;
  }
  .testimonial-card .card-title{
    font-size: 1.3em !important;
    min-height: 35px !important;
    font-size: 16px !important;
  }
}
@media (min-width: 1024px) {
  .testimonial-card {
    min-height: 350px !important;
    max-height: 350px !important;
  }
  .testimonial-card .card-body{
    min-height: 100px !important;
  }
  .testimonial-card .card-title{
    font-size: 1.3em !important;
    font-weight: bold !important;
    min-height: 50px !important;
  }
}
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
.contact-card {
  min-height: 150px !important;
  max-height: 150px !important;
}
@media (max-width:425px){
  .contact-card{
    min-height: 180px !important;
    max-height: 180px !important;
  }
  .contact-card .card-body{
    flex: none  !important;
  }
}
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;
}
.hover-menu:hover {
  color: #114e80 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/* hero section */
.hero-section > .card .icon {
  font-size: 3rem;
  color: lightseagreen;
}
.hero-section > .card-text {
  color: rgb(0, 0, 0);
}
.hero-section > .card {
  transition: all 0.5s;
}
.hero-section > .card:hover {
  background-color: #114e80;
  color: #fff;
}
.hero-section > .card:hover .icon,
.card:hover .card-text {
  color: #000000;
}
.form-btn {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}
.form-btn:hover{
  background-color: #1a1f24 !important;
  color: #fff !important;
}
.hero-btn {
  color: #f8f8ff !important;
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}
.hero-btn:hover {
  color: white !important;
  cursor: pointer;
}
/* Pulsating Play Button
                    ------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}
@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
                    # Global Header
                    --------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 55px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
  color: var(--heading-color);
}
.header .logo span {
  color: var(--accent-color);
  font-weight: 400;
  font-size: 34px;
  margin-left: 2px;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}
.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}
xx .header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  .header .navmenu {
    order: 3;
  }
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/*--------------------------------------------------------------
                    # Navigation Menu
                    --------------------------------------------------------------*/
/* Desktop Navigation */
@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;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    width: 100%;
  }
  .navmenu .dropdown ul {
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: -300px;
    top: 139%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 280px;
  }
  .navmenu .dropdown ul a {
    padding: 6px 12px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    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;
  }
}
/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .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;
    white-space: nowrap;
    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);
    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;
  }
}
/*--------------------------------------------------------------
                    # Global Footer
                    --------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding:18px 0;
}
.footer-ul > li:hover{
  color: #fff !important;
}
.footer .footer-about .logo {
  line-height: 1;
}
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: .8;
}
.footer-contact{
	 color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.footer-contact a{
	 color: color-mix(in srgb, var(--default-color), transparent 30%) !important;
}
.footer .footer-links ul a:hover {
  color: #fff;
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .copyright {
  padding: 13px 0;
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}
.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  background-color: #fff !important;
  text-decoration: none;
}
/*--------------------------------------------------------------
                    # Scroll Top Button
                    --------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}
/*--------------------------------------------------------------
                    # Disable aos animation delay on mobile devices
                    --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
                    # Global Page Titles & Breadcrumbs
                    --------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}
.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.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 70%);
}
/*--------------------------------------------------------------
                    # Global Sections
                    --------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  scroll-margin-top: 100px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
                    # Global Section Titles
                    --------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 15px;
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
                    # Hero Section
                    --------------------------------------------------------------*/

                    @media(max-width: 768px){
                      #hero-home-image{
                        width: 400px important;
                        height: 200px !important;
                      }
                    }
                    @media(max-width: 425px){
  #hero-home-image{
    width: 400px important;
    height: 150px !important;
  }
}


.hero {
  width: 100%;
  min-height: 84vh;
  max-height: 84vh !important;
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
background-size: cover;
background-color: 	#1d2026  !important;
}
.hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
}
.hero h1 span {
  color: var(--accent-color);
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 20px;
  font-weight: 400;
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
}
.hero .btn-get-started:hover {
  color: #fff !important;
  background: #21618c !important;
}
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 500;
}
.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero .btn-watch-video:hover {
  color: var(--accent-color);
}
.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.hero .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 992px) {
  .hero .animated {
    max-width: 45%;
  }
}
@media (max-width: 991px) {
  .hero .animated {
    max-width: 60%;
  }
}
@media (max-width: 575px) {
  .hero .animated {
    max-width: 80%;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
                    # Featured Services Section
                    --------------------------------------------------------------*/
.featured-services .service-item {
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}
.featured-services .service-item .icon {
  margin-bottom: 10px;
}
.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}
.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}
.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.featured-services .service-item:hover {
  transform: translateY(-10px);
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}
.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}
/*--------------------------------------------------------------
                    # About Section
                    --------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}
.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}
.about .about-img img {
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }
  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}
.about h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
.about .nav-pills {
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}
.about .nav-pills li + li {
  margin-left: 40px;
}
.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}
.about .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}
@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}
.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}
.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}
/*--------------------------------------------------------------
                    # Clients Section
                    --------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}
/*--------------------------------------------------------------
                    # Call To Action Section
                    --------------------------------------------------------------*/
.call-to-action {
  padding: 0;
}
.call-to-action .container {
  padding: 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}
@media (max-width: 992px) {
  .call-to-action .container {
    padding: 60px;
  }
}
.call-to-action .content h3 {
  font-size: 48px;
  font-weight: 700;
}
.call-to-action .content h3 em {
  font-style: normal;
  position: relative;
  z-index: 1;
}
.call-to-action .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  z-index: -1;
}
.call-to-action .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
  font-size: 18px;
}
.call-to-action .content .cta-btn {
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: var(--accent-color);
}
.call-to-action .content .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}
.call-to-action .img {
  position: relative;
}
.call-to-action .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--contrast-color), transparent 20%);
  border-radius: 15px;
  transform: rotate(6deg);
  z-index: 2;
}
.call-to-action .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
}
.call-to-action .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  z-index: 3;
}
/*--------------------------------------------------------------
                    # Features Section
                    --------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  background-color: var(--surface-color);
  color: var(--color-secondary);
  border: 0;
  padding: 25px 20px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}
.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}
.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
}
.features .nav-link:hover {
  color: var(--accent-color);
}
.features .nav-link:hover,
.features .nav-link.active {
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color) !important;
  border-color: var(--accent-color);
}
.features .nav-link:hover h4,
.features .nav-link.active h4 {
  color: var(--contrast-color);
}
.features .nav-link:hover i,
.features .nav-link.active i {
  color: var(--contrast-color) !important;
}
.features .tab-content {
  margin-top: 30px;
}
.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}
.features .tab-pane h3 {
  font-weight: 600;
  font-size: 28px;
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}
.features .tab-pane ul li {
  padding-bottom: 10px;
}
.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--accent-color);
}
.features .tab-pane p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
                    # Services Section
                    --------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}
.services .img img {
  transition: 0.6s;
}
.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}
.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}
.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover .details h3 {
  color: var(--accent-color);
}
.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}
.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}
.services .service-item:hover .img img {
  transform: scale(1.2);
}
/* -------------------------------------------------------------
                    # business-section
                    ------------------------------------------------------------- */
#business-section {
  background-color: #f0eeed;
}
/*--------------------------------------------------------------
                    # Recent Posts Section
                    --------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}
.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}
.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}
.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}
.recent-posts .title a:hover {
  color: var(--accent-color);
}
.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}
.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}
/*--------------------------------------------------------------
                    # Contact Section
                    --------------------------------------------------------------*/
.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}
.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.contact .php-email-form {
  width: 100%;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
  height: 48px;
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}
.contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}
/* megamenu */
/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
/* ============ desktop view .end// ============ */
/* ============ mobile view ============ */
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse,
  .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    width: 90vw;
  }
}
@media (max-width: 375px) {
  .has-megamenu {
    width: 280px !important;
    left: 0 !important;
  }
  .mega-menu-foot {
    padding: 8px 10px !important;
  }
  .megamenu-head {
    padding: 10px !important;
  }
}
.megamenu-head {
  padding:10px 20px !important; 
}
.megamenu-head > .col-md-6 > a > h6{
  margin-bottom: 2px !important;
}
.megamenu-head > .col-md-6 > a > p{
  margin-bottom: 2px !important;
}
.megamenu-foot > a{
  font-size: 13px !important;
  margin-left: 6px !important;
}
.megamenu-foot{
  padding-left:12px !important ;
}
.dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  border-radius: 0;
  max-height: 450px !important;
  overflow-x: hidden;
  padding: 0 !important;
}
#ourformsubmission > .form-group> input,select{
  opacity: .8 !important;
}

  /* Default styles */
  #nav-container {
    padding: 20px;
}

.content-section {
    display: none;
}

/* Show the active content */
.content-section.active {
    display: block;
}

/* image shadow */
.img-shadow{
  border-radius: 5px !important;
  box-shadow: 1px 1px 12px 2px rgba(0,0,0,0.75);
}
/* media page */
.media-table-responsive{
  padding: 0 !important;
}
@media (max-width: 375px){
.media-table-responsive{
  max-width: 320px !important;
}
.media-table  tbody  tr td:nth-child(2){
  max-width: 150px !important;
}
.media-table  tbody  tr td:nth-child(2) h5{
  font-size: 12px !important;
  font-weight: bold;
}
.media-table  tbody  tr td:nth-child(2) p{
  font-size: 10px !important;
}
.media-table  tbody  tr td:nth-child(3) a{
  font-size: 10px !important;
}
}

@media (min-width:768px){
  .hero-header-section{
    min-height: 90vh !important;
    max-height: 90vh !important;
   
  }
}

.bg-sec-color{
  background-color:#f4f6f7  ;
}
.bg-hero-color{
  background: #00416A !important;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #E4E5E6, #00416A) !important;  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #E4E5E6, #00416A) !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}


/* news page */
.news-card{
  padding: 10px 8px !important;
  /* color: #fff !important; */
  height: 360px !important;
  margin-bottom: 18px !important;
  border-radius: 8px !important;
}
.news-card .card-header,.card-footer{
  border: 0 !important;
  background-color: transparent !important;
}
.news-card .card-body .card-title{
  font-size: 17px !important;
  font-weight: bold !important;
}
.news-card .card-img-top{
  min-height: 125px !important;
  max-height: 125px !important;
}
.news-card .card-body .card-title{
  min-height: 35px !important;
  max-height: 35px !important;
}
.news-card .card-body{
  min-height: 160px !important;
  max-height: 160px !important;
}