/* Fonts */
:root {
  --default-font: "Manrope", 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";
}

:root {
  --color-gradient: linear-gradient(to right, #326295, #1d3958);
  --gradient-gray: linear-gradient(#dee7ed, rgb(99 170 217 / 40%));
  --gradient-gray-blogbg: linear-gradient(
    rgb(222 231 237 / 89%),
    rgb(222 231 237 / 0%)
  );
  --gradient-lightblue: linear-gradient(
    156deg,
    rgba(222, 231, 237, 1) 0%,
    rgb(99 170 217 / 41%) 50%,
    rgba(222, 231, 237, 1) 93%
  );
  --background-color: #101719;
  --default-color: #f1f3f5;
  --heading-color: #19314b;
  --accent-color: #ceaf7f;
  --surface-color: #252a2b;
  --contrast-color: #f9dbbd;
  --light-blue: #dee7ed;
  --dark-blue: #19314b;
  --color-white: #fff;
  --dark-brown: #a15144;
  --color-blue-light: #386ea8;
  --bg-blue-light-200: #dee7ed;
  --color-gray: #cecece;
  --shadow-card: 0px 4px 50px 2px #8fc1f626;
  --color-light-brown: #f9dbbd;
  --label-color: #98a2b3;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--dark-blue);
  font-family: var(--default-font);
  font-weight: 400;
}

a {
  color: var(--color-blue-light);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: var(--color-blue-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.font-w-200 {
  font-weight: 200;
}
.font-w-800 {
  font-weight: 800;
}
.font-14 {
  font-size: 14px;
}
.font-12 {
  font-size: 12px;
}
.font-lg-28 {
  font-size: 28px;
}
.font-lg-24 {
  font-size: 1.5rem;
}
.font-lg-18 {
  font-size: 1.125rem;
}
.font-lg-20 {
  font-size: 1.25rem;
}
.text-justify {
  text-align: justify;
}
.bg-blue-light-200 {
  background: var(--bg-blue-light-200);
}
.shadow-card {
  box-shadow: var(--shadow-card);
}
.color-gradient {
  background: var(--color-gradient);
}
.gradient-gray {
  background: var(--gradient-gray);
}
.gradient-lightblue {
  background: var(--gradient-lightblue);
}
.color-blue-light {
  color: var(--color-blue-light);
}
.color-default {
  color: #19314b !important;
}
.themebg {
  background: #19314b;
}
.color-gray-400 {
  color: #98a2b3 !important;
}
.top-100 {
  top: 100px;
}
header {
  background: var(--color-gradient);
}
.logo img {
  max-height: 50px;
}
.btn-light-blue {
  background: var(--light-blue);
  color: var(--dark-blue);
  font-weight: 700;
  padding: 0.85rem 1.75rem 0.85rem 1.75rem;
  border-radius: 8px;
}
.btn-light-blue:focus,
.btn-light-blue:hover {
  color: var(--dark-blue);
  background: var(--color-white);
}

.btn-dark-blue {
  background: var(--heading-color);
  color: var(--color-white);
  font-weight: 700;
  padding: 0.85rem 1.75rem 0.85rem 1.75rem;
  border-radius: 8px;
}
.btn-dark-blue:focus,
.btn-dark-blue:hover {
  color: var(--color-white);
  background: var(--color-blue-light);
}

.btn-outine-blue {
  background: var(--color-white);
  color: var(--heading-color);
  border: 1px solid var(--heading-color);
  font-weight: 700;
  padding: 0.85rem 1.75rem 0.85rem 1.75rem;
  border-radius: 8px;
}
.btn-outine-blue:focus,
.btn-outine-blue:hover {
  color: var(--heading-color);
  background: var(--light-blue);
}

.light-brown-btn {
  background: #f9dbbd;
  color: #19314b;
  font-weight: 700;
  padding: 0.85rem 1.75rem 0.85rem 1.75rem;
  border-radius: 8px;
}
.light-brown-btn:focus,
.light-brown-btn:hover {
  color: #f9dbbd;
  background: #a15144;
}

.min-w-200 {
  min-width: 200px;
}
.min-w-150 {
  min-width: 150px;
}
.navmenu li a {
  color: var(--color-white);
}
.navmenu li a.active,
.navmenu li a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-white);
  text-underline-offset: 0.375em;
}
.animated-icon1,
.animated-icon2,
.animated-icon3 {
  width: 26px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.animated-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.animated-icon1 span {
  background: var(--color-white);
}
.animated-icon1 span:nth-child(1) {
  top: 0px;
}
.animated-icon1 span:nth-child(2) {
  top: 8px;
}
.animated-icon1 span:nth-child(3) {
  top: 16px;
}
.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.brownbg {
  background: var(--contrast-color);
  color: var(--dark-brown);
}
a.brownbg:hover {
  background: #f7cca1;
  color: var(--dark-brown);
  text-decoration: none;
}
.hero-block h1 {
  color: var(--heading-color);
  font-size: 54px;
  letter-spacing: -2px;
  line-height: 62px;
}
.hero-paragraph {
  font-size: 1.125rem;
}

.innner-block h1 {
  color: var(--heading-color);
  font-size: 54px;
  line-height: 62px;
  letter-spacing: -2px;
}
.innner-block p {
  font-size: 1.125rem;
}

.hero-subtext {
  font-weight: 800;
}
.max-100 {
  max-width: 100%;
}
.section-heading {
  letter-spacing: -2px;
}
.section-heading-lh56 {
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -1px;
}
.heading-small {
  font-size: 36px;
  line-height: 42px;
}
.heading-midium {
  font-size: 42px;
  letter-spacing: -2px;
  line-height: 42px;
  font-weight: bold;
}
.divider {
  background: linear-gradient(to right, #326295, #1d3958);
  height: 1px;
}
.divider2 {
  background: linear-gradient(
    to right,
    rgb(50 98 149 / 25%),
    rgb(29 57 88 / 25%)
  );
  height: 1px;
}
.divider-white {
  background: rgb(255 255 255 / 30%);
  opacity: 25%;
  height: 1px;
}
.marquebtn {
  background: var(--color-gradient);
  color: var(--color-white);
  border-radius: 30px;
  padding: 0.85rem 2rem 0.85rem 2rem;
}
.pricebtn {
  background: #f9dbbd;
  border: 1px solid #a15144;
  color: #a15144;
  padding: 15px 30px;
  top: -30px;
  right: 24px;
}
.policy p {
  /*padding-bottom: 0.75rem;*/
  word-wrap: break-word;
}
.policy h2 {
  font-weight: 700;
  color: #19314b;
  padding-top: 1rem;
  letter-spacing: -1px;
}
.policy li {
  padding-bottom: 1rem;
}
.errorbg {
  background: url("../images/error.webp") center center no-repeat;
  background-size: cover;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.error {
  color: #dee7ed;
}
.error h1 {
  font-weight: bold;
  line-height: 52px;
  letter-spacing: -24px;
  -webkit-text-stroke: 2px #ffffff;
}
.error h3 {
  color: #dee7ed;
  font-weight: 800;
}
ul {
  font-size: 20px;
  line-height: 30px;
}
.text-gradient {
  text-transform: uppercase;
  background: linear-gradient(
    to top,
    rgb(222 231 237 / 50%) 10%,
    rgb(26 80 115 / 84%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.marquebtn:focus,
.marquebtn:hover {
  color: var(--color-white);
}
.marquebtn:hover {
  cursor: default;
}
.logo-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: auto;
  max-width: 100vw;
}
.logo-grid-row2 {
  position: relative;
}
.logo-grid-row2:before {
  left: 0;
  background: linear-gradient(90deg, rgb(255 255 255) 0%, transparent 100%);
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
}
.logo-grid-row2:after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 1;
  right: 0;
  background: linear-gradient(270deg, rgb(255 255 255) 0%, transparent 80%);
}

.fadebg {
  position: relative;
}
.fadebg:after {
  right: 0;
  background: linear-gradient(270deg, rgb(255 255 255) 0%, transparent 100%);
}
.fadebg:before {
  left: 0;
  background: linear-gradient(90deg, rgb(255 255 255) 0%, transparent 100%);
}
.fadebg:after,
.fadebg:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
}
.logo-grid-row {
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 32px;
  padding-top: 1rem;
}
.logo-grid-group-fast {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
  /*     gap: 32px; */
  -webkit-animation: scroll-x 20s linear infinite;
  animation: scroll-x 20s linear infinite;
}
.logo-grid-group-fast span {
  padding: 0 15px;
  pointer-events: none;
  cursor: default !important;
}

.logo-grid-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
  gap: 32px;
  -webkit-animation: scroll-x 60s linear infinite;
  animation: scroll-x 60s linear infinite;
}

.logo-grid-row:hover .logo-grid-group-fast,
.logo-grid-row:hover .logo-grid-group {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  cursor: pointer;
}
.logo-grid-item {
  display: grid;
  place-items: center;
  aspect-ratio: 16/9;
}
.logo-grid-row-reverse .logo-grid-group-fast,
.logo-grid-row-reverse .logo-grid-group {
  animation-direction: reverse;
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
}
@-webkit-keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.tabbtn {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  white-space: nowrap;
  overflow: auto;
  justify-content: center;
}
.tabbtn li {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  font-weight: 800;
  margin-right: 0.5rem;
  padding-bottom: 0.75rem;
}
.tabbtn li a {
  color: var(--color-blue-light);
  background: var(--color-white);
  border: 1px solid var(--color-blue-light);
  padding: 0.85rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.15rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tabbtn li a svg {
  padding-left: 0.25rem;
  font-size: 1rem;
}
.tabbtn li a svg path {
  fill: var(--color-blue-light);
}
.tabbtn li.active a,
.tabbtn li a:hover {
  background: var(--color-blue-light);
  color: var(--color-white);
}
.tabbtn li.active a svg path,
.tabbtn li a:hover svg path {
  fill: #fff;
}
.cardcontent p {
  font-size: 20px;
  line-height: 30px;
}
.letter-spacing-2 {
  letter-spacing: -2px;
}
.letter-spacing-0 {
  letter-spacing: 0px;
}
.letter-spacing {
  letter-spacing: -1px;
}
.letter-spacing i {
  font-size: 1rem;
  padding-left: 0.25rem;
}
.learnmore {
  font-size: 18px;
  color: var(--color-blue-light);
}
.learnmore:hover {
  text-decoration: underline;
  color: var(--color-blue-light);
  text-decoration-color: var(--color-blue-light);
  text-underline-offset: 0.375em;
}
.mb-n6 {
  margin-bottom: -8rem;
}
.mb-n2 {
  margin-bottom: -0.75rem;
}
.innner-block {
  position: relative;
  z-index: 2;
}
.careercard {
  background: #f9dbbd;
  overflow: hidden;
  color: #19314b;
  padding: 20px 30px;
  display: flex;
  color: #19314b;
  flex-direction: column;
  justify-content: center;
  min-height: 175px;
  align-items: stretch;
  transition: 0.5s;
}
.impactcard {
  background: #dee7ed;
  overflow: hidden;
  padding: 20px 30px;
  display: flex;
  color: #19314b;
  flex-direction: column;
  justify-content: center;
  min-height: 175px;
  align-items: stretch;
  transition: 0.5s;
}
.careercard .icon,
.impactcard .icon {
  position: absolute;
  right: 0px;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.impactcard {
  color: #19314b;
}
.careercard h3 {
  font-size: 36px;
  font-weight: 200;
  margin-bottom: 0;
  color: #19314b;
}
.impactcard h3 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 0;
}
.testimonials-card p,
.impactcard p {
  font-size: 20px;
}
.testimonials-card {
  border: 1px solid #386ea840;
  padding: 30px;
}
.testimonials-card h2 {
  color: #19314b;
  font-size: 42px;
  font-weight: 700;
}
.testimonials-card h3 {
  font-size: 24px;
}
.flexcard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
}
.flexcard-body {
  flex: 1 1 auto;
}
.author {
  font-size: 1.5rem;
  font-weight: 700;
}
.starbg {
  color: var(--color-blue-light);
}
.blogitems-img {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 66.25%;
  width: 100%;
}
.blogitems-img a {
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}
.blogitems-img img {
  aspect-ratio: 3 / 2;
}
.blogitems-img img {
  width: 100%;
  height: auto;
  border-radius: var(--bs-border-radius-lg) !important;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.fit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.imagegradient:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.category {
  color: var(--color-white);
  background: var(--color-gradient);
  transition: all 0.3s ease-in-out;
}
.category:hover {
  background: linear-gradient(to right, #1d3958, #1d3958);
  color: var(--color-white);
  text-decoration: none;
}
.blog-items {
  color: #19314b;
}
.blog-details {
  color: #19314b;
}
.blog-details h2 {
  font-size: 48px;
  line-height: 56px;
  color: #19314b;
  font-weight: 700;
  letter-spacing: -2px;
}
.blog-details h3 {
  font-size: 36px;
  color: #19314b;
  font-weight: 700;
  letter-spacing: -1px;
}
.blog-details p {
  font-size: 1.25rem;
  padding-bottom: 1rem;
}
.blog-body {
  margin-top: 12px;
  margin-bottom: 12px;
  max-height: 60px;
  overflow: hidden;
}

.blog-items h4 {
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  white-space: break-spaces;
  max-height: 60px;
}
.blog-items p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogitems-img .blogimg-inner {
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}
.navsticky {
  position: sticky;
  top: 5rem;
  z-index: 2;
}

.faq-blog-detailw-wrapper .accordion-button {
  font-size: 24px;
  color: #19314b;
  font-weight: 700;
  letter-spacing: -1px;
}

.faq-blog-detailw-wrapper .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #19314b;
}

.faq-blog-detailw-wrapper .accordion-button:focus {
  box-shadow: none;
}

.faq-blog-detailw-wrapper .accordion-button::after {
  color: #19314b;
  opacity: 1;
}
.faq-blog-detailw-wrapper .accordion-button.collapsed {
  padding: 36px 0;
}
.faq-blog-detailw-wrapper .accordion-button {
  padding: 22px 0;
}
.faq-blog-detailw-wrapper .accordion-body {
  padding: 0 0 18px;
}

.gradient-blog-bg {
  background: var(--gradient-gray-blogbg);
}
.pronavbar li a.active,
.pronavbar li.active a,
.pronavbar li a:hover {
  background: var(--color-blue-light);
  color: var(--color-white);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  width: 50px;
  height: 50px;
  color: #19314b;
  border: 1px solid #19314b;
  border-radius: 50px;
}
.swiper-container .swiper-button-next:after,
.swiper-container .swiper-button-prev:after {
  font-size: 14px;
}
.swiper-container .swiper-button {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin: 0px auto;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  position: relative;
}
.swiper-horizontal {
  overflow: hidden;
}
.swiper-container .swiper-button-next {
  right: -80px;
  bottom: -28px;
  margin: 0;
}
.swiper-container .swiper-button-prev {
  left: -80px;
}
.swiper-container .swiper-pagination-bullets {
  margin-bottom: 5px;
}
.swiper-container .swiper-pagination-bullet {
  background: var(--color-gray);
}
.swiper-container .swiper-pagination-bullet-active {
  background: var(--color-blue-light);
}
.swiper-container .swiper-button-next:after,
.swiper-container .swiper-rtl .swiper-button-prev:after {
  content: "\f135";
  font-size: 2rem;
  font-family: bootstrap-icons !important;
}
.swiper-container .swiper-button-prev:after,
.swiper-container .swiper-rtl .swiper-button-next:after {
  content: "\f12c";
  font-size: 2rem;
  font-family: bootstrap-icons !important;
}
.inner-page-logo {
  top: -10rem;
  right: -8rem;
}
.services-content {
  color: var(--heading-color);
}
.num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-blue-light);
}
.business-card {
  background: #f9dbbd;
  color: var(--heading-color); /*min-height: 360px;*/
  min-width: 100%;
}
.simple-card {
  background: #f9dbbd;
  color: var(--heading-color);
  width: 100%;
}
.swiper-overflow-container {
  overflow-x: hidden;
}
.swiper-overflow-container .container {
  overflow: visible;
  position: relative;
}
.swiper-overflow-container .swiper-container2 {
  overflow: visible;
}
.swiper-overflow-container .container:before {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 999;
}
.swiper-scrollbar-drag {
  background: #a15144;
}
.swiper-scrollbar {
  background: #f9dbbd;
}
.list-with-icon {
  padding: 0;
  margin: 0;
}
.list-with-icon li {
  list-style: none;
  color: #19314b;
  padding-bottom: 1rem;
  display: flex;
  align-items: start;
}
.list-with-icon li img {
  margin-top: 5px;
}
.gradient-blue-transparent:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgb(44 86 132) 0%,
    rgb(34 66 101 / 34%) 100%
  );
}
.pricing {
  border: 1px solid var(--color-blue-light);
  padding: 1.5rem;
}
.pricing h2 {
  font-weight: 300;
}
.pricing h3 {
  font-weight: 800;
  font-size: 2rem;
}
.contactform {
  box-shadow: 0px 2px 20px 5px rgb(128 128 128 / 5%);
  border: 1px solid rgb(99 170 217 / 20%);
}
.contactform label {
  color: #000;
  font-size: 14px;
}
.form-control {
  border: 1px #e7e7e7 solid !important;
  border-radius: 0.3rem;
  font-size: 0.875rem;
  resize: none;
  box-shadow: 0px 1px 4px 0px rgb(16 24 40 / 5%);
}
.form-select::placeholder,
.form-control::placeholder {
  color: var(--label-color);
  opacity: 1;
}
.form-select:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: var(--label-color);
}
.form-select::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  color: var(--label-color);
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--color-black);
}
.address-iconbg {
  background: var(--gradient-lightblue);
  border-radius: 8px;
  min-width: 62px;
  min-height: 62px;
}
.contact-address h3 {
  font-size: 28px;
  font-weight: 200;
  color: #19314b;
  align-items: center;
  margin: 0;
}
.contact-address h3 i {
  font-size: 1rem;
  margin-top: 0.25rem;
}
.contact-address h3 a {
  align-items: anchor-center;
  color: var(--heading-color);
}
.tablecontent {
  border: 1px solid #386ea8;
  position: relative;
}
.tablecontent::after {
  content: "";
  position: absolute;
  height: 10vh;
  background: linear-gradient(0deg, #ffffffe0 16%, transparent 100%);
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: var(--bs-border-radius-xl) !important;
}
.table-content-list li:last-child {
  padding-bottom: 12vh !important;
}
.accordion-button::after {
  --bs-accordion-btn-icon-width: 1rem;
  color: #98a2b3 !important;
  opacity: 0.5;
}
.table-content-list {
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 50vh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.table-content-list::-webkit-scrollbar {
  display: none;
}
.table-content-list li a {
  color: rgb(25 49 75 / 75%);
  font-weight: 500;
}
.table-content-list li.active a {
  color: #19314b;
  font-weight: 700;
}
.top-lg-1 {
  top: 100px;
}
.fd-counter h2 {
  color: #19314b;
  font-weight: 700;
  margin: 0;
}
.fd-counter p {
  color: #19314b;
  font-size: 1.125rem;
  margin: 0;
}

.teamimg {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.teamimg .pimg {
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  left: 0;
  right: 0;
  justify-content: center;
}
.teamimg img {
  width: 100%;
}
.teamcontent h4 {
  font-weight: 500;
  margin-bottom: 0;
}
.sticky-top-100 {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
  z-index: 1;
}
/* Portfolio Section
--------------------------------*/

#portfolio .portfolio-flters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  overflow: auto;
  white-space: nowrap;
}

#portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-flex;
  padding: 10px 26px;
  color: var(--color-blue-light);
  border-radius: 30px;
  font-weight: 800;
  transition: all 0.3s ease-in-out;
}
#portfolio .portfolio-flters li {
  border: 1px solid var(--color-blue-light);
  margin: 0 8px 4px;
}
#portfolio .portfolio-flters li a:focus,
#portfolio .portfolio-flters li a:hover {
  outline: 0;
}

#portfolio .portfolio-flters li:hover,
#portfolio .portfolio-flters li.filter-active {
  background: var(--color-blue-light);
  color: var(--color-white);
}

.pagination {
  border-radius: 0.25rem;
}
.pagination .page-link {
  background: transparent;
  color: var(--color-white);
  min-width: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-item.active .page-link,
.pagination .page-link:hover {
  background: var(--heading-color);
  color: var(--color-white);
  border-color: var(--heading-color);
}
.modal.fade .modal-dialog {
  transition: transform 0.15s ease-out;
  transform: translateY(-100px) scale(0.8);
}
.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.t-border-b {
  border-bottom: 1px solid #326295;
}

/* Style for filter buttons */
.filter-buttons {
  margin-bottom: 10px;
}
.filter-buttons button {
  cursor: pointer;
  border: 1px solid var(--color-blue-light);
  display: inline-flex;
  padding: 10px 26px;
  color: var(--color-blue-light);
  border-radius: 30px;
  font-weight: 800;
  margin: 0 2px 4px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
/* Style for active button */
.filter-buttons button.active {
  background: var(--color-blue-light);
  color: var(--color-white);
}
footer {
  background: var(--color-gradient);
  letter-spacing: 1px;
}
.footer-links h4 {
  font-size: 14px;
  color: var(--color-white);
  padding-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.footer-links ul li a {
  color: var(--color-white);
  transition: 0.3s;
}
.copy-right p a:hover,
.footer-links ul li a:hover {
  text-decoration: underline;
  color: var(--color-white);
  text-decoration-color: var(--color-white);
  text-underline-offset: 0.375em;
}
.industries-section {
  background: var(--bg-blue-light-200);
  padding: 3rem 0;
}

.industries-section ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .industries-section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .industries-section ul > li {
    width: 24%;
  }
}
.industries-section ul > li {
  border: 1px solid #ebebeb;
  text-align: center;
}
.industries-section ul > li > a {
  display: block;
  padding: 1rem;
  background: #fff;
}

.industries-section ul > li > a:hover {
  background: #326295;
  color: #fff;
  text-decoration: unset;
}

.copy-right p {
  color: #aab3bd;
  letter-spacing: 1px;
  font-size: 14px;
}
.copy-right p a {
  color: #aab3bd !important;
}
.back-to-top {
  position: fixed;
  right: 15px;
  display: none;
  border: 1px solid var(--color-white);
  bottom: 15px;
  text-align: center;
  z-index: 996;
  background: #f9dbbd;
  width: 48px;
  height: 48px;
  transition: all 0.4s;
  border-radius: 0.25rem;
}
.back-to-top i {
  font-size: 2rem;
  color: #19314b;
}
.back-to-top:hover i {
  color: #f9dbbd;
}
.back-to-top:hover {
  background: #a15144;
}
.modal-close-btn {
  padding: 0;
  margin: 0;
  border: 1px solid #2a3a5c;
  box-shadow: none;
  border-radius: 100%;
  font-size: 12px;
  margin-top: 0 !important;
  margin-right: 0rem !important;
}
.color-pdf {
  color: #336699bf;
}
.input-file {
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
.input-file + .js-labelFile {
  color: #336699;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 1.5rem;
  cursor: pointer;
  width: 100%;
}

.border-dashed {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 10px;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown-item {
    color: #1e3a5a !important;
  }
  .dropdown-menu li {
    line-height: 18px;
    border-bottom: 1px solid #1e3a5a;
  }
  .navmenu li {
    padding: 0.75rem 0.5rem;
  }
  .foundimgposition {
    position: absolute;
  }
  .founder-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .cpacontent {
    padding-right: 3rem;
    position: relative;
  }
  .cpacontent-border:after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 45%;
    bottom: 0;
    width: 1px;
    opacity: 25%;
    background: linear-gradient(to right, #326295, #1d3958);
    height: 115px;
  }
  .image-layer {
    position: absolute;
    right: 0px;
    top: 0rem;
    width: 48%;
    height: auto;
  }
  .swiper-container.swiper-horizontal {
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .errorbg {
    min-height: 800px;
  }
  .error h1 {
    font-size: 400px;
    line-height: 52px;
    letter-spacing: -24px;
    padding-bottom: 10rem;
    padding-top: 10rem;
  }
  .error h3 {
    font-size: 56px;
  }
  .imageposition {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  /* .innertop-policy{min-height: 300px;}
  .innertop{min-height: 490px;} */
  .fd-counter h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .fotext span {
    display: block;
  }
  .mt-n1-3 {
    margin-top: -3rem;
  }
  .flogo img {
    height: 55px;
  }
  .imagegradient:after {
    left: 0;
    background: linear-gradient(to left, rgb(29 57 88 / 0%), rgb(40 78 120));
  }
  .section-heading {
    font-size: 48px;
    line-height: 56px;
  }
  .slider-heading {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: -1px;
  }
  .logo-frame-lg {
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
  }
  .min-h-200-lg {
    min-height: 230px;
  }
  .modal-lg-660 {
    max-width: 660px;
  }
  .w-lg-75 {
    max-width: 75%;
  }
  .innercard {
    max-width: 85%;
  }
  .table-content-list li a {
    padding-right: 1rem;
  }
  .slider-heading-content {
    /* max-height:100px; */
    overflow: hidden;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* -webkit-line-clamp: 2; */
    white-space: normal;
    white-space: break-spaces;
  }
  /*.read-btn-position{position: absolute; bottom:0; left: 0}*/
}

@media (max-width: 991px) {
  .logo img {
    max-height: 42px;
  }
  .fd-counter h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .hero-block h1,
  .innner-block h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .cpacontent {
    width: 100%;
    border-bottom: 1px solid #326295;
  }
  .blog-details h2 {
    font-size: 36px;
  }
  .section-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .careercard h3 {
    font-size: 26px;
  }
  .careercard img {
    max-height: 95px;
  }
  .heading-midium {
    font-size: 28px;
  }
  .navmenu {
    padding-top: 1rem;
  }
  .error h1 {
    font-size: 150px;
    letter-spacing: -14px;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
  .error h3 {
    font-size: 22px;
  }
  .smicon {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .smicontop {
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 0;
  }
  .mt-n1-3 {
    margin-top: -2rem;
  }
  .contact-address h3 {
    font-size: 1.5rem;
  }
  #portfolio .portfolio-flters li {
    font-size: 14px;
    padding: 10px 20px;
  }
  .min-h-cover-sm {
    min-height: 400px;
    object-fit: cover;
  }
  .flogo img {
    height: 55px;
  }
  .imagegradient:after {
    left: 0;
    background: linear-gradient(to top, rgb(29 57 88 / 0%), rgb(40 78 120));
  }
  .imageposition {
    margin-bottom: 2rem;
  }
  .cardcontent h2 {
    line-height: 28px;
  }
  .cpacontent img {
    height: 50px;
  }
  .services-content h2,
  .cpacontent h3 {
    font-size: 28px !important;
    line-height: 36px;
  }
  .slider-heading {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
  }
  .logo-frame-sm {
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .fullwidthinner-sm {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
  }
  #myTable tr td {
    display: block;
  }
  #myTable thead {
    display: none;
  }
  .navbar-collapse.show {
    min-height: 100vh;
    visibility: visible;
    opacity: 1;
  }
  .navbar-collapse {
    width: 100%;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0s;
  }
  .navmenu li a:before {
    content: "\f285";
    position: absolute;
    right: 0;
    top: 40%;
    color: #fff;
    font-size: 12px;
    font-family: bootstrap-icons !important;
  }
  .navmenu li a {
    margin-left: 0.5rem;
    border-bottom: 1px solid #336397;
    font-size: 1.125rem;
    padding: 1.125rem 0;
    margin-right: 1rem;
    position: relative;
  }
  .navmenu .dropdown-menu .dropdown-item {
    color: #000;
  }

  .navbar .btn-light-blue {
    min-width: 98%;
    margin: 1.5rem 0 !important;
    text-align: center;
  }
  .menu-shape-sm-2 {
    bottom: 30px;
    right: -24px;
  }
  .tabbtn {
    justify-content: inherit !important;
  }
}

@media (min-width: 992px) {
  .navbar-nav .dropdown-submenu ul.dropdown-menu {
    display: none !important;
    position: absolute;
    bottom: 0;
    left: 100%;
  }

  .navbar-nav .dropdown-submenu:hover ul.dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .navbar-nav .dropdown-submenu ul.dropdown-menu {
    display: block;
    /* margin-left: 1rem; */
    border: 0;
  }

  .navbar-nav .dropdown-submenu ul.dropdown-menu li a {
    padding-left: 2rem;
  }

  .navbar-nav .dropdown-submenu .dropdown-toggle::after {
    position: absolute;
    right: 1rem;
    top: 2rem;
  }
}

@media (max-width: 767px) {
  .w-sm-100 {
    width: 100%;
  }

  .innner-block h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .section-heading {
    font-size: 30px;
    line-height: 36px;
  }
  .slider-heading {
    font-size: 26px;
    line-height: 30px;
  }
  .heading-small {
    font-size: 26px !important;
    line-height: 30px;
  }
  .section-heading-lh56 {
    font-size: 26px;
    line-height: 30px;
  }
	.m-hide{
		display: none;
	}
}
@media (min-width: 320px) and (max-width: 480px) {
  .business-card {
    /*height: 560px;*/
    min-height: 100%;
  }
}

@media (max-width: 381px) {
  .contact-address h3 {
    font-size: 1.2rem;
  }
}
.light-brown-btn:focus,
.light-brown-btn:hover,
.btn-light-blue:focus,
.btn-light-blue:hover,
.btn-dark-blue:focus,
.btn-dark-blue:hover,
.btn-outine-blue:focus,
.btn-outine-blue:hover {
  text-decoration: none !important;
}

/* .swiper-container3 .swiper-slide {
  width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
} */

.blog-item-wrapper:hover {
  text-decoration: none !important;
}
.blog-item-wrapper:hover .blog-readmore .learnmore {
  text-decoration: underline;
  text-underline-offset: 0.375em;
}
	/* Topbar Styles */
.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: inherit; /* Matches your site font */
}

.top-bar a {
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.top-bar a:hover {
    opacity: 0.8;
    color: #ffffff;
}

/* Ensure the main navbar stays stuck if you use a sticky header */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1020;
}
		
.rotate-icon {
    display: inline-block; /* Required for transform to work */
    transform: rotate(90deg); /* Adjust the degrees until it looks right to you */
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-bar-contact {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}