/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #1a475f;
}

a {
  color: #20439b;
  text-decoration: none;
}

a:hover {
  color: #1D5A80;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #20439b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #1a475f;
  color: #fff;
}
.back-to-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;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  position: relative;
  z-index: 1001;
}

#topbar {
  background: #39312f;
  font-size: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  height: 40px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #20439b;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #20439b;
}
#topbar .cta a {
  color: #fff;
  background: #20439b;
  padding: 10px 20px;
  display: inline-block;
  transition: 0.3s;
}
#topbar .cta a:hover {
  background: #1a475f;
}
@media (max-height: 1280px) {
  #topbar {
    font-size: 13px;
  }
}
@media (max-height: 768px) {
  #topbar {
    font-size: 12px;
  }
}
@media (max-height: 640px) {
  #topbar {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  background: #fff;
  transition: all 0.5s;
  z-index: 997;

}

/* JS toggles this on scroll */
#header.header-fixed {
  position: fixed;     /* THIS is what makes it stick */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #1A475F;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 150px; */
}

.scrolled-offset {
  margin-top: 70px;
}

#main {
  padding-top: 70px;
  z-index: 3;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #231f20;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #20439b;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #20439b;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #1a475f;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #20439b;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
 * Mobile Navigation
 */
.mobile-nav-toggle {
  color: #473d3a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar > ul {
    display: none;
  }
}

/* Prevent page scrolling while menu is open */
body.mobile-nav-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

/* Full-screen background overlay */
.navbar-mobile {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;

  background: rgba(11, 27, 48, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Mobile menu panel */
.navbar-mobile > ul {
  display: block;
  position: absolute;

  top: max(78px, calc(env(safe-area-inset-top) + 64px));
  left: 16px;
  right: 16px;
  bottom: 16px;

  margin: 0;
  padding: 18px 0 130px;

  overflow-y: auto;
  overscroll-behavior: contain;

  list-style: none;
  border-radius: 18px;
  background-color: #ffffff;

  background-image: url("../img/logo/logo.png");
  background-repeat: no-repeat;
  background-position: center calc(100% - 24px);
  background-size: 300px auto;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

/* Close button */
.navbar-mobile .mobile-nav-toggle {
  position: fixed;
  top: max(20px, env(safe-area-inset-top));
  right: 20px;
  z-index: 10001;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  background: #ffffff;
  color: #20439b;

  font-size: 27px;
  line-height: 1;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

/* /* Mobile navigation links */
.navbar-mobile a,
.navbar-mobile a:focus {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 5px 12px;
  padding: 14px 18px 14px 22px;

  border: 1px solid transparent;
  border-radius: 12px;

  color: #263746;
  background: transparent;

  font-size: 16px;
  font-weight: 600;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Small accent line */
.navbar-mobile a::before {
  content: "";
  position: absolute;

  left: 8px;
  top: 50%;

  width: 4px;
  height: 0;

  border-radius: 10px;
  background: #20439b;

  transform: translateY(-50%);
  transition: height 0.25s ease;
}

/* Hover state — lighter and more subtle */
.navbar-mobile a:hover,
.navbar-mobile li:hover > a {
  color: #20439b;

  background: rgba(32, 67, 155, 0.06);
  border-color: rgba(32, 67, 155, 0.12);

  transform: translateX(4px);
}

/* Hover accent */
.navbar-mobile a:hover::before,
.navbar-mobile li:hover > a::before {
  height: 45%;
}

/* Active page or section */
.navbar-mobile a.active,
.navbar-mobile a.active:focus {
  color: #ffffff;

  background: linear-gradient(
    135deg,
    #20439b,
    #1a475f
  );

  border-color: transparent;
  box-shadow: 0 8px 20px rgba(32, 67, 155, 0.24);

  transform: none;
}

/* Active accent becomes white */
.navbar-mobile a.active::before,
.navbar-mobile a.active:focus::before {
  height: 55%;
  background: rgba(255, 255, 255, 0.85);
}

/* Keep active menu white while hovered */
.navbar-mobile li:hover > a.active {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #20439b,
    #1a475f
  );
  transform: none;
}
.navbar-mobile > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(26, 71, 95, 0.07);
}

/* Mobile call-to-action button */
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  padding: 11px 20px;

  background: #20439b;
  color: #ffffff;
  border-radius: 8px;
}

/* Mobile dropdown menus */
.navbar-mobile .dropdown ul {
  position: static;
  display: none;

  margin: 5px 15px 10px;
  padding: 8px 0;

  opacity: 1;
  visibility: visible;

  background: #f4f7fb;
  border-radius: 10px;
  box-shadow: none;
}

.navbar-mobile .dropdown ul li {
  min-width: auto;
}

.navbar-mobile .dropdown ul a {
  margin: 2px 8px;
  padding: 10px 14px;
  font-size: 14px;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/* For dropdown arrows, make them react separately: */
.navbar-mobile a i {
  margin-left: 12px;
  padding: 6px;

  border-radius: 50%;
  background: rgba(32, 67, 155, 0.08);

  color: #20439b;
  font-size: 12px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.navbar-mobile a:hover i {
  background: #20439b;
  color: #ffffff;
}

.navbar-mobile a.active i {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .dropdown > a:has(+ .dropdown-active) i {
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  padding-bottom: 20px 0;
}

.section-bg {
  background-color: #e6e7e8;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #1A475F;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f4f2f2;
  margin-bottom: 0px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1A475F;
  content: "/";
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
}
.why-us .content {
  padding: 30px;
  background: #20439b;
  border-radius: 4px;
  color: #fff;
}
.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.why-us .content p {
  margin-bottom: 30px;
}
.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}
.why-us .content .more-btn:hover {
  color: #20439b;
  background: #fff;
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 50px 20px;
  width: 100%;
}
.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #20439b;
  margin-bottom: 30px;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
}

#module {
  font-size: 15px;
  line-height: 1.5;

}


#module #collapseExample.collapse:not(.show) {
  display: block;
  height: 4.5rem;
  overflow: hidden;
}

#module #collapseExample.collapsing {
  height: 3rem;
}

#module a.collapsed::after {
  content: '+ Show More';
}

#module a:not(.collapsed)::after {

  content: '- Show Less';
}
  .collapsible {
    position: relative;
    padding-bottom: 0.5em;
  }
  .collapsible:not(.open) > * {
    display: none;
  }
  .collapsible:not(.open) > p:first-child {
    display: block;
  }

  .collapsible > .toggler {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    background: #fff;
    text-align: center;
    cursor: pointer;
  }
  .collapsible > .toggler::after {
    content: "\25bc";
  }
  .collapsible.open > .toggler::after {
    content: "\25b2";
  }

/*--------------------------------------------------------------
# Leak Hunters Modern Hero
--------------------------------------------------------------*/
#main {
  padding-top: 0;
}

.lh-hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.lh-hero__carousel,
.lh-hero__carousel .carousel-inner,
.lh-hero__carousel .carousel-item {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 1;
}

.lh-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.lh-hero__slide--0 { background-image: url("../img/banners/rain-water-on-glass-banner-1920x808.webp"); }
.lh-hero__slide--1 { background-image: url("../img/banners/rain-water-on-glass-banner-1920x808.webp"); }
.lh-hero__slide--2 { background-image: url("../img/banners/rain-water-on-glass-banner-1920x808.webp"); }
.lh-hero__slide--3 { background-image: url("../img/banners/rain-water-on-glass-banner-1920x808.webp"); }

.lh-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(26,71,95,.92) 0%, rgba(26,71,95,.72) 45%, rgba(32,67,155,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.45));
}

.lh-hero__wrap {
  position: relative;
  z-index: 3;
  max-width: 1280px;
}

.lh-hero__wrap .row {
  align-items: stretch;
}

.lh-hero__wrap .col-lg-6 {
  display: flex;
}

.lh-hero__intro,
.lh-service-panel {
  width: 100%;
  min-height: 430px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.lh-hero__intro {
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lh-hero__eyebrow {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(32,67,155,.12);
  color: #20439b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lh-hero h1 {
  color: #231f20;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  font-weight: 850;
  margin-bottom: 14px;
}

.lh-hero__kicker {
  color: #20439b;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lh-hero__text,
.lh-hero__terms {
  /* color: #1a475f; */
  color: #000000;
  font-size: 16px;
  line-height: 1.65;
}

.lh-hero__terms {
  padding-top: 10px;
  border-top: 1px solid rgba(26,71,95,.15);
  font-size: 14px;
}

.lh-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}

.lh-btn--primary {
  background: #20439b;
  color: #fff;
}

.lh-btn--primary:hover {
  background: #1a475f;
  color: #fff;
  transform: translateY(-2px);
}

.lh-btn--ghost {
  background: #fff;
  color: #20439b;
  border: 1px solid rgba(32,67,155,.25);
}

.lh-btn--ghost:hover {
  background: #e6e7e8;
  color: #1a475f;
}
/*-------------------------------------------
# SERVICE PANEL CSS
--------------------------------------------*/
.lh-service-panel {
  padding: clamp(24px, 2.5vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lh-service-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  color: #1a475f;
}

.lh-service-panel__header span {
  color: #20439b;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.lh-service-panel__header strong {
  font-size: 14px;
}

.lh-service-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.lh-service-tab {
  border: 0;
  background: #f4f7fb;
  border-radius: 18px;
  padding: 16px 10px;
  min-height: 106px;
  color: #1a475f;
  transition: .25s ease;
  cursor: pointer;
}

.lh-service-tab i {
  display: block;
  margin: 0 auto 8px auto;
  height: 42px;
  background-size: contain;
  background-position: center;
  font-size: 50px;
  line-height: 0;
}

.lh-service-tab span {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.lh-service-tab:hover,
.lh-service-tab.active {
  background: #20439b;
  color: #fff;
  transform: translateY(-3px);
}

.lh-service-tab:hover i,
.lh-service-tab.active i {
  filter: brightness(0) invert(1);
}

.lh-service-tab .icon i {
    color: #fff;


}

.lh-service-card {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 0px;
  border: 1px solid rgba(26,71,95,.12);
  animation: lhFade .25s ease;
}

.lh-service-card.active {
  display: block;
  padding: 0;
  animation: lhServiceCardIn 0.4s ease both;
}

.lh-service-card h2 {
  color: #1a475f;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 850;
  margin-bottom: 12px;
}

.lh-service-card p {
  color: #656262;
  line-height: 1.65;
}

.lh-service-card details {
  margin-top: 12px;
  border-top: 1px solid rgba(26,71,95,.12);
  padding-top: 12px;
}

.lh-service-card summary {
  cursor: pointer;
  color: #20439b;
  font-weight: 800;
}

@keyframes lhFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .lh-hero__intro,
  .lh-service-panel {
    min-height: 460px;
  }

  .lh-hero__intro {
    padding: 48px;
  }

  .lh-service-panel {
    padding: 34px;
  }
}

@media (max-width: 991px) {
  .lh-hero {
    min-height: auto;
    padding: 42px 0 34px;
    align-items: flex-start;
  }

  .lh-hero__wrap .col-lg-6 {
    display: block;
  }

  .lh-hero__intro,
  .lh-service-panel {
    min-height: auto;
  }

  .lh-service-panel {
    margin-top: 24px;
  }

  .lh-service-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .lh-service-panel__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .lh-service-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .lh-service-tab {
    min-height: 96px;
  }

  .lh-service-card {
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .lh-hero {
    padding: 28px 0;
  }

  .lh-hero__intro,
  .lh-service-panel {
    border-radius: 20px;
  }

  /* .lh-service-tab:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  } */

  .lh-hero__actions .lh-btn {
    width: 100%;
  }
}
/* =========================================================
   Hero Service Image Cards
   ========================================================= */

.lh-service-card {
  display: none;
}

.lh-service-card.active {
  display: block;
  animation: lhServiceCardIn 0.4s ease both;
}

.lh-service-card__stage {
  position: relative;
  width: 100%;
  height: clamp(300px, 32vw, 340px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #10214d;
  box-shadow:
    0 22px 55px rgba(4, 13, 36, 0.28),
    0 6px 18px rgba(4, 13, 36, 0.18);
  isolation: isolate;
}

.lh-service-card__face {
  position: absolute;
  inset: 0;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s ease;
}


/* Image face */

.lh-service-card__face--image {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.lh-service-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-service-card__stage:hover .lh-service-card__image {
  transform: scale(1.045);
}

.lh-service-card__image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 18, 48, 0.05) 5%,
      rgba(8, 18, 48, 0.30) 42%,
      rgba(8, 18, 48, 0.96) 100%
    );
  pointer-events: none;
}


/* Image caption */

.lh-service-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 34px;
  color: #fff;
}

.lh-service-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lh-service-card__caption h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 750;
  line-height: 1.05;
}

.lh-service-card__caption p {
  max-width: 500px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}


/* Read More button */

.lh-service-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.lh-service-card__read-more strong {
  color: #fff;
  font-weight: 750;
}

.lh-service-card__read-more i {
  color: #fff;
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.lh-service-card__read-more:hover {
  border-color: #fff;
  background: #fff;
  color: #183a87;
  transform: translateY(-2px);
}

.lh-service-card__read-more:hover strong,
.lh-service-card__read-more:hover i {
  color: #183a87;
}

.lh-service-card__read-more:hover i {
  transform: translateX(4px);
}

.lh-service-card__read-more:focus-visible,
.lh-service-card__close:focus-visible,
.lh-service-card__cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}


/* Text face */

.lh-service-card__face--content {
  z-index: 1;
  visibility: hidden;
  overflow-y: auto;
  padding: 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(62, 115, 219, 0.22),
      transparent 42%
    ),
    linear-gradient(145deg, #102456 0%, #183b86 100%);
  color: rgba(255, 255, 255, 0.84);
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
}

.lh-service-card__content-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0px;
}

.lh-service-card__face--content h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 750;
  line-height: 1.08;
}

.lh-service-card__face--content p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  line-height: 1.7;
}

.lh-service-card__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.lh-service-card__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lh-service-card__notice {
  margin-top: 20px !important;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.lh-service-card__notice a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lh-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 11px 17px;
  border-radius: 10px;
  background: #fff;
  color: #183a87;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.lh-service-card__cta:hover {
  color: #183a87;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.lh-service-card__cta i {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.lh-service-card__cta:hover i {
  transform: translateX(3px);
}


/* Expanded state */

.lh-service-card.is-expanded .lh-service-card__face--image {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.lh-service-card.is-expanded .lh-service-card__face--content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 4;
}


/* Entry animation when changing service tabs */

@keyframes lhServiceCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Tablet and mobile */

@media (max-width: 991.98px) {
  .lh-service-card__stage {
    height: 400px;
  }
}

@media (max-width: 575.98px) {
  .lh-service-card__stage {
    height: 405px;
    border-radius: 18px;
  }

  .lh-service-card__caption,
  .lh-service-card__face--content {
    padding: 24px;
  }

  .lh-service-card__caption h2,
  .lh-service-card__face--content h2 {
    font-size: 1.75rem;
  }

  .lh-service-card__caption p,
  .lh-service-card__face--content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .lh-service-card__read-more {
    width: 100%;
    justify-content: space-between;
  }
}


/* Respect reduced-motion accessibility settings */

@media (prefers-reduced-motion: reduce) {
  .lh-service-card,
  .lh-service-card__face,
  .lh-service-card__image,
  .lh-service-card__read-more,
  .lh-service-card__close,
  .lh-service-card__cta,
  .lh-service-card__read-more i {
    animation: none !important;
    transition: none !important;
  }
}
/* Ensure card controls receive mobile taps */
.lh-service-card__read-more,
.lh-service-card__close {
  position: relative;
  z-index: 20;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Reliable mobile card switching */
@media (max-width: 767.98px) {
  .lh-service-card__face--image {
    display: block;
  }

  .lh-service-card__face--content {
    display: none;
  }

  .lh-service-card.is-expanded .lh-service-card__face--image {
    display: none;
  }

  .lh-service-card.is-expanded .lh-service-card__face--content {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    z-index: 10;
  }
}
/* Huawei and older Android browser compatibility */
.lh-service-card__read-more,
.lh-service-card__close {
  position: relative;
  z-index: 50;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;

  -webkit-tap-highlight-color: transparent;
}

.lh-service-card__caption {
  position: absolute;
  z-index: 10;
  pointer-events: auto;
}

.lh-service-card__image-shade {
  pointer-events: none;
}

/*
 * Touch-device fallback.
 * Uses display switching instead of relying on opacity layers.
 */
@media (hover: none), (pointer: coarse) {
  .lh-service-card__face--image {
    display: block;
  }

  .lh-service-card__face--content {
    display: none;
  }

  .lh-service-card.is-expanded .lh-service-card__face--image {
    display: none !important;
  }

  .lh-service-card.is-expanded .lh-service-card__face--content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    z-index: 60;
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
  font-size: 18px;
  color: #1a475f;
  margin-bottom: 15px;
}
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a475f;
  margin-bottom: 15px;
}
.about .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #1d5a80;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}
.icon-box .icon .lh-icon-mask {
  --lh-icon-size: 54px;
  width: var(--lh-icon-size);
  height: var(--lh-icon-size);
  display: block;
  color: inherit;
  background-color: currentColor;
  transition: color 0.3s ease;
}
.about .icon-box .icon i {
  color: #20439b;
  font-size: 53px;
}
.about .icon-box:hover .icon {
  color: #fff;
  background: #20439b;
  border-color: #20439b;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #20439b;
}
.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

/* ===== Rotating About SVG illustrations ===== */

.about .video-box {
  position: relative;

  display: flex;
  align-items: stretch;

  min-height: 560px;
  overflow: hidden;
  padding: 0;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(32, 67, 155, 0.1),
      transparent 32%
    ),
    radial-gradient(
      circle at 12% 90%,
      rgba(0, 174, 239, 0.1),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #f8faff 0%,
      #edf3fb 100%
    );

  box-shadow:
    0 20px 55px rgba(20, 42, 84, 0.12);

  isolation: isolate;
}


/* Decorative background circles */

.about .video-box::before,
.about .video-box::after {
  content: "";

  position: absolute;
  z-index: 0;

  border-radius: 50%;

  pointer-events: none;
}

.about .video-box::before {
  width: 260px;
  height: 260px;

  top: -120px;
  right: -90px;

  border:
    1px solid rgba(32, 67, 155, 0.13);

  box-shadow:
    0 0 0 34px rgba(32, 67, 155, 0.035),
    0 0 0 70px rgba(32, 67, 155, 0.025);
}

.about .video-box::after {
  width: 180px;
  height: 180px;

  bottom: -90px;
  left: -70px;

  background:
    rgba(0, 174, 239, 0.055);
}


/* Main rotating visual area */

.about-visual-rotator {
  position: relative;
  z-index: 1;

  align-self: stretch;

  width: 100%;
  min-height: 560px;

  overflow: hidden;
}


/* Individual illustration */

.about-visual {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;

  /*
   * Only a small edge gap is retained.
   * Bottom space is reserved for the overlaid caption and dots.
   */
  padding:
    14px
    14px
    92px;

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transform:
    translate3d(28px, 0, 0)
    scale(0.98);

  transition:
    opacity 700ms ease,
    visibility 700ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);

  pointer-events: none;
}

.about-visual.is-active {
  opacity: 1;
  visibility: visible;

  transform:
    translate3d(0, 0, 0)
    scale(1);

  pointer-events: auto;
}


/* SVG illustration */

.about-visual img {
  /*
   * These can be overridden on an individual figure:
   *
   * style="--visual-scale: 1.3; --visual-y: -5px;"
   */
  --visual-scale: 1.2;
  --visual-y: 0px;

  display: block;

  width: 100%;
  height: 100%;

  max-width: none;
  max-height: none;

  object-fit: contain;
  object-position: center;

  transform:
    translateY(var(--visual-y))
    scale(var(--visual-scale));

  transform-origin: center;

  filter:
    drop-shadow(
      0 18px 22px rgba(24, 46, 88, 0.09)
    );

  will-change: transform;
}

.about-visual.is-active img {
  animation:
    aboutVisualFloat 5s ease-in-out infinite;
}


/* Caption overlays the image rather than taking up layout space */

.about-visual figcaption {
  position: absolute;
  left: 50%;
  bottom: 52px;
  z-index: 4;

  width: max-content;
  max-width: calc(100% - 40px);

  margin: 0;
  padding: 10px 19px;

  transform:
    translateX(-50%);

  border:
    1px solid rgba(32, 67, 155, 0.14);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.91);

  box-shadow:
    0 10px 28px rgba(20, 42, 84, 0.12);

  color: #20439b;

  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


/* Navigation dots */

.about-visual-dots {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.about-visual-dots button {
  width: 9px;
  height: 9px;
  padding: 0;

  border: 0;
  border-radius: 999px;

  background:
    rgba(32, 67, 155, 0.24);

  cursor: pointer;

  transition:
    width 250ms ease,
    background-color 250ms ease,
    transform 250ms ease;
}

.about-visual-dots button:hover,
.about-visual-dots button:focus-visible {
  background:
    rgba(32, 67, 155, 0.55);

  transform:
    scale(1.15);

  outline: none;
}

.about-visual-dots button.is-active {
  width: 28px;

  background:
    #20439b;
}


/* Gentle movement while the illustration is active */

@keyframes aboutVisualFloat {
  0%,
  100% {
    transform:
      translateY(var(--visual-y))
      scale(var(--visual-scale));
  }

  50% {
    transform:
      translateY(calc(var(--visual-y) - 7px))
      scale(var(--visual-scale));
  }
}


/* Tablet and stacked-column layout */

@media (max-width: 991.98px) {

  .about .video-box {
    min-height: 540px;
    margin-bottom: 34px;
  }

  .about-visual-rotator {
    min-height: 540px;
  }

  .about-visual {
    padding:
      14px
      14px
      90px;
  }

  .about-visual img {
    --visual-scale: 1.14;
  }
}


/* Mobile layout */

@media (max-width: 575.98px) {

  .about .video-box {
    min-height: 430px;

    border-radius: 18px;
  }

  .about-visual-rotator {
    min-height: 430px;
  }

  .about-visual {
    padding:
      10px
      10px
      82px;
  }

  .about-visual img {
    --visual-scale: 1.08;
  }

  .about-visual figcaption {
    bottom: 45px;

    max-width: calc(100% - 28px);
    padding: 8px 15px;

    font-size: 0.78rem;
  }

  .about-visual-dots {
    bottom: 17px;
  }

  .about-visual-dots button {
    width: 8px;
    height: 8px;
  }

  .about-visual-dots button.is-active {
    width: 24px;
  }
}


/* Accessibility: reduce animations when requested */

@media (prefers-reduced-motion: reduce) {

  .about-visual,
  .about-visual img,
  .about-visual-dots button {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== END Rotating About SVG illustrations ===== */

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1d5a80 50%, rgba(117, 175, 212, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .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);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(117, 175, 212, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(144, 0, 15 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #20439b;
  transform: scale(20);
}
.about .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;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #20439b;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #20439b;
}
.clients .swiper-slide img {
  opacity: 0.5;
  filter: grayscale(100%);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 50px 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center;
  height: 200px;
  position: relative;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #20439b;
  color: #fff; /* New SVG mask is white normally */

}
.services .icon-box .icon .lh-icon-mask {
  --lh-icon-size: 50px;

  width: var(--lh-icon-size);
  height: var(--lh-icon-size);
  display: block;

  color: #fff;
  background-color: #fff;

  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.services .icon-box:hover .icon .lh-icon-mask {
  color: #20439b;
  background-color: #20439b;
}
.services .icon-box:hover .icon {
  background: #fff;
  color: #20439b;
  border-color: #20439b;
}
.services .icon i {
  color: inherit;
  font-size: 50px;
  line-height: 0;
}
.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}
.services .title a {
  color: #343a40;
}

.services .icon-box:hover .icon i {
  color: #20439b;
}
.services .icon-box:hover .title a {
  color: #20439b;
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}
.values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.values .card-title a {
  color: #473d3a;
}
.values .card-text {
  color: #4b4949;
}
.values .read-more a {
  color: #656262;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}
.values .read-more a:hover {
  text-decoration: underline;
}
.values .card:hover .card-body {
  background: #20439b;
}
.values .card:hover .read-more a, .values .card:hover .card-title, .values .card:hover .card-title a, .values .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #20439b;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 12px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #1a475f;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #20439b;
  background: #e6e7e8;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #473d3a;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #1a475f;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #1A475F;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #20439b;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-links a:hover {
  color: #ffa587;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 20px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #20439b;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #20439b;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(71, 61, 58, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #473d3a;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team .member .social a:hover {
  color: #20439b;
}
.team .member .social i {
  font-size: 18px;
  line-height: 0;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #473d3a;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #989595;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #656262;
}
.team .member:hover .social {
  opacity: 1;
}

.team .row {
  justify-content: center;

}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10%;
}
.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #656262;
  background: #f8f8f8;
}
.pricing h4 {
  font-size: 36px;
  color: #20439b;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #1a475f;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing ul li {
  padding-bottom: 16px;
}
.pricing ul i {
  color: #20439b;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-wrap:hover {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #e6e7e8;
  text-align: center;
}
.pricing .btn-buy {
  background: #20439b;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 7px rgba(26, 71, 95, 0.4);
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #1D5A80;
}
.pricing .featured h3 {
  color: #fff;
  background: #20439b;
  box-shadow: 0 3px 7px rgba(26, 71, 95, 0.4);
}

.pricing .featured h3:hover
{
  color: #fff;
  background: #1a475f;
  box-shadow: 0 3px 7px rgba(26, 71, 95, 0.4);
}




.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1d5a80;
  color: #fff;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #20439b;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #20439b;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #1a475f;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}
.contact .info-box i {
  font-size: 32px;
  color: #20439b;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #1a475f;
  float: left;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #656262;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #20439b;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #20439b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #1D5A80;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 20px 0;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
  color: #473d3a;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #20439b;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #afa29e;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #656262;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
  line-height: 24px;
}
.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #20439b;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #1a475f;
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: #1a475f;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #473d3a;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.blog .entry .entry-footer i {
  color: #988782;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #1a475f;
  transition: 0.3s;
}
.blog .entry .entry-footer a:hover {
  color: #20439b;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
}
.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}
.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.blog .entry .entry-footer .share {
  font-size: 16px;
}
.blog .entry .entry-footer .share i {
  padding-left: 5px;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #473d3a;
}
.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .blog-author .social-links a {
  color: rgba(71, 61, 58, 0.5);
  margin-right: 5px;
}
.blog .blog-author p {
  font-style: italic;
  color: #a4a2a2;
}
.blog .blog-comments {
  margin-bottom: 30px;
}
.blog .blog-comments .comments-count {
  font-weight: bold;
}
.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}
.blog .blog-comments .comment .comment-img img {
  width: 60px;
}
.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #1a475f;
  transition: 0.3s;
}
.blog .blog-comments .comment h5 a:hover {
  color: #20439b;
}
.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #473d3a;
}
.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #1A475F;
  margin-bottom: 5px;
}
.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .blog-comments .reply-form p {
  font-size: 14px;
}
.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #ffa587;
}
.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #ffa587;
}
.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #473d3a;
}
.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1a475f;
}
.blog .blog-pagination {
  color: #1a475f;
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: #473d3a;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #20439b;
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}
.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #473d3a;
  position: relative;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #20439b;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: #ff6735;
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: #473d3a;
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: #20439b;
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #989595;
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
  color: #473d3a;
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: #20439b;
}
.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #989595;
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: #8d7973;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #f4f2f2;
  display: inline-block;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #20439b;
  background: #20439b;
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ddd7d6;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -10px;
}
.map iframe {
  width: 100%;
  height: 240px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #1a475f;
  font-size: 14px;
  background: #fff;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #e6e7e8;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #656262;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #1a475f;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #20439b;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #656262;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #20439b;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #1a475f;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #20439b;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #20439b;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #ed3b00;
}
#footer .credits  {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}
#footer .credits a{
  color: #fff;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #20439b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #1D5A80;
  color: #fff;
  text-decoration: none;
}

/*======== ICONS CSS ========*/

.leak_detection {
  background-image: url("../img/sd-icon-pack/Icon_Leak_Detection.svg");
  width: 75px;
  height: 80px;
  background-repeat: no-repeat;
}
.drying_restoration {
  background-image: url("../img/sd-icon-pack/Icon_Drying.svg");
  width: 75px;
  height: 80px;
  background-repeat: no-repeat;
}
.restoration {
  background-image: url("../img/sd-icon-pack/Icon_Restoration.svg");
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
}
.our_equipment {
  background-image: url("../img/sd-icon-pack/Icon_Our_Equipment.svg");
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
}
.pipework_mapping {
  background-image: url("../img/sd-icon-pack/Icon_Pipework_Mapping.svg");
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
}


.contact-button {
position: relative;
margin: 0 auto;
margin-bottom: 15px;
--bs-btn-color: #20439b;;
--bs-btn-bg: #20439b;
--bs-btn-border-color: #20439b;
--bs-btn-hover-color: #1a475f;
--bs-btn-hover-bg: #1a475f;
--bs-btn-hover-border-color:#1a475f
}
.contact-button a {
color: #FFF;
text-decoration: none;
}

.paragraph-67 p {
  max-width: 67%;
}