:root {
  --primary: #035e9b;
  --primary-light: rgba(3, 94, 155, 0.08);
  --text: #222;
  --text-dark: #161616;
  --bg: #fff;
  --primary-color: #035e9b;
  --secondary-color: #fa5f34;
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.navigation-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.navigation-menu li {
  position: relative;
}

.navigation-menu > li > a {
  text-decoration: none;
  color: var(--text);
  padding: 13px 0 15px;
  margin-left: 17px;
  display: block;
  transition: 0.2s ease-in-out;
}

.navigation-menu > li > a:hover {
  color: var(--primary);
}

/* Dropdown (Mega menu) */
.mega-navigation-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100vw;
  background: #fff;
  box-shadow: 0 0px 10px #2eabff24;
  padding: 1.5rem 1rem;
  display: none;
}

.navigation-menu li:hover > .mega-navigation-menu {
  display: block;
  width: max-content;
  border-radius: 3px;
}

.mega-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.mega-navigation-menu a::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: transparent;
  transition: all 0.2s ease;
}

.mega-navigation-menu a:hover::before {
  background-color: var(--primary);
}

.mega-navigation-menu a {
  text-decoration: none;
  color: var(--text);
  display: block;
  padding: 0.4rem 0.7rem;
  position: relative;
}

.mega-navigation-menu a:hover,
.mega-navigation-menu a.active,
.mega-navigation-menu a:active {
  background: var(--primary-light);
  color: var(--primary);
}

@media (max-width: 992px) {
  .navigation-menu {
    display: none;
  }
}

/** Home Page CSS **/

section {
  padding-block: 80px;
}

.text-lightgreen {
  color: #96e1da;
}

.title {
  margin-block: 50px;
  margin-top: 0 !important;
}

.title h1 {
  margin-block: 0px;
  padding-bottom: 16px;
  margin-bottom: 15px;
  width: max-content;
  font-size: 28px;
  color: var(--text-dark);
}

@media (max-width: 762px) {
  .title h1 {
    width: initial;
  }
}

.title h1.primary {
  border-bottom: 10px solid var(--primary-color) !important;
}

.title h1.secondary {
  border-bottom: 10px solid var(--secondary-color) !important;
}

.title p {
  font-size: 1rem;
  margin-block: 0;
  color: #263238;
}

.first-section {
  background-color: #02426d;
}

@media (max-width: 767px) {
  .first-section {
    margin-top: 0;
  }
}

.btn-mirror {
  border: 1px solid #fff;
  background: rgba(179, 207, 225, 0.49);
  color: white !important;
  padding: 18px 50px;
  width: max-content;
}

.btn-white {
  padding: 18px 50px;
  width: max-content;
  background-color: white;
  color: #035e9b;
  transition: 250ms ease-in-out;
}

.btn-outline-white {
  padding: 18px 50px;
  width: max-content;
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: white !important;
  transition: 250ms ease-in-out;
}

.btn-outline-white:hover {
  background-color: white !important;
  color: #035e9b !important;
}

.new-template .btn-outline-white:hover {
  background-color: white !important;
  border-color: #1c6ea5 !important;
}
.btn-white:hover {
  background-color: #035e9b !important;
  color: white !important;
}

.btn-white:focus {
  background-color: #005885 !important;
  color: white;
}

.new-template .btn {
  padding: 18px 50px;
  width: max-content !important;
  border-radius: 3px !important;
}

.home {
  overflow: hidden;
  /* keep this reda  */
  height: 60vh;
}

.home .home-img {
  position: relative;
  top: -15%;
  display: block;
  margin-inline: auto;
}

.text-clear {
  line-height: 1.8;
}

@media (min-width: 996px) {
  .border-right {
    border-right: 1px solid #161616b2;
  }
}

@media (max-width: 995px) {
  .border-right {
    border-bottom: 1px solid #161616b2;
    margin-bottom: 30px;
  }
}

.text-success {
  color: #24a148 !important;
}

.bg-light {
  background-color: #f4fbff !important;
}

.text-green {
  color: #2ba9b4 !important;
}

.text-gradient {
  background: linear-gradient(
    169deg,
    var(--Picton-Blue-400, #2ba9b4) 24.95%,
    #c0e6ff 137.25%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq .accordion-button {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.faq .accordion-button:focus {
  font-weight: bold;
}

.faq .accordion-body {
  border-left: 3px solid var(--primary-color);
}

.banner-circle {
  background: linear-gradient(
    91deg,
    #035e9b 0.47%,
    var(--Picton-Blue-400, #2ba9b4) 138.2%
  );
  padding-block: 120px;
}

.banner-circle .circle {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  right: -20%;
  top: -20%;
  border: 1.5px solid #fff;
  background: rgba(3, 94, 155, 0.3);
  backdrop-filter: blur(20px);
}

.carousel-indicators {
  bottom: -100px;
}

.carousel-indicators [data-bs-target] {
  width: 125px;
}

.reports .carousel-indicators {
  bottom: -50px;
}

.reports .carousel-indicators [data-bs-target] {
  width: 125px;
  background-color: #035e9b;
}

.card-boxes {
  background-color: #f4fbff;
}

.card-boxes .card-box {
  background-color: white;
  padding: 16px 25px;
  transition: 250ms ease-in-out;
  display: block;
  margin-inline: auto;
}

.card-boxes .card-box.fixed-height {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-boxes .card-box:hover {
  box-shadow: 0 111px 31px 0 rgba(3, 94, 155, 0),
    0 71px 28px 0 rgba(3, 94, 155, 0.01), 0 40px 24px 0 rgba(3, 94, 155, 0.05),
    0 18px 18px 0 rgba(3, 94, 155, 0.09), 0 4px 10px 0 rgba(3, 94, 155, 0.1);
}

.card-boxes .card-box .divider {
  display: block;
  border-bottom: 1px solid var(--primary-color);
  margin-block: 15px;
}

.report {
  background-color: #f4fbff;
  padding: 25px 30px;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.report a {
  color: inherit;
  text-decoration: inherit;
}

.report img {
  object-fit: cover;
}

.report .report-tag {
  color: #2ba9b4;
  text-transform: uppercase;
  font-size: 14px;
}

.report .report-tag {
  color: #2ba9b4;
  text-transform: uppercase;
  font-size: 14px;
}

.report .report-title {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
}

.report .report-text {
  margin-top: 7px;
  color: #5c616c;
  font-size: 16px;
  line-height: 1.6;
}

.report .report-text {
  margin-top: 7px;
  color: #5c616c;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 570px) {
  .report {
    flex-direction: column;
  }

  .report img {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .report {
    margin-bottom: 45px;
  }

  .reports .row {
    display: block !important;
  }
}

.testimonials .row {
  margin-bottom: 80px !important;
}

.testimonials .testimonial-box {
  padding: 33px;
  box-shadow: 0 111px 31px 0 rgba(3, 94, 155, 0),
    0 71px 28px 0 rgba(3, 94, 155, 0.01), 0 40px 24px 0 rgba(3, 94, 155, 0.05),
    0 18px 18px 0 rgba(3, 94, 155, 0.09), 0 4px 10px 0 rgba(3, 94, 155, 0.1);
  height: 100%;
  position: relative;
  background-color: white;
}

.testimonials .testimonial-box::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  clip-path: polygon(0 0, 0 45%, 100% 0);
  background-color: white;
  position: absolute;
  left: 0;
  bottom: -100px;
}

@media (max-width: 992px) {
  .testimonials .testimonial-box::after {
    display: none;
  }
}

.testimonials .testimonial-box::after {
  box-shadow: inherit;
}

.testimonials .testimonial-box .divider {
  border-bottom: 1px solid var(--primary-color);
  margin-block: 20px;
}

.testimonials .carousel-indicators {
  bottom: -50px;
}

.testimonials .carousel-indicators [data-bs-target] {
  width: 125px;
  background-color: #035e9b;
}

/** Client area */

.client-banner {
  padding-block: 120px;
  padding-bottom: 0;
  padding-inline: 50px;
}

.client-banner .margin-section-bottom {
  margin-bottom: 120px;
}

.client-banner .square {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  transform: rotate(48deg);
  right: -20%;
  top: -30%;
  background: rgba(213, 228, 237, 1);
}

.client-banner .client-banner-img {
  position: absolute;
  right: 35%;
  bottom: 0;
}

.solutions .solution-plus {
  color: rgba(179, 207, 225, 1);
  border: 10px solid rgba(179, 207, 225, 1);
  width: 200px;
  height: 200px;
  transition: 0.25s ease-in-out;
}

.solutions .solution-plus:hover {
  color: rgba(143, 192, 223, 1);
  border-color: rgba(143, 192, 223, 1);
}

.solutions .solution-plus i {
  font-size: 100px;
}

@media (max-width: 992px) {
  .client-banner {
    padding: 45px 20px;
  }

  .client-banner .margin-section-bottom {
    margin-bottom: 0px;
  }

  .solutions .solution-plus {
    width: 100px;
    height: 100px;
    border: 5px solid rgba(179, 207, 225, 1);
  }

  .solutions .solution-plus i {
    font-size: 45px;
  }
}

/*** Footer */

footer {
  margin: 0 auto;
  padding: 5rem 0 2rem;
  /* background-color: #f5f7fe; */
  background: #035e9b;
  color: #eee;
  width: 100%;
}

footer .part1 img {
  width: 350px;
  max-width: 100%;
}

footer h4 {
  color: white;
  font-size: 28px;
  margin-bottom: 15px;
}

footer p {
  color: #eee;
  font-size: 14px;
  line-height: 25px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  padding: 5px 0;
}

footer a {
  color: white;
  font-size: 15px;
  text-decoration: none;
}

footer a:hover {
  color: #eee;
  text-decoration: underline;
}

footer .footerLogo {
  max-width: 160px;
}

footer a i {
  color: #949fa9;
  min-width: 16px;
}

/* Sticky Custom Navbar */
.new-sticky-navbar .nav .nav-link {
  padding-left: 10px;
  position: relative;
  font-weight: normal !important;
  text-align: start;
  background-color: transparent !important;
}

.new-sticky-navbar.top-navbar .nav .nav-link {
  padding-left: initial;
}

.new-sticky-navbar.top-navbar .nav .nav-link.active {
  background-color: transparent;
}

.new-sticky-navbar .nav .nav-link:hover {
  color: #035e9b;
}

.new-sticky-navbar .nav .nav-link.active {
  color: #035e9b;
  font-weight: 600 !important;
}

.new-sticky-navbar .nav .nav-link.active::after {
  width: 100%;
}

.new-sticky-navbar .nav .nav-link::after {
  content: "";
  width: 0px;
  height: 5px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: #035e9b;
  transition: 250ms ease-in-out;
}

/* Sticky Custom Navbar */
.new-template .swiper .swiper-pagination-bullet {
  border-radius: 3px !important;
  width: 120px;
  height: 5px;
}

/* MEDIA Page*/

.media-sticky-navbar .media-link-primary .nav-link {
  color: #333;
  transition: 250ms ease-in-out;
  font-weight: 600;
}

.media-sticky-navbar .media-link-primary .nav-link.active,
.media-sticky-navbar .media-link-primary .nav-link:hover {
  color: #035e9b;
}

.media-active {
  border-left: 6px solid #035e9b;
}

/* .media-sticky-navbar .media-link-primary .nav-link::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 5px;
  height: 0%;
  background-color: #035e9b;
  transition: 250ms ease-in-out;
} */

.media-sticky-navbar .media-link-primary .nav-link.active::before,
.media-sticky-navbar .media-link-primary .nav-link:hover::before {
  height: 100%;
}

/* New Template Home Section */
.new-template .home {
  padding-block: 150px !important;
  height: auto !important;
}

.new-template .home h2 {
  margin-top: 0 !important;
}

.solution-card {
  border: 0.5px solid #035e9b;
  transition: 250ms ease-in-out;
}

.solution-card:hover {
  background-color: #f4fbff;
}

.solution-carrousel .carousel-indicators [data-bs-target] {
  background-color: #035e9b;
}

.solution-carrousel .carousel-indicators {
  bottom: -60px;
}

.team-details {
  padding: 40px 25px;
  padding-bottom: 0;
  overflow: hidden;
}

.team-details.primary {
  background-color: #f4fbff;
}

.team-details.secondary {
  background-color: #fef7f5;
}

.team-details h3 {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
}

.team-details h3 + div {
  color: #263238;
  font-size: 19px;
  line-height: 1.5;
}

.team-details .flex-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 792px) {
  .team-details .flex-container {
    flex-direction: column;
  }
}

.team-details img {
  display: block;
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: -25px;
  margin-left: -10px;
}

.team-details .details-info {
  margin-top: -15px;
  margin-bottom: 30px;
}

.team-details .details-info .divider {
  width: 75px;
  border-top: 2px solid #898989;
}

.team-details .details-info .description {
  color: #5a5b5b;
}

.team-details .circle.primary::before,
.team-details .circle.secondary::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 100%;
  left: -10px;
  bottom: -35%;
}

.team-details .circle.primary::before {
  background: linear-gradient(
    169deg,
    rgba(3, 94, 155, 0.33) 8.35%,
    rgba(180, 225, 255, 0.18) 121.41%
  );
}

.team-details .circle.secondary::before {
  background: linear-gradient(
    169deg,
    rgba(250, 95, 52, 0.33) 8.35%,
    rgba(180, 225, 255, 0.18) 121.41%
  );
}

@media (min-width: 996px) {
  .border-right {
    border-right: 1px solid #161616b2;
  }
}

@media (max-width: 995px) {
  .border-right {
    border-bottom: 1px solid #161616b2;
    margin-bottom: 30px;
  }
}

.bg-new-light {
  background-color: #f3fafe !important;
}

.custom-title {
  width: max-content;
  border-bottom: 1px solid var(--secondary-color);
}

.thanks {
  background: linear-gradient(
    181deg,
    rgba(82, 175, 238, 0.13) 1.1%,
    rgba(243, 250, 254, 0.23) 84.99%
  );
  padding: 50px;
  border-radius: 100%;
  width: 650px;
  height: 650px;
  margin: auto;
  text-align: center;
}

.thanks img {
  margin-top: 50px;
}

.last-banner {
  padding-block: 120px;
  padding-bottom: 0;
}

.last-banner form {
  height: 60px;
}

.last-banner input {
  height: 60px;
}

.last-banner .circle {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 100%;

  right: -10%;
  top: -0%;
  border: 1.5px solid #fff;
  background: rgba(3, 94, 155, 0.3);
  backdrop-filter: blur(20px);
}

.last-banner .last-banner-img {
  position: absolute;
  right: 15%;
  bottom: 0;
  height: 400px;
}

/* Sticky Social Media Buttons */
.social-sticky-buttons {
  position: fixed;
  left: 20px;
  top: 30%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.social-sticky-buttons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-sticky-buttons a:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-sticky-buttons a i {
  font-size: 20px;
}

/* LinkedIn Button */
.social-sticky-buttons .linkedin {
  background-color: #0077b5;
  color: white;
}

.social-sticky-buttons .linkedin:hover {
  background-color: #005885;
}

/* Facebook Button */
.social-sticky-buttons .facebook {
  background-color: #1877f2;
  color: white;
}

.social-sticky-buttons .facebook:hover {
  background-color: #0d5dbf;
}

/* Twitter/X Button */
.social-sticky-buttons .twitter {
  background-color: #000000;
  color: white;
}

.social-sticky-buttons .twitter:hover {
  background-color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .social-sticky-buttons {
    left: 10px;
  }

  .social-sticky-buttons a {
    width: 40px;
    height: 40px;
  }

  .social-sticky-buttons a i {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .social-sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 10px;
  }

  .social-sticky-buttons a {
    width: 45px;
    height: 45px;
  }

  .social-sticky-buttons a:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .social-sticky-buttons {
    bottom: 15px;
    gap: 8px;
  }

  .social-sticky-buttons a {
    width: 42px;
    height: 42px;
  }

  .social-sticky-buttons a i {
    font-size: 16px;
  }
}

.events .event-month {
  background-color: #fcfcfc;
  width: max-content;
}

.events .event-separator {
  border-top: 1px solid #525252;
  margin-top: -15px;
}

.events .event {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px 25px;
  transition: 0.25s ease-in-out;
}

.events .event:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.events .event-container.primary .event {
  background-color: #f4fbff;
}

.events .event-container.primary h4,
.events .event-container.primary .event-month,
.events .event-container.primary .event-icon {
  color: #035e9b;
}

.events .event-container.secondary .event {
  background-color: #fff6f3;
}

.events .event-container.secondary h4,
.events .event-container.secondary .event-month,
.events .event-container.secondary .event-icon {
  color: #c84c2a;
}

.events .event .date-container p.day {
  font-size: 22px;
}

.events .event .date-container p.day-number {
  font-size: 32px;
}

.tags-section .btn-lightgreen {
  background-color: #96e1da;
  color: #333;
  transition: 0.3s ease-in-out;
}

.btn {
  outline: none;
  border: none;
}

.tags-section .btn-lightgreen:hover {
  background-color: #5fdacdff;
  color: #333;
}

.tags {
  border-top: 1px solid var(--primary-color);
  display: flex;
  flex-wrap: wrap;
  width: max-content;
}

.tags button {
  font-size: 10px;
}

.tags-section button {
  font-size: 10px;
}

.accordion {
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: #ededed;
  color: #333;
}
.faq .accordion-button:not(.collapsed) {
  border-left: 3px solid #035e9b !important;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.blogs .blog {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.blog-details h2 {
  font-size: 40px;
  line-height: 1.3;
}

.blog-details .date {
  border-right: 1px solid #333;
}

.blog-details .description p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.blog-details .description img {
  margin: auto;
  margin-block: 30px;
}

.blog-details .divider {
  width: 50%;
  border-top: 1px solid #717171;
}

.blog-details .description a {
  text-decoration: underline;
}

.btn-lightgreen {
  background-color: #2ba9b4;
  color: white;
}

.btn {
  outline: none;
  border: none;
}

.btn-lightgreen:hover {
  background-color: #21838bff;
  color: white;
}

.tags {
  border-top: 1px solid var(--primary-color);
  display: flex;
  flex-wrap: wrap;
  width: max-content;
}

.tags button {
  font-size: 10px;
}

.tags-section button {
  font-size: 10px;
}

/* .social-contact {
  border-left: 1px solid var(--primary-color);
}

.social-contact #search-input {
  color: #689EC3;
  padding-left: 40px;
}

.social-contact h6 {
  width: max-content;
  padding-right: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.30);
} */

.blogs .categories button {
  text-align: start;
  margin-bottom: 3px;
  font-size: 15px;
}

.carousel-inner .col-lg-6 {
  display: flex;
}

.carousel-inner .report {
  flex-direction: row;
  /*stack content vertically */
  height: 85%;
  /* fill parent height */
}

/* Let content inside grow to fill remaining space if needed */
.carousel-inner .report-content {
  flex-grow: 1;
}

.report {
  background-color: #f4fbff;
  padding: 25px 30px;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.report a {
  color: inherit;
  text-decoration: inherit;
}

.report img {
  width: 200px;
  height: 216px;
}

.report .report-tag {
  color: #2ba9b4;
  text-transform: uppercase;
  font-size: 14px;
}

.report .report-title {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
}

.report .report-text {
  margin-top: 7px;
  color: #5c616c;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 570px) {
  .report {
    flex-direction: column;
  }

  .report img {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .report {
    margin-bottom: 45px;
  }

  .reports .row {
    display: block !important;
  }
}

.reports .carousel-indicators {
  bottom: -50px;
}

.reports .carousel-indicators [data-bs-target] {
  width: 125px;
  background-color: #035e9b;
}

/*** Global Search ***/

#global-search .new-template .social-contact #search-input {
  background-color: #f4fbff;
  color: #333;
  padding-left: 30px;
  /* font-size: 16px; */
}

#global-search .new-template .social-contact #search-input:focus {
  background-color: white;
  color: #3d7da8ff;
}

#global-search .new-template .social-contact h6 {
  width: max-content;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#global-search .cards-container {
  margin: 0;
}

#global-search .search-tabs .nav .nav-link.active {
  color: var(--primary-color) !important;
  border-bottom: 2px solid var(--primary-color) !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

#global-search .search-tabs .nav .nav-link {
  box-shadow: none !important;
}

#global-search .search-tabs .nav .nav-link:hover {
  color: var(--primary-color) !important;
}

#global-search .search-section a {
  color: inherit;
}

#global-search .search-section .divider {
  border-bottom: 1px solid #b8b8b8;
  margin-block: 25px;
}

#global-search .search {
  padding: 0;
  position: relative;
  transition: 250ms ease-in-out;
}

/* #global-search .search:hover {
      box-shadow: 0px 0px 20px rgba(107, 107, 107, 0.25);
  } */

#global-search .search:hover .search-title {
  color: #035e9b !important;
}

#global-search .search .search-tag {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  color: #2ba9b4;
  transition: 250ms ease-in-out;
}

#global-search .search .search-text {
  font-size: 14px;
  color: #525252;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

#global-search .search .search-date {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#global-search .search .search-author {
  font-size: 14px;
}

#global-search .search .search-date i {
  margin-inline: 8px;
  font-size: 4px;
}

@media (max-width: 991.98px) {
  .contact-page-submit-btn {
    display: block;
    width: 75% !important;
    margin: 0 auto;
  }
}

/* NEW BADGES PAGE */
.promote .promote-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: 250ms ease-in-out;
  background: white;
  font-size: 22px;
  text-align: center;
  height: 178px;
}

.promote .promote-card:hover {
  box-shadow: 0px 2px 3px 0px #035e9b1a, 0px 6px 6px 0px #035e9b17,
    0px 14px 8px 0px #035e9b0d, 0px 25px 10px 0px #035e9b03,
    0px 39px 11px 0px #035e9b00;
}

.badge-section {
  padding: 65px 70px;
  margin-top: 45px;
  transition: 250ms ease-in-out;
  margin-bottom: 55px;
}

.badge-section:hover {
  box-shadow: 0 111px 31px 0 rgba(3, 94, 155, 0),
    0 71px 28px 0 rgba(3, 94, 155, 0.01), 0 40px 24px 0 rgba(3, 94, 155, 0.05),
    0 18px 18px 0 rgba(3, 94, 155, 0.09), 0 4px 10px 0 rgba(3, 94, 155, 0.1);
}

@media (max-width: 992px) {
  .badge-banner .badge-banner-img {
    display: none;
  }

  .badge-section {
    padding: 45px 30px;
  }
}

.quick-links a {
  color: #333;
  font-size: 16px;
  transition: 250ms ease-in-out;
}

.quick-links a:hover {
  box-shadow: 0 111px 31px 0 rgba(3, 94, 155, 0),
    0 71px 28px 0 rgba(3, 94, 155, 0.01), 0 40px 24px 0 rgba(3, 94, 155, 0.05),
    0 18px 18px 0 rgba(3, 94, 155, 0.09), 0 4px 10px 0 rgba(3, 94, 155, 0.1);
}

.quick-links a:active,
.quick-links a:focus {
  color: #035e9b;
  text-decoration: underline;
}

/* ---------- SIGN IN --------- */

.gradient-blur {
  width: 100%;
  height: 400px;
  border-radius: 40px;
  background-image: linear-gradient(to bottom, transparent 30%, #f1f4f8 100%),
    linear-gradient(to right, #e4c7c8, #90c3db, #d4bc9c);
  filter: blur(60px);
  position: absolute;
  top: -10px;
}

.gradient-footer {
  background: linear-gradient(
    91.45deg,
    #035e9b -6.58%,
    #2ba9b4 151.95%
  ) !important;
}
/* ---------- FIX HEADER ICONS ON LAPTOP ------------ */
@media (min-width: 992px) and (max-width: 1118px) {
  .hide-laptop {
    display: none !important;
  }
  .navigation-menu > li > a {
    font-size: 14px;
    margin-left: 5px;
  }
}
/* ---------- TESTIMONIALS ------------ */
@media (min-width: 992px) {
  .testimonials .carousel-inner {
    height: 445px !important;
  }
}
