#fv {
  /* =====================
       FV Card (right side)
       ===================== */
  /* =====================
       Hero Text Styles (left side)
       ===================== */
}

#fv .fv-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-top: 150px;
  max-width: 1680px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

#fv .split-left {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  z-index: 2;
  padding: 20px;
}

#fv .split-right {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  z-index: 2;
  padding: 20px;
}

@media (max-width: 992px) {
  #fv .fv-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 180px;
  }

  #fv .split-left,
  #fv .split-right {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}

#fv .fv-card {
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 24px;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

#fv .fv-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
          box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

#fv .fv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#4a90d9), to(#7bb3e0));
  background: linear-gradient(90deg, #4a90d9, #7bb3e0);
}

#fv .fv-card-img {
  max-width: 100%;
  width: 100%;
  display: block;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

#fv .fv-card-img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 10px;
}

#fv .fv-card-img-wrap img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

#fv .fv-card-img-wrap:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#fv .fv-card-title {
  font-weight: bold;
  font-size: 22px;
  color: #222;
  margin: 0 0 10px;
  line-height: 1.4;
}

#fv .fv-card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

#fv .fv-card-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: #4a90d9;
  text-decoration: none;
  font-weight: 500;
}

#fv .fv-card-more:hover {
  color: #2a6ab8;
  text-decoration: underline;
}

#fv .fv-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  #fv .fv-card-title {
    font-size: 18px;
  }

  #fv .fv-card-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #fv .fv-card {
    padding: 16px;
  }

  #fv .fv-card-title {
    font-size: 16px;
  }

  #fv .fv-card-desc {
    font-size: 13px;
  }
}

#fv .split-left .hero-text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 5px;
}

#fv .split-left h1.hero-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4em;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  #fv .split-left .hero-text {
    font-size: 1.8rem;
  }

  #fv .split-left h1.hero-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  #fv .split-left .hero-text {
    font-size: 1.4rem;
  }

  #fv .split-left h1.hero-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

/* Page Loader (inline) ================================= */

.page-loader-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 60px 0;
}

.page-loader-inline .loading-spinner-wrap {
  position: relative;
  width: 52px;
  height: 52px;
}

.page-loader-inline .loading-spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(89, 195, 195, 0.2);
  border-top-color: #59c3c3;
  border-radius: 50%;
  -webkit-animation: spin 0.9s linear infinite;
          animation: spin 0.9s linear infinite;
}

.page-loader-inline .loading-spinner-inner {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 42px;
  height: 42px;
  border: 3px solid rgba(237, 228, 115, 0.2);
  border-top-color: #ede473;
  border-radius: 50%;
  animation: spin 1.2s linear infinite reverse;
}

.page-loader-inline p {
  font-size: 14px;
  font-weight: 500;
  color: #59c3c3;
  letter-spacing: 3px;
  -webkit-animation: pulse 1.8s ease-in-out infinite;
          animation: pulse 1.8s ease-in-out infinite;
  font-family: inherit;
  margin: 0;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

